From e297dbd8052ef4e66f069e2dd1865ae7fa8af28e Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Thu, 21 Mar 2013 11:01:59 +0100 Subject: Imported Upstream version 0.3.1.0 --- plugins-alternative/CopyEngine/Rsync/MkPath.h | 56 +++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 plugins-alternative/CopyEngine/Rsync/MkPath.h (limited to 'plugins-alternative/CopyEngine/Rsync/MkPath.h') diff --git a/plugins-alternative/CopyEngine/Rsync/MkPath.h b/plugins-alternative/CopyEngine/Rsync/MkPath.h new file mode 100644 index 0000000..5d00d60 --- /dev/null +++ b/plugins-alternative/CopyEngine/Rsync/MkPath.h @@ -0,0 +1,56 @@ +/** \file MkPath.h +\brief Make the path given as queued mkpath +\author alpha_one_x86 +\version 0.3 +\date 2011 */ + +#ifndef MKPATH_H +#define MKPATH_H + +#include +#include +#include +#include +#include +#include + +#include "Environment.h" + +/// \brief Make the path given as queued mkpath +class MkPath : public QThread +{ + Q_OBJECT +public: + explicit MkPath(); + ~MkPath(); + /// \brief add path to make + void addPath(const QString &path); +signals: + void errorOnFolder(const QFileInfo &,const QString &); + void firstFolderFinish(); + void internalStartAddPath(const QString &path); + void internalStartDoThisPath(); + void internalStartSkip(); + void internalStartRetry(); + void debugInformation(const DebugLevel &level,const QString &fonction,const QString &text,const QString &file,const int &ligne); +public slots: + /// \brief skip after creation error + void skip(); + /// \brief retry after creation error + void retry(); +private: + void run(); + bool waitAction; + bool stopIt; + bool skipIt; + QStringList pathList; + void checkIfCanDoTheNext(); + QDir dir; +private slots: + void internalDoThisPath(); + void internalAddPath(const QString &path); + void internalSkip(); + void internalRetry(); +}; + +#endif // MKPATH_H -- cgit v1.2.3