2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2016-06-16 01:20:23 +01: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
|
|
|
|
*
|
|
|
|
* 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 "ExtractNatives.h"
|
|
|
|
#include <launch/LaunchTask.h>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <minecraft/MinecraftInstance.h>
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2022-01-24 21:55:57 +00:00
|
|
|
#include <quazip/quazip.h>
|
|
|
|
#include <quazip/quazipdir.h>
|
2016-06-16 01:20:23 +01:00
|
|
|
#include <QDir>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "FileSystem.h"
|
|
|
|
#include "MMCZip.h"
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2021-12-12 00:35:46 +00:00
|
|
|
#ifdef major
|
2023-08-02 17:35:35 +01:00
|
|
|
#undef major
|
2021-12-12 00:35:46 +00:00
|
|
|
#endif
|
|
|
|
#ifdef minor
|
2023-08-02 17:35:35 +01:00
|
|
|
#undef minor
|
2021-12-12 00:35:46 +00:00
|
|
|
#endif
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
static QString replaceSuffix(QString target, const QString& suffix, const QString& replacement)
|
2016-06-16 01:20:23 +01:00
|
|
|
{
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!target.endsWith(suffix)) {
|
2016-06-16 01:20:23 +01:00
|
|
|
return target;
|
|
|
|
}
|
|
|
|
target.resize(target.length() - suffix.length());
|
|
|
|
return target + replacement;
|
|
|
|
}
|
|
|
|
|
2023-08-02 12:47:50 +01:00
|
|
|
static bool unzipNatives(QString source, QString targetFolder, bool applyJnilibHack)
|
2016-06-16 01:20:23 +01:00
|
|
|
{
|
|
|
|
QuaZip zip(source);
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!zip.open(QuaZip::mdUnzip)) {
|
2016-06-16 01:20:23 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QDir directory(targetFolder);
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!zip.goToFirstFile()) {
|
2016-06-16 01:20:23 +01:00
|
|
|
return false;
|
|
|
|
}
|
2023-08-02 17:35:35 +01:00
|
|
|
do {
|
2016-06-16 01:20:23 +01:00
|
|
|
QString name = zip.getCurrentFileName();
|
2020-09-10 22:10:17 +01:00
|
|
|
auto lowercase = name.toLower();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (applyJnilibHack) {
|
2016-06-16 01:20:23 +01:00
|
|
|
name = replaceSuffix(name, ".jnilib", ".dylib");
|
|
|
|
}
|
|
|
|
QString absFilePath = directory.absoluteFilePath(name);
|
2023-08-02 17:35:35 +01:00
|
|
|
if (!JlCompress::extractFile(&zip, "", absFilePath)) {
|
2016-06-16 01:20:23 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} while (zip.goToNextFile());
|
|
|
|
zip.close();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (zip.getZipError() != 0) {
|
2016-06-16 01:20:23 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExtractNatives::executeTask()
|
|
|
|
{
|
|
|
|
auto instance = m_parent->instance();
|
|
|
|
std::shared_ptr<MinecraftInstance> minecraftInstance = std::dynamic_pointer_cast<MinecraftInstance>(instance);
|
|
|
|
auto toExtract = minecraftInstance->getNativeJars();
|
2023-08-02 17:35:35 +01:00
|
|
|
if (toExtract.isEmpty()) {
|
2016-11-17 00:21:49 +00:00
|
|
|
emitSucceeded();
|
|
|
|
return;
|
|
|
|
}
|
2020-09-10 22:10:17 +01:00
|
|
|
auto settings = minecraftInstance->settings();
|
2023-07-17 09:57:41 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
auto outputPath = minecraftInstance->getNativePath();
|
2016-06-16 01:20:23 +01:00
|
|
|
auto javaVersion = minecraftInstance->getJavaVersion();
|
|
|
|
bool jniHackEnabled = javaVersion.major() >= 8;
|
2023-08-02 17:35:35 +01:00
|
|
|
for (const auto& source : toExtract) {
|
2023-08-02 12:47:50 +01:00
|
|
|
if (!unzipNatives(source, outputPath, jniHackEnabled)) {
|
2023-08-02 17:35:35 +01:00
|
|
|
const char* reason = QT_TR_NOOP("Couldn't extract native jar '%1' to destination '%2'");
|
2021-06-18 23:42:40 +01:00
|
|
|
emit logLine(QString(reason).arg(source, outputPath), MessageLevel::Fatal);
|
|
|
|
emitFailed(tr(reason).arg(source, outputPath));
|
2016-06-16 01:20:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
emitSucceeded();
|
|
|
|
}
|
2016-11-17 00:21:49 +00:00
|
|
|
|
|
|
|
void ExtractNatives::finalize()
|
|
|
|
{
|
|
|
|
auto instance = m_parent->instance();
|
|
|
|
QString target_dir = FS::PathCombine(instance->instanceRoot(), "natives/");
|
|
|
|
QDir dir(target_dir);
|
|
|
|
dir.removeRecursively();
|
|
|
|
}
|