-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasy_config.c
313 lines (246 loc) · 5.31 KB
/
easy_config.c
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include "easy_config.h"
EConfig* econfig_init(const char* file, void* user_param) {
EConfig* config = malloc(sizeof(EConfig));
config->file = file;
config->lastid = 0;
config->categories = NULL;
config->delim = "=";
config->user_param = user_param;
return config;
}
unsigned econfig_addCategory(EConfig* config, const char* category) {
// malloc
ECCategory* cat = malloc(sizeof(ECCategory));
cat->name = category;
cat->id = config->lastid;
cat->params = NULL;
cat->next = NULL;
config->lastid++;
if (config->categories) {
ECCategory* c = config->categories;
while (c->next) {
c = c->next;
}
c->next = cat;
} else {
config->categories = cat;
}
return cat->id;
}
void econfig_createParam(ECCategory* cat, const char* param, void* f) {
ECParam* eparam = malloc(sizeof(ECParam));
eparam->name = param;
eparam->f = f;
eparam->next = NULL;
if (cat->params) {
ECParam* next = cat->params;
while (next->next) {
next = next->next;
}
next->next = eparam;
} else {
cat->params = eparam;
}
}
int econfig_addParam(EConfig* config, unsigned category, const char* param, void* f) {
ECCategory* next = config->categories;
while(next) {
if (next->id == category) {
econfig_createParam(next, param, f);
return 1;
}
next = next->next;
}
return 0;
}
void econfig_free_param(ECParam* param) {
if (!param) {
return;
}
econfig_free_param(param->next);
free(param);
}
void econfig_free_category(ECCategory* cat) {
if (!cat) {
return;
}
econfig_free_category(cat->next);
econfig_free_param(cat->params);
free(cat);
}
void econfig_free(EConfig* config) {
econfig_free_category(config->categories);
free(config);
}
char* econfig_trimWhitespaces(char* line) {
while (strlen(line) > 0 && isspace(line[0])) {
line++;
}
unsigned i = strlen(line);
while (i > 0 && isspace(line[i - 1])) {
line[i - 1] = 0;
i--;
}
return line;
}
int econfig_isComment(char* line) {
// for us empty string is a comment
if (strlen(line) < 1) {
return 1;
}
switch (line[0]) {
case '/':
if (strlen(line) < 2 || line[1] != '/') {
return 0;
}
case '#':
case ';':
return 1;
default:
return 0;
}
}
int econfig_parseCategory(EConfig* config, char* line) {
int len = strlen(line);
// check empty category
if (len < 2) {
return EC_PARSING_ERROR;
}
// missing close bracket
if (line[len - 1] != ']') {
return EC_PARSING_ERROR;
}
line[len -1] = 0;
line++;
ECCategory* cat = config->categories;
while (cat) {
if (!strcmp(cat->name, line)) {
return cat->id;
}
cat = cat->next;
}
return EC_CAT_NOT_FOUND;
}
ECCategory* econfig_getCategory(EConfig* config, unsigned category) {
ECCategory* cat = config->categories;
while (cat) {
if (cat->id == category) {
return cat;
}
cat = cat->next;
}
return NULL;
}
int econfig_parseParam(EConfig* config, char* key, char* value) {
ECCategory* cat = econfig_getCategory(config, config->lastid);
if (!cat) {
return EC_PARSING_ERROR;
}
ECParam* param = cat->params;
while (param) {
if (!strcmp(param->name, key)) {
int (*f)(const char* category, char* key, char* value, EConfig* econfig, void* config) = param->f;
return f(cat->name, key, value, config, config->user_param);
}
param = param->next;
}
return EC_KEY_NOT_FOUND;
}
char* econfig_trimQuotes(char* str) {
unsigned len = strlen(str);
if (len < 2) {
return str;
}
if (str[0] != '"' || str[len -1] != '"') {
return str;
}
str[len - 1] = 0;
str++;
return str;
}
int econfig_parseLine(EConfig* config, char* line, size_t len) {
// trim
line = econfig_trimWhitespaces(line);
//comment
if (econfig_isComment(line)) {
return EC_SUCCESS;
}
// category
if (line[0] == '[') {
config->lastid = econfig_parseCategory(config, line);
if (config->lastid < 0) {
return config->lastid;
} else {
return EC_SUCCESS;
}
}
len = strlen(line);
// split
char* key = strtok(line, config->delim);
if (!key) {
return EC_PARSING_ERROR;
}
if (len <= strlen(key) + 1) {
return EC_PARSING_ERROR;
}
char* value = line + strlen(key) + 1;
// trim splits
key = econfig_trimWhitespaces(key);
key = econfig_trimQuotes(key);
value = econfig_trimWhitespaces(value);
value = econfig_trimQuotes(value);
// check key
return econfig_parseParam(config, key, value);
}
int econfig_parse(EConfig* config) {
FILE* file;
if (config->file == NULL) {
file = stdin;
} else {
file = fopen(config->file, "r");
}
if (!file) {
return EC_CANNOT_OPEN_FILE;
}
char* line = NULL;
size_t len = 0;
int out = 0;
ssize_t read = 0;
while ((read = getline(&line, &len, file)) != -1) {
if ((out = econfig_parseLine(config, line, len)) < 0) {
free(line);
return out;
}
}
free(line);
fclose(file);
return EC_SUCCESS;
}
int econfig_getInt(char* value) {
return strtol(value, NULL, 10);
}
unsigned int econfig_getUnsignedInt(char* value) {
return strtoul(value, NULL, 10);
}
bool econfig_getBoolean(char* value) {
/* first to lower case*/
unsigned len = strlen(value);
int i;
for (i = 0; i < len; i++) {
value[i] = tolower(value[i]);
}
if (strcmp(value, "true")) {
return true;
} else if (strcmp(value, "false")) {
return false;
} else if (strcmp(value, "1")) {
return true;
} else if (strcmp(value, "0")) {
return false;
}
return 0;
}