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