yhkylin-backup-tools/backup-daemon/udiskghostImageproxy.h

52 lines
1.1 KiB
C++
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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