-
Notifications
You must be signed in to change notification settings - Fork 0
/
configfile.cpp
416 lines (362 loc) · 11.4 KB
/
configfile.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
// Copyright (C) 2014-2016 Eric Hebert (ayebear)
// This code is licensed under MIT, see LICENSE.txt for details.
#include "configfile.h"
#include <fstream>
#include <iostream>
#include "strlib.h"
namespace cfg
{
File::File()
{
setFlags();
}
File::File(const std::string& filename, int newFlags)
{
setFlags(newFlags);
loadFromFile(filename);
}
File::File(const ConfigMap& defaultOptions, int newFlags)
{
setFlags(newFlags);
setDefaultOptions(defaultOptions);
}
File::File(const std::string& filename, const ConfigMap& defaultOptions, int newFlags)
{
setFlags(newFlags);
setDefaultOptions(defaultOptions);
loadFromFile(filename);
}
File::~File()
{
if (flags & Autosave)
writeToFile();
}
bool File::loadFromFile(const std::string& filename)
{
configFilename = filename;
std::vector<std::string> lines;
fileIoSuccessful = strlib::readLinesFromFile(configFilename, lines);
if (fileIoSuccessful)
parseLines(lines);
else if (flags & Verbose)
std::cout << "Error loading \"" << configFilename << "\"\n";
return fileIoSuccessful;
}
void File::loadFromString(const std::string& str)
{
auto lines = strlib::getLinesFromString(str);
parseLines(lines);
}
bool File::writeToFile(std::string filename) const
{
if (filename.empty())
filename = configFilename;
// Write the std::string to the output file
fileIoSuccessful = strlib::writeStringToFile(filename, buildString());
if (!fileIoSuccessful && (flags & Verbose))
std::cout << "Error writing \"" << configFilename << "\"\n";
return fileIoSuccessful;
}
void File::writeToString(std::string& str) const
{
for (const auto& section: options) // Go through all of the sections
{
if (!section.first.empty())
str += '[' + section.first + "]\n"; // Add the section line if it is not blank
for (const auto& o: section.second) // Go through all of the options in this section
str += o.first + " = " + o.second.buildArrayString() + '\n';
str += '\n';
}
if (!str.empty() && str.back() == '\n')
str.pop_back(); // Strip the extra new line at the end
}
std::string File::buildString() const
{
std::string configStr;
writeToString(configStr);
return configStr;
}
File::operator bool() const
{
return fileIoSuccessful;
}
bool File::getStatus() const
{
return fileIoSuccessful;
}
void File::setFlag(int flag, bool state)
{
if (state)
flags |= flag;
else
flags &= ~flag;
}
void File::setFlags(int newFlags)
{
flags = newFlags;
}
Option& File::operator()(const std::string& name, const std::string& section)
{
return options[section][name];
}
Option& File::operator()(const std::string& name)
{
return options[currentSection][name];
}
bool File::optionExists(const std::string& name, const std::string& section) const
{
auto sectionFound = options.find(section);
return (sectionFound != options.end() && sectionFound->second.find(name) != sectionFound->second.end());
}
bool File::optionExists(const std::string& name) const
{
return optionExists(name, currentSection);
}
void File::setDefaultOptions(const ConfigMap& defaultOptions)
{
options.insert(defaultOptions.begin(), defaultOptions.end());
}
void File::useSection(const std::string& section)
{
currentSection = section;
}
File::ConfigMap::iterator File::begin()
{
return options.begin();
}
File::ConfigMap::iterator File::end()
{
return options.end();
}
File::Section& File::getSection(const std::string& section)
{
return options[section];
}
File::Section& File::getSection()
{
return options[currentSection];
}
bool File::sectionExists(const std::string& section) const
{
return (options.find(section) != options.end());
}
bool File::sectionExists() const
{
return sectionExists(currentSection);
}
bool File::eraseOption(const std::string& name, const std::string& section)
{
bool status = false;
auto sectionFound = options.find(section);
if (sectionFound != options.end()) // If the section exists
status = (sectionFound->second.erase(name) > 0); // Erase the option
return status;
}
bool File::eraseOption(const std::string& name)
{
return eraseOption(name, currentSection);
}
bool File::eraseSection(const std::string& section)
{
return (options.erase(section) > 0);
}
bool File::eraseSection()
{
return eraseSection(currentSection);
}
void File::clear()
{
options.clear();
}
void File::parseLines(std::vector<std::string>& lines)
{
currentArrayStack.clear();
arrayOptionName.clear();
std::string section;
bool multiLineComment = false;
Comment commentType = Comment::None;
for (std::string& line: lines) // Iterate through the std::vector of strings
{
strlib::trimWhitespace(line);
commentType = stripComments(line, multiLineComment);
if (commentType == Comment::Start)
multiLineComment = true;
if (!multiLineComment && !line.empty()) // Don't process a comment or an empty line
{
if (isSection(line))
parseSectionLine(line, section); // Example: "[Section]"
else
parseOptionLine(line, section); // Example: "Option = Value"
}
if (commentType == Comment::End)
multiLineComment = false;
}
}
bool File::isSection(const std::string& section) const
{
return (section.size() >= 2 && section.front() == '[' && section.back() == ']');
}
void File::parseSectionLine(const std::string& line, std::string& section)
{
section = line.substr(1, line.size() - 2); // Set the current section
options[section]; // Add that section to the map
}
void File::parseOptionLine(const std::string& line, const std::string& section)
{
if (!currentArrayStack.empty())
{
// Process another line in the array
// This could be 1 of 3 things:
// 1. { (array start)
// 2. X (another value)
// 3. } (array end)
std::string value = line;
strlib::trimWhitespace(value);
if (value.back() == ',')
value.pop_back();
strlib::trimWhitespace(value); // In case there was whitespace before the comma
if (!value.empty())
{
Option& option = getArrayOption(section, arrayOptionName);
if ((value == "{") || (value[0] == '{'))
{
startArray(option);
}
else if ((value == "}") || (value[0] == '}'))
currentArrayStack.pop_back();
else
setOption(option.push(), value);
}
}
else
{
// Process a regular option line (or the start of a new array)
size_t equalPos = line.find("="); // Find the position of the "=" symbol
if (equalPos != std::string::npos && equalPos >= 1) // Ignore the line if there is no "=" symbol
{
std::string name, value;
// Extract the name and value
name = line.substr(0, equalPos);
value = line.substr(equalPos + 1);
// Trim any whitespace around the name and value
strlib::trimWhitespace(name);
strlib::trimWhitespace(value);
strlib::stripNewLines(value);
// Check if this is the start of an array
// Option& option = options[section][name];
// ph002 change to support single line array
// like: myarray = {1,2,3,4}
if ((value == "{") || (value[0] == '{'))
{
bool bline = false;
arrayOptionName = name;
currentArrayStack.assign(1, 0);
if (value.find(',') > 0)
{
Option& option = getArrayOption(section, arrayOptionName);
bline = true;
while (value.find(',') != -1)
{
int n = value.find(',');
std::string s = value.substr(1, n-1);
strlib::trimWhitespace(s);
setOption(option.push(), s);
value.erase(1, n);
}
if (value.find('}') > 0)
{
int n = value.find('}');
std::string s = value.substr(1, n - 1);
strlib::trimWhitespace(s);
setOption(option.push(), s);
}
}
if (bline)
{
currentArrayStack.clear();
arrayOptionName.clear();
}
}
else
{
Option &option = options[section][name];
if (!setOption(option, value) && (flags & Verbose))
{
std::cout << "Warning: Option \"" << name << "\" in [" << section << "] was out of range.\n";
std::cout << " Using default value: " << option.toStringWithQuotes() << std::endl;
}
}
}
}
}
bool File::setOption(Option& option, const std::string& value)
{
std::string trimmedValue = value;
bool trimmedQuotes = trimQuotes(trimmedValue); // Remove quotes if any
bool optionSet = (option = trimmedValue); // Try to set the option
if (trimmedQuotes) // If quotes were removed
option.setQuotes(true); // Add quotes to the option
return optionSet;
}
Option& File::getArrayOption(const std::string& section, const std::string& name)
{
Option* currentOption = &options[section][name];
// Start at 1, because the 0th element represents the current option above
for (unsigned i = 1; i < currentArrayStack.size(); ++i)
currentOption = &((*currentOption)[currentArrayStack[i]]);
return *currentOption;
}
void File::startArray(Option& option)
{
option.push(); // This new option will be holding the array starting with this "{"
currentArrayStack.push_back(option.size() - 1);
}
bool File::areQuotes(char c1, char c2)
{
// Both characters must be the same, either single quotes or double quotes
return ((c1 == c2) && (c1 == '"' || c1 == '\''));
}
bool File::trimQuotes(std::string& str)
{
bool status = false;
if (str.size() >= 2 && areQuotes(str.front(), str.back()))
{
// Remove the quotes
str.pop_back();
str.erase(str.begin());
status = true;
}
return status;
}
bool File::isEndComment(const std::string& str) const
{
return (str.find("*/") != std::string::npos);
}
File::Comment File::getCommentType(const std::string& str, bool checkEnd) const
{
// Comment symbols and types
static const std::vector<std::string> commentSymbols = {"/*", "//", "#", "::", ";"};
static const std::vector<Comment> commentTypes = {Comment::Start, Comment::Single, Comment::Single, Comment::Single, Comment::Single};
Comment commentType = Comment::None;
// This is optional so the function returns the correct result
if (checkEnd && isEndComment(str))
commentType = Comment::End;
// Find out which comment type the string is, if any
for (unsigned int i = 0; (commentType == Comment::None && i < commentSymbols.size()); i++)
{
if (str.compare(0, commentSymbols[i].size(), commentSymbols[i]) == 0)
commentType = commentTypes[i];
}
// This check is required for comments using the multi-line symbols on a single line
if (!checkEnd && commentType == Comment::Start && isEndComment(str))
commentType = Comment::Single;
return commentType;
}
File::Comment File::stripComments(std::string& str, bool checkEnd)
{
Comment commentType = getCommentType(str, checkEnd);
if (commentType == Comment::Single)
str.clear();
return commentType;
}
}