blob: 4488e849b3b9eab0c6481e7cb055859e8c3ad495 (
plain)
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
|
#include "config.h"
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <iostream>
namespace pt = boost::property_tree;
namespace {
const std::string default_datapath {"/var/lib/whiteboard"};
const uint64_t default_maxage{0}; // timeout in seconds; 0 = no timeout
}
Config::Config(const std::string& config_filename): m_dataPath{default_datapath}, m_maxage{default_maxage}
{
try {
pt::ptree tree;
pt::read_xml(config_filename, tree, pt::xml_parser::no_comments | pt::xml_parser::trim_whitespace);
m_dataPath = tree.get<std::string>("config.datapath", default_datapath);
m_maxage = tree.get<uint64_t>("config.maxage", default_maxage);
} catch (const std::exception& ex) {
std::cerr << "Error reading config file " << config_filename << ". Using defaults." << std::endl;
}
}
std::string Config::getDataPath() const
{
return m_dataPath;
}
uint64_t Config::getMaxage() const
{
return m_maxage;
}
|