From 75c07011b7c4d06acd7b45dabdcd60ab9d80f385 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:29:28 +0200 Subject: 5.23 --- synchronization.h | 159 ------------------------------------------------------ 1 file changed, 159 deletions(-) delete mode 100644 synchronization.h (limited to 'synchronization.h') diff --git a/synchronization.h b/synchronization.h deleted file mode 100644 index bc6b79db..00000000 --- a/synchronization.h +++ /dev/null @@ -1,159 +0,0 @@ -// ************************************************************************** -// * 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) Zenju (zenju AT gmx DOT de) - All Rights Reserved * -// ************************************************************************** - -#ifndef SYNCHRONIZATION_H_INCLUDED -#define SYNCHRONIZATION_H_INCLUDED - -#include -#include "file_hierarchy.h" -#include "lib/process_xml.h" -#include "process_callback.h" - - -namespace zen -{ -class SyncStatistics //this class counts *logical* operations, (create, update, delete + bytes), *not* disk accesses! -{ - //-> note the fundamental difference to counting disk accesses! -public: - SyncStatistics(const HierarchyObject& hierObj); - SyncStatistics(const FolderComparison& folderCmp); - SyncStatistics(const FilePair& fileObj); - - int getCreate() const; - template int getCreate() const; - - int getUpdate() const; - template int getUpdate() const; - - int getDelete() const; - template int getDelete() const; - - int getConflict() const { return static_cast(conflictMsgs.size()); } - - typedef std::vector> ConflictTexts; // Pair(filename/conflict text) - const ConflictTexts& getConflictMessages() const { return conflictMsgs; } - - Int64 getDataToProcess() const { return dataToProcess; } - size_t getRowCount() const { return rowsTotal; } - -private: - void init(); - - void recurse(const HierarchyObject& hierObj); - - void processFile(const FilePair& fileObj); - void processLink(const SymlinkPair& linkObj); - void processDir(const DirPair& dirObj); - - int createLeft, createRight; - int updateLeft, updateRight; - int deleteLeft, deleteRight; - ConflictTexts conflictMsgs; //conflict texts to display as a warning message - Int64 dataToProcess; - size_t rowsTotal; -}; - - -struct FolderPairSyncCfg -{ - FolderPairSyncCfg(bool saveSyncDB, - const DeletionPolicy handleDel, - VersioningStyle versioningStyle, - const Zstring& versioningDirFmt) : - saveSyncDB_(saveSyncDB), - handleDeletion(handleDel), - versioningStyle_(versioningStyle), - versioningFolder(versioningDirFmt) {} - - bool saveSyncDB_; //save database if in automatic mode or dection of moved files is active - DeletionPolicy handleDeletion; - VersioningStyle versioningStyle_; - Zstring versioningFolder; //formatted directory name -}; -std::vector extractSyncCfg(const MainConfiguration& mainCfg); - - -//FFS core routine: -void synchronize(const TimeComp& timeStamp, - xmlAccess::OptionalDialogs& warnings, - bool verifyCopiedFiles, - bool copyLockedFiles, - bool copyFilePermissions, - bool transactionalFileCopy, - bool runWithBackgroundPriority, - - const std::vector& syncConfig, //CONTRACT: syncConfig and folderCmp correspond row-wise! - FolderComparison& folderCmp, // - ProcessCallback& callback); - - - - - - - - - - -// ----------- 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::getUpdate() const -{ - return updateLeft; -} - -template <> inline -int SyncStatistics::getUpdate() const -{ - return updateRight; -} - -inline -int SyncStatistics::getUpdate() const -{ - return getUpdate() + getUpdate(); -} - - -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 -- cgit