-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathconfiguration.cpp
473 lines (393 loc) · 12.3 KB
/
configuration.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
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
/*---------------------------------------------------------------------------*\
*
* bitpit
*
* Copyright (C) 2015-2021 OPTIMAD engineering Srl
*
* -------------------------------------------------------------------------
* License
* This file is part of bitpit.
*
* bitpit is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License v3 (LGPL)
* as published by the Free Software Foundation.
*
* bitpit is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with bitpit. If not, see <http://www.gnu.org/licenses/>.
*
\*---------------------------------------------------------------------------*/
#include "configuration.hpp"
#include "configuration_XML.hpp"
#include "compiler.hpp"
#if HAS_RAPIDJSON_LIB
#include "configuration_JSON.hpp"
#endif
#include <stringUtils.hpp>
namespace bitpit {
/*!
\class ConfigParser
\ingroup Configuration
\brief Configuration file parser
This class implements a configuration file parser.
*/
/*
Undefined versione
*/
const int ConfigParser::VERSION_UNDEFINED = -1;
/*!
Construct a new configuration parser.
\param root is the name of the root element
*/
ConfigParser::ConfigParser(const std::string &root)
: Config(false)
{
reset(root);
}
/*!
Construct a new configuration parser.
\param root is the name of the root element
\param multiSections if set to true the configuration parser will allow
multiple sections with the same name
*/
ConfigParser::ConfigParser(const std::string &root, bool multiSections)
: Config(multiSections)
{
reset(root);
}
/*!
Construct a new configuration parser.
\param root is the name of the root element
\param version is the required version
*/
ConfigParser::ConfigParser(const std::string &root, int version)
: Config(false)
{
reset(root, version);
}
/*!
Construct a new configuration parser.
\param root is the name of the root element
\param version is the required version
\param multiSections if set to true the configuration parser will allow
multiple sections with the same name
*/
ConfigParser::ConfigParser(const std::string &root, int version, bool multiSections)
: Config(multiSections)
{
reset(root, version);
}
/*!
Resets the configuration parser. MultiSection property set in construction
is not affected.
\param root is the name of the root element
*/
void ConfigParser::reset(const std::string &root)
{
m_root = root;
m_checkVersion = false;
m_version = VERSION_UNDEFINED;
clear();
}
/*!
Resets the configuration parser. MultiSections property set in construction
is not affected.
\param root is the name of the root element
\param version is the version
*/
void ConfigParser::reset(const std::string &root, int version)
{
m_root = root;
m_checkVersion = true;
m_version = version;
clear();
}
/*!
Resets the configuration parser. MultiSections property set in construction
is forced to the new value given by the parameter multiSection
\param root is the name of the root element
\param version is the version
\param multiSections if set to true the configuration parser will allow
multiple sections with the same name
*/
void ConfigParser::reset(const std::string &root, int version, bool multiSections)
{
m_root = root;
m_checkVersion = true;
m_version = version;
m_multiSections = multiSections;
clear();
}
/*!
Read the specified configuration file.
Configuration file can be either XML or JSON files (if JSON support was
found at compile time).
\param filename is the filename of the configuration file
\param append controls if the configuration file will be appended to the
current configuration or if the current configuration will be overwritten
with the contents of the configuration file.
*/
void ConfigParser::read(const std::string &filename, bool append)
{
// Processing not-append requests
if (!append) {
clear();
}
// Read the configuration
std::string extension = "";
std::size_t dotPosition = filename.find_last_of(".");
if (dotPosition != std::string::npos) {
extension = filename.substr(dotPosition + 1);
extension = utils::string::trim(extension);
}
if (extension == "xml" || extension == "XML") {
config::XML::readConfiguration(filename, m_root, m_checkVersion, m_version, this);
#if HAS_RAPIDJSON_LIB
} else if (extension == "json" || extension == "JSON") {
config::JSON::readConfiguration(filename, this);
#endif
} else {
throw std::runtime_error("ConfigParser::read - Unsupported file format");
}
}
/*!
Write the configuration to the specified file.
Configuration file can be either XML or JSON files (if JSON support was
found at compile time).
\param filename is the filename where the configuration will be written to
*/
void ConfigParser::write(const std::string &filename) const
{
// Write the configuration
std::string extension = "";
std::size_t dotPosition = filename.find_last_of(".");
if (dotPosition != std::string::npos) {
extension = filename.substr(dotPosition + 1);
extension = utils::string::trim(extension);
}
if (extension == "xml" || extension == "XML") {
config::XML::writeConfiguration(filename, m_root, m_version, this);
#if HAS_RAPIDJSON_LIB
} else if (extension == "json" || extension == "JSON") {
bool prettify = true;
config::JSON::writeConfiguration(filename, this, prettify);
#endif
} else {
throw std::runtime_error("ConfigParser::write - Unsupported file format");
}
}
/*!
\class GlobalConfigParser
\ingroup Configuration
\brief Global configuration file parser
This class implements a global configuration file parser.
*/
/*
Initialize the global instance of the configuration file parser.
*/
std::unique_ptr<GlobalConfigParser> GlobalConfigParser::m_parser = nullptr;
/*
Initialize the defualt name of the root element.
*/
const std::string GlobalConfigParser::DEFAULT_ROOT_NAME = "bitpit";
/*
Initialize the default version of the configuration file.
*/
const int GlobalConfigParser::DEFAULT_VERSION = 1;
/*!
Default constructor.
*/
GlobalConfigParser::GlobalConfigParser()
: ConfigParser(DEFAULT_ROOT_NAME, DEFAULT_VERSION)
{
}
/*!
Constructor a new parser.
*/
GlobalConfigParser::GlobalConfigParser(const std::string &name, int version)
: ConfigParser(name, version)
{
}
/*!
Constructor a new parser.
*/
GlobalConfigParser::GlobalConfigParser(const std::string &name, bool multiSections)
: ConfigParser(name, DEFAULT_VERSION, multiSections)
{
}
/*!
Constructor a new parser.
*/
GlobalConfigParser::GlobalConfigParser(const std::string &name, int version, bool multiSections)
: ConfigParser(name, version, multiSections)
{
}
/*!
Returns a global configuration with default options.
\result The global instance of the configuration file parser.
*/
GlobalConfigParser & GlobalConfigParser::parser()
{
if (!m_parser) {
m_parser = std::unique_ptr<GlobalConfigParser>(new GlobalConfigParser());
}
return *m_parser;
}
// Routines for interacting with the global configuration file parser
namespace config {
/*!
Global instance of the configuration file parser.
*/
GlobalConfigParser &root = GlobalConfigParser::parser();
/*!
Resets to custom root element name, all other options are forcefully
reset to default. MultiSection property remains unaffected by the reset
\param name is the name of the root element
*/
void reset(const std::string &name)
{
root.reset(name);
}
/*!
Resets to custom root element name and version. , all other options are
forcefully reset to default. MultiSection property remains unaffected by
the reset.
\param name is the name of the root element
\param version is the version
*/
void reset(const std::string &name, int version)
{
root.reset(name, version);
}
/*!
Resets to custom root element name, version and multiSections property
\param name is the name of the root element
\param version is the version
\param multiSections boolean to control multiSections property of Config tree
*/
void reset(const std::string &name, int version, bool multiSections)
{
root.reset(name, version, multiSections);
}
/*!
Read the specified configuration file.
Configuration file can be either XML or JSON files (if JSON support was
found at compile time).
\param filename is the filename of the configuration file
\param append controls if the configuration file will be appended to the
current configuration or if the current configuration will be overwritten
with the contents of the configuration file.
*/
void read(const std::string &filename, bool append)
{
root.read(filename, append);
}
/*!
Write the configuration to the specified file.
Configuration file can be either XML or JSON files (if JSON support was
found at compile time).
\param filename is the filename where the configuration will be written to
*/
void write(const std::string &filename)
{
root.write(filename);
}
}
/*!
\class ConfigStringParser
\ingroup Configuration
\brief Configuration parser to c++ string
This class implements a configuration parser to absorb/flush directly on
c++ string buffers.
*/
/*!
Construct a new parser.
\param XMLorJSON false to activate XML format, true for JSON format if supported,
otherwise fallback automatically to XML.
*/
ConfigStringParser::ConfigStringParser(bool XMLorJSON)
: Config(false)
{
#if HAS_RAPIDJSON_LIB
m_xmlOrJson = XMLorJSON;
#else
BITPIT_UNUSED(XMLorJSON);
//revert to default XML
m_xmlOrJson = false;
#endif
}
/*!
Construct a new parser, activating multiSections support.
\param XMLorJSON false to activate XML format, true for JSON format if supported,
otherwise fallback automatically to XML.
\param multiSections if set to true the configuration parser will allow
multiple sections with the same name
*/
ConfigStringParser::ConfigStringParser(bool XMLorJSON, bool multiSections)
: Config(multiSections)
{
#if HAS_RAPIDJSON_LIB
m_xmlOrJson = XMLorJSON;
#else
BITPIT_UNUSED(XMLorJSON);
//revert to default XML
m_xmlOrJson = false;
#endif
}
/*!
Return a bool to identify the format targeted by the class to parse/write the
buffer string. 0 is XML, 1 is JSON
\return boolean identifying the target format
*/
bool ConfigStringParser::getFormat()
{
return m_xmlOrJson;
}
/*!
Absorb the targeted buffer string formatted as specified in class construction
(XML or JSON).
\param source target buffer string to read
\param append controls if the buffer string contents will be appended to the
current configuration or if the current configuration will be overwritten
by them.
*/
void ConfigStringParser::read(const std::string &source, bool append)
{
// Processing not-append requests
if (!append) {
Config::clear();
}
if(m_xmlOrJson){
#if HAS_RAPIDJSON_LIB
config::JSON::readBufferConfiguration(source, this);
#endif
}else{
config::XML::readBufferConfiguration(source, this);
}
}
/*!
Flush the configuration to a buffer string, with the format specified
in class construction (XML or JSON).
\param source target buffer string to write on
\param append controls if the configuration contents will be appended to the
target string or if the string will be overwritten by them.
*/
void ConfigStringParser::write(std::string &source, bool append) const
{
// Processing not-append requests
if (!append) {
source.clear();
}
if(m_xmlOrJson){
#if HAS_RAPIDJSON_LIB
config::JSON::writeBufferConfiguration(source, this);
#endif
}else{
config::XML::writeBufferConfiguration(source, this, "root");
}
}
}