-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwxBupJobConfig.cpp
363 lines (346 loc) · 13.5 KB
/
wxBupJobConfig.cpp
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
/*-----------------------------------------------------------------
* Name: wxBupJobConfig.cpp
* Purpose:
* Author: A. Wiegert
*
* Copyright:
* Licence: wxWidgets licence
*---------------------------------------------------------------- */
/*----------------------------------------------------------------
* Standard wxWidgets headers
*---------------------------------------------------------------- */
// Note __VISUALC__ is defined by wxWidgets, not by MSVC IDE
// and thus won't be defined until some wxWidgets headers are included
#if defined( _MSC_VER )
# if defined ( _DEBUG )
// this statement NEEDS to go BEFORE all headers
# define _CRTDBG_MAP_ALLOC
# endif
#endif
#include "wxBupPreProcDefsh.h" // needs to be first
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
/* For all others, include the necessary headers
* (this file is usually all you need because it
* includes almost all "standard" wxWidgets headers) */
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
// ------------------------------------------------------------------
#include "wxBupFrameh.h" // needs to be first
#include <wx/config.h>
#include <wx/fileconf.h>
#include "wxBuph.h"
#include "wxBupConfh.h"
// ------------------------------------------------------------------
#if defined( _MSC_VER ) // from Autohotkey-hummer.ahk
// this block needs to go AFTER all headers
#include <crtdbg.h>
# ifdef _DEBUG
# define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
# define new DEBUG_NEW
# endif
#endif
// ------------------------------------------------------------------
// ------------------------------------------------------------------
// externals
// ------------------------------------------------------------------
#undef _USE_REGISTRY__ // use .INI file instead
// ------------------------------------------------------------------
/* Note: the entries in enum iniEnts define the sequence
* of data entries here and MUST be in corresponding sequence
* Note the number of initializers here must match the
* number of entries specified in the config.h file
*/
jobPrefs_t g_jobData =
{
CURRENT_JOB_PREF_VERSION,
{
{ _T("Job"), // path - INI heading [HEADING]
_T("Name"), // key key=false/0/1.23/some string
eString, // type of config entry
// default INI data
// values are only present up to last needed
// others are deemed to be set to 0/NULL/0.0
true, // bool
0, // long
_T("job"), // string
0.0, // float
// current value
// 0, 0, 0, _T(""), 0.0
},
{ _T("Source"), _T("Path"), eString, true, 0, _T("") },
{ _T("Destination"), _T("Root"), eString, true, 0, _T("") },
{ _T("Destination"), _T("DriveLetter"), eBool, true, },
{ _T("Destination"), _T("VolName"), eBool, false, },
{ _T("BagName"), _T("Base"), eString, true, 0, _T("bag") },
{ _T("Bag"), _T("Size"), eString, true, 0, _T("650 MB CD") },
{ _T("Exclusions"), _T("Files"), eString, true, 0, _T("wxBupLog.txt") },
{ _T("Exclusions"), _T("Dirs"), eString, true, 0, _T("") },
{ _T("JustMove"), _T("Files"), eString, true, 0, _T("") },
{ _T("CopyOnly"), _T("Wanted"), eBool, false },
{ _T("Interfering"), _T("Tasks"), eString, true, 0, _T("") },
{ _T("EmptyDirs"), _T("Include"), eBool, true, },
{ _T("Job"), _T("enabled"), eBool, true },
{ _T("SubDirs"), _T("Include"), eBool, true },
{ _T("Backup"), _T("Type"), eString, true, 0, _T("Full") },
{ _T("WhenDone"), _T("Verify"), eBool, true },
{ _T("Job"), _T("Comment"), eString, true, 0, _T("") },
#if defined( WANT_LAST_JOB_DATE )
{ _T("Last"), _T("Backup"), eString, true, 0, _T("unknown") },
#endif
{ _T("EMail"), _T("Wanted"), eBool, true },
{ _T("EMail"), _T("ErrorOnly"), eBool, true },
{ _T("EMail"), _T("AddLog"), eBool, true },
{ _T("EMail"), _T("SmtpUrl"), eString, 0, 0, _T("smtp.telus.net") },
{ _T("EMail"), _T("From"), eString, 0, 0, _T("[email protected]") },
{ _T("EMail"), _T("To"), eString, 0, 0, _T("[email protected]") },
{ _T("EMail"), _T("Subject"), eString, 0, 0, _T("wxBup-%d.%d.%d %s Report") },
// true => default to serial number, false => use volume name
{ _T("DestDrive"), _T("DefaultSerNo"), eBool, true },
// true => use serial number, false => use volume name
{ _T("DestDrive"), _T("UseDrvSerNo"), eBool, true },
// volume name, if any, not drive letter
{ _T("DestDrive"), _T("VolName"), eString, 0, 0, _T("unknown") },
{ _T("DestDrive"), _T("SerialNo"), eString, 0, 0, _T("unknown") },
}
};
//-----------------------------------------------------------------------------
/**
* Given a job file path name, fill the global job structure
* with the data from the file
*/
bool MyApp::RestoreJobConfig ( wxString wsJobName )
{
int x, y;
x = sizeof( g_jobData.data );
y = sizeof( entry );
// bombs here, no idea why
wxASSERT( sizeof(g_jobData.data)/sizeof( entry ) == IEJ_JOB_MAX );
// restore the control's values from the config
// NB: in this program, the config object is already created
// at this moment because we had called Get() from MyApp::OnInit().
// However, if you later change the code and don't create it
// before this line, it won't break anything - unlike if you
// manually create wxConfig object with Create() or in any
// other way (then you must be sure to create it before using it!).
wxString wsFileName;
wsFileName = wsJobName;
wxFileConfig *pConfig = new wxFileConfig(
m_wsAppName,
wxEmptyString, // vendor name
wsFileName, // local filename
_T(""), // global filename
wxCONFIG_USE_LOCAL_FILE /*| wxCONFIG_USE_RELATIVE_PATH*/ );
// wxConfigBase::Set( pConfig );
// see if we have an entry PrefVersion & whether it is recent enough
// presumably the code will be backwards commpatible, i.e.
// it can read old files and convert them to the new version
if( pConfig->Exists( _T("/PrefVersion") )
&& (pConfig->Read( _T("/PrefVersion"), &g_jobData.lPrefVer )
&& ( g_jobData.lPrefVer <= CURRENT_PREF_VERSION ) ) )
{
wxString wsT;
wsT.Printf( _T("Found version %ld, looking for %ld" ),
g_jobData.lPrefVer, CURRENT_JOB_PREF_VERSION );
wxASSERT_MSG( true, wsT );
}
if( pConfig->Read( _T("/PrefVersion"), &g_jobData.lPrefVer)
&& g_jobData.lPrefVer < CURRENT_PREF_VERSION )
{
int answer = wxMessageBox(
_T("The configuration file version is incompatible\n")
_T("with the current application.\n")
_T("OK to overwrite?"), _T("Confirm"), wxYES_NO );
if ( answer == wxYES )
{
#if 1
wxASSERT_MSG( false, _T("Something is wrong!! ;-)"));
#else
// this does not make any sense since we would recreate
// a app config file, nit a job config
pConfig->DeleteAll();
CreateConfig();
#endif
}
// simply carry on if user won't let us update the config file
// it WILL complain the next time as well, until ...
//else
// return;
}
pConfig->SetPath(_T("/"));
wxString wsKey;
bool bOK = false;
wxString wsS = _T("");
for( int i = 0; i < IEJ_JOB_MAX; i++ )
{
wxASSERT( !g_jobData.data[i].wsPathStr.IsEmpty()
&& !g_jobData.data[i].wsKeyStr.IsEmpty() );
wsKey.Printf( _T("/%s/%s"), g_jobData.data[i].wsPathStr,
g_jobData.data[i].wsKeyStr );
wxString wsDef((const wxChar*)g_jobData.data[i].dataDefault.wsVal );
switch( g_jobData.data[i].eType )
{
case eBool:
bOK = pConfig->Read( wsKey, &(g_jobData.data[i].dataCurrent.bVal),
g_jobData.data[i].dataDefault.bVal );
break;
case eLong:
bOK = pConfig->Read( wsKey, &(g_jobData.data[i].dataCurrent.lVal),
g_jobData.data[i].dataDefault.lVal );
break;
case eString:
bOK = pConfig->Read( wsKey, &g_jobData.data[i].dataCurrent.wsVal,
wsDef );
break;
case eFloat:
double f;
bOK = pConfig->Read( wsKey, &f, g_jobData.data[i].dataDefault.fVal );
if( bOK )
g_jobData.data[i].dataCurrent.fVal = f;
break;
}
}
// avoid memory leaks
delete pConfig;
return true;
}
//-----------------------------------------------------------------------------
/**
* We can save the data and close the file because the data will remain
* in the data structure.
*/
bool MyApp::SaveCloseJobConfig( wxString a_wsJobName )
{
wxFileConfig *pConfig = new wxFileConfig(
m_wsAppName,
wxEmptyString, // vendor name
a_wsJobName, // local filename
_T(""), // global filename
wxCONFIG_USE_LOCAL_FILE /*| wxCONFIG_USE_RELATIVE_PATH*/ );
wxConfigBase::Set( pConfig );
if ( pConfig == NULL )
return false;
pConfig->SetPath(_T("/"));
wxString wsKey;
for( int i = 0; i < IEJ_JOB_MAX; i++ )
{
wsKey.Printf( _T("%s/%s"), g_jobData.data[i].wsPathStr,
g_jobData.data[i].wsKeyStr );
switch( g_jobData.data[i].eType )
{
case eBool:
pConfig->Write( wsKey,
(bool)(g_jobData.data[i].dataCurrent.bVal) );
break;
case eLong:
pConfig->Write( wsKey,
(int)g_jobData.data[i].dataCurrent.lVal );
break;
case eString:
pConfig->Write( wsKey, g_jobData.data[i].dataCurrent.wsVal );
break;
case eFloat:
pConfig->Write( wsKey, (float)g_jobData.data[i].dataCurrent.fVal );
break;
}
}
pConfig->Flush();// needed to ensure data is written
// avoid memory leaks
delete pConfig;
return true;
}
// ------------------------------------------------------------------
/**
* Make a copy of the Config data structure. The copy is intended to
* be passed to a dialog which might change data. Using the copy
* will allow the user to save the data on exit or
* abandon the changes if he choses 'Cancel'
*/
void MyApp::MakeJobConfigCopy( jobPrefs_t& jobPrefsOld,
jobPrefs_t& jobPrefsNew )
{
jobPrefsNew.lPrefVer = jobPrefsOld.lPrefVer;
for( int i = 0; i < IEJ_JOB_MAX; i++ )
{
jobPrefsNew.data[i].wsPathStr = jobPrefsOld.data[i].wsPathStr;
jobPrefsNew.data[i].wsKeyStr = jobPrefsOld.data[i].wsKeyStr;
jobPrefsNew.data[i].eType = jobPrefsOld.data[i].eType;
switch( jobPrefsOld.data[i].eType )
{
case eBool:
jobPrefsNew.data[i].dataCurrent.bVal =
jobPrefsOld.data[i].dataCurrent.bVal;
break;
case eLong:
jobPrefsNew.data[i].dataCurrent.lVal =
jobPrefsOld.data[i].dataCurrent.lVal;
break;
case eString:
jobPrefsNew.data[i].dataCurrent.wsVal =
jobPrefsOld.data[i].dataCurrent.wsVal;
break;
case eFloat:
jobPrefsNew.data[i].dataCurrent.fVal =
jobPrefsOld.data[i].dataCurrent.fVal;
break;
}
}
}
// ------------------------------------------------------------------
/**
* Compare the old and new/edited data.
* Any differences => change, so return when the first one is detected.
*/
bool MyApp::JobCompareOldAndNew( jobPrefs_t& jobPrefsOld,
jobPrefs_t& jobPrefsNew )
{
wxString wsT;
jobPrefsNew.lPrefVer = jobPrefsOld.lPrefVer;
for( int i = 0; i < IEJ_JOB_MAX; i++ )
{
jobPrefsNew.data[i].wsPathStr = jobPrefsOld.data[i].wsPathStr;
jobPrefsNew.data[i].wsKeyStr = jobPrefsOld.data[i].wsKeyStr;
jobPrefsNew.data[i].eType = jobPrefsOld.data[i].eType;
switch( jobPrefsOld.data[i].eType )
{
case eBool:
if( jobPrefsNew.data[i].dataCurrent.bVal !=
jobPrefsOld.data[i].dataCurrent.bVal )
return false;
break;
case eLong:
if ( jobPrefsNew.data[i].dataCurrent.lVal !=
jobPrefsOld.data[i].dataCurrent.lVal )
return false;
break;
case eString:
wsT = jobPrefsNew.data[i].dataCurrent.wsVal;
// only use case-insensitive compare for path related strings
switch( i )
{
case IEJ_SOURCE_PATHS:
case IEJ_DESTN_ROOT_PATH:
if ( !wsT.MakeLower().IsSameAs(
jobPrefsOld.data[i].dataCurrent.wsVal.MakeLower() ) )
return false;
break;
default:
if ( !wsT.IsSameAs( jobPrefsOld.data[i].dataCurrent.wsVal ) )
return false;
break;
}
break;
case eFloat:
if ( jobPrefsNew.data[i].dataCurrent.fVal !=
jobPrefsOld.data[i].dataCurrent.fVal )
return false;
break;
}
}
return true;
}
// ------------------------------- eof ------------------------------