summaryrefslogtreecommitdiffstats
path: root/logic/updater
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-12-25 01:18:16 +0100
committerPetr Mrázek <peterix@gmail.com>2013-12-25 01:18:16 +0100
commit2d144631e7b6fd608d9a1f9cb966ce3e68fe95a0 (patch)
tree6ef1f440760430ac6b6c2dd1bdccfc461ff00e27 /logic/updater
parent8d0ca72abb10b0cb77816d44f3f768865cc23aef (diff)
parent00822fa0f9d3cd93e460c992aac77693ac00a741 (diff)
downloadMultiMC-2d144631e7b6fd608d9a1f9cb966ce3e68fe95a0.tar
MultiMC-2d144631e7b6fd608d9a1f9cb966ce3e68fe95a0.tar.gz
MultiMC-2d144631e7b6fd608d9a1f9cb966ce3e68fe95a0.tar.lz
MultiMC-2d144631e7b6fd608d9a1f9cb966ce3e68fe95a0.tar.xz
MultiMC-2d144631e7b6fd608d9a1f9cb966ce3e68fe95a0.zip
Merge branch 'feature_updater_update' of https://github.com/02JanDal/MultiMC5 into develop
Diffstat (limited to 'logic/updater')
-rw-r--r--logic/updater/DownloadUpdateTask.cpp31
-rw-r--r--logic/updater/DownloadUpdateTask.h2
2 files changed, 31 insertions, 2 deletions
diff --git a/logic/updater/DownloadUpdateTask.cpp b/logic/updater/DownloadUpdateTask.cpp
index cffac75f..5f05b0ba 100644
--- a/logic/updater/DownloadUpdateTask.cpp
+++ b/logic/updater/DownloadUpdateTask.cpp
@@ -375,6 +375,9 @@ DownloadUpdateTask::processFileLists(NetJob *job,
// yep. this file actually needs an upgrade. PROCEED.
QLOG_DEBUG() << "Found file" << entry.path << " that needs updating.";
+ // if it's the updater we want to treat it separately
+ bool isUpdater = entry.path.endsWith("updater") || entry.path.endsWith("updater.exe");
+
// Go through the sources list and find one to use.
// TODO: Make a NetAction that takes a source list and tries each of them until one
// works. For now, we'll just use the first http one.
@@ -396,10 +399,19 @@ DownloadUpdateTask::processFileLists(NetJob *job,
auto download = MD5EtagDownload::make(source.url, dlPath);
download->m_expected_md5 = entry.md5;
job->addNetAction(download);
+
+ if (isUpdater)
+ {
+ download->setProperty("finalPath", entry.path);
+ connect(download.get(), &MD5EtagDownload::succeeded, this, &DownloadUpdateTask::directDeployFile);
+ }
}
- // Now add a copy operation to our operations list to install the file.
- ops.append(UpdateOperation::CopyOp(dlPath, entry.path, entry.mode));
+ if (!isUpdater)
+ {
+ // Now add a copy operation to our operations list to install the file.
+ ops.append(UpdateOperation::CopyOp(dlPath, entry.path, entry.mode));
+ }
}
}
}
@@ -510,6 +522,21 @@ void DownloadUpdateTask::fileDownloadProgressChanged(qint64 current, qint64 tota
setProgress((int)(((float)current / (float)total) * 100));
}
+void DownloadUpdateTask::directDeployFile(const int index)
+{
+ Md5EtagDownloadPtr download = std::dynamic_pointer_cast<MD5EtagDownload>(m_filesNetJob->operator[](index));
+ const QString finalPath = download->property("finalPath").toString();
+ QLOG_INFO() << "Replacing" << finalPath << "with" << download->m_output_file.fileName();
+ if (QFile::remove(finalPath))
+ {
+ if (download->m_output_file.copy(finalPath))
+ {
+ return;
+ }
+ }
+ emitFailed("Couldn't copy updater files");
+}
+
QString DownloadUpdateTask::updateFilesDir()
{
return m_updateFilesDir.path();
diff --git a/logic/updater/DownloadUpdateTask.h b/logic/updater/DownloadUpdateTask.h
index 1fc14049..79d73af3 100644
--- a/logic/updater/DownloadUpdateTask.h
+++ b/logic/updater/DownloadUpdateTask.h
@@ -207,5 +207,7 @@ protected slots:
void fileDownloadFinished();
void fileDownloadFailed();
void fileDownloadProgressChanged(qint64 current, qint64 total);
+
+ void directDeployFile(const int index);
};