libamxo
4.3.4
Object Definition Language (ODL) parsing
|
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... | |
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
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.
Definition at line 58 of file amxo_version.c.
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:
parser | the odl parser instance |
fn | a valid function pointer (can not be NULL) |
Definition at line 459 of file amxo_parser_main.c.
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.
parser | pointer to an odl parser instance |
Definition at line 238 of file amxo_parser_main.c.
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.
parser | pointer to a pointer to an odl parser instance |
Definition at line 292 of file amxo_parser_main.c.
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.
parser | the odl parser instance |
|
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.
parser | the odl parser instance |
Definition at line 484 of file amxo.h.
|
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.
parser | the odl parser instance |
Definition at line 505 of file amxo.h.
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.
parser | the odl parser instance |
|
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
parser | the odl parser instance |
|
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.
parser | the odl parser instance |
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.
parser | pointer to an odl parser instance |
Definition at line 219 of file amxo_parser_main.c.
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:
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.
parser | the odl parser instance |
dm | pointer to the data model |
reason | a reason identifier |
Definition at line 493 of file amxo_parser_main.c.
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.
parser | pointer to a pointer to an odl parser instance |
Definition at line 274 of file amxo_parser_main.c.
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.
template | the synchronization template name |
object_a | the path that must be used as path A in the new synchronization context |
object_b | the path that must be used as path B in the new synchronization context |
Definition at line 592 of file amxo_parser_main.c.
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.
parser | the odl parser instance |
fd | Valid file descriptor |
object | the root object. All new objects defined in the odl file will by added in this object |
Definition at line 304 of file amxo_parser_main.c.
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.
parser | the odl parser instance |
file_path | full or relative path to an odl file |
object | the root object. All new objects defined in the odl file will by added in this object |
Definition at line 328 of file amxo_parser_main.c.
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.
parser | the odl parser instance |
text | A string containing an odl part |
object | the root object. All new objects defined in the odl file will by added in this object |
Definition at line 379 of file amxo_parser_main.c.
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:
If one of the entry points returns a failure (not 0), the other entry points are still called.
parser | the odl parser instance |
dm | pointer to the data model |
reason | a reason identifier |
Definition at line 537 of file amxo_parser_main.c.
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.
parser | the odl parser instance |
Definition at line 561 of file amxo_parser_main.c.
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.
parser | the odl parser instance |
Definition at line 579 of file amxo_parser_main.c.