2015-11-04 01:22:59 +01:00
|
|
|
#include "Configuration.hpp"
|
|
|
|
|
2015-10-17 22:27:37 +02:00
|
|
|
#include <boost/property_tree/ptree.hpp>
|
|
|
|
#include <boost/property_tree/ini_parser.hpp>
|
2016-04-18 02:12:27 +02:00
|
|
|
#include <boost/format.hpp>
|
2017-05-27 22:12:26 +02:00
|
|
|
#include <boost/foreach.hpp>
|
2015-10-17 22:27:37 +02:00
|
|
|
|
|
|
|
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) {
|
2016-04-18 02:12:27 +02:00
|
|
|
throw ConfigException((boost::format("Configuration option '%s' (type: %s) not found.")
|
|
|
|
% property % typeid(TYPE).name()).str());
|
2015-10-17 22:27:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2017-05-27 22:12:26 +02:00
|
|
|
// TODO: return set
|
|
|
|
std::unordered_map<std::string, std::string> config::Configuration::getChildren(const std::string &property) {
|
|
|
|
std::unordered_map<std::string, std::string> pins;
|
|
|
|
BOOST_FOREACH(boost::property_tree::ptree::value_type &v,
|
|
|
|
impl->ptree.get_child(property)) {
|
|
|
|
//pins[v.first.data()] = get<std::string>(impl->ptree, property + "." + v.second.data());
|
|
|
|
pins[v.first.data()] = v.second.data();
|
|
|
|
}
|
|
|
|
return pins;
|
|
|
|
}
|
|
|
|
|
2015-10-17 22:27:37 +02:00
|
|
|
|