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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
|
#include "synchronization.h"
#include <wx/intl.h>
#include <wx/msgdlg.h>
#include <wx/log.h>
#include "library/multithreading.h"
#ifdef FFS_LINUX
#include <utime.h>
#endif // FFS_LINUX
using namespace FreeFileSync;
SyncProcess::SyncProcess(bool useRecycler, bool lineBreakOnMessages, StatusHandler* handler) :
useRecycleBin(useRecycler),
statusUpdater(handler)
{
if (lineBreakOnMessages)
optionalLineBreak = wxT("\n");
}
inline
SyncConfiguration::Direction getSyncDirection(const CompareFilesResult cmpResult, const SyncConfiguration& config)
{
switch (cmpResult)
{
case FILE_LEFT_SIDE_ONLY:
return config.exLeftSideOnly;
break;
case FILE_RIGHT_SIDE_ONLY:
return config.exRightSideOnly;
break;
case FILE_RIGHT_NEWER:
return config.rightNewer;
break;
case FILE_LEFT_NEWER:
return config.leftNewer;
break;
case FILE_DIFFERENT:
return config.different;
break;
default:
assert (false);
}
return SyncConfiguration::SYNC_DIR_NONE;
}
bool getBytesToTransfer(int& objectsToCreate,
int& objectsToOverwrite,
int& objectsToDelete,
double& dataToProcess,
const FileCompareLine& fileCmpLine,
const SyncConfiguration& config)
{ //false if nothing has to be done
objectsToCreate = 0; //always initialize variables
objectsToOverwrite = 0;
objectsToDelete = 0;
dataToProcess = 0;
//do not add filtered entries
if (!fileCmpLine.selectedForSynchronization)
return false;
switch (fileCmpLine.cmpResult)
{
case FILE_LEFT_SIDE_ONLY:
//get data to process
switch (getSyncDirection(fileCmpLine.cmpResult, config))
{
case SyncConfiguration::SYNC_DIR_LEFT: //delete file on left
dataToProcess = 0;
objectsToDelete = 1;
break;
case SyncConfiguration::SYNC_DIR_RIGHT: //copy from left to right
dataToProcess = fileCmpLine.fileDescrLeft.fileSize.ToDouble();
objectsToCreate = 1;
break;
case SyncConfiguration::SYNC_DIR_NONE:
return false;
}
break;
case FILE_RIGHT_SIDE_ONLY:
switch (getSyncDirection(fileCmpLine.cmpResult, config))
{
case SyncConfiguration::SYNC_DIR_LEFT: //copy from right to left
dataToProcess = fileCmpLine.fileDescrRight.fileSize.ToDouble();;
objectsToCreate = 1;
break;
case SyncConfiguration::SYNC_DIR_RIGHT: //delete file on right
dataToProcess = 0;
objectsToDelete = 1;
break;
case SyncConfiguration::SYNC_DIR_NONE:
return false;
}
break;
case FILE_LEFT_NEWER:
case FILE_RIGHT_NEWER:
case FILE_DIFFERENT:
//get data to process
switch (getSyncDirection(fileCmpLine.cmpResult, config))
{
case SyncConfiguration::SYNC_DIR_LEFT: //copy from right to left
dataToProcess = fileCmpLine.fileDescrRight.fileSize.ToDouble();
objectsToOverwrite = 1;
break;
case SyncConfiguration::SYNC_DIR_RIGHT: //copy from left to right
dataToProcess = fileCmpLine.fileDescrLeft.fileSize.ToDouble();
objectsToOverwrite = 1;
break;
case SyncConfiguration::SYNC_DIR_NONE:
return false;
}
break;
case FILE_EQUAL:
return false;
default:
assert(false);
return false;
};
return true;
}
void copyfileMultithreaded(const wxString& source, const wxString& target, StatusHandler* updateClass);
bool SyncProcess::synchronizeFile(const FileCompareLine& cmpLine, const SyncConfiguration& config)
{ //false if nothing was to be done
assert (statusUpdater);
if (!cmpLine.selectedForSynchronization) return false;
wxString target;
//synchronize file:
switch (cmpLine.cmpResult)
{
case FILE_LEFT_SIDE_ONLY:
switch (config.exLeftSideOnly)
{
case SyncConfiguration::SYNC_DIR_LEFT: //delete files on left
statusUpdater->updateStatusText(wxString(_("Deleting file ")) + optionalLineBreak + wxT("\"") + cmpLine.fileDescrLeft.fullName + wxT("\""));
removeFile(cmpLine.fileDescrLeft.fullName, useRecycleBin);
break;
case SyncConfiguration::SYNC_DIR_RIGHT: //copy files to right
target = cmpLine.fileDescrRight.directory + cmpLine.fileDescrLeft.relativeName;
statusUpdater->updateStatusText(wxString(_("Copying file ")) + optionalLineBreak + wxT("\"") + cmpLine.fileDescrLeft.fullName + wxT("\"") +
_(" to ") + optionalLineBreak + wxT("\"") + target + wxT("\""));
copyfileMultithreaded(cmpLine.fileDescrLeft.fullName, target, statusUpdater);
break;
case SyncConfiguration::SYNC_DIR_NONE:
return false;
default:
assert (false);
}
break;
case FILE_RIGHT_SIDE_ONLY:
switch (config.exRightSideOnly)
{
case SyncConfiguration::SYNC_DIR_LEFT: //copy files to left
target = cmpLine.fileDescrLeft.directory + cmpLine.fileDescrRight.relativeName;
statusUpdater->updateStatusText(wxString(_("Copying file ")) + optionalLineBreak + wxT("\"") + cmpLine.fileDescrRight.fullName + wxT("\"") +
_(" to ") + optionalLineBreak + wxT("\"") + target + wxT("\""));
copyfileMultithreaded(cmpLine.fileDescrRight.fullName, target, statusUpdater);
break;
case SyncConfiguration::SYNC_DIR_RIGHT: //delete files on right
statusUpdater->updateStatusText(wxString(_("Deleting file ")) + optionalLineBreak + wxT("\"") + cmpLine.fileDescrRight.fullName + wxT("\""));
removeFile(cmpLine.fileDescrRight.fullName, useRecycleBin);
break;
case SyncConfiguration::SYNC_DIR_NONE:
return false;
default:
assert (false);
}
break;
case FILE_LEFT_NEWER:
case FILE_RIGHT_NEWER:
case FILE_DIFFERENT:
switch (getSyncDirection(cmpLine.cmpResult, config))
{
case SyncConfiguration::SYNC_DIR_LEFT: //copy from right to left
statusUpdater->updateStatusText(wxString(_("Copying file ")) + optionalLineBreak + wxT("\"") + cmpLine.fileDescrRight.fullName + wxT("\"") +
_(" overwriting ") + optionalLineBreak + wxT("\"") + cmpLine.fileDescrLeft.fullName + wxT("\""));
removeFile(cmpLine.fileDescrLeft.fullName, useRecycleBin); //only used if switch activated by user, else file is simply deleted
copyfileMultithreaded(cmpLine.fileDescrRight.fullName, cmpLine.fileDescrLeft.fullName, statusUpdater);
break;
case SyncConfiguration::SYNC_DIR_RIGHT: //copy from left to right
statusUpdater->updateStatusText(wxString(_("Copying file ")) + optionalLineBreak + wxT("\"") + cmpLine.fileDescrLeft.fullName + wxT("\"") +
_(" overwriting ") + optionalLineBreak + wxT("\"") + cmpLine.fileDescrRight.fullName + wxT("\""));
removeFile(cmpLine.fileDescrRight.fullName, useRecycleBin); //only used if switch activated by user, else file is simply deleted
copyfileMultithreaded(cmpLine.fileDescrLeft.fullName, cmpLine.fileDescrRight.fullName, statusUpdater);
break;
case SyncConfiguration::SYNC_DIR_NONE:
return false;
default:
assert (false);
}
break;
case FILE_EQUAL:
return false;
default:
assert (false);
}
return true;
}
bool SyncProcess::synchronizeFolder(const FileCompareLine& cmpLine, const SyncConfiguration& config)
{ //false if nothing was to be done
assert (statusUpdater);
if (!cmpLine.selectedForSynchronization) return false;
wxString target;
//synchronize folders:
switch (cmpLine.cmpResult)
{
case FILE_LEFT_SIDE_ONLY:
switch (config.exLeftSideOnly)
{
case SyncConfiguration::SYNC_DIR_LEFT: //delete folders on left
statusUpdater->updateStatusText(wxString(_("Deleting folder ")) + optionalLineBreak + wxT("\"") + cmpLine.fileDescrLeft.fullName + wxT("\""));
removeDirectory(cmpLine.fileDescrLeft.fullName, useRecycleBin);
break;
case SyncConfiguration::SYNC_DIR_RIGHT: //create folders on right
target = cmpLine.fileDescrRight.directory + cmpLine.fileDescrLeft.relativeName;
statusUpdater->updateStatusText(wxString(_("Creating folder ")) + optionalLineBreak + wxT("\"") + target + wxT("\""));
//some check to catch the error that directory on source has been deleted externally after the "compare"...
if (!wxDirExists(cmpLine.fileDescrLeft.fullName))
throw FileError(wxString(_("Error: Source directory does not exist anymore: ")) + wxT("\"") + cmpLine.fileDescrLeft.fullName + wxT("\""));
createDirectory(target);
break;
case SyncConfiguration::SYNC_DIR_NONE:
return false;
default:
assert (false);
}
break;
case FILE_RIGHT_SIDE_ONLY:
switch (config.exRightSideOnly)
{
case SyncConfiguration::SYNC_DIR_LEFT: //create folders on left
target = cmpLine.fileDescrLeft.directory + cmpLine.fileDescrRight.relativeName;
statusUpdater->updateStatusText(wxString(_("Creating folder ")) + optionalLineBreak + wxT("\"") + target + wxT("\""));
//some check to catch the error that directory on source has been deleted externally after the "compare"...
if (!wxDirExists(cmpLine.fileDescrRight.fullName))
throw FileError(wxString(_("Error: Source directory does not exist anymore: ")) + wxT("\"") + cmpLine.fileDescrRight.fullName + wxT("\""));
createDirectory(target);
break;
case SyncConfiguration::SYNC_DIR_RIGHT: //delete folders on right
statusUpdater->updateStatusText(wxString(_("Deleting folder ")) + optionalLineBreak + wxT("\"") + cmpLine.fileDescrRight.fullName + wxT("\""));
removeDirectory(cmpLine.fileDescrRight.fullName, useRecycleBin);
break;
case SyncConfiguration::SYNC_DIR_NONE:
return false;
default:
assert (false);
}
break;
case FILE_EQUAL:
return false;
case FILE_RIGHT_NEWER:
case FILE_LEFT_NEWER:
case FILE_DIFFERENT:
default:
assert (false);
}
return true;
}
inline
bool deletionImminent(const FileCompareLine& line, const SyncConfiguration& config)
{ //test if current sync-line will result in deletion of files -> used to avoid disc space bottlenecks
if ( (line.cmpResult == FILE_LEFT_SIDE_ONLY && config.exLeftSideOnly == SyncConfiguration::SYNC_DIR_LEFT) ||
(line.cmpResult == FILE_RIGHT_SIDE_ONLY && config.exRightSideOnly == SyncConfiguration::SYNC_DIR_RIGHT))
return true;
else
return false;
}
class AlwaysWriteToGrid //this class ensures, that the result of the method below is ALWAYS written on exit, even if exceptions are thrown!
{
public:
AlwaysWriteToGrid(FileCompareResult& grid) :
gridToWrite(grid)
{}
~AlwaysWriteToGrid()
{
removeRowsFromVector(gridToWrite, rowsProcessed);
}
void rowProcessedSuccessfully(int nr)
{
rowsProcessed.insert(nr);
}
private:
FileCompareResult& gridToWrite;
set<int> rowsProcessed;
};
//synchronizes while processing rows in grid and returns all rows that have not been synced
void SyncProcess::startSynchronizationProcess(FileCompareResult& grid, const SyncConfiguration& config) throw(AbortThisProcess)
{
assert (statusUpdater);
#ifndef __WXDEBUG__
wxLogNull noWxLogs; //prevent wxWidgets logging
#endif
AlwaysWriteToGrid writeOutput(grid); //ensure that grid is always written to, even if method is exitted via exceptions
//inform about the total amount of data that will be processed from now on
int objectsToCreate = 0;
int objectsToOverwrite = 0;
int objectsToDelete = 0;
double dataToProcess = 0;
calcTotalBytesToSync(objectsToCreate,
objectsToOverwrite,
objectsToDelete,
dataToProcess,
grid,
config);
statusUpdater->initNewProcess(objectsToCreate + objectsToOverwrite + objectsToDelete, dataToProcess, StatusHandler::PROCESS_SYNCHRONIZING);
try
{
// it should never happen, that a directory on left side has same name as file on right side. startCompareProcess() should take care of this
// and split into two "exists on one side only" cases
// Note: this case is not handled by this tool as this is considered to be a bug and must be solved by the user
//synchronize folders:
for (FileCompareResult::const_iterator i = grid.begin(); i != grid.end(); ++i)
{
if ( i->fileDescrLeft.objType == FileDescrLine::TYPE_DIRECTORY ||
i->fileDescrRight.objType == FileDescrLine::TYPE_DIRECTORY)
{
while (true)
{ //trigger display refresh
statusUpdater->requestUiRefresh();
try
{
if (synchronizeFolder(*i, config))
//progress indicator update
//indicator is updated only if directory is synched correctly (and if some sync was done)!
statusUpdater->updateProcessedData(1, 0); //each call represents one processed file/directory
writeOutput.rowProcessedSuccessfully(i - grid.begin());
break;
}
catch (FileError& error)
{
//if (updateClass) -> is mandatory
ErrorHandler::Response rv = statusUpdater->reportError(error.show());
if ( rv == ErrorHandler::CONTINUE_NEXT)
break;
else if (rv == ErrorHandler::RETRY)
; //continue with loop
else
assert (false);
}
}
}
}
//synchronize files:
bool deleteLoop = true;
for (int k = 0; k < 2; ++k) //loop over all files twice; reason: first delete, then copy (no sorting necessary: performance)
{
deleteLoop = !k; //-> first loop: delete files, second loop: copy files
for (FileCompareResult::const_iterator i = grid.begin(); i != grid.end(); ++i)
{
if ( i->fileDescrLeft.objType == FileDescrLine::TYPE_FILE ||
i->fileDescrRight.objType == FileDescrLine::TYPE_FILE)
{
if ( deleteLoop && deletionImminent(*i, config) ||
!deleteLoop && !deletionImminent(*i, config))
{
while (true)
{ //trigger display refresh
statusUpdater->requestUiRefresh();
try
{
if (synchronizeFile(*i, config))
{
//progress indicator update
//indicator is updated only if file is sync'ed correctly (and if some sync was done)!
int objectsToCreate = 0;
int objectsToOverwrite = 0;
int objectsToDelete = 0;
double dataToProcess = 0;
if (getBytesToTransfer(objectsToCreate,
objectsToOverwrite,
objectsToDelete,
dataToProcess,
*i,
config)) //update status if some work was done (answer is always "yes" in this context)
statusUpdater->updateProcessedData(objectsToCreate + objectsToOverwrite + objectsToDelete, dataToProcess);
}
writeOutput.rowProcessedSuccessfully(i - grid.begin());
break;
}
catch (FileError& error)
{
//if (updateClass) -> is mandatory
ErrorHandler::Response rv = statusUpdater->reportError(error.show());
if ( rv == ErrorHandler::CONTINUE_NEXT)
break;
else if (rv == ErrorHandler::RETRY)
; //continue with loop
else
assert (false);
}
}
}
}
}
}
}
catch (const RuntimeException& theException)
{
wxMessageBox(theException.show(), _("An exception occured!"), wxOK | wxICON_ERROR);
return;
}
}
//###########################################################################################
//handle execution of a method while updating the UI
class UpdateWhileCopying : public UpdateWhileExecuting
{
public:
UpdateWhileCopying() {}
~UpdateWhileCopying() {}
wxString source;
wxString target;
bool success;
wxString errorMessage;
private:
void longRunner() //virtual method implementation
{
if (!wxCopyFile(source, target, false)) //abort if file exists
{
success = false;
errorMessage = wxString(_("Error copying file ")) + wxT("\"") + source + wxT("\"") + _(" to ") + wxT("\"") + target + wxT("\"");
return;
}
#ifdef FFS_LINUX //copying files with Linux does not preserve the modification time => adapt after copying
struct stat fileInfo;
if (stat(source.c_str(), &fileInfo) != 0) //read modification time from source file
{
success = false;
errorMessage = wxString(_("Could not retrieve file info for: ")) + wxT("\"") + source + wxT("\"");
return;
}
utimbuf newTimes;
newTimes.actime = fileInfo.st_mtime;
newTimes.modtime = fileInfo.st_mtime;
if (utime(target.c_str(), &newTimes) != 0)
{
success = false;
errorMessage = wxString(_("Error adapting modification time of file ")) + wxT("\"") + target + wxT("\"");
return;
}
#endif // FFS_LINUX
success = true;
}
};
void copyfileMultithreaded(const wxString& source, const wxString& target, StatusHandler* updateClass)
{
static UpdateWhileCopying copyAndUpdate; //single instantiation: after each execution thread enters wait phase
copyAndUpdate.waitUntilReady();
//longRunner is called from thread, but no mutex needed here, since thread is in waiting state!
copyAndUpdate.source = source;
copyAndUpdate.target = target;
copyAndUpdate.execute(updateClass);
//no mutex needed here since longRunner is finished
if (!copyAndUpdate.success)
throw FileError(copyAndUpdate.errorMessage);
}
void FreeFileSync::calcTotalBytesToSync(int& objectsToCreate,
int& objectsToOverwrite,
int& objectsToDelete,
double& dataToProcess,
const FileCompareResult& fileCmpResult,
const SyncConfiguration& config)
{
objectsToCreate = 0;
objectsToOverwrite = 0;
objectsToDelete = 0;
dataToProcess = 0;
int toCreate = 0;
int toOverwrite = 0;
int toDelete = 0;
double data = 0;
for (FileCompareResult::const_iterator i = fileCmpResult.begin(); i != fileCmpResult.end(); ++i)
{ //only sum up sizes of files AND directories
if (getBytesToTransfer(toCreate, toOverwrite, toDelete, data, *i, config))
{
objectsToCreate+= toCreate;
objectsToOverwrite+= toOverwrite;
objectsToDelete+= toDelete;
dataToProcess+= data;
}
}
}
|