2016-10-02 23:55:54 +01:00
|
|
|
#include "InstanceCopyTask.h"
|
|
|
|
#include "settings/INISettingsObject.h"
|
|
|
|
#include "FileSystem.h"
|
|
|
|
#include "NullInstance.h"
|
|
|
|
#include "pathmatcher/RegexpMatcher.h"
|
2016-10-26 17:12:33 +01:00
|
|
|
#include <QtConcurrentRun>
|
2016-10-02 23:55:54 +01:00
|
|
|
|
2022-10-23 04:04:36 +01:00
|
|
|
InstanceCopyTask::InstanceCopyTask(InstancePtr origInstance, const InstanceCopyPrefs& prefs)
|
2016-10-02 23:55:54 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
m_origInstance = origInstance;
|
2022-10-29 05:55:33 +01:00
|
|
|
m_keepPlaytime = prefs.isKeepPlaytimeEnabled();
|
2018-07-15 13:51:05 +01:00
|
|
|
|
2022-10-26 05:20:36 +01:00
|
|
|
QString filters = prefs.getSelectedFiltersAsRegex();
|
|
|
|
if (!filters.isEmpty())
|
2018-07-15 13:51:05 +01:00
|
|
|
{
|
2022-10-26 05:20:36 +01:00
|
|
|
// Set regex filter:
|
|
|
|
// FIXME: get this from the original instance type...
|
|
|
|
auto matcherReal = new RegexpMatcher(filters);
|
|
|
|
matcherReal->caseSensitive(false);
|
|
|
|
m_matcher.reset(matcherReal);
|
2018-07-15 13:51:05 +01:00
|
|
|
}
|
2016-12-08 20:58:31 +00:00
|
|
|
}
|
2016-10-02 23:55:54 +01:00
|
|
|
|
2016-12-08 20:58:31 +00:00
|
|
|
void InstanceCopyTask::executeTask()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
setStatus(tr("Copying instance %1").arg(m_origInstance->name()));
|
2017-09-05 22:38:17 +01:00
|
|
|
|
2022-12-04 15:29:38 +00:00
|
|
|
m_copyFuture = QtConcurrent::run(QThreadPool::globalInstance(), [this]{
|
|
|
|
FS::copy folderCopy(m_origInstance->instanceRoot(), m_stagingPath);
|
|
|
|
folderCopy.followSymlinks(false).matcher(m_matcher.get());
|
2016-10-26 17:12:33 +01:00
|
|
|
|
2022-10-22 22:36:47 +01:00
|
|
|
return folderCopy();
|
|
|
|
});
|
2018-07-15 13:51:05 +01:00
|
|
|
connect(&m_copyFutureWatcher, &QFutureWatcher<bool>::finished, this, &InstanceCopyTask::copyFinished);
|
|
|
|
connect(&m_copyFutureWatcher, &QFutureWatcher<bool>::canceled, this, &InstanceCopyTask::copyAborted);
|
|
|
|
m_copyFutureWatcher.setFuture(m_copyFuture);
|
2016-10-26 17:12:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void InstanceCopyTask::copyFinished()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
auto successful = m_copyFuture.result();
|
|
|
|
if(!successful)
|
|
|
|
{
|
|
|
|
emitFailed(tr("Instance folder copy failed."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// FIXME: shouldn't this be able to report errors?
|
|
|
|
auto instanceSettings = std::make_shared<INISettingsObject>(FS::PathCombine(m_stagingPath, "instance.cfg"));
|
|
|
|
|
|
|
|
InstancePtr inst(new NullInstance(m_globalSettings, instanceSettings, m_stagingPath));
|
2022-07-14 20:13:23 +01:00
|
|
|
inst->setName(name());
|
2018-07-15 13:51:05 +01:00
|
|
|
inst->setIconKey(m_instIcon);
|
2020-01-09 14:31:32 +00:00
|
|
|
if(!m_keepPlaytime) {
|
|
|
|
inst->resetTimePlayed();
|
|
|
|
}
|
2018-07-15 13:51:05 +01:00
|
|
|
emitSucceeded();
|
2016-10-02 23:55:54 +01:00
|
|
|
}
|
2016-10-26 17:12:33 +01:00
|
|
|
|
|
|
|
void InstanceCopyTask::copyAborted()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
emitFailed(tr("Instance folder copy has been aborted."));
|
|
|
|
return;
|
2016-10-26 17:12:33 +01:00
|
|
|
}
|