Merge pull request #2820 from Trial97/mac_java
Add extra step to macos java install
This commit is contained in:
commit
c57b1d4227
@ -439,6 +439,8 @@ set(JAVA_SOURCES
|
|||||||
java/download/ArchiveDownloadTask.h
|
java/download/ArchiveDownloadTask.h
|
||||||
java/download/ManifestDownloadTask.cpp
|
java/download/ManifestDownloadTask.cpp
|
||||||
java/download/ManifestDownloadTask.h
|
java/download/ManifestDownloadTask.h
|
||||||
|
java/download/SymlinkTask.cpp
|
||||||
|
java/download/SymlinkTask.h
|
||||||
|
|
||||||
ui/java/InstallJavaDialog.h
|
ui/java/InstallJavaDialog.h
|
||||||
ui/java/InstallJavaDialog.cpp
|
ui/java/InstallJavaDialog.cpp
|
||||||
|
81
launcher/java/download/SymlinkTask.cpp
Normal file
81
launcher/java/download/SymlinkTask.cpp
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-only
|
||||||
|
/*
|
||||||
|
* Prism Launcher - Minecraft Launcher
|
||||||
|
* Copyright (c) 2023-2024 Trial97 <alexandru.tripon97@gmail.com>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, version 3.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
#include "java/download/SymlinkTask.h"
|
||||||
|
#include <QFileInfo>
|
||||||
|
|
||||||
|
#include "FileSystem.h"
|
||||||
|
|
||||||
|
namespace Java {
|
||||||
|
SymlinkTask::SymlinkTask(QString final_path) : m_path(final_path) {}
|
||||||
|
|
||||||
|
QString findBinPath(QString root, QString pattern)
|
||||||
|
{
|
||||||
|
auto path = FS::PathCombine(root, pattern);
|
||||||
|
if (QFileInfo::exists(path)) {
|
||||||
|
return path;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto entries = QDir(root).entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot);
|
||||||
|
for (auto& entry : entries) {
|
||||||
|
path = FS::PathCombine(entry.absoluteFilePath(), pattern);
|
||||||
|
if (QFileInfo::exists(path)) {
|
||||||
|
return path;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
void SymlinkTask::executeTask()
|
||||||
|
{
|
||||||
|
setStatus(tr("Checking for Java binary path"));
|
||||||
|
const auto binPath = FS::PathCombine("bin", "java");
|
||||||
|
const auto wantedPath = FS::PathCombine(m_path, binPath);
|
||||||
|
if (QFileInfo::exists(wantedPath)) {
|
||||||
|
emitSucceeded();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setStatus(tr("Searching for Java binary path"));
|
||||||
|
const auto contentsPartialPath = FS::PathCombine("Contents", "Home", binPath);
|
||||||
|
const auto relativePathToBin = findBinPath(m_path, contentsPartialPath);
|
||||||
|
if (relativePathToBin.isEmpty()) {
|
||||||
|
emitFailed(tr("Failed to find Java binary path"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const auto folderToLink = relativePathToBin.chopped(binPath.length());
|
||||||
|
|
||||||
|
setStatus(tr("Collecting folders to symlink"));
|
||||||
|
auto entries = QDir(folderToLink).entryInfoList(QDir::NoDotAndDotDot | QDir::AllEntries);
|
||||||
|
QList<FS::LinkPair> files;
|
||||||
|
setProgress(0, entries.length());
|
||||||
|
for (auto& entry : entries) {
|
||||||
|
files.append({ entry.absoluteFilePath(), FS::PathCombine(m_path, entry.fileName()) });
|
||||||
|
}
|
||||||
|
|
||||||
|
setStatus(tr("Symlinking Java binary path"));
|
||||||
|
FS::create_link folderLink(files);
|
||||||
|
connect(&folderLink, &FS::create_link::fileLinked, [this](QString src, QString dst) { setProgress(m_progress + 1, m_progressTotal); });
|
||||||
|
if (!folderLink()) {
|
||||||
|
emitFailed(folderLink.getOSError().message().c_str());
|
||||||
|
} else {
|
||||||
|
emitSucceeded();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Java
|
36
launcher/java/download/SymlinkTask.h
Normal file
36
launcher/java/download/SymlinkTask.h
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-only
|
||||||
|
/*
|
||||||
|
* Prism Launcher - Minecraft Launcher
|
||||||
|
* Copyright (c) 2023-2024 Trial97 <alexandru.tripon97@gmail.com>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, version 3.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "tasks/Task.h"
|
||||||
|
namespace Java {
|
||||||
|
|
||||||
|
class SymlinkTask : public Task {
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
SymlinkTask(QString final_path);
|
||||||
|
virtual ~SymlinkTask() = default;
|
||||||
|
|
||||||
|
void executeTask() override;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
QString m_path;
|
||||||
|
Task::Ptr m_task;
|
||||||
|
};
|
||||||
|
} // namespace Java
|
@ -41,6 +41,7 @@
|
|||||||
#include "Application.h"
|
#include "Application.h"
|
||||||
#include "FileSystem.h"
|
#include "FileSystem.h"
|
||||||
#include "MessageLevel.h"
|
#include "MessageLevel.h"
|
||||||
|
#include "QObjectPtr.h"
|
||||||
#include "SysInfo.h"
|
#include "SysInfo.h"
|
||||||
#include "java/JavaInstall.h"
|
#include "java/JavaInstall.h"
|
||||||
#include "java/JavaInstallList.h"
|
#include "java/JavaInstallList.h"
|
||||||
@ -48,10 +49,12 @@
|
|||||||
#include "java/JavaVersion.h"
|
#include "java/JavaVersion.h"
|
||||||
#include "java/download/ArchiveDownloadTask.h"
|
#include "java/download/ArchiveDownloadTask.h"
|
||||||
#include "java/download/ManifestDownloadTask.h"
|
#include "java/download/ManifestDownloadTask.h"
|
||||||
|
#include "java/download/SymlinkTask.h"
|
||||||
#include "meta/Index.h"
|
#include "meta/Index.h"
|
||||||
#include "minecraft/MinecraftInstance.h"
|
#include "minecraft/MinecraftInstance.h"
|
||||||
#include "minecraft/PackProfile.h"
|
#include "minecraft/PackProfile.h"
|
||||||
#include "net/Mode.h"
|
#include "net/Mode.h"
|
||||||
|
#include "tasks/SequentialTask.h"
|
||||||
|
|
||||||
AutoInstallJava::AutoInstallJava(LaunchTask* parent)
|
AutoInstallJava::AutoInstallJava(LaunchTask* parent)
|
||||||
: LaunchStep(parent)
|
: LaunchStep(parent)
|
||||||
@ -175,6 +178,12 @@ void AutoInstallJava::downloadJava(Meta::Version::Ptr version, QString javaName)
|
|||||||
emitFailed(tr("Could not determine Java download type!"));
|
emitFailed(tr("Could not determine Java download type!"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#if defined(Q_OS_MACOS)
|
||||||
|
auto seq = makeShared<SequentialTask>(this, tr("Install Java"));
|
||||||
|
seq->addTask(m_current_task);
|
||||||
|
seq->addTask(makeShared<Java::SymlinkTask>(final_path));
|
||||||
|
m_current_task = seq;
|
||||||
|
#endif
|
||||||
auto deletePath = [final_path] { FS::deletePath(final_path); };
|
auto deletePath = [final_path] { FS::deletePath(final_path); };
|
||||||
connect(m_current_task.get(), &Task::failed, this, [this, deletePath](QString reason) {
|
connect(m_current_task.get(), &Task::failed, this, [this, deletePath](QString reason) {
|
||||||
deletePath();
|
deletePath();
|
||||||
|
@ -31,10 +31,12 @@
|
|||||||
#include "Filter.h"
|
#include "Filter.h"
|
||||||
#include "java/download/ArchiveDownloadTask.h"
|
#include "java/download/ArchiveDownloadTask.h"
|
||||||
#include "java/download/ManifestDownloadTask.h"
|
#include "java/download/ManifestDownloadTask.h"
|
||||||
|
#include "java/download/SymlinkTask.h"
|
||||||
#include "meta/Index.h"
|
#include "meta/Index.h"
|
||||||
#include "meta/VersionList.h"
|
#include "meta/VersionList.h"
|
||||||
#include "minecraft/MinecraftInstance.h"
|
#include "minecraft/MinecraftInstance.h"
|
||||||
#include "minecraft/PackProfile.h"
|
#include "minecraft/PackProfile.h"
|
||||||
|
#include "tasks/SequentialTask.h"
|
||||||
#include "ui/dialogs/CustomMessageBox.h"
|
#include "ui/dialogs/CustomMessageBox.h"
|
||||||
#include "ui/dialogs/ProgressDialog.h"
|
#include "ui/dialogs/ProgressDialog.h"
|
||||||
#include "ui/java/VersionList.h"
|
#include "ui/java/VersionList.h"
|
||||||
@ -313,6 +315,12 @@ void InstallDialog::done(int result)
|
|||||||
CustomMessageBox::selectable(this, tr("Error"), error, QMessageBox::Warning)->show();
|
CustomMessageBox::selectable(this, tr("Error"), error, QMessageBox::Warning)->show();
|
||||||
deletePath();
|
deletePath();
|
||||||
}
|
}
|
||||||
|
#if defined(Q_OS_MACOS)
|
||||||
|
auto seq = makeShared<SequentialTask>(this, tr("Install Java"));
|
||||||
|
seq->addTask(task);
|
||||||
|
seq->addTask(makeShared<Java::SymlinkTask>(final_path));
|
||||||
|
task = seq;
|
||||||
|
#endif
|
||||||
connect(task.get(), &Task::failed, this, [this, &deletePath](QString reason) {
|
connect(task.get(), &Task::failed, this, [this, &deletePath](QString reason) {
|
||||||
QString error = QString("Java download failed: %1").arg(reason);
|
QString error = QString("Java download failed: %1").arg(reason);
|
||||||
CustomMessageBox::selectable(this, tr("Error"), error, QMessageBox::Warning)->show();
|
CustomMessageBox::selectable(this, tr("Error"), error, QMessageBox::Warning)->show();
|
||||||
|
Loading…
Reference in New Issue
Block a user