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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
|
#include "processXml.h"
#include <wx/filefn.h>
#include <wx/ffile.h>
#include <wx/intl.h>
#include "globalFunctions.h"
//small helper functions
bool readXmlElementValue(std::string& output, const TiXmlElement* parent, const std::string& name);
bool readXmlElementValue(int& output, const TiXmlElement* parent, const std::string& name);
bool readXmlElementValue(CompareVariant& output, const TiXmlElement* parent, const std::string& name);
bool readXmlElementValue(SyncConfiguration::Direction& output, const TiXmlElement* parent, const std::string& name);
bool readXmlElementValue(bool& output, const TiXmlElement* parent, const std::string& name);
void addXmlElement(TiXmlElement* parent, const std::string& name, const std::string& value);
void addXmlElement(TiXmlElement* parent, const std::string& name, const int value);
void addXmlElement(TiXmlElement* parent, const std::string& name, const SyncConfiguration::Direction value);
void addXmlElement(TiXmlElement* parent, const std::string& name, const bool value);
class XmlConfigInput
{
public:
XmlConfigInput(const wxString& fileName, const xmlAccess::XmlType type);
~XmlConfigInput() {}
bool loadedSuccessfully()
{
return loadSuccess;
}
//read gui settings, all values retrieved are optional, so check for initial values! (== -1)
bool readXmlGuiConfig(xmlAccess::XmlGuiConfig& outputCfg);
//read batch settings, all values retrieved are optional
bool readXmlBatchConfig(xmlAccess::XmlBatchConfig& outputCfg);
//read global settings, valid for both GUI and batch mode, independent from configuration
bool readXmlGlobalSettings(xmlAccess::XmlGlobalSettings& outputCfg);
private:
//read basic FreefileSync settings (used by commandline and GUI), return true if ALL values have been retrieved successfully
bool readXmlMainConfig(MainConfiguration& mainCfg, std::vector<FolderPair>& directoryPairs);
TiXmlDocument doc;
bool loadSuccess;
};
class XmlConfigOutput
{
public:
XmlConfigOutput(const wxString& fileName, const xmlAccess::XmlType type);
~XmlConfigOutput() {}
bool writeToFile();
//write gui settings
bool writeXmlGuiConfig(const xmlAccess::XmlGuiConfig& outputCfg);
//write batch settings
bool writeXmlBatchConfig(const xmlAccess::XmlBatchConfig& outputCfg);
//write global settings
bool writeXmlGlobalSettings(const xmlAccess::XmlGlobalSettings& outputCfg);
private:
//write basic FreefileSync settings (used by commandline and GUI), return true if everything was written successfully
bool writeXmlMainConfig(const MainConfiguration& mainCfg, const std::vector<FolderPair>& directoryPairs);
TiXmlDocument doc;
const wxString& m_fileName;
};
xmlAccess::XmlType xmlAccess::getXmlType(const wxString& filename)
{
if (!wxFileExists(filename))
return XML_OTHER;
//workaround to get a FILE* from a unicode filename
wxFFile configFile(filename, wxT("rb"));
if (!configFile.IsOpened())
return XML_OTHER;
FILE* inputFile = configFile.fp();
TiXmlDocument doc;
if (!doc.LoadFile(inputFile)) //fails if inputFile is no proper XML
return XML_OTHER;
TiXmlElement* root = doc.RootElement();
if (!root || (root->ValueStr() != std::string("FreeFileSync"))) //check for FFS configuration xml
return XML_OTHER;
const char* cfgType = root->Attribute("XmlType");
if (!cfgType)
return XML_OTHER;
if (std::string(cfgType) == "BATCH")
return XML_BATCH_CONFIG;
else if (std::string(cfgType) == "GUI")
return XML_GUI_CONFIG;
else if (std::string(cfgType) == "GLOBAL")
return XML_GLOBAL_SETTINGS;
else
return XML_OTHER;
}
xmlAccess::XmlGuiConfig xmlAccess::readGuiConfig(const wxString& filename)
{
//load XML
if (!wxFileExists(filename))
throw FileError(Zstring(_("The file does not exist:")) + wxT(" \"") + filename.c_str() + wxT("\""));
XmlConfigInput inputFile(filename, XML_GUI_CONFIG);
XmlGuiConfig outputCfg;
if (!inputFile.loadedSuccessfully())
throw FileError(Zstring(_("Error reading file:")) + wxT(" \"") + filename.c_str() + wxT("\""));
if (!inputFile.readXmlGuiConfig(outputCfg)) //read GUI layout configuration
throw FileError(Zstring(_("Error parsing configuration file:")) + wxT(" \"") + filename.c_str() + wxT("\""));
return outputCfg;
}
xmlAccess::XmlBatchConfig xmlAccess::readBatchConfig(const wxString& filename)
{
//load XML
if (!wxFileExists(filename))
throw FileError(Zstring(_("The file does not exist:")) + wxT(" \"") + filename.c_str() + wxT("\""));
XmlConfigInput inputFile(filename, XML_BATCH_CONFIG);
XmlBatchConfig outputCfg;
if (!inputFile.loadedSuccessfully())
throw FileError(Zstring(_("Error reading file:")) + wxT(" \"") + filename.c_str() + wxT("\""));
if (!inputFile.readXmlBatchConfig(outputCfg))
throw FileError(Zstring(_("Error parsing configuration file:")) + wxT(" \"") + filename.c_str() + wxT("\""));
return outputCfg;
}
xmlAccess::XmlGlobalSettings xmlAccess::readGlobalSettings()
{
//load XML
if (!wxFileExists(FreeFileSync::GLOBAL_CONFIG_FILE))
throw FileError(Zstring(_("The file does not exist:")) + wxT(" \"") + FreeFileSync::GLOBAL_CONFIG_FILE.c_str() + wxT("\""));
XmlConfigInput inputFile(FreeFileSync::GLOBAL_CONFIG_FILE, XML_GLOBAL_SETTINGS);
XmlGlobalSettings outputCfg;
if (!inputFile.loadedSuccessfully())
throw FileError(Zstring(_("Error reading file:")) + wxT(" \"") + FreeFileSync::GLOBAL_CONFIG_FILE.c_str() + wxT("\""));
if (!inputFile.readXmlGlobalSettings(outputCfg))
throw FileError(Zstring(_("Error parsing configuration file:")) + wxT(" \"") + FreeFileSync::GLOBAL_CONFIG_FILE.c_str() + wxT("\""));
return outputCfg;
}
void xmlAccess::writeGuiConfig(const wxString& filename, const XmlGuiConfig& outputCfg)
{
XmlConfigOutput outputFile(filename, XML_GUI_CONFIG);
//populate and write XML tree
if ( !outputFile.writeXmlGuiConfig(outputCfg) || //add GUI layout configuration settings
!outputFile.writeToFile()) //save XML
throw FileError(Zstring(_("Error writing file:")) + wxT(" \"") + filename.c_str() + wxT("\""));
return;
}
void xmlAccess::writeBatchConfig(const wxString& filename, const XmlBatchConfig& outputCfg)
{
XmlConfigOutput outputFile(filename, XML_BATCH_CONFIG);
//populate and write XML tree
if ( !outputFile.writeXmlBatchConfig(outputCfg) || //add batch configuration settings
!outputFile.writeToFile()) //save XML
throw FileError(Zstring(_("Error writing file:")) + wxT(" \"") + filename.c_str() + wxT("\""));
return;
}
void xmlAccess::writeGlobalSettings(const XmlGlobalSettings& outputCfg)
{
XmlConfigOutput outputFile(FreeFileSync::GLOBAL_CONFIG_FILE, XML_GLOBAL_SETTINGS);
//populate and write XML tree
if ( !outputFile.writeXmlGlobalSettings(outputCfg) || //add GUI layout configuration settings
!outputFile.writeToFile()) //save XML
throw FileError(Zstring(_("Error writing file:")) + wxT(" \"") + FreeFileSync::GLOBAL_CONFIG_FILE.c_str() + wxT("\""));
return;
}
XmlConfigInput::XmlConfigInput(const wxString& fileName, const xmlAccess::XmlType type) :
loadSuccess(false)
{
if (!wxFileExists(fileName)) //avoid wxWidgets error message when wxFFile receives not existing file
return;
//workaround to get a FILE* from a unicode filename
wxFFile dummyFile(fileName, wxT("rb"));
if (dummyFile.IsOpened())
{
FILE* inputFile = dummyFile.fp();
TiXmlBase::SetCondenseWhiteSpace(false); //do not condense whitespace characters
if (doc.LoadFile(inputFile)) //load XML; fails if inputFile is no proper XML
{
TiXmlElement* root = doc.RootElement();
if (root && (root->ValueStr() == std::string("FreeFileSync"))) //check for FFS configuration xml
{
const char* cfgType = root->Attribute("XmlType");
if (cfgType)
{
if (type == xmlAccess::XML_GUI_CONFIG)
loadSuccess = std::string(cfgType) == "GUI";
else if (type == xmlAccess::XML_BATCH_CONFIG)
loadSuccess = std::string(cfgType) == "BATCH";
else if (type == xmlAccess::XML_GLOBAL_SETTINGS)
loadSuccess = std::string(cfgType) == "GLOBAL";
}
}
}
}
}
bool readXmlElementValue(std::string& output, const TiXmlElement* parent, const std::string& name)
{
if (parent)
{
const TiXmlElement* child = parent->FirstChildElement(name);
if (child)
{
const char* text = child->GetText();
if (text) //may be NULL!!
output = text;
else
output.clear();
return true;
}
}
return false;
}
bool readXmlElementValue(int& output, const TiXmlElement* parent, const std::string& name)
{
std::string temp;
if (readXmlElementValue(temp, parent, name))
{
output = globalFunctions::stringToInt(temp);
return true;
}
else
return false;
}
bool readXmlElementValue(CompareVariant& output, const TiXmlElement* parent, const std::string& name)
{
int dummy = 0;
if (readXmlElementValue(dummy, parent, name))
{
output = CompareVariant(dummy);
return true;
}
else
return false;
}
bool readXmlElementValue(SyncConfiguration::Direction& output, const TiXmlElement* parent, const std::string& name)
{
std::string dummy;
if (readXmlElementValue(dummy, parent, name))
{
if (dummy == "left")
output = SyncConfiguration::SYNC_DIR_LEFT;
else if (dummy == "right")
output = SyncConfiguration::SYNC_DIR_RIGHT;
else //treat all other input as "none"
output = SyncConfiguration::SYNC_DIR_NONE;
return true;
}
else
return false;
}
bool readXmlElementValue(bool& output, const TiXmlElement* parent, const std::string& name)
{
std::string dummy;
if (readXmlElementValue(dummy, parent, name))
{
output = (dummy == "true");
return true;
}
else
return false;
}
bool readXmlElementValue(xmlAccess::OnError& output, const TiXmlElement* parent, const std::string& name)
{
std::string dummy;
if (readXmlElementValue(dummy, parent, name))
{
if (dummy == "Ignore")
output = xmlAccess::ON_ERROR_IGNORE;
else if (dummy == "Exit")
output = xmlAccess::ON_ERROR_EXIT;
else //treat all other input as popup
output = xmlAccess::ON_ERROR_POPUP;
return true;
}
else
return false;
}
bool XmlConfigInput::readXmlMainConfig(MainConfiguration& mainCfg, std::vector<FolderPair>& directoryPairs)
{
TiXmlElement* root = doc.RootElement();
if (!root) return false;
TiXmlHandle hRoot(root);
TiXmlElement* cmpSettings = hRoot.FirstChild("MainConfig").FirstChild("Comparison").ToElement();
TiXmlElement* syncConfig = hRoot.FirstChild("MainConfig").FirstChild("Synchronization").FirstChild("Directions").ToElement();
TiXmlElement* miscSettings = hRoot.FirstChild("MainConfig").FirstChild("Miscellaneous").ToElement();
TiXmlElement* filter = TiXmlHandle(miscSettings).FirstChild("Filter").ToElement();
if (!cmpSettings || !syncConfig || !miscSettings || !filter)
return false;
std::string tempString;
//###########################################################
//read compare variant
if (!readXmlElementValue(mainCfg.compareVar, cmpSettings, "Variant")) return false;
//read folder pair(s)
TiXmlElement* folderPair = TiXmlHandle(cmpSettings).FirstChild("Folders").FirstChild("Pair").ToElement();
//read folder pairs
directoryPairs.clear();
while (folderPair)
{
FolderPair newPair;
if (!readXmlElementValue(tempString, folderPair, "Left")) return false;
newPair.leftDirectory = wxString::FromUTF8(tempString.c_str()).c_str();
if (!readXmlElementValue(tempString, folderPair, "Right")) return false;
newPair.rightDirectory = wxString::FromUTF8(tempString.c_str()).c_str();
directoryPairs.push_back(newPair);
folderPair = folderPair->NextSiblingElement();
}
//###########################################################
//read sync configuration
if (!readXmlElementValue(mainCfg.syncConfiguration.exLeftSideOnly, syncConfig, "LeftOnly")) return false;
if (!readXmlElementValue(mainCfg.syncConfiguration.exRightSideOnly, syncConfig, "RightOnly")) return false;
if (!readXmlElementValue(mainCfg.syncConfiguration.leftNewer, syncConfig, "LeftNewer")) return false;
if (!readXmlElementValue(mainCfg.syncConfiguration.rightNewer, syncConfig, "RightNewer")) return false;
if (!readXmlElementValue(mainCfg.syncConfiguration.different, syncConfig, "Different")) return false;
//###########################################################
//read filter settings
if (!readXmlElementValue(mainCfg.filterIsActive, filter, "Active")) return false;
if (!readXmlElementValue(tempString, filter, "Include")) return false;
mainCfg.includeFilter = wxString::FromUTF8(tempString.c_str());
if (!readXmlElementValue(tempString, filter, "Exclude")) return false;
mainCfg.excludeFilter = wxString::FromUTF8(tempString.c_str());
//###########################################################
//other
readXmlElementValue(mainCfg.useRecycleBin, miscSettings, "UseRecycler");
return true;
}
bool XmlConfigInput::readXmlGuiConfig(xmlAccess::XmlGuiConfig& outputCfg)
{
//read main config
if (!readXmlMainConfig(outputCfg.mainCfg, outputCfg.directoryPairs))
return false;
//read GUI specific config data
TiXmlElement* root = doc.RootElement();
if (!root) return false;
TiXmlHandle hRoot(root);
//read GUI layout
TiXmlElement* mainWindow = hRoot.FirstChild("GuiConfig").FirstChild("Windows").FirstChild("Main").ToElement();
if (mainWindow)
{
readXmlElementValue(outputCfg.hideFilteredElements, mainWindow, "HideFiltered");
}
TiXmlElement* guiConfig = hRoot.FirstChild("GuiConfig").ToElement();
if (guiConfig)
{
readXmlElementValue(outputCfg.ignoreErrors, guiConfig, "IgnoreErrors");
}
return true;
}
bool XmlConfigInput::readXmlBatchConfig(xmlAccess::XmlBatchConfig& outputCfg)
{
//read main config
if (!readXmlMainConfig(outputCfg.mainCfg, outputCfg.directoryPairs))
return false;
//read batch specific config
TiXmlElement* root = doc.RootElement();
if (!root) return false;
TiXmlHandle hRoot(root);
//read batch settings
TiXmlElement* batchConfig = hRoot.FirstChild("BatchConfig").ToElement();
if (batchConfig)
{
readXmlElementValue(outputCfg.silent, batchConfig, "Silent");
readXmlElementValue(outputCfg.handleError, batchConfig, "HandleError");
}
return true;
}
bool XmlConfigInput::readXmlGlobalSettings(xmlAccess::XmlGlobalSettings& outputCfg)
{
TiXmlElement* root = doc.RootElement();
if (!root) return false;
TiXmlHandle hRoot(root);
//read global settings
TiXmlElement* global = hRoot.FirstChild("Shared").ToElement();
if (global)
{
//program language
readXmlElementValue(outputCfg.shared.programLanguage, global, "Language");
//traverse into symbolic links (to folders)
readXmlElementValue(outputCfg.shared.traverseSymbolicLinks, global, "TraverseSymbolicLinks");
#ifdef FFS_WIN
//daylight saving time check
readXmlElementValue(outputCfg.shared.handleDstOnFat32, global, "HandleDaylightSavingTimeOnFAT");
#endif
}
TiXmlElement* warnings = hRoot.FirstChild("Shared").FirstChild("Warnings").ToElement();
if (warnings)
{
//folder dependency check
readXmlElementValue(outputCfg.shared.warningDependentFolders, warnings, "CheckForDependentFolders");
//significant difference check
readXmlElementValue(outputCfg.shared.warningSignificantDifference, warnings, "CheckForSignificantDifference");
}
//gui specific global settings (optional)
TiXmlElement* mainWindow = hRoot.FirstChild("Gui").FirstChild("Windows").FirstChild("Main").ToElement();
if (mainWindow)
{
//read application window size and position
readXmlElementValue(outputCfg.gui.widthNotMaximized, mainWindow, "Width");
readXmlElementValue(outputCfg.gui.heightNotMaximized, mainWindow, "Height");
readXmlElementValue(outputCfg.gui.posXNotMaximized, mainWindow, "PosX");
readXmlElementValue(outputCfg.gui.posYNotMaximized, mainWindow, "PosY");
readXmlElementValue(outputCfg.gui.isMaximized, mainWindow, "Maximized");
readXmlElementValue(outputCfg.gui.deleteOnBothSides, mainWindow, "ManualDeletionOnBothSides");
readXmlElementValue(outputCfg.gui.useRecyclerForManualDeletion, mainWindow, "ManualDeletionUseRecycler");
//###########################################################
//read column attributes
TiXmlElement* leftColumn = TiXmlHandle(mainWindow).FirstChild("LeftColumns").FirstChild("Column").ToElement();
unsigned int colType = 0;
while (leftColumn)
{
const char* visible = leftColumn->Attribute("Visible");
const char* position = leftColumn->Attribute("Position");
const char* width = leftColumn->Attribute("Width");
if (visible && position && width) //may be NULL!!
{
xmlAccess::ColumnAttrib newAttrib;
newAttrib.type = xmlAccess::ColumnTypes(colType);
newAttrib.visible = std::string(visible) != std::string("false");
newAttrib.position = globalFunctions::stringToInt(position);
newAttrib.width = globalFunctions::stringToInt(width);
outputCfg.gui.columnAttribLeft.push_back(newAttrib);
}
else
break;
leftColumn = leftColumn->NextSiblingElement();
++colType;
}
TiXmlElement* rightColumn = TiXmlHandle(mainWindow).FirstChild("RightColumns").FirstChild("Column").ToElement();
colType = 0;
while (rightColumn)
{
const char* visible = rightColumn->Attribute("Visible");
const char* position = rightColumn->Attribute("Position");
const char* width = rightColumn->Attribute("Width");
if (visible && position && width) //may be NULL!!
{
xmlAccess::ColumnAttrib newAttrib;
newAttrib.type = xmlAccess::ColumnTypes(colType);
newAttrib.visible = std::string(visible) != std::string("false");
newAttrib.position = globalFunctions::stringToInt(position);
newAttrib.width = globalFunctions::stringToInt(width);
outputCfg.gui.columnAttribRight.push_back(newAttrib);
}
else
break;
rightColumn = rightColumn->NextSiblingElement();
++colType;
}
}
TiXmlElement* gui = hRoot.FirstChild("Gui").ToElement();
if (gui)
{
//commandline for file manager integration
std::string tempString;
if (readXmlElementValue(tempString, gui, "FileManager"))
outputCfg.gui.commandLineFileManager = wxString::FromUTF8(tempString.c_str());
}
//load config file history
TiXmlElement* cfgHistory = hRoot.FirstChild("Gui").FirstChild("History").ToElement();
if (cfgHistory)
{
//load max. history size
const char* histSizeMax = cfgHistory->Attribute("MaximumSize");
if (histSizeMax) //may be NULL!
outputCfg.gui.cfgHistoryMaxItems = globalFunctions::stringToInt(histSizeMax);
//load history elements
TiXmlElement* cfgFile = TiXmlHandle(cfgHistory).FirstChild("File").ToElement();
while (cfgFile)
{
const char* fileName = cfgFile->GetText();
if (fileName) //may be NULL!!
outputCfg.gui.cfgFileHistory.push_back(wxString::FromUTF8(fileName));
else
break;
cfgFile = cfgFile->NextSiblingElement();
}
}
//batch specific global settings
TiXmlElement* batch = hRoot.FirstChild("Batch").ToElement();
if (!batch) return false;
// if (!readXmlElementValue(outputCfg.dummy, global, "Language")) return false;
return true;
}
XmlConfigOutput::XmlConfigOutput(const wxString& fileName, const xmlAccess::XmlType type) :
m_fileName(fileName)
{
TiXmlBase::SetCondenseWhiteSpace(false); //do not condense whitespace characters
TiXmlDeclaration* decl = new TiXmlDeclaration("1.0", "UTF-8", ""); //delete won't be necessary later; ownership passed to TiXmlDocument!
doc.LinkEndChild(decl);
TiXmlElement* root = new TiXmlElement("FreeFileSync");
if (type == xmlAccess::XML_GUI_CONFIG)
root->SetAttribute("XmlType", "GUI"); //xml configuration type
else if (type == xmlAccess::XML_BATCH_CONFIG)
root->SetAttribute("XmlType", "BATCH");
else if (type == xmlAccess::XML_GLOBAL_SETTINGS)
root->SetAttribute("XmlType", "GLOBAL");
else
assert(false);
doc.LinkEndChild(root);
}
bool XmlConfigOutput::writeToFile()
{
//workaround to get a FILE* from a unicode filename
wxFFile dummyFile(m_fileName, wxT("wb"));
if (!dummyFile.IsOpened())
return false;
FILE* outputFile = dummyFile.fp();
return doc.SaveFile(outputFile); //save XML
}
void addXmlElement(TiXmlElement* parent, const std::string& name, const std::string& value)
{
if (parent)
{
TiXmlElement* subElement = new TiXmlElement(name);
parent->LinkEndChild(subElement);
subElement->LinkEndChild(new TiXmlText(value));
}
}
void addXmlElement(TiXmlElement* parent, const std::string& name, const int value)
{
addXmlElement(parent, name, globalFunctions::numberToString(value));
}
void addXmlElement(TiXmlElement* parent, const std::string& name, const SyncConfiguration::Direction value)
{
if (value == SyncConfiguration::SYNC_DIR_LEFT)
addXmlElement(parent, name, std::string("left"));
else if (value == SyncConfiguration::SYNC_DIR_RIGHT)
addXmlElement(parent, name, std::string("right"));
else if (value == SyncConfiguration::SYNC_DIR_NONE)
addXmlElement(parent, name, std::string("none"));
else
assert(false);
}
void addXmlElement(TiXmlElement* parent, const std::string& name, const bool value)
{
if (value)
addXmlElement(parent, name, std::string("true"));
else
addXmlElement(parent, name, std::string("false"));
}
void addXmlElement(TiXmlElement* parent, const std::string& name, const xmlAccess::OnError value)
{
if (value == xmlAccess::ON_ERROR_IGNORE)
addXmlElement(parent, name, std::string("Ignore"));
else if (value == xmlAccess::ON_ERROR_EXIT)
addXmlElement(parent, name, std::string("Exit"));
else if (value == xmlAccess::ON_ERROR_POPUP)
addXmlElement(parent, name, std::string("Popup"));
else
assert(false);
}
bool XmlConfigOutput::writeXmlMainConfig(const MainConfiguration& mainCfg, const std::vector<FolderPair>& directoryPairs)
{
TiXmlElement* root = doc.RootElement();
if (!root) return false;
TiXmlElement* settings = new TiXmlElement("MainConfig");
root->LinkEndChild(settings);
//###########################################################
TiXmlElement* cmpSettings = new TiXmlElement("Comparison");
settings->LinkEndChild(cmpSettings);
//write compare algorithm
addXmlElement(cmpSettings, "Variant", mainCfg.compareVar);
//write folder pair(s)
TiXmlElement* folders = new TiXmlElement("Folders");
cmpSettings->LinkEndChild(folders);
//write folder pairs
for (std::vector<FolderPair>::const_iterator i = directoryPairs.begin(); i != directoryPairs.end(); ++i)
{
TiXmlElement* folderPair = new TiXmlElement("Pair");
folders->LinkEndChild(folderPair);
addXmlElement(folderPair, "Left", std::string(wxString(i->leftDirectory.c_str()).ToUTF8()));
addXmlElement(folderPair, "Right", std::string(wxString(i->rightDirectory.c_str()).ToUTF8()));
}
//###########################################################
TiXmlElement* syncSettings = new TiXmlElement("Synchronization");
settings->LinkEndChild(syncSettings);
//write sync configuration
TiXmlElement* syncConfig = new TiXmlElement("Directions");
syncSettings->LinkEndChild(syncConfig);
addXmlElement(syncConfig, "LeftOnly", mainCfg.syncConfiguration.exLeftSideOnly);
addXmlElement(syncConfig, "RightOnly", mainCfg.syncConfiguration.exRightSideOnly);
addXmlElement(syncConfig, "LeftNewer", mainCfg.syncConfiguration.leftNewer);
addXmlElement(syncConfig, "RightNewer", mainCfg.syncConfiguration.rightNewer);
addXmlElement(syncConfig, "Different", mainCfg.syncConfiguration.different);
//###########################################################
TiXmlElement* miscSettings = new TiXmlElement("Miscellaneous");
settings->LinkEndChild(miscSettings);
//write filter settings
TiXmlElement* filter = new TiXmlElement("Filter");
miscSettings->LinkEndChild(filter);
addXmlElement(filter, "Active", mainCfg.filterIsActive);
addXmlElement(filter, "Include", std::string((mainCfg.includeFilter).ToUTF8()));
addXmlElement(filter, "Exclude", std::string((mainCfg.excludeFilter).ToUTF8()));
//other
addXmlElement(miscSettings, "UseRecycler", mainCfg.useRecycleBin);
//###########################################################
return true;
}
bool XmlConfigOutput::writeXmlGuiConfig(const xmlAccess::XmlGuiConfig& outputCfg)
{
//write main config
if (!writeXmlMainConfig(outputCfg.mainCfg, outputCfg.directoryPairs))
return false;
//write GUI specific config
TiXmlElement* root = doc.RootElement();
if (!root) return false;
TiXmlElement* guiConfig = new TiXmlElement("GuiConfig");
root->LinkEndChild(guiConfig);
TiXmlElement* windows = new TiXmlElement("Windows");
guiConfig->LinkEndChild(windows);
TiXmlElement* mainWindow = new TiXmlElement("Main");
windows->LinkEndChild(mainWindow);
addXmlElement(mainWindow, "HideFiltered", outputCfg.hideFilteredElements);
addXmlElement(guiConfig, "IgnoreErrors", outputCfg.ignoreErrors);
return true;
}
bool XmlConfigOutput::writeXmlBatchConfig(const xmlAccess::XmlBatchConfig& outputCfg)
{
//write main config
if (!writeXmlMainConfig(outputCfg.mainCfg, outputCfg.directoryPairs))
return false;
//write GUI specific config
TiXmlElement* root = doc.RootElement();
if (!root) return false;
TiXmlElement* batchConfig = new TiXmlElement("BatchConfig");
root->LinkEndChild(batchConfig);
addXmlElement(batchConfig, "Silent", outputCfg.silent);
addXmlElement(batchConfig, "HandleError", outputCfg.handleError);
return true;
}
bool XmlConfigOutput::writeXmlGlobalSettings(const xmlAccess::XmlGlobalSettings& outputCfg)
{
TiXmlElement* root = doc.RootElement();
if (!root) return false;
//###################################################################
//write global settings
TiXmlElement* global = new TiXmlElement("Shared");
root->LinkEndChild(global);
//program language
addXmlElement(global, "Language", outputCfg.shared.programLanguage);
#ifdef FFS_WIN
//daylight saving time check
addXmlElement(global, "HandleDaylightSavingTimeOnFAT", outputCfg.shared.handleDstOnFat32);
#endif
//traverse into symbolic links (to folders)
addXmlElement(global, "TraverseSymbolicLinks", outputCfg.shared.traverseSymbolicLinks);
//warnings
TiXmlElement* warnings = new TiXmlElement("Warnings");
global->LinkEndChild(warnings);
//warning: dependent folders
addXmlElement(warnings, "CheckForDependentFolders", outputCfg.shared.warningDependentFolders);
//significant difference check
addXmlElement(warnings, "CheckForSignificantDifference", outputCfg.shared.warningSignificantDifference);
//###################################################################
//write global gui settings
TiXmlElement* gui = new TiXmlElement("Gui");
root->LinkEndChild(gui);
TiXmlElement* windows = new TiXmlElement("Windows");
gui->LinkEndChild(windows);
TiXmlElement* mainWindow = new TiXmlElement("Main");
windows->LinkEndChild(mainWindow);
//window size
addXmlElement(mainWindow, "Width", outputCfg.gui.widthNotMaximized);
addXmlElement(mainWindow, "Height", outputCfg.gui.heightNotMaximized);
//window position
addXmlElement(mainWindow, "PosX", outputCfg.gui.posXNotMaximized);
addXmlElement(mainWindow, "PosY", outputCfg.gui.posYNotMaximized);
addXmlElement(mainWindow, "Maximized", outputCfg.gui.isMaximized);
addXmlElement(mainWindow, "ManualDeletionOnBothSides", outputCfg.gui.deleteOnBothSides);
addXmlElement(mainWindow, "ManualDeletionUseRecycler", outputCfg.gui.useRecyclerForManualDeletion);
//write column attributes
TiXmlElement* leftColumn = new TiXmlElement("LeftColumns");
mainWindow->LinkEndChild(leftColumn);
xmlAccess::ColumnAttributes columnAtrribLeftCopy = outputCfg.gui.columnAttribLeft; //can't change const vector
sort(columnAtrribLeftCopy.begin(), columnAtrribLeftCopy.end(), xmlAccess::sortByType);
for (unsigned int i = 0; i < columnAtrribLeftCopy.size(); ++i)
{
TiXmlElement* subElement = new TiXmlElement("Column");
leftColumn->LinkEndChild(subElement);
const xmlAccess::ColumnAttrib& colAttrib = columnAtrribLeftCopy[i];
if (colAttrib.visible) subElement->SetAttribute("Visible", "true");
else subElement->SetAttribute("Visible", "false");
subElement->SetAttribute("Position", colAttrib.position);
subElement->SetAttribute("Width", colAttrib.width);
}
TiXmlElement* rightColumn = new TiXmlElement("RightColumns");
mainWindow->LinkEndChild(rightColumn);
xmlAccess::ColumnAttributes columnAtrribRightCopy = outputCfg.gui.columnAttribRight;
sort(columnAtrribRightCopy.begin(), columnAtrribRightCopy.end(), xmlAccess::sortByType);
for (unsigned int i = 0; i < columnAtrribRightCopy.size(); ++i)
{
TiXmlElement* subElement = new TiXmlElement("Column");
rightColumn->LinkEndChild(subElement);
const xmlAccess::ColumnAttrib& colAttrib = columnAtrribRightCopy[i];
if (colAttrib.visible) subElement->SetAttribute("Visible", "true");
else subElement->SetAttribute("Visible", "false");
subElement->SetAttribute("Position", colAttrib.position);
subElement->SetAttribute("Width", colAttrib.width);
}
//commandline for file manager integration
addXmlElement(gui, "FileManager", std::string((outputCfg.gui.commandLineFileManager).ToUTF8()));
//write config file history
TiXmlElement* cfgHistory = new TiXmlElement("History");
gui->LinkEndChild(cfgHistory);
cfgHistory->SetAttribute("MaximumSize", globalFunctions::numberToString(outputCfg.gui.cfgHistoryMaxItems));
for (unsigned int i = 0; i < outputCfg.gui.cfgFileHistory.size(); ++i)
addXmlElement(cfgHistory, "File", std::string(outputCfg.gui.cfgFileHistory[i].ToUTF8()));
//###################################################################
//write global batch settings
TiXmlElement* batch = new TiXmlElement("Batch");
root->LinkEndChild(batch);
return true;
}
int xmlAccess::retrieveSystemLanguage()
{
const int lang = wxLocale::GetSystemLanguage();
switch (lang) //map language dialects
{
//variants of wxLANGUAGE_GERMAN
case wxLANGUAGE_GERMAN_AUSTRIAN:
case wxLANGUAGE_GERMAN_BELGIUM:
case wxLANGUAGE_GERMAN_LIECHTENSTEIN:
case wxLANGUAGE_GERMAN_LUXEMBOURG:
case wxLANGUAGE_GERMAN_SWISS:
return wxLANGUAGE_GERMAN;
//variants of wxLANGUAGE_FRENCH
case wxLANGUAGE_FRENCH_BELGIAN:
case wxLANGUAGE_FRENCH_CANADIAN:
case wxLANGUAGE_FRENCH_LUXEMBOURG:
case wxLANGUAGE_FRENCH_MONACO:
case wxLANGUAGE_FRENCH_SWISS:
return wxLANGUAGE_FRENCH;
//variants of wxLANGUAGE_DUTCH
case wxLANGUAGE_DUTCH_BELGIAN:
return wxLANGUAGE_DUTCH;
//variants of wxLANGUAGE_ITALIAN
case wxLANGUAGE_ITALIAN_SWISS:
return wxLANGUAGE_ITALIAN;
//variants of wxLANGUAGE_CHINESE_SIMPLIFIED
case wxLANGUAGE_CHINESE:
case wxLANGUAGE_CHINESE_TRADITIONAL:
case wxLANGUAGE_CHINESE_HONGKONG:
case wxLANGUAGE_CHINESE_MACAU:
case wxLANGUAGE_CHINESE_SINGAPORE:
case wxLANGUAGE_CHINESE_TAIWAN:
return wxLANGUAGE_CHINESE_SIMPLIFIED;
//variants of wxLANGUAGE_PORTUGUESE
case wxLANGUAGE_PORTUGUESE_BRAZILIAN:
return wxLANGUAGE_PORTUGUESE;
//case wxLANGUAGE_JAPANESE:
//case wxLANGUAGE_POLISH:
default:
return lang;
}
}
void xmlAccess::XmlGlobalSettings::_Shared::resetWarnings()
{
warningDependentFolders = true;
warningSignificantDifference = true;
}
|