libamxo
4.3.4
Object Definition Language (ODL) parsing
|
Functions | |
amxc_var_t * | amxo_parser_get_config (amxo_parser_t *parser, const char *path) |
Gets a configuration option. More... | |
amxc_var_t * | amxo_parser_claim_config (amxo_parser_t *parser, const char *path) |
Gets or creates a configuration option. More... | |
int | amxo_parser_set_config (amxo_parser_t *parser, const char *path, amxc_var_t *value) |
Sets a configuration option. More... | |
Ambiorix ODL parser configuration API
A parser can contain configuration options. Accessing these configuration options can be done using these functions.
amxc_var_t* amxo_parser_claim_config | ( | amxo_parser_t * | parser, |
const char * | path | ||
) |
Gets or creates a configuration option.
The configuration options can be used by the function resolvers, the parser or the application itself
Configuration options change the behaviour of the parser, resolvers or the application itself
If the configuration option does not exists, it is added and intialized to a "null" variant.
parser | the odl parser instance |
path | the path of the configuration option |
Definition at line 410 of file amxo_parser_main.c.
amxc_var_t* amxo_parser_get_config | ( | amxo_parser_t * | parser, |
const char * | path | ||
) |
Gets a configuration option.
The configuration options can be used by the function resolvers, the parser or the application itself
Configuration options change the behaviour of the parser, resolvers or the application itself
parser | the odl parser instance |
path | the path of the configuration option |
Definition at line 430 of file amxo_parser_main.c.
int amxo_parser_set_config | ( | amxo_parser_t * | parser, |
const char * | path, | ||
amxc_var_t * | value | ||
) |
Sets a configuration option.
The configuration options can be used by the function resolvers or by the parser itself.
Configuration options change the behaviour of the parser, resolvers or the application.
If the configuration option does not exists, it is added. If it exists it's value is changed.
parser | the odl parser instance |
path | the path of the configuration option |
value | the value of the configuration option as a variant |
Definition at line 442 of file amxo_parser_main.c.