mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-04-16 23:36:54 -04:00
manual refreshes on version selection screens could reuse cached metadata and skip downloading updated manifests, so new versions would not appear until Prism was restarted. pass an explicit forced reload through the shared version list loading path and use it from refresh actions so manual refresh always reloads metadata Signed-off-by: morsz <morsz@morsz.dev>
214 lines
6.5 KiB
C++
214 lines
6.5 KiB
C++
// SPDX-License-Identifier: GPL-3.0-only
|
|
/*
|
|
* Prism Launcher - Minecraft Launcher
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
* Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me>
|
|
*
|
|
* 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/>.
|
|
*
|
|
* This file incorporates work covered by the following copyright and
|
|
* permission notice:
|
|
*
|
|
* Copyright 2013-2021 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 <QtNetwork>
|
|
#include <QtXml>
|
|
|
|
#include <QDebug>
|
|
#include <algorithm>
|
|
|
|
#include "Application.h"
|
|
#include "settings/SettingsObject.h"
|
|
#include "java/JavaChecker.h"
|
|
#include "java/JavaInstallList.h"
|
|
#include "java/JavaUtils.h"
|
|
#include "tasks/ConcurrentTask.h"
|
|
|
|
JavaInstallList::JavaInstallList(QObject* parent, bool onlyManagedVersions)
|
|
: BaseVersionList(parent), m_only_managed_versions(onlyManagedVersions)
|
|
{}
|
|
|
|
Task::Ptr JavaInstallList::getLoadTask(bool forceReload)
|
|
{
|
|
Q_UNUSED(forceReload)
|
|
load();
|
|
return getCurrentTask();
|
|
}
|
|
|
|
Task::Ptr JavaInstallList::getCurrentTask()
|
|
{
|
|
if (m_status == Status::InProgress) {
|
|
return m_load_task;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void JavaInstallList::load()
|
|
{
|
|
if (m_status != Status::InProgress) {
|
|
m_status = Status::InProgress;
|
|
m_load_task.reset(new JavaListLoadTask(this, m_only_managed_versions));
|
|
m_load_task->start();
|
|
}
|
|
}
|
|
|
|
const BaseVersion::Ptr JavaInstallList::at(int i) const
|
|
{
|
|
return m_vlist.at(i);
|
|
}
|
|
|
|
bool JavaInstallList::isLoaded()
|
|
{
|
|
return m_status == JavaInstallList::Status::Done;
|
|
}
|
|
|
|
int JavaInstallList::count() const
|
|
{
|
|
return m_vlist.count();
|
|
}
|
|
|
|
QVariant JavaInstallList::data(const QModelIndex& index, int role) const
|
|
{
|
|
if (!index.isValid())
|
|
return QVariant();
|
|
|
|
if (index.row() > count())
|
|
return QVariant();
|
|
|
|
auto version = std::dynamic_pointer_cast<JavaInstall>(m_vlist[index.row()]);
|
|
switch (role) {
|
|
case SortRole:
|
|
return -index.row();
|
|
case VersionPointerRole:
|
|
return QVariant::fromValue(m_vlist[index.row()]);
|
|
case VersionIdRole:
|
|
return version->descriptor();
|
|
case VersionRole:
|
|
return version->id.toString();
|
|
case RecommendedRole:
|
|
return false;
|
|
case PathRole:
|
|
return version->path;
|
|
case CPUArchitectureRole:
|
|
return version->arch;
|
|
default:
|
|
return QVariant();
|
|
}
|
|
}
|
|
|
|
BaseVersionList::RoleList JavaInstallList::providesRoles() const
|
|
{
|
|
return { VersionPointerRole, VersionIdRole, VersionRole, RecommendedRole, PathRole, CPUArchitectureRole };
|
|
}
|
|
|
|
void JavaInstallList::updateListData(QList<BaseVersion::Ptr> versions)
|
|
{
|
|
beginResetModel();
|
|
m_vlist = versions;
|
|
sortVersions();
|
|
endResetModel();
|
|
m_status = Status::Done;
|
|
m_load_task.reset();
|
|
}
|
|
|
|
bool sortJavas(BaseVersion::Ptr left, BaseVersion::Ptr right)
|
|
{
|
|
auto rleft = std::dynamic_pointer_cast<JavaInstall>(right);
|
|
auto rright = std::dynamic_pointer_cast<JavaInstall>(left);
|
|
return (*rleft) > (*rright);
|
|
}
|
|
|
|
void JavaInstallList::sortVersions()
|
|
{
|
|
beginResetModel();
|
|
std::sort(m_vlist.begin(), m_vlist.end(), sortJavas);
|
|
endResetModel();
|
|
}
|
|
|
|
JavaListLoadTask::JavaListLoadTask(JavaInstallList* vlist, bool onlyManagedVersions) : Task(), m_only_managed_versions(onlyManagedVersions)
|
|
{
|
|
m_list = vlist;
|
|
m_current_recommended = NULL;
|
|
}
|
|
|
|
void JavaListLoadTask::executeTask()
|
|
{
|
|
setStatus(tr("Detecting Java installations..."));
|
|
|
|
JavaUtils ju;
|
|
QList<QString> candidate_paths = m_only_managed_versions ? getPrismJavaBundle() : ju.FindJavaPaths();
|
|
|
|
ConcurrentTask::Ptr job(new ConcurrentTask("Java detection", APPLICATION->settings()->get("NumberOfConcurrentTasks").toInt()));
|
|
m_job.reset(job);
|
|
connect(m_job.get(), &Task::finished, this, &JavaListLoadTask::javaCheckerFinished);
|
|
connect(m_job.get(), &Task::progress, this, &Task::setProgress);
|
|
|
|
qDebug() << "Probing the following Java paths: ";
|
|
int id = 0;
|
|
for (QString candidate : candidate_paths) {
|
|
auto checker = new JavaChecker(candidate, "", 0, 0, 0, id);
|
|
connect(checker, &JavaChecker::checkFinished, [this](const JavaChecker::Result& result) { m_results << result; });
|
|
job->addTask(Task::Ptr(checker));
|
|
id++;
|
|
}
|
|
|
|
m_job->start();
|
|
}
|
|
|
|
void JavaListLoadTask::javaCheckerFinished()
|
|
{
|
|
QList<JavaInstallPtr> candidates;
|
|
std::sort(m_results.begin(), m_results.end(), [](const JavaChecker::Result& a, const JavaChecker::Result& b) { return a.id < b.id; });
|
|
|
|
qDebug() << "Found the following valid Java installations:";
|
|
for (auto result : m_results) {
|
|
if (result.validity == JavaChecker::Result::Validity::Valid) {
|
|
JavaInstallPtr javaVersion(new JavaInstall());
|
|
|
|
javaVersion->id = result.javaVersion;
|
|
javaVersion->arch = result.realPlatform;
|
|
javaVersion->path = result.path;
|
|
javaVersion->is_64bit = result.is_64bit;
|
|
candidates.append(javaVersion);
|
|
|
|
qDebug() << " " << javaVersion->id.toString() << javaVersion->arch << javaVersion->path;
|
|
}
|
|
}
|
|
|
|
QList<BaseVersion::Ptr> javas_bvp;
|
|
for (auto java : candidates) {
|
|
// qDebug() << java->id << java->arch << " at " << java->path;
|
|
BaseVersion::Ptr bp_java = std::dynamic_pointer_cast<BaseVersion>(java);
|
|
|
|
if (bp_java) {
|
|
javas_bvp.append(java);
|
|
}
|
|
}
|
|
|
|
m_list->updateListData(javas_bvp);
|
|
emitSucceeded();
|
|
}
|