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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
|
// **************************************************************************
// * 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) *
// **************************************************************************
//
#include "structures.h"
#include "shared/i18n.h"
#include <iterator>
#include <stdexcept>
using namespace zen;
wxString zen::getVariantName(CompareVariant var)
{
switch (var)
{
case CMP_BY_CONTENT:
return _("File content");
case CMP_BY_TIME_SIZE:
return _("File size and date");
}
assert(false);
return wxEmptyString;
}
wxString zen::getVariantName(SyncConfig::Variant var)
{
switch (var)
{
case SyncConfig::AUTOMATIC:
return _("<Automatic>");
case SyncConfig::MIRROR:
return _("Mirror ->>");
case SyncConfig::UPDATE:
return _("Update ->");
case SyncConfig::CUSTOM:
return _("Custom");
}
return _("Error");
}
DirectionSet zen::extractDirections(const SyncConfig& cfg)
{
DirectionSet output;
switch (cfg.var)
{
case SyncConfig::AUTOMATIC:
throw std::logic_error("there are no predefined directions for automatic mode!");
case SyncConfig::MIRROR:
output.exLeftSideOnly = SYNC_DIR_RIGHT;
output.exRightSideOnly = SYNC_DIR_RIGHT;
output.leftNewer = SYNC_DIR_RIGHT;
output.rightNewer = SYNC_DIR_RIGHT;
output.different = SYNC_DIR_RIGHT;
output.conflict = SYNC_DIR_RIGHT;
break;
case SyncConfig::UPDATE:
output.exLeftSideOnly = SYNC_DIR_RIGHT;
output.exRightSideOnly = SYNC_DIR_NONE;
output.leftNewer = SYNC_DIR_RIGHT;
output.rightNewer = SYNC_DIR_NONE;
output.different = SYNC_DIR_RIGHT;
output.conflict = SYNC_DIR_NONE;
break;
case SyncConfig::CUSTOM:
output = cfg.custom;
break;
}
return output;
}
DirectionSet zen::getTwoWaySet()
{
DirectionSet output;
output.exLeftSideOnly = SYNC_DIR_RIGHT;
output.exRightSideOnly = SYNC_DIR_LEFT;
output.leftNewer = SYNC_DIR_RIGHT;
output.rightNewer = SYNC_DIR_LEFT;
output.different = SYNC_DIR_NONE;
output.conflict = SYNC_DIR_NONE;
return output;
}
wxString MainConfiguration::getSyncVariantName()
{
const SyncConfig::Variant firstVariant = firstPair.altSyncConfig.get() ?
firstPair.altSyncConfig->syncConfiguration.var :
syncConfiguration.var; //fallback to main sync cfg
//test if there's a deviating variant within the additional folder pairs
for (std::vector<FolderPairEnh>::const_iterator i = additionalPairs.begin(); i != additionalPairs.end(); ++i)
{
const SyncConfig::Variant thisVariant = i->altSyncConfig.get() ?
i->altSyncConfig->syncConfiguration.var :
syncConfiguration.var;
if (thisVariant != firstVariant)
return _("Multiple...");
}
//seems to be all in sync...
return getVariantName(firstVariant);
}
wxString zen::getDescription(CompareFilesResult cmpRes)
{
switch (cmpRes)
{
case FILE_LEFT_SIDE_ONLY:
return _("File/folder exists on left side only");
case FILE_RIGHT_SIDE_ONLY:
return _("File/folder exists on right side only");
case FILE_LEFT_NEWER:
return _("Left file is newer");
case FILE_RIGHT_NEWER:
return _("Right file is newer");
case FILE_DIFFERENT:
return _("Files have different content");
case FILE_EQUAL:
return _("Both sides are equal");
case FILE_DIFFERENT_METADATA:
return _("Files/folders differ in attributes only");
case FILE_CONFLICT:
return _("Conflict/file cannot be categorized");
}
assert(false);
return wxEmptyString;
}
wxString zen::getSymbol(CompareFilesResult cmpRes)
{
switch (cmpRes)
{
case FILE_LEFT_SIDE_ONLY:
return wxT("<|");
case FILE_RIGHT_SIDE_ONLY:
return wxT("|>");
case FILE_LEFT_NEWER:
return wxT("<<");
case FILE_RIGHT_NEWER:
return wxT(">>");
case FILE_DIFFERENT:
return wxT("!=");
case FILE_EQUAL:
return wxT("'=="); //added quotation mark to avoid error in Excel cell when exporting to *.cvs
case FILE_CONFLICT:
case FILE_DIFFERENT_METADATA:
return wxT("\\/\\->");
}
assert(false);
return wxEmptyString;
}
wxString zen::getDescription(SyncOperation op)
{
switch (op)
{
case SO_CREATE_NEW_LEFT:
return _("Copy new file/folder to left");
case SO_CREATE_NEW_RIGHT:
return _("Copy new file/folder to right");
case SO_DELETE_LEFT:
return _("Delete left file/folder");
case SO_DELETE_RIGHT:
return _("Delete right file/folder");
case SO_OVERWRITE_LEFT:
return _("Overwrite left file/folder with right one");
case SO_OVERWRITE_RIGHT:
return _("Overwrite right file/folder with left one");
case SO_DO_NOTHING:
return _("Do nothing");
case SO_EQUAL:
return _("Both sides are equal");
case SO_COPY_METADATA_TO_LEFT:
return _("Copy file attributes only to left");
case SO_COPY_METADATA_TO_RIGHT:
return _("Copy file attributes only to right");
case SO_UNRESOLVED_CONFLICT: //not used on GUI, but in .csv
return _("Conflict/file cannot be categorized");
};
assert(false);
return wxEmptyString;
}
wxString zen::getSymbol(SyncOperation op)
{
switch (op)
{
case SO_CREATE_NEW_LEFT:
return wxT("*-");
case SO_CREATE_NEW_RIGHT:
return wxT("-*");
case SO_DELETE_LEFT:
return wxT("D-");
case SO_DELETE_RIGHT:
return wxT("-D");
case SO_OVERWRITE_LEFT:
case SO_COPY_METADATA_TO_LEFT:
return wxT("<-");
case SO_OVERWRITE_RIGHT:
case SO_COPY_METADATA_TO_RIGHT:
return wxT("->");
case SO_DO_NOTHING:
return wxT(" -");
case SO_EQUAL:
return wxT("'=="); //added quotation mark to avoid error in Excel cell when exporting to *.cvs
case SO_UNRESOLVED_CONFLICT:
return wxT("\\/\\->");
};
assert(false);
return wxEmptyString;
}
namespace
{
assert_static(std::numeric_limits<zen:: Int64>::is_specialized);
assert_static(std::numeric_limits<zen::UInt64>::is_specialized);
zen::Int64 resolve(size_t value, UnitTime unit, zen::Int64 defaultVal)
{
double out = value;
switch (unit)
{
case UTIME_NONE:
return defaultVal;
case UTIME_SEC:
return zen::Int64(value);
case UTIME_MIN:
out *= 60;
break;
case UTIME_HOUR:
out *= 3600;
break;
case UTIME_DAY:
out *= 24 * 3600;
break;
}
return out >= to<double>(std::numeric_limits<zen::Int64>::max()) ? //prevent overflow!!!
std::numeric_limits<zen::Int64>::max() :
zen::Int64(out);
}
zen::UInt64 resolve(size_t value, UnitSize unit, zen::UInt64 defaultVal)
{
double out = value;
switch (unit)
{
case USIZE_NONE:
return defaultVal;
case USIZE_BYTE:
return value;
case USIZE_KB:
out *= 1024;
break;
case USIZE_MB:
out *= 1024 * 1024;
break;
}
return out >= to<double>(std::numeric_limits<zen::UInt64>::max()) ? //prevent overflow!!!
std::numeric_limits<zen::UInt64>::max() :
zen::UInt64(out);
}
}
void zen::resolveUnits(size_t timeSpan, UnitTime unitTimeSpan,
size_t sizeMin, UnitSize unitSizeMin,
size_t sizeMax, UnitSize unitSizeMax,
zen::Int64& timeSpanSec, //unit: seconds
zen::UInt64& sizeMinBy, //unit: bytes
zen::UInt64& sizeMaxBy) //unit: bytes
{
timeSpanSec = resolve(timeSpan, unitTimeSpan, std::numeric_limits<zen::Int64>::max());
sizeMinBy = resolve(sizeMin, unitSizeMin, 0U);
sizeMaxBy = resolve(sizeMax, unitSizeMax, std::numeric_limits<zen::UInt64>::max());
}
namespace
{
bool sameFilter(const std::vector<FolderPairEnh>& folderPairs)
{
if (folderPairs.empty())
return true;
for (std::vector<FolderPairEnh>::const_iterator fp = folderPairs.begin(); fp != folderPairs.end(); ++fp)
if (!(fp->localFilter == folderPairs[0].localFilter))
return false;
return true;
}
bool isEmpty(const FolderPairEnh& fp)
{
return fp == FolderPairEnh();
}
FilterConfig mergeFilterConfig(const FilterConfig& global, const FilterConfig& local)
{
FilterConfig out = local;
//hard filter
//pragmatism: if both global and local include filter contain data, only local filter is preserved
if (out.includeFilter == FilterConfig().includeFilter)
out.includeFilter = global.includeFilter;
out.excludeFilter.Trim(true, false);
out.excludeFilter = global.excludeFilter + Zstr("\n") + out.excludeFilter;
out.excludeFilter.Trim(true, false);
//soft filter
zen::Int64 locTimeSpanSec;
zen::UInt64 locSizeMinBy;
zen::UInt64 locSizeMaxBy;
zen::resolveUnits(out.timeSpan, out.unitTimeSpan,
out.sizeMin, out.unitSizeMin,
out.sizeMax, out.unitSizeMax,
locTimeSpanSec, //unit: seconds
locSizeMinBy, //unit: bytes
locSizeMaxBy); //unit: bytes
//soft filter
zen::Int64 gloTimeSpanSec;
zen::UInt64 gloSizeMinBy;
zen::UInt64 gloSizeMaxBy;
zen::resolveUnits(global.timeSpan, global.unitTimeSpan,
global.sizeMin, global.unitSizeMin,
global.sizeMax, global.unitSizeMax,
gloTimeSpanSec, //unit: seconds
gloSizeMinBy, //unit: bytes
gloSizeMaxBy); //unit: bytes
if (gloTimeSpanSec < locTimeSpanSec)
{
out.timeSpan = global.timeSpan;
out.unitTimeSpan = global.unitTimeSpan;
}
if (gloSizeMinBy > locSizeMinBy)
{
out.sizeMin = global.sizeMin;
out.unitSizeMin = global.unitSizeMin;
}
if (gloSizeMaxBy < locSizeMaxBy)
{
out.sizeMax = global.sizeMax;
out.unitSizeMax = global.unitSizeMax;
}
return out;
}
}
zen::MainConfiguration zen::merge(const std::vector<MainConfiguration>& mainCfgs)
{
assert(!mainCfgs.empty());
if (mainCfgs.empty())
return zen::MainConfiguration();
if (mainCfgs.size() == 1) //mergeConfigFilesImpl relies on this!
return mainCfgs[0]; //
//merge folder pair config
std::vector<FolderPairEnh> fpMerged;
for (std::vector<MainConfiguration>::const_iterator i = mainCfgs.begin(); i != mainCfgs.end(); ++i)
{
std::vector<FolderPairEnh> fpTmp;
//list non-empty local configurations
if (!isEmpty(i->firstPair)) fpTmp.push_back(i->firstPair);
std::remove_copy_if(i->additionalPairs.begin(), i->additionalPairs.end(), std::back_inserter(fpTmp), &isEmpty);
//move all configuration down to item level
for (std::vector<FolderPairEnh>::iterator fp = fpTmp.begin(); fp != fpTmp.end(); ++fp)
{
if (!fp->altSyncConfig.get())
fp->altSyncConfig.reset(
new AlternateSyncConfig(i->syncConfiguration,
i->handleDeletion,
i->customDeletionDirectory));
fp->localFilter = mergeFilterConfig(i->globalFilter, fp->localFilter);
}
fpMerged.insert(fpMerged.end(), fpTmp.begin(), fpTmp.end());
}
if (fpMerged.empty())
return zen::MainConfiguration();
//optimization: remove redundant configuration
FilterConfig newGlobalFilter;
const bool equalFilters = sameFilter(fpMerged);
if (equalFilters)
newGlobalFilter = fpMerged[0].localFilter;
for (std::vector<FolderPairEnh>::iterator fp = fpMerged.begin(); fp != fpMerged.end(); ++fp)
{
//if local config matches output global config we don't need local one
if (fp->altSyncConfig &&
*fp->altSyncConfig == AlternateSyncConfig(mainCfgs[0].syncConfiguration,
mainCfgs[0].handleDeletion,
mainCfgs[0].customDeletionDirectory))
fp->altSyncConfig.reset();
if (equalFilters) //use global filter in this case
fp->localFilter = FilterConfig();
}
//final assembly
zen::MainConfiguration cfgOut = mainCfgs[0];
cfgOut.globalFilter = newGlobalFilter;
cfgOut.firstPair = fpMerged[0];
cfgOut.additionalPairs.assign(fpMerged.begin() + 1, fpMerged.end());
return cfgOut;
}
|