pollymc/libmultimc/src/instanceloader.cpp

110 lines
2.8 KiB
C++
Raw Normal View History

/* 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.
*/
#include "include/instanceloader.h"
2013-02-19 23:45:22 +05:30
#include <QFileInfo>
#include "include/instancetypeinterface.h"
2013-02-19 03:09:01 +05:30
#include "inifile.h"
2013-02-19 23:45:22 +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 04:28:53 +05:30
}
2013-02-19 03:09:01 +05:30
InstanceLoader::InstTypeError InstanceLoader::registerInstanceType(InstanceTypeInterface *type)
2013-02-19 03:09:01 +05:30
{
// Check to see if the type ID exists.
if (m_typeMap.contains(type->typeID()))
return TypeIDExists;
// Set the parent to this.
// ((QObject *)type)->setParent(this);
2013-02-19 03:09:01 +05:30
// Add it to the map.
m_typeMap.insert(type->typeID(), type);
qDebug(QString("Registered instance type %1.").
arg(type->typeID()).toUtf8());
2013-02-19 03:09:01 +05:30
return NoError;
}
2013-02-21 07:15:00 +05:30
InstanceLoader::InstTypeError InstanceLoader::createInstance(Instance *&inst,
const InstanceTypeInterface *type,
2013-02-19 03:09:01 +05:30
const QString &instDir)
{
// Check if the type is registered.
if (!type || findType(type->typeID()) != type)
return TypeNotRegistered;
// Create the instance.
return type->createInstance(inst, instDir);
}
2013-02-21 07:15:00 +05:30
InstanceLoader::InstTypeError InstanceLoader::loadInstance(Instance *&inst,
const InstanceTypeInterface *type,
2013-02-19 03:09:01 +05:30
const QString &instDir)
{
// Check if the type is registered.
if (!type || findType(type->typeID()) != type)
return TypeNotRegistered;
return type->loadInstance(inst, instDir);
}
2013-02-21 07:15:00 +05:30
InstanceLoader::InstTypeError InstanceLoader::loadInstance(Instance *&inst,
2013-02-19 23:45:22 +05:30
const QString &instDir)
{
QFileInfo instConfig(PathCombine(instDir, "instance.cfg"));
if (!instConfig.exists())
return NotAnInstance;
INIFile ini;
ini.loadFile(instConfig.path());
QString typeName = ini.get("type", "net.forkk.MultiMC.StdInstance").toString();
const InstanceTypeInterface *type = findType(typeName);
2013-02-19 23:45:22 +05:30
return loadInstance(inst, type, instDir);
}
const InstanceTypeInterface *InstanceLoader::findType(const QString &id)
2013-02-19 03:09:01 +05:30
{
if (!m_typeMap.contains(id))
return NULL;
else
return m_typeMap[id];
}
InstTypeList InstanceLoader::typeList()
{
InstTypeList typeList;
2013-02-21 23:40:10 +05:30
for (QMap<QString, InstanceTypeInterface *>::iterator iter = m_typeMap.begin(); iter != m_typeMap.end(); iter++)
2013-02-19 03:09:01 +05:30
{
typeList.append(*iter);
}
return typeList;
}