libamxo  4.3.4
Object Definition Language (ODL) parsing
ODL Parser Configuration Options
Collaboration diagram for ODL Parser Configuration Options:

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...
 

Detailed Description

Ambiorix ODL parser configuration API

A parser can contain configuration options. Accessing these configuration options can be done using these functions.

Function Documentation

◆ amxo_parser_claim_config()

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.

Parameters
parserthe odl parser instance
paththe path of the configuration option
Returns
Returns the config option as a variant.

Definition at line 410 of file amxo_parser_main.c.

411  {
412  amxc_var_t* retval = NULL;
413  when_null(parser, exit);
414  when_str_empty(path, exit);
415 
416  retval = amxo_parser_get_config(parser, path);
417  if(retval == NULL) {
418  // add a NULL variant
419  amxc_var_t dummy;
420  amxc_var_init(&dummy);
421  amxo_parser_set_config(parser, path, &dummy);
422  retval = amxo_parser_get_config(parser, path);
423  amxc_var_clean(&dummy);
424  }
425 
426 exit:
427  return retval;
428 }
amxc_var_t * amxo_parser_get_config(amxo_parser_t *parser, const char *path)
Gets a configuration option.
int amxo_parser_set_config(amxo_parser_t *parser, const char *path, amxc_var_t *value)
Sets a configuration option.

◆ amxo_parser_get_config()

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

Note
Freeing the returned amxc_var_t* using amxc_var_delete will remove the configuration option.
Parameters
parserthe odl parser instance
paththe path of the configuration option
Returns
Returns the config option as a variant or NULL when no option found with the name given. Freeing the returned variant will remove the config.

Definition at line 430 of file amxo_parser_main.c.

431  {
432  amxc_var_t* retval = NULL;
433  when_null(parser, exit);
434  when_str_empty(path, exit);
435 
436  retval = amxc_var_get_path(&parser->config, path, AMXC_VAR_FLAG_DEFAULT);
437 
438 exit:
439  return retval;
440 }
amxc_var_t config
Definition: amxo_types.h:250

◆ amxo_parser_set_config()

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.

Parameters
parserthe odl parser instance
paththe path of the configuration option
valuethe value of the configuration option as a variant
Returns
Returns 0 when success, any other value indicates failure.

Definition at line 442 of file amxo_parser_main.c.

444  {
445  int retval = 0;
446  when_null(parser, exit);
447  when_null(value, exit);
448  when_str_empty(path, exit);
449 
450  retval = amxc_var_set_path(&parser->config,
451  path,
452  value,
453  AMXC_VAR_FLAG_UPDATE | AMXC_VAR_FLAG_COPY | AMXC_VAR_FLAG_AUTO_ADD);
454 
455 exit:
456  return retval;
457 }