Cthulhu  0.2.10
Cthulhu compiler collection
argparse.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_argparse_api.h>
6 
7 #include "core/compiler.h"
8 
9 #include <stdbool.h>
10 #include <stddef.h>
11 
13 
14 typedef struct node_t node_t;
15 typedef struct vector_t vector_t;
16 typedef struct typevec_t typevec_t;
17 typedef struct arena_t arena_t;
18 
19 typedef struct cfg_group_t cfg_group_t;
20 typedef struct cfg_field_t cfg_field_t;
21 
28 
30 typedef struct ap_t ap_t;
31 
44 typedef bool (*ap_event_t)(ap_t *ap, const cfg_field_t *param, const void *value, void *data);
45 
46 // initialization + config api
47 
54 CT_ARGPARSE_API ap_t *ap_new(cfg_group_t *config, arena_t *arena);
55 
59 CT_ARGPARSE_API void ap_update(ap_t *self);
60 
67 CT_ARGPARSE_API void ap_event(ap_t *self, const cfg_field_t *param, ap_event_t callback, void *data);
68 
76 CT_ARGPARSE_API int ap_parse_args(ap_t *self, int argc, const char **argv);
77 
84 CT_ARGPARSE_API int ap_parse(ap_t *self, const char *str);
85 
91 CT_ARGPARSE_API vector_t *ap_get_posargs(ap_t *self);
92 
98 CT_ARGPARSE_API vector_t *ap_get_unknown(ap_t *self);
99 
106 CT_ARGPARSE_API vector_t *ap_get_errors(ap_t *self);
107 
113 CT_ARGPARSE_API size_t ap_count_params(ap_t *self);
114 
116 
CT_ARGPARSE_API size_t ap_count_params(ap_t *self)
get the number of processed arguments
Definition: argparse.c:181
CT_ARGPARSE_API vector_t * ap_get_unknown(ap_t *self)
get all unknown arguments
Definition: argparse.c:166
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
Definition: argparse.c:139
CT_ARGPARSE_API int ap_parse(ap_t *self, const char *str)
parse a string
Definition: parse.c:106
CT_ARGPARSE_API int ap_parse_args(ap_t *self, int argc, const char **argv)
parse a command line
Definition: parse.c:100
CT_ARGPARSE_API ap_t * ap_new(cfg_group_t *config, arena_t *arena)
create a new parser instance
Definition: argparse.c:97
CT_ARGPARSE_API void ap_update(ap_t *self)
update the parser with the latest config
Definition: argparse.c:128
CT_ARGPARSE_API vector_t * ap_get_posargs(ap_t *self)
get all positional arguments
Definition: argparse.c:158
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 wa...
Definition: argparse.h:44
CT_ARGPARSE_API vector_t * ap_get_errors(ap_t *self)
get all errors
Definition: argparse.c:174
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
argparse instance
Definition: common.h:26
arena_t * arena
allocation arena
Definition: common.h:28
cfg_group_t * config
the root config group
Definition: common.h:31
an allocator object
Definition: arena.h:86
a position in a source file
Definition: node.h:23
A vector with a fixed type size.
Definition: vector.h:24
a generic vector of pointers
Definition: vector.c:16