partitionmanager/src/jobs/job.h

116 lines
3.8 KiB
C++

/***************************************************************************
* Copyright (C) 2008 by Volker Lanz <vl@fidra.de> *
* *
* 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; either version 2 of the License, or *
* (at your option) any later version. *
* *
* 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. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
***************************************************************************/
#if !defined(JOB__H)
#define JOB__H
#include "fs/filesystem.h"
#include <QObject>
#include <qglobal.h>
#include <parted/parted.h>
class QString;
class QIcon;
class CopySource;
class CopyTarget;
class Report;
/** @brief Base class for all Jobs.
Each Operation is made up of one or more Jobs. Usually, an Operation will run each Job it is
made up of and only complete successfully if each Job could be run without error. Jobs are
all-or-nothing and try to be as atomic as possible: A Job is either successfully run or not, there
is no case where a Job finishes with a warning.
@author vl@fidra.de
*/
class Job : public QObject
{
Q_OBJECT
Q_DISABLE_COPY(Job)
public:
/** Status of this Job */
enum JobStatus
{
Pending = 0, /**< Pending, not yet run */
Success, /**< Successfully run */
Error /**< Running generated an error */
};
protected:
Job();
public:
virtual ~Job();
signals:
void started();
void progress(int);
void finished();
public:
virtual qint32 numSteps() const { return 1; } /**< @return the number of steps the job takes to complete */
virtual QString description() const = 0; /**< @return the Job's description */
virtual bool run(Report& parent) = 0; /**< @param parent parent Report to add new child to for this Job @return true if successfully run */
virtual QIcon statusIcon() const;
virtual QString statusText() const;
JobStatus status() const { return m_Status; } /**< @return the Job's current status */
static FileSystem::Type detectFileSystem(PedDevice* pedDevice, PedPartition* pedPartition);
protected:
bool openPed(const QString& path, bool diskFailOk = false);
void closePed();
bool commit(quint32 timeout = 10);
static bool commit(PedDisk* disk, quint32 timeout = 10);
bool copyBlocks(Report& report, CopyTarget& target, CopySource& source);
bool rollbackCopyBlocks(Report& report, CopyTarget& origTarget, CopySource& origSource);
FileSystem::Type detectFileSystemBySector(Report& report, Device& device, qint64 sector);
void emitProgress(int i);
Report* jobStarted(Report& parent);
void jobFinished(Report& report, bool b);
void setStatus(JobStatus s) { m_Status = s; }
PedDevice* pedDevice() { return m_PedDevice; }
PedDisk* pedDisk() { return m_PedDisk; }
static PedFileSystemType* getPedFileSystemType(FileSystem::Type t);
static void pedTimerHandler(PedTimer* pedTimer, void* ctx);
private:
PedDevice* m_PedDevice;
PedDisk* m_PedDisk;
JobStatus m_Status;
};
#endif