forked from slomkowski/mumsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Configuration.cpp
53 lines (41 loc) · 1.47 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
#include "Configuration.hpp"
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/ini_parser.hpp>
#include <boost/format.hpp>
using namespace config;
namespace config {
struct ConfigurationImpl {
boost::property_tree::ptree ptree;
};
template<typename TYPE>
TYPE get(boost::property_tree::ptree tree, const std::string &property) {
try {
return tree.get<TYPE>(property);
} catch (boost::property_tree::ptree_bad_path) {
throw ConfigException((boost::format("Configuration option '%s' (type: %s) not found.")
% property % typeid(TYPE).name()).str());
}
}
}
config::Configuration::Configuration(const std::string fileName)
: impl(new ConfigurationImpl()) {
boost::property_tree::read_ini(fileName, impl->ptree);
}
config::Configuration::Configuration(std::vector<std::string> const fileNames)
: impl(new ConfigurationImpl()) {
for (auto &name : fileNames) {
boost::property_tree::read_ini(name, impl->ptree);
}
}
config::Configuration::~Configuration() {
delete impl;
}
int config::Configuration::getInt(const std::string &property) {
return get<int>(impl->ptree, property);
}
bool config::Configuration::getBool(const std::string &property) {
return get<bool>(impl->ptree, property);
}
std::string config::Configuration::getString(const std::string &property) {
return get<std::string>(impl->ptree, property);
}