pollymc/logic/minecraft/OneSixUpdate.cpp

416 lines
12 KiB
C++
Raw Normal View History

2015-02-03 03:55:30 +05:30
/* Copyright 2013-2015 MultiMC Contributors
2013-02-22 05:40:17 +05:30
*
* 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-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.
*/
2015-02-09 06:21:14 +05:30
#include "Env.h"
2013-08-04 18:16:33 +05:30
#include "OneSixUpdate.h"
2013-02-22 05:40:17 +05:30
#include <QtNetwork>
#include <QFile>
#include <QFileInfo>
#include <QTextStream>
#include <QDataStream>
2014-05-09 00:50:10 +05:30
#include <pathutils.h>
#include <JlCompress.h>
2015-02-09 06:21:14 +05:30
#include "BaseInstance.h"
#include "minecraft/MinecraftVersionList.h"
#include "minecraft/MinecraftProfile.h"
#include "minecraft/OneSixLibrary.h"
#include "minecraft/OneSixInstance.h"
#include "forge/ForgeMirrors.h"
#include "net/URLConstants.h"
#include "minecraft/AssetsUtils.h"
#include "Exception.h"
#include "MMCZip.h"
OneSixUpdate::OneSixUpdate(OneSixInstance *inst, QObject *parent) : Task(parent), m_inst(inst)
{
}
2013-08-04 18:16:33 +05:30
void OneSixUpdate::executeTask()
{
// Make directories
QDir mcDir(m_inst->minecraftRoot());
if (!mcDir.exists() && !mcDir.mkpath("."))
{
emitFailed(tr("Failed to create folder for minecraft binaries."));
return;
}
// Get a pointer to the version object that corresponds to the instance's version.
targetVersion = std::dynamic_pointer_cast<MinecraftVersion>(
ENV.getVersion("net.minecraft", m_inst->intendedVersionId()));
if (targetVersion == nullptr)
2013-08-05 06:59:50 +05:30
{
// don't do anything if it was invalid
emitFailed(tr("The specified Minecraft version is invalid. Choose a different one."));
return;
2013-08-05 06:59:50 +05:30
}
if (m_inst->providesVersionFile() || !targetVersion->needsUpdate())
2014-02-21 23:45:59 +05:30
{
qDebug() << "Instance either provides a version file or doesn't need an update.";
2014-02-21 23:45:59 +05:30
jarlibStart();
return;
}
versionUpdateTask = std::dynamic_pointer_cast<MinecraftVersionList>(ENV.getVersionList("net.minecraft"))->createUpdateTask(m_inst->intendedVersionId());
if (!versionUpdateTask)
{
qDebug() << "Didn't spawn an update task.";
jarlibStart();
return;
}
connect(versionUpdateTask.get(), SIGNAL(succeeded()), SLOT(jarlibStart()));
2015-04-27 02:34:50 +05:30
connect(versionUpdateTask.get(), &NetJob::failed, this, &OneSixUpdate::versionUpdateFailed);
connect(versionUpdateTask.get(), SIGNAL(progress(qint64, qint64)),
SIGNAL(progress(qint64, qint64)));
setStatus(tr("Getting the version files from Mojang..."));
versionUpdateTask->start();
2013-08-05 06:59:50 +05:30
}
void OneSixUpdate::versionUpdateFailed(QString reason)
2013-08-05 06:59:50 +05:30
{
emitFailed(reason);
2013-08-05 06:59:50 +05:30
}
2013-12-10 11:42:52 +05:30
void OneSixUpdate::assetIndexStart()
{
2013-12-23 21:16:01 +05:30
setStatus(tr("Updating assets index..."));
2013-12-10 11:42:52 +05:30
OneSixInstance *inst = (OneSixInstance *)m_inst;
2015-01-28 03:01:07 +05:30
std::shared_ptr<MinecraftProfile> version = inst->getMinecraftProfile();
2013-12-10 11:42:52 +05:30
QString assetName = version->assets;
QUrl indexUrl = "http://" + URLConstants::AWS_DOWNLOAD_INDEXES + assetName + ".json";
2013-12-10 11:42:52 +05:30
QString localPath = assetName + ".json";
auto job = new NetJob(tr("Asset index for %1").arg(inst->name()));
2013-12-10 11:42:52 +05:30
auto metacache = ENV.metacache();
2013-12-10 11:42:52 +05:30
auto entry = metacache->resolveEntry("asset_indexes", localPath);
job->addNetAction(CacheDownload::make(indexUrl, entry));
jarlibDownloadJob.reset(job);
connect(jarlibDownloadJob.get(), SIGNAL(succeeded()), SLOT(assetIndexFinished()));
2015-04-27 02:34:50 +05:30
connect(jarlibDownloadJob.get(), &NetJob::failed, this, &OneSixUpdate::assetIndexFailed);
2013-12-10 11:42:52 +05:30
connect(jarlibDownloadJob.get(), SIGNAL(progress(qint64, qint64)),
SIGNAL(progress(qint64, qint64)));
2015-05-07 01:46:52 +05:30
qDebug() << m_inst->name() << ": Starting asset index download";
2013-12-10 11:42:52 +05:30
jarlibDownloadJob->start();
}
void OneSixUpdate::assetIndexFinished()
{
AssetsIndex index;
2015-05-07 01:46:52 +05:30
qDebug() << m_inst->name() << ": Finished asset index download";
2013-12-10 11:42:52 +05:30
OneSixInstance *inst = (OneSixInstance *)m_inst;
2015-01-28 03:01:07 +05:30
std::shared_ptr<MinecraftProfile> version = inst->getMinecraftProfile();
2013-12-10 11:42:52 +05:30
QString assetName = version->assets;
QString asset_fname = "assets/indexes/" + assetName + ".json";
if (!AssetsUtils::loadAssetsIndexJson(asset_fname, &index))
{
auto metacache = ENV.metacache();
auto entry = metacache->resolveEntry("asset_indexes", assetName + ".json");
metacache->evictEntry(entry);
emitFailed(tr("Failed to read the assets index!"));
2013-12-10 11:42:52 +05:30
}
2013-12-10 11:42:52 +05:30
QList<Md5EtagDownloadPtr> dls;
for (auto object : index.objects.values())
{
QString objectName = object.hash.left(2) + "/" + object.hash;
QFileInfo objectFile("assets/objects/" + objectName);
if ((!objectFile.isFile()) || (objectFile.size() != object.size))
{
auto objectDL = MD5EtagDownload::make(
QUrl("http://" + URLConstants::RESOURCE_BASE + objectName),
2013-12-10 11:42:52 +05:30
objectFile.filePath());
objectDL->m_total_progress = object.size;
2013-12-10 11:42:52 +05:30
dls.append(objectDL);
}
}
if (dls.size())
2013-12-10 11:42:52 +05:30
{
2013-12-23 21:16:01 +05:30
setStatus(tr("Getting the assets files from Mojang..."));
auto job = new NetJob(tr("Assets for %1").arg(inst->name()));
for (auto dl : dls)
2013-12-10 11:42:52 +05:30
job->addNetAction(dl);
jarlibDownloadJob.reset(job);
connect(jarlibDownloadJob.get(), SIGNAL(succeeded()), SLOT(assetsFinished()));
2015-04-27 02:34:50 +05:30
connect(jarlibDownloadJob.get(), &NetJob::failed, this, &OneSixUpdate::assetsFailed);
2013-12-10 11:42:52 +05:30
connect(jarlibDownloadJob.get(), SIGNAL(progress(qint64, qint64)),
SIGNAL(progress(qint64, qint64)));
2013-12-10 11:42:52 +05:30
jarlibDownloadJob->start();
return;
}
assetsFinished();
}
2015-04-27 02:34:50 +05:30
void OneSixUpdate::assetIndexFailed(QString reason)
2013-12-10 11:42:52 +05:30
{
2015-05-07 01:46:52 +05:30
qDebug() << m_inst->name() << ": Failed asset index download";
2015-04-27 02:34:50 +05:30
emitFailed(tr("Failed to download the assets index:\n%1").arg(reason));
2013-12-10 11:42:52 +05:30
}
void OneSixUpdate::assetsFinished()
{
emitSucceeded();
2013-12-10 11:42:52 +05:30
}
2015-04-27 02:34:50 +05:30
void OneSixUpdate::assetsFailed(QString reason)
2013-12-10 11:42:52 +05:30
{
2015-04-27 02:34:50 +05:30
emitFailed(tr("Failed to download assets:\n%1").arg(reason));
2013-12-10 11:42:52 +05:30
}
2013-08-05 06:59:50 +05:30
void OneSixUpdate::jarlibStart()
{
2013-12-23 21:16:01 +05:30
setStatus(tr("Getting the library files from Mojang..."));
qDebug() << m_inst->name() << ": downloading libraries";
OneSixInstance *inst = (OneSixInstance *)m_inst;
try
{
2015-01-28 03:01:07 +05:30
inst->reloadProfile();
}
catch (Exception &e)
{
emitFailed(e.cause());
return;
}
catch (...)
2013-08-05 06:59:50 +05:30
{
emitFailed(tr("Failed to load the version description file for reasons unknown."));
2013-08-05 06:59:50 +05:30
return;
}
// Build a list of URLs that will need to be downloaded.
2015-01-28 03:01:07 +05:30
std::shared_ptr<MinecraftProfile> version = inst->getMinecraftProfile();
// minecraft.jar for this version
{
QString version_id = version->id;
QString localPath = version_id + "/" + version_id + ".jar";
QString urlstr = "http://" + URLConstants::AWS_DOWNLOAD_VERSIONS + localPath;
auto job = new NetJob(tr("Libraries for instance %1").arg(inst->name()));
auto metacache = ENV.metacache();
auto entry = metacache->resolveEntry("versions", localPath);
job->addNetAction(CacheDownload::make(QUrl(urlstr), entry));
2014-05-05 03:40:59 +05:30
jarHashOnEntry = entry->md5sum;
jarlibDownloadJob.reset(job);
}
2013-08-05 06:59:50 +05:30
auto libs = version->getActiveNativeLibs();
libs.append(version->getActiveNormalLibs());
auto metacache = ENV.metacache();
QList<ForgeXzDownloadPtr> ForgeLibs;
QList<std::shared_ptr<OneSixLibrary>> brokenLocalLibs;
for (auto lib : libs)
2013-08-05 06:59:50 +05:30
{
if (lib->hint() == "local")
{
if (!lib->filesExist(m_inst->librariesPath()))
brokenLocalLibs.append(lib);
continue;
}
QString raw_storage = lib->storageSuffix();
QString raw_dl = lib->url();
auto f = [&](QString storage, QString dl)
{
auto entry = metacache->resolveEntry("libraries", storage);
if (entry->stale)
{
if (lib->hint() == "forge-pack-xz")
{
ForgeLibs.append(ForgeXzDownload::make(storage, entry));
}
else
{
jarlibDownloadJob->addNetAction(CacheDownload::make(dl, entry));
}
}
};
if (raw_storage.contains("${arch}"))
{
QString cooked_storage = raw_storage;
QString cooked_dl = raw_dl;
f(cooked_storage.replace("${arch}", "32"), cooked_dl.replace("${arch}", "32"));
cooked_storage = raw_storage;
cooked_dl = raw_dl;
f(cooked_storage.replace("${arch}", "64"), cooked_dl.replace("${arch}", "64"));
}
else
{
f(raw_storage, raw_dl);
}
2013-08-05 06:59:50 +05:30
}
if (!brokenLocalLibs.empty())
{
jarlibDownloadJob.reset();
QStringList failed;
for (auto brokenLib : brokenLocalLibs)
{
failed.append(brokenLib->files());
}
QString failed_all = failed.join("\n");
emitFailed(tr("Some libraries marked as 'local' are missing their jar "
"files:\n%1\n\nYou'll have to correct this problem manually. If this is "
"an externally tracked instance, make sure to run it at least once "
"outside of MultiMC.").arg(failed_all));
return;
}
// TODO: think about how to propagate this from the original json file... or IF AT ALL
QString forgeMirrorList = "http://files.minecraftforge.net/mirror-brand.list";
if (!ForgeLibs.empty())
{
jarlibDownloadJob->addNetAction(
ForgeMirrors::make(ForgeLibs, jarlibDownloadJob, forgeMirrorList));
}
2013-10-06 04:43:40 +05:30
connect(jarlibDownloadJob.get(), SIGNAL(succeeded()), SLOT(jarlibFinished()));
2015-04-27 02:34:50 +05:30
connect(jarlibDownloadJob.get(), &NetJob::failed, this, &OneSixUpdate::jarlibFailed);
2013-10-06 04:43:40 +05:30
connect(jarlibDownloadJob.get(), SIGNAL(progress(qint64, qint64)),
SIGNAL(progress(qint64, qint64)));
2013-08-05 06:59:50 +05:30
2013-09-02 03:55:40 +05:30
jarlibDownloadJob->start();
}
2013-08-04 18:16:33 +05:30
void OneSixUpdate::jarlibFinished()
{
2014-05-05 03:40:59 +05:30
OneSixInstance *inst = (OneSixInstance *)m_inst;
2015-01-28 03:01:07 +05:30
std::shared_ptr<MinecraftProfile> version = inst->getMinecraftProfile();
if (version->traits.contains("legacyFML"))
2014-05-05 03:40:59 +05:30
{
fmllibsStart();
}
else
{
assetIndexStart();
}
}
2015-04-27 02:34:50 +05:30
void OneSixUpdate::jarlibFailed(QString reason)
{
QStringList failed = jarlibDownloadJob->getFailedFiles();
QString failed_all = failed.join("\n");
emitFailed(
2015-04-27 02:34:50 +05:30
tr("Failed to download the following files:\n%1\n\nReason:%2\nPlease try again.").arg(failed_all, reason));
}
2014-05-05 03:40:59 +05:30
void OneSixUpdate::fmllibsStart()
{
// Get the mod list
OneSixInstance *inst = (OneSixInstance *)m_inst;
2015-01-28 03:01:07 +05:30
std::shared_ptr<MinecraftProfile> fullversion = inst->getMinecraftProfile();
2014-05-05 03:40:59 +05:30
bool forge_present = false;
QString version = inst->intendedVersionId();
auto &fmlLibsMapping = g_VersionFilterData.fmlLibsMapping;
2014-05-05 03:40:59 +05:30
if (!fmlLibsMapping.contains(version))
{
assetIndexStart();
return;
}
auto &libList = fmlLibsMapping[version];
// determine if we need some libs for FML or forge
setStatus(tr("Checking for FML libraries..."));
forge_present = (fullversion->versionPatch("net.minecraftforge") != nullptr);
2014-05-05 03:40:59 +05:30
// we don't...
if (!forge_present)
{
assetIndexStart();
return;
}
// now check the lib folder inside the instance for files.
for (auto &lib : libList)
{
QFileInfo libInfo(PathCombine(inst->libDir(), lib.filename));
if (libInfo.exists())
continue;
fmlLibsToProcess.append(lib);
}
// if everything is in place, there's nothing to do here...
if (fmlLibsToProcess.isEmpty())
{
assetIndexStart();
return;
}
// download missing libs to our place
setStatus(tr("Dowloading FML libraries..."));
auto dljob = new NetJob("FML libraries");
auto metacache = ENV.metacache();
2014-05-05 03:40:59 +05:30
for (auto &lib : fmlLibsToProcess)
{
auto entry = metacache->resolveEntry("fmllibs", lib.filename);
QString urlString = lib.ours ? URLConstants::FMLLIBS_OUR_BASE_URL + lib.filename
: URLConstants::FMLLIBS_FORGE_BASE_URL + lib.filename;
dljob->addNetAction(CacheDownload::make(QUrl(urlString), entry));
}
connect(dljob, SIGNAL(succeeded()), SLOT(fmllibsFinished()));
2015-04-27 02:34:50 +05:30
connect(dljob, &NetJob::failed, this, &OneSixUpdate::fmllibsFailed);
2014-05-05 03:40:59 +05:30
connect(dljob, SIGNAL(progress(qint64, qint64)), SIGNAL(progress(qint64, qint64)));
legacyDownloadJob.reset(dljob);
legacyDownloadJob->start();
}
void OneSixUpdate::fmllibsFinished()
{
legacyDownloadJob.reset();
if (!fmlLibsToProcess.isEmpty())
2014-05-05 03:40:59 +05:30
{
setStatus(tr("Copying FML libraries into the instance..."));
OneSixInstance *inst = (OneSixInstance *)m_inst;
auto metacache = ENV.metacache();
2014-05-05 03:40:59 +05:30
int index = 0;
for (auto &lib : fmlLibsToProcess)
{
progress(index, fmlLibsToProcess.size());
auto entry = metacache->resolveEntry("fmllibs", lib.filename);
auto path = PathCombine(inst->libDir(), lib.filename);
if (!ensureFilePathExists(path))
2014-05-05 03:40:59 +05:30
{
emitFailed(tr("Failed creating FML library folder inside the instance."));
return;
}
if (!QFile::copy(entry->getFullPath(), PathCombine(inst->libDir(), lib.filename)))
{
emitFailed(tr("Failed copying Forge/FML library: %1.").arg(lib.filename));
return;
}
index++;
}
progress(index, fmlLibsToProcess.size());
}
assetIndexStart();
}
2015-04-27 02:34:50 +05:30
void OneSixUpdate::fmllibsFailed(QString reason)
2014-05-05 03:40:59 +05:30
{
2015-04-27 02:34:50 +05:30
emitFailed(tr("Game update failed: it was impossible to fetch the required FML libraries.\nReason:\n%1").arg(reason));
2014-05-05 03:40:59 +05:30
return;
}