Cthulhu  0.2.10
Cthulhu compiler collection
config.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_config_api.h>
6 
7 #include "core/analyze.h"
8 #include "core/compiler.h"
9 
10 #include <stdbool.h>
11 #include <stddef.h>
12 #include <limits.h>
13 
15 
16 typedef struct arena_t arena_t;
17 typedef struct typevec_t typevec_t;
18 typedef struct vector_t vector_t;
19 
24 
26 typedef enum cfg_type_t
27 {
28 #define CFG_TYPE(id, name) id,
29 #include "config.inc"
30 
33 
34 typedef struct cfg_field_t cfg_field_t;
35 typedef struct cfg_group_t cfg_group_t;
36 
37 typedef enum arg_style_t
38 {
39 #define CFG_ARG(id, name, prefix) id,
40 #include "config.inc"
41  eArgCount
43 
44 typedef struct cfg_arg_t
45 {
47  const char *arg;
48 } cfg_arg_t;
49 
50 // short args are turned into dos args when needed
51 // long args are discarded on windows
52 // dos args are discarded on unix
53 
54 #define CT_ARG_SHORT(name) { .style = eArgShort, .arg = (name) }
55 #define CT_ARG_LONG(name) { .style = eArgLong, .arg = (name) }
56 #define CT_ARG_DOS(name) { .style = eArgDOS, .arg = (name) }
57 #define CT_ARGS(it) { .args = (it), .count = sizeof(it) / sizeof(cfg_arg_t) }
58 
59 typedef struct cfg_arg_array_t
60 {
61  const cfg_arg_t *args;
62  size_t count;
64 
68 typedef struct cfg_info_t
69 {
71  STA_FIELD_STRING const char *name;
72 
74  STA_FIELD_STRING const char *brief;
75 
78 } cfg_info_t;
79 
81 typedef struct cfg_int_t
82 {
84  STA_FIELD_RANGE(min, max) int initial;
85 
88  STA_FIELD_RANGE(INT_MIN, max) int min;
89 
92  STA_FIELD_RANGE(min, INT_MAX) int max;
93 } cfg_int_t;
94 
96 typedef struct cfg_choice_t
97 {
99  STA_FIELD_STRING const char *text;
100 
102  size_t value;
103 } cfg_choice_t;
104 
106 typedef struct cfg_enum_t
107 {
110 
112  size_t count;
113 
116  size_t initial;
117 } cfg_enum_t;
118 
125 CT_CONFIG_API cfg_group_t *config_root(IN_NOTNULL const cfg_info_t *info, IN_NOTNULL arena_t *arena);
126 
131 
138 CT_CONFIG_API cfg_group_t *config_group(IN_NOTNULL cfg_group_t *group, IN_NOTNULL const cfg_info_t *info);
139 
147 CT_CONFIG_API cfg_field_t *config_int(IN_NOTNULL cfg_group_t *group, IN_NOTNULL const cfg_info_t *info, cfg_int_t cfg);
148 
156 CT_CONFIG_API cfg_field_t *config_bool(IN_NOTNULL cfg_group_t *group, IN_NOTNULL const cfg_info_t *info, bool initial);
157 
165 CT_CONFIG_API cfg_field_t *config_string(IN_NOTNULL cfg_group_t *group, IN_NOTNULL const cfg_info_t *info, const char *initial);
166 
174 CT_CONFIG_API cfg_field_t *config_vector(IN_NOTNULL cfg_group_t *group, IN_NOTNULL const cfg_info_t *info, vector_t *initial);
175 
183 CT_CONFIG_API cfg_field_t *config_enum(IN_NOTNULL cfg_group_t *group, IN_NOTNULL const cfg_info_t *info, cfg_enum_t cfg);
184 
192 CT_CONFIG_API cfg_field_t *config_flags(IN_NOTNULL cfg_group_t *group, IN_NOTNULL const cfg_info_t *info, cfg_enum_t cfg);
193 
195 
200 
206 CT_PUREFN
207 CT_CONFIG_API cfg_type_t cfg_get_type(IN_NOTNULL const cfg_field_t *field);
208 
215 CT_CONFIG_API const cfg_info_t *cfg_get_info(IN_NOTNULL const cfg_field_t *field);
216 
223 CT_CONFIG_API const cfg_info_t *cfg_group_info(IN_NOTNULL const cfg_group_t *config);
224 
231 CT_CONFIG_API const cfg_int_t *cfg_int_info(IN_NOTNULL const cfg_field_t *field);
232 
238 CT_PUREFN
239 CT_CONFIG_API bool cfg_bool_info(IN_NOTNULL const cfg_field_t *field);
240 
246 CT_PUREFN
247 CT_CONFIG_API const char *cfg_string_info(IN_NOTNULL const cfg_field_t *field);
248 
254 CT_PUREFN
255 CT_CONFIG_API const vector_t *cfg_vector_info(IN_NOTNULL const cfg_field_t *field);
256 
263 CT_CONFIG_API const cfg_enum_t *cfg_enum_info(IN_NOTNULL const cfg_field_t *field);
264 
271 CT_CONFIG_API const cfg_enum_t *cfg_flags_info(IN_NOTNULL const cfg_field_t *field);
272 
279 CT_CONFIG_API const char *cfg_type_string(IN_DOMAIN(<, eConfigCount) cfg_type_t type);
280 
287 CT_CONFIG_API const char *cfg_arg_string(IN_DOMAIN(<, eArgCount) arg_style_t style);
288 
295 CT_CONFIG_API const char *cfg_arg_prefix(IN_DOMAIN(<, eArgCount) arg_style_t style);
296 
303 CT_CONFIG_API typevec_t *cfg_get_groups(IN_NOTNULL const cfg_group_t *config);
304 
311 CT_CONFIG_API vector_t *cfg_get_fields(IN_NOTNULL const cfg_group_t *config);
312 
314 
319 
325 CT_PUREFN
326 CT_CONFIG_API int cfg_int_value(IN_NOTNULL const cfg_field_t *field);
327 
333 CT_PUREFN
334 CT_CONFIG_API bool cfg_bool_value(IN_NOTNULL const cfg_field_t *field);
335 
341 CT_PUREFN
342 CT_CONFIG_API const char *cfg_string_value(IN_NOTNULL const cfg_field_t *field);
343 
349 CT_PUREFN
350 CT_CONFIG_API vector_t *cfg_vector_value(IN_NOTNULL const cfg_field_t *field);
351 
357 CT_PUREFN
358 CT_CONFIG_API size_t cfg_enum_value(IN_NOTNULL const cfg_field_t *field);
359 
365 CT_PUREFN
366 CT_CONFIG_API size_t cfg_flags_value(IN_NOTNULL const cfg_field_t *field);
367 
369 
374 
382 CT_CONFIG_API bool cfg_set_int(IN_NOTNULL cfg_field_t *field, int value);
383 
388 CT_CONFIG_API void cfg_set_bool(IN_NOTNULL cfg_field_t *field, bool value);
389 
394 CT_CONFIG_API void cfg_set_string(IN_NOTNULL cfg_field_t *field, char *value);
395 
400 CT_CONFIG_API void cfg_vector_push(IN_NOTNULL cfg_field_t *field, char *value);
401 
410 CT_CONFIG_API bool cfg_set_enum(IN_NOTNULL cfg_field_t *field, const char *choice);
411 
419 CT_CONFIG_API void cfg_set_enum_value(IN_NOTNULL cfg_field_t *field, size_t value);
420 
431 CT_CONFIG_API bool cfg_set_flag(IN_NOTNULL cfg_field_t *field, const char *choice, bool set);
432 
440 CT_CONFIG_API void cfg_set_flag_value(IN_NOTNULL cfg_field_t *field, size_t value);
441 
443 
445 
#define RET_NOTNULL
annotate the return value as not being null
#define CT_PUREFN
mark a function as pure, always returns the same value for the same arguments
Definition: analyze.h:228
#define STA_FIELD_STRING
annotate a field as being a null terminated string
#define CT_NODISCARD
mark a function as returning a value that must be used
#define IN_NOTNULL
annotate a parameter as not being null
#define IN_DOMAIN(cmp, it)
annotate a parameter as being bounded by the expression of cmp and it
#define CT_CONSTFN
mark a function as const, has no side effects and always returns the same value for the same argument...
Definition: analyze.h:227
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
CT_CONFIG_API cfg_field_t * config_enum(cfg_group_t *group, const cfg_info_t *info, cfg_enum_t cfg)
add a new choice field to a configuration group
Definition: config.c:162
CT_CONFIG_API cfg_field_t * config_int(cfg_group_t *group, const cfg_info_t *info, cfg_int_t cfg)
add a new integer field to a configuration group
Definition: config.c:108
CT_CONFIG_API cfg_field_t * config_string(cfg_group_t *group, const cfg_info_t *info, const char *initial)
add a new string field to a configuration group
Definition: config.c:138
CT_CONFIG_API cfg_field_t * config_vector(cfg_group_t *group, const cfg_info_t *info, vector_t *initial)
add a new vector field to a configuration group
Definition: config.c:150
CT_CONFIG_API cfg_group_t * config_group(cfg_group_t *group, const cfg_info_t *info)
add a new configuration group to a configuration group
Definition: config.c:188
CT_CONFIG_API cfg_field_t * config_bool(cfg_group_t *group, const cfg_info_t *info, bool initial)
add a new yes/no field to a configuration group
Definition: config.c:126
CT_CONFIG_API cfg_field_t * config_flags(cfg_group_t *group, const cfg_info_t *info, cfg_enum_t cfg)
add a new flags field to a configuration group
Definition: config.c:175
CT_PUREFN CT_CONFIG_API const char * cfg_string_value(const cfg_field_t *field)
get the current string value of a configuration field
Definition: reflect.c:151
CT_PUREFN CT_CONFIG_API vector_t * cfg_vector_value(const cfg_field_t *field)
get the current vector value of a configuration field
Definition: reflect.c:159
CT_PUREFN CT_CONFIG_API size_t cfg_flags_value(const cfg_field_t *field)
get the current flags value of a configuration field
Definition: reflect.c:175
CT_PUREFN CT_CONFIG_API bool cfg_bool_value(const cfg_field_t *field)
get the current boolean value of a configuration field
Definition: reflect.c:143
CT_PUREFN CT_CONFIG_API int cfg_int_value(const cfg_field_t *field)
get the current integer value of a configuration field
Definition: reflect.c:135
CT_PUREFN CT_CONFIG_API size_t cfg_enum_value(const cfg_field_t *field)
get the current enum value of a configuration field
Definition: reflect.c:167
CT_PUREFN CT_CONFIG_API const vector_t * cfg_vector_info(const cfg_field_t *field)
get the information about a vector field
Definition: reflect.c:70
CT_CONSTFN CT_CONFIG_API const char * cfg_arg_string(arg_style_t style)
get the name of an argument style
Definition: reflect.c:112
CT_CONSTFN CT_CONFIG_API const char * cfg_arg_prefix(arg_style_t style)
get the prefix for an argument style
Definition: reflect.c:125
CT_PUREFN CT_CONFIG_API bool cfg_bool_info(const cfg_field_t *field)
get the information about a yes/no field
Definition: reflect.c:54
CT_PUREFN CT_CONFIG_API const cfg_info_t * cfg_group_info(const cfg_group_t *config)
get the information about a configuration group
Definition: reflect.c:22
CT_CONSTFN CT_CONFIG_API const char * cfg_type_string(cfg_type_t type)
get the name of a configuration type
Definition: reflect.c:99
CT_PUREFN CT_CONFIG_API typevec_t * cfg_get_groups(const cfg_group_t *config)
get all subgroups in a configuration group
Definition: reflect.c:30
CT_PUREFN CT_CONFIG_API const cfg_int_t * cfg_int_info(const cfg_field_t *field)
get the information about an integer field
Definition: reflect.c:46
CT_PUREFN CT_CONFIG_API const cfg_enum_t * cfg_enum_info(const cfg_field_t *field)
get the information about a choice field
Definition: reflect.c:78
CT_PUREFN CT_CONFIG_API const cfg_enum_t * cfg_flags_info(const cfg_field_t *field)
get the information about a flags field
Definition: reflect.c:86
CT_PUREFN CT_CONFIG_API const char * cfg_string_info(const cfg_field_t *field)
get the information about a string field
Definition: reflect.c:62
CT_PUREFN CT_CONFIG_API vector_t * cfg_get_fields(const cfg_group_t *config)
get all fields in a configuration group
Definition: reflect.c:38
CT_PUREFN CT_CONFIG_API cfg_type_t cfg_get_type(const cfg_field_t *field)
get the type of a configuration field
Definition: reflect.c:6
CT_PUREFN CT_CONFIG_API const cfg_info_t * cfg_get_info(const cfg_field_t *field)
get the information about a configuration field
Definition: reflect.c:14
CT_CONFIG_API void cfg_vector_push(cfg_field_t *field, char *value)
push a new value onto an array field
Definition: update.c:43
CT_NODISCARD CT_CONFIG_API bool cfg_set_int(cfg_field_t *field, int value)
set the current value of an int field
Definition: update.c:9
CT_CONFIG_API void cfg_set_enum_value(cfg_field_t *field, size_t value)
set the current value of an enum field set the value via an integer value
Definition: update.c:91
CT_NODISCARD CT_CONFIG_API bool cfg_set_flag(cfg_field_t *field, const char *choice, bool set)
set the current value of a flags field set the value via a string name
Definition: update.c:112
CT_CONFIG_API void cfg_set_string(cfg_field_t *field, char *value)
set the current value of a string field
Definition: update.c:35
CT_CONFIG_API bool cfg_set_enum(cfg_field_t *field, const char *choice)
set the current value of an enum field set the value via a string name
Definition: update.c:51
CT_CONFIG_API void cfg_set_bool(cfg_field_t *field, bool value)
set the current value of a bool field
Definition: update.c:27
CT_CONFIG_API void cfg_set_flag_value(cfg_field_t *field, size_t value)
set the current value of a flags field set the value via an integer value
Definition: update.c:155
arg_style_t
Definition: config.h:38
cfg_type_t
the type of a configuration field
Definition: config.h:27
CT_CONFIG_API cfg_group_t * config_root(const cfg_info_t *info, arena_t *arena)
create a new configuration group
Definition: config.c:97
@ eArgCount
Definition: config.h:41
@ eConfigCount
Definition: config.h:31
an allocator object
Definition: arena.h:86
const cfg_arg_t * args
Definition: config.h:61
size_t count
Definition: config.h:62
arg_style_t style
Definition: config.h:46
const char * arg
Definition: config.h:47
a choice in a set of options
Definition: config.h:97
STA_FIELD_STRING const char * text
the name of this choice
Definition: config.h:99
size_t value
the value of this choice
Definition: config.h:102
a choice from a set of options
Definition: config.h:107
STA_FIELD_SIZE(count) const cfg_choice_t *options
the choices in this set
size_t initial
the initial choice this must match the value of one of the choices
Definition: config.h:116
size_t count
the number of choices in this set
Definition: config.h:112
information about a configuration field
Definition: config.h:69
STA_FIELD_STRING const char * brief
a brief description of this field
Definition: config.h:74
cfg_arg_array_t args
the spellings to use for this field
Definition: config.h:77
STA_FIELD_STRING const char * name
the name of this field
Definition: config.h:71
an integer field
Definition: config.h:82
STA_FIELD_RANGE(min, INT_MAX) int max
maximum value
STA_FIELD_RANGE(min, max) int initial
default value
STA_FIELD_RANGE(INT_MIN, max) int min
minimum value
A vector with a fixed type size.
Definition: vector.h:24
a generic vector of pointers
Definition: vector.c:16