-
Notifications
You must be signed in to change notification settings - Fork 1
/
config_param.h
637 lines (610 loc) · 17.2 KB
/
config_param.h
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
#ifndef CONFIG_PARAM_H
#define CONFIG_PARAM_H
#include <string>
#include <list>
#include <map>
#include "simpleini/SimpleIni.h"
#include "sniff.h"
#include "tools.h"
using namespace std;
class cConfigItem {
public:
struct sMapValue {
sMapValue(string str, int value) {
this->str = str;
this->value = value;
}
string str;
int value;
};
enum eTypeLevel {
levelNormal,
levelAdvanced,
levelExpert,
levelObsolete
};
public:
cConfigItem(const char *name);
virtual ~cConfigItem() {}
cConfigItem *addAlias(const char *name_alias);
cConfigItem *setDefaultValueStr(const char *defaultValueStr);
cConfigItem *setNaDefaultValueStr();
cConfigItem *setMinor();
cConfigItem *setMinorGroupIfNotSet();
cConfigItem *setReadOnly();
cConfigItem *setDisableIf(const char *disableIf);
cConfigItem *setAlwaysShow();
void setConfigFileSection(const char *config_file_section);
cConfigItem *addValue(const char *str, int value);
cConfigItem *addValues(const char *str_values);
cConfigItem *addStringItem(const char *str);
cConfigItem *addStringItems(const char *str_values);
cConfigItem *setSubtype(const char *subtype);
cConfigItem *setDescription(const char *description);
cConfigItem *setHelp(const char *help);
virtual string getValueStr(bool /*configFile*/ = false) { return(""); }
virtual int64_t getValueInt() { return(0); }
virtual list<string> getValueListStr() { list<string> l; l.push_back(getValueStr()); return(l); }
virtual string normalizeStringValueForCmp(string value) { return(value); }
virtual string normalizeStringValuesForCmp(list<string> value) { return(""); }
virtual bool enable_normalizeStringValuesForCmp() { return(false); }
virtual bool enableMultiValues() { return(false); }
protected:
virtual bool setParamFromConfigFile(CSimpleIniA *ini) = 0;
virtual bool setParamFromValueStr(string value_str) = 0;
virtual bool setParamFromValuesStr(vector<string> /*list_value_str*/) { return(false); }
string getValueFromConfigFile(CSimpleIniA *ini);
vector<string> getValuesFromConfigFile(CSimpleIniA *ini);
bool getValueFromMapValues(const char *str_value, int *rslt_value);
string getStringFromMapValues(int value);
void init();
virtual void initParamPointers() {}
virtual void initOther() {}
virtual void initVirtParam() {}
virtual void initBeforeSet() {}
virtual string getTypeName() = 0;
virtual list<sMapValue> getMenuItems();
void addItemToMenuItems(list<sMapValue> *menu, sMapValue menuItem);
string getJson();
void setDefaultValue();
void clearToDefaultValue();
protected:
string config_name;
list<string> config_name_alias;
string config_file_section;
eTypeLevel level;
string group_name;
string subgroup_name;
string subtype;
string description;
string help;
class cConfig *config;
list<sMapValue> mapValues;
bool set;
bool set_in_config;
bool set_in_db;
bool set_in_json;
string value_in_config;
string value_in_db;
string value_in_json;
string defaultValueStr;
bool defaultValueStr_set;
bool naDefaultValueStr;
bool minor;
bool minorGroupIfNotSet;
bool readOnly;
string disableIf;
bool alwaysShow;
friend class cConfig;
};
class cConfigItem_yesno : public cConfigItem {
public:
cConfigItem_yesno(const char *name, bool *param);
cConfigItem_yesno(const char *name, int *param = NULL);
cConfigItem_yesno *disableYes() {
disable_yes = true;
return(this);
}
cConfigItem_yesno *disableNo() {
disable_no = true;
return(this);
}
cConfigItem_yesno *setNeg() {
neg = true;
return(this);
}
int getValue();
string getValueStr(bool configFile = false);
int64_t getValueInt() { return(getValue()); }
string normalizeStringValueForCmp(string value);
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
void initParamPointers() {
param_bool = NULL;
param_int = NULL;
}
void initOther() {
disable_yes = false;
disable_no = false;
neg = false;
}
void initVirtParam() {
param_virt = 0;
}
string getTypeName() {
return("yesno");
}
list<sMapValue> getMenuItems();
protected:
bool *param_bool;
int *param_int;
int param_virt;
bool disable_yes;
bool disable_no;
bool neg;
};
class cConfigItem_integer : public cConfigItem {
public:
cConfigItem_integer(const char *name, int *param);
cConfigItem_integer(const char *name, unsigned int *param);
cConfigItem_integer(const char *name, uint64_t *param);
cConfigItem_integer(const char *name, int64_t *param = NULL);
cConfigItem_integer *setMaximum(int maximum) {
this->maximum = maximum;
return(this);
}
cConfigItem_integer *setMinimum(int minimum) {
this->minimum = minimum;
return(this);
}
cConfigItem_integer *setIfZeroOrNegative(int ifZeroOrNegative) {
this->ifZeroOrNegative = ifZeroOrNegative;
return(this);
}
cConfigItem_integer *setMultiple(double multiple) {
this->multiple = multiple;
return(this);
}
cConfigItem_integer *setYes(int yesValue = 1) {
this->yesValue = yesValue;
return(this);
}
cConfigItem_integer *setMenuValue() {
this->menuValue = true;
return(this);
}
cConfigItem_integer *setOnlyMenu() {
this->onlyMenu = true;
return(this);
}
int64_t getValue();
string getValueStr(bool configFile = false);
int64_t getValueInt() { return(getValue()); }
string normalizeStringValueForCmp(string value);
int getMaximum() {
return(maximum);
}
int getMinimum() {
return(minimum);
}
bool isMenuValue() {
return(menuValue);
}
bool isOnlyMenu() {
return(onlyMenu);
}
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
void initParamPointers() {
param_int = NULL;
param_uint = NULL;
param_int64 = NULL;
param_uint64 = NULL;
}
void initOther() {
maximum = 0;
minimum = 0;
ifZeroOrNegative = 0;
multiple = 0;
yesValue = 0;
menuValue = false;
onlyMenu = false;
}
void initVirtParam() {
param_virt = 0;
}
string getTypeName() {
return("integer");
}
protected:
int *param_int;
unsigned int *param_uint;
int64_t *param_int64;
uint64_t *param_uint64;
int64_t param_virt;
int maximum;
int minimum;
int ifZeroOrNegative;
double multiple;
int yesValue;
bool menuValue;
bool onlyMenu;
};
class cConfigItem_float : public cConfigItem {
public:
cConfigItem_float(const char *name, float *param);
cConfigItem_float(const char *name, double *param);
double getValue();
string getValueStr(bool configFile = false);
string normalizeStringValueForCmp(string value);
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
void initParamPointers() {
param_float = NULL;
param_double = NULL;
}
string getTypeName() {
return("float");
}
protected:
float *param_float;
double *param_double;
};
class cConfigItem_string : public cConfigItem {
public:
cConfigItem_string(const char *name, string *param = NULL);
cConfigItem_string(const char *name, char *param, int length);
cConfigItem_string(const char *name, vector<string> *param);
cConfigItem_string *setPrefix(const char *prefix) {
this->prefix = prefix;
return(this);
}
cConfigItem_string *setSuffix(const char *suffix) {
this->suffix = suffix;
return(this);
}
cConfigItem_string *setPrefixSuffix(const char *prefix, const char *suffix) {
this->prefix = prefix;
this->suffix = suffix;
return(this);
}
cConfigItem_string *setExplodeSeparator(const char *explodeSeparator) {
this->explodeSeparator = explodeSeparator;
return(this);
}
cConfigItem_string *setPassword() {
this->password = true;
return(this);
}
string getValue();
string getValueStr(bool configFile = false);
list<string> getValueListStr();
string normalizeStringValueForCmp(string value);
bool enableMultiValues();
bool isPassword() {
return(password);
}
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
bool setParamFromValuesStr(vector<string> list_values_str);
void initBeforeSet();
void initParamPointers() {
param_str = NULL;
param_strchar = NULL;
param_strchar_length = 0;
param_vect_str = NULL;
}
void initOther() {
prefix = "";
suffix = "";
explodeSeparator = ";";
password = false;
}
void initVirtParam() {
param_virt = "";
}
string getTypeName() {
return(param_vect_str ? "string_list" : "string");
}
protected:
string *param_str;
char *param_strchar;
int param_strchar_length;
string param_virt;
vector<string> *param_vect_str;
string prefix;
string suffix;
string explodeSeparator;
bool password;
};
class cConfigItem_hour_interval : public cConfigItem {
public:
cConfigItem_hour_interval(const char *name, int *from, int *to);
string getValueStr(bool configFile = false);
string normalizeStringValueForCmp(string value);
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
void initParamPointers() {
param_from = NULL;
param_to = NULL;
}
string getTypeName() {
return("hour_interval");
}
protected:
int *param_from;
int *param_to;
};
class cConfigItem_ports : public cConfigItem {
public:
cConfigItem_ports(const char* name, char *port_matrix);
string getValueStr(bool configFile = false);
list<string> getValueListStr();
string normalizeStringValueForCmp(string value);
string normalizeStringValuesForCmp(list<string> values);
bool enable_normalizeStringValuesForCmp() { return(true); }
bool enableMultiValues() { return(true); }
static unsigned setPortMartix(const char *port_str, char *port_matrix, unsigned port_max = 65535);
static string getPortString(char *port_matrix, unsigned port_max = 65535);
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
bool setParamFromValuesStr(vector<string> list_value_str);
void initParamPointers() {
param_port_matrix = NULL;
}
string getTypeName() {
return("ports");
}
protected:
char *param_port_matrix;
unsigned port_max;
};
class cConfigItem_hosts : public cConfigItem {
public:
cConfigItem_hosts(const char* name, vector<vmIP> *adresses, vector<vmIPmask> *nets);
string getValueStr(bool configFile = false);
list<string> getValueListStr();
bool enableMultiValues() { return(true); }
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
bool setParamFromValuesStr(vector<string> list_value_str);
void initBeforeSet();
void initParamPointers() {
param_adresses = NULL;
param_nets = NULL;
}
string getTypeName() {
return("hosts");
}
protected:
vector<vmIP> *param_adresses;
vector<vmIPmask> *param_nets;
};
class cConfigItem_ip : public cConfigItem {
public:
cConfigItem_ip(const char* name, vmIP *param);
vmIP getValue();
string getValueStr(bool configFile = false);
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
void initParamPointers() {
param_ip = NULL;
}
string getTypeName() {
return("ip");
}
protected:
vmIP *param_ip;
};
class cConfigItem_ip_port : public cConfigItem {
public:
cConfigItem_ip_port(const char* name, ip_port *param);
ip_port getValue();
string getValueStr(bool configFile = false);
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
void initParamPointers() {
param_ip_port = NULL;
}
string getTypeName() {
return("ip_port");
}
protected:
ip_port *param_ip_port;
};
class cConfigItem_ip_ports : public cConfigItem {
public:
cConfigItem_ip_ports(const char* name, vector<vmIPport> *param);
string getValueStr(bool configFile = false);
list<string> getValueListStr();
bool enableMultiValues() { return(true); }
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
bool setParamFromValuesStr(vector<string> list_value_str);
void initBeforeSet();
void initParamPointers() {
param_ip_ports = NULL;
}
string getTypeName() {
return("ip_port_list");
}
protected:
vector<vmIPport> *param_ip_ports;
};
class cConfigItem_ip_port_str_map : public cConfigItem {
public:
cConfigItem_ip_port_str_map(const char* name, map<vmIPport, string> *ip_port_string_map);
string getValueStr(bool configFile = false);
list<string> getValueListStr();
string normalizeStringValueForCmp(string value);
bool enableMultiValues() { return(true); }
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
bool setParamFromValuesStr(vector<string> list_value_str);
void initBeforeSet();
void initParamPointers() {
param_ip_port_string_map = NULL;
}
string getTypeName() {
return("ip_port_str_list");
}
protected:
map<vmIPport, string> *param_ip_port_string_map;
};
class cConfigItem_nat_aliases : public cConfigItem {
public:
cConfigItem_nat_aliases(const char* name, nat_aliases_t *nat_aliases);
string getValueStr(bool configFile = false);
list<string> getValueListStr();
string normalizeStringValueForCmp(string value);
bool enableMultiValues() { return(true); }
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
bool setParamFromValuesStr(vector<string> list_value_str);
void initBeforeSet();
void initParamPointers() {
param_nat_aliases = NULL;
}
string getTypeName() {
return("nat_aliases_list");
}
protected:
nat_aliases_t *param_nat_aliases;
};
class cConfigItem_custom_headers : public cConfigItem {
public:
cConfigItem_custom_headers(const char* name, vector<dstring> *custom_headers);
string getValueStr(bool configFile = false);
string normalizeStringValueForCmp(string value);
protected:
bool setParamFromConfigFile(CSimpleIniA *ini);
bool setParamFromValueStr(string value_str);
void initBeforeSet();
void initParamPointers() {
param_custom_headers = NULL;
}
string getTypeName() {
return("custom_headers_list");
}
protected:
vector<dstring> *param_custom_headers;
};
class cConfigItem_type_compress : public cConfigItem_yesno {
public:
cConfigItem_type_compress(const char* name, CompressStream::eTypeCompress *type_compress = NULL);
cConfigItem_type_compress(const char* name, FileZipHandler::eTypeCompress *type_compress = NULL);
};
class cConfigMap {
public:
struct cItem {
list<string> values;
void add(const char *value) {
values.push_back(value);
}
string valuesToStr();
bool operator == (cItem& other) {
if(this->values.size() != other.values.size()) {
return(false);
}
this->values.sort();
other.values.sort();
list<string>::iterator iter1 = this->values.begin();
list<string>::iterator iter2 = other.values.begin();
while(iter1 != this->values.end() && iter2 != other.values.end()) {
if(*iter1 != *iter2) {
return(false);
}
++iter1;
++iter2;
}
return(true);
}
};
public:
void addItem(const char *name, const char *value);
bool existsItem(const char *name);
string getFirstItem(const char *name, bool toLower = false);
string getItems(const char *name, const char *separator = ";", bool toLower = false);
string comp(cConfigMap *other, class cConfig *config, cConfig *defaultConfig = NULL);
bool isObsoleteParameter(string parameter);
public:
map<string, cItem> config_map;
};
class cConfig {
public:
struct sDiffValue {
string config_name;
string old_value;
string new_value;
string format() {
return(config_name + " : " + old_value + " / " + new_value);
}
};
public:
cConfig();
~cConfig();
void addConfigItems();
void addConfigItem(cConfigItem *configItem);
void group(const char *groupName);
void subgroup(const char *subgroupName);
void normal();
void advanced();
void expert();
void obsolete();
void minorBegin();
void minorEnd();
void minorGroupIfNotSetBegin();
void minorGroupIfNotSetEnd();
void setDisableIfBegin(string disableIf);
void setDisableIfEnd();
bool loadFromConfigFileOrDirectory(const char *filename, bool silent = false);
bool loadFromConfigFile(const char *filename, string *error = NULL, bool silent = false);
bool loadConfigMapConfigFileOrDirectory(cConfigMap *configMap, const char *filename);
bool loadConfigMapFromConfigFile(cConfigMap *configMap, const char *filename);
void evSetConfigItem(cConfigItem *configItem);
cConfigMap getConfigMap();
string getContentConfig(bool configFile = false, bool putDefaultValues = false);
string getJson(bool onlyIfSet = false, vector<string> *filter = NULL);
void setFromJson(const char *jsonStr, bool onlyIfSet = true);
void setFromMysql(bool checkConnect = false, bool onlyIfSet = true);
void putToMysql();
void setDefaultValues();
void clearToDefaultValues();
void setDescription(const char *itemName, const char *description);
void setHelp(const char *itemName, const char *help);
string getMainItemName(const char *name);
bool testEqValues(const char *itemName, const char *value1, const char *value2);
bool testEqValues(string itemName, list<string> values1, list<string> values2);
cConfigItem *getItem(const char *itemName);
bool isSet();
bool isSet(const char *itemName);
void beginTrackDiffValues();
void endTrackDiffValues(list<sDiffValue> *diffValues);
private:
void loadFromConfigFileError(const char *errorString, const char *filename, string *error = NULL);
private:
list<string> config_list;
map<string, cConfigItem*> config_map;
cConfigItem::eTypeLevel defaultLevel;
string defaultGroup;
string defaultSubgroup;
bool defaultMinor;
bool defaultMinorGroupIfNotSet;
string defaultDisableIf;
bool setFromMysqlOk;
list<sDiffValue> diffValues;
bool diffValuesTrack;
};
#endif