2013-02-19 02:20:11 +05:30
|
|
|
/* Copyright 2013 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-02-21 06:40:09 +05:30
|
|
|
#include "include/instanceloader.h"
|
2013-02-19 02:20:11 +05:30
|
|
|
|
2013-05-04 01:11:37 +05:30
|
|
|
#include <QDir>
|
2013-02-19 23:45:22 +05:30
|
|
|
#include <QFileInfo>
|
|
|
|
|
2013-05-04 01:11:37 +05:30
|
|
|
#include "include/instance.h"
|
2013-02-19 03:09:01 +05:30
|
|
|
|
2013-02-21 06:40:09 +05:30
|
|
|
#include "inifile.h"
|
2013-02-19 23:45:22 +05:30
|
|
|
|
2013-02-21 06:40:09 +05:30
|
|
|
#include "pathutils.h"
|
2013-02-19 23:45:22 +05:30
|
|
|
|
|
|
|
InstanceLoader InstanceLoader::loader;
|
|
|
|
|
2013-02-19 04:28:53 +05:30
|
|
|
InstanceLoader::InstanceLoader() :
|
|
|
|
QObject(NULL)
|
2013-02-19 02:20:11 +05:30
|
|
|
{
|
2013-02-19 04:28:53 +05:30
|
|
|
|
2013-02-19 02:20:11 +05:30
|
|
|
}
|
2013-02-19 03:09:01 +05:30
|
|
|
|
2013-07-28 12:10:15 +05:30
|
|
|
InstanceLoader::InstLoadError InstanceLoader::loadInstance(Instance *&inst, const QString &instDir)
|
2013-02-19 03:09:01 +05:30
|
|
|
{
|
2013-05-04 01:11:37 +05:30
|
|
|
Instance *loadedInst = new Instance(instDir, this);
|
2013-02-19 03:09:01 +05:30
|
|
|
|
2013-05-04 01:11:37 +05:30
|
|
|
// TODO: Sanity checks to verify that the instance is valid.
|
2013-02-19 03:09:01 +05:30
|
|
|
|
2013-05-04 01:11:37 +05:30
|
|
|
inst = loadedInst;
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2013-07-28 12:10:15 +05:30
|
|
|
return NoLoadError;
|
2013-02-19 03:09:01 +05:30
|
|
|
}
|
|
|
|
|
2013-02-19 23:45:22 +05:30
|
|
|
|
2013-07-28 12:10:15 +05:30
|
|
|
InstanceLoader::InstCreateError InstanceLoader::createInstance(Instance *&inst, const QString &instDir)
|
2013-02-19 03:09:01 +05:30
|
|
|
{
|
2013-05-04 01:11:37 +05:30
|
|
|
QDir rootDir(instDir);
|
2013-02-19 03:09:01 +05:30
|
|
|
|
2013-05-04 01:11:37 +05:30
|
|
|
qDebug(instDir.toUtf8());
|
|
|
|
if (!rootDir.exists() && !rootDir.mkpath("."))
|
2013-02-19 03:09:01 +05:30
|
|
|
{
|
2013-05-04 01:11:37 +05:30
|
|
|
return InstanceLoader::CantCreateDir;
|
2013-02-19 03:09:01 +05:30
|
|
|
}
|
|
|
|
|
2013-05-04 01:11:37 +05:30
|
|
|
inst = new Instance(instDir, this);
|
|
|
|
|
2013-07-28 12:10:15 +05:30
|
|
|
//FIXME: really, how do you even know?
|
|
|
|
return InstanceLoader::NoCreateError;
|
2013-02-19 03:09:01 +05:30
|
|
|
}
|