19 for (
size_t i = 0; i < field_len; i++)
32 static void options_validate(
const cfg_choice_t *options,
size_t count)
34 for (
size_t i = 0; i < count; i++)
40 static void info_validate(
const cfg_info_t *info)
50 #define ASSERT_OPTIONS_VALID(options, count) \
51 CTASSERT((options) != NULL); \
52 CTASSERT((count) > 0); \
53 CT_PARANOID(options_validate(options, count));
55 #define ASSERT_INFO_VALID_GROUP(info) \
56 CTASSERT((info) != NULL); \
57 CTASSERT((info)->name != NULL);
59 #define ASSERT_INFO_VALID(info) \
60 ASSERT_INFO_VALID_GROUP(info); \
61 CT_PARANOID(info_validate(info));
63 #define ASSERT_CONFIG_VALID(config, info) \
64 CTASSERT((config) != NULL); \
65 ASSERT_INFO_VALID(info); \
66 CT_PARANOID_ASSERTF(config_find(config, (info)->name) == NULL, "duplicate config field `%s`", \
86 config->
arena = arena;
103 config_init(config, arena, info);
115 CTASSERTF(min <= max,
"invalid range %d-%d", min, max);
118 cfg_field_t *field = add_field(group, info, eConfigInt);
130 cfg_field_t *field = add_field(group, info, eConfigBool);
142 cfg_field_t *field = add_field(group, info, eConfigString);
154 cfg_field_t *field = add_field(group, info, eConfigVector);
167 cfg_field_t *field = add_field(group, info, eConfigEnum);
180 cfg_field_t *field = add_field(group, info, eConfigFlags);
193 config_init(&config, group->
arena, info);
#define ASSERT_CONFIG_VALID(config, info)
#define ASSERT_INFO_VALID_GROUP(info)
#define ASSERT_OPTIONS_VALID(options, count)
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_NODISCARD CT_PUREFN CT_BASE_API bool str_equal(const char *lhs, const char *rhs)
compare strings equality
STA_DECL 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
STA_DECL 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
STA_DECL 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
STA_DECL 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
STA_DECL cfg_group_t * config_group(cfg_group_t *group, const cfg_info_t *info)
add a new configuration group to a configuration group
STA_DECL 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
STA_DECL 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
cfg_type_t
the type of a configuration field
STA_DECL cfg_group_t * config_root(const cfg_info_t *info, arena_t *arena)
create a new configuration group
#define ARENA_IDENTIFY(ptr, name, parent, arena)
rename and reparent a pointer in a custom allocator
CT_NODISCARD CT_ARENA_API char * arena_strdup(const char *str, arena_t *arena)
allocate a copy of a string from a custom allocator
#define ARENA_REPARENT(arena, ptr, parent)
reparent a pointer in a custom allocator
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
#define CT_ASSERT_RANGE(value, min, max)
assert that a value is in a range inclusive bounds check
#define CTASSERT(expr)
assert a condition, prints the condition as a message
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
CT_STD_API void * typevec_push(typevec_t *vec, const void *src)
push a value onto the vector
CT_NODISCARD CT_STD_API typevec_t * typevec_new(size_t width, size_t len, arena_t *arena)
create a new typed vector on the heap
CT_NODISCARD CT_PUREFN CT_STD_API void * vector_get(const vector_t *vector, size_t index)
get a value from a vector
CT_NODISCARD CT_STD_API vector_t * vector_new(size_t size, arena_t *arena)
create a new vector with an initial capacity
CT_STD_API void vector_push(vector_t **vector, void *value)
push a value onto the end of a vector
CT_NODISCARD CT_PUREFN CT_STD_API size_t vector_len(const vector_t *vector)
get the length of a vector
a choice in a set of options
a choice from a set of options
size_t initial
the initial choice this must match the value of one of the choices
size_t count
the number of choices in this set
const char * string_config
information about a configuration field
cfg_arg_array_t args
the spellings to use for this field
STA_FIELD_STRING const char * name
the name of this field
a generic vector of pointers