blob: ab8704b447b70378e1d6566004153b4c27b8b153 (
plain) (
blame)
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
|
#ifndef CONFIGCONTAINER_H_
#define CONFIGCONTAINER_H_
#include <configparser.h>
namespace newsbeuter
{
struct configdata
{
enum configdata_type { INVALID, BOOL, INT, STR, PATH };
configdata(const std::string& v = "", configdata_type t = INVALID) : value(v), type(t) { }
std::string value;
configdata_type type;
};
class configcontainer : public config_action_handler
{
public:
configcontainer();
virtual ~configcontainer();
void register_commands(configparser& cfgparser);
virtual action_handler_status handle_action(const std::string& action, const std::vector<std::string>& params);
bool get_configvalue_as_bool(const std::string& key);
int get_configvalue_as_int(const std::string& key);
std::string get_configvalue(const std::string& key);
void set_configvalue(const std::string& key, const std::string& value);
private:
std::map<std::string,configdata> config_data;
bool is_bool(const std::string& s);
bool is_int(const std::string& s);
};
}
#endif /*CONFIGCONTAINER_H_*/
|