-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathbasicfunctions.cpp
More file actions
577 lines (547 loc) · 17.7 KB
/
basicfunctions.cpp
File metadata and controls
577 lines (547 loc) · 17.7 KB
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
/////////////////////////////////////////////////////////////////////////////////
// Author: Steven Lamerton
// Copyright: Copyright (C) 2007-2010 Steven Lamerton
// License: GNU GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
/////////////////////////////////////////////////////////////////////////////////
#include <wx/tokenzr.h>
#include <wx/variant.h>
#include <wx/fileconf.h>
#include <wx/stdpaths.h>
#include <wx/wfstream.h>
#include <wx/txtstrm.h>
#include <wx/dir.h>
#include <wx/intl.h>
#include <wx/cmdline.h>
#include <wx/fileconf.h>
#include <wx/msgdlg.h>
#include <boost/interprocess/ipc/message_queue.hpp>
#include <boost/bimap.hpp>
#include <boost/assign/list_of.hpp>
#include <boost/assign/list_inserter.hpp>
using namespace boost::interprocess;
#include "toucan.h"
#include "rules.h"
#include "settings.h"
#include "basicfunctions.h"
#include "forms/frmprogress.h"
#include "forms/frmpassword.h"
//ATTN : This needs clearing up into smaller files
static boost::bimap<wxString, wxString> languagemap;
void SetupLanguageMap(){
languagemap = boost::assign::list_of<boost::bimap<wxString, wxString>::relation>
("Copy", _("Copy"))
("Update", _("Update"))
("Mirror", _("Mirror"))
("Equalise", _("Equalise"))
("Move", _("Move"))
("Clean", _("Clean"))
("Complete", _("Complete"))
("Update", _("Update"))
("Differential", _("Differential"))
("Restore", _("Restore"))
("Encrypt", _("Encrypt"))
("Decrypt", _("Decrypt"))
("Icons and Text", _("Icons and Text"))
("Text", _("Text"))
("Sync", _("Sync"))
("Backup", _("Backup"))
("Secure", _("Secure"))
("Rules", _("Rules"))
("Variables", _("Variables"))
("Script", _("Script"))
("Settings", _("Settings"))
("Help", _("Help"))
("Simple", _("Simple"))
("Regex", _("Regex"))
("Size", _("Size"))
("Date", _("Date"))
("File Include", _("File Include"))
("File Exclude", _("File Exclude"))
("Folder Include", _("Folder Include"))
("Folder Exclude", _("Folder Exclude"))
("Absolute Folder Exclude", _("Absolute Folder Exclude"));
}
wxString ToLang(const wxString &en){
wxString lang;
try{
lang = languagemap.left.at(en);
}
catch(std::exception){
return en;
}
return lang;
}
wxString ToEn(const wxString &lang){
wxString en;
try{
en = languagemap.right.at(lang);
}
catch(std::exception){
return lang;
}
return en;
}
wxString ArrayStringToString(const wxArrayString &strings, const wxString &seperator){
wxString temp;
for(unsigned int i = 0; i < strings.GetCount(); i++){
temp = temp + seperator + strings.Item(i);
}
return temp;
}
wxArrayString StringToArrayString(const wxString &string, const wxString &seperator){
wxArrayString strings;
//Use a string tokeniser to seperate the given string
wxStringTokenizer tkz(string, seperator, wxTOKEN_STRTOK);
while(tkz.HasMoreTokens()){
strings.Add(tkz.GetNextToken());
}
return strings;
}
void OutputProgress(const wxString &message, OutputType type){
std::string out = message.ToStdString();
try{
message_queue mq(open_only, "progress");
while(!mq.try_send(out.data(), out.size(), type))
{
wxYield();
}
}
catch(std::exception &ex){
wxLogError("%s", ex.what());
}
}
wxArrayString GetJobs(Jobs::Type type){
bool ok;
wxString value, inputtype;
long dummy;
wxArrayString jobs;
ok = wxGetApp().m_Jobs_Config->GetFirstGroup(value, dummy);
while(ok){
inputtype = wxGetApp().m_Jobs_Config->Read(value + "/Type");
if((type == Jobs::Sync && inputtype == "Sync" && value != "SyncRemember")
||(type == Jobs::Backup && inputtype == "Backup" && value != "BackupRemember")
||(type == Jobs::Secure && inputtype == "Secure" && value != "SecureRemember")
||(type == Jobs::All))
jobs.push_back(value);
ok = wxGetApp().m_Jobs_Config->GetNextGroup(value, dummy);
}
return jobs;
}
wxArrayString GetVariables(bool builtin = false){
bool cont;
wxString value;
long dummy;
wxArrayString variables;
//Iterate through all of the groups
wxFileConfig config("", "", Locations::GetSettingsPath() + "variables.ini");
cont = config.GetFirstGroup(value, dummy);
while(cont){
variables.Add(value);
cont = config.GetNextGroup(value, dummy);
}
if(builtin){
variables.Add("date");
variables.Add("time");
variables.Add("docs");
variables.Add("drive");
variables.Add("volume");
variables.Add("label");
variables.Add("year");
variables.Add("month");
variables.Add("monthname");
variables.Add("monthshortname");
variables.Add("day");
variables.Add("dayname");
variables.Add("dayshortname");
variables.Add("hour");
variables.Add("minute");
variables.Add("dayofweek");
variables.Add("weekofyear");
variables.Add("username");
}
return variables;
}
wxArrayString GetRules(){
wxArrayString rules;
wxString path = wxGetApp().GetSettingsPath() + "rules";
wxDir dir(path);
if(!dir.IsOpened()){
return rules;
}
wxString filename;
bool valid = dir.GetFirst(&filename);
if(valid){
do{
//We have a file
if(!wxDirExists(path + filename)){
rules.Add(filename.BeforeFirst('.'));
}
}
while(dir.GetNext(&filename));
}
return rules;
}
wxArrayString GetScripts(){
if(!wxDirExists(wxGetApp().GetSettingsPath() + "scripts" + wxFILE_SEP_PATH)){
wxMkdir(wxGetApp().GetSettingsPath() + "scripts" + wxFILE_SEP_PATH);
}
wxArrayString scripts;
wxString filename;
wxDir dir(wxGetApp().GetSettingsPath() + "scripts" + wxFILE_SEP_PATH);
if(dir.GetFirst(&filename)){
do{
wxFileName fname(filename);
if(!fname.IsDir() && fname.GetExt() == "lua"){
scripts.Add(fname.GetName());
}
}
while(dir.GetNext(&filename));
}
return scripts;
}
bool UpdateJobs(){
long version;
//Update this when updating Job format version
const long cur_version = 302;
wxFileConfig *config = wxGetApp().m_Jobs_Config;
if(!wxFileExists(wxGetApp().GetSettingsPath() + wxT("Jobs.ini"))){
if(!wxGetApp().IsReadOnly()){
config->Write(wxT("General/Version"), cur_version);
config->Flush();
return true;
}
else{
return false;
}
}
config->Read(wxT("General/Version"), &version, 1);
//Return if we are up to date
if(version == cur_version){
return true;
}
if(wxGetApp().IsReadOnly()){
wxMessageBox(_("Please run Toucan from a device that allows writes so it can update itself"), _("Error"), wxICON_ERROR|wxOK);
return false;
}
//Back up the existing file
if(wxFileExists(wxGetApp().GetSettingsPath() + wxT("Jobs.ini"))){
wxCopyFile(wxGetApp().GetSettingsPath() + wxT("Jobs.ini"), wxGetApp().GetSettingsPath() + wxT("Jobs.old"), true);
}
//We no longer support upgrading such old configs
if(version < 200){
wxMessageBox(_("Upgrading to this version of Toucan is not supported"), _("Error"), wxICON_ERROR|wxOK);
return false;
}
if(version == 200){
bool blCont;
wxString strValue;
long dummy;
//Iterate through all of the groups
blCont = config->GetFirstGroup(strValue, dummy);
while (blCont){
if(config->Read(strValue + wxT("/Type")) == wxT("Backup")){
wxString strTemp;
strTemp = config->Read(strValue + wxT("/Locations"));
strTemp.Replace(wxT("#"), wxT("|"));
config->Write(strValue + wxT("/Locations"), strTemp);
config->Flush();
}
else if(config->Read(strValue + wxT("/Type")) == wxT("Secure")){
wxString strTemp;
strTemp = config->Read(strValue + wxT("/Locations"));
strTemp.Replace(wxT("#"), wxT("|"));
config->Write(strValue + wxT("/Locations"), strTemp);
config->Flush();
}
blCont = config->GetNextGroup(strValue, dummy);
}
config->Flush();
version = 202;
}
if(version == 202){
bool blCont;
wxString strValue;
long dummy;
//Iterate through all of the groups
blCont = config->GetFirstGroup(strValue, dummy);
while (blCont){
if(config->Read(strValue + wxT("/Type")) == wxT("Sync")){
wxString strTemp;
strTemp = config->Read(strValue + wxT("/Function"));
if(strTemp == _("Mirror (Copy)") || strTemp == _("Mirror (Update)")){
strTemp = _("Mirror");
}
config->Write(strValue + wxT("/Function"), strTemp);
}
blCont = config->GetNextGroup(strValue, dummy);
}
version = 204;
}
if(version == 204){
wxString value;
long dummy;
bool exists = config->GetFirstGroup(value, dummy);
while(exists){
//All of the functions need to use english only
config->Write(value + wxT("/Function"), ToEn(config->Read(value + wxT("/Function"))));
exists = config->GetNextGroup(value, dummy);
}
version = 213;
}
if(version == 213){
wxString value;
long dummy;
bool exists = config->GetFirstGroup(value, dummy);
while(exists){
if(config->Read(value + wxT("/Type")) == wxT("Sync")){
wxString temp = config->Read(value + wxT("/Function"));
if(temp == _("Update")){
config->Write(value + wxT("/Function"), _("Copy"));
config->Write(value + wxT("/CheckTime"), true);
}
else if(temp == _("Copy") || temp == _("Mirror") || temp == _("Equalise")
|| temp == _("Clean") || temp == _("Move")){
config->Write(value + wxT("/CheckSize"), false);
config->Write(value + wxT("/CheckTime"), false);
config->Write(value + wxT("/CheckShort"), false);
config->Write(value + wxT("/CheckFull"), true);
}
}
exists = config->GetNextGroup(value, dummy);
}
version = 300;
}
if(version == 300){
wxString value;
long dummy;
bool exists = config->GetFirstGroup(value, dummy);
while(exists){
if(config->Read(value + wxT("/Type")) == wxT("Sync")){
if(!config->Read("CheckSize")){
config->Write(value + wxT("/CheckSize"), false);
}
if(!config->Read("CheckTime")){
config->Write(value + wxT("/CheckTime"), false);
}
if(!config->Read("CheckShort")){
config->Write(value + wxT("/CheckShort"), false);
}
if(!config->Read("CheckFull")){
config->Write(value + wxT("/CheckFull"), false);
}
if(!config->Read("Recycle")){
config->Write(value + wxT("/Recycle"), false);
}
if(!config->Read("PreviewChanges")){
config->Write(value + wxT("/PreviewChanges"), false);
}
}
else if(config->Read(value + wxT("/Type")) == wxT("Backup")){
if(!config->Read("Test")){
config->Write(value + wxT("/Test"), false);
}
if(!config->Read("Solid")){
config->Write(value + wxT("/Solid"), false);
}
}
exists = config->GetNextGroup(value, dummy);
}
version = 301;
}
if(version == 301){
wxString value;
long dummy;
bool exists = config->GetFirstGroup(value, dummy);
while(exists){
if(config->Read(value + wxT("/Type")) == wxT("Sync")){
if(!config->Read("NoSkipped")){
config->Write(value + wxT("/NoSkipped"), false);
}
}
exists = config->GetNextGroup(value, dummy);
}
version = 302;
}
config->Write(wxT("General/Version"), cur_version);
config->Flush();
return true;
}
bool UpdateRules(){
long version;
wxFileConfig config("", "", Locations::GetSettingsPath() + "rules.ini");
if(!wxFileExists(wxGetApp().GetSettingsPath() + wxT("Rules.ini"))){
return true;
}
config.Read(wxT("General/Version"), &version, 1);
//Return if we are up to date
if(version == 310){
return true;
}
if(wxGetApp().IsReadOnly()){
wxMessageBox(_("Please run Toucan from a device that allows writes so it can update itself"), _("Error"), wxICON_ERROR|wxOK);
return false;
}
//Back up the existing file
if(wxFileExists(wxGetApp().GetSettingsPath() + wxT("Rules.ini"))){
wxCopyFile(wxGetApp().GetSettingsPath() + wxT("Rules.ini"), wxGetApp().GetSettingsPath() + wxT("Rules.old"), true);
}
//We no longer support upgrading such old configs
if(version < 200){
wxMessageBox(_("Upgrading to this version of Toucan is not supported"), _("Error"), wxICON_ERROR|wxOK);
return false;
}
if(version == 300){
bool cont;
wxString value;
long dummy;
//Iterate through all of the groups
cont = config.GetFirstGroup(value, dummy);
while(cont ){
if(value == "General"){
cont = config.GetNextGroup(value, dummy);
continue;
}
RuleSet rules(value);
wxArrayString filestoinclude = StringToArrayString(config.Read(value + "/FilesToInclude"), "|");
for(unsigned int i = 0; i < filestoinclude.Count(); i++){
RuleType type;
if(filestoinclude.Item(i).Left(1) == "*")
type = Regex;
else if(filestoinclude.Item(i).Left(1) == "<" || filestoinclude.Item(i).Left(1) == "<" && filestoinclude.Item(i).Right(1) == "B")
type = Size;
else if(filestoinclude.Item(i).Left(1) == "<" || filestoinclude.Item(i).Left(1) == "<")
type = Date;
else
type = Simple;
Rule rule(filestoinclude.Item(i), FileInclude, type);
rules.Add(rule);
}
wxArrayString filestoexclude = StringToArrayString(config.Read(value + "/FilesToExclude"), "|");
for(unsigned int i = 0; i < filestoexclude.Count(); i++){
RuleType type;
if(filestoexclude.Item(i).Left(1) == "*")
type = Regex;
else if(filestoexclude.Item(i).Left(1) == "<" || filestoexclude.Item(i).Left(1) == "<" && filestoexclude.Item(i).Right(1) == "B")
type = Size;
else if(filestoexclude.Item(i).Left(1) == "<" || filestoexclude.Item(i).Left(1) == "<")
type = Date;
else
type = Simple;
Rule rule(filestoexclude.Item(i), FileExclude, type);
rules.Add(rule);
}
wxArrayString folderstoexclude = StringToArrayString(config.Read(value + "/FoldersToExclude"), "|");
for(unsigned int i = 0; i < folderstoexclude.Count(); i++){
RuleType type;
if(folderstoexclude.Item(i).Left(1) == "*")
type = Regex;
else if(folderstoexclude.Item(i).Left(1) == "<" || folderstoexclude.Item(i).Left(1) == "<" && folderstoexclude.Item(i).Right(1) == "B")
type = Size;
else if(folderstoexclude.Item(i).Left(1) == "<" || folderstoexclude.Item(i).Left(1) == "<")
type = Date;
else
type = Simple;
Rule rule(folderstoexclude.Item(i), FolderExclude, type);
rules.Add(rule);
}
rules.TransferToFile();
cont = config.GetNextGroup(value, dummy);
}
version = 310;
}
config.Write(wxT("General/Version"), 310);
return true;
}
bool UpdateScripts(){
long version;
wxFileConfig *config = wxGetApp().m_Scripts_Config;
if(!wxFileExists(wxGetApp().GetSettingsPath() + wxT("Scripts.ini"))){
if(!wxGetApp().IsReadOnly()){
config->Write(wxT("General/Version"), 300);
config->Flush();
return true;
}
else{
return false;
}
}
config->Read(wxT("General/Version"), &version, 1);
//Return if we are up to date
if(version == 300){
return true;
}
if(wxGetApp().IsReadOnly()){
wxMessageBox(_("Please run Toucan from a device that allows writes so it can update itself"), _("Error"), wxICON_ERROR|wxOK);
return false;
}
//Back up the existing file
if(wxFileExists(wxGetApp().GetSettingsPath() + wxT("Scripts.ini"))){
wxCopyFile(wxGetApp().GetSettingsPath() + wxT("Scripts.ini"), wxGetApp().GetSettingsPath() + wxT("Jobs.old"), true);
}
//We no longer support upgrading such old configs
if(version < 200){
wxMessageBox(_("Upgrading to this version of Toucan is not supported"), _("Error"), wxICON_ERROR|wxOK);
return false;
}
config->Write(wxT("General/Version"), 300);
config->Flush();
return true;
}
bool UpdateSettings(){
long version;
wxFileConfig *config = new wxFileConfig(wxT(""), wxT(""), wxGetApp().GetSettingsPath() + wxT("Settings.ini"));
if(!wxFileExists(wxGetApp().GetSettingsPath() + wxT("Settings.ini"))){
if(!wxGetApp().IsReadOnly()){
config->Write(wxT("General/Version"), 300);
config->Flush();
return true;
}
else{
return false;
}
}
config->Read(wxT("General/Version"), &version, 300);
//Return if we are up to date
if(version == 300){
delete config;
return true;
}
if(wxGetApp().IsReadOnly()){
wxMessageBox(_("Please run Toucan from a device that allows writes so it can update itself"), _("Error"), wxICON_ERROR|wxOK);
delete config;
return false;
}
//Back up the existing file
if(wxFileExists(wxGetApp().GetSettingsPath() + wxT("Settings.ini"))){
wxCopyFile(wxGetApp().GetSettingsPath() + wxT("Settings.ini"), wxGetApp().GetSettingsPath() + wxT("Settings.old"), true);
}
if(version == 1){
//All of the functions need to use english only
config->Write(wxT("General/Tabs"), ToEn(config->Read(wxT("General/Tabs"))));
config->Write(wxT("General/Position"), ToEn(config->Read(wxT("General/Position"))));
config->Flush();
}
config->Write(wxT("General/Version"), 300);
config->Flush();
delete config;
return true;
}
//Used by for_each in test.h
void makedir(const wxString &path){
wxMkdir(path);
}
//Used by for_each in test.h
void createfiles(const wxString &path){
wxTextFile file;
file.Create(path + wxFILE_SEP_PATH + "file1");
file.Create(path + wxFILE_SEP_PATH + "file2");
}
//Used by for_each in test.h
void deletedir(const wxString &path){
wxRmDir(path);
}
//Used by for_each in test.h
void deletefiles(const wxString &path){
wxRemoveFile(path + wxFILE_SEP_PATH + "file1");
wxRemoveFile(path + wxFILE_SEP_PATH + "file2");
}