annotate th_config.h @ 457:85fa3d333556

Actually, revert the boolean changes .. meh.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 02 Jan 2018 23:09:29 +0200
parents efd33accdc81
children 8c837a33cfb6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
2 * Very simple configuration file handling
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 * Programmed and designed by Matti 'ccr' Hamalainen
144
51eec969b07a Update copyrights.
Matti Hamalainen <ccr@tnsp.org>
parents: 129
diff changeset
4 * (C) Copyright 2004-2015 Tecnic Software productions (TNSP)
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 *
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 * Please read file 'COPYING' for information on license and distribution.
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 */
49
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 22
diff changeset
8 #ifndef TH_CONFIG_H
598609fb49b0 Change how "config.h" is included, etc.
Matti Hamalainen <ccr@tnsp.org>
parents: 22
diff changeset
9 #define TH_CONFIG_H
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10
155
23a79bd6c9d6 Use th_llist for th_config module as well instead of duped linked list
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
11 #include "th_util.h"
270
6cfa9bc91ee6 Remember to include th_datastruct.h where needed.
Matti Hamalainen <ccr@tnsp.org>
parents: 203
diff changeset
12 #include "th_datastruct.h"
153
4cd94649475d Move header includes before C++ guard.
Matti Hamalainen <ccr@tnsp.org>
parents: 152
diff changeset
13 #include "th_ioctx.h"
4cd94649475d Move header includes before C++ guard.
Matti Hamalainen <ccr@tnsp.org>
parents: 152
diff changeset
14
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 #ifdef __cplusplus
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 extern "C" {
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 #endif
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
19 /* Definitions
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20 */
69
28156333ef4c Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 66
diff changeset
21 enum ITEM_TYPE
28156333ef4c Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 66
diff changeset
22 {
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
23 ITEM_SECTION = 1,
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
24 ITEM_COMMENT,
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
25 ITEM_STRING,
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
26 ITEM_INT,
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
27 ITEM_UINT,
457
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 453
diff changeset
28 ITEM_BOOL,
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
29 ITEM_FLOAT,
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
30 ITEM_HEX_TRIPLET,
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
31
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
32 ITEM_STRING_LIST,
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
33 ITEM_HEX_TRIPLET_LIST
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34 };
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
36
70
a0e1b29be35d Refactor configuration file handling module rather thoroughly. The API is
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
37 typedef struct _th_cfgitem_t
a0e1b29be35d Refactor configuration file handling module rather thoroughly. The API is
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
38 {
155
23a79bd6c9d6 Use th_llist for th_config module as well instead of duped linked list
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
39 th_llist_t node;
23a79bd6c9d6 Use th_llist for th_config module as well instead of duped linked list
Matti Hamalainen <ccr@tnsp.org>
parents: 153
diff changeset
40
15
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
41 int type;
11
e467b3586e4d Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 10
diff changeset
42 char *name;
15
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
43 union {
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
44 int *val_int;
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
45 unsigned int *val_uint;
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
46 char **val_str;
457
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 453
diff changeset
47 BOOL *val_bool;
172
eb2c073d93b3 Adding floating point configuration item support.
Matti Hamalainen <ccr@tnsp.org>
parents: 170
diff changeset
48 float *val_float;
16
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
49
Matti Hamalainen <ccr@tnsp.org>
parents: 15
diff changeset
50 void *data;
152
b4e1b15a64e1 Rename qlist_t doubly linked list structure to th_llist_t.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
51 th_llist_t **list;
70
a0e1b29be35d Refactor configuration file handling module rather thoroughly. The API is
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
52 struct _th_cfgitem_t *section;
22
1ac2449c4df7 ISO C99 compatibility fixes.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
53 } v;
70
a0e1b29be35d Refactor configuration file handling module rather thoroughly. The API is
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
54 } th_cfgitem_t;
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
55
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
56
10
a25f5d22483e Updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 3
diff changeset
57 /* Functions
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
58 */
203
7acdd3ab6900 Fix th_config for new th_ioctx API.
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
59 int th_cfg_read(th_ioctx *, th_cfgitem_t *);
70
a0e1b29be35d Refactor configuration file handling module rather thoroughly. The API is
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
60 void th_cfg_free(th_cfgitem_t *);
203
7acdd3ab6900 Fix th_config for new th_ioctx API.
Matti Hamalainen <ccr@tnsp.org>
parents: 172
diff changeset
61 int th_cfg_write(th_ioctx *, const th_cfgitem_t *);
70
a0e1b29be35d Refactor configuration file handling module rather thoroughly. The API is
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
62
a0e1b29be35d Refactor configuration file handling module rather thoroughly. The API is
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
63 int th_cfg_add_section(th_cfgitem_t **cfg, const char *name, th_cfgitem_t *data);
a0e1b29be35d Refactor configuration file handling module rather thoroughly. The API is
Matti Hamalainen <ccr@tnsp.org>
parents: 69
diff changeset
64 int th_cfg_add_comment(th_cfgitem_t **cfg, const char *comment);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
65
170
8e69e07e5aac Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
66 int th_cfg_add_int(th_cfgitem_t **cfg, const char *name, int *data, int defValue);
8e69e07e5aac Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
67 int th_cfg_add_uint(th_cfgitem_t **cfg, const char *name, unsigned int *data, unsigned int defValue);
8e69e07e5aac Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
68 int th_cfg_add_float(th_cfgitem_t **cfg, const char *name, float *data, float defValue);
8e69e07e5aac Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
69 int th_cfg_add_string(th_cfgitem_t **cfg, const char *name, char **data, char *defValue);
457
85fa3d333556 Actually, revert the boolean changes .. meh.
Matti Hamalainen <ccr@tnsp.org>
parents: 453
diff changeset
70 int th_cfg_add_bool(th_cfgitem_t **cfg, const char *name, BOOL *data, BOOL defValue);
170
8e69e07e5aac Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
71 int th_cfg_add_float(th_cfgitem_t **cfg, const char *name, float *data, float defValue);
8e69e07e5aac Cleanups.
Matti Hamalainen <ccr@tnsp.org>
parents: 155
diff changeset
72 int th_cfg_add_hexvalue(th_cfgitem_t **cfg, const char *name, int *data, int defValue);
152
b4e1b15a64e1 Rename qlist_t doubly linked list structure to th_llist_t.
Matti Hamalainen <ccr@tnsp.org>
parents: 144
diff changeset
73 int th_cfg_add_string_list(th_cfgitem_t **cfg, const char *name, th_llist_t **list);
15
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
74
83
50006067bcd1 Add new function, th_cfg_find().
Matti Hamalainen <ccr@tnsp.org>
parents: 70
diff changeset
75 th_cfgitem_t *th_cfg_find(th_cfgitem_t *cfg, const char *section, const char *name, const int type);
0
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
76
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
77 #ifdef __cplusplus
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
78 }
bd61a80a6c54 Initial import into Mercurial repository. Discarding old cvs/svn history
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
79 #endif
129
aa2d608fb3f3 Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
80 #endif // TH_CONFIG_H