Freeciv-3.2
Loading...
Searching...
No Matches
registry_ini.h
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12***********************************************************************/
13#ifndef FC__REGISTRY_INI_H
14#define FC__REGISTRY_INI_H
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
20/* utility */
21#include "ioz.h"
22#include "support.h" /* bool type and fc__attribute */
23
24/* Opaque types. */
25struct section_file;
26struct section;
27struct entry;
28
29/* Typedefs. */
30typedef const void *secfile_data_t;
31
32typedef bool (*secfile_enum_is_valid_fn_t) (int enumerator);
33typedef const char * (*secfile_enum_name_fn_t) (int enumerator);
34typedef int (*secfile_enum_by_name_fn_t) (const char *enum_name,
35 int (*strcmp_fn)(const char *,
36 const char *));
38typedef int (*secfile_enum_next_fn_t) (int enumerator);
39typedef const char * (*secfile_enum_name_data_fn_t) (secfile_data_t data,
40 int enumerator);
41
42/* Create a 'struct section_list' and related functions: */
43#define SPECLIST_TAG section
44#include "speclist.h"
45#define section_list_iterate(seclist, psection) \
46 TYPED_LIST_ITERATE(struct section, seclist, psection)
47#define section_list_iterate_end LIST_ITERATE_END
48#define section_list_iterate_rev(seclist, psection) \
49 TYPED_LIST_ITERATE_REV(struct section, seclist, psection)
50#define section_list_iterate_rev_end LIST_ITERATE_REV_END
51
52/* Create a 'struct entry_list' and related functions: */
53#define SPECLIST_TAG entry
54#include "speclist.h"
55#define entry_list_iterate(entlist, pentry) \
56 TYPED_LIST_ITERATE(struct entry, entlist, pentry)
57#define entry_list_iterate_end LIST_ITERATE_END
58
59/* Main functions. */
60struct section_file *secfile_load_section(const char *filename,
61 const char *section,
62 bool allow_duplicates);
64 bool allow_duplicates);
65
66bool secfile_save(const struct section_file *secfile, const char *filename,
68void secfile_check_unused(const struct section_file *secfile);
69const char *secfile_name(const struct section_file *secfile);
70
72
73/* Insertion functions. */
75 bool value, const char *comment,
76 bool allow_replace,
77 const char *path, ...)
79#define secfile_insert_bool(secfile, value, path, ...) \
80 secfile_insert_bool_full(secfile, value, NULL, FALSE, \
81 path, ## __VA_ARGS__)
82#define secfile_insert_bool_comment(secfile, value, comment, path, ...) \
83 secfile_insert_bool_full(secfile, value, comment, FALSE, \
84 path, ## __VA_ARGS__)
85#define secfile_replace_bool(secfile, value, path, ...) \
86 secfile_insert_bool_full(secfile, value, NULL, TRUE, \
87 path, ## __VA_ARGS__)
88#define secfile_replace_bool_comment(secfile, value, comment, path, ...) \
89 secfile_insert_bool_full(secfile, value, comment, TRUE, \
90 path, ## __VA_ARGS__)
92 const bool *values, size_t dim,
93 const char *comment, bool allow_replace,
94 const char *path, ...)
96#define secfile_insert_bool_vec(secfile, values, dim, path, ...) \
97 secfile_insert_bool_vec_full(secfile, values, dim, NULL, FALSE, \
98 path, ## __VA_ARGS__)
99#define secfile_insert_bool_vec_comment(secfile, values, dim, \
100 comment, path, ...) \
101 secfile_insert_bool_vec_full(secfile, values, dim, comment, FALSE, \
102 path, ## __VA_ARGS__)
103#define secfile_replace_bool_vec(secfile, values, dim, path, ...) \
104 secfile_insert_bool_vec_full(secfile, values, dim, NULL, TRUE, \
105 path, ## __VA_ARGS__)
106#define secfile_replace_bool_vec_comment(secfile, values, dim, \
107 comment, path, ...) \
108 secfile_insert_bool_vec_full(secfile, values, comment, TRUE, \
109 path, ## __VA_ARGS__)
110
112 int value, const char *comment,
113 bool allow_replace,
114 const char *path, ...)
116#define secfile_insert_int(secfile, value, path, ...) \
117 secfile_insert_int_full(secfile, value, NULL, FALSE, \
118 path, ## __VA_ARGS__)
119#define secfile_insert_int_comment(secfile, value, comment, path, ...) \
120 secfile_insert_int_full(secfile, value, comment, FALSE, \
121 path, ## __VA_ARGS__)
122#define secfile_replace_int(secfile, value, path, ...) \
123 secfile_insert_int_full(secfile, value, NULL, TRUE, \
124 path, ## __VA_ARGS__)
125#define secfile_replace_int_comment(secfile, value, comment, path, ...) \
126 secfile_insert_int_full(secfile, value, comment, TRUE, \
127 path, ## __VA_ARGS__)
129 const int *values, size_t dim,
130 const char *comment, bool allow_replace,
131 const char *path, ...)
133#define secfile_insert_int_vec(secfile, values, dim, path, ...) \
134 secfile_insert_int_vec_full(secfile, values, dim, NULL, FALSE, \
135 path, ## __VA_ARGS__)
136#define secfile_insert_int_vec_comment(secfile, values, dim, \
137 comment, path, ...) \
138 secfile_insert_int_vec_full(secfile, values, dim, comment, FALSE, \
139 path, ## __VA_ARGS__)
140#define secfile_replace_int_vec(secfile, values, dim, path, ...) \
141 secfile_insert_int_vec_full(secfile, values, dim, NULL, TRUE, \
142 path, ## __VA_ARGS__)
143#define secfile_replace_int_vec_comment(secfile, values, dim, \
144 comment, path, ...) \
145 secfile_insert_int_vec_full(secfile, values, dim, comment, TRUE, \
146 path, ## __VA_ARGS__)
147
149 float value, const char *comment,
150 bool allow_replace,
151 const char *path, ...)
153#define secfile_insert_float(secfile, value, path, ...) \
154 secfile_insert_float_full(secfile, value, NULL, FALSE, \
155 path, ## __VA_ARGS__)
156
158 const char *filename);
159
161 const char *comment);
162
164 const char *str,
165 const char *comment,
166 bool allow_replace, bool no_escape,
167 enum entry_special_type stype,
168 const char *path, ...)
170#define secfile_insert_str(secfile, string, path, ...) \
171 secfile_insert_str_full(secfile, string, NULL, FALSE, FALSE, FALSE, \
172 path, ## __VA_ARGS__)
173#define secfile_insert_str_noescape(secfile, string, path, ...) \
174 secfile_insert_str_full(secfile, string, NULL, FALSE, TRUE, FALSE, \
175 path, ## __VA_ARGS__)
176#define secfile_insert_str_comment(secfile, string, comment, path, ...) \
177 secfile_insert_str_full(secfile, string, comment, FALSE, TRUE, FALSE, \
178 path, ## __VA_ARGS__)
179#define secfile_insert_str_noescape_comment(secfile, string, \
180 comment, path, ...) \
181 secfile_insert_str_full(secfile, string, comment, FALSE, TRUE, FALSE, \
182 path, ## __VA_ARGS__)
183#define secfile_replace_str(secfile, string, path, ...) \
184 secfile_insert_str_full(secfile, string, NULL, TRUE, FALSE, FALSE, \
185 path, ## __VA_ARGS__)
186#define secfile_replace_str_noescape(secfile, string, path, ...) \
187 secfile_insert_str_full(secfile, string, NULL, TRUE, TRUE, FALSE, \
188 path, ## __VA_ARGS__)
189#define secfile_replace_str_comment(secfile, string, comment, path, ...) \
190 secfile_insert_str_full(secfile, string, comment, TRUE, TRUE, FALSE, \
191 path, ## __VA_ARGS__)
192#define secfile_replace_str_noescape_comment(secfile, string, \
193 comment, path, ...) \
194 secfile_insert_str_full(secfile, string, comment, TRUE, TRUE, FALSE, \
195 path, ## __VA_ARGS__)
197 const char *const *strings, size_t dim,
198 const char *comment, bool allow_replace,
199 bool no_escape, const char *path, ...)
201#define secfile_insert_str_vec(secfile, strings, dim, path, ...) \
202 secfile_insert_str_vec_full(secfile, strings, dim, NULL, FALSE, FALSE, \
203 path, ## __VA_ARGS__)
204#define secfile_insert_str_vec_noescape(secfile, strings, dim, path, ...) \
205 secfile_insert_str_vec_full(secfile, strings, dim, NULL, FALSE, TRUE, \
206 path, ## __VA_ARGS__)
207#define secfile_insert_str_vec_comment(secfile, strings, dim, \
208 comment, path, ...) \
209 secfile_insert_str_vec_full(secfile, strings, dim, comment, FALSE, TRUE, \
210 path, ## __VA_ARGS__)
211#define secfile_insert_str_vec_noescape_comment(secfile, strings, dim, \
212 comment, path, ...) \
213 secfile_insert_str_vec_full(secfile, strings, dim, comment, FALSE, TRUE, \
214 path, ## __VA_ARGS__)
215#define secfile_replace_str_vec(secfile, strings, dim, path, ...) \
216 secfile_insert_str_vec_full(secfile, strings, dim, NULL, TRUE, FALSE, \
217 path, ## __VA_ARGS__)
218#define secfile_replace_str_vec_noescape(secfile, strings, dim, path, ...) \
219 secfile_insert_str_vec_full(secfile, strings, dim, NULL, TRUE, TRUE, \
220 path, ## __VA_ARGS__)
221#define secfile_replace_str_vec_comment(secfile, strings, dim, \
222 comment, path, ...) \
223 secfile_insert_str_vec_full(secfile, strings, dim, comment, TRUE, TRUE, \
224 path, ## __VA_ARGS__)
225#define secfile_replace_str_vec_noescape_comment(secfile, strings, dim, \
226 comment, path, ...) \
227 secfile_insert_str_vec_full(secfile, strings, dim, comment, TRUE, TRUE, \
228 path, ## __VA_ARGS__)
229
231 int enumerator,
233 const char *comment,
234 bool allow_replace,
235 const char *path, ...)
238 int bitwise_val,
243 const char *comment,
244 bool allow_replace,
245 const char *path, ...)
247#define secfile_insert_enum_full(secfile, enumerator, specenum_type, \
248 comment, allow_replace, path, ...) \
249(specenum_type##_is_bitwise() \
250 ? secfile_insert_bitwise_enum_full(secfile, enumerator, \
251 (secfile_enum_name_fn_t) \
252 specenum_type##_name, \
253 (secfile_enum_iter_fn_t) \
254 specenum_type##_begin, \
255 (secfile_enum_iter_fn_t) \
256 specenum_type##_end, \
257 (secfile_enum_next_fn_t) \
258 specenum_type##_next, \
259 comment, allow_replace, \
260 path, ## __VA_ARGS__) \
261 : secfile_insert_plain_enum_full(secfile, enumerator, \
262 (secfile_enum_name_fn_t) \
263 specenum_type##_name, \
264 comment, allow_replace, \
265 path, ## __VA_ARGS__))
266#define secfile_insert_enum(secfile, enumerator, specenum_type, path, ...) \
267 secfile_insert_enum_full(secfile, enumerator, specenum_type, NULL, FALSE, \
268 path, ## __VA_ARGS__)
269#define secfile_insert_enum_comment(secfile, enumerator, specenum_type, \
270 comment, path, ...) \
271 secfile_insert_enum_full(secfile, enumerator, specenum_type, comment, \
272 FALSE, path, ## __VA_ARGS__)
273#define secfile_replace_enum(secfile, enumerator, specenum_type, path, ...) \
274 secfile_insert_enum_full(secfile, enumerator, specenum_type, NULL, TRUE, \
275 path, ## __VA_ARGS__)
276#define secfile_replace_enum_comment(secfile, enumerator, specenum_type, \
277 comment, path, ...) \
278 secfile_insert_enum_full(secfile, enumerator, specenum_type, comment, \
279 TRUE, path, ## __VA_ARGS__)
281 const int *enumurators, size_t dim,
283 const char *comment,
284 bool allow_replace,
285 const char *path, ...)
288 const int *bitwise_vals,
289 size_t dim,
294 const char *comment,
295 bool allow_replace,
296 const char *path, ...)
298#define secfile_insert_enum_vec_full(secfile, enumerators, dim, \
299 specenum_type, comment, allow_replace, \
300 path, ...) \
301(specenum_type##_is_bitwise() \
302 ? secfile_insert_bitwise_enum_vec_full(secfile, (const int *) enumerators, \
303 dim, \
304 (secfile_enum_name_fn_t) \
305 specenum_type##_name, \
306 (secfile_enum_iter_fn_t) \
307 specenum_type##_begin, \
308 (secfile_enum_iter_fn_t) \
309 specenum_type##_end, \
310 (secfile_enum_next_fn_t) \
311 specenum_type##_next, \
312 comment, allow_replace, \
313 path, ## __VA_ARGS__) \
314 : secfile_insert_plain_enum_vec_full(secfile, (const int *) enumerators, \
315 dim, \
316 (secfile_enum_name_fn_t) \
317 specenum_type##_name, \
318 comment, allow_replace, \
319 path, ## __VA_ARGS__))
320#define secfile_insert_enum_vec(secfile, enumerators, dim, specenum_type, \
321 path, ...) \
322 secfile_insert_enum_vec_full(secfile, enumerators, dim, specenum_type, \
323 NULL, FALSE, path, ## __VA_ARGS__)
324#define secfile_insert_enum_vec_comment(secfile, enumerators, dim, \
325 specenum_type, comment, path, ...) \
326 secfile_insert_enum_vec_full(secfile, enumerators, dim, specenum_type, \
327 comment, FALSE, path, ## __VA_ARGS__)
328#define secfile_replace_enum_vec(secfile, enumerators, dim, specenum_type, \
329 path, ...) \
330 secfile_insert_enum_vec_full(secfile, enumerators, dim, specenum_type, \
331 NULL, TRUE, path, ## __VA_ARGS__)
332#define secfile_replace_enum_vec_comment(secfile, enumerators, dim, \
333 specenum_type, comment, path, ...) \
334 secfile_insert_enum_vec_full(secfile, enumerators, dim, specenum_type, \
335 comment, TRUE, path, ## __VA_ARGS__)
336
338 int value, bool bitwise,
340 secfile_data_t data,
341 const char *comment,
342 bool allow_replace,
343 const char *path, ...)
345#define secfile_insert_enum_data(secfile, value, bitwise, name_fn, data, \
346 path, ...) \
347 secfile_insert_enum_data_full(secfile, value, bitwise, name_fn, data, \
348 NULL, FALSE, path, ## __VA_ARGS__)
349#define secfile_insert_enum_data_comment(secfile, value, bitwise, name_fn, \
350 data, path, ...) \
351 secfile_insert_enum_data_full(secfile, value, bitwise, name_fn, data, \
352 comment, FALSE, path, ## __VA_ARGS__)
353#define secfile_replace_enum_data(secfile, value, bitwise, name_fn, data, \
354 path, ...) \
355 secfile_insert_enum_data_full(secfile, value, bitwise, name_fn, data, \
356 NULL, TRUE, path, ## __VA_ARGS__)
357#define secfile_replace_enum_data_comment(secfile, value, bitwise, name_fn, \
358 data, path, ...) \
359 secfile_insert_enum_data_full(secfile, value, bitwise, name_fn, data, \
360 comment, TRUE, path, ## __VA_ARGS__)
362 const int *values, size_t dim,
363 bool bitwise,
365 secfile_data_t data,
366 const char *comment,
367 bool allow_replace,
368 const char *path, ...)
370#define secfile_insert_enum_vec_data(secfile, values, dim, bitwise, \
371 name_fn, data, path, ...) \
372 secfile_insert_enum_vec_data_full(secfile, values, dim, bitwise, name_fn, \
373 data, NULL, FALSE, path, ## __VA_ARGS__)
374#define secfile_insert_enum_vec_data_comment(secfile, values, dim, bitwise, \
375 name_fn, data, path, ...) \
376 secfile_insert_enum_vec_data_full(secfile, values, dim, bitwise, name_fn, \
377 data, comment, FALSE, path, \
378 ## __VA_ARGS__)
379#define secfile_replace_enum_vec_data(secfile, values, dim, bitwise, \
380 name_fn, data, path, ...) \
381 secfile_insert_enum_vec_data_full(secfile, values, dim, bitwise, name_fn, \
382 data, NULL, TRUE, path, ## __VA_ARGS__)
383#define secfile_replace_enum_vec_data_comment(secfile, values, dim, \
384 bitwise, name_fn, data, path, \
385 ...) \
386 secfile_insert_enum_vec_data_full(secfile, values, dim, bitwise, name_fn, \
387 data, comment, TRUE, path, \
388 ## __VA_ARGS__)
389
391 const char *filename,
392 const char *path, ...)
394
396 const char *str,
397 const char *path, ...)
399
400/* Deletion function. */
402 const char *path, ...)
404
405/* Lookup functions. */
407 const char *path);
409 const char *path, ...)
411
412/* Macros to silence "unused entry" warnings about entries that
413 * we intentionally ignore. */
414#define secfile_entry_ignore(_sfile_, _fmt_, ...) \
415 (void) secfile_entry_lookup(_sfile_, _fmt_, ## __VA_ARGS__)
416#define secfile_entry_ignore_by_path(_sfile_, _path_) \
417 (void) secfile_entry_by_path(_sfile_, _path_)
418
419bool secfile_lookup_bool(const struct section_file *secfile, bool *bval,
420 const char *path, ...)
424 bool def, const char *path, ...)
428 size_t *dim, const char *path, ...)
431
433 const char *path, ...)
437 const char *path, ...)
441 int defval, int minval, int maxval,
442 const char *path, ...)
446 size_t *dim, const char *path, ...)
449
451 const char *path, ...)
455 float def, const char *path, ...);
456
458 const char *path, ...)
462 const char *def,
463 const char *path, ...)
467 size_t *dim, const char *path, ...)
469
471 int *penumerator,
474 const char *path, ...)
478 int *penumerator,
481 const char *path, ...)
484#define secfile_lookup_enum(secfile, enumerator, specenum_type, path, ...) \
485(specenum_type##_is_bitwise() \
486 ? secfile_lookup_bitwise_enum_full(secfile, FC_ENUM_PTR(enumerator), \
487 (secfile_enum_is_valid_fn_t) \
488 specenum_type##_is_valid, \
489 (secfile_enum_by_name_fn_t) \
490 specenum_type##_by_name, \
491 path, ## __VA_ARGS__) \
492 : secfile_lookup_plain_enum_full(secfile, FC_ENUM_PTR(enumerator), \
493 (secfile_enum_is_valid_fn_t) \
494 specenum_type##_is_valid, \
495 (secfile_enum_by_name_fn_t) \
496 specenum_type##_by_name, \
497 path, ## __VA_ARGS__))
499 *secfile, int defval,
504 const char *path, ...)
508 *secfile, int defval,
513 const char *path, ...)
516#define secfile_lookup_enum_default(secfile, defval, specenum_type, \
517 path, ...) \
518(specenum_type##_is_bitwise() \
519 ? secfile_lookup_bitwise_enum_default_full(secfile, defval, \
520 (secfile_enum_is_valid_fn_t) \
521 specenum_type##_is_valid, \
522 (secfile_enum_by_name_fn_t) \
523 specenum_type##_by_name, \
524 path, ## __VA_ARGS__) \
525 : secfile_lookup_plain_enum_default_full(secfile, defval, \
526 (secfile_enum_is_valid_fn_t) \
527 specenum_type##_is_valid, \
528 (secfile_enum_by_name_fn_t) \
529 specenum_type##_by_name, \
530 path, ## __VA_ARGS__))
532 size_t *dim,
537 const char *path, ...)
541 size_t *dim,
546 const char *path, ...)
549#define secfile_lookup_enum_vec(secfile, dim, specenum_type, \
550 path, ...) \
551(specenum_type##_is_bitwise() \
552 ? (enum specenum_type *) \
553 secfile_lookup_bitwise_enum_vec_full(secfile, dim, \
554 (secfile_enum_is_valid_fn_t) \
555 specenum_type##_is_valid, \
556 (secfile_enum_by_name_fn_t) \
557 specenum_type##_by_name, \
558 path, ## __VA_ARGS__) \
559 : (enum specenum_type *) \
560 secfile_lookup_plain_enum_vec_full(secfile, dim, \
561 (secfile_enum_is_valid_fn_t) \
562 specenum_type##_is_valid, \
563 (secfile_enum_by_name_fn_t) \
564 specenum_type##_by_name, \
565 path, ## __VA_ARGS__))
566
567bool secfile_lookup_enum_data(const struct section_file *secfile,
568 int *pvalue, bool bitwise,
570 secfile_data_t data, const char *path, ...)
574 int defval, bool bitwise,
576 secfile_data_t data,
577 const char *path, ...)
581 size_t *dim, bool bitwise,
583 secfile_data_t data, const char *path, ...)
586
587/* Sections functions. */
589 const char *section_name);
591 const char *path, ...)
597 const char *prefix);
599 const char *prefix);
601 const char *section_name);
602
603
604/* Independent section functions. */
607
609
610/* Entry functions. */
613 const char *entry_name);
615 const char *path, ...)
618 const char *entry_name,
619 int value);
621 const char *entry_name,
622 bool value);
624 const char *entry_name,
625 float value);
627 const char *entry_name,
628 const char *value, bool escaped);
629
630/* Independent entry functions. */
640
641void entry_destroy(struct entry *pentry);
642
643struct section *entry_section(const struct entry *pentry);
644enum entry_type entry_type_get(const struct entry *pentry);
645int entry_path(const struct entry *pentry, char *buf, size_t buf_len);
646
647const char *entry_name(const struct entry *pentry);
648bool entry_set_name(struct entry *pentry, const char *entry_name);
649
650const char *entry_comment(const struct entry *pentry);
651void entry_set_comment(struct entry *pentry, const char *comment);
652
653bool entry_int_get(const struct entry *pentry, int *value);
654bool entry_int_set(struct entry *pentry, int value);
655
656bool entry_bool_get(const struct entry *pentry, bool *value);
657bool entry_bool_set(struct entry *pentry, bool value);
658
659bool entry_float_get(const struct entry *pentry, float *value);
660bool entry_float_set(struct entry *pentry, float value);
661
662bool entry_str_get(const struct entry *pentry, const char **value);
663bool entry_str_set(struct entry *pentry, const char *value);
664bool entry_str_escaped(const struct entry *pentry);
665bool entry_str_set_escaped(struct entry *pentry, bool escaped);
666bool entry_str_set_gt_marking(struct entry *pentry, bool gt_marking);
667
668#ifdef __cplusplus
669}
670#endif /* __cplusplus */
671
672#endif /* FC__REGISTRY_INI_H */
#define str
Definition astring.c:76
char * incite_cost
Definition comments.c:75
const char * enum_name
Definition events.c:76
fz_method
Definition ioz.h:36
const char * section_name(const struct section *psection)
bool bool bool * secfile_lookup_bool_vec(const struct section_file *secfile, size_t *dim, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
bool bool bool bool int int int * secfile_lookup_int_vec(const struct section_file *secfile, size_t *dim, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
bool int secfile_lookup_enum_default_data(const struct section_file *secfile, int defval, bool bitwise, secfile_enum_name_data_fn_t name_fn, secfile_data_t data, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
const char const char * secfile_lookup_str_default(const struct section_file *secfile, const char *def, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
void entry_set_comment(struct entry *pentry, const char *comment)
bool entry_bool_get(const struct entry *pentry, bool *value)
void section_destroy(struct section *psection)
bool int int * secfile_lookup_enum_vec_data(const struct section_file *secfile, size_t *dim, bool bitwise, secfile_enum_name_data_fn_t name_fn, secfile_data_t data, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
void secfile_check_unused(const struct section_file *secfile)
int entry_path(const struct entry *pentry, char *buf, size_t buf_len)
struct section * secfile_insert_long_comment(struct section_file *secfile, const char *comment)
size_t size_t secfile_insert_bitwise_enum_vec_full(struct section_file *secfile, const int *bitwise_vals, size_t dim, secfile_enum_name_fn_t name_fn, secfile_enum_iter_fn_t begin_fn, secfile_enum_iter_fn_t end_fn, secfile_enum_next_fn_t next_fn, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
int(* secfile_enum_iter_fn_t)(void)
const char const char const char bool bool secfile_lookup_bitwise_enum_full(const struct section_file *secfile, int *penumerator, secfile_enum_is_valid_fn_t is_valid_fn, secfile_enum_by_name_fn_t by_name_fn, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
int * secfile_lookup_plain_enum_vec_full(const struct section_file *secfile, size_t *dim, secfile_enum_is_valid_fn_t is_valid_fn, secfile_enum_by_name_fn_t by_name_fn, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
struct entry struct entry * secfile_insert_comment(struct section_file *secfile, const char *str, const char *path,...) fc__attribute((__format__(__printf__
const char *(* secfile_enum_name_data_fn_t)(secfile_data_t data, int enumerator)
entry_type
@ ENTRY_FILEREFERENCE
@ ENTRY_LONG_COMMENT
@ ENTRY_INT
@ ENTRY_FLOAT
@ ENTRY_STR
@ ENTRY_ILLEGAL
@ ENTRY_BOOL
struct entry * secfile_insert_bool_full(struct section_file *secfile, bool value, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
bool entry_str_escaped(const struct entry *pentry)
bool bool bool bool int int int bool float secfile_lookup_float_default(const struct section_file *secfile, float def, const char *path,...)
size_t secfile_insert_int_vec_full(struct section_file *secfile, const int *values, size_t dim, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
struct section * entry_section(const struct entry *pentry)
struct entry * secfile_entry_lookup(const struct section_file *secfile, const char *path,...) fc__attribute((__format__(__printf__
struct section_list * secfile_sections_by_name_prefix(const struct section_file *secfile, const char *prefix)
const struct entry_list * section_entries(const struct section *psection)
struct entry struct entry bool secfile_entry_delete(struct section_file *secfile, const char *path,...) fc__attribute((__format__(__printf__
struct section_file * secfile_load_section(const char *filename, const char *section, bool allow_duplicates)
bool entry_bool_set(struct entry *pentry, bool value)
struct section_file * secfile_from_stream(fz_FILE *stream, bool allow_duplicates)
struct entry * secfile_insert_filereference(struct section_file *secfile, const char *filename, const char *path,...) fc__attribute((__format__(__printf__
struct entry * secfile_insert_plain_enum_full(struct section_file *secfile, int enumerator, secfile_enum_name_fn_t name_fn, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
int int * secfile_lookup_bitwise_enum_vec_full(const struct section_file *secfile, size_t *dim, secfile_enum_is_valid_fn_t is_valid_fn, secfile_enum_by_name_fn_t by_name_fn, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
bool entry_float_get(const struct entry *pentry, float *value)
bool entry_str_set_escaped(struct entry *pentry, bool escaped)
struct entry struct entry bool struct entry * secfile_entry_by_path(const struct section_file *secfile, const char *path)
size_t secfile_insert_bool_vec_full(struct section_file *secfile, const bool *values, size_t dim, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
const char * entry_name(const struct entry *pentry)
const char const char const char ** secfile_lookup_str_vec(const struct section_file *secfile, size_t *dim, const char *path,...) fc__attribute((__format__(__printf__
struct entry * section_entry_float_new(struct section *psection, const char *entry_name, float value)
bool entry_str_get(const struct entry *pentry, const char **value)
bool entry_str_set_gt_marking(struct entry *pentry, bool gt_marking)
bool(* secfile_enum_is_valid_fn_t)(int enumerator)
void entry_destroy(struct entry *pentry)
int int secfile_lookup_bitwise_enum_default_full(const struct section_file *secfile, int defval, secfile_enum_is_valid_fn_t is_valid_fn, secfile_enum_by_name_fn_t by_name_fn, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
bool int int struct section * secfile_section_by_name(const struct section_file *secfile, const char *section_name)
void section_clear_all(struct section *psection)
bool entry_float_set(struct entry *pentry, float value)
struct entry * secfile_insert_enum_data_full(struct section_file *secfile, int value, bool bitwise, secfile_enum_name_data_fn_t name_fn, secfile_data_t data, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
bool secfile_lookup_enum_data(const struct section_file *secfile, int *pvalue, bool bitwise, secfile_enum_name_data_fn_t name_fn, secfile_data_t data, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
bool secfile_save(const struct section_file *secfile, const char *filename, int compression_level, enum fz_method compression_method)
struct section * secfile_insert_include(struct section_file *secfile, const char *filename)
bool entry_int_set(struct entry *pentry, int value)
entry_special_type
@ EST_COMMENT
@ EST_NORMAL
@ EST_INCLUDE
const char *(* secfile_enum_name_fn_t)(int enumerator)
const char * secfile_lookup_str(const struct section_file *secfile, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
struct section * secfile_section_lookup(const struct section_file *secfile, const char *path,...) fc__attribute((__format__(__printf__
bool bool secfile_lookup_bool_default(const struct section_file *secfile, bool def, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
bool secfile_lookup_bool(const struct section_file *secfile, bool *bval, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
struct entry * section_entry_str_new(struct section *psection, const char *entry_name, const char *value, bool escaped)
int secfile_lookup_plain_enum_default_full(const struct section_file *secfile, int defval, secfile_enum_is_valid_fn_t is_valid_fn, secfile_enum_by_name_fn_t by_name_fn, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
struct entry * secfile_insert_str_full(struct section_file *secfile, const char *str, const char *comment, bool allow_replace, bool no_escape, enum entry_special_type stype, const char *path,...) fc__attribute((__format__(__printf__
bool entry_int_get(const struct entry *pentry, int *value)
struct entry * secfile_insert_int_full(struct section_file *secfile, int value, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
bool entry_set_name(struct entry *pentry, const char *entry_name)
size_t secfile_insert_str_vec_full(struct section_file *secfile, const char *const *strings, size_t dim, const char *comment, bool allow_replace, bool no_escape, const char *path,...) fc__attribute((__format__(__printf__
struct entry struct entry * section_entry_int_new(struct section *psection, const char *entry_name, int value)
const char * secfile_name(const struct section_file *secfile)
size_t secfile_insert_enum_vec_data_full(struct section_file *secfile, const int *values, size_t dim, bool bitwise, secfile_enum_name_data_fn_t name_fn, secfile_data_t data, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
const char * entry_comment(const struct entry *pentry)
const char const char const char bool secfile_lookup_plain_enum_full(const struct section_file *secfile, int *penumerator, secfile_enum_is_valid_fn_t is_valid_fn, secfile_enum_by_name_fn_t by_name_fn, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
bool bool bool bool int int secfile_lookup_int_def_min_max(const struct section_file *secfile, int defval, int minval, int maxval, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
struct entry * secfile_insert_float_full(struct section_file *secfile, float value, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
struct entry * section_entry_by_name(const struct section *psection, const char *entry_name)
bool bool bool bool int secfile_lookup_int_default(const struct section_file *secfile, int def, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
bool secfile_section_prefix_present(const struct section_file *secfile, const char *prefix)
struct entry struct entry * secfile_insert_bitwise_enum_full(struct section_file *secfile, int bitwise_val, secfile_enum_name_fn_t name_fn, secfile_enum_iter_fn_t begin_fn, secfile_enum_iter_fn_t end_fn, secfile_enum_next_fn_t next_fn, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
struct entry * section_entry_lookup(const struct section *psection, const char *path,...) fc__attribute((__format__(__printf__
struct section * secfile_section_new(struct section_file *secfile, const char *section_name)
bool entry_str_set(struct entry *pentry, const char *value)
bool bool bool bool int int int bool secfile_lookup_float(const struct section_file *secfile, float *fval, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
int(* secfile_enum_by_name_fn_t)(const char *enum_name, int(*strcmp_fn)(const char *, const char *))
struct entry * section_entry_bool_new(struct section *psection, const char *entry_name, bool value)
size_t secfile_insert_plain_enum_vec_full(struct section_file *secfile, const int *enumurators, size_t dim, secfile_enum_name_fn_t name_fn, const char *comment, bool allow_replace, const char *path,...) fc__attribute((__format__(__printf__
bool bool bool bool secfile_lookup_int(const struct section_file *secfile, int *ival, const char *path,...) fc__warn_unused_result fc__attribute((__format__(__printf__
bool section_set_name(struct section *psection, const char *section_name)
int(* secfile_enum_next_fn_t)(int enumerator)
struct section const struct section_list * secfile_sections(const struct section_file *secfile)
const void * secfile_data_t
enum entry_type entry_type_get(const struct entry *pentry)
struct section * psection
bool escaped
bool value
char * comment
bool allow_duplicates
struct section_file * secfile
#define fc__attribute(x)
Definition support.h:99
#define fc__warn_unused_result
Definition support.h:109
#define bool
Definition support.h:71