2015-02-02 14:25:30 -08:00
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-02-05 13:40:43 -06:00
|
|
|
*
|
|
|
|
* 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
|
2013-11-04 02:53:05 +01:00
|
|
|
*
|
2013-02-05 13:40:43 -06:00
|
|
|
* 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-09-18 00:00:35 +02:00
|
|
|
#pragma once
|
2013-02-05 13:40:43 -06:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
|
2015-09-05 18:46:57 +02:00
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
|
|
|
class MULTIMC_LOGIC_EXPORT Task : public QObject
|
2013-02-05 13:40:43 -06:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit Task(QObject *parent = 0);
|
2014-03-30 20:11:05 +02:00
|
|
|
virtual ~Task() {};
|
2013-11-04 02:53:05 +01:00
|
|
|
|
2013-09-18 00:00:35 +02:00
|
|
|
virtual bool isRunning() const;
|
2013-11-04 02:53:05 +01:00
|
|
|
|
2015-07-26 17:55:29 +02:00
|
|
|
virtual bool isFinished() const;
|
|
|
|
|
2013-11-28 20:45:52 -06:00
|
|
|
/*!
|
|
|
|
* True if this task was successful.
|
|
|
|
* If the task failed or is still running, returns false.
|
|
|
|
*/
|
|
|
|
virtual bool successful() const;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
virtual QString failReason() const;
|
|
|
|
|
2015-05-28 19:38:29 +02:00
|
|
|
virtual bool canAbort() const { return false; }
|
|
|
|
|
2015-07-26 17:55:29 +02:00
|
|
|
QString getStatus()
|
|
|
|
{
|
|
|
|
return m_status;
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 getProgress()
|
|
|
|
{
|
|
|
|
return m_progress;
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 getTotalProgress()
|
|
|
|
{
|
|
|
|
return m_progressTotal;
|
|
|
|
}
|
|
|
|
|
2015-04-26 23:04:50 +02:00
|
|
|
signals:
|
|
|
|
void started();
|
|
|
|
void progress(qint64 current, qint64 total);
|
2015-05-02 23:42:33 +02:00
|
|
|
void finished();
|
2015-04-26 23:04:50 +02:00
|
|
|
void succeeded();
|
|
|
|
void failed(QString reason);
|
|
|
|
void status(QString status);
|
|
|
|
|
2013-11-04 02:53:05 +01:00
|
|
|
public
|
|
|
|
slots:
|
2013-09-18 00:00:35 +02:00
|
|
|
virtual void start();
|
2015-07-21 02:38:15 +02:00
|
|
|
virtual bool abort() { return false; };
|
2013-11-04 02:53:05 +01:00
|
|
|
|
2013-02-05 13:40:43 -06:00
|
|
|
protected:
|
|
|
|
virtual void executeTask() = 0;
|
2013-11-04 02:53:05 +01:00
|
|
|
|
2014-09-06 18:16:56 +02:00
|
|
|
protected slots:
|
2013-08-09 00:26:35 +02:00
|
|
|
virtual void emitSucceeded();
|
2013-09-18 00:00:35 +02:00
|
|
|
virtual void emitFailed(QString reason);
|
|
|
|
|
2015-07-26 17:55:29 +02:00
|
|
|
public slots:
|
2013-11-04 02:53:05 +01:00
|
|
|
void setStatus(const QString &status);
|
2015-07-26 17:55:29 +02:00
|
|
|
void setProgress(qint64 current, qint64 total);
|
2013-11-04 02:53:05 +01:00
|
|
|
|
2013-09-18 00:00:35 +02:00
|
|
|
protected:
|
|
|
|
bool m_running = false;
|
2015-07-26 17:55:29 +02:00
|
|
|
bool m_finished = false;
|
2013-11-28 20:45:52 -06:00
|
|
|
bool m_succeeded = false;
|
|
|
|
QString m_failReason = "";
|
2015-07-26 17:55:29 +02:00
|
|
|
QString m_status;
|
|
|
|
int m_progress = 0;
|
|
|
|
int m_progressTotal = 100;
|
2013-02-05 13:40:43 -06:00
|
|
|
};
|
2014-09-06 18:16:56 +02:00
|
|
|
|