-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProperties.cpp
More file actions
127 lines (97 loc) · 2.36 KB
/
Properties.cpp
File metadata and controls
127 lines (97 loc) · 2.36 KB
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
#include <iostream>
#include <string>
#include <set>
#include <sstream>
#include <exception>
#include <fstream>
#include <utility>
#include <iomanip>
#include <algorithm>
#include <cctype>
#include "Properties.hpp"
namespace utilities
{
Properties::Properties(std::string filename) : filename_(filename)
{
initialize();
}
Properties::~Properties()
{
}
void Properties::initialize()
{
std::ifstream config( filename_.c_str() );
if(!config)
{
// TODO: proper error handling
std::cerr << "error" << std::endl;
return;
}
//parameters
std::set<std::string> options;
options.insert("*");
try
{
for (pod::config_file_iterator i(config, options), e ; i != e; ++i)
{
//std::cout << i->string_key << " " << i->value[0] << std::endl;
parameters_[i->string_key] = i->value[0];
}
//std::cout << parameters_["StatLogServer.Path"] << std::endl;
}
catch(std::exception& e)
{
std::cerr << "Exception: " << e.what() << std::endl;
}
}
bool Properties::toBool(std::string str)
{
std::transform(str.begin(), str.end(), str.begin(), ::tolower);
std::istringstream is(str);
bool b;
is >> std::boolalpha >> b;
return b;
}
std::string Properties::getStringValue(const std::string& name, std::string defaultValue)
{
auto it = parameters_.find(name);
if (it != parameters_.end())
return it->second;
return std::move(defaultValue);
}
int Properties::getIntValue(const std::string& name, int defaultValue)
{
auto it = parameters_.find(name);
if (it != parameters_.end())
return std::stoi( it->second );
return defaultValue;
}
long Properties::getLongValue(const std::string& name, long defaultValue)
{
auto it = parameters_.find(name);
if (it != parameters_.end())
return std::stol( it->second );
return defaultValue;
}
float Properties::getFloatValue(const std::string& name, float defaultValue)
{
auto it = parameters_.find(name);
if (it != parameters_.end())
return std::stof( it->second );
return defaultValue;
}
double Properties::getDoubleValue(const std::string& name, double defaultValue)
{
auto it = parameters_.find(name);
if (it != parameters_.end())
return std::stod( it->second );
return defaultValue;
}
bool Properties::getBoolValue(const std::string& name, bool defaultValue)
{
auto it = parameters_.find(name);
if (it != parameters_.end())
return toBool( it->second );
return defaultValue;
}
}