2 * inih -- simple .INI file parser
4 * The "inih" library is distributed under the New BSD license:
6 * Copyright (c) 2009, Brush Technology - All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
11 * * Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * * Neither the name of Brush Technology nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY BRUSH TECHNOLOGY ''AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
23 * EVENT SHALL BRUSH TECHNOLOGY BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 * http://code.google.com/p/inih/
37 #include <common/common.h>
45 #define MAX_SECTION 50
48 /* Strip whitespace chars off end of given string, in place. Return s. */
49 static char* rstrip(char* s
)
51 char* p
= s
+ strlen(s
);
53 while (p
> s
&& isspace((unsigned char)(*--p
)))
58 /* Return pointer to first non-whitespace char in given string. */
59 static char* lskip(const char* s
)
61 while (*s
&& isspace((unsigned char)(*s
)))
67 * Return pointer to first char c or ';' comment in given string, or pointer to
68 * null at end of string if neither found. ';' must be prefixed by a whitespace
69 * character to register as a comment.
71 static char* find_char_or_comment(const char* s
, char c
)
73 int was_whitespace
= 0;
75 while (*s
&& *s
!= c
&& !(was_whitespace
&& *s
== ';')) {
76 was_whitespace
= isspace((unsigned char)(*s
));
82 /* Version of strncpy that ensures dest (size bytes) is null-terminated. */
83 static char* strncpy0(char* dest
, const char* src
, size_t size
)
85 strncpy(dest
, src
, size
- 1);
86 dest
[size
- 1] = '\0';
90 /* See documentation in header file. */
92 int ini_parse_file(FILE* file
, ini_entry_handler handler
, void* user
)
94 /* Uses a fair bit of stack (use heap instead if you need to) */
96 char line
[INI_MAX_LINE
];
100 char section
[MAX_SECTION
] = "";
101 char prev_name
[MAX_NAME
] = "";
111 line
= (char*)zmalloc(INI_MAX_LINE
);
117 /* Scan through file line by line */
118 while (fgets(line
, INI_MAX_LINE
, file
) != NULL
) {
123 if (lineno
== 1 && (unsigned char)start
[0] == 0xEF &&
124 (unsigned char)start
[1] == 0xBB &&
125 (unsigned char)start
[2] == 0xBF) {
129 start
= lskip(rstrip(start
));
131 if (*start
== ';' || *start
== '#') {
133 * Per Python ConfigParser, allow '#' comments at
137 #if INI_ALLOW_MULTILINE
138 else if (*prev_name
&& *start
&& start
> line
) {
139 /* Non-black line with leading whitespace, treat as
140 * continuation of previous name's value
141 * (as per Python ConfigParser).
143 if (handler(user
, section
, prev_name
, start
) < 0 &&
149 else if (*start
== '[') {
150 /* A "[section]" line */
151 end
= find_char_or_comment(start
+ 1, ']');
154 strncpy0(section
, start
+ 1, sizeof(section
));
158 /* No ']' found on section line */
162 else if (*start
&& *start
!= ';') {
163 /* Not a comment, must be a name[=:]value pair */
164 end
= find_char_or_comment(start
, '=');
166 end
= find_char_or_comment(start
, ':');
168 if (*end
== '=' || *end
== ':') {
170 name
= rstrip(start
);
171 value
= lskip(end
+ 1);
172 end
= find_char_or_comment(value
, '\0');
180 * Valid name[=:]value pair found, call
183 strncpy0(prev_name
, name
, sizeof(prev_name
));
184 if (handler(user
, section
, name
, value
) < 0 &&
190 /* No '=' or ':' found on name[=:]value line */
203 /* See documentation in header file. */
205 int ini_parse(const char* filename
, ini_entry_handler handler
, void* user
)
210 file
= fopen(filename
, "r");
215 error
= ini_parse_file(file
, handler
, user
);