blob: f3eabf5f6e5404c17f48ced03e891f72c8694316 (
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
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
|
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
char *read_file(const char *filename, long *size) {
FILE *fp = fopen(filename, "r");
long filesize = 0;
char *buf;
if (fp == NULL) {
fclose(fp);
return NULL;
}
if (fseek(fp, 0L, SEEK_END)) {
fclose(fp);
return NULL;
}
filesize = ftell(fp);
if (filesize < 0) {
fclose(fp);
return NULL;
}
buf = malloc(filesize+1);
if (buf == NULL) {
fclose(fp);
free(cfg);
return NULL;
}
memset(buf, 0, filesize+1);
rewind(fp);
fread(buf, sizeof(char), filesize, fp);
fclose(fp);
*size = filesize;
return buf;
}
char *get_line(char **str) {
char *s;
size_t i;
for (i = 0; *str[i] != '\n' && *str[i] != '\0'; i++);
s = malloc(i+1);
memset(s, 0, i+1);
memcpy(s, *str, i);
str += i;
return s;
}
config *parse_config(const char *filename) {
long filesize = 0;
config *cfg;
char *buf = read_file(filename, &filesize);
if (buf == NULL) {
return NULL;
}
cfg = malloc(sizeof(config));
if (cfg == NULL) {
free(buf);
return NULL;
}
while (*buf != '\0') {
char *line = get_line(&buf);
char *value;
char *name = strtok_r(line, "=", &value);
}
}
|