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

Modules

 ODL Parser Configuration Options
 
 Connection management
 
 ODL Parser MIBS
 

Data Structures

struct  _amxo_parser
 The ODL parser structure. More...
 

Functions

const char * amxo_lib_version (void)
 Returns the version of lib amxo. More...
 
int amxo_parser_init (amxo_parser_t *parser)
 Initializes a new odl parser instance. More...
 
void amxo_parser_clean (amxo_parser_t *parser)
 Cleans up the odl parser instance. More...
 
int amxo_parser_new (amxo_parser_t **parser)
 Allocates memory for a new parser instance on the heap and initializes the odl parser. More...
 
void amxo_parser_delete (amxo_parser_t **parser)
 Cleans the odl parser content and frees the allocated memory. More...
 
int amxo_parser_parse_fd (amxo_parser_t *parser, int fd, amxd_object_t *object)
 Parses an odl file. More...
 
int amxo_parser_parse_file (amxo_parser_t *parser, const char *file_path, amxd_object_t *object)
 Parses an odl file. More...
 
int amxo_parser_parse_string (amxo_parser_t *parser, const char *text, amxd_object_t *object)
 Parses a string containing a valid ODL part. More...
 
static amxd_status_t amxo_parser_get_status (amxo_parser_t *parser)
 Get the status of the odl parser. More...
 
static const char * amxo_parser_get_message (amxo_parser_t *parser)
 Get the failure message in human readable form. More...
 
static const char * amxo_parser_get_file (amxo_parser_t *parser)
 Get the current file name that is being parsed. More...
 
static uint32_t amxo_parser_get_line (amxo_parser_t *parser)
 Get the current line number that is being parsed. More...
 
int amxo_parser_add_entry_point (amxo_parser_t *parser, amxo_entry_point_t fn)
 Adds an entry point function. More...
 
int amxo_parser_invoke_entry_points (amxo_parser_t *parser, amxd_dm_t *dm, int reason)
 Invokes all registered entry points. More...
 
int amxo_parser_rinvoke_entry_points (amxo_parser_t *parser, amxd_dm_t *dm, int reason)
 Invokes all registered entry points in reversed order. More...
 
int amxo_parser_start_synchronize (amxo_parser_t *parser)
 Start all object and parameter synchronizations that were declared in the loaded odl files. More...
 
void amxo_parser_stop_synchronize (amxo_parser_t *parser)
 Stop all object and parameter synchronizations that were declared in odl files. More...
 
amxs_sync_ctx_t * amxo_parser_new_sync_ctx (const char *sync_template, const char *object_a, const char *object_b)
 Create a new synchronization context from a synchronization template. More...
 
amxc_llist_t * amxo_parser_get_connections (amxo_parser_t *parser)
 Get a list of the current connections of the application. More...
 
amxc_llist_t * amxo_parser_get_listeners (amxo_parser_t *parser)
 Get of the current listen sockets of the application. More...
 

Detailed Description

Ambiorix ODL parser API

Defining a data model pure in code is not a pleasant job and very repititive. Using an ODL file makes this job a lot easier.

The odl parser will read the file and create the data model as described in that file. The parser can resolve data model function using function resolvers, see Function resolvers

Function Documentation

◆ amxo_lib_version()

const char* amxo_lib_version ( void  )

Returns the version of lib amxo.

Returns the version of lib amxo in string format X.Y.Z, where X is the major, Y is the minor and Z is the build number.

Returns
a zero terminated string

Definition at line 58 of file amxo_version.c.

58  {
59  return AMXO_VERSION;
60 }

◆ amxo_parser_add_entry_point()

int amxo_parser_add_entry_point ( amxo_parser_t parser,
amxo_entry_point_t  fn 
)

Adds an entry point function.

The parser itself will not call entry points, but will add entry-points if defined in the odl.

Any application or library can add extra entry points to the parser.

It is up to the application or library that initiates the odl parsing to invoke the entry points, see amxo_parser_invoke_entry_points

Entry point functions must comply with the following signature:

typedef int (*amxo_entry_point_t) (int reason,
amxd_dm_t *dm,
amxo_parser_t *parser);
int(* amxo_entry_point_t)(int reason, amxd_dm_t *dm, amxo_parser_t *parser)
Definition: amxo_types.h:218
The ODL parser structure.
Definition: amxo_types.h:245
Parameters
parserthe odl parser instance
fna valid function pointer (can not be NULL)
Returns
Returns 0 when success, any other value indicates failure.

Definition at line 459 of file amxo_parser_main.c.

460  {
461  int retval = -1;
462  amxo_entry_t* ep = NULL;
463  when_null(parser, exit);
464  when_null(fn, exit);
465 
466  if(parser->entry_points == NULL) {
467  retval = amxc_llist_new(&parser->entry_points);
468  when_null(parser->entry_points, exit);
469  }
470 
471  amxc_llist_for_each(it, parser->entry_points) {
472  ep = amxc_llist_it_get_data(it, amxo_entry_t, it);
473  if(ep->entry_point == fn) {
474  retval = 0;
475  goto exit;
476  }
477  }
478 
479  ep = (amxo_entry_t*) calloc(1, sizeof(amxo_entry_t));
480  when_null(ep, exit);
481 
482  ep->entry_point = fn;
483  amxc_llist_append(parser->entry_points, &ep->it);
484  retval = 0;
485 
486 exit:
487  if(retval != 0) {
488  free(ep);
489  }
490  return retval;
491 }
Definition: amxo_types.h:222
amxo_entry_point_t entry_point
Definition: amxo_types.h:224
amxc_llist_it_t it
Definition: amxo_types.h:223
amxc_llist_t * entry_points
Definition: amxo_types.h:273

◆ amxo_parser_clean()

void amxo_parser_clean ( amxo_parser_t parser)

Cleans up the odl parser instance.

When done parsing odl files, the parser content must be cleaned.

Note
Failing to clean the odl parser content could lead to memory leaks.
int load_data_model(amxd_dm_t *dm) {
int retval = 0;
amxo_parser_t parser;
amxd_object_t *root = amxd_dm_get_root(dm);
amxo_parser_init(&parser);
retval = amxo_parser_parse_file(&parser, "my_dm_def.odl", root);
return retval;
}
void amxo_parser_clean(amxo_parser_t *parser)
Cleans up the odl parser instance.
int amxo_parser_parse_file(amxo_parser_t *parser, const char *file_path, amxd_object_t *object)
Parses an odl file.
int amxo_parser_init(amxo_parser_t *parser)
Initializes a new odl parser instance.
Parameters
parserpointer to an odl parser instance

Definition at line 238 of file amxo_parser_main.c.

238  {
239  when_null(parser, exit);
240 
241  parser->fd = -1;
242  parser->object = NULL;
243  parser->param = NULL;
244  parser->func = NULL;
245  parser->status = amxd_status_ok;
246  parser->resolved_fn = NULL;
247 
248  amxc_rbuffer_clean(&parser->rbuffer);
249  amxc_string_clean(&parser->msg);
250  amxc_astack_clean(&parser->object_stack, NULL);
251  amxc_llist_clean(&parser->event_list, amxo_parser_free_event);
252  amxc_llist_clean(&parser->global_config, amxc_string_list_it_free);
253 
255  if(parser->resolvers != NULL) {
256  amxc_htable_delete(&parser->resolvers, NULL);
257  }
258 
259  amxc_llist_delete(&parser->hooks, NULL);
260  amxc_var_clean(&parser->config);
261  amxc_var_delete(&parser->include_stack);
262  amxc_llist_delete(&parser->entry_points, amxo_parser_entry_point_free);
263  amxc_llist_clean(&parser->function_names, amxc_string_list_it_free);
264  amxc_htable_clean(&parser->mibs, amxo_parser_del_mib_info);
265  if(parser->sync_contexts != NULL) {
266  amxc_llist_delete(&parser->sync_contexts, amxo_parser_del_sync_data);
267  }
268  amxc_var_delete(&parser->post_includes);
269 
270 exit:
271  return;
272 }
static void amxo_parser_entry_point_free(amxc_llist_it_t *it)
PRIVATE void amxo_parser_del_mib_info(const char *key, amxc_htable_it_t *it)
PRIVATE void amxo_parser_del_sync_data(amxc_llist_it_t *it)
PRIVATE void amxo_parser_clean_resolvers(amxo_parser_t *parser)
PRIVATE void amxo_parser_free_event(amxc_llist_it_t *it)
amxc_htable_t * resolvers
Definition: amxo_types.h:269
amxc_htable_t mibs
Definition: amxo_types.h:282
amxo_fn_ptr_t resolved_fn
Definition: amxo_types.h:266
amxc_llist_t * hooks
Definition: amxo_types.h:274
amxc_astack_t object_stack
Definition: amxo_types.h:261
amxc_lstack_t event_list
Definition: amxo_types.h:283
amxc_llist_t function_names
Definition: amxo_types.h:268
amxc_string_t msg
Definition: amxo_types.h:259
amxd_param_t * param
Definition: amxo_types.h:263
amxc_var_t config
Definition: amxo_types.h:250
amxc_rbuffer_t rbuffer
Definition: amxo_types.h:256
amxc_var_t * include_stack
Definition: amxo_types.h:277
amxd_status_t status
Definition: amxo_types.h:258
amxc_llist_t global_config
Definition: amxo_types.h:253
amxc_var_t * post_includes
Definition: amxo_types.h:275
amxd_object_t * object
Definition: amxo_types.h:262
amxd_function_t * func
Definition: amxo_types.h:264
amxc_llist_t * sync_contexts
Definition: amxo_types.h:290

◆ amxo_parser_delete()

void amxo_parser_delete ( amxo_parser_t **  parser)

Cleans the odl parser content and frees the allocated memory.

When done parsing odl files, the parser content must be deleted.

Note
Only use this function when the parser was created with amxo_parser_new
Failing to delete the odl parser will lead to memory leaks.
int load_data_model(amxd_dm_t *dm) {
int retval = 0;
amxo_parser_t *parser = NULL;
amxd_object_t *root = amxd_dm_get_root(dm);
amxo_parser_new(&parser);
retval = amxo_parser_parse_file(parser, "my_dm_def.odl", root);
return retval;
}
int amxo_parser_new(amxo_parser_t **parser)
Allocates memory for a new parser instance on the heap and initializes the odl parser.
void amxo_parser_delete(amxo_parser_t **parser)
Cleans the odl parser content and frees the allocated memory.
Parameters
parserpointer to a pointer to an odl parser instance

Definition at line 292 of file amxo_parser_main.c.

292  {
293  when_null(parser, exit);
294  when_null(*parser, exit);
295 
296  amxo_parser_clean(*parser);
297  free(*parser);
298  *parser = NULL;
299 
300 exit:
301  return;
302 }

◆ amxo_parser_get_connections()

amxc_llist_t* amxo_parser_get_connections ( amxo_parser_t parser)

Get a list of the current connections of the application.

This function is deprecated use amxp_connection_get_connections instead.

Parameters
parserthe odl parser instance
Returns
A list with all active socket connections.

◆ amxo_parser_get_file()

static const char* amxo_parser_get_file ( amxo_parser_t parser)
inlinestatic

Get the current file name that is being parsed.

During parsing (in parser hooks) you can get the file name of the current file being parsed.

if a string is being parser - see amxo_parser_parse_string - or parsing is started with a file descriptor - see amxo_parser_parse_fd - this function will return the string "<unknown>".

When parsing fails it will return the top level file name, and not the file name where the error occured, in case of included odl files.

Parameters
parserthe odl parser instance
Returns
The file name being parsed or the string "<unknown>" when no file name is available.

Definition at line 484 of file amxo.h.

484  {
485  return parser == NULL ? NULL : parser->file;
486 }
const char * file
Definition: amxo_types.h:279

◆ amxo_parser_get_line()

static uint32_t amxo_parser_get_line ( amxo_parser_t parser)
inlinestatic

Get the current line number that is being parsed.

During parsing (in parser hooks) you can get the line number of the current file being parsed.

When parsing fails it will return the top line number of the top level file, in case of included odl files.

Parameters
parserthe odl parser instance
Returns
The current line number.

Definition at line 505 of file amxo.h.

505  {
506  return parser == NULL ? 0 : parser->line;
507 }
uint32_t line
Definition: amxo_types.h:280

◆ amxo_parser_get_listeners()

amxc_llist_t* amxo_parser_get_listeners ( amxo_parser_t parser)

Get of the current listen sockets of the application.

This function is deprecated use amxp_connection_get_listeners instead.

Parameters
parserthe odl parser instance
Returns
A list with all open listen sockets.

◆ amxo_parser_get_message()

static const char* amxo_parser_get_message ( amxo_parser_t parser)
inlinestatic

Get the failure message in human readable form.

When parsing fails the message can provide more information about the failure reason.

When parsing was successful or when no parsing was done a NULL pointer is returned.

Typically this function is called when parsing has failed.

The messages is reset to NULL when starting a new parse using amxo_parser_parse_file, amxo_parser_parse_fd or amxo_parser_parse_string, or when calling amxo_parser_clean

int load_data_model(amxd_dm_t *dm) {
int retval = 0;
amxo_parser_t parser;
amxd_object_t *root = amxd_dm_get_root(dm);
amxo_parser_init(&parser);
retval = amxo_parser_parse_file(&parser, "my_dm_def.odl", root);
if (retval != 0) {
printf("ODL parsing failed - message = %s\n", amxo_parser_get_message(parser));
}
return retval;
}
static const char * amxo_parser_get_message(amxo_parser_t *parser)
Get the failure message in human readable form.
Definition: amxo.h:458
Parameters
parserthe odl parser instance
Returns
The human readable failure message or NULL when there is no message available

Definition at line 458 of file amxo.h.

458  {
459  return parser == NULL ? NULL : amxc_string_get(&parser->msg, 0);
460 }

◆ amxo_parser_get_status()

static amxd_status_t amxo_parser_get_status ( amxo_parser_t parser)
inlinestatic

Get the status of the odl parser.

When parsing fails the status can provide more information about the failure reason.

The status is reset to amxd_status_ok when starting a new parse using amxo_parser_parse_file, amxo_parser_parse_fd or amxo_parser_parse_string, or when calling amxo_parser_clean

Typically this function is called when parsing has failed.

int load_data_model(amxd_dm_t *dm) {
int retval = 0;
amxo_parser_t parser;
amxd_object_t *root = amxd_dm_get_root(dm);
amxo_parser_init(&parser);
retval = amxo_parser_parse_file(&parser, "my_dm_def.odl", root);
if (retval != 0) {
printf("ODL parsing failed - status = %d\n", amxo_parser_get_status(parser));
}
return retval;
}
static amxd_status_t amxo_parser_get_status(amxo_parser_t *parser)
Get the status of the odl parser.
Definition: amxo.h:414
Parameters
parserthe odl parser instance
Returns
Returns the status of the parser.

Definition at line 414 of file amxo.h.

414  {
415  return parser == NULL ? amxd_status_ok : parser->status;
416 }

◆ amxo_parser_init()

int amxo_parser_init ( amxo_parser_t parser)

Initializes a new odl parser instance.

Before using an odl parser, it must be initialized. This function is typically called when the parser is declared on the stack.

When done parsing ODL files, a clean-up of the parser content must be done using amxo_parser_clean.

A odl parser instance can be used multiple times, there is no need for a new parser instance to parse another odl file. the same instance can be re-used.

Note
Failing to clean the odl parser content could lead to memory leaks.
int load_data_model(amxd_dm_t *dm) {
int retval = 0;
amxo_parser_t parser;
amxd_object_t *root = amxd_dm_get_root(dm);
amxo_parser_init(&parser);
retval = amxo_parser_parse_file(&parser, "my_dm_definition.odl", root);
return retval;
}
Parameters
parserpointer to an odl parser instance
Returns
0 when successful, otherwise an error code

Definition at line 219 of file amxo_parser_main.c.

219  {
220  int retval = -1;
221  amxc_var_t* inc_dirs = NULL;
222  when_null(parser, exit);
223 
224  amxo_parser_child_init(parser);
225 
226  amxc_var_set_type(&parser->config, AMXC_VAR_ID_HTABLE);
227  inc_dirs = amxc_var_add_key(amxc_llist_t, &parser->config, "include-dirs", NULL);
228  amxc_var_add(cstring_t, inc_dirs, ".");
229 
231 
232  retval = 0;
233 
234 exit:
235  return retval;
236 }
void amxo_parser_child_init(amxo_parser_t *parser)
PRIVATE void amxo_parser_init_resolvers(amxo_parser_t *parser)

◆ amxo_parser_invoke_entry_points()

int amxo_parser_invoke_entry_points ( amxo_parser_t parser,
amxd_dm_t *  dm,
int  reason 
)

Invokes all registered entry points.

In an odl file entry-points can be defined. Any application or library can register extra entry-points using amxo_parser_add_entry_point.

It is up to the application to invoke these entry-point functions, the parser itself will not call them at any time.

Provide a well defined reason identifier when invoking the entry point functions. The ODL parser library defines two reasons:

  • AMXO_START
  • AMXO_END

If one of the entry points returns a failure (not 0), the other entry points are still called.

If all entry points are executed successfull and post-include files are available these will be loaded as well.

Parameters
parserthe odl parser instance
dmpointer to the data model
reasona reason identifier
Returns
Returns 0 when success. A possitive number indicates the number of failed entry points. A negative number indicates failre on the parser side.

Definition at line 493 of file amxo_parser_main.c.

495  {
496  int retval = -1;
497  int fail_count = 0;
498  bool dm_eventing_enabled = true;
499  when_null(parser, exit);
500  when_null(dm, exit);
501 
502  if(parser->entry_points != NULL) {
503  amxc_llist_for_each(it, parser->entry_points) {
504  amxo_entry_t* ep = amxc_llist_it_get_data(it, amxo_entry_t, it);
505  retval = ep->entry_point(reason, dm, parser);
506  if(retval != 0) {
507  fail_count++;
508  }
509  }
510  }
511 
512  retval = fail_count;
513  when_true(fail_count > 0, exit);
514 
515  when_true(parser->post_includes == NULL, exit);
516 
517  while(amxp_signal_read() == 0) {
518  }
519 
520  dm_eventing_enabled = GET_BOOL(&parser->config, "dm-eventing-enabled");
521  amxp_sigmngr_enable(&dm->sigmngr, dm_eventing_enabled);
522  amxc_var_for_each(var, parser->post_includes) {
523  const char* file = amxc_var_constcast(cstring_t, var);
524  if(amxo_parser_parse_file(parser, file, amxd_dm_get_root(dm)) != 0) {
525  fail_count++;
526  }
527  amxc_var_delete(&var);
528  }
529  amxp_sigmngr_enable(&dm->sigmngr, true);
530 
531  retval = fail_count;
532 
533 exit:
534  return retval;
535 }

◆ amxo_parser_new()

int amxo_parser_new ( amxo_parser_t **  parser)

Allocates memory for a new parser instance on the heap and initializes the odl parser.

Before using an odl parser, it must be created and initialized. This function is typically called when the parser must be allocated on the heap.

When done parsing ODL files, a clean-up of the parser content can be done using amxo_parser_clean. Or when the parser is not needed anymore it can be deleted using amxo_parser_delete

A odl parser instance can be used multiple times, there is no need for a new parser instance to parse another odl file. the same instance can be re-used.

Note
Failing to delete the odl parser will lead to memory leaks.
int load_data_model(amxd_dm_t *dm) {
int retval = 0;
amxo_parser_t *parser = NULL;
amxd_object_t *root = amxd_dm_get_root(dm);
amxo_parser_new(&parser);
retval = amxo_parser_parse_file(parser, "my_dm_def.odl", root);
return retval;
}
Parameters
parserpointer to a pointer to an odl parser instance
Returns
0 when successful, otherwise an error code

Definition at line 274 of file amxo_parser_main.c.

274  {
275  int retval = -1;
276  when_null(parser, exit);
277 
278  *parser = (amxo_parser_t*) calloc(1, sizeof(amxo_parser_t));
279  when_null((*parser), exit);
280 
281  retval = amxo_parser_init(*parser);
282 
283 exit:
284  if((retval != 0) && (*parser != NULL)) {
285  amxo_parser_clean(*parser);
286  free(*parser);
287  *parser = NULL;
288  }
289  return retval;
290 }

◆ amxo_parser_new_sync_ctx()

amxs_sync_ctx_t* amxo_parser_new_sync_ctx ( const char *  sync_template,
const char *  object_a,
const char *  object_b 
)

Create a new synchronization context from a synchronization template.

The paths provided to this function must match (at supported data model level) with the paths set in the template.

The paths provided must both point to existing objects, if one of them does not exist, creation of the new context fails.

Parameters
templatethe synchronization template name
object_athe path that must be used as path A in the new synchronization context
object_bthe path that must be used as path B in the new synchronization context
Returns
  • NULL if failed to create the synchronization context.
  • New synchronization context

Definition at line 592 of file amxo_parser_main.c.

594  {
595  amxs_sync_ctx_t* templ = NULL;
596  amxs_sync_ctx_t* ctx = NULL;
597  amxs_status_t status = amxs_status_ok;
598 
599  templ = amxo_parser_sync_get(sync_template);
600  status = amxs_sync_ctx_copy(&ctx, templ, NULL);
601  when_failed(status, exit);
602 
603  status = amxs_sync_ctx_set_paths(ctx, object_a, object_b);
604 
605 exit:
606  if(status != amxs_status_ok) {
607  amxs_sync_ctx_delete(&ctx);
608  }
609  return ctx;
610 }
PRIVATE amxs_sync_ctx_t * amxo_parser_sync_get(const char *sync_template)

◆ amxo_parser_parse_fd()

int amxo_parser_parse_fd ( amxo_parser_t parser,
int  fd,
amxd_object_t *  object 
)

Parses an odl file.

Reads and parses the odl file. During parsing of the odl file a data model is created or changed.

Objects will be added as a child of the provided data model object. Typically the data model root object will be used.

int load_data_model(amxd_dm_t *dm) {
int retval = 0;
amxo_parser_t parser;
amxd_object_t *root = amxd_dm_get_root(dm);
int fd = -1;
fd = open(my_dm_def.odl, O_RDONLY);
if (fd != -1) {
amxo_parser_init(&parser);
retval = amxo_parser_parse_fd(&parser, fd, root);
}
return retval;
}
int amxo_parser_parse_fd(amxo_parser_t *parser, int fd, amxd_object_t *object)
Parses an odl file.
Parameters
parserthe odl parser instance
fdValid file descriptor
objectthe root object. All new objects defined in the odl file will by added in this object
Returns
On success 0 is returned, 1 on failure. When parsing failed, more information about the reason can be found in the status field or message field. Use amxo_parser_get_status and amxo_parser_get_message respectivily.

Definition at line 304 of file amxo_parser_main.c.

306  {
307  int retval = -1;
308  struct rlimit nofile = { 0, 0 };
309  when_null(parser, exit);
310  when_null(object, exit);
311 
312  when_failed(getrlimit(RLIMIT_NOFILE, &nofile), exit);
313 
314  when_true(fd < 0 || (rlim_t) llabs(fd) > nofile.rlim_max, exit);
315  when_failed(fcntl((int) llabs(fd), F_GETFD), exit);
316 
317  amxo_hooks_start(parser);
318  retval = amxo_parser_parse_fd_internal(parser, fd, object);
319  amxc_llist_clean(&parser->global_config, amxc_string_list_it_free);
320  amxo_hooks_end(parser);
321 
322  amxo_parser_send_events(parser, amxd_object_get_dm(object));
323 
324 exit:
325  return retval;
326 }
PRIVATE void amxo_hooks_start(amxo_parser_t *parser)
PRIVATE void amxo_hooks_end(amxo_parser_t *parser)
static void amxo_parser_send_events(amxo_parser_t *parser, amxd_dm_t *dm)
static int amxo_parser_parse_fd_internal(amxo_parser_t *parser, int fd, amxd_object_t *object)

◆ amxo_parser_parse_file()

int amxo_parser_parse_file ( amxo_parser_t parser,
const char *  file_path,
amxd_object_t *  object 
)

Parses an odl file.

Opens the odl file and parses it. During parsing of the odl file a data model is created or changed.

Objects will be added as a child of the provided data model object. Typically the data model root object will be used.

This function changes the current working directory while parsing the odl file. During the parsing process the current working directory is set to the odl's file directory. The current working directory is reset to the orignal when parsing is done (success or failure). All include files (without path) are always searched in the current working directory

If this behaviour is unwanted, use amxo_parser_parse_fd instead.

int load_data_model(amxd_dm_t *dm) {
int retval = 0;
amxo_parser_t parser;
amxd_object_t *root = amxd_dm_get_root(dm);
amxo_parser_init(&parser);
retval = amxo_parser_parse_file(&parser, "my_dm_def.odl", root);
return retval;
}
Parameters
parserthe odl parser instance
file_pathfull or relative path to an odl file
objectthe root object. All new objects defined in the odl file will by added in this object
Returns
On success 0 is returned, 1 on failure. When parsing failed, more information about the reason can be found in the status field or message field. Use amxo_parser_get_status and amxo_parser_get_message respectivily.

Definition at line 328 of file amxo_parser_main.c.

330  {
331  int retval = -1;
332  char* current_wd = getcwd(NULL, 0);
333  char* real_path = NULL;
334  char* dir_name = NULL;
335  amxc_string_t res_file_path;
336  amxc_string_init(&res_file_path, 0);
337 
338  when_null(parser, exit);
339  when_str_empty(file_path, exit);
340  when_null(object, exit);
341 
342  if(amxc_string_set_resolved(&res_file_path, file_path, &parser->config) > 0) {
343  file_path = amxc_string_get(&res_file_path, 0);
344  }
345 
346  real_path = realpath(file_path, NULL);
347  if(real_path != NULL) {
348  dir_name = dirname(real_path);
349  when_true(chdir(dir_name) == -1, exit);
350  if(dir_name[1] != 0) {
351  dir_name[strlen(dir_name)] = '/';
352  } else {
353  free(real_path);
354  real_path = realpath(file_path, NULL);
355  }
356  }
357 
358  parser->file = (real_path == NULL) ? file_path : real_path;
359  amxo_hooks_start(parser);
360  retval = amxo_parser_parse_file_impl(parser,
361  real_path == NULL ? file_path : real_path,
362  object);
363  amxc_llist_clean(&parser->global_config, amxc_string_list_it_free);
364  amxo_hooks_end(parser);
365 
366  amxo_parser_send_events(parser, amxd_object_get_dm(object));
367 
368  if(real_path != NULL) {
369  when_true(chdir(current_wd) == -1, exit);
370  }
371 
372 exit:
373  amxc_string_clean(&res_file_path);
374  free(current_wd);
375  free(real_path);
376  return retval;
377 }
int amxo_parser_parse_file_impl(amxo_parser_t *parser, const char *file_path, amxd_object_t *object)

◆ amxo_parser_parse_string()

int amxo_parser_parse_string ( amxo_parser_t parser,
const char *  text,
amxd_object_t *  object 
)

Parses a string containing a valid ODL part.

Parses the provided string. During parsing of the odl string a data model is created or changed.

Objects will be added as a child of the provided data model object. Typically the data model root object will be used.

int load_data_model(amxd_dm_t *dm) {
int retval = 0;
amxo_parser_t parser;
amxd_object_t *root = amxd_dm_get_root(dm);
amxo_parser_init(&parser);
retval = amxo_parser_parse_string(&parser, "include \"my_dm_def.odl\"", root);
return retval;
}
int amxo_parser_parse_string(amxo_parser_t *parser, const char *text, amxd_object_t *object)
Parses a string containing a valid ODL part.
Parameters
parserthe odl parser instance
textA string containing an odl part
objectthe root object. All new objects defined in the odl file will by added in this object
Returns
On success 0 is returned, 1 on failure. When parsing failed, more information about the reason can be found in the status field or message field. Use amxo_parser_get_status and amxo_parser_get_message respectivily.

Definition at line 379 of file amxo_parser_main.c.

381  {
382  int retval = -1;
383  when_null(parser, exit);
384  when_null(object, exit);
385  when_str_empty(text, exit);
386 
387  amxc_rbuffer_write(&parser->rbuffer, text, strlen(text));
388  parser->object = object;
390  parser->status = amxd_status_ok;
391 
392  amxo_hooks_start(parser);
393  amxc_string_reset(&parser->msg);
394  amxo_parser_create_lex(parser);
395  retval = yyparse(parser->scanner);
396  amxo_parser_destroy_lex(parser);
397  amxo_hooks_end(parser);
398 
400 
401  amxo_parser_send_events(parser, amxd_object_get_dm(object));
402 
403  amxc_rbuffer_clean(&parser->rbuffer);
404  parser->object = NULL;
405 
406 exit:
407  return retval;
408 }
static ssize_t amxo_parser_string_reader(amxo_parser_t *parser, char *buf, size_t max_size)
PRIVATE void amxo_parser_create_lex(amxo_parser_t *parser)
PRIVATE void amxo_parser_sync_remove_invalid(amxo_parser_t *pctx)
PRIVATE void amxo_parser_destroy_lex(amxo_parser_t *parser)
amxo_reader_t reader
Definition: amxo_types.h:257
void * scanner
Definition: amxo_types.h:246

◆ amxo_parser_rinvoke_entry_points()

int amxo_parser_rinvoke_entry_points ( amxo_parser_t parser,
amxd_dm_t *  dm,
int  reason 
)

Invokes all registered entry points in reversed order.

In an odl file entry-points can be defined. Any application or library can register extra entry-points using amxo_parser_add_entry_point.

It is up to the application to invoke these entry-point functions, the parser itself will not call them at any time.

Provide a well defined reason identifier when invoking the entry point functions. The ODL parser library defines two reasons:

  • AMXO_START
  • AMXO_END

If one of the entry points returns a failure (not 0), the other entry points are still called.

Parameters
parserthe odl parser instance
dmpointer to the data model
reasona reason identifier
Returns
Returns 0 when success. A possitive number indicates the number of failed entry points. A negative number indicates failure on the parser side.

Definition at line 537 of file amxo_parser_main.c.

539  {
540  int retval = -1;
541  int fail_count = 0;
542  when_null(parser, exit);
543  when_null(dm, exit);
544 
545  if(parser->entry_points != NULL) {
546  amxc_llist_for_each_reverse(it, parser->entry_points) {
547  amxo_entry_t* ep = amxc_llist_it_get_data(it, amxo_entry_t, it);
548  retval = ep->entry_point(reason, dm, parser);
549  if(retval != 0) {
550  fail_count++;
551  }
552  }
553  }
554 
555  retval = fail_count;
556 
557 exit:
558  return retval;
559 }

◆ amxo_parser_start_synchronize()

int amxo_parser_start_synchronize ( amxo_parser_t parser)

Start all object and parameter synchronizations that were declared in the loaded odl files.

In an odl file object and parameter synchronization can be set up. All the synchronization contexts declared in odl files will be managed by the parser.

This function will initialize and start the synchronization. Stopping the synchronizations managed by the parser is done using amxo_parser_stop_synchronize.

The function can be called multiple times, without having any effect on already running synchronizations. This will allow the load of other odl files that add extra object and parameter synchronizations.

If no synchronizations were declared in the odl file, this function will have no effect.

Note
Declared synchronizations will fail if one of the synchronization objects is not available in any data model.
Parameters
parserthe odl parser instance
Returns
Returns 0 when success. Any other value indicates the number of synchronization contexts that failed to start.

Definition at line 561 of file amxo_parser_main.c.

561  {
562  int status = 0;
563  int fail_count = 0;
564  when_null(parser, exit);
565 
566  if(parser->sync_contexts != NULL) {
567  amxc_llist_for_each(it, parser->sync_contexts) {
568  status = amxo_parser_start_sync(it);
569  if(status != 0) {
570  fail_count++;
571  }
572  }
573  }
574 
575 exit:
576  return fail_count;
577 }
PRIVATE int amxo_parser_start_sync(amxc_llist_it_t *it)

◆ amxo_parser_stop_synchronize()

void amxo_parser_stop_synchronize ( amxo_parser_t parser)

Stop all object and parameter synchronizations that were declared in odl files.

In an odl file object and parameter synchronization can be set up. Calling this will stop all the synchronization contexts that were declared in odl files.

If all synchronizations that were declared in odl files are already stopped, this function will have no effect.

If no synchronizations were declared in the odl file, this function will have no effect.

Parameters
parserthe odl parser instance

Definition at line 579 of file amxo_parser_main.c.

579  {
580  when_null(parser, exit);
581 
582  if(parser->sync_contexts != NULL) {
583  amxc_llist_for_each(it, parser->sync_contexts) {
585  }
586  }
587 
588 exit:
589  return;
590 }
PRIVATE void amxo_parser_stop_sync(amxc_llist_it_t *it)