QueryCondition objects are specialized ReadCondition objects that allow the application to also specify a filter on the locally available data.
More...
#include "QueryCondition.hpp"
Inherits dds::sub::cond::ReadCondition, and dds::sub::Query.
|
| QueryCondition (const dds::sub::AnyDataReader &dr, const dds::sub::status::DataState &status) |
|
| QueryCondition (const dds::sub::AnyDataReader &dr, const std::string &expression, const std::vector< std::string > ¶ms, const dds::sub::status::DataState &status) |
|
template<typename FUN > |
| QueryCondition (const dds::sub::AnyDataReader &dr, const std::string &expression, const std::vector< std::string > ¶ms, const dds::sub::status::DataState &status, const FUN &functor) |
|
template<typename FUN > |
| QueryCondition (const dds::sub::AnyDataReader &dr, const std::string &expression, const std::vector< std::string > ¶ms, const dds::sub::status::DataState &status, FUN &functor) |
|
| QueryCondition (const dds::sub::Query &query, const dds::sub::status::DataState &status) |
|
template<typename FUN > |
| QueryCondition (const dds::sub::Query &query, const dds::sub::status::DataState &status, const FUN &functor) |
|
template<typename FUN > |
| QueryCondition (const dds::sub::Query &query, const dds::sub::status::DataState &status, FUN &functor) |
|
void | add_parameter (const std::string ¶m) |
|
iterator | begin () |
|
const_iterator | begin () const |
|
const dds::sub::AnyDataReader & | data_reader () const |
|
void | dispatch () |
|
iterator | end () |
|
const_iterator | end () const |
|
const std::string & | expression () |
|
const std::string & | expression () const |
|
void | expression (const std::string &expr) |
|
template<typename Functor > |
void | handler (const Functor &func) |
|
template<typename Functor > |
void | handler (Functor &func) |
|
bool | is_nil () const |
|
bool | operator!= (const null_type nil) const |
|
template<typename R > |
bool | operator!= (const R &ref) const |
|
DELEGATE * | operator-> () |
|
const DELEGATE * | operator-> () const |
|
bool | operator== (const null_type) const |
|
template<typename R > |
bool | operator== (const R &ref) const |
|
template<typename FWIterator > |
void | parameters (const FWIterator &begin, const FWIterator end) |
|
uint32_t | parameters_length () const |
|
void | reset_handler () |
|
const dds::sub::status::DataState | state_filter () const |
|
bool | trigger_value () const |
|
QueryCondition objects are specialized ReadCondition objects that allow the application to also specify a filter on the locally available data.
The query (query_expression) is similar to an SQL WHERE clause can be parameterized by arguments. See dds::sub::Query for more query information.
See the WaitSet examples for some examples.
Although the WaitSet examples use the StatusCondition, the basic usage of this Condition with a WaitSet is the same.
- See also
- dds::sub::Query
-
dds::core::cond::Condition
-
dds::sub::cond::ReadCondition
-
WaitSet concept
-
Subscription concept
-
SQL expression info
-
WaitSet examples
Definition at line 62 of file QueryCondition.hpp.
◆ const_iterator
◆ iterator
◆ QueryCondition() [1/7]
Creates a QueryCondition instance.
This will create an QueryCondition that is associated with a dds::sub::Query, which is again associated with a dds::sub::DataReader.
- Parameters
-
query | The query to filter on the locally available data. |
status | A mask, which selects only those samples with the desired sample/view/instance states. |
- Exceptions
-
◆ QueryCondition() [2/7]
◆ QueryCondition() [3/7]
◆ QueryCondition() [4/7]
◆ QueryCondition() [5/7]
◆ QueryCondition() [6/7]
◆ QueryCondition() [7/7]
◆ add_parameter()
void dds::sub::cond::QueryCondition::add_parameter |
( |
const std::string & |
param | ) |
|
Adds a parameter to the query.
See SQL expression info
- Parameters
-
param | The parameter to add |
- Returns
- void
- Exceptions
-
◆ begin() [1/2]
iterator dds::sub::cond::QueryCondition::begin |
( |
| ) |
|
◆ begin() [2/2]
◆ data_reader()
◆ dispatch()
void dds::core::cond::Condition::dispatch |
( |
| ) |
|
|
inherited |
Dispatches the functor that have been registered with the Condition.
The Condition has to have been triggered for the functor will be called by this function.
- Returns
- void
- Exceptions
-
◆ end() [1/2]
iterator dds::sub::cond::QueryCondition::end |
( |
| ) |
|
◆ end() [2/2]
◆ expression() [1/3]
const std::string& dds::sub::cond::QueryCondition::expression |
( |
| ) |
|
◆ expression() [2/3]
const std::string& dds::sub::Query::expression |
( |
| ) |
const |
|
inherited |
◆ expression() [3/3]
void dds::sub::cond::QueryCondition::expression |
( |
const std::string & |
expr | ) |
|
Set the Query expression.
- Parameters
-
- Returns
- void
- Exceptions
-
◆ handler() [1/2]
template<typename Functor >
void dds::core::cond::Condition::handler |
( |
const Functor & |
func | ) |
|
|
inherited |
Registers a functor as custom handler with this Condition.
The supplied functor will be called when this Condition is triggered and either the dds::core::cond::Condition::dispatch() is called or the dds::core::cond::WaitSet::dispatch() on the WaitSet to which this Condition is attached to.
- Template Parameters
-
Functor | The functor to be called when the StatusCondition triggers. |
- Returns
- void
- Exceptions
-
◆ handler() [2/2]
template<typename Functor >
void dds::core::cond::Condition::handler |
( |
Functor & |
func | ) |
|
|
inherited |
Registers a functor as custom handler with this Condition.
The supplied functor will be called when this Condition is triggered and either the dds::core::cond::Condition::dispatch() is called or the dds::core::cond::WaitSet::dispatch() on the WaitSet to which this Condition is attached to.
- Template Parameters
-
Functor | The functor to be called when the StatusCondition triggers. |
- Returns
- void
- Exceptions
-
◆ is_nil()
template<typename DELEGATE>
Check if the referenced object is nil.
In other words, check if the reference is pointing to a null object.
- Returns
- true if the referenced object is null.
◆ operator!=() [1/2]
template<typename DELEGATE>
Special operator!= used to check if this reference object does not equal the dds::core::null reference.
The non-null-check can be done like this:
if (r != dds::core::null) {
}
- Returns
- true if this reference is not null.
◆ operator!=() [2/2]
template<typename DELEGATE>
template<typename R >
Compares two Reference objects and returns true if they are not equal.
Inequality is based on the referential inequality of the object being pointed to.
- Parameters
-
ref | the other Reference object |
- Returns
- true when not equal
◆ operator->() [1/2]
template<typename DELEGATE>
The operator->() is provided to be able to directly invoke functions on the delegate.
The decision to provide direct access to the delegate was motivated by the need for providing a way that was not invasive with respect to the CXXDDS API and yet would allow for vendor-specific extension. Thus vendor-specific extensions can be invoked on the Reference and on all its subclasses as follows:
my_dds_entity.standard_function();
my_dds_entity->vendor_specific_extension();
- Returns
- a reference to delegate.
◆ operator->() [2/2]
template<typename DELEGATE>
The operator->() is provided to be able to directly invoke functions on the delegate.
The decision to provide direct access to the delegate was motivated by the need for providing a way that was not invasive with respect to the CXXDDS API and yet would allow for vendor-specific extension. Thus vendor-specific extensions can be invoked on the Reference and on all its subclasses as follows:
my_dds_entity.standard_function();
my_dds_entity->vendor_specific_extension();
- Returns
- a reference to delegate.
◆ operator==() [1/2]
template<typename DELEGATE>
Special operator== used to check if this reference object equals the dds::core::null reference.
The null-check can be done like this:
if (r == dds::core::null) {
}
- Returns
- true if this reference is null.
◆ operator==() [2/2]
template<typename DELEGATE>
template<typename R >
Compares two Reference objects and returns true if they are equal.
Equality is based on the referential equality of the object being pointed.
- Parameters
-
ref | the other Reference object |
- Returns
- true when equal
◆ parameters()
template<typename FWIterator >
void dds::sub::cond::QueryCondition::parameters |
( |
const FWIterator & |
begin, |
|
|
const FWIterator |
end |
|
) |
| |
Sets the query parameters.
See SQL expression info
- Template Parameters
-
begin | Iterator pointing to the beginning of the parameters to set |
end | Iterator pointing to the end of the parameters to set |
- Returns
- void
- Exceptions
-
◆ parameters_length()
uint32_t dds::sub::cond::QueryCondition::parameters_length |
( |
| ) |
const |
Gets the number of parameters in the query.
See SQL expression info
- Returns
- uint32_t The number of parameters in the query
- Exceptions
-
◆ reset_handler()
void dds::core::cond::Condition::reset_handler |
( |
| ) |
|
|
inherited |
Resets the handler for this Condition.
After the invocation of this function no handler will be registered with this Condition.
- Returns
- void
- Exceptions
-
◆ state_filter()
◆ trigger_value()
bool dds::core::cond::Condition::trigger_value |
( |
| ) |
const |
|
inherited |
This operation retrieves the trigger_value of the Condition.
A Condition has a trigger_value that can be TRUE or FALSE and is set by the Data Distribution Service (except a GuardCondition). This operation returns the trigger_value of the Condition.
- Returns
- bool The boolean value to which the Condition is set.
- Exceptions
-
The documentation for this class was generated from the following file: