2014-03-02 03:36:47 +05:30
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
|
|
|
|
#include <modutils.h>
|
|
|
|
|
|
|
|
#include "logger/QsLog.h"
|
|
|
|
#include "logic/VersionFile.h"
|
|
|
|
#include "logic/OneSixLibrary.h"
|
|
|
|
#include "logic/VersionFinal.h"
|
2014-03-02 23:42:04 +05:30
|
|
|
#include "MMCJson.h"
|
2014-03-02 03:36:47 +05:30
|
|
|
|
2014-03-02 23:42:04 +05:30
|
|
|
using namespace MMCJson;
|
2014-03-02 03:36:47 +05:30
|
|
|
|
|
|
|
#define CURRENT_MINIMUM_LAUNCHER_VERSION 14
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
RawLibraryPtr RawLibrary::fromJson(const QJsonObject &libObj, const QString &filename)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
RawLibraryPtr out(new RawLibrary());
|
2014-03-02 03:36:47 +05:30
|
|
|
if (!libObj.contains("name"))
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
throw JSONValidationError(filename +
|
|
|
|
"contains a library that doesn't have a 'name' field");
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
out->name = libObj.value("name").toString();
|
2014-03-02 03:36:47 +05:30
|
|
|
|
|
|
|
auto readString = [libObj, filename](const QString & key, QString & variable)
|
|
|
|
{
|
|
|
|
if (libObj.contains(key))
|
|
|
|
{
|
|
|
|
QJsonValue val = libObj.value(key);
|
|
|
|
if (!val.isString())
|
|
|
|
{
|
|
|
|
QLOG_WARN() << key << "is not a string in" << filename << "(skipping)";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
variable = val.toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
readString("url", out->url);
|
|
|
|
readString("MMC-hint", out->hint);
|
|
|
|
readString("MMC-absulute_url", out->absoluteUrl);
|
|
|
|
readString("MMC-absoluteUrl", out->absoluteUrl);
|
2014-03-02 03:36:47 +05:30
|
|
|
if (libObj.contains("extract"))
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->applyExcludes = true;
|
2014-03-02 23:42:04 +05:30
|
|
|
auto extractObj = ensureObject(libObj.value("extract"));
|
|
|
|
for (auto excludeVal : ensureArray(extractObj.value("exclude")))
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->excludes.append(ensureString(excludeVal));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
if (libObj.contains("natives"))
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->applyNatives = true;
|
2014-03-02 23:42:04 +05:30
|
|
|
QJsonObject nativesObj = ensureObject(libObj.value("natives"));
|
2014-03-02 03:36:47 +05:30
|
|
|
for (auto it = nativesObj.begin(); it != nativesObj.end(); ++it)
|
|
|
|
{
|
|
|
|
if (!it.value().isString())
|
|
|
|
{
|
|
|
|
QLOG_WARN() << filename << "contains an invalid native (skipping)";
|
|
|
|
}
|
|
|
|
OpSys opSys = OpSys_fromString(it.key());
|
|
|
|
if (opSys != Os_Other)
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->natives.append(qMakePair(opSys, it.value().toString()));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (libObj.contains("rules"))
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->applyRules = true;
|
|
|
|
out->rules = rulesFromJsonV4(libObj);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
VersionFilePtr VersionFile::fromJson(const QJsonDocument &doc, const QString &filename,
|
2014-03-03 05:53:10 +05:30
|
|
|
const bool requireOrder, const bool isFTB)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
VersionFilePtr out(new VersionFile());
|
2014-03-02 03:36:47 +05:30
|
|
|
if (doc.isEmpty() || doc.isNull())
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
throw JSONValidationError(filename + " is empty or null");
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
if (!doc.isObject())
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
throw JSONValidationError("The root of " + filename + " is not an object");
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
QJsonObject root = doc.object();
|
|
|
|
|
|
|
|
if (requireOrder)
|
|
|
|
{
|
|
|
|
if (root.contains("order"))
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->order = ensureInteger(root.value("order"));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
// FIXME: evaluate if we don't want to throw exceptions here instead
|
2014-03-02 03:36:47 +05:30
|
|
|
QLOG_ERROR() << filename << "doesn't contain an order field";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
out->name = root.value("name").toString();
|
|
|
|
out->fileId = root.value("fileId").toString();
|
|
|
|
out->version = root.value("version").toString();
|
|
|
|
out->mcVersion = root.value("mcVersion").toString();
|
|
|
|
out->filename = filename;
|
2014-03-02 03:36:47 +05:30
|
|
|
|
|
|
|
auto readString = [root, filename](const QString & key, QString & variable)
|
|
|
|
{
|
|
|
|
if (root.contains(key))
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
variable = ensureString(root.value(key));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-02 23:42:04 +05:30
|
|
|
// FIXME: This should be ignored when applying.
|
2014-03-02 03:36:47 +05:30
|
|
|
if (!isFTB)
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
readString("id", out->id);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
readString("mainClass", out->mainClass);
|
|
|
|
readString("processArguments", out->processArguments);
|
|
|
|
readString("minecraftArguments", out->overwriteMinecraftArguments);
|
|
|
|
readString("+minecraftArguments", out->addMinecraftArguments);
|
|
|
|
readString("-minecraftArguments", out->removeMinecraftArguments);
|
|
|
|
readString("type", out->type);
|
|
|
|
readString("releaseTime", out->releaseTime);
|
|
|
|
readString("time", out->time);
|
|
|
|
readString("assets", out->assets);
|
2014-03-02 23:42:04 +05:30
|
|
|
|
2014-03-02 03:36:47 +05:30
|
|
|
if (root.contains("minimumLauncherVersion"))
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->minimumLauncherVersion = ensureInteger(root.value("minimumLauncherVersion"));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (root.contains("tweakers"))
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->shouldOverwriteTweakers = true;
|
2014-03-02 23:42:04 +05:30
|
|
|
for (auto tweakerVal : ensureArray(root.value("tweakers")))
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->overwriteTweakers.append(ensureString(tweakerVal));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
2014-03-02 23:42:04 +05:30
|
|
|
|
2014-03-02 03:36:47 +05:30
|
|
|
if (root.contains("+tweakers"))
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
for (auto tweakerVal : ensureArray(root.value("+tweakers")))
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->addTweakers.append(ensureString(tweakerVal));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
2014-03-02 23:42:04 +05:30
|
|
|
|
2014-03-02 03:36:47 +05:30
|
|
|
if (root.contains("-tweakers"))
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
for (auto tweakerVal : ensureArray(root.value("-tweakers")))
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->removeTweakers.append(ensureString(tweakerVal));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (root.contains("libraries"))
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
// FIXME: This should be done when applying.
|
2014-03-05 06:20:05 +05:30
|
|
|
out->shouldOverwriteLibs = !isFTB;
|
2014-03-02 23:42:04 +05:30
|
|
|
for (auto libVal : ensureArray(root.value("libraries")))
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
auto libObj = ensureObject(libVal);
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
auto lib = RawLibrary::fromJson(libObj, filename);
|
2014-03-02 23:42:04 +05:30
|
|
|
// FIXME: This should be done when applying.
|
2014-03-02 03:36:47 +05:30
|
|
|
if (isFTB)
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
lib->hint = "local";
|
|
|
|
lib->insertType = RawLibrary::Prepend;
|
|
|
|
out->addLibs.prepend(lib);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->overwriteLibs.append(lib);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-02 23:42:04 +05:30
|
|
|
|
2014-03-02 03:36:47 +05:30
|
|
|
if (root.contains("+libraries"))
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
for (auto libVal : ensureArray(root.value("+libraries")))
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
QJsonObject libObj = ensureObject(libVal);
|
|
|
|
QJsonValue insertVal = ensureExists(libObj.value("insert"));
|
|
|
|
|
|
|
|
// parse the library
|
2014-03-05 06:20:05 +05:30
|
|
|
auto lib = RawLibrary::fromJson(libObj, filename);
|
2014-03-02 23:42:04 +05:30
|
|
|
|
|
|
|
// TODO: utility functions for handling this case. templates?
|
2014-03-02 03:36:47 +05:30
|
|
|
QString insertString;
|
|
|
|
{
|
|
|
|
if (insertVal.isString())
|
|
|
|
{
|
|
|
|
insertString = insertVal.toString();
|
|
|
|
}
|
|
|
|
else if (insertVal.isObject())
|
|
|
|
{
|
|
|
|
QJsonObject insertObj = insertVal.toObject();
|
|
|
|
if (insertObj.isEmpty())
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
throw JSONValidationError("One library has an empty insert object in " +
|
|
|
|
filename);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
insertString = insertObj.keys().first();
|
2014-03-05 06:20:05 +05:30
|
|
|
lib->insertData = insertObj.value(insertString).toString();
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
if (insertString == "apply")
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
lib->insertType = RawLibrary::Apply;
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
else if (insertString == "prepend")
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
lib->insertType = RawLibrary::Prepend;
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
else if (insertString == "append")
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
lib->insertType = RawLibrary::Prepend;
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
else if (insertString == "replace")
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
lib->insertType = RawLibrary::Replace;
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
throw JSONValidationError("A '+' library in " + filename +
|
|
|
|
" contains an invalid insert type");
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2014-03-02 23:42:04 +05:30
|
|
|
if (libObj.contains("MMC-depend"))
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
const QString dependString = ensureString(libObj.value("MMC-depend"));
|
2014-03-02 03:36:47 +05:30
|
|
|
if (dependString == "hard")
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
lib->dependType = RawLibrary::Hard;
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
else if (dependString == "soft")
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
lib->dependType = RawLibrary::Soft;
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
throw JSONValidationError("A '+' library in " + filename +
|
|
|
|
" contains an invalid depend type");
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
out->addLibs.append(lib);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
if (root.contains("-libraries"))
|
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
for (auto libVal : ensureArray(root.value("-libraries")))
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
auto libObj = ensureObject(libVal);
|
2014-03-05 06:20:05 +05:30
|
|
|
out->removeLibs.append(ensureString(libObj.value("name")));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
OneSixLibraryPtr VersionFile::createLibrary(RawLibraryPtr lib)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
std::shared_ptr<OneSixLibrary> out(new OneSixLibrary(lib->name));
|
|
|
|
if (!lib->url.isEmpty())
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->setBaseUrl(lib->url);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
out->setHint(lib->hint);
|
|
|
|
if (!lib->absoluteUrl.isEmpty())
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
out->setAbsoluteUrl(lib->absoluteUrl);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
out->setAbsoluteUrl(lib->absoluteUrl);
|
|
|
|
out->extract_excludes = lib->excludes;
|
|
|
|
for (auto native : lib->natives)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
|
|
|
out->addNative(native.first, native.second);
|
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
out->setRules(lib->rules);
|
2014-03-02 03:36:47 +05:30
|
|
|
out->finalize();
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
int VersionFile::findLibrary(QList<OneSixLibraryPtr> haystack, const QString &needle)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
|
|
|
for (int i = 0; i < haystack.size(); ++i)
|
|
|
|
{
|
|
|
|
if (QRegExp(needle, Qt::CaseSensitive, QRegExp::WildcardUnix)
|
|
|
|
.indexIn(haystack.at(i)->rawName()) != -1)
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-03-02 23:42:04 +05:30
|
|
|
void VersionFile::applyTo(VersionFinal *version)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
|
|
|
if (minimumLauncherVersion != -1)
|
|
|
|
{
|
|
|
|
if (minimumLauncherVersion > CURRENT_MINIMUM_LAUNCHER_VERSION)
|
|
|
|
{
|
2014-03-10 04:12:25 +05:30
|
|
|
throw LauncherVersionError(minimumLauncherVersion, CURRENT_MINIMUM_LAUNCHER_VERSION);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!version->id.isNull() && !mcVersion.isNull())
|
|
|
|
{
|
|
|
|
if (QRegExp(mcVersion, Qt::CaseInsensitive, QRegExp::Wildcard).indexIn(version->id) ==
|
|
|
|
-1)
|
|
|
|
{
|
2014-03-10 04:12:25 +05:30
|
|
|
throw MinecraftVersionMismatch(fileId, mcVersion, version->id);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!id.isNull())
|
|
|
|
{
|
|
|
|
version->id = id;
|
|
|
|
}
|
|
|
|
if (!mainClass.isNull())
|
|
|
|
{
|
|
|
|
version->mainClass = mainClass;
|
|
|
|
}
|
|
|
|
if (!processArguments.isNull())
|
|
|
|
{
|
|
|
|
version->processArguments = processArguments;
|
|
|
|
}
|
|
|
|
if (!type.isNull())
|
|
|
|
{
|
|
|
|
version->type = type;
|
|
|
|
}
|
|
|
|
if (!releaseTime.isNull())
|
|
|
|
{
|
|
|
|
version->releaseTime = releaseTime;
|
|
|
|
}
|
|
|
|
if (!time.isNull())
|
|
|
|
{
|
|
|
|
version->time = time;
|
|
|
|
}
|
|
|
|
if (!assets.isNull())
|
|
|
|
{
|
|
|
|
version->assets = assets;
|
|
|
|
}
|
|
|
|
if (minimumLauncherVersion >= 0)
|
|
|
|
{
|
|
|
|
version->minimumLauncherVersion = minimumLauncherVersion;
|
|
|
|
}
|
|
|
|
if (!overwriteMinecraftArguments.isNull())
|
|
|
|
{
|
|
|
|
version->minecraftArguments = overwriteMinecraftArguments;
|
|
|
|
}
|
|
|
|
if (!addMinecraftArguments.isNull())
|
|
|
|
{
|
|
|
|
version->minecraftArguments += addMinecraftArguments;
|
|
|
|
}
|
|
|
|
if (!removeMinecraftArguments.isNull())
|
|
|
|
{
|
|
|
|
version->minecraftArguments.remove(removeMinecraftArguments);
|
|
|
|
}
|
|
|
|
if (shouldOverwriteTweakers)
|
|
|
|
{
|
|
|
|
version->tweakers = overwriteTweakers;
|
|
|
|
}
|
|
|
|
for (auto tweaker : addTweakers)
|
|
|
|
{
|
|
|
|
version->tweakers += tweaker;
|
|
|
|
}
|
|
|
|
for (auto tweaker : removeTweakers)
|
|
|
|
{
|
|
|
|
version->tweakers.removeAll(tweaker);
|
|
|
|
}
|
|
|
|
if (shouldOverwriteLibs)
|
|
|
|
{
|
|
|
|
version->libraries.clear();
|
|
|
|
for (auto lib : overwriteLibs)
|
|
|
|
{
|
|
|
|
version->libraries.append(createLibrary(lib));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto lib : addLibs)
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
switch (lib->insertType)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-03 05:53:10 +05:30
|
|
|
case RawLibrary::Apply:
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
int index = findLibrary(version->libraries, lib->name);
|
2014-03-02 03:36:47 +05:30
|
|
|
if (index >= 0)
|
|
|
|
{
|
|
|
|
auto library = version->libraries[index];
|
2014-03-05 06:20:05 +05:30
|
|
|
if (!lib->url.isNull())
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
library->setBaseUrl(lib->url);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
if (!lib->hint.isNull())
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
library->setHint(lib->hint);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
if (!lib->absoluteUrl.isNull())
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
library->setAbsoluteUrl(lib->absoluteUrl);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
if (lib->applyExcludes)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
library->extract_excludes = lib->excludes;
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
if (lib->applyNatives)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
|
|
|
library->clearSuffixes();
|
2014-03-05 06:20:05 +05:30
|
|
|
for (auto native : lib->natives)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
|
|
|
library->addNative(native.first, native.second);
|
|
|
|
}
|
|
|
|
}
|
2014-03-05 06:20:05 +05:30
|
|
|
if (lib->applyRules)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
library->setRules(lib->rules);
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
library->finalize();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
QLOG_WARN() << "Couldn't find" << lib->name << "(skipping)";
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-03-03 05:53:10 +05:30
|
|
|
case RawLibrary::Append:
|
|
|
|
case RawLibrary::Prepend:
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
|
|
|
|
2014-03-05 06:20:05 +05:30
|
|
|
const int startOfVersion = lib->name.lastIndexOf(':') + 1;
|
2014-03-02 03:36:47 +05:30
|
|
|
const int index = findLibrary(
|
2014-03-05 06:20:05 +05:30
|
|
|
version->libraries, QString(lib->name).replace(startOfVersion, INT_MAX, '*'));
|
2014-03-02 03:36:47 +05:30
|
|
|
if (index < 0)
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
if (lib->insertType == RawLibrary::Append)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
|
|
|
version->libraries.append(createLibrary(lib));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
version->libraries.prepend(createLibrary(lib));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto otherLib = version->libraries.at(index);
|
2014-03-05 06:20:05 +05:30
|
|
|
const Util::Version ourVersion = lib->name.mid(startOfVersion, INT_MAX);
|
2014-03-02 03:36:47 +05:30
|
|
|
const Util::Version otherVersion = otherLib->version();
|
|
|
|
// if the existing version is a hard dependency we can either use it or
|
|
|
|
// fail, but we can't change it
|
|
|
|
if (otherLib->dependType == OneSixLibrary::Hard)
|
|
|
|
{
|
|
|
|
// we need a higher version, or we're hard to and the versions aren't
|
|
|
|
// equal
|
|
|
|
if (ourVersion > otherVersion ||
|
2014-03-05 06:20:05 +05:30
|
|
|
(lib->dependType == RawLibrary::Hard && ourVersion != otherVersion))
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-02 23:42:04 +05:30
|
|
|
throw VersionBuildError(
|
2014-03-10 04:12:25 +05:30
|
|
|
QObject::tr(
|
2014-03-02 23:42:04 +05:30
|
|
|
"Error resolving library dependencies between %1 and %2 in %3.")
|
2014-03-05 06:20:05 +05:30
|
|
|
.arg(otherLib->rawName(), lib->name, filename));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// the library is already existing, so we don't have to do anything
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (otherLib->dependType == OneSixLibrary::Soft)
|
|
|
|
{
|
|
|
|
// if we are higher it means we should update
|
|
|
|
if (ourVersion > otherVersion)
|
|
|
|
{
|
|
|
|
auto library = createLibrary(lib);
|
|
|
|
if (Util::Version(otherLib->minVersion) < ourVersion)
|
|
|
|
{
|
|
|
|
library->minVersion = ourVersion.toString();
|
|
|
|
}
|
|
|
|
version->libraries.replace(index, library);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// our version is smaller than the existing version, but we require
|
|
|
|
// it: fail
|
2014-03-05 06:20:05 +05:30
|
|
|
if (lib->dependType == RawLibrary::Hard)
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-10 04:12:25 +05:30
|
|
|
throw VersionBuildError(QObject::tr(
|
2014-03-02 23:42:04 +05:30
|
|
|
"Error resolving library dependencies between %1 and %2 in %3.")
|
2014-03-05 06:20:05 +05:30
|
|
|
.arg(otherLib->rawName(), lib->name,
|
2014-03-02 23:42:04 +05:30
|
|
|
filename));
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2014-03-03 05:53:10 +05:30
|
|
|
case RawLibrary::Replace:
|
2014-03-02 03:36:47 +05:30
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
int index = findLibrary(version->libraries, lib->insertData);
|
2014-03-02 03:36:47 +05:30
|
|
|
if (index >= 0)
|
|
|
|
{
|
|
|
|
version->libraries.replace(index, createLibrary(lib));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-05 06:20:05 +05:30
|
|
|
QLOG_WARN() << "Couldn't find" << lib->insertData << "(skipping)";
|
2014-03-02 03:36:47 +05:30
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto lib : removeLibs)
|
|
|
|
{
|
|
|
|
int index = findLibrary(version->libraries, lib);
|
|
|
|
if (index >= 0)
|
|
|
|
{
|
|
|
|
version->libraries.removeAt(index);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QLOG_WARN() << "Couldn't find" << lib << "(skipping)";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|