Cyclone ISO C++ API Reference Guide
|
#include "DataReader.hpp"
Public Member Functions | |
Selector (DataReader &dr) | |
Selector & | content (const dds::sub::Query &query) |
Selector & | instance (const dds::core::InstanceHandle &handle) |
Selector & | max_samples (uint32_t maxsamples) |
Selector & | next_instance (const dds::core::InstanceHandle &handle) |
dds::sub::LoanedSamples< T > | read () |
template<typename SamplesBIIterator > | |
uint32_t | read (SamplesBIIterator sbit) |
template<typename SamplesFWIterator > | |
uint32_t | read (SamplesFWIterator sfit, uint32_t max_samples) |
Selector & | state (const dds::sub::status::DataState &state) |
dds::sub::LoanedSamples< T > | take () |
template<typename SamplesBIIterator > | |
uint32_t | take (SamplesBIIterator sbit) |
template<typename SamplesFWIterator > | |
uint32_t | take (SamplesFWIterator sfit, uint32_t max_samples) |
The Selector class is used by the DataReader to compose read operations.
A Selector can perform complex data selections, such as per-instance selection, content and status filtering, etc, when reading or taking samples. These settings on a Selector can be concatenated.
The DataReader has the select() operation, which can be used to aqcuire the Selector functionality on the reader implicitly.
However, this will create and destroy a Selector for every read, which is not very performance friendly.
The performance can be increase by creating a Selector up front and doing the reading on that Selector directly and re-using it.
Defaults
Element | Default Value |
---|---|
state | dds::sub::status::DataState::any |
content | Empty dds::sub::Query |
max_samples | dds::core::LENGTH_UNLIMITED |
instance | dds::core::InstanceHandle nil |
Definition at line 163 of file DataReader.hpp.
dds::sub::DataReader< T >::Selector::Selector | ( | DataReader & | dr | ) |
Construct a Selector for a DataReader.
DataReader |
Selector& dds::sub::DataReader< T >::Selector::content | ( | const dds::sub::Query & | query | ) |
Set the Query to filter with during the read or take.
Example
Read only samples that will be filtered according to the given dds::sub::Query.
See also DataReader select() operation.
query | the Query to apply to the selector |
Selector& dds::sub::DataReader< T >::Selector::instance | ( | const dds::core::InstanceHandle & | handle | ) |
Set InstanceHandle to filter with during the read or take.
Example
Read only samples of the given instance.
See also DataReader select() operation.
handle | the InstanceHandle to read/take for |
Selector& dds::sub::DataReader< T >::Selector::max_samples | ( | uint32_t | maxsamples | ) |
Set max_samples to limit the number of sample to get during the read or take.
Example
Read a maximum of three samples.
See also DataReader select() operation.
maxsamples | maximum number of samples to read/take |
Selector& dds::sub::DataReader< T >::Selector::next_instance | ( | const dds::core::InstanceHandle & | handle | ) |
Set next InstanceHandle to filter with during the read or take.
Example
Read all samples, instance by instance.
See also DataReader select() operation.
handle | the 'previous' InstanceHandle associated with new the read/take |
dds::sub::LoanedSamples<T> dds::sub::DataReader< T >::Selector::read | ( | ) |
This operation works the same as the default DataReader read() , except that it is performed on this Selector with possible filters set.
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The entity was not properly created and references to dds::core::null. |
dds::core::AlreadyClosedError | The entity has already been closed. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::NotEnabledError | The DataReader has not yet been enabled. |
uint32_t dds::sub::DataReader< T >::Selector::read | ( | SamplesBIIterator | sbit | ) |
This operation works the same as the backward iterator DataReader read() , except that it is performed on this Selector with possible filters set.
sbit | Back-inserting container iterator |
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The entity was not properly created and references to dds::core::null. |
dds::core::AlreadyClosedError | The entity has already been closed. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::NotEnabledError | The DataReader has not yet been enabled. |
uint32_t dds::sub::DataReader< T >::Selector::read | ( | SamplesFWIterator | sfit, |
uint32_t | max_samples | ||
) |
This operation works the same as the forward iterator DataReader read() , except that it is performed on this Selector with possible filters set.
sfit | Forward-inserting container iterator |
max_samples | Maximum samples to read and copy into the given container |
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The entity was not properly created and references to dds::core::null. |
dds::core::AlreadyClosedError | The entity has already been closed. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::NotEnabledError | The DataReader has not yet been enabled. |
Selector& dds::sub::DataReader< T >::Selector::state | ( | const dds::sub::status::DataState & | state | ) |
Set DataState to filter with during the read or take.
Example
Read only new data.
See also DataReader select() operation.
state | the requested DataState of the samples |
dds::sub::LoanedSamples<T> dds::sub::DataReader< T >::Selector::take | ( | ) |
This operation works the same as the default DataReader take() , except that it is performed on this Selector with possible filters set.
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The entity was not properly created and references to dds::core::null. |
dds::core::AlreadyClosedError | The entity has already been closed. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::NotEnabledError | The DataReader has not yet been enabled. |
uint32_t dds::sub::DataReader< T >::Selector::take | ( | SamplesBIIterator | sbit | ) |
This operation works the same as the backward iterator DataReader take() , except that it is performed on this Selector with possible filters set.
sbit | Back-inserting container iterator |
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The entity was not properly created and references to dds::core::null. |
dds::core::AlreadyClosedError | The entity has already been closed. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::NotEnabledError | The DataReader has not yet been enabled. |
uint32_t dds::sub::DataReader< T >::Selector::take | ( | SamplesFWIterator | sfit, |
uint32_t | max_samples | ||
) |
This operation works the same as the forward iterator DataReader take() , except that it is performed on this Selector with possible filters set.
sfit | Forward-inserting container iterator |
max_samples | Maximum samples to read and copy into the given container |
dds::core::Error | An internal error has occurred. |
dds::core::NullReferenceError | The entity was not properly created and references to dds::core::null. |
dds::core::AlreadyClosedError | The entity has already been closed. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::NotEnabledError | The DataReader has not yet been enabled. |