libamxo  4.3.4
Object Definition Language (ODL) parsing
Function Table Resolver API
Collaboration diagram for Function Table Resolver API:

Functions

int amxo_resolver_ftab_add (amxo_parser_t *parser, const char *fn_name, amxo_fn_ptr_t fn)
 Adds a C function to the function table. More...
 
int amxo_resolver_ftab_remove (amxo_parser_t *parser, const char *fn_name)
 Removes a function from the function table. More...
 
void amxo_resolver_ftab_clear (amxo_parser_t *parser)
 Removes all functions from the function table. More...
 

Detailed Description

Function Documentation

◆ amxo_resolver_ftab_add()

int amxo_resolver_ftab_add ( amxo_parser_t parser,
const char *  fn_name,
amxo_fn_ptr_t  fn 
)

Adds a C function to the function table.

Adds a C function to the function table resolver. The same function can be added multiple times using a different name. This makes it possible to use the same implementation for different data model methods.

Function names can be prepended with the full object path.

For an example see Function Table Resolver

Note
Supply function pointers to the function table resolver prior to parsing an odl file. By default the function table contains some parameter validation functions:
  • check_minimum
  • check_minimum_length
  • check_maximum
  • check_maximum_length
  • check_range
  • check_enum When using the same parser instance for parsing multiple odl files, there is no need to add the functions again, the function table is not cleared after parsing. The function amxo_parser_clean will remove all functions from the table, including the default parameter validation functions.
Parameters
parserthe odl parser instance
fn_namethe data model method name
fnthe function pointer (C implementation), use macro AMXO_FUNC
Returns
Retruns 0 when the function is added to the function table.

Definition at line 169 of file amxo_ftab_resolver.c.

171  {
172  int retval = -1;
173  amxo_ftab_fn_t* ftab_fn = NULL;
174  amxc_htable_t* ftab_data = NULL;
175  when_null(parser, exit);
176  when_null(fn, exit);
177  when_true(!amxo_ftab_func_name_is_valid(fn_name), exit);
178 
179  ftab_data = amxo_parser_claim_resolver_data(parser, "ftab");
180  when_null(ftab_data, exit);
181  when_true(amxc_htable_contains(ftab_data, fn_name), exit);
182 
183  ftab_fn = (amxo_ftab_fn_t*) calloc(1, sizeof(amxo_ftab_fn_t));
184  when_null(ftab_fn, exit);
185 
186  ftab_fn->fn = fn;
187  amxc_htable_insert(ftab_data, fn_name, &ftab_fn->hit);
188 
189  retval = 0;
190 
191 exit:
192  return retval;
193 }
static bool amxo_ftab_func_name_is_valid(const char *name)
amxc_htable_t * amxo_parser_claim_resolver_data(amxo_parser_t *parser, const char *resolver_name)
Fetches resolver specific data for a parser instance.
amxc_htable_it_t hit
amxo_fn_ptr_t fn

◆ amxo_resolver_ftab_clear()

void amxo_resolver_ftab_clear ( amxo_parser_t parser)

Removes all functions from the function table.

Removes all entries from the function table.

Parameters
parserthe odl parser instance

Definition at line 215 of file amxo_ftab_resolver.c.

215  {
216  when_null(parser, exit);
217  amxo_resolver_ftab_clean(parser, NULL);
218 
219 exit:
220  return;
221 }
static void amxo_resolver_ftab_clean(amxo_parser_t *parser, UNUSED void *priv)

◆ amxo_resolver_ftab_remove()

int amxo_resolver_ftab_remove ( amxo_parser_t parser,
const char *  fn_name 
)

Removes a function from the function table.

Removes a single entry from the function table.

Parameters
parserthe odl parser instance
fn_namethe data model method name
Returns
Retruns 0 when the function is removed from the function table.

Definition at line 195 of file amxo_ftab_resolver.c.

196  {
197  int retval = -1;
198  amxc_htable_t* ftab_data = NULL;
199  amxc_htable_it_t* it = NULL;
200  when_null(parser, exit);
201  when_str_empty(fn_name, exit);
202  ftab_data = amxo_parser_claim_resolver_data(parser, "ftab");
203  when_null(ftab_data, exit);
204 
205  it = amxc_htable_get(ftab_data, fn_name);
206  if(it != NULL) {
207  amxc_htable_it_clean(it, amxo_ftab_fn_free);
208  }
209  retval = 0;
210 
211 exit:
212  return retval;
213 }
void amxo_ftab_fn_free(UNUSED const char *key, amxc_htable_it_t *it)