Cthulhu  0.2.10
Cthulhu compiler collection

Command line argument parsing TODO: reduce the amount of allocations by allowing config to accept string views TODO: nicely support error propagation out of the parser. More...

Collaboration diagram for Command line argument parsing:

Typedefs

typedef bool(* ap_event_t) (ap_t *ap, const cfg_field_t *param, const void *value, void *data)
 callback for a parameter event called when a parameter is parsed return true to indicate the event was handled, false to continue to the next handler More...
 

Functions

CT_ARGPARSE_API ap_tap_new (cfg_group_t *config, arena_t *arena)
 create a new parser instance More...
 
CT_ARGPARSE_API void ap_update (ap_t *self)
 update the parser with the latest config More...
 
CT_ARGPARSE_API void ap_event (ap_t *self, const cfg_field_t *param, ap_event_t callback, void *data)
 add a callback event to a parameter More...
 
CT_ARGPARSE_API int ap_parse_args (ap_t *self, int argc, const char **argv)
 parse a command line More...
 
CT_ARGPARSE_API int ap_parse (ap_t *self, const char *str)
 parse a string More...
 
CT_ARGPARSE_API vector_tap_get_posargs (ap_t *self)
 get all positional arguments More...
 
CT_ARGPARSE_API vector_tap_get_unknown (ap_t *self)
 get all unknown arguments More...
 
CT_ARGPARSE_API vector_tap_get_errors (ap_t *self)
 get all errors More...
 
CT_ARGPARSE_API size_t ap_count_params (ap_t *self)
 get the number of processed arguments More...
 

Detailed Description

Command line argument parsing TODO: reduce the amount of allocations by allowing config to accept string views TODO: nicely support error propagation out of the parser.

Typedef Documentation

◆ ap_event_t

typedef bool(* ap_event_t) (ap_t *ap, const cfg_field_t *param, const void *value, void *data)

callback for a parameter event called when a parameter is parsed return true to indicate the event was handled, false to continue to the next handler

Parameters
apthe parser instance
paramthe parameter that triggered the event, may be NULL for positional args
valuethe value of the parameter, NULL for positional args, mpz_t for int, const char * for string, and bool* for bool
datathe data passed to ap_event
Return values
trueif the event was handled
falseif the event was not handled

Definition at line 44 of file argparse.h.

Function Documentation

◆ ap_count_params()

CT_ARGPARSE_API size_t ap_count_params ( ap_t self)

get the number of processed arguments

Parameters
selfthe parser instance
Returns
the number of processed arguments

Definition at line 181 of file argparse.c.

◆ ap_event()

CT_ARGPARSE_API void ap_event ( ap_t self,
const cfg_field_t param,
ap_event_t  callback,
void *  data 
)

add a callback event to a parameter

Parameters
selfthe parser instance
paramthe parameter to add the event to
callbackthe callback to add
datathe data to pass to the callback

Definition at line 139 of file argparse.c.

◆ ap_get_errors()

CT_ARGPARSE_API vector_t* ap_get_errors ( ap_t self)

get all errors

Note
does not include unknown arguments
Parameters
selfthe parser instance
Returns
all errors

Definition at line 174 of file argparse.c.

◆ ap_get_posargs()

CT_ARGPARSE_API vector_t* ap_get_posargs ( ap_t self)

get all positional arguments

Parameters
selfthe parser instance
Returns
all positional arguments

Definition at line 158 of file argparse.c.

◆ ap_get_unknown()

CT_ARGPARSE_API vector_t* ap_get_unknown ( ap_t self)

get all unknown arguments

Parameters
selfthe parser instance
Returns
all unknown arguments

Definition at line 166 of file argparse.c.

◆ ap_new()

CT_ARGPARSE_API ap_t* ap_new ( cfg_group_t config,
arena_t arena 
)

create a new parser instance

Parameters
configthe config object to use
arenathe arena to allocate from
Returns
the created parser instance

Definition at line 97 of file argparse.c.

◆ ap_parse()

CT_ARGPARSE_API int ap_parse ( ap_t self,
const char *  str 
)

parse a string

Parameters
selfthe parser instance
strthe string to parse
Returns
int exit code

Definition at line 106 of file parse.c.

◆ ap_parse_args()

CT_ARGPARSE_API int ap_parse_args ( ap_t self,
int  argc,
const char **  argv 
)

parse a command line

Parameters
selfthe parser instance
argcfrom main
argvfrom main
Returns
int exit code

Definition at line 100 of file parse.c.

◆ ap_update()

CT_ARGPARSE_API void ap_update ( ap_t self)

update the parser with the latest config

Parameters
selfthe parser instance

Definition at line 128 of file argparse.c.