2013-11-04 07:23:05 +05:30
|
|
|
/* 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
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QJsonArray>
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
#include "OneSixLibrary.h"
|
|
|
|
#include "OneSixRule.h"
|
2013-09-16 04:24:39 +05:30
|
|
|
#include "OpSys.h"
|
2013-12-13 20:28:11 +05:30
|
|
|
#include "logic/net/URLConstants.h"
|
2014-01-18 08:02:31 +05:30
|
|
|
#include <pathutils.h>
|
|
|
|
#include <JlCompress.h>
|
|
|
|
#include "logger/QsLog.h"
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-05-11 16:07:21 +05:30
|
|
|
OneSixLibrary::OneSixLibrary(RawLibraryPtr base)
|
|
|
|
{
|
|
|
|
m_name = base->m_name;
|
|
|
|
m_base_url = base->m_base_url;
|
|
|
|
m_hint = base->m_hint;
|
|
|
|
m_absolute_url = base->m_absolute_url;
|
|
|
|
extract_excludes = base->extract_excludes;
|
|
|
|
m_native_suffixes = base->m_native_suffixes;
|
|
|
|
m_rules = base->m_rules;
|
|
|
|
finalize();
|
|
|
|
}
|
|
|
|
|
|
|
|
OneSixLibraryPtr OneSixLibrary::fromRawLibrary(RawLibraryPtr lib)
|
|
|
|
{
|
|
|
|
return OneSixLibraryPtr(new OneSixLibrary(lib));
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
void OneSixLibrary::finalize()
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
QStringList parts = m_name.split(':');
|
2013-09-12 03:13:17 +05:30
|
|
|
QString relative = parts[0];
|
2013-09-22 07:51:36 +05:30
|
|
|
relative.replace('.', '/');
|
2013-09-12 03:13:17 +05:30
|
|
|
relative += '/' + parts[1] + '/' + parts[2] + '/' + parts[1] + '-' + parts[2];
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2014-05-11 16:07:21 +05:30
|
|
|
if (!isNative())
|
2013-09-12 03:13:17 +05:30
|
|
|
relative += ".jar";
|
|
|
|
else
|
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
if (m_native_suffixes.contains(currentSystem))
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
|
|
|
relative += "-" + m_native_suffixes[currentSystem] + ".jar";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// really, bad.
|
|
|
|
relative += ".jar";
|
|
|
|
}
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
m_decentname = parts[1];
|
2014-02-02 18:35:07 +05:30
|
|
|
m_decentversion = minVersion = parts[2];
|
2013-09-12 03:13:17 +05:30
|
|
|
m_storage_path = relative;
|
2013-09-22 07:51:36 +05:30
|
|
|
m_download_url = m_base_url + relative;
|
|
|
|
|
|
|
|
if (m_rules.empty())
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
|
|
|
m_is_active = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RuleAction result = Disallow;
|
2013-09-22 07:51:36 +05:30
|
|
|
for (auto rule : m_rules)
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
RuleAction temp = rule->apply(this);
|
|
|
|
if (temp != Defer)
|
2013-09-12 03:13:17 +05:30
|
|
|
result = temp;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
m_is_active = (result == Allow);
|
2013-09-12 03:13:17 +05:30
|
|
|
}
|
2014-05-11 16:07:21 +05:30
|
|
|
if (isNative())
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
2013-09-22 07:51:36 +05:30
|
|
|
m_is_active = m_is_active && m_native_suffixes.contains(currentSystem);
|
2013-09-16 04:24:39 +05:30
|
|
|
m_decenttype = "Native";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_decenttype = "Java";
|
2013-09-12 03:13:17 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
void OneSixLibrary::setName(const QString &name)
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
|
|
|
m_name = name;
|
|
|
|
}
|
2014-01-24 22:42:02 +05:30
|
|
|
void OneSixLibrary::setBaseUrl(const QString &base_url)
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
|
|
|
m_base_url = base_url;
|
|
|
|
}
|
2014-01-24 22:42:02 +05:30
|
|
|
void OneSixLibrary::addNative(OpSys os, const QString &suffix)
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
|
|
|
m_native_suffixes[os] = suffix;
|
|
|
|
}
|
2014-01-27 23:50:07 +05:30
|
|
|
void OneSixLibrary::clearSuffixes()
|
|
|
|
{
|
|
|
|
m_native_suffixes.clear();
|
|
|
|
}
|
2014-01-24 22:42:02 +05:30
|
|
|
void OneSixLibrary::setRules(QList<std::shared_ptr<Rule>> rules)
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
|
|
|
m_rules = rules;
|
|
|
|
}
|
2014-01-24 22:42:02 +05:30
|
|
|
bool OneSixLibrary::isActive() const
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
|
|
|
return m_is_active;
|
|
|
|
}
|
2014-01-24 22:42:02 +05:30
|
|
|
QString OneSixLibrary::downloadUrl() const
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
2013-10-06 14:07:39 +05:30
|
|
|
if (m_absolute_url.size())
|
2013-09-22 07:51:36 +05:30
|
|
|
return m_absolute_url;
|
|
|
|
return m_download_url;
|
2013-09-12 03:13:17 +05:30
|
|
|
}
|
2014-01-24 22:42:02 +05:30
|
|
|
QString OneSixLibrary::storagePath() const
|
2013-09-12 03:13:17 +05:30
|
|
|
{
|
|
|
|
return m_storage_path;
|
|
|
|
}
|
2013-09-22 07:51:36 +05:30
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
void OneSixLibrary::setAbsoluteUrl(const QString &absolute_url)
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
|
|
|
m_absolute_url = absolute_url;
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
QString OneSixLibrary::absoluteUrl() const
|
2013-09-22 07:51:36 +05:30
|
|
|
{
|
|
|
|
return m_absolute_url;
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
void OneSixLibrary::setHint(const QString &hint)
|
2013-09-30 06:04:46 +05:30
|
|
|
{
|
|
|
|
m_hint = hint;
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
QString OneSixLibrary::hint() const
|
2013-09-30 06:04:46 +05:30
|
|
|
{
|
|
|
|
return m_hint;
|
|
|
|
}
|
|
|
|
|
2014-04-14 02:36:28 +05:30
|
|
|
QStringList OneSixLibrary::files()
|
2014-01-19 02:41:33 +05:30
|
|
|
{
|
2014-04-14 02:36:28 +05:30
|
|
|
QStringList retval;
|
2014-01-19 02:41:33 +05:30
|
|
|
QString storage = storagePath();
|
|
|
|
if (storage.contains("${arch}"))
|
|
|
|
{
|
|
|
|
QString cooked_storage = storage;
|
|
|
|
cooked_storage.replace("${arch}", "32");
|
2014-05-03 19:10:46 +05:30
|
|
|
retval.append(cooked_storage);
|
2014-01-19 02:41:33 +05:30
|
|
|
cooked_storage = storage;
|
|
|
|
cooked_storage.replace("${arch}", "64");
|
2014-05-03 19:10:46 +05:30
|
|
|
retval.append(cooked_storage);
|
2014-01-19 02:41:33 +05:30
|
|
|
}
|
|
|
|
else
|
2014-05-03 19:10:46 +05:30
|
|
|
retval.append(storage);
|
2014-04-14 02:36:28 +05:30
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2014-05-03 19:10:46 +05:30
|
|
|
bool OneSixLibrary::filesExist(const QDir &base)
|
2014-04-14 02:36:28 +05:30
|
|
|
{
|
|
|
|
auto libFiles = files();
|
|
|
|
for(auto file: libFiles)
|
2014-01-19 02:41:33 +05:30
|
|
|
{
|
2014-05-03 19:10:46 +05:30
|
|
|
QFileInfo info(base, file);
|
|
|
|
QLOG_WARN() << info.absoluteFilePath() << "doesn't exist";
|
2014-01-19 02:50:36 +05:30
|
|
|
if (!info.exists())
|
2014-01-19 02:41:33 +05:30
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-01-24 22:42:02 +05:30
|
|
|
bool OneSixLibrary::extractTo(QString target_dir)
|
2014-01-18 08:02:31 +05:30
|
|
|
{
|
|
|
|
QString storage = storagePath();
|
|
|
|
if (storage.contains("${arch}"))
|
|
|
|
{
|
|
|
|
QString cooked_storage = storage;
|
|
|
|
cooked_storage.replace("${arch}", "32");
|
|
|
|
QString origin = PathCombine("libraries", cooked_storage);
|
|
|
|
QString target_dir_cooked = PathCombine(target_dir, "32");
|
2014-01-27 23:50:07 +05:30
|
|
|
if (!ensureFolderPathExists(target_dir_cooked))
|
2014-01-18 08:02:31 +05:30
|
|
|
{
|
|
|
|
QLOG_ERROR() << "Couldn't create folder " + target_dir_cooked;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (JlCompress::extractWithExceptions(origin, target_dir_cooked, extract_excludes)
|
|
|
|
.isEmpty())
|
|
|
|
{
|
|
|
|
QLOG_ERROR() << "Couldn't extract " + origin;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
cooked_storage = storage;
|
|
|
|
cooked_storage.replace("${arch}", "64");
|
|
|
|
origin = PathCombine("libraries", cooked_storage);
|
2014-01-21 05:20:18 +05:30
|
|
|
target_dir_cooked = PathCombine(target_dir, "64");
|
2014-01-27 23:50:07 +05:30
|
|
|
if (!ensureFolderPathExists(target_dir_cooked))
|
2014-01-18 08:02:31 +05:30
|
|
|
{
|
|
|
|
QLOG_ERROR() << "Couldn't create folder " + target_dir_cooked;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (JlCompress::extractWithExceptions(origin, target_dir_cooked, extract_excludes)
|
|
|
|
.isEmpty())
|
|
|
|
{
|
|
|
|
QLOG_ERROR() << "Couldn't extract " + origin;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-27 23:50:07 +05:30
|
|
|
if (!ensureFolderPathExists(target_dir))
|
2014-01-18 08:02:31 +05:30
|
|
|
{
|
|
|
|
QLOG_ERROR() << "Couldn't create folder " + target_dir;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QString path = PathCombine("libraries", storage);
|
|
|
|
if (JlCompress::extractWithExceptions(path, target_dir, extract_excludes).isEmpty())
|
|
|
|
{
|
|
|
|
QLOG_ERROR() << "Couldn't extract " + path;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|