-
Notifications
You must be signed in to change notification settings - Fork 252
/
Copy pathsc_ini.c
195 lines (159 loc) · 4.31 KB
/
sc_ini.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
/*
* BSD-3-Clause
*
* Based on : https://github.com/benhoyt/inih
* Copyright (C) 2009-2020, Ben Hoyt
* 2020-present Ozan Tezcan
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "sc_ini.h"
#include <ctype.h>
#include <string.h>
#ifdef _MSC_VER
#pragma warning(disable : 4996)
#endif
static char *trim_space(char *str)
{
char *end;
while (isspace((unsigned char) *str)) {
str++;
}
end = str + strlen(str) - 1;
while (end > str && isspace((unsigned char) *end)) {
end--;
}
end[1] = '\0';
return str;
}
static char *trim_comment(char *str)
{
char *s = str;
if (*s == '\0' || *s == ';' || *s == '#') {
*s = '\0';
return str;
}
while (*s && (s = strchr(s, ' ')) != NULL) {
s++;
if (*s == ';' || *s == '#') {
*s = '\0';
break;
}
}
return str;
}
static char *trim_bom(char *str)
{
unsigned char *p = (unsigned char *) str;
if (strlen(str) >= 3) {
if (p[0] == 0xEF && p[1] == 0xBB && p[2] == 0xBF) {
str += 3;
}
}
return str;
}
int sc_ini_parse(void *arg, sc_ini_on_item cb, void *arg1,
char *(*next_line)(void *, char *, size_t))
{
int rc = 0, line = 0;
char buf[SC_INI_MAX_LINE_LEN];
char section[256] = {0}, key[256] = {0};
char *head, *end;
while ((head = next_line(arg1, buf, sizeof(buf) - 1)) != NULL) {
if (++line == 1) {
head = trim_bom(head);
}
head = trim_space(trim_comment(head));
if (*head == '\0') {
continue;
}
if (head > buf && *key) {
rc = cb(arg, line, section, key, head);
} else if (*head == '[') {
if ((end = strchr(head, ']')) == NULL) {
return line;
}
*key = '\0';
*end = '\0';
strncpy(section, head + 1, sizeof(section) - 1);
} else {
if ((end = strpbrk(head, "=:")) == NULL) {
return line;
}
*end = '\0';
trim_space(head);
strncpy(key, head, sizeof(key) - 1);
rc = cb(arg, line, section, head, trim_space(end + 1));
}
if (rc != 0) {
return line;
}
}
return 0;
}
static char *file_line(void *p, char *buf, size_t size)
{
return fgets(buf, (int) size, (FILE *) p);
}
static char *string_line(void *p, char *buf, size_t size)
{
size_t len, diff;
char *t, *str = (*(char **) p);
if (str == NULL || *str == '\0') {
return NULL;
}
t = strchr(str, '\n');
if (t == NULL) {
t = str + strlen(str);
}
diff = (size_t) (t - str);
len = diff < size ? diff : size;
memcpy(buf, str, len);
buf[len] = '\0';
*(char **) p = (*t == '\0') ? '\0' : t + 1;
return buf;
}
int sc_ini_parse_file(void *arg, sc_ini_on_item cb, const char *filename)
{
int rc;
FILE *file;
file = fopen(filename, "rb");
if (!file) {
return -1;
}
rc = sc_ini_parse(arg, cb, file, file_line);
if (rc == 0) {
rc = ferror(file) != 0 ? -1 : 0;
}
fclose(file);
return rc;
}
int sc_ini_parse_string(void *arg, sc_ini_on_item cb, const char *str)
{
char *ptr = (char *) str;
return sc_ini_parse(arg, cb, &ptr, string_line);
}