2016-10-03 04:25:54 +05:30
|
|
|
#include "InstanceCopyTask.h"
|
|
|
|
#include "settings/INISettingsObject.h"
|
|
|
|
#include "FileSystem.h"
|
|
|
|
#include "NullInstance.h"
|
|
|
|
#include "pathmatcher/RegexpMatcher.h"
|
2016-10-26 21:42:33 +05:30
|
|
|
#include <QtConcurrentRun>
|
2016-10-03 04:25:54 +05:30
|
|
|
|
2022-10-23 08:34:36 +05:30
|
|
|
InstanceCopyTask::InstanceCopyTask(InstancePtr origInstance, const InstanceCopyPrefs& prefs)
|
2016-10-03 04:25:54 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_origInstance = origInstance;
|
2022-10-29 10:25:33 +05:30
|
|
|
m_keepPlaytime = prefs.isKeepPlaytimeEnabled();
|
2018-07-15 18:21:05 +05:30
|
|
|
|
2022-10-26 09:50:36 +05:30
|
|
|
QString filters = prefs.getSelectedFiltersAsRegex();
|
2023-02-09 04:00:45 +05:30
|
|
|
|
2023-02-09 07:09:17 +05:30
|
|
|
|
2023-02-10 04:49:38 +05:30
|
|
|
m_useLinks = prefs.isUseSymLinksEnabled();
|
2023-02-09 07:09:17 +05:30
|
|
|
m_linkRecursively = prefs.isLinkRecursivelyEnabled();
|
|
|
|
m_useHardLinks = prefs.isLinkRecursivelyEnabled() && prefs.isUseHardLinksEnabled();
|
|
|
|
m_copySaves = prefs.isLinkRecursivelyEnabled() && prefs.isDontLinkSavesEnabled() && prefs.isCopySavesEnabled();
|
2023-02-09 14:32:40 +05:30
|
|
|
m_useClone = prefs.isUseCloneEnabled();
|
2023-02-09 04:00:45 +05:30
|
|
|
|
2022-10-26 09:50:36 +05:30
|
|
|
if (!filters.isEmpty())
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2022-10-26 09:50:36 +05:30
|
|
|
// 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 18:21:05 +05:30
|
|
|
}
|
2016-12-09 02:28:31 +05:30
|
|
|
}
|
2016-10-03 04:25:54 +05:30
|
|
|
|
2016-12-09 02:28:31 +05:30
|
|
|
void InstanceCopyTask::executeTask()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
setStatus(tr("Copying instance %1").arg(m_origInstance->name()));
|
2017-09-06 03:08:17 +05:30
|
|
|
|
2023-02-09 04:00:45 +05:30
|
|
|
auto copySaves = [&](){
|
|
|
|
FS::copy savesCopy(FS::PathCombine(m_origInstance->instanceRoot(), "saves") , FS::PathCombine(m_stagingPath, "saves"));
|
2023-02-09 07:09:17 +05:30
|
|
|
savesCopy.followSymlinks(true);
|
2023-02-09 04:00:45 +05:30
|
|
|
|
|
|
|
return savesCopy();
|
|
|
|
};
|
|
|
|
|
|
|
|
m_copyFuture = QtConcurrent::run(QThreadPool::globalInstance(), [this, copySaves]{
|
2023-02-09 14:32:40 +05:30
|
|
|
if (m_useClone) {
|
|
|
|
FS::clone folderClone(m_origInstance->instanceRoot(), m_stagingPath);
|
|
|
|
folderClone.matcher(m_matcher.get());
|
|
|
|
|
|
|
|
return folderClone();
|
|
|
|
} else if (m_useLinks) {
|
2023-02-09 04:00:45 +05:30
|
|
|
FS::create_link folderLink(m_origInstance->instanceRoot(), m_stagingPath);
|
2023-02-09 07:09:17 +05:30
|
|
|
folderLink.linkRecursively(m_linkRecursively).useHardLinks(m_useHardLinks).matcher(m_matcher.get());
|
2023-02-09 04:00:45 +05:30
|
|
|
|
|
|
|
bool there_were_errors = false;
|
|
|
|
|
|
|
|
if(!folderLink()){
|
|
|
|
#if defined Q_OS_WIN32
|
|
|
|
if (!m_useHardLinks) {
|
|
|
|
qDebug() << "EXPECTED: Link failure, Windows requires permissions for symlinks";
|
|
|
|
|
|
|
|
qDebug() << "atempting to run with privelage";
|
|
|
|
|
|
|
|
QEventLoop loop;
|
|
|
|
bool got_priv_results = false;
|
|
|
|
|
|
|
|
connect(&folderLink, &FS::create_link::finishedPrivlaged, this, [&](bool gotResults){
|
|
|
|
if (!gotResults) {
|
|
|
|
qDebug() << "Privlaged run exited without results!";
|
|
|
|
}
|
|
|
|
got_priv_results = gotResults;
|
|
|
|
loop.quit();
|
|
|
|
});
|
|
|
|
folderLink.runPrivlaged();
|
|
|
|
|
|
|
|
loop.exec(); // wait for the finished signal
|
|
|
|
|
|
|
|
for (auto result : folderLink.getResults()) {
|
|
|
|
if (result.err_value != 0) {
|
|
|
|
there_were_errors = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_copySaves) {
|
|
|
|
there_were_errors |= !copySaves();
|
|
|
|
}
|
|
|
|
|
|
|
|
return got_priv_results && !there_were_errors;
|
|
|
|
} else {
|
|
|
|
qDebug() << "Link Failed!" << folderLink.getOSError().value() << folderLink.getOSError().message().c_str();
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
qDebug() << "Link Failed!" << folderLink.getOSError().value() << folderLink.getOSError().message().c_str();
|
2023-02-09 14:32:40 +05:30
|
|
|
#endif
|
|
|
|
return false;
|
2023-02-09 04:00:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (m_copySaves) {
|
|
|
|
there_were_errors |= !copySaves();
|
|
|
|
}
|
|
|
|
|
|
|
|
return !there_were_errors;
|
|
|
|
} else {
|
|
|
|
FS::copy folderCopy(m_origInstance->instanceRoot(), m_stagingPath);
|
|
|
|
folderCopy.followSymlinks(false).matcher(m_matcher.get());
|
2016-10-26 21:42:33 +05:30
|
|
|
|
2023-02-09 04:00:45 +05:30
|
|
|
return folderCopy();
|
|
|
|
}
|
2022-10-23 03:06:47 +05:30
|
|
|
});
|
2018-07-15 18:21:05 +05:30
|
|
|
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 21:42:33 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void InstanceCopyTask::copyFinished()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
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-15 00:43:23 +05:30
|
|
|
inst->setName(name());
|
2018-07-15 18:21:05 +05:30
|
|
|
inst->setIconKey(m_instIcon);
|
2020-01-09 20:01:32 +05:30
|
|
|
if(!m_keepPlaytime) {
|
|
|
|
inst->resetTimePlayed();
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
emitSucceeded();
|
2016-10-03 04:25:54 +05:30
|
|
|
}
|
2016-10-26 21:42:33 +05:30
|
|
|
|
|
|
|
void InstanceCopyTask::copyAborted()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
emitFailed(tr("Instance folder copy has been aborted."));
|
|
|
|
return;
|
2016-10-26 21:42:33 +05:30
|
|
|
}
|