forked from PrismLauncher/PrismLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher
- Loading branch information
Showing
52 changed files
with
672 additions
and
320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// SPDX-License-Identifier: GPL-3.0-only | ||
/* | ||
* Prism Launcher - Minecraft Launcher | ||
* Copyright (c) 2023-2024 Trial97 <[email protected]> | ||
* | ||
* 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 |
Oops, something went wrong.