23 static void push_single_arg(
typevec_t *vec,
const char *arg)
30 bool is_flag = arg[0] ==
'-' || arg[0] ==
'/';
36 for (
size_t i = 0; i < len; i++)
38 if (arg[i] ==
':' || arg[i] ==
'=')
69 static char *join_args(
int argc,
const char **argv,
arena_t *arena)
72 for (
int i = 1; i < argc; i++)
74 const char *arg = argv[i];
76 push_single_arg(vec, arg);
102 char *args = join_args(argc, argv, self->arena);
111 static int get_option_type(
const cfg_field_t *field)
115 case eConfigBool:
return AP_BOOL_OPTION;
116 case eConfigInt:
return AP_INT_OPTION;
122 return AP_STRING_OPTION;
129 static const char *get_lookup_name(
const char *name,
bool *negate,
arena_t *arena)
143 if (name[len - 1] ==
'-')
165 const char *lookup = get_lookup_name(name, &negate, self->arena);
186 ap_add_error(
self,
"cannot negate non-boolean flag: %s", name);
CT_NODISCARD CT_SCAN_API scan_t * scan_io(const char *language, io_t *io, arena_t *arena)
create a scanner from an io source
CT_SCAN_API void scan_set_context(scan_t *scan, void *value)
get the context of a scanner
CT_NODISCARD CT_PUREFN CT_SCAN_API void * scan_get_context(const scan_t *scan)
get the context of a scanner
int ap_parse(ap_t *self, const char *str)
parse a string
int ap_parse_args(ap_t *self, int argc, const char **argv)
parse a command line
CT_NODISCARD CT_PUREFN CT_BASE_API size_t ctu_strlen(const char *str)
get the length of a string not including the null terminator equivalent to strlen but with safety che...
STA_RET_STRING colour_t idx
CT_PUREFN CT_CONFIG_API cfg_type_t cfg_get_type(const cfg_field_t *field)
get the type of a configuration field
cfg_type_t
the type of a configuration field
#define CT_EXIT_OK
no user errors or internal errors
#define CT_EXIT_ERROR
the user has made an error
CT_NODISCARD CT_PUREFN CT_STD_API void * map_get(const map_t *map, const void *key)
get a value from a map
CT_INTEROP_API parse_result_t scan_buffer(scan_t *scan, const scan_callbacks_t *callbacks)
parse the contents of a scanner into a language specific ast
@ eParseOk
parse was successful
CT_NODISCARD CT_IO_API io_t * io_string(const char *name, const char *string, arena_t *arena)
create an IO view of a string create a readonly IO view of a string
CT_NODISCARD CT_ARENA_API char * arena_strdup(const char *str, arena_t *arena)
allocate a copy of a string from a custom allocator
CT_NODISCARD CT_ARENA_API char * arena_strndup(STA_READS(len) const char *str, size_t len, arena_t *arena)
allocate a copy of a string with a maximum length from a custom allocator
#define CT_NEVER(...)
assert that a code path is never reached
#define CTASSERT(expr)
assert a condition, prints the condition as a message
CT_STD_API void * typevec_push(typevec_t *vec, const void *src)
push a value onto the vector
CT_NODISCARD CT_PUREFN CT_STD_API void * typevec_data(const typevec_t *vec)
get a pointer to the underlying data
CT_STD_API void typevec_append(typevec_t *vec, const void *src, size_t len)
append multiple values 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_STD_API void vector_push(vector_t **vector, void *value)
push a value onto the end of a vector
CT_CALLBACKS(kCallbacks, ap)
int ap_parse_common(ap_t *self, const char *text)
int ap_get_opt(scan_t *scan, const char *name, ap_field_t *param, char **value)
arena_t * arena
the arena this object was allocated from
A vector with a fixed type size.
void ap_add_error(ap_t *self, const char *fmt,...)