2013-02-22 05:40:17 +05:30
|
|
|
/* 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
|
2013-09-22 07:51:36 +05:30
|
|
|
*
|
2013-02-22 05:40:17 +05:30
|
|
|
* 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.
|
|
|
|
*/
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-09-08 05:45:20 +05:30
|
|
|
#include "MultiMC.h"
|
2013-08-04 18:16:33 +05:30
|
|
|
#include "OneSixUpdate.h"
|
2013-02-22 05:40:17 +05:30
|
|
|
|
2013-05-08 23:26:43 +05:30
|
|
|
#include <QtNetwork>
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QTextStream>
|
|
|
|
#include <QDataStream>
|
|
|
|
|
2013-08-04 03:28:39 +05:30
|
|
|
#include "BaseInstance.h"
|
2013-07-29 04:29:35 +05:30
|
|
|
#include "lists/MinecraftVersionList.h"
|
|
|
|
#include "OneSixVersion.h"
|
2013-09-12 03:13:17 +05:30
|
|
|
#include "OneSixLibrary.h"
|
2013-08-05 06:59:50 +05:30
|
|
|
#include "OneSixInstance.h"
|
2013-05-08 23:26:43 +05:30
|
|
|
|
|
|
|
#include "pathutils.h"
|
|
|
|
|
2013-09-22 07:51:36 +05:30
|
|
|
OneSixUpdate::OneSixUpdate(BaseInstance *inst, QObject *parent) : BaseUpdate(inst, parent)
|
|
|
|
{
|
|
|
|
}
|
2013-05-08 23:26:43 +05:30
|
|
|
|
2013-08-04 18:16:33 +05:30
|
|
|
void OneSixUpdate::executeTask()
|
2013-05-08 23:26:43 +05:30
|
|
|
{
|
2013-08-05 06:59:50 +05:30
|
|
|
QString intendedVersion = m_inst->intendedVersionId();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-08-12 04:09:19 +05:30
|
|
|
// Make directories
|
|
|
|
QDir mcDir(m_inst->minecraftRoot());
|
|
|
|
if (!mcDir.exists() && !mcDir.mkpath("."))
|
|
|
|
{
|
|
|
|
emitFailed("Failed to create bin folder.");
|
|
|
|
return;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-05-08 23:26:43 +05:30
|
|
|
// Get a pointer to the version object that corresponds to the instance's version.
|
2013-10-06 04:43:40 +05:30
|
|
|
targetVersion = std::dynamic_pointer_cast<MinecraftVersion>(
|
|
|
|
MMC->minecraftlist()->findVersion(intendedVersion));
|
2013-09-22 07:51:36 +05:30
|
|
|
if (targetVersion == nullptr)
|
2013-07-07 21:42:09 +05:30
|
|
|
{
|
2013-08-05 06:59:50 +05:30
|
|
|
// don't do anything if it was invalid
|
2013-08-09 03:56:35 +05:30
|
|
|
emitSucceeded();
|
2013-07-07 21:42:09 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
|
|
|
if (m_inst->shouldUpdate())
|
2013-08-05 06:59:50 +05:30
|
|
|
{
|
|
|
|
versionFileStart();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
jarlibStart();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OneSixUpdate::versionFileStart()
|
|
|
|
{
|
2013-08-04 03:28:39 +05:30
|
|
|
setStatus("Getting the version files from Mojang.");
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-07-08 03:21:26 +05:30
|
|
|
QString urlstr("http://s3.amazonaws.com/Minecraft.Download/versions/");
|
2013-09-16 04:24:39 +05:30
|
|
|
urlstr += targetVersion->descriptor() + "/" + targetVersion->descriptor() + ".json";
|
2013-10-26 23:25:48 +05:30
|
|
|
auto job = new NetJob("Version index");
|
|
|
|
job->addNetAction(ByteArrayDownload::make(QUrl(urlstr)));
|
2013-09-08 05:45:20 +05:30
|
|
|
specificVersionDownloadJob.reset(job);
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(specificVersionDownloadJob.get(), SIGNAL(succeeded()), SLOT(versionFileFinished()));
|
|
|
|
connect(specificVersionDownloadJob.get(), SIGNAL(failed()), SLOT(versionFileFailed()));
|
|
|
|
connect(specificVersionDownloadJob.get(), SIGNAL(progress(qint64, qint64)),
|
2013-09-22 07:51:36 +05:30
|
|
|
SIGNAL(progress(qint64, qint64)));
|
2013-09-02 03:55:40 +05:30
|
|
|
specificVersionDownloadJob->start();
|
2013-07-08 03:21:26 +05:30
|
|
|
}
|
|
|
|
|
2013-08-04 18:16:33 +05:30
|
|
|
void OneSixUpdate::versionFileFinished()
|
2013-07-08 03:21:26 +05:30
|
|
|
{
|
2013-10-26 23:25:48 +05:30
|
|
|
NetActionPtr DlJob = specificVersionDownloadJob->first();
|
2013-09-22 07:51:36 +05:30
|
|
|
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
QString version_id = targetVersion->descriptor();
|
2013-08-12 04:09:19 +05:30
|
|
|
QString inst_dir = m_inst->instanceRoot();
|
2013-08-05 06:59:50 +05:30
|
|
|
// save the version file in $instanceId/version.json
|
2013-07-08 03:21:26 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
QString version1 = PathCombine(inst_dir, "/version.json");
|
2013-08-24 06:39:46 +05:30
|
|
|
ensureFilePathExists(version1);
|
2013-08-14 11:43:41 +05:30
|
|
|
// FIXME: detect errors here, download to a temp file, swap
|
2013-09-22 07:51:36 +05:30
|
|
|
QSaveFile vfile1(version1);
|
|
|
|
if (!vfile1.open(QIODevice::Truncate | QIODevice::WriteOnly))
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
emitFailed("Can't open " + version1 + " for writing.");
|
|
|
|
return;
|
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
auto data = std::dynamic_pointer_cast<ByteArrayDownload>(DlJob)->m_data;
|
2013-09-16 04:24:39 +05:30
|
|
|
qint64 actual = 0;
|
2013-09-22 07:51:36 +05:30
|
|
|
if ((actual = vfile1.write(data)) != data.size())
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
emitFailed("Failed to write into " + version1 + ". Written " + actual + " out of " +
|
|
|
|
data.size() + '.');
|
2013-09-16 04:24:39 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
if (!vfile1.commit())
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
emitFailed("Can't commit changes to " + version1);
|
|
|
|
return;
|
|
|
|
}
|
2013-07-08 03:21:26 +05:30
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
// the version is downloaded safely. update is 'done' at this point
|
|
|
|
m_inst->setShouldUpdate(false);
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
// delete any custom version inside the instance (it's no longer relevant, we did an update)
|
2013-09-22 07:51:36 +05:30
|
|
|
QString custom = PathCombine(inst_dir, "/custom.json");
|
2013-09-16 04:24:39 +05:30
|
|
|
QFile finfo(custom);
|
2013-09-22 07:51:36 +05:30
|
|
|
if (finfo.exists())
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
finfo.remove();
|
|
|
|
}
|
|
|
|
inst->reloadFullVersion();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
jarlibStart();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OneSixUpdate::versionFileFailed()
|
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
emitFailed("Failed to download the version description. Try again.");
|
2013-08-05 06:59:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void OneSixUpdate::jarlibStart()
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
2013-08-05 06:59:50 +05:30
|
|
|
bool successful = inst->reloadFullVersion();
|
2013-09-22 07:51:36 +05:30
|
|
|
if (!successful)
|
2013-08-05 06:59:50 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
emitFailed("Failed to load the version description file (version.json). It might be "
|
|
|
|
"corrupted, missing or simply too new.");
|
2013-08-05 06:59:50 +05:30
|
|
|
return;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<OneSixVersion> version = inst->getFullVersion();
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-07-09 04:22:03 +05:30
|
|
|
// download the right jar, save it in versions/$version/$version.jar
|
2013-07-10 02:16:33 +05:30
|
|
|
QString urlstr("http://s3.amazonaws.com/Minecraft.Download/versions/");
|
2013-08-05 06:59:50 +05:30
|
|
|
urlstr += version->id + "/" + version->id + ".jar";
|
2013-09-22 07:51:36 +05:30
|
|
|
QString targetstr("versions/");
|
2013-08-05 06:59:50 +05:30
|
|
|
targetstr += version->id + "/" + version->id + ".jar";
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-10-26 23:25:48 +05:30
|
|
|
auto job = new NetJob("Libraries for instance " + inst->name());
|
|
|
|
job->addNetAction(FileDownload::make(QUrl(urlstr), targetstr));
|
2013-09-08 05:45:20 +05:30
|
|
|
jarlibDownloadJob.reset(job);
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
auto libs = version->getActiveNativeLibs();
|
|
|
|
libs.append(version->getActiveNormalLibs());
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-09-08 05:45:20 +05:30
|
|
|
auto metacache = MMC->metacache();
|
2013-09-22 07:51:36 +05:30
|
|
|
for (auto lib : libs)
|
2013-08-05 06:59:50 +05:30
|
|
|
{
|
2013-10-21 02:48:40 +05:30
|
|
|
if (lib->hint() == "local")
|
|
|
|
continue;
|
2013-09-22 07:51:36 +05:30
|
|
|
QString download_path = lib->downloadUrl();
|
2013-09-08 05:45:20 +05:30
|
|
|
auto entry = metacache->resolveEntry("libraries", lib->storagePath());
|
2013-09-22 07:51:36 +05:30
|
|
|
if (entry->stale)
|
2013-09-08 05:45:20 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
if (lib->hint() == "forge-pack-xz")
|
2013-10-26 23:25:48 +05:30
|
|
|
jarlibDownloadJob->addNetAction(ForgeXzDownload::make(download_path, entry));
|
2013-09-30 06:04:46 +05:30
|
|
|
else
|
2013-10-26 23:25:48 +05:30
|
|
|
jarlibDownloadJob->addNetAction(CacheDownload::make(download_path, entry));
|
2013-09-08 05:45:20 +05:30
|
|
|
}
|
2013-08-05 06:59:50 +05:30
|
|
|
}
|
2013-10-06 04:43:40 +05:30
|
|
|
connect(jarlibDownloadJob.get(), SIGNAL(succeeded()), SLOT(jarlibFinished()));
|
|
|
|
connect(jarlibDownloadJob.get(), SIGNAL(failed()), SLOT(jarlibFailed()));
|
|
|
|
connect(jarlibDownloadJob.get(), SIGNAL(progress(qint64, qint64)),
|
2013-09-22 07:51:36 +05:30
|
|
|
SIGNAL(progress(qint64, qint64)));
|
2013-08-05 06:59:50 +05:30
|
|
|
|
2013-09-02 03:55:40 +05:30
|
|
|
jarlibDownloadJob->start();
|
2013-07-10 02:16:33 +05:30
|
|
|
}
|
|
|
|
|
2013-08-04 18:16:33 +05:30
|
|
|
void OneSixUpdate::jarlibFinished()
|
2013-07-10 02:16:33 +05:30
|
|
|
{
|
2013-08-09 03:56:35 +05:30
|
|
|
emitSucceeded();
|
2013-07-10 02:16:33 +05:30
|
|
|
}
|
|
|
|
|
2013-08-04 18:16:33 +05:30
|
|
|
void OneSixUpdate::jarlibFailed()
|
2013-07-10 02:16:33 +05:30
|
|
|
{
|
2013-09-26 06:28:09 +05:30
|
|
|
QStringList failed = jarlibDownloadJob->getFailedFiles();
|
|
|
|
QString failed_all = failed.join("\n");
|
|
|
|
emitFailed("Failed to download the following files:\n" + failed_all +
|
|
|
|
"\n\nPlease try again.");
|
2013-07-08 03:21:26 +05:30
|
|
|
}
|