1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
/** \file Core.h
\brief Define the class definition for core, the Copy of each copy/move window
\author alpha_one_x86
\version 0.3
\date 2010
\licence GPL3, see the file COPYING */
#ifndef CORE_H
#define CORE_H
#include <QObject>
#include <QStringList>
#include <QString>
#include <QList>
#include <QTimer>
#include <QTime>
#include <QFile>
#include <QUrl>
#include "Environment.h"
#include "StructEnumDefinition.h"
#include "CopyEngineManager.h"
#include "GlobalClass.h"
#include "LogThread.h"
#include "interface/PluginInterface_CopyEngine.h"
#include "interface/PluginInterface_Themes.h"
/** \brief Define the class definition for core, the Copy of each copy/move window
This class provide a core for dispatch the event of signal/slot, it checks too if not other instance is running */
class Core : public QObject, public GlobalClass
{
Q_OBJECT
public:
/// \brief Initate the core of one copy or move window, dispatch the event specific at this window
Core(CopyEngineManager *copyEngineList);
private:
CopyEngineManager *copyEngineList;
struct RunningTransfer
{
ItemOfCopyList item;
bool progression;
};
struct CopyInstance
{
int id;
PluginInterface_CopyEngine * engine;
PluginInterface_Themes * interface;
bool ignoreMode;
CopyMode mode;
quint64 numberOfFile;
quint64 numberOfTransferedFile;
quint64 currentProgression,totalProgression;//store the file byte transfered, used into the remaining time
EngineActionInProgress action;
quint64 lastProgression;//store the real byte transfered, used in speed calculation
QList<quint64> lastSpeedDetected;//stored in bytes
QList<double> lastSpeedTime;//stored in ms
QList<RunningTransfer> transferItemList;//full info of started item, to have wich progression to poll
QList<quint32> orderId;//external order send via listener plugin
QString folderListing;
QString collisionAction;
QString errorAction;
bool isPaused;
quint64 baseTime;//stored in ms
QTime runningTime;
bool isRunning;
CopyType type;
TransferListOperation transferListOperation;
bool haveError;
QTime lastConditionalSync;
QTimer *nextConditionalSync;
bool copyEngineIsSync;
};
QList<CopyInstance> copyList;
/** open with specific source/destination
\param move Copy or move
\param ignoreMode if need ignore the mode
\param protocolsUsedForTheSources protocols used for sources
\param protocolsUsedForTheDestination protocols used for destination
*/
int openNewCopyEngineInstance(const CopyMode &mode,const bool &ignoreMode,const QStringList &protocolsUsedForTheSources=QStringList(),const QString &protocolsUsedForTheDestination="");
/** open with specific copy engine
\param move Copy or move
\param ignoreMode if need ignore the mode
\param protocolsUsedForTheSources protocols used for sources
\param protocolsUsedForTheDestination protocols used for destination
*/
int openNewCopyEngineInstance(const CopyMode &mode,const bool &ignoreMode,const QString &name);
/// \brief get the right copy instance (copy engine + interface), by signal emited from copy engine
int indexCopySenderCopyEngine();
/// \brief get the right copy instance (copy engine + interface), by signal emited from interface
int indexCopySenderInterface();
void connectEngine(const int &index);
void connectInterfaceAndSync(const int &index);
void disconnectEngine(const int &index);
void disconnectInterface(const int &index);
/** \brief update at periodic interval, the synchronization between copy engine and interface, but for specific entry
\see forUpateInformation */
void periodicSynchronization(const int &index);
//for the internal management
int incrementId();
int nextId;
QList<int> idList;
QTime lastProgressionTime;
QTimer forUpateInformation;///< used to call \see periodicSynchronization()
void resetSpeedDetected(const int &index);
/** Connect the copy engine instance provided previously to the management */
int connectCopyEngine(const CopyMode &mode,bool ignoreMode,const CopyEngineManager::returnCopyEngine &returnInformations);
LogThread log;///< To save the log like mkpath, rmpath, error, copy, ...
//temp variable
int index,index_sub_loop,loop_size,loop_sub_size;
double totTime;
double totSpeed;
quint64 realByteTransfered;
quint64 transferSpeed;
quint64 transferAddedTime;
quint64 diffCopiedSize;
signals:
void copyFinished(const quint32 & orderId,bool withError);
void copyCanceled(const quint32 & orderId);
public slots:
/** \brief do copy with sources, but ask the destination */
void newCopy(const quint32 &orderId,const QStringList &protocolsUsedForTheSources,const QStringList &sources);
/** \brief do copy with sources and destination */
void newCopy(const quint32 &orderId,const QStringList &protocolsUsedForTheSources,const QStringList &sources,const QString &protocolsUsedForTheDestination,const QString &destination);
/** \brief do move with sources, but ask the destination */
void newMove(const quint32 &orderId,const QStringList &protocolsUsedForTheSources,const QStringList &sources);
/** \brief do move with sources and destination */
void newMove(const quint32 &orderId,const QStringList &protocolsUsedForTheSources,const QStringList &sources,const QString &protocolsUsedForTheDestination,const QString &destination);
/** \brief open copy/move windows with specific engine */
void addWindowCopyMove(const CopyMode &mode,const QString &name);
/** \brief open transfer (copy+move) windows with specific engine */
void addWindowTransfer(const QString &name);
/** new transfer list pased by the CLI */
void newTransferList(QString engine,QString mode,QString file);
private slots:
/// \brief the copy engine have canceled the transfer
void copyInstanceCanceledByEngine();
/// \brief the interface have canceled the transfer
void copyInstanceCanceledByInterface();
/// \brief the transfer have been canceled
void copyInstanceCanceledByIndex(const int &index);
/// \brief only when the copy engine say it's ready to delete them self, it call this
void deleteCopyEngine();
// some stat update
void actionInProgess(const EngineActionInProgress &action);
void newFolderListing(const QString &path);
void newCollisionAction(const QString &action);
void newErrorAction(const QString &action);
void isInPause(const bool&);
/** \brief update at periodic interval, the synchronization between copy engine and interface
\see forUpateInformation */
void periodicSynchronization();
//reset some information
void resetSpeedDetectedEngine();
void resetSpeedDetectedInterface();
//load the interface
void loadInterface();
void unloadInterface();
//error occurred
void error(const QString &path,const quint64 &size,const QDateTime &mtime,const QString &error);
//for the extra logging
void rmPath(const QString &path);
void mkPath(const QString &path);
/// \brief used to drag and drop files
void urlDropped(const QList<QUrl> &urls);
/// \brief to rsync after a new interface connection
void syncReady();
void getActionOnList(const QList<returnActionOnCopyList> & actionList);
void pushGeneralProgression(const quint64 ¤t,const quint64 &total);
};
#endif // CORE_H
|