2022-05-26 22:18:54 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-08-04 18:41:47 +01:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-05-26 22:18:54 +01:00
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2013-02-22 15:17:31 +00:00
|
|
|
*
|
2022-05-26 22:18:54 +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-02-22 15:17:31 +00:00
|
|
|
*
|
2022-05-26 22:18:54 +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-22 15:17:31 +00:00
|
|
|
*
|
2022-05-26 22:18:54 +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/>.
|
2013-02-22 15:17:31 +00:00
|
|
|
*
|
2022-05-26 22:18:54 +01:00
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Authors: Orochimarufan <orochimarufan.x3@gmail.com>
|
|
|
|
*
|
|
|
|
* 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-22 15:17:31 +00:00
|
|
|
*/
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-07-28 23:59:35 +01:00
|
|
|
#pragma once
|
2016-08-18 20:31:37 +01:00
|
|
|
#include <QObjectPtr.h>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QProcess>
|
2013-07-28 23:59:35 +01:00
|
|
|
#include "BaseInstance.h"
|
2015-07-21 01:38:15 +01:00
|
|
|
#include "LaunchStep.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "LogModel.h"
|
|
|
|
#include "LoggedProcess.h"
|
|
|
|
#include "MessageLevel.h"
|
2013-02-22 15:17:31 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
class LaunchTask : public Task {
|
2013-03-22 13:40:55 +00:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
protected:
|
2015-07-10 00:11:06 +01:00
|
|
|
explicit LaunchTask(InstancePtr instance);
|
2015-01-27 21:31:07 +00:00
|
|
|
void init();
|
2013-03-22 13:40:55 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
|
|
|
enum State { NotStarted, Running, Waiting, Failed, Aborted, Finished };
|
|
|
|
|
|
|
|
public: /* methods */
|
2019-04-07 22:59:04 +01:00
|
|
|
static shared_qobject_ptr<LaunchTask> create(InstancePtr inst);
|
2023-08-02 17:35:35 +01:00
|
|
|
virtual ~LaunchTask(){};
|
2014-02-15 23:10:45 +00:00
|
|
|
|
2019-04-07 22:59:04 +01:00
|
|
|
void appendStep(shared_qobject_ptr<LaunchStep> step);
|
|
|
|
void prependStep(shared_qobject_ptr<LaunchStep> step);
|
2015-07-21 01:38:15 +01:00
|
|
|
void setCensorFilter(QMap<QString, QString> filter);
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
InstancePtr instance() { return m_instance; }
|
2013-11-23 00:41:28 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void setPid(qint64 pid) { m_pid = pid; }
|
2015-02-08 16:56:14 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
qint64 pid() { return m_pid; }
|
2015-05-11 21:21:37 +01:00
|
|
|
|
2015-01-27 21:31:07 +00:00
|
|
|
/**
|
|
|
|
* @brief prepare the process for launch (for multi-stage launch)
|
|
|
|
*/
|
2015-07-04 19:02:43 +01:00
|
|
|
virtual void executeTask() override;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2015-01-27 21:31:07 +00:00
|
|
|
/**
|
|
|
|
* @brief launch the armed instance
|
|
|
|
*/
|
2015-07-21 01:38:15 +01:00
|
|
|
void proceed();
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2015-01-27 21:31:07 +00:00
|
|
|
/**
|
|
|
|
* @brief abort launch
|
|
|
|
*/
|
2016-11-26 17:06:08 +00:00
|
|
|
bool abort() override;
|
|
|
|
|
|
|
|
bool canAbort() const override;
|
2015-06-16 08:19:55 +01:00
|
|
|
|
2016-08-18 20:31:37 +01:00
|
|
|
shared_qobject_ptr<LogModel> getLogModel();
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
|
|
|
void substituteVariables(QStringList& args) const;
|
|
|
|
void substituteVariables(QString& cmd) const;
|
2015-07-21 01:38:15 +01:00
|
|
|
QString censorPrivateInfo(QString in);
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected: /* methods */
|
2015-09-26 03:04:09 +01:00
|
|
|
virtual void emitFailed(QString reason) override;
|
|
|
|
virtual void emitSucceeded() override;
|
2015-07-09 23:06:05 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
signals:
|
2015-07-04 19:02:43 +01:00
|
|
|
/**
|
|
|
|
* @brief emitted when the launch preparations are done
|
|
|
|
*/
|
2015-07-05 00:54:30 +01:00
|
|
|
void readyForLaunch();
|
2015-07-04 19:02:43 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
void requestProgress(Task* task);
|
2015-07-26 16:55:29 +01:00
|
|
|
|
|
|
|
void requestLogging();
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
public slots:
|
2021-10-17 23:47:02 +01:00
|
|
|
void onLogLines(const QStringList& lines, MessageLevel::Enum defaultLevel = MessageLevel::Launcher);
|
|
|
|
void onLogLine(QString line, MessageLevel::Enum defaultLevel = MessageLevel::Launcher);
|
2015-07-21 01:38:15 +01:00
|
|
|
void onReadyForLaunch();
|
|
|
|
void onStepFinished();
|
2015-07-26 16:55:29 +01:00
|
|
|
void onProgressReportingRequested();
|
2015-05-11 21:21:37 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
private: /*methods */
|
|
|
|
void finalizeSteps(bool successful, const QString& error);
|
2016-11-15 01:51:22 +00:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected: /* data */
|
2015-01-27 21:31:07 +00:00
|
|
|
InstancePtr m_instance;
|
2016-08-18 20:31:37 +01:00
|
|
|
shared_qobject_ptr<LogModel> m_logModel;
|
2023-08-02 17:35:35 +01:00
|
|
|
QList<shared_qobject_ptr<LaunchStep>> m_steps;
|
2015-07-21 01:38:15 +01:00
|
|
|
QMap<QString, QString> m_censorFilter;
|
|
|
|
int currentStep = -1;
|
|
|
|
State state = NotStarted;
|
|
|
|
qint64 m_pid = -1;
|
2013-02-22 15:17:31 +00:00
|
|
|
};
|