RTI Connext Traditional C++ API
Version 6.1.0
|
[Not supported (optional)] <<interface>> A specialization of DDSTopicDescription that allows subscriptions that combine/filter/rearrange data coming from several topics. More...
Public Member Functions | |
virtual const char * | get_subscription_expression ()=0 |
Get the expression for this DDSMultiTopic. More... | |
virtual DDS_ReturnCode_t | get_expression_parameters (DDS_StringSeq ¶meters)=0 |
Get the expression parameters. More... | |
virtual DDS_ReturnCode_t | set_expression_parameters (const DDS_StringSeq ¶meters)=0 |
Set the expression_parameters . More... | |
Public Member Functions inherited from DDSTopicDescription | |
virtual const char * | get_type_name ()=0 |
Get the associated type_name . More... | |
virtual const char * | get_name ()=0 |
Get the name used to create this DDSTopicDescription . More... | |
virtual DDSDomainParticipant * | get_participant ()=0 |
Get the DDSDomainParticipant to which the DDSTopicDescription belongs. More... | |
Static Public Member Functions | |
static DDSMultiTopic * | narrow (DDSTopicDescription *topic_description) |
Narrow the given DDSTopicDescription pointer to a DDSMultiTopic pointer. More... | |
[Not supported (optional)] <<interface>> A specialization of DDSTopicDescription that allows subscriptions that combine/filter/rearrange data coming from several topics.
DDSMultiTopic allows a more sophisticated subscription that can select and combine data received from multiple topics into a single resulting type (specified by the inherited type_name
). The data will then be filtered (selection) and possibly re-arranged (aggregation/projection) according to a subscription_expression
with parameters expression_parameters
.
subscription_expression
is a string that identifies the selection and re-arrangement of data from the associated topics. It is similar to an SQL statement where the SELECT part provides the fields to be kept, the FROM part provides the names of the topics that are searched for those fields, and the WHERE clause gives the content filter. The Topics combined may have different types but they are restricted in that the type of the fields used for the NATURAL JOIN operation must be the same. expression_parameters
attribute is a sequence of strings that give values to the 'parameters' (i.e. "%n" tokens) in the subscription_expression
. The number of supplied parameters must fit with the requested values in the subscription_expression
(i.e. the number of n tokens). Note that the source for data may not be restricted to a single topic.
DDSDataReader entities associated with a DDSMultiTopic may access instances that are "constructed" at the DDSDataReader side from the instances written by multiple DDSDataWriter entities. The DDSMultiTopic access instance will begin to exist as soon as all the constituting DDSTopic instances are in existence. The view_state
and instance_state
is computed from the corresponding states of the constituting instances:
view_state
of the DDSMultiTopic instance is DDS_NEW_VIEW_STATE
if at least one of the constituting instances has view_state
= DDS_NEW_VIEW_STATE. Otherwise, it will be DDS_NOT_NEW_VIEW_STATE. instance_state
of the DDSMultiTopic instance is DDS_ALIVE_INSTANCE_STATE if the instance_state
of all the constituting DDSTopic instances is DDS_ALIVE_INSTANCE_STATE. It is DDS_NOT_ALIVE_DISPOSED_INSTANCE_STATE if at least one of the constituting DDSTopic instances is DDS_NOT_ALIVE_DISPOSED_INSTANCE_STATE. Otherwise, it is DDS_NOT_ALIVE_NO_WRITERS_INSTANCE_STATE. Queries and Filters Syntax describes the syntax of subscription_expression
and expression_parameters
.
|
static |
Narrow the given DDSTopicDescription pointer to a DDSMultiTopic pointer.
|
pure virtual |
Get the expression for this DDSMultiTopic.
The expressions syntax is described in the DDS specification. It is specified when the DDSMultiTopic is created.
subscription_expression
of the DDSMultiTopic.
|
pure virtual |
Get the expression parameters.
The expressions syntax is described in the DDS specification.
The parameters
is either specified on the last successful call to DDSMultiTopic::set_expression_parameters, or if DDSMultiTopic::set_expression_parameters was never called, the parameters
specified when the DDSMultiTopic was created.
parameters | <<inout>> Fill in this sequence with the expression parameters. The memory for the strings in this sequence is managed according to the conventions described in String Conventions. In particular, be careful to avoid a situation in which RTI Connext allocates a string on your behalf and you then reuse that string in such a way that RTI Connext believes it to have more memory allocated to it than it actually does. |
|
pure virtual |
Set the expression_parameters
.
Changes the expression_parameters
associated with the DDSMultiTopic.
parameters | <<in>> the filter expression parameters |