diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-10-03 00:55:54 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-10-26 18:21:24 +0200 |
commit | d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5 (patch) | |
tree | 4f385106ce732d4f7338feab5391f2a06c68a0e6 /api/logic/InstanceCopyTask.cpp | |
parent | bbe139dce51a7965394c800cac974946820d3869 (diff) | |
download | MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.tar MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.tar.gz MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.tar.lz MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.tar.xz MultiMC-d66fdcd4cc6913508d2987c14cd9fc4d6760b8a5.zip |
NOISSUE Granular instance reload
Diffstat (limited to 'api/logic/InstanceCopyTask.cpp')
-rw-r--r-- | api/logic/InstanceCopyTask.cpp | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/api/logic/InstanceCopyTask.cpp b/api/logic/InstanceCopyTask.cpp new file mode 100644 index 00000000..1e231478 --- /dev/null +++ b/api/logic/InstanceCopyTask.cpp @@ -0,0 +1,53 @@ +#include "InstanceCopyTask.h" +#include "BaseInstanceProvider.h" +#include "settings/INISettingsObject.h" +#include "FileSystem.h" +#include "NullInstance.h" +#include "pathmatcher/RegexpMatcher.h" + +InstanceCopyTask::InstanceCopyTask(SettingsObjectPtr settings, BaseInstanceProvider* target, InstancePtr origInstance, const QString& instName, const QString& instIcon, const QString& instGroup, bool copySaves) +{ + m_globalSettings = settings; + m_target = target; + m_origInstance = origInstance; + m_instName = instName; + m_instIcon = instIcon; + m_instGroup = instGroup; + m_copySaves = copySaves; +} + +void InstanceCopyTask::executeTask() +{ + setStatus(tr("Copying instance %1").arg(m_origInstance->name())); + std::unique_ptr<IPathMatcher> matcher; + if(!m_copySaves) + { + // FIXME: get this from the original instance type... + auto matcherReal = new RegexpMatcher("[.]?minecraft/saves"); + matcherReal->caseSensitive(false); + matcher.reset(matcherReal); + } + + QString stagingPath = m_target->getStagedInstancePath(); + FS::copy folderCopy(m_origInstance->instanceRoot(), stagingPath); + folderCopy.followSymlinks(false).blacklist(matcher.get()); + if (!folderCopy()) + { + m_target->destroyStagingPath(stagingPath); + emitFailed(tr("Instance folder copy failed.")); + return; + } + + // FIXME: shouldn't this be able to report errors? + auto instanceSettings = std::make_shared<INISettingsObject>(FS::PathCombine(stagingPath, "instance.cfg")); + instanceSettings->registerSetting("InstanceType", "Legacy"); + + // FIXME: and this too? errors??? + m_origInstance->copy(stagingPath); + + InstancePtr inst(new NullInstance(m_globalSettings, instanceSettings, stagingPath)); + inst->setName(m_instName); + inst->setIconKey(m_instIcon); + m_target->commitStagedInstance(stagingPath, stagingPath, m_instName, m_instGroup); + emitSucceeded(); +} |