2010-06-23 15:21:30 +02:00
|
|
|
/* This file is part of Clementine.
|
2014-11-02 19:36:21 +01:00
|
|
|
Copyright 2010-2011, David Sansome <me@davidsansome.com>
|
|
|
|
Copyright 2011, Arnaud Bienner <arnaud.bienner@gmail.com>
|
|
|
|
Copyright 2012, 2014, John Maguire <john.maguire@gmail.com>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
2010-06-23 15:21:30 +02:00
|
|
|
|
|
|
|
Clementine 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, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
#ifndef CORE_TASKMANAGER_H_
|
|
|
|
#define CORE_TASKMANAGER_H_
|
2010-06-23 15:21:30 +02:00
|
|
|
|
|
|
|
#include <QMap>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
class TaskManager : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2014-11-01 19:26:05 +01:00
|
|
|
explicit TaskManager(QObject* parent = nullptr);
|
2010-06-23 15:21:30 +02:00
|
|
|
|
2011-07-21 01:22:20 +02:00
|
|
|
struct Task {
|
|
|
|
int id;
|
|
|
|
QString name;
|
|
|
|
int progress;
|
|
|
|
int progress_max;
|
|
|
|
bool blocks_library_scans;
|
|
|
|
};
|
|
|
|
|
2012-08-06 14:00:54 +02:00
|
|
|
class ScopedTask {
|
|
|
|
public:
|
|
|
|
ScopedTask(const int task_id, TaskManager* task_manager)
|
2014-02-07 16:34:20 +01:00
|
|
|
: task_id_(task_id), task_manager_(task_manager) {}
|
2012-08-06 14:00:54 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
~ScopedTask() { task_manager_->SetTaskFinished(task_id_); }
|
2012-08-06 14:00:54 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
const int task_id_;
|
|
|
|
TaskManager* task_manager_;
|
|
|
|
|
|
|
|
Q_DISABLE_COPY(ScopedTask);
|
|
|
|
};
|
|
|
|
|
2010-06-25 00:59:29 +02:00
|
|
|
// Everything here is thread safe
|
2011-07-21 01:22:20 +02:00
|
|
|
QList<Task> GetTasks();
|
2010-06-23 15:21:30 +02:00
|
|
|
|
2010-06-25 00:59:29 +02:00
|
|
|
int StartTask(const QString& name);
|
|
|
|
void SetTaskBlocksLibraryScans(int id);
|
2010-06-24 20:33:38 +02:00
|
|
|
void SetTaskProgress(int id, int progress, int max = 0);
|
2011-11-23 01:07:40 +01:00
|
|
|
void IncreaseTaskProgress(int id, int progress, int max = 0);
|
2010-06-23 15:21:30 +02:00
|
|
|
void SetTaskFinished(int id);
|
2011-11-23 01:07:40 +01:00
|
|
|
int GetTaskProgress(int id);
|
2010-06-23 15:21:30 +02:00
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
signals:
|
2010-06-23 15:21:30 +02:00
|
|
|
void TasksChanged();
|
|
|
|
|
2010-06-25 00:59:29 +02:00
|
|
|
void PauseLibraryWatchers();
|
|
|
|
void ResumeLibraryWatchers();
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-06-23 15:21:30 +02:00
|
|
|
QMutex mutex_;
|
2011-07-21 01:22:20 +02:00
|
|
|
QMap<int, Task> tasks_;
|
2010-06-23 15:21:30 +02:00
|
|
|
int next_task_id_;
|
2012-08-06 14:00:54 +02:00
|
|
|
|
|
|
|
Q_DISABLE_COPY(TaskManager);
|
2010-06-23 15:21:30 +02:00
|
|
|
};
|
|
|
|
|
2014-11-01 19:26:05 +01:00
|
|
|
#endif // CORE_TASKMANAGER_H_
|