RTI Connext Traditional C++ API Version 7.2.0
|
<<interface>> Interface to be used by a custom filter of a DDSContentFilteredTopic More...
Public Member Functions | |
virtual DDS_ReturnCode_t | compile (void **new_compile_data, const char *expression, const DDS_StringSeq ¶meters, const DDS_TypeCode *type_code, const char *type_class_name, void *old_compile_data)=0 |
Compile an instance of the content filter according to the filter expression and parameters of the given data type. More... | |
virtual DDS_Boolean | evaluate (void *compile_data, const void *sample, const struct DDS_FilterSampleInfo *meta_data)=0 |
Evaluate whether the sample is passing the filter or not according to the sample content. More... | |
virtual void | finalize (void *compile_data)=0 |
A previously compiled instance of the content filter is no longer in use and resources can now be cleaned up. More... | |
<<interface>> Interface to be used by a custom filter of a DDSContentFilteredTopic
This interface can be implemented by an application-provided class and then registered with the DDSDomainParticipant such that samples can be filtered for a DDSContentFilteredTopic with the given filter name.
Note: the API for using a custom content filter is subject to change in a future release.
|
pure virtual |
Compile an instance of the content filter according to the filter expression and parameters of the given data type.
This method is called when an instance of the locally registered content filter is created or when the expression parameter for the locally registered content filter instance is changed.
An instance of the locally registered content filter is created every time a local DDSContentFilteredTopic with the matching filter name is created, or when a DDSDataReader with a matching filter name is discovered.
It is possible for multiple threads to be calling into this function at the same time. However, this function will never be called on a content filter that has been unregistered.
new_compile_data | <<out>> User specified opaque pointer of this instance of the content filter. This value is then passed to the DDSContentFilter::evaluate and DDSContentFilter::finalize functions for this instance of the content filter. Can be set to NULL . |
expression | <<in>> An ASCIIZ string with the filter expression. The memory used by this string is owned by RTI Connext and must not be freed. If you want to manipulate this string, you must first make a copy of it. |
parameters | <<in>> A string sequence with the expression parameters the DDSContentFilteredTopic was created with. The string sequence is equal (but not identical) to the string sequence passed to DDSDomainParticipant::create_contentfilteredtopic. Note that the sequence passed to the compile function is owned by RTI Connext and must not be referenced outside the compile function. |
type_code | <<in>> A pointer to the type code for the related DDSTopic of the DDSContentFilteredTopic. A type_code is a description of a type in terms of which types it contains (such as long, string, etc.) and the corresponding member field names in the data type structure. The type code can be used to write custom content filters that can be used with any type. |
type_class_name | <<in>> Fully qualified class name of the related DDSTopic. |
old_compile_data | <<in>> The previous new_compile_data value from a previous call to this instance of a content filter. If the compile function is called more than once for an instance of a DDSContentFilteredTopic, e.g., if the expression parameters are changed, then the new_compile_data value returned by the previous invocation is passed in the old_compile_data parameter (which can be NULL ). If this is a new instance of the filter, NULL is passed. This parameter is useful for freeing or reusing previously allocated resources. |
One | of the Standard Return Codes |
|
pure virtual |
Evaluate whether the sample is passing the filter or not according to the sample content.
This method is called when a sample for a locally created DDSDataReader associated with the filter is received, or when a sample for a discovered DDSDataReader assocated with the filter needs to be sent.
It is possible for multiple threads to be calling into this function at the same time. However, this function will never be called on a content filter that has been unregistered.
compile_data | <<in>> The last return value of the DDSContentFilter::compile function for this instance of the content filter. Can be NULL . |
sample | <<in>> Pointer to a deserialized sample to be filtered |
meta_data | <<in>> Pointer to meta data associated with the sample. |
|
pure virtual |
A previously compiled instance of the content filter is no longer in use and resources can now be cleaned up.
This method is called when an instance of the locally registered content filter is deleted.
An instance of the locally registered content filter is deleted every time a local DDSContentFilteredTopic with the matching filter name is deleted, or when a DDSDataReader with a matching filter name is removed due to discovery.
This method is also called on all instances of the discovered DDSDataReader with a matching filter name if the filter is unregistered with DDSDomainParticipant::unregister_contentfilter.
It is possible for multiple threads to be calling into this function at the same time. However, this function will never be called on a content filter that has been unregistered.
compile_data | <<in>> The last return value of the DDSContentFilter::compile function for this instance of the content filter. Can be NULL |