// ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * // * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) * // ************************************************************************** #ifndef SYNCHRONIZATION_H_INCLUDED #define SYNCHRONIZATION_H_INCLUDED #include "file_hierarchy.h" #include "library/process_xml.h" #include "library/status_handler.h" namespace zen { class SyncStatistics { public: SyncStatistics(const HierarchyObject& hierObj); SyncStatistics(const FolderComparison& folderCmp); int getCreate() const; template int getCreate() const; int getOverwrite() const; template int getOverwrite() const; int getDelete() const; template int getDelete() const; int getConflict() const { return conflict; } typedef std::vector > ConflictTexts; // Pair(filename/conflict text) const ConflictTexts& getFirstConflicts() const { return firstConflicts; } zen::UInt64 getDataToProcess() const { return dataToProcess; } size_t getRowCount() const { return rowsTotal; } private: void init(); void getNumbersRecursively(const HierarchyObject& hierObj); void getFileNumbers(const FileMapping& fileObj); void getLinkNumbers(const SymLinkMapping& linkObj); void getDirNumbers(const DirMapping& dirObj); int createLeft, createRight; int overwriteLeft, overwriteRight; int deleteLeft, deleteRight; int conflict; ConflictTexts firstConflicts; //save the first few conflict texts to display as a warning message zen::UInt64 dataToProcess; size_t rowsTotal; }; class SynchronizeFolderPair; struct FolderPairSyncCfg { FolderPairSyncCfg(bool automaticMode, const DeletionPolicy handleDel, const Zstring& custDelDir); bool inAutomaticMode; //update database if in automatic mode DeletionPolicy handleDeletion; Zstring custDelFolder; //formatted(!) directory name }; std::vector extractSyncCfg(const MainConfiguration& mainCfg); //class handling synchronization process class SyncProcess { public: SyncProcess(xmlAccess::OptionalDialogs& warnings, bool verifyCopiedFiles, bool copyLockedFiles, bool copyFilePermissions, bool transactionalFileCopy, ProcessCallback& handler); //CONTRACT: syncConfig must have SAME SIZE folderCmp and correspond row-wise! void startSynchronizationProcess(const std::vector& syncConfig, FolderComparison& folderCmp); private: SyncProcess(const SyncProcess&); SyncProcess& operator=(const SyncProcess&); friend class SynchronizeFolderPair; const bool verifyCopiedFiles_; const bool copyLockedFiles_; const bool copyFilePermissions_; const bool transactionalFileCopy_; //warnings xmlAccess::OptionalDialogs& m_warnings; ProcessCallback& procCallback; }; // inline implementation template <> inline int SyncStatistics::getCreate() const { return createLeft; } template <> inline int SyncStatistics::getCreate() const { return createRight; } inline int SyncStatistics::getCreate() const { return getCreate() + getCreate(); } template <> inline int SyncStatistics::getOverwrite() const { return overwriteLeft; } template <> inline int SyncStatistics::getOverwrite() const { return overwriteRight; } inline int SyncStatistics::getOverwrite() const { return getOverwrite() + getOverwrite(); } template <> inline int SyncStatistics::getDelete() const { return deleteLeft; } template <> inline int SyncStatistics::getDelete() const { return deleteRight; } inline int SyncStatistics::getDelete() const { return getDelete() + getDelete(); } } #endif // SYNCHRONIZATION_H_INCLUDED