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
|
/*******#include <wx/msgdlg.h>********************************************************
* Name: FreeFileSyncApp.cpp
* Purpose: Code for Application Class
* Author: ZenJu (zhnmju123@gmx.de)
* Created: 2008-07-16
* Copyright: ZenJu ()
* License:
**************************************************************/
#include "application.h"
#include "ui/mainDialog.h"
#include <wx/stdpaths.h>
#include <wx/filename.h>
#include <wx/ffile.h>
#include "library/globalFunctions.h"
#include <wx/msgdlg.h>
#include "library/processXml.h"
#include <wx/stopwatch.h>
using namespace xmlAccess;
IMPLEMENT_APP(Application);
bool Application::ProcessIdle()
{
static bool initialized = false;
if (!initialized)
{
initialized = true;
initialize(); //here the program initialization takes place
}
return wxApp::ProcessIdle();
}
//Note: initialization is done in the FIRST idle event instead of OnInit. Reason: Commandline mode requires the wxApp eventhandler to be established
//for UI update events. This is not the case at the time of OnInit().
bool Application::OnInit()
{
returnValue = 0;
//do not call wxApp::OnInit() to avoid using default commandline parser
//set working directory to current executable directory
if (!wxSetWorkingDirectory(wxFileName(wxStandardPaths::Get().GetExecutablePath()).GetPath()))
{ //show messagebox and quit program immediately
wxMessageBox(_("Could not set working directory to directory containing executable file!"), _("An exception occured!"), wxOK | wxICON_ERROR);
return false;
}
try //load global settings from XML: must be called AFTER working dir was set
{
globalSettings = xmlAccess::readGlobalSettings();
}
catch (const FileError& error)
{
if (wxFileExists(FreeFileSync::FfsGlobalSettingsFile))
{ //show messagebox and quit program immediately
wxMessageBox(error.show(), _("Error"), wxOK | wxICON_ERROR);
return false;
}
//else: globalSettings already has default values
}
//set program language: needs to happen aber working directory has been set!
SetExitOnFrameDelete(false); //prevent error messagebox from becoming top-level window
programLanguage.setLanguage(globalSettings.global.programLanguage);
SetExitOnFrameDelete(true);
//load image resources from file: must be called after working directory has been set
globalResource.load();
return true;
}
void Application::initialize()
{
//test if FFS is to be started on UI with config file passed as commandline parameter
if (argc > 1)
{
XmlType xmlConfigType = xmlAccess::getXmlType(argv[1]);
if (xmlConfigType == XML_GUI_CONFIG) //start in GUI mode (configuration file specified)
{
MainDialog* frame = new MainDialog(NULL, argv[1], &programLanguage, globalSettings);
frame->SetIcon(*globalResource.programIcon); //set application icon
frame->Show();
}
else if (xmlConfigType == XML_BATCH_CONFIG) //start in commandline mode
{
runBatchMode(argv[1], globalSettings);
if (applicationRunsInBatchWithoutWindows)
ExitMainLoop(); //exit programm on next main loop iteration
return; //program will exit automatically if a main window is present and closed
}
else
{
wxMessageBox(wxString(_("No valid configuration file specified: ")) + argv[1], _("Error"), wxOK | wxICON_ERROR);
return;
}
}
else //start in GUI mode (standard)
{
MainDialog* frame = new MainDialog(NULL, FreeFileSync::FfsLastConfigFile, &programLanguage, globalSettings);
frame->SetIcon(*globalResource.programIcon); //set application icon
frame->Show();
}
}
bool Application::OnExceptionInMainLoop()
{
throw; //just pass exceptions and avoid display of additional exception messagebox: they will be caught in OnRun()
}
int Application::OnRun()
{
try
{
wxApp::OnRun();
}
catch (const RuntimeException& theException) //catch runtime errors during main event loop; wxApp::OnUnhandledException could be used alternatively
{
wxMessageBox(theException.show(), _("An exception occured!"), wxOK | wxICON_ERROR);
return -1;
}
catch (std::exception& e) //catch all STL exceptions
{
wxMessageBox(wxString::From8BitData(e.what()), _("An exception occured!"), wxOK | wxICON_ERROR);
return -1;
}
return returnValue;
}
int Application::OnExit()
{
//get program language
globalSettings.global.programLanguage = programLanguage.getLanguage();
try //save global settings to XML
{
xmlAccess::writeGlobalSettings(globalSettings);
}
catch (const FileError& error)
{
wxMessageBox(error.show(), _("Error"), wxOK | wxICON_ERROR);
}
return 0;
}
class LogFile
{
public:
LogFile()
{
wxString tmp = wxDateTime::Now().FormatISOTime();
tmp.Replace(wxT(":"), wxEmptyString);
wxString logfileName = wxString(wxT("FFS_")) + wxDateTime::Now().FormatISODate() + wxChar('_') + tmp + wxT(".log");
logFile.Open(logfileName.c_str(), wxT("w"));
readyToWrite = logFile.IsOpened();
if (readyToWrite)
{
logFile.Write(wxString(_("FreeFileSync (Date: ")) + wxDateTime::Now().FormatDate() + _(" Time: ") + wxDateTime::Now().FormatTime() + wxT(")") + wxChar('\n'));
logFile.Write(wxString(_("-------------------------------------------------")) + wxChar('\n'));
logFile.Write(wxChar('\n'));
logFile.Write(_("Log-messages:\n-------------"));
logFile.Write(wxChar('\n'));
write(_("Start"));
logFile.Write(wxChar('\n'));
totalTime.Start(); //measure total time
}
}
~LogFile() {}
bool isOkay()
{
return readyToWrite;
}
void write(const wxString& logText, const wxString& problemType = wxEmptyString)
{
if (readyToWrite)
{
logFile.Write(wxString(wxT("[")) + wxDateTime::Now().FormatTime() + wxT("] "));
if (problemType != wxEmptyString)
logFile.Write(problemType + wxT(": "));
logFile.Write(logText + wxChar('\n'));
}
}
void close(const wxString& finalText)
{
if (readyToWrite)
{
logFile.Write(wxChar('\n'));
long time = totalTime.Time(); //retrieve total time
write(finalText + wxT(" (") + _("Total time: ") + (wxTimeSpan::Milliseconds(time)).Format() + wxT(")"), _("Stop"));
//logFile.close(); <- not needed
}
}
private:
bool readyToWrite;
wxFFile logFile;
wxStopWatch totalTime;
};
class DeleteOnExit
{
public:
DeleteOnExit(LogFile* log) : m_log(log) {}
~DeleteOnExit()
{
if (m_log) delete m_log;
}
private:
LogFile* m_log;
};
void Application::runBatchMode(const wxString& filename, xmlAccess::XmlGlobalSettings& globalSettings)
{
applicationRunsInBatchWithoutWindows = false; //default value
//load XML settings
XmlBatchConfig batchCfg; //structure to receive gui settings
try
{
batchCfg = xmlAccess::readBatchConfig(filename);
}
catch (const FileError& error)
{
wxMessageBox(error.show(), _("Error"), wxOK | wxICON_ERROR);
return;
}
//all settings have been read successfully...
applicationRunsInBatchWithoutWindows = batchCfg.silent; //this value is needed for the application to decide whether to wait for windows to close or not
//format directory names
for (vector<FolderPair>::iterator i = batchCfg.directoryPairs.begin(); i != batchCfg.directoryPairs.end(); ++i)
{
i->leftDirectory = FreeFileSync::getFormattedDirectoryName(i->leftDirectory);
i->rightDirectory = FreeFileSync::getFormattedDirectoryName(i->rightDirectory);
}
//init logfile
LogFile* log = NULL;
if (batchCfg.silent)
log = new LogFile;
DeleteOnExit dummy(log); //delete log object on exit (if not NULL)
if (log && !log->isOkay())
{ //handle error: file load
wxMessageBox(_("Unable to create logfile!"), _("Error"), wxOK | wxICON_ERROR);
return;
}
//check if directories exist
wxString errorMessage;
if (!FreeFileSync::foldersAreValidForComparison(batchCfg.directoryPairs, errorMessage))
{
if (batchCfg.silent)
{
log->write(errorMessage, _("Warning"));
log->close(_("Synchronization aborted!"));
}
else wxMessageBox(errorMessage + wxT("\n\n") + _("Synchronization aborted!"), _("Warning"), wxICON_WARNING);
returnValue = -2;
return;
}
//test existence of Recycle Bin
if (batchCfg.mainCfg.useRecycleBin)
{
if (!FreeFileSync::recycleBinExists())
{
wxString errorMessage = wxString(_("Unable to initialize Recycle Bin!"));
wxString statusMessage = wxString(_("Synchronization aborted!"));
if (batchCfg.silent)
{
log->write(errorMessage, _("Error"));
log->close(statusMessage);
}
else wxMessageBox(errorMessage + wxT("\n\n") + statusMessage, _("Error"), wxICON_WARNING);
returnValue = -2;
return;
}
}
//begin of synchronization process (all in one try-catch block)
try
{
FileCompareResult currentGridData;
//class handling status updates and error messages
BatchStatusUpdater statusUpdater(batchCfg.mainCfg.continueOnError, batchCfg.silent, log);
//COMPARE DIRECTORIES
FreeFileSync::startCompareProcess(batchCfg.directoryPairs,
batchCfg.mainCfg.compareVar,
currentGridData,
&statusUpdater);
//APPLY FILTERS
if (batchCfg.mainCfg.filterIsActive)
FreeFileSync::filterCurrentGridData(currentGridData, batchCfg.mainCfg.includeFilter, batchCfg.mainCfg.excludeFilter);
//check if there are files/folders to be sync'ed at all
int objectsToCreate = 0;
int objectsToOverwrite = 0;
int objectsToDelete = 0;
double dataToProcess = 0;
FreeFileSync::calcTotalBytesToSync(objectsToCreate,
objectsToOverwrite,
objectsToDelete,
dataToProcess,
currentGridData,
batchCfg.mainCfg.syncConfiguration);
if (objectsToCreate + objectsToOverwrite + objectsToDelete == 0)
{
statusUpdater.noSynchronizationNeeded(); //inform about this special case
returnValue = -3;
return;
}
//START SYNCHRONIZATION
FreeFileSync::startSynchronizationProcess(currentGridData, batchCfg.mainCfg.syncConfiguration, &statusUpdater, batchCfg.mainCfg.useRecycleBin);
}
catch (AbortThisProcess& theException) //exit used by statusUpdater
{
returnValue = -4;
return;
}
return; //exit program
}
//######################################################################################################
BatchStatusUpdater::BatchStatusUpdater(bool continueOnError, bool silent, LogFile* log) :
m_log(log),
continueErrors(continueOnError),
silentMode(silent),
currentProcess(StatusHandler::PROCESS_NONE),
synchronizationNeeded(true)
{
if (!silentMode)
{
syncStatusFrame = new SyncStatus(this, NULL);
syncStatusFrame->Show();
}
}
BatchStatusUpdater::~BatchStatusUpdater()
{
unsigned int failedItems = unhandledErrors.GetCount();
//output the result
if (silentMode)
{
if (abortionRequested)
m_log->close(_("Synchronization aborted!"));
else if (failedItems)
m_log->close(_("Synchronization completed with errors!"));
else
{
if (!synchronizationNeeded)
m_log->write(_("Nothing to synchronize. Both directories adhere to the sync-configuration!"), _("Info"));
m_log->close(_("Synchronization completed successfully."));
}
}
else
{
wxString finalMessage;
if (failedItems)
{
finalMessage = wxString(_("Warning: Synchronization failed for ")) + globalFunctions::numberToWxString(failedItems) + _(" item(s):\n\n");
for (unsigned int j = 0; j < failedItems; ++j)
finalMessage+= unhandledErrors[j] + wxT("\n");
finalMessage+= wxT("\n");
}
//notify to syncStatusFrame that current process has ended
if (abortionRequested)
{
finalMessage+= _("Synchronization aborted!");
syncStatusFrame->setStatusText_NoUpdate(finalMessage);
syncStatusFrame->processHasFinished(SyncStatus::ABORTED); //enable okay and close events
}
else if (failedItems)
{
finalMessage+= _("Synchronization completed with errors!");
syncStatusFrame->setStatusText_NoUpdate(finalMessage);
syncStatusFrame->processHasFinished(SyncStatus::FINISHED_WITH_ERROR);
}
else
{
if (synchronizationNeeded)
finalMessage+= _("Synchronization completed successfully.");
else
finalMessage+= _("Nothing to synchronize. Both directories adhere to the sync-configuration!");
syncStatusFrame->setStatusText_NoUpdate(finalMessage);
syncStatusFrame->processHasFinished(SyncStatus::FINISHED_WITH_SUCCESS);
}
}
}
inline
void BatchStatusUpdater::updateStatusText(const wxString& text)
{
if (silentMode)
{
if (currentProcess == StatusHandler::PROCESS_SYNCHRONIZING)
m_log->write(text, _("Info"));
}
else
syncStatusFrame->setStatusText_NoUpdate(text);
}
void BatchStatusUpdater::initNewProcess(int objectsTotal, double dataTotal, StatusHandler::Process processID)
{
currentProcess = processID;
if (!silentMode)
{
if (currentProcess == StatusHandler::PROCESS_SCANNING)
syncStatusFrame->setCurrentStatus(SyncStatus::SCANNING);
else if (currentProcess == StatusHandler::PROCESS_COMPARING_CONTENT)
{
syncStatusFrame->resetGauge(objectsTotal, dataTotal);
syncStatusFrame->setCurrentStatus(SyncStatus::COMPARING);
}
else if (currentProcess == StatusHandler::PROCESS_SYNCHRONIZING)
{
syncStatusFrame->resetGauge(objectsTotal, dataTotal);
syncStatusFrame->setCurrentStatus(SyncStatus::SYNCHRONIZING);
}
else assert(false);
}
}
inline
void BatchStatusUpdater::updateProcessedData(int objectsProcessed, double dataProcessed)
{
if (!silentMode)
{
if (currentProcess == StatusHandler::PROCESS_SCANNING)
syncStatusFrame->m_gauge1->Pulse();
else if (currentProcess == StatusHandler::PROCESS_COMPARING_CONTENT)
syncStatusFrame->incProgressIndicator_NoUpdate(objectsProcessed, dataProcessed);
else if (currentProcess == StatusHandler::PROCESS_SYNCHRONIZING)
syncStatusFrame->incProgressIndicator_NoUpdate(objectsProcessed, dataProcessed);
else assert(false);
}
}
ErrorHandler::Response BatchStatusUpdater::reportError(const wxString& text)
{
if (silentMode) //write error message log and abort the complete session if necessary
{
unhandledErrors.Add(text);
m_log->write(text, _("Error"));
if (continueErrors) // /|\ before return, the logfile is written!!!
return ErrorHandler::CONTINUE_NEXT;
else
{
abortionRequested = true;
throw AbortThisProcess();
}
}
else //show dialog to user who can decide how to continue
{
if (continueErrors) //this option can be set from commandline or by the user in the error dialog on UI
{
unhandledErrors.Add(text);
return ErrorHandler::CONTINUE_NEXT;
}
wxString errorMessage = text + _("\n\nContinue with next object, retry or abort synchronization?");
ErrorDlg* errorDlg = new ErrorDlg(errorMessage, continueErrors);
syncStatusFrame->updateStatusDialogNow();
int rv = errorDlg->ShowModal();
errorDlg->Destroy();
switch (rv)
{
case ErrorDlg::BUTTON_CONTINUE:
unhandledErrors.Add(text);
return ErrorHandler::CONTINUE_NEXT;
case ErrorDlg::BUTTON_RETRY:
return ErrorHandler::RETRY;
case ErrorDlg::BUTTON_ABORT:
{
unhandledErrors.Add(text);
abortionRequested = true;
throw AbortThisProcess();
}
default:
assert (false);
return ErrorHandler::CONTINUE_NEXT;
}
}
}
inline
void BatchStatusUpdater::forceUiRefresh()
{
if (!silentMode)
syncStatusFrame->updateStatusDialogNow();
}
void BatchStatusUpdater::abortThisProcess()
{
throw AbortThisProcess(); //abort can be triggered by syncStatusFrame
}
void BatchStatusUpdater::noSynchronizationNeeded()
{
synchronizationNeeded = false;;
}
|