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
187
188
189
190
191
192
193
194
|
// **************************************************************************
// * 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 "lib/process_xml.h"
#include "lib/status_handler.h"
namespace zen
{
class SyncStatistics
{
public:
SyncStatistics(const HierarchyObject& hierObj);
SyncStatistics(const FolderComparison& folderCmp);
int getCreate() const;
template <SelectedSide side> int getCreate() const;
int getOverwrite() const;
template <SelectedSide side> int getOverwrite() const;
int getDelete() const;
template <SelectedSide side> int getDelete() const;
int getConflict() const { return conflict; }
typedef std::vector<std::pair<Zstring, wxString> > 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<FolderPairSyncCfg> 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<FolderPairSyncCfg>& 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<LEFT_SIDE>() const
{
return createLeft;
}
template <>
inline
int SyncStatistics::getCreate<RIGHT_SIDE>() const
{
return createRight;
}
inline
int SyncStatistics::getCreate() const
{
return getCreate<LEFT_SIDE>() + getCreate<RIGHT_SIDE>();
}
template <>
inline
int SyncStatistics::getOverwrite<LEFT_SIDE>() const
{
return overwriteLeft;
}
template <>
inline
int SyncStatistics::getOverwrite<RIGHT_SIDE>() const
{
return overwriteRight;
}
inline
int SyncStatistics::getOverwrite() const
{
return getOverwrite<LEFT_SIDE>() + getOverwrite<RIGHT_SIDE>();
}
template <>
inline
int SyncStatistics::getDelete<LEFT_SIDE>() const
{
return deleteLeft;
}
template <>
inline
int SyncStatistics::getDelete<RIGHT_SIDE>() const
{
return deleteRight;
}
inline
int SyncStatistics::getDelete() const
{
return getDelete<LEFT_SIDE>() + getDelete<RIGHT_SIDE>();
}
}
#endif // SYNCHRONIZATION_H_INCLUDED
|