forked from OpenApoc/OpenApoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configfile.cpp
515 lines (459 loc) · 15.1 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
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
#ifdef _MSC_VER
#define _CRT_SECURE_NO_WARNINGS
#endif
#include "framework/configfile.h"
#include "framework/filesystem.h"
#include "framework/logger.h"
#include <fstream>
#include <iostream>
#include <list>
#include <physfs.h>
#include <string>
#include <variant>
#include <boost/program_options.hpp>
namespace po = boost::program_options;
namespace OpenApoc
{
static ConfigFile *configInstance = nullptr;
ConfigFile &ConfigFile::getInstance()
{
if (!configInstance)
configInstance = new ConfigFile();
return *configInstance;
}
namespace
{
template <typename Variant, size_t I = std::variant_size<Variant>::value - 1> struct any_to_variant
{
static Variant convert(const boost::any &opt)
{
if (opt.type() == typeid(typename std::variant_alternative<I, Variant>::type))
return boost::any_cast<typename std::variant_alternative<I, Variant>::type>(opt);
else
return any_to_variant<Variant, I - 1>::convert(opt);
}
};
template <typename Variant> struct any_to_variant<Variant, 0>
{
static Variant convert(const boost::any &opt)
{
return boost::any_cast<typename std::variant_alternative<0, Variant>::type>(opt);
}
};
}
class ConfigFileImpl
{
private:
std::map<UString, po::options_description> optionSections;
po::variables_map vm;
po::positional_options_description posDesc;
bool parsed;
std::vector<UString> positionalArgNames;
UString programName;
using ModifiedOptionT = std::variant<int, float, bool, UString>;
std::map<UString, ModifiedOptionT> modifiedOptions;
struct ToStringVisitor
{
using result_type = UString;
UString operator()(const int &operand) const { return Strings::fromInteger(operand); }
UString operator()(const float &operand) const { return Strings::fromFloat(operand); }
UString operator()(const bool &operand) const { return operand ? "1" : "0"; }
UString operator()(const UString &str) const { return str; }
};
public:
ConfigFileImpl() : parsed(false), programName("program") {}
void createSection(const UString sectionName)
{
if (optionSections.find(sectionName) != optionSections.end())
return;
UString sectionDescription = sectionName + " options";
optionSections.emplace(sectionName, sectionDescription.str());
}
template <typename T> void set(const UString &key, const T value)
{
this->modifiedOptions[key] = value;
}
bool parseOptions(int argc, char *argv[])
{
if (this->parsed)
{
LogError("Already parsed options");
return true;
}
fs::path programPath(argv[0]);
// Remove extension (if any) and path
programName = programPath.filename().string();
if (programName.endsWith(".exe"))
{
programName = programName.substr(0, programName.length() - 4);
}
if (!PHYSFS_isInit())
{
PHYSFS_init(programName.cStr());
}
UString settingsPath;
// If a file called 'portable.txt' exists in $(PWD), use a local config folder instead of a
// system one.
// This can't go through the normal settings system, as it's used by the normal settings
// system...
std::ifstream portableFile("./portable.txt");
if (portableFile)
{
LogInfo("portable mode set");
settingsPath = programName + "_";
}
else
{
settingsPath = PHYSFS_getPrefDir("OpenApoc", programName.cStr());
}
settingsPath += "settings.conf";
// Setup some config-related options
this->addOption("", "help", "h", "Show help text and exit");
this->addOptionTyped<UString>("Config", "File", "", "Path to config file", settingsPath);
this->addOptionTyped<bool>("Config", "Read", "", "Read the config file at startup", true);
this->addOptionTyped<bool>("Config", "Save", "", "Save the config file at exit", true);
po::options_description allOptions;
for (auto &optPair : this->optionSections)
allOptions.add(optPair.second);
try
{
po::store(
po::command_line_parser(argc, argv).positional(posDesc).options(allOptions).run(),
vm);
}
catch (po::error &err)
{
std::cerr << "Failed to parse options: \"" << err.what() << "\"\n";
this->showHelp();
return true;
}
po::notify(vm);
this->parsed = true;
if (this->getTyped<bool>("Config.Read"))
{
// Keep a variable map of 'only' those settings stored in the config file so we can
// write them back to the config again at save()
po::variables_map configFileVM;
auto configPath = this->getTyped<UString>("Config.File");
std::ifstream inConfig(configPath.str());
if (inConfig)
{
try
{
auto parsedConfig = parse_config_file(inConfig, allOptions);
po::store(parsedConfig, vm);
for (auto &option : parsedConfig.options)
{
// FIXME: Options with multiple values would break this
this->modifiedOptions[option.string_key] =
any_to_variant<ModifiedOptionT>::convert(vm[option.string_key].value());
}
}
catch (po::error &err)
{
std::cerr << "Failed to parse config options: \"" << err.what() << "\"\n";
this->showHelp();
return true;
}
}
}
if (this->get("help"))
{
this->showHelp();
return true;
}
return false;
}
bool loaded() const { return this->parsed; }
bool save()
{
// Don't try to save if we've not successfully loaded anything
if (!this->parsed)
return false;
auto configPathString = this->getTyped<UString>("Config.File");
if (this->modifiedOptions.empty())
{
// nothing to do
return true;
}
std::map<UString, std::list<UString>> configFileContents;
for (auto &optionPair : this->modifiedOptions)
{
auto splitString = optionPair.first.split(".");
if (splitString.size() < 1)
{
LogError("Invalid option string \"%s\"", optionPair.first.cStr());
continue;
}
UString sectionName;
for (unsigned i = 0; i < splitString.size() - 1; i++)
{
if (i != 0)
sectionName += ".";
sectionName += splitString[i];
}
UString optionName = splitString[splitString.size() - 1];
UString configFileLine =
optionName + "=" + std::visit(ToStringVisitor(), optionPair.second);
configFileContents[sectionName].push_back(configFileLine);
}
try
{
std::string str = configPathString.str();
fs::path configPath(str);
auto dir = configPath.parent_path();
if (!dir.empty())
fs::create_directories(dir);
std::ofstream outFile(configPath.string());
if (!outFile)
{
std::cerr << "Failed to open config file \"" << configPath << "\" for writing\n";
return false;
}
for (auto §ion : configFileContents)
{
auto §ionName = section.first;
outFile << "[" << sectionName.str() << "]\n";
for (auto &line : section.second)
{
outFile << line << "\n";
}
}
}
catch (fs::filesystem_error &e)
{
std::cerr << "Failed to write config file \"" << configPathString.str() << "\" : \""
<< e.what() << "\"\n";
return false;
}
return true;
}
bool get(const UString name)
{
if (!this->parsed)
{
LogError("Not yet parsed options");
return false;
}
auto it = this->modifiedOptions.find(name);
if (it != this->modifiedOptions.end())
{
return true;
}
return vm.count(name.str());
}
template <typename T> const T &getTyped(const UString &key)
{
if (!this->parsed)
{
LogError("Not yet parsed options");
throw std::exception();
}
if (!this->get(key))
{
LogError("Option \"%s\" not set", key.cStr());
throw std::exception();
}
auto it = this->modifiedOptions.find(key);
if (it != this->modifiedOptions.end())
{
return std::get<T>(it->second);
}
return vm[key.str()].as<T>();
}
UString describe(const UString section, const UString name)
{
if (!this->parsed)
{
LogError("Not yet parsed options");
return "";
}
UString combinedOption;
if (section.empty())
combinedOption = name;
else
combinedOption = section + "." + name;
return optionSections[section].find(combinedOption.str(), true).description();
}
void addOption(const UString section, const UString longName, const UString shortName,
const UString description)
{
if (this->parsed)
{
LogError("Adding option when already parsed");
}
this->createSection(section);
UString combinedOption;
if (section.empty())
combinedOption = longName;
else
combinedOption = section + "." + longName;
if (!shortName.empty())
combinedOption += "," + shortName;
this->optionSections[section].add_options()(combinedOption.cStr(), description.cStr());
}
template <typename T>
void addOptionTyped(const UString section, const UString longName, const UString shortName,
const UString description, const T defaultValue)
{
if (this->parsed)
{
LogError("Adding option when already parsed");
}
this->createSection(section);
UString combinedOption;
if (section.empty())
combinedOption = longName;
else
combinedOption = section + "." + longName;
if (!shortName.empty())
combinedOption += "," + shortName;
this->optionSections[section].add_options()(
combinedOption.cStr(), po::value<T>()->default_value(defaultValue), description.cStr());
}
void addPositionalArgument(const UString name, const UString description)
{
if (this->parsed)
{
LogError("Adding option when already parsed");
}
this->positionalArgNames.push_back(name);
this->posDesc.add(name.cStr(), 1);
this->addOptionTyped<UString>("", name, "", description, "");
}
void showHelp()
{
std::cout << "Usage: " << this->programName << " [options]";
for (auto &arg : positionalArgNames)
std::cout << " " << arg;
std::cout << "\n";
for (auto &optPair : this->optionSections)
std::cout << optPair.second << "\n";
}
std::map<UString, std::vector<ConfigOption>> getOptions()
{
std::map<UString, std::vector<ConfigOption>> options;
for (auto &optPair : this->optionSections)
{
std::vector<ConfigOption> vec;
for (auto &opt : optPair.second.options())
{
std::string short_name = opt->long_name();
size_t dot = short_name.find_last_of('.');
if (dot != std::string::npos)
{
short_name = short_name.substr(dot + 1);
}
vec.emplace_back(ConfigOption(optPair.first, short_name, opt->description()));
}
options[optPair.first] = vec;
}
return options;
}
};
ConfigFile::ConfigFile() { this->pimpl.reset(new ConfigFileImpl()); }
ConfigFile::~ConfigFile() = default;
bool ConfigFile::save() { return this->pimpl->save(); }
UString ConfigFile::getString(const UString &key) { return this->pimpl->getTyped<UString>(key); }
int ConfigFile::getInt(const UString &key) { return this->pimpl->getTyped<int>(key); }
bool ConfigFile::getBool(const UString &key) { return this->pimpl->getTyped<bool>(key); }
float ConfigFile::getFloat(const UString &key) { return this->pimpl->getTyped<float>(key); }
bool ConfigFile::get(const UString &key) { return this->pimpl->get(key); }
UString ConfigFile::describe(const UString §ion, const UString &name)
{
return this->pimpl->describe(section, name);
}
void ConfigFile::set(const UString &key, const UString value) { this->pimpl->set(key, value); }
void ConfigFile::set(const UString &key, const int value) { this->pimpl->set(key, value); }
void ConfigFile::set(const UString &key, const bool value) { this->pimpl->set(key, value); }
void ConfigFile::set(const UString &key, const float value) { this->pimpl->set(key, value); }
void ConfigFile::addOptionString(const UString section, const UString longName,
const UString shortName, const UString description,
const UString defaultValue)
{
this->pimpl->addOptionTyped<UString>(section, longName, shortName, description, defaultValue);
}
void ConfigFile::addOptionInt(const UString section, const UString longName,
const UString shortName, const UString description,
const int defaultValue)
{
this->pimpl->addOptionTyped<int>(section, longName, shortName, description, defaultValue);
}
void ConfigFile::addOptionBool(const UString section, const UString longName,
const UString shortName, const UString description,
const bool defaultValue)
{
this->pimpl->addOptionTyped<bool>(section, longName, shortName, description, defaultValue);
}
void ConfigFile::addOptionFloat(const UString section, const UString longName,
const UString shortName, const UString description,
const float defaultValue)
{
this->pimpl->addOptionTyped<float>(section, longName, shortName, description, defaultValue);
}
void ConfigFile::addOption(const UString section, const UString longName, const UString shortName,
const UString description)
{
this->pimpl->addOption(section, longName, shortName, description);
}
void ConfigFile::addPositionalArgument(const UString name, const UString description)
{
this->pimpl->addPositionalArgument(name, description);
}
bool ConfigFile::parseOptions(int argc, char *argv[])
{
return this->pimpl->parseOptions(argc, argv);
}
bool ConfigFile::loaded() const { return this->pimpl->loaded(); }
void ConfigFile::showHelp() { this->pimpl->showHelp(); }
std::map<UString, std::vector<ConfigOption>> ConfigFile::getOptions()
{
return this->pimpl->getOptions();
}
ConfigOption::ConfigOption(const UString section, const UString name, const UString description)
: section(section), name(name), description(description)
{
}
UString ConfigOption::getKey() const
{
if (section.empty())
return name;
else
return section + "." + name;
}
ConfigOptionString::ConfigOptionString(const UString section, const UString name,
const UString description, const UString defaultValue)
: ConfigOption(section, name, description), defaultValue(defaultValue)
{
config().addOptionString(section, name, "", description, defaultValue);
}
UString ConfigOptionString::get() const { return config().getString(getKey()); }
ConfigOptionInt::ConfigOptionInt(const UString section, const UString name,
const UString description, const int defaultValue)
: ConfigOption(section, name, description), defaultValue(defaultValue)
{
config().addOptionInt(section, name, "", description, defaultValue);
}
int ConfigOptionInt::get() const { return config().getInt(getKey()); }
ConfigOptionBool::ConfigOptionBool(const UString section, const UString name,
const UString description, const bool defaultValue)
: ConfigOption(section, name, description), defaultValue(defaultValue)
{
config().addOptionBool(section, name, "", description, defaultValue);
}
bool ConfigOptionBool::get() const { return config().getBool(getKey()); }
ConfigOptionFloat::ConfigOptionFloat(const UString section, const UString name,
const UString description, const float defaultValue)
: ConfigOption(section, name, description), defaultValue(defaultValue)
{
config().addOptionFloat(section, name, "", description, defaultValue);
}
bool ConfigOptionFloat::get() const { return config().getFloat(getKey()); }
void validate(boost::any &v, const std::vector<std::string> &values, UString *, int)
{
if (values.size() == 1)
v = boost::any(UString(values[0]));
else
throw po::validation_error(po::validation_error::invalid_option_value);
}
}; // namespace OpenApoc