pollymc/launcher/minecraft/update/LibrariesTask.cpp

98 lines
3.1 KiB
C++
Raw Normal View History

#include "LibrariesTask.h"
#include "minecraft/MinecraftInstance.h"
#include "minecraft/PackProfile.h"
#include "Application.h"
LibrariesTask::LibrariesTask(MinecraftInstance * inst)
{
2018-07-15 18:21:05 +05:30
m_inst = inst;
}
void LibrariesTask::executeTask()
{
setStatus(tr("Downloading required library files..."));
2018-07-15 18:21:05 +05:30
qDebug() << m_inst->name() << ": downloading libraries";
MinecraftInstance *inst = (MinecraftInstance *)m_inst;
2018-07-15 18:21:05 +05:30
// Build a list of URLs that will need to be downloaded.
auto components = inst->getPackProfile();
2018-07-15 18:21:05 +05:30
auto profile = components->getProfile();
NetJob::Ptr job{ new NetJob(tr("Libraries for instance %1").arg(inst->name()), APPLICATION->network()) };
2018-07-15 18:21:05 +05:30
downloadJob.reset(job);
auto metacache = APPLICATION->metacache();
auto processArtifactPool = [&](const QList<LibraryPtr> & pool, QStringList & errors, const QString & localPath)
2018-07-15 18:21:05 +05:30
{
for (auto lib : pool)
2018-07-15 18:21:05 +05:30
{
if(!lib)
{
emitFailed(tr("Null jar is specified in the metadata, aborting."));
return false;
}
auto dls = lib->getDownloads(inst->runtimeContext(), metacache.get(), errors, localPath);
for(auto dl : dls)
{
downloadJob->addNetAction(dl);
}
2018-07-15 18:21:05 +05:30
}
return true;
};
QStringList failedLocalLibraries;
QList<LibraryPtr> libArtifactPool;
libArtifactPool.append(profile->getLibraries());
libArtifactPool.append(profile->getNativeLibraries());
libArtifactPool.append(profile->getMavenFiles());
for (auto agent : profile->getAgents())
{
libArtifactPool.append(agent->library());
}
libArtifactPool.append(profile->getMainJar());
processArtifactPool(libArtifactPool, failedLocalLibraries, inst->getLocalLibraryPath());
QStringList failedLocalJarMods;
processArtifactPool(profile->getJarMods(), failedLocalJarMods, inst->jarModsDir());
if (!failedLocalJarMods.empty() || !failedLocalLibraries.empty())
2018-07-15 18:21:05 +05:30
{
downloadJob.reset();
QString failed_all = (failedLocalLibraries + failedLocalJarMods).join("\n");
2018-12-06 05:06:31 +05:30
emitFailed(tr("Some artifacts marked as 'local' are missing their files:\n%1\n\nYou need to either add the files, or removed the packages that require them.\nYou'll have to correct this problem manually.").arg(failed_all));
2018-07-15 18:21:05 +05:30
return;
}
2018-07-15 18:21:05 +05:30
connect(downloadJob.get(), &NetJob::succeeded, this, &LibrariesTask::emitSucceeded);
connect(downloadJob.get(), &NetJob::failed, this, &LibrariesTask::jarlibFailed);
connect(downloadJob.get(), &NetJob::aborted, this, [this]{ emitFailed(tr("Aborted")); });
2018-07-15 18:21:05 +05:30
connect(downloadJob.get(), &NetJob::progress, this, &LibrariesTask::progress);
downloadJob->start();
}
bool LibrariesTask::canAbort() const
{
2018-07-15 18:21:05 +05:30
return true;
}
void LibrariesTask::jarlibFailed(QString reason)
{
2018-07-15 18:21:05 +05:30
emitFailed(tr("Game update failed: it was impossible to fetch the required libraries.\nReason:\n%1").arg(reason));
}
bool LibrariesTask::abort()
{
2018-07-15 18:21:05 +05:30
if(downloadJob)
{
return downloadJob->abort();
}
else
{
qWarning() << "Prematurely aborted LibrariesTask";
}
return true;
}