2022-05-02 18:33:21 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-03-30 19:22:55 +01:00
|
|
|
* PrismLauncher - Minecraft Launcher
|
2022-05-02 18:33:21 +01:00
|
|
|
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
2023-03-30 19:22:55 +01:00
|
|
|
* Copyright (c) 2023 Rachel Powers <508861+Ryex@users.noreply.github.com>
|
2013-02-05 19:40:43 +00:00
|
|
|
*
|
2022-05-02 18:33:21 +01:00
|
|
|
* 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.
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2022-05-02 18:33:21 +01:00
|
|
|
* 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.
|
2013-02-05 19:40:43 +00:00
|
|
|
*
|
2022-05-02 18:33:21 +01:00
|
|
|
* 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.
|
2013-02-05 19:40:43 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-17 23:00:35 +01:00
|
|
|
#pragma once
|
2013-02-05 19:40:43 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
#include <QLoggingCategory>
|
2022-08-09 05:26:53 +01:00
|
|
|
#include <QRunnable>
|
2023-03-30 19:22:55 +01:00
|
|
|
#include <QUuid>
|
2022-08-09 05:26:53 +01:00
|
|
|
|
2021-11-21 22:21:12 +00:00
|
|
|
#include "QObjectPtr.h"
|
|
|
|
|
2023-04-01 03:25:01 +01:00
|
|
|
Q_DECLARE_LOGGING_CATEGORY(taskLogC)
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
enum class TaskStepState { Waiting, Running, Failed, Succeeded };
|
2023-03-30 19:22:55 +01:00
|
|
|
|
2023-03-31 07:50:29 +01:00
|
|
|
Q_DECLARE_METATYPE(TaskStepState)
|
|
|
|
|
2023-03-30 19:22:55 +01:00
|
|
|
struct TaskStepProgress {
|
2023-08-14 17:16:53 +01:00
|
|
|
QUuid uid;
|
2023-03-31 07:50:29 +01:00
|
|
|
qint64 current = 0;
|
|
|
|
qint64 total = -1;
|
2023-04-07 21:01:45 +01:00
|
|
|
|
|
|
|
qint64 old_current = 0;
|
|
|
|
qint64 old_total = -1;
|
|
|
|
|
2023-03-31 07:50:29 +01:00
|
|
|
QString status = "";
|
|
|
|
QString details = "";
|
|
|
|
TaskStepState state = TaskStepState::Waiting;
|
2023-07-01 07:51:15 +01:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
TaskStepProgress() { this->uid = QUuid::createUuid(); }
|
|
|
|
TaskStepProgress(QUuid uid_) : uid(uid_) {}
|
2023-07-01 07:51:15 +01:00
|
|
|
|
2023-04-08 03:44:57 +01:00
|
|
|
bool isDone() const { return (state == TaskStepState::Failed) || (state == TaskStepState::Succeeded); }
|
2023-08-14 17:16:53 +01:00
|
|
|
void update(qint64 new_current, qint64 new_total)
|
|
|
|
{
|
2023-05-21 09:46:28 +01:00
|
|
|
this->old_current = this->current;
|
|
|
|
this->old_total = this->total;
|
|
|
|
|
2023-06-04 22:59:37 +01:00
|
|
|
this->current = new_current;
|
|
|
|
this->total = new_total;
|
2023-05-21 09:46:28 +01:00
|
|
|
this->state = TaskStepState::Running;
|
|
|
|
}
|
2023-03-30 19:22:55 +01:00
|
|
|
};
|
|
|
|
|
2023-03-31 07:50:29 +01:00
|
|
|
Q_DECLARE_METATYPE(TaskStepProgress)
|
|
|
|
|
|
|
|
typedef QList<std::shared_ptr<TaskStepProgress>> TaskStepProgressList;
|
|
|
|
|
2022-08-09 05:26:53 +01:00
|
|
|
class Task : public QObject, public QRunnable {
|
2018-07-15 13:51:05 +01:00
|
|
|
Q_OBJECT
|
2022-04-01 13:10:51 +01:00
|
|
|
public:
|
2021-11-21 22:21:12 +00:00
|
|
|
using Ptr = shared_qobject_ptr<Task>;
|
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
enum class State { Inactive, Running, Succeeded, Failed, AbortedByUser };
|
2018-12-10 19:50:15 +00:00
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
public:
|
2022-08-09 05:26:53 +01:00
|
|
|
explicit Task(QObject* parent = 0, bool show_debug_log = true);
|
2022-04-01 13:10:51 +01:00
|
|
|
virtual ~Task() = default;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
bool isRunning() const;
|
|
|
|
bool isFinished() const;
|
|
|
|
bool wasSuccessful() const;
|
2013-11-29 02:45:52 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
/*!
|
|
|
|
* MultiStep tasks are combinations of multiple tasks into a single logical task.
|
2022-04-01 13:10:51 +01:00
|
|
|
* The main usage of this is in SequencialTask.
|
|
|
|
*/
|
|
|
|
virtual auto isMultiStep() const -> bool { return false; }
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
/*!
|
|
|
|
* Returns the string that was passed to emitFailed as the error message when the task failed.
|
|
|
|
* If the task hasn't failed, returns an empty string.
|
|
|
|
*/
|
|
|
|
QString failReason() const;
|
2013-11-29 02:45:52 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
virtual QStringList warnings() const;
|
2017-12-30 17:57:46 +00:00
|
|
|
|
2022-07-31 21:56:51 +01:00
|
|
|
virtual bool canAbort() const { return m_can_abort; }
|
2015-05-28 18:38:29 +01:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
auto getState() const -> State { return m_state; }
|
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
QString getStatus() { return m_status; }
|
2023-04-01 03:25:01 +01:00
|
|
|
QString getDetails() { return m_details; }
|
2015-07-26 16:55:29 +01:00
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
qint64 getProgress() { return m_progress; }
|
|
|
|
qint64 getTotalProgress() { return m_progressTotal; }
|
2023-03-31 07:50:29 +01:00
|
|
|
virtual auto getStepProgress() const -> TaskStepProgressList { return {}; }
|
2023-03-30 19:22:55 +01:00
|
|
|
|
|
|
|
QUuid getUid() { return m_uid; }
|
2015-07-26 16:55:29 +01:00
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
protected:
|
|
|
|
void logWarning(const QString& line);
|
2015-07-26 16:55:29 +01:00
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
private:
|
2018-07-15 13:51:05 +01:00
|
|
|
QString describe();
|
2017-07-07 18:46:56 +01:00
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
signals:
|
2018-07-15 13:51:05 +01:00
|
|
|
void started();
|
2022-05-17 10:47:00 +01:00
|
|
|
void progress(qint64 current, qint64 total);
|
2018-07-15 13:51:05 +01:00
|
|
|
void finished();
|
|
|
|
void succeeded();
|
2022-04-27 01:25:42 +01:00
|
|
|
void aborted();
|
2018-07-15 13:51:05 +01:00
|
|
|
void failed(QString reason);
|
|
|
|
void status(QString status);
|
2023-04-01 03:25:01 +01:00
|
|
|
void details(QString details);
|
2023-05-05 22:07:10 +01:00
|
|
|
void stepProgress(TaskStepProgress const& task_progress);
|
2015-04-26 22:04:50 +01:00
|
|
|
|
2022-07-31 21:56:51 +01:00
|
|
|
/** Emitted when the canAbort() status has changed.
|
|
|
|
*/
|
|
|
|
void abortStatusChanged(bool can_abort);
|
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
public slots:
|
2022-08-09 05:26:53 +01:00
|
|
|
// QRunnable's interface
|
|
|
|
void run() override { start(); }
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
virtual void start();
|
2023-08-14 17:16:53 +01:00
|
|
|
virtual bool abort()
|
|
|
|
{
|
|
|
|
if (canAbort())
|
|
|
|
emitAborted();
|
|
|
|
return canAbort();
|
|
|
|
}
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
void setAbortable(bool can_abort)
|
|
|
|
{
|
|
|
|
m_can_abort = can_abort;
|
|
|
|
emit abortStatusChanged(can_abort);
|
|
|
|
}
|
2022-07-31 21:56:51 +01:00
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
protected:
|
2018-07-15 13:51:05 +01:00
|
|
|
virtual void executeTask() = 0;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
protected slots:
|
2018-07-15 13:51:05 +01:00
|
|
|
virtual void emitSucceeded();
|
|
|
|
virtual void emitAborted();
|
2022-04-27 01:25:42 +01:00
|
|
|
virtual void emitFailed(QString reason = "");
|
2013-09-17 23:00:35 +01:00
|
|
|
|
2023-07-01 07:50:13 +01:00
|
|
|
virtual void propagateStepProgress(TaskStepProgress const& task_progress);
|
2023-03-31 07:50:29 +01:00
|
|
|
|
2022-04-01 13:10:51 +01:00
|
|
|
public slots:
|
|
|
|
void setStatus(const QString& status);
|
2023-04-01 03:25:01 +01:00
|
|
|
void setDetails(const QString& details);
|
2018-07-15 13:51:05 +01:00
|
|
|
void setProgress(qint64 current, qint64 total);
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
protected:
|
2018-12-10 19:50:15 +00:00
|
|
|
State m_state = State::Inactive;
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList m_Warnings;
|
|
|
|
QString m_failReason = "";
|
|
|
|
QString m_status;
|
2023-04-01 03:25:01 +01:00
|
|
|
QString m_details;
|
2018-07-15 13:51:05 +01:00
|
|
|
int m_progress = 0;
|
|
|
|
int m_progressTotal = 100;
|
2022-08-09 05:26:53 +01:00
|
|
|
|
|
|
|
// TODO: Nuke in favor of QLoggingCategory
|
|
|
|
bool m_show_debug = true;
|
2022-07-31 21:56:51 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Change using setAbortStatus
|
|
|
|
bool m_can_abort = false;
|
2023-03-30 19:22:55 +01:00
|
|
|
QUuid m_uid;
|
2013-02-05 19:40:43 +00:00
|
|
|
};
|