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