Query objects contain expressions that allow the application to specify a filter on the locally available data.
More...
#include "Query.hpp"
Inherits dds::core::Reference< DELEGATE >.
Inherited by dds::sub::cond::QueryCondition.
Query objects contain expressions that allow the application to specify a filter on the locally available data.
A Query is used in a QueryCondition or DataReader::Selector and is associated with one DataReader.
- SQL Expression
- The SQL query string is set by expression which must be a subset of the SQL query language. In this query expression, parameters may be used, which must be set in the sequence of strings defined by the parameter query_parameters. A parameter is a string which can define an integer, float, string or enumeration. The number of values in query_parameters must be equal or greater than the highest referenced n token in the query_expression (e.g. if %1 and %8 are used as parameters in the query_expression, the query_parameters should at least contain n+1 = 9 values).
Look here for the specific query expression syntax.
- See also
- dds::sub::cond::QueryCondition
-
dds::sub::DataReader::Selector
-
dds::sub::DataReader::ManipulatorSelector
-
Subscription concept
Definition at line 61 of file Query.hpp.
◆ const_iterator
Iterator for the query expression parameters.
Definition at line 75 of file Query.hpp.
◆ iterator
Iterator for the query expression parameters.
Definition at line 70 of file Query.hpp.
◆ Query() [1/3]
◆ Query() [2/3]
template<typename FWIterator >
dds::sub::Query::Query |
( |
const dds::sub::AnyDataReader & |
dr, |
|
|
const std::string & |
expression, |
|
|
const FWIterator & |
params_begin, |
|
|
const FWIterator & |
params_end |
|
) |
| |
Create a dds::sub::Query associated with an dds::sub::AnyDataReader.
- Parameters
-
- Template Parameters
-
params_begin | Iterator pointing to the beginning of the parameters to set |
params_end | Iterator pointing to the end of the parameters to set |
- Exceptions
-
◆ Query() [3/3]
dds::sub::Query::Query |
( |
const dds::sub::AnyDataReader & |
dr, |
|
|
const std::string & |
expression, |
|
|
const std::vector< std::string > & |
params |
|
) |
| |
◆ add_parameter()
void dds::sub::Query::add_parameter |
( |
const std::string & |
param | ) |
|
Adds a parameter to the query.
See SQL expression info
- Parameters
-
param | The parameter to add |
- Exceptions
-
◆ begin() [1/2]
◆ begin() [2/2]
◆ data_reader()
◆ end() [1/2]
◆ end() [2/2]
◆ expression() [1/2]
const std::string& dds::sub::Query::expression |
( |
| ) |
const |
◆ expression() [2/2]
void dds::sub::Query::expression |
( |
const std::string & |
expr | ) |
|
Set new expression.
- Parameters
-
expr | ref anchor_dds_sub_query_expression "SQL expression" |
- 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::Query::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 |
- Exceptions
-
◆ parameters_length()
uint32_t dds::sub::Query::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
-
The documentation for this class was generated from the following file: