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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
/*
_inifile.c
C INI file reader
Modification history:
21-Jan-2004 P.C. Moved across from the original EMC source tree.
*/
#include "inifile.h"
#include <stdio.h> /* FILE *, fopen(), fclose(), NULL */
#include <string.h> /* strlen(), etc. */
#include <ctype.h> /* isspace() */
/********************************************************************
*
* Description: const char *afterequal(const char *string)
* Ignoring any tabs, spaces or other white spaces,
* finds the first character after an '='.
*
* Return Value: NULL or pointer to first non-white char after an '='
*
* Side Effects: None.
*
* Called By: iniFind() and iniSection()
*
********************************************************************/
static const char *afterequal(const char *string)
{
const char *spot = string; /* non-reentrant */
for (;;) {
if (*spot == '=') {
/* = is there-- return next non-white, or NULL if not there */
for (;;) {
spot++;
if (0 == *spot) {
/* ran out */
return NULL;
} else if (*spot != ' ' && *spot != '\t' && *spot != '\r'
&& *spot != '\n') {
/* matched! */
return spot;
} else {
/* keep going for the text */
continue;
}
}
} else if (*spot == 0) {
/* end of string */
return NULL;
} else {
/* haven't seen '=' yet-- keep going */
spot++;
continue;
}
}
}
/* returns ptr to first non-white in string, or NULL if it's all white */
/********************************************************************
*
* Description: char *skipwhite(char *string)
* Finds the first non-white character on a new line
* and returns a pointer.
* Ignores any line that starts with a comment char
* i.e. a ';' or '#'.
*
* Return Value: NULL if not found or a valid pointer.
*
* Side Effects: None.
*
* Called By: findSection() iniFind() iniSection()
*
********************************************************************/
static char *skipwhite(char *string)
{
for (;;) {
if (*string == 0) {
return NULL;
}
if ((*string == ';') || (*string == '#')) {
return NULL;
}
if (*string != ' ' && *string != '\t' && *string != '\r'
&& *string != '\n') {
return string;
}
string++;
}
}
/********************************************************************
*
* Description: findSection(void *fp, const char *section)
* Positions the pointer to the first line after a
* [section] tag.
*
* Return Value: Returns zero on success or -1 if tag not found or EOF reached.
*
* Side Effects:
*
* Called By: iniSection()
*
********************************************************************/
static int findSection(void *fp, const char *section)
{
static char line[INIFILE_MAX_LINELEN + 2]; /* 1 for newline, 1 for NULL */
static char bracketsection[INIFILE_MAX_LINELEN + 2];
char *nonwhite;
/* check valid file */
if (NULL == fp) {
return -1;
}
/* start from beginning */
rewind((FILE *) fp);
/* if section is NULL, we're already positioned */
if (NULL == section) {
return 0;
}
/* wrap section in brackets, so it matches */
sprintf(bracketsection, "[%s]", section);
/* find [section], and position fp just after it */
while (!feof((FILE *) fp)) {
if (NULL == fgets(line, INIFILE_MAX_LINELEN + 1, (FILE *) fp)) {
/* got to end of file without finding it */
return -1;
}
/* got a line-- check it for real data, not comment or blank line */
if (NULL == (nonwhite = skipwhite(line))) {
/* blank line-- skip it */
continue;
}
/* not a blank line-- compare with section tag */
if (0 != strncmp(bracketsection, nonwhite, strlen(bracketsection))) {
/* not on this line */
continue;
}
/* else it matches-- fp is now set up for search on tag */
return 0;
}
/* didn't find it */
return -1;
}
/********************************************************************
*
* Description: char *iniFind(void *fp, const char *tag, const char *section)
* Locates the start of a string associated with a tag.
*
* e.g., in a file that contains
*
* PRINTER=fred
*
* iniFind("PRINTER"); would return "fred", and
* iniFind("printer"); would return NULL.
*
* Return Value: NULL if not found or a string.
*
* Side Effects: The file pointer is undefined upon return.
*
* Called By: inivar.c inifile.cc usrmotintf.c
*
********************************************************************/
const char *iniFind(void *fp, const char *tag, const char *section)
{
static char line[INIFILE_MAX_LINELEN + 2]; /* 1 for newline, 1 for NULL */
static char bracketsection[INIFILE_MAX_LINELEN + 2];
char *nonwhite;
int newlinepos; /* position of newline to strip */
int len;
char tagend;
char *value_string;
char *end_value_string;
/* check valid file */
if (NULL == fp)
return NULL;
/* start from beginning */
rewind((FILE *) fp);
/* check for section first-- if it's non-NULL, then position file at line
after [section] */
if (NULL != section) {
sprintf(bracketsection, "[%s]", section);
/* find [section], and position fp just after it */
while (!feof((FILE *) fp)) {
if (NULL == fgets(line, INIFILE_MAX_LINELEN + 1, (FILE *) fp)) {
/* got to end of file without finding it */
return NULL;
}
/* got a line */
/* strip off newline */
newlinepos = strlen(line) - 1; /* newline is on back from 0 */
if (newlinepos < 0) {
newlinepos = 0;
}
if (line[newlinepos] == '\n') {
line[newlinepos] = 0; /* make the newline 0 */
}
if (NULL == (nonwhite = skipwhite(line))) {
/* blank line-- skip */
continue;
}
/* not a blank line, and nonwhite is first char */
if (0 !=
strncmp(bracketsection, nonwhite, strlen(bracketsection))) {
/* not on this line */
continue;
}
/* it matches-- fp is now set up for search on tag */
break;
}
}
while (!feof((FILE *) fp)) {
/* check for end of file */
if (NULL == fgets(line, INIFILE_MAX_LINELEN + 1, (FILE *) fp)) {
/* got to end of file without finding it */
return NULL;
}
/* got a line */
/* strip off newline */
newlinepos = strlen(line) - 1; /* newline is on back from 0 */
if (newlinepos < 0) {
newlinepos = 0;
}
if (line[newlinepos] == '\n') {
line[newlinepos] = 0; /* make the newline 0 */
}
/* skip leading whitespace */
if (NULL == (nonwhite = skipwhite(line))) {
/* blank line-- skip */
continue;
}
/* check for '[' char-- if so, it's a section tag, and we're out of
our section */
if (NULL != section && nonwhite[0] == '[') {
return NULL;
}
len = strlen(tag);
if (0 != strncmp(tag, nonwhite, len)) {
/* not on this line */
continue;
}
/* it matches the first part of the string-- if whitespace or = is
next char then call it a match */
tagend = nonwhite[len];
if (tagend == ' ' || tagend == '\r' || tagend == '\t'
|| tagend == '\n' || tagend == '=') {
/* it matches-- return string after =, or NULL */
nonwhite += len;
value_string = (char *) afterequal(nonwhite); /* Cast is
needed
because we
are
discarding
the const.
*/
/* Eliminate white space at the end of a line also. */
if (NULL == value_string) {
return NULL;
}
end_value_string = value_string + strlen(value_string) - 1;
while (*end_value_string == ' ' || *end_value_string == '\t'
|| *end_value_string == '\r') {
*end_value_string = 0;
end_value_string--;
}
return value_string;
}
/* else continue */
}
return NULL;
}
/*
Returns number of entries found; 0 if section is there but no entries
in it, or -1 if section is not there.
*/
/********************************************************************
*
* Description: iniSection(void *fp, const char *section, INIFILE_ENTRY array[], int max)
* Given 'section' and array of strings, fills strings with
* what was found in the section, one line per string.
* Comments and blank lines are omitted. 'array' is assumed
* to be allocated, of 'max' entries of size
* INIFILE_MAX_LINELEN.
*
* Return Value: Number of entries found, zero if none found, or
* -1 if no section.
*
* Side Effects:
*
* Called By: inifile.cc
*
********************************************************************/
int iniSection(void *fp, const char *section, INIFILE_ENTRY array[], int max)
{
static char line[INIFILE_MAX_LINELEN + 2]; /* 1 for newline, 1 for NULL */
int count = 0;
char *nonwhite;
int newlinepos;
const char *entry;
if (NULL == fp) {
return -1;
}
/* position at section */
if (-1 == findSection(fp, section)) {
/* didn't find it */
return -1;
}
/* found section-- start loading lines */
while (!feof((FILE *) fp) && count < max) {
if (NULL == fgets(line, INIFILE_MAX_LINELEN + 1, (FILE *) fp)) {
/* got to end of file without finding it */
return count;
}
/* got a line-- check for blank */
if (NULL == (nonwhite = skipwhite(line))) {
continue;
}
/* check for new section-- if so, we're done */
if ('[' == *nonwhite) {
return count;
}
/* strip off newline */
newlinepos = strlen(line) - 1; /* newline is one back from 0 */
if (newlinepos < 0) {
newlinepos = 0;
}
if (line[newlinepos] == '\n') {
line[newlinepos] = 0; /* make the newline 0 */
}
/* it's a valid line-- copy into entry struct */
/* read first tag */
sscanf(line, "%s", array[count].tag);
/* copy everything after equal to the rest */
entry = afterequal(line);
if (NULL != entry) {
strcpy(array[count].rest, afterequal(line));
} else {
array[count].rest[0] = 0; /* make it the empty string */
}
count++;
}
/* got to end of file */
return count;
}
|