From 6d15812d7d93370d47e63f6bf9f70be40f5a9c5d Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:21:16 +0200 Subject: 5.7 --- comparison.h | 54 +++++++++--------------------------------------------- 1 file changed, 9 insertions(+), 45 deletions(-) (limited to 'comparison.h') diff --git a/comparison.h b/comparison.h index 7dc18682..18408e95 100644 --- a/comparison.h +++ b/comparison.h @@ -1,20 +1,16 @@ // ************************************************************************** // * 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 (zhnmju123 AT gmx DOT de) - All Rights Reserved * +// * Copyright (C) ZenJu (zenju AT gmx DOT de) - All Rights Reserved * // ************************************************************************** #ifndef COMPARISON_H_INCLUDED #define COMPARISON_H_INCLUDED -#include #include "file_hierarchy.h" #include "lib/process_xml.h" #include "process_callback.h" -#include "structures.h" #include "lib/norm_filter.h" -#include "lib/parallel_scan.h" - namespace zen { @@ -46,47 +42,15 @@ struct FolderPairCfg std::vector extractCompareCfg(const MainConfiguration& mainCfg); //fill FolderPairCfg and resolve folder pairs +//FFS core routine: +void compare(size_t fileTimeTolerance, //max allowed file time deviation + xmlAccess::OptionalDialogs& warnings, + bool allowUserInteraction, + bool runWithBackgroundPriority, -//runComparison - -//class handling comparison process -class CompareProcess -{ -public: - CompareProcess(size_t fileTimeTol, - xmlAccess::OptionalDialogs& warnings, - bool allowUserInteraction, - bool runWithBackgroundPriority, - ProcessCallback& handler); - - void startCompareProcess(const std::vector& cfgList, FolderComparison& output); - -private: - CompareProcess(const CompareProcess&); - CompareProcess& operator=(const CompareProcess&); - - //create comparison result table and fill category except for files existing on both sides: undefinedFiles and undefinedLinks are appended! - void categorizeSymlinkByTime(SymLinkMapping& linkObj) const; - void categorizeSymlinkByContent(SymLinkMapping& linkObj) const; - - void compareByTimeSize(const FolderPairCfg& fpConfig, BaseDirMapping& output); - void compareByContent(std::vector>& workLoad); - - void performComparison(const FolderPairCfg& fpCfg, - BaseDirMapping& output, - std::vector& undefinedFiles, - std::vector& undefinedLinks); - - std::map directoryBuffer; //contains only *existing* directories - - const size_t fileTimeTolerance; //max allowed file time deviation - - xmlAccess::OptionalDialogs& m_warnings; - - const bool allowUserInteraction_; - ProcessCallback& procCallback; - std::unique_ptr procBackground; -}; + const std::vector& cfgList, + FolderComparison& output, + ProcessCallback& callback); } #endif // COMPARISON_H_INCLUDED -- cgit