52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
|
#ifndef UDISKGHOSTIMAGEPROXY_H
|
|||
|
#define UDISKGHOSTIMAGEPROXY_H
|
|||
|
|
|||
|
#include "workerfactory.h"
|
|||
|
#include "myprocess/mksquashfsprocess.h"
|
|||
|
#include "myprocess/rsyncpathtodirprocess.h"
|
|||
|
#include "parsebackuplist.h"
|
|||
|
|
|||
|
class UDiskGhostImageProxy : public Worker
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
DECLARE_DYNCREATE(UDiskGhostImageProxy)
|
|||
|
public:
|
|||
|
explicit UDiskGhostImageProxy();
|
|||
|
virtual ~UDiskGhostImageProxy();
|
|||
|
|
|||
|
public:
|
|||
|
// 环境检测
|
|||
|
virtual bool checkEnvEx();
|
|||
|
|
|||
|
// 任务处理
|
|||
|
virtual void doWorkEx();
|
|||
|
|
|||
|
// 任务取消
|
|||
|
virtual void cancelEx();
|
|||
|
|
|||
|
private:
|
|||
|
void doGhostImage();
|
|||
|
bool checkDestDirExists();
|
|||
|
void deleteFailedData();
|
|||
|
|
|||
|
// 存放.kyimg文件的目录
|
|||
|
QString m_destPath;
|
|||
|
// .kyimg文件
|
|||
|
QString m_kyimg;
|
|||
|
|
|||
|
// 压缩进程
|
|||
|
MkSquashFSProcess *m_mksquashfs;
|
|||
|
// 备份进程
|
|||
|
RsyncPathToDirProcess *m_p;
|
|||
|
|
|||
|
// 是否成功
|
|||
|
bool m_bSuccess;
|
|||
|
// 是否结束
|
|||
|
bool m_isFinished;
|
|||
|
// 强制结束标志(stop后没反应的情况,系统处于睡眠状态)
|
|||
|
bool m_isForce;
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
#endif // UDISKGHOSTIMAGEPROXY_H
|