UM C API
6.16.1
|
WARNING: the HyperTopic feature is deprecated and will be removed from a future release. More...
#include "lbm/lbm.h"
Go to the source code of this file.
Data Structures | |
struct | lbm_delete_cb_info_t_stct |
Structure passed to the lbm_hypertopic_rcv_delete() function so that a deletion callback may be called. More... | |
Typedefs | |
typedef struct lbm_hypertopic_rcv_stct | lbm_hypertopic_rcv_t |
HyperTopic receiver object (opaque) | |
typedef int(* | lbm_hypertopic_rcv_cb_proc) (lbm_hypertopic_rcv_t *hrcv, lbm_msg_t *msg, void *clientd) |
Application callback for messages delivered to HyperTopic receivers. More... | |
typedef void(* | lbm_delete_cb_proc) (int dispatch_thrd, void *clientd) |
Application callback for lbm_hypertopic_rcv_delete(). More... | |
typedef struct lbm_delete_cb_info_t_stct | lbm_delete_cb_info_t |
Structure passed to the lbm_hypertopic_rcv_delete() function so that a deletion callback may be called. | |
Functions | |
LBMExpDLL int | lbm_hypertopic_rcv_init (lbm_hypertopic_rcv_t **hrcvp, lbm_context_t *ctx, const char *prefix, lbm_event_queue_t *evq) |
Initialize a HyperTopic receiver. More... | |
LBMExpDLL int | lbm_hypertopic_rcv_add (lbm_hypertopic_rcv_t *hrcv, const char *pattern, lbm_hypertopic_rcv_cb_proc proc, void *clientd) |
Add a topic pattern to the set of topics being received by a HyperTopic receiver. More... | |
LBMExpDLL int | lbm_hypertopic_rcv_delete (lbm_hypertopic_rcv_t *hrcv, const char *pattern, lbm_hypertopic_rcv_cb_proc proc, void *clientd, lbm_delete_cb_info_t *cbinfo) |
Delete a previously added topic from a HyperTopic receiver topic set. More... | |
LBMExpDLL int | lbm_hypertopic_rcv_destroy (lbm_hypertopic_rcv_t *hrcv) |
Clean-up HyperTopic receiver previously created by lbm_hypertopic_rcv_init() More... | |
WARNING: the HyperTopic feature is deprecated and will be removed from a future release.
Informatica recommends using normal wildcard receivers with "PCRE" regular expression pattern matching.
All of the documentation and software included in this and any other Informatica Inc. Ultra Messaging Releases Copyright (C) Informatica Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted only as covered by the terms of a valid software license agreement with Informatica Inc.
(C) Copyright 2006,2023 Informatica Inc. All Rights Reserved.
THE SOFTWARE IS PROVIDED "AS IS" AND INFORMATICA DISCLAIMS ALL WARRANTIES EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. INFORMATICA DOES NOT WARRANT THAT USE OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE. INFORMATICA SHALL NOT, UNDER ANY CIRCUMSTANCES, BE LIABLE TO LICENSEE FOR LOST PROFITS, CONSEQUENTIAL, INCIDENTAL, SPECIAL OR INDIRECT DAMAGES ARISING OUT OF OR RELATED TO THIS AGREEMENT OR THE TRANSACTIONS CONTEMPLATED HEREUNDER, EVEN IF INFORMATICA HAS BEEN APPRISED OF THE LIKELIHOOD OF SUCH DAMAGES.
The LBM HyperTopic API provides a mechanism to enable the efficient reception of messages sent over any LBM transport (especially an immediate messaging transport) where the message topic conforms to a simple hierarchical wildcard topic structure.
The hierarchical topic supported by this API has a BNF grammar as follows:
The "*" token in the above grammar will match any sequence of characters excluding a "/". The ">" token will match any sequence of characters including a "/" (until the end of the topic string).
The grammar supports a prefix string that can be applied to effectively implement a namespace for each instance of a HyperTopic receiver.
A HyperTopic receiver is initialized using the lbm_hypertopic_rcv_init() API function. This function sets the HyperTopic namespace prefix and an optional event queue to be used for messages received on all topics which are part of the HyperTopic namespace.
The lbm_hypertopic_rcv_add() and lbm_hypertopic_rcv_delete() functions are used to add and remove topic patterns to the HyperTopic namespace. Unlike non-HyperTopic receiver creation and deletion functions, these functions take the same set of arguments which include a pointer to the HyperTopic receiver object, the topic pattern, received message callback function and client data pointer (passed with message to the callback function. The lbm_hypertopic_rcv_delete() API function also accepts an optional designation for a callback function to be called once all message callbacks for the topic being deleted have completed.
The lbm_hypertopic_rcv_destroy() API function should be called to de-initialize and clean-up the HyperTopic receiver after all topics added to the HyperTopic namespace have been deleted.
typedef void(* lbm_delete_cb_proc) (int dispatch_thrd, void *clientd) |
Application callback for lbm_hypertopic_rcv_delete().
Set by lbm_hypertopic_rcv_delete(). Note: This application callback can be made from the context thread, and is therefore, limited in the LBM API calls that it can make. The application is called after all events associated with the delete are completed.
dispatch_thrd | Indicates from where the callback is being called. This can be useful to the application to avoid deadlock.
|
clientd | Client data pointer supplied in the lbm_delete_cb_info_t passed to lbm_hypertopic_rcv_delete(). |
typedef int(* lbm_hypertopic_rcv_cb_proc) (lbm_hypertopic_rcv_t *hrcv, lbm_msg_t *msg, void *clientd) |
Application callback for messages delivered to HyperTopic receivers.
Set by lbm_hypertopic_rcv_add(). If this application callback is set on an HyperTopic receiver that has been initialized without an event queue, it is called from the context thread and is therefore, limited in the API calls that it can make.
After the callback returns, the message object msg is deleted and the application must not refer to it. This behavior can be overridden by calling lbm_msg_retain() from the receive callback before it returns. It then becomes the application's responsibility to delete the message object by calling lbm_msg_delete() after the application no longer needs to refer to the message structure or its contents.
hrcv | HyperTopic receiver object generating the event. |
msg | Message object containing the receiver event. |
clientd | Client data pointer supplied in lbm_hypertopic_rcv_add(). |
LBMExpDLL int lbm_hypertopic_rcv_add | ( | lbm_hypertopic_rcv_t * | hrcv, |
const char * | pattern, | ||
lbm_hypertopic_rcv_cb_proc | proc, | ||
void * | clientd | ||
) |
Add a topic pattern to the set of topics being received by a HyperTopic receiver.
hrcv | HyperTopic object created by lbm_hypertopic_rcv_init() |
pattern | Hierarchical topic pattern to add to the HyperTopic group. |
proc | Pointer to a function to call when messages arrive on a topic matched by pattern. |
clientd | Pointer to client data that is passed to proc when data arrives on the topic matched by pattern. |
LBMExpDLL int lbm_hypertopic_rcv_delete | ( | lbm_hypertopic_rcv_t * | hrcv, |
const char * | pattern, | ||
lbm_hypertopic_rcv_cb_proc | proc, | ||
void * | clientd, | ||
lbm_delete_cb_info_t * | cbinfo | ||
) |
Delete a previously added topic from a HyperTopic receiver topic set.
hrcv | HyperTopic object created by lbm_hypertopic_rcv_init() |
pattern | Hierarchical topic pattern to delete from the HyperTopic group. |
proc | Pointer to a function being called when messages arrive from the given pattern. |
clientd | Pointer to client data that is being passed to proc when data arrives on a topic matched by pattern. |
cbinfo | Pointer to callback informatin structure specifying a function to be called when the deletion is complete. |
LBMExpDLL int lbm_hypertopic_rcv_destroy | ( | lbm_hypertopic_rcv_t * | hrcv | ) |
Clean-up HyperTopic receiver previously created by lbm_hypertopic_rcv_init()
hrcv | HyperTopic receiver to be destroyed. |
LBMExpDLL int lbm_hypertopic_rcv_init | ( | lbm_hypertopic_rcv_t ** | hrcvp, |
lbm_context_t * | ctx, | ||
const char * | prefix, | ||
lbm_event_queue_t * | evq | ||
) |
Initialize a HyperTopic receiver.
hrcvp | Pointer to location where the lbm_hypertopic_rcv_t object will be returned. |
ctx | Pointer to the LBM context object associated with the receiver. |
prefix | Namespace prefix for the HyperTopic receiver. The prefix string constrains the topic namespace to topics that begin with the specified prefix only. This parameter may be set to NULL if no prefix is to be defined for this HyperTopic namespace. |
evq | Optional Event Queue to place message events on when they arrive. If NULL, all messages will be delivered from the context thread. |