forked from carlren/ORUtils
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKeyValueConfig.cpp
executable file
·270 lines (239 loc) · 7.3 KB
/
KeyValueConfig.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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
// Copyright 2014-2017 Oxford University Innovation Limited and the authors of InfiniTAM
#include "KeyValueConfig.h"
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
using namespace ORUtils;
static inline char* strLower(const char *input)
{
if (input == NULL) return NULL;
size_t len = strlen(input);
char *ret = (char*)malloc(len + 1);
for (size_t i = 0; i < len; i++) ret[i] = tolower(input[i]);
ret[len] = 0;
return ret;
}
KeyValueConfig::KeyValueConfig(const KeyValueConfig & src)
{
// deep copy of the PropertyList (property)
PropertyList::const_iterator it = src.property.begin();
for (; it != src.property.end(); ++it) setProperty(it->first, it->second);
}
KeyValueConfig::~KeyValueConfig(void)
{
unsetAllProperties();
}
void KeyValueConfig::setProperty(const char *key, const char *value, bool toLower)
{
if (key == NULL) return;
if (value == NULL) { unsetProperty(key, toLower); return; }
char *new_key;
if (toLower) new_key = strLower(key);
else
{
new_key = (char*)malloc(strlen(key) + 1);
strcpy(new_key, key);
}
char *new_val = (char*)malloc(strlen(value) + 1);
strcpy(new_val, value);
PropertyList::iterator search = property.find(new_key);
if (search != property.end())
{
free(search->second);
free(new_key);
search->second = new_val;
}
else property[new_key] = new_val;
}
void KeyValueConfig::unsetProperty(const char *key, bool toLower)
{
char *del_key = const_cast<char*>(key);
if (toLower) del_key = strLower(key);
PropertyList::iterator search = property.find(del_key);
if (toLower) free(del_key);
if (search==property.end()) return;
free(search->first);
free(search->second);
property.erase(search);
}
void KeyValueConfig::unsetAllProperties(void)
{
PropertyList::iterator it = property.begin();
for (; it != property.end(); ++it)
{
free(it->first);
free(it->second);
}
property.clear();
}
const char* KeyValueConfig::getProperty(const char *key, bool toLower) const
{
char *get_key = const_cast<char*>(key);
if (toLower) get_key = strLower(key);
PropertyList::const_iterator search = property.find(get_key);
if (toLower) free(get_key);
if (search == property.end()) return NULL;
return search->second;
}
bool KeyValueConfig::parseString(const char *string, bool toLower)
{
if (string == NULL) return false;
enum { WAIT_FOR_KEY, PARSE_KEY, WAIT_FOR_VALUE, PARSE_VALUE };
int mode = WAIT_FOR_KEY;
size_t len = strlen(string);
const char *cur = string;
const char *cur_begin = NULL;
char *cur_key = NULL;
char *cur_value = NULL;
for (size_t i = 0; i < len; i++) {
//fprintf(stderr, "parsing '%c' mode %i\n", *cur, mode);
switch (mode) {
case WAIT_FOR_KEY:
if ((*cur == '=') || (*cur == ':')) {
cur_key = (char*)malloc(1);
cur_key[0] = 0;
mode = WAIT_FOR_VALUE;
}
else if ((*cur != ' ') && (*cur != ',') && (*cur != ';')) {
cur_begin = cur;
mode = PARSE_KEY;
}
break;
case PARSE_KEY:
if ((*cur == '=') || (*cur == ':') || (*cur == ',') || (*cur == ';')) {
int cur_len = (int)(cur - cur_begin);
cur_key = (char*)malloc(cur_len + 1);
strncpy(cur_key, cur_begin, cur_len);
cur_key[cur_len] = 0;
mode = WAIT_FOR_VALUE;
}
if ((*cur == ',') || (*cur == ';')) {
setProperty(cur_key, "", toLower);
free(cur_key); cur_key = NULL;
mode = WAIT_FOR_KEY;
}
break;
case WAIT_FOR_VALUE:
if ((*cur == ',') || (*cur == ';')) {
setProperty(cur_key, "", toLower);
free(cur_key); cur_key = NULL;
mode = WAIT_FOR_KEY;
}
else if ((*cur != ',') && (*cur != ';')) {
cur_begin = cur;
mode = PARSE_VALUE;
}
break;
case PARSE_VALUE:
if ((*cur == ',') || (*cur == ';')) {
int cur_len = (int)(cur - cur_begin);
cur_value = (char*)malloc(cur_len + 1);
strncpy(cur_value, cur_begin, cur_len);
cur_value[cur_len] = 0;
setProperty(cur_key, cur_value, toLower);
free(cur_key); cur_key = NULL;
free(cur_value); cur_value = NULL;
mode = WAIT_FOR_KEY;
}
break;
}
cur++;
}
if (mode == PARSE_KEY) {
int cur_len = (int)(cur - cur_begin);
cur_key = (char*)malloc(cur_len + 1);
strncpy(cur_key, cur_begin, cur_len);
cur_key[cur_len] = 0;
mode = WAIT_FOR_VALUE;
}
if (mode == WAIT_FOR_VALUE) {
setProperty(cur_key, "", toLower);
free(cur_key); cur_key = NULL;
mode = WAIT_FOR_KEY;
}
if (mode == PARSE_VALUE) {
int cur_len = (int)(cur - cur_begin);
cur_value = (char*)malloc(cur_len + 1);
strncpy(cur_value, cur_begin, cur_len);
cur_value[cur_len] = 0;
setProperty(cur_key, cur_value, toLower);
free(cur_key); cur_key = NULL;
free(cur_value); cur_value = NULL;
mode = WAIT_FOR_KEY;
}
return (mode == WAIT_FOR_KEY);
}
void KeyValueConfig::parseChoiceProperty(const char *key, const char *description, int & opt_value, const ChoiceList & choices, int verbose) const
{
const char *val = getProperty(key);
int val_i;
if (val != NULL)
{
bool success = false;
val_i = choices.getValueForChoice(val, &success);
if (success) opt_value = val_i;
else if (verbose >= 0) fprintf(stderr, "%s '%s' unknown\n", description, val);
}
else if (verbose >= 1)
{
fprintf(stderr, "no %s provided (use '%s=<x>'):\n ", description, key);
choices.listChoices();
fprintf(stderr, "\n");
}
if (verbose >= 10) fprintf(stderr, "%s: %s (%i)\n", description, choices.getChoiceForValue(opt_value), opt_value);
}
void KeyValueConfig::parseBoolProperty(const char *key, const char *description, bool & opt_value, int verbose) const
{
const char *val = getProperty(key);
if (val != NULL)
{
if (strlen(val) == 0) opt_value = true;
else opt_value = (atoi(val) == 1);
}
else if (verbose >= 1) fprintf(stderr, "no %s provided (use '%s=<x>')\n", description, key);
if (verbose >= 10) fprintf(stderr, "%s: %i\n", description, opt_value);
}
void KeyValueConfig::parseIntProperty(const char *key, const char *description, int & opt_value, int verbose) const
{
const char *val = getProperty(key);
if (val != NULL)
{
int val_i = atoi(val);
opt_value = val_i;
}
else if (verbose >= 1) fprintf(stderr, "no %s provided (use '%s=<x>')\n", description, key);
if (verbose >= 10) fprintf(stderr, "%s: %i\n", description, opt_value);
}
void KeyValueConfig::parseFltProperty(const char *key, const char *description, double & opt_value, int verbose) const
{
const char *val = getProperty(key);
double val_f;
if (val != NULL)
{
val_f = atof(val);
opt_value = val_f;
}
else if (verbose >= 1) fprintf(stderr, "no %s provided (use '%s=<x>')\n", description, key);
if (verbose >= 10) fprintf(stderr, "%s: %f\n", description, opt_value);
}
void KeyValueConfig::parseFltProperty(const char *key, const char *description, float & opt_value, int verbose) const
{
double tmp = opt_value;
parseFltProperty(key, description, tmp, verbose);
opt_value = (float)tmp;
}
void KeyValueConfig::parseStrProperty(const char *key, const char *description, const char* & opt_value, int verbose) const
{
const char *val = getProperty(key);
if (val != NULL) opt_value = val;
else if (verbose >= 1) fprintf(stderr, "no %s provided (use '%s=<x>')\n", description, key);
if (verbose >= 10) fprintf(stderr, "%s: %s\n", description, opt_value);
}
void KeyValueConfig::ChoiceList::listChoices(const char *connector) const
{
const char *conn = "";
for (List::const_iterator it = choices.begin(); it != choices.end(); ++it) {
fprintf(stderr, "%s%s", conn, it->first);
conn = connector;
}
}