Go to the source code of this file.
|
MAMAExpDLL mama_status | mamaSourceManager_create (mamaSourceManager *sourceManager) |
| Create a mamaSourceManager object. More...
|
|
MAMAExpDLL mama_status | mamaSourceManager_destroy (mamaSourceManager sourceManager) |
| Destroy a mamaSourceManager object. More...
|
|
MAMAExpDLL mama_status | mamaSourceManager_createSource (mamaSourceManager sourceManager, const char *name, mamaSource *source) |
| Create a new mamaSource and add it to the manager. More...
|
|
MAMAExpDLL mama_status | mamaSourceManager_findOrCreateSource (mamaSourceManager sourceManager, const char *name, mamaSource *source) |
| Locates an existing mamaSource for the given name. More...
|
|
MAMAExpDLL mama_status | mamaSourceManager_findSource (mamaSourceManager sourceManager, const char *name, mamaSource *source) |
| Locates an existing mamaSource in the specified sourceManager with the specified string 'name' identifier. More...
|
|
MAMAExpDLL mama_status | mamaSourceManager_addSource (mamaSourceManager sourceManager, mamaSource source) |
| Add an existing mamaSource to the specified mamaSourceManager. More...
|
|
MAMAExpDLL mama_status | mamaSourceManager_addSourceWithName (mamaSourceManager sourceManager, mamaSource source, const char *name) |
| Add an existing mamaSource to the specified mamaSourceManager using the specified name as a unique identifier. More...
|
|
MAMAExpDLL mama_status | mamaSourceManager_iterateSources (mamaSourceManager sourceGroup, mamaSourceManager_sourcesIteratorCb callback, void *closure) |
| Iterate over all the sources in this mamaSourceManager. More...
|
|
◆ mamaSourceManager_sourcesIteratorCb
◆ mamaSourceManager_create()
Create a mamaSourceManager object.
- Parameters
-
sourceManager | The location of a mamaSourceManager to store the result. |
◆ mamaSourceManager_destroy()
Destroy a mamaSourceManager object.
- Parameters
-
sourceManager | The sourceManager object to destroy. |
◆ mamaSourceManager_createSource()
Create a new mamaSource and add it to the manager.
- Parameters
-
sourceManager | The sourceManager to use for creating the mamaSource. |
name | The string identifier for the mamaSource. |
source | The address to which the new source will be * written. |
- Returns
- MAMA_STATUS_OK if execution is successful.
◆ mamaSourceManager_findOrCreateSource()
Locates an existing mamaSource for the given name.
If none exists creates a new mamaSource and adds to the sourceManager.
- Parameters
-
sourceManager | The sourceManager to use for locating the mamaSource. |
name | The string identifier for the mamaSource |
source | The location to which the address for the source will be written. |
- Returns
- MAMA_STATUS_OK if execution is successful.
◆ mamaSourceManager_findSource()
Locates an existing mamaSource in the specified sourceManager with the specified string 'name' identifier.
The value of the source argument will be set to NULL if no source was located in the sourceManager provided.
- Parameters
-
sourceManager | The mamaSourceManager to use to locate the specified mamaSource. |
name | The string identifier for the required mamaSource. |
source | The location to which the address for the source will be written. NULL if none is found. |
- Returns
- MAMA_STATUS_OK if creation is successful.
◆ mamaSourceManager_addSource()
Add an existing mamaSource to the specified mamaSourceManager.
The id of the source will be used instead of the name to uniquely identify the source within the manager.
- Parameters
-
sourceManager | The mamaSourceManager to which an existing mamaSource is being added. |
source | The mamaSource being added to the specified mamaSourceManager. |
- Returns
- MAMA_STATUS_OK if execution is successful.
◆ mamaSourceManager_addSourceWithName()
Add an existing mamaSource to the specified mamaSourceManager using the specified name as a unique identifier.
- Parameters
-
sourceManager | The mamaSourceManager to which an existing mamaSource is being added. |
name | The string identifier for the mamaSource |
source | The mamaSource being added to the specified mamaSourceManager. |
- Returns
- MAMA_STATUS_OK if execution is successful.
◆ mamaSourceManager_iterateSources()
Iterate over all the sources in this mamaSourceManager.
- Parameters
-
sourceManager | The mamaSourceManager to iterate over. |
callback | The callback function pointer to invoke for each source in the group. |
closure | User supplied arbitrary data. Passed back on each invocation of the callback function. |
- Returns
- MAMA_STATUS_OK if the function executes successfully.