2017-01-08 03:58:05 +00:00
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2013-02-22 00:10:17 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "Env.h"
|
2016-03-26 15:56:57 +00:00
|
|
|
#include <minecraft/forge/ForgeXzDownload.h>
|
2013-08-04 13:46:33 +01:00
|
|
|
#include "OneSixUpdate.h"
|
2016-02-27 18:58:40 +00:00
|
|
|
#include "OneSixInstance.h"
|
2013-02-22 00:10:17 +00:00
|
|
|
|
2013-05-08 18:56:43 +01:00
|
|
|
#include <QFile>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QTextStream>
|
|
|
|
#include <QDataStream>
|
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "BaseInstance.h"
|
|
|
|
#include "minecraft/MinecraftProfile.h"
|
2016-03-07 01:01:28 +00:00
|
|
|
#include "minecraft/Library.h"
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "net/URLConstants.h"
|
2015-10-05 00:47:27 +01:00
|
|
|
#include <FileSystem.h>
|
2013-05-08 18:56:43 +01:00
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
#include "update/FoldersTask.h"
|
|
|
|
#include "update/LibrariesTask.h"
|
|
|
|
#include "update/FMLLibrariesTask.h"
|
|
|
|
#include "update/AssetUpdateTask.h"
|
2013-05-08 18:56:43 +01:00
|
|
|
|
2017-03-19 01:13:49 +00:00
|
|
|
#include <meta/Index.h>
|
|
|
|
#include <meta/Version.h>
|
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
OneSixUpdate::OneSixUpdate(OneSixInstance *inst, QObject *parent) : Task(parent), m_inst(inst)
|
2013-05-08 18:56:43 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
// create folders
|
2013-08-11 23:39:19 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
m_tasks.append(std::make_shared<FoldersTask>(m_inst));
|
2013-08-11 23:39:19 +01:00
|
|
|
}
|
2013-09-22 03:21:36 +01:00
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
// add a version update task, if necessary
|
2014-02-21 18:15:59 +00:00
|
|
|
{
|
2017-03-12 18:45:28 +00:00
|
|
|
/*
|
2017-03-19 01:13:49 +00:00
|
|
|
* FIXME: there are some corner cases here that remain unhandled:
|
|
|
|
* what if local load succeeds but remote fails? The version is still usable...
|
|
|
|
*/
|
|
|
|
// FIXME: derive this from the actual list of version patches...
|
|
|
|
auto loadVersion = [&](const QString & uid, const QString & version)
|
2016-08-14 01:33:31 +01:00
|
|
|
{
|
2017-03-19 01:13:49 +00:00
|
|
|
auto obj = ENV.metadataIndex()->get(uid, version);
|
|
|
|
obj->load();
|
|
|
|
auto task = obj->getCurrentTask();
|
|
|
|
if(task)
|
2016-08-14 01:33:31 +01:00
|
|
|
{
|
2017-03-19 01:13:49 +00:00
|
|
|
m_tasks.append(task.unwrap());
|
2016-08-14 01:33:31 +01:00
|
|
|
}
|
2017-03-19 01:13:49 +00:00
|
|
|
};
|
2017-03-30 00:05:58 +01:00
|
|
|
loadVersion("org.lwjgl", m_inst->getComponentVersion("org.lwjgl"));
|
|
|
|
loadVersion("net.minecraft", m_inst->getComponentVersion("net.minecraft"));
|
2014-02-21 18:15:59 +00:00
|
|
|
}
|
2016-08-14 01:33:31 +01:00
|
|
|
|
|
|
|
// libraries download
|
2013-09-15 23:54:39 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
m_tasks.append(std::make_shared<LibrariesTask>(m_inst));
|
2013-09-15 23:54:39 +01:00
|
|
|
}
|
2013-08-05 02:29:50 +01:00
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
// FML libraries download and copy into the instance
|
2013-12-10 06:12:52 +00:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
m_tasks.append(std::make_shared<FMLLibrariesTask>(m_inst));
|
2013-12-10 06:12:52 +00:00
|
|
|
}
|
2014-01-14 00:13:35 +00:00
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
// assets update
|
2013-12-10 06:12:52 +00:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
m_tasks.append(std::make_shared<AssetUpdateTask>(m_inst));
|
2013-12-10 06:12:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
void OneSixUpdate::executeTask()
|
2013-08-05 02:29:50 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
if(!m_preFailure.isEmpty())
|
2014-03-09 22:42:25 +00:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
emitFailed(m_preFailure);
|
2016-03-18 19:49:09 +00:00
|
|
|
return;
|
2013-08-05 02:29:50 +01:00
|
|
|
}
|
2016-08-14 01:33:31 +01:00
|
|
|
next();
|
|
|
|
}
|
2013-09-22 03:21:36 +01:00
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
void OneSixUpdate::next()
|
|
|
|
{
|
|
|
|
if(m_abort)
|
2013-12-10 19:33:24 +00:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
emitFailed(tr("Aborted by user."));
|
|
|
|
return;
|
2013-12-10 19:33:24 +00:00
|
|
|
}
|
2016-08-14 01:33:31 +01:00
|
|
|
m_currentTask ++;
|
|
|
|
if(m_currentTask > 0)
|
2013-08-05 02:29:50 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
auto task = m_tasks[m_currentTask - 1];
|
|
|
|
disconnect(task.get(), &Task::succeeded, this, &OneSixUpdate::subtaskSucceeded);
|
|
|
|
disconnect(task.get(), &Task::failed, this, &OneSixUpdate::subtaskFailed);
|
|
|
|
disconnect(task.get(), &Task::progress, this, &OneSixUpdate::progress);
|
|
|
|
disconnect(task.get(), &Task::status, this, &OneSixUpdate::setStatus);
|
2013-08-05 02:29:50 +01:00
|
|
|
}
|
2016-08-14 01:33:31 +01:00
|
|
|
if(m_currentTask == m_tasks.size())
|
2014-04-13 22:06:28 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
emitSucceeded();
|
2014-04-13 22:06:28 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-08-14 01:33:31 +01:00
|
|
|
auto task = m_tasks[m_currentTask];
|
2017-03-19 01:13:49 +00:00
|
|
|
// if the task is already finished by the time we look at it, skip it
|
|
|
|
if(task->isFinished())
|
|
|
|
{
|
|
|
|
next();
|
|
|
|
}
|
2016-08-14 01:33:31 +01:00
|
|
|
connect(task.get(), &Task::succeeded, this, &OneSixUpdate::subtaskSucceeded);
|
|
|
|
connect(task.get(), &Task::failed, this, &OneSixUpdate::subtaskFailed);
|
|
|
|
connect(task.get(), &Task::progress, this, &OneSixUpdate::progress);
|
|
|
|
connect(task.get(), &Task::status, this, &OneSixUpdate::setStatus);
|
2017-03-19 01:13:49 +00:00
|
|
|
// if the task is already running, do not start it again
|
|
|
|
if(!task->isRunning())
|
|
|
|
{
|
|
|
|
task->start();
|
|
|
|
}
|
2013-07-09 21:46:33 +01:00
|
|
|
}
|
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
void OneSixUpdate::subtaskSucceeded()
|
2013-07-09 21:46:33 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
next();
|
2013-07-09 21:46:33 +01:00
|
|
|
}
|
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
void OneSixUpdate::subtaskFailed(QString error)
|
2013-07-09 21:46:33 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
emitFailed(error);
|
2013-07-07 22:51:26 +01:00
|
|
|
}
|
2014-05-04 23:10:59 +01:00
|
|
|
|
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
bool OneSixUpdate::abort()
|
2014-05-04 23:10:59 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
if(!m_abort)
|
2014-05-04 23:10:59 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
m_abort = true;
|
|
|
|
auto task = m_tasks[m_currentTask];
|
|
|
|
if(task->canAbort())
|
2014-05-04 23:10:59 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
return task->abort();
|
2014-05-04 23:10:59 +01:00
|
|
|
}
|
|
|
|
}
|
2016-08-14 01:33:31 +01:00
|
|
|
return true;
|
2014-05-04 23:10:59 +01:00
|
|
|
}
|
|
|
|
|
2016-08-14 01:33:31 +01:00
|
|
|
bool OneSixUpdate::canAbort() const
|
2014-05-04 23:10:59 +01:00
|
|
|
{
|
2016-08-14 01:33:31 +01:00
|
|
|
return true;
|
2014-05-11 15:43:20 +01:00
|
|
|
}
|