Cyclone ISO C++ API Reference Guide
|
DataReader allows the applicatin to access published sample data. More...
#include "DataReader.hpp"
Inherits dds::sub::AnyDataReader.
Classes | |
class | ManipulatorSelector |
class | Selector |
Public Types | |
typedef ::dds::sub::DataReaderListener< T > | Listener |
DataReader allows the applicatin to access published sample data.
A DataReader allows the application:
A DataReader refers to exactly one TopicDescription (either a Topic, a ContentFilteredTopic or a MultiTopic) that identifies the samples to be read. The Topic must exist prior to the DataReader creation.
A DataReader is attached to exactly one Subscriber which acts as a factory for it.
The DataReader may give access to several instances of the data type, which are distinguished from each other by their key.
The pre-processor generates from IDL type descriptions the application DataReader<type> classes. For each application data type that is used as Topic data type, a typed class DataReader<type> is derived from the AnyDataReader class.
For instance, for an application, the definitions are located in the Foo.idl file. The pre-processor will generate a ccpp_Foo.h include file.
General note: The name ccpp_Foo.h is derived from the IDL file Foo.idl, that defines Foo::Bar, for all relevant DataReader<Foo::Bar> operations.
Definition at line 34 of file DataReader.hpp.
typedef ::dds::sub::DataReaderListener<T> dds::sub::DataReader< T >::Listener |
Local convenience typedef for dds::sub::DataReaderListener.
Definition at line 112 of file DataReader.hpp.
dds::sub::DataReader< T >::DataReader | ( | const dds::sub::Subscriber & | sub, |
const ::dds::topic::Topic< T > & | topic | ||
) |
Create a new DataReader for the desired Topic, ContentFilteredTopic or MultiTopic, using the given Subscriber.
QoS
The DataReader will be created with the QoS values specified on the last successful call to sub.default_datareader_qos(qos) or, if the call was never made, the default values.
sub | the Subscriber that will contain this DataReader |
topic | the Topic associated with this DataReader |
dds::core::Error | An internal error has occurred. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::sub::DataReader< T >::DataReader | ( | const dds::sub::Subscriber & | sub, |
const ::dds::topic::Topic< T > & | topic, | ||
const dds::sub::qos::DataReaderQos & | qos, | ||
dds::sub::DataReaderListener< T > * | listener = NULL , |
||
const dds::core::status::StatusMask & | mask = ::dds::core::status::StatusMask::none() |
||
) |
Create a new DataReader for the desired Topic, ContentFilteredTopic or MultiTopic, using the given Subscriber and DataReaderQos and attaches the optionally specified DataReaderListener to it.
QoS
A possible application pattern to construct the DataReaderQos for the DataReader is to:
Listener
The following statuses are applicable to the DataReaderListener:
See listener concept, communication status and communication propagation for more information.
sub | the Subscriber that will contain this DataReader |
topic | the Topic, ContentFilteredTopic or MultiTopic associated with this DataReader |
qos | the DataReader qos. |
listener | the DataReader listener. |
mask | the listener event mask. |
dds::core::Error | An internal error has occurred. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::InconsistentPolicyError | The parameter qos contains conflicting QosPolicy settings. |
dds::sub::DataReader< T >::DataReader | ( | const dds::sub::Subscriber & | sub, |
const ::dds::topic::ContentFilteredTopic< T > & | topic | ||
) |
Create a new DataReader for the desired Topic, ContentFilteredTopic or MultiTopic, using the given Subscriber.
QoS
The DataReader will be created with the QoS values specified on the last successful call to sub.default_datareader_qos(qos) or, if the call was never made, the default values.
sub | the Subscriber that will contain this DataReader |
topic | the Topic associated with this DataReader |
dds::core::Error | An internal error has occurred. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::sub::DataReader< T >::DataReader | ( | const dds::sub::Subscriber & | sub, |
const ::dds::topic::ContentFilteredTopic< T > & | topic, | ||
const dds::sub::qos::DataReaderQos & | qos, | ||
dds::sub::DataReaderListener< T > * | listener = NULL , |
||
const dds::core::status::StatusMask & | mask = ::dds::core::status::StatusMask::none() |
||
) |
Create a new DataReader for the desired Topic, ContentFilteredTopic or MultiTopic, using the given Subscriber and DataReaderQos and attaches the optionally specified DataReaderListener to it.
QoS
A possible application pattern to construct the DataReaderQos for the DataReader is to:
Listener
The following statuses are applicable to the DataReaderListener:
See listener concept, communication status and communication propagation for more information.
sub | the Subscriber that will contain this DataReader |
topic | the Topic, ContentFilteredTopic or MultiTopic associated with this DataReader |
qos | the DataReader qos. |
listener | the DataReader listener. |
mask | the listener event mask. |
dds::core::Error | An internal error has occurred. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
dds::core::InconsistentPolicyError | The parameter qos contains conflicting QosPolicy settings. |
|
inherited |
This function closes the entity and releases related resources.
Resource management for some reference types might involve relatively heavyweight operating- system resources — such as e.g., threads, mutexes, and network sockets — in addition to memory. These objects therefore provide a method close() that shall halt network communication (in the case of entities) and dispose of any appropriate operating-system resources.
Users of this PSM are recommended to call close on objects of all reference types once they are finished using them. In addition, implementations may automatically close objects that they deem to be no longer in use, subject to the following restrictions:
dds::sub::status::DataState dds::sub::DataReader< T >::default_filter_state | ( | ) |
Returns the default state filter for read/take operations.
The default value of default_filter_state is dds::sub::status::DataState::any().
DataReader& dds::sub::DataReader< T >::default_filter_state | ( | const dds::sub::status::DataState & | state | ) |
Set the default state filter for read/take operations.
Default State Filter
The default_filter_state indicates what the dds::sub::status::DataState of samples should be for the read to filter them out of the total data samples pool.
This filter can be overruled by using dds::sub::DataReader::Selector::state or dds::sub::DataReader::ManipulatorSelector::state during the actual read action.
state | the state mask that will be used to read/take samples |
|
inherited |
Enable entity.
This operation enables the Entity. Entity objects can be created either enabled or disabled. This is controlled by the value of the dds::core::policy::EntityFactory QoS policy on the corresponding factory for the Entity.
Enabled entities are immediately activated at creation time meaning all their immutable QoS settings can no longer be changed. Disabled Entities are not yet activated, so it is still possible to change there immutable QoS settings. However, once activated the immutable QoS settings can no longer be changed.
Creating disabled entities can make sense when the creator of the Entity does not yet know which QoS settings to apply, thus allowing another piece of code to set the QoS later on.
The default setting of dds::core::policy::EntityFactory is such that, by default, it is not necessary to explicitly call enable on newly- created entities.
The enable operation is idempotent. Calling enable on an already- enabled Entity does not raise exceptions and has no effect.
If an Entity has not yet been enabled, the only operations that can be invoked on it are: the ones to set, get or copy the QosPolicy settings, the ones that set (or get) the listener, the ones that get the StatusCondition, the get_status_changes operation (although the status of a disabled entity never changes), and the ‘factory’ operations that create, delete or lookup other Entities. Other operations will throw the exception dds::core::NotEnabledError.
Entities created from a factory that is disabled are created disabled regardless of the setting of the dds::core::policy::EntityFactory Qos policy. Calling enable on an Entity whose factory is not enabled will fail and throw an dds::core::PreconditionNotMetError exception.
If the dds::core::policy::EntityFactory QoS policy has autoenable_created_entities set to TRUE, the enable operation on the factory will automatically enable all entities created from the factory.
The Listeners associated with an entity are not called until the entity is enabled. Conditions associated with an entity that is not enabled are inactive; that is, they have a trigger_value==false (dds::core::cond::Condition and dds::core::cond::WaitSet).
eg.
dds::core::PreconditionNotMetError | Entities' factory is not enabled. |
|
inherited |
This operation returns the InstanceHandle_t that represents the Entity.
The relevant state of some Entity objects are distributed using built-in topics. Each built-in topic sample represents the state of a specific Entity and has a unique instance_handle. This operation returns the instance_handle of the built-in topic sample that represents the specified Entity.
Some Entities (dds::pub::Publisher and dds::sub::Subscriber) do not have a corresponding built-in topic sample, but they still have an instance_handle that uniquely identifies the Entity. The instance_handles obtained this way can also be used to check whether a specific Entity is located in a specific DomainParticipant (dds::domain::DomainParticipant::contains_entity()).
|
inherited |
Check if the referenced object is nil.
In other words, check if the reference is pointing to a null object.
dds::topic::TopicInstance<T> dds::sub::DataReader< T >::key_value | ( | const dds::core::InstanceHandle & | h | ) |
This operation retrieves the key value of a specific instance.
This operation can be used to retrieve the instance key that corresponds to an instance_handle. The operation will only fill the fields that form the key inside the sample instance.
This operation may raise a InvalidArgumentError exception if the InstanceHandle does not correspond to an existing data-object known to the DataReader. If the implementation is not able to check invalid handles, then the result in this situation is unspecified.
h | The instance handle |
dds::core::Error | An internal error has occurred. |
dds::core::InvalidArgumentError | The InstanceHandle is not a valid handle. |
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. |
dds::core::PreconditionNotMetError | The handle has not been registered with this DataReader. |
T& dds::sub::DataReader< T >::key_value | ( | T & | sample, |
const dds::core::InstanceHandle & | h | ||
) |
This operation retrieves the key value of a specific instance.
This operation can be used to retrieve the instance key that corresponds to an instance_handle. The operation will only fill the fields that form the key inside the sample instance.
This operation may raise a InvalidArgumentError exception if the InstanceHandle does not correspond to an existing data-object known to the DataReader. If the implementation is not able to check invalid handles, then the result in this situation is unspecified.
The Sample is added as parameter to be able to overload this operation.
[out] | sample | A sample to set the key fields of |
[in] | h | The instance handle |
dds::core::Error | An internal error has occurred. |
dds::core::InvalidArgumentError | The InstanceHandle is not a valid handle. |
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. |
dds::core::PreconditionNotMetError | The handle has not been registered with this DataReader. |
Listener* dds::sub::DataReader< T >::listener | ( | ) | const |
Get the listener of this DataReader.
See also listener information.
dds::core::NullReferenceError | The entity was not properly created and references to dds::core::null. |
void dds::sub::DataReader< T >::listener | ( | Listener * | listener, |
const dds::core::status::StatusMask & | event_mask | ||
) |
Register a listener with the DataReader.
This operation attaches a DataReaderListener to the DataReader. Only one DataReaderListener can be attached to each DataReader. If a DataReaderListener was already attached, the operation will replace it with the new one. When the listener is the NULL pointer, it represents a listener that is treated as a NOOP for all statuses activated in the bit mask.
Listener un-registration is performed by setting the listener to NULL and mask none().
Communication Status
For each communication status, the StatusChangedFlag flag is initially set to FALSE. It becomes TRUE whenever that communication status changes. For each communication status activated in the mask, the associated DataReaderListener operation is invoked and the communication status is reset to FALSE, as the listener implicitly accesses the status which is passed as a parameter to that operation. The status is reset prior to calling the listener, so if the application calls the get_<status_name>_status from inside the listener it will see the status already reset. An exception to this rule is the NULL listener, which does not reset the communication statuses for which it is invoked.
The following statuses are applicable to the DataReaderListener:
Be aware that the SUBSCRIPTION_MATCHED_STATUS is not applicable when the infrastructure does not have the information available to determine connectivity. This is the case when OpenSplice is configured not to maintain discovery information in the Networking Service. (See the description for the NetworkingService/Discovery/enabled property in the Deployment Manual for more information about this subject.) In this case the operation will throw UnsupportedError.
Status bits are declared as a constant and can be used by the application in an OR operation to create a tailored mask. The special constant dds::core::status::StatusMask::none() can be used to indicate that the created entity should not respond to any of its available statuses. The DDS will therefore attempt to propagate these statuses to its factory. The special constant dds::core::status::StatusMask::all() can be used to select all applicable statuses specified in the “Data Distribution Service for Real-time Systems Version 1.2” specification which are applicable to the PublisherListener.
Status Propagation
In case a communication status is not activated in the mask of the DataReaderListener, the SubscriberListener of the containing Subscriber is invoked (if attached and activated for the status that occurred). This allows the application to set a default behaviour in the SubscriberListener of the containing Subscriber and a DataReader specific behaviour when needed. In case the communication status is not activated in the mask of the SubscriberListener as well, the communication status will be propagated to the DomainParticipantListener of the containing DomainParticipant. In case the DomainParticipantListener is also not attached or the communication status is not activated in its mask, the application is not notified of the change.
The statuses DATA_ON_READERS_STATUS and DATA_AVAILABLE_STATUS are “Read Communication Statuses” and are an exception to all other plain communication statuses: they have no corresponding status structure that can be obtained with a get_<status_name>_status operation and they are mutually exclusive. When new information becomes available to a DataReader, the Data Distribution Service will first look in an attached and activated SubscriberListener or DomainParticipantListener (in that order) for the DATA_ON_READERS_STATUS. In case the DATA_ON_READERS_STATUS can not be handled, the Data Distribution Service will look in an attached and activated DataReaderListener, SubscriberListener or DomainParticipant Listener for the DATA_AVAILABLE_STATUS (in that order).
See also listener information.
listener | the listener |
event_mask | the mask defining the events for which the listener will be notified. |
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::UnsupportedError | A status was selected that cannot be supported because the infrastructure does not maintain the required connectivity information. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |
|
inherited |
This operation obtains the LivelinessChangedStatus object of the DataReader.
This object contains the information whether the liveliness of one or more DataWriter objects that were writing instances read by the DataReader has changed. In other words, some DataWriter have become "alive" or "not alive".
The LivelinessChangedStatus can also be monitored using a DataReaderListener or by using the associated StatusCondition.
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. |
const dds::core::InstanceHandle dds::sub::DataReader< T >::lookup_instance | ( | const T & | key | ) | const |
This operation returns the value of the instance handle which corresponds to the instance_data.
The instance handle can be used in read operations that operate on a specific instance. Note that DataReader instance handles are local, and are not interchangeable with DataWriter instance handles nor with instance handles of an other DataReader.
This operation does not register the instance in question. If the instance has not been previously registered or if for any other reason the Service is unable to provide an instance handle, the Service will return the default nil handle (InstanceHandle.is_nil() == true).
key | the sample |
dds::core::NullReferenceError | The entity was not properly created and references to dds::core::null. |
dds::core::AlreadyClosedError | The entity has already been closed. |
|
inherited |
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:
|
inherited |
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.
ref | the other Reference object |
|
inherited |
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:
|
inherited |
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:
|
inherited |
This operation replaces the existing set of QosPolicy settings for a DataReader.
The parameter qos contains the object with the QosPolicy settings which is checked for self-consistency and mutability.
When the application tries to change a QosPolicy setting for an enabled DataReader, which can only be set before the DataReader is enabled, the operation will fail and a ImmutablePolicyError is thrown. In other words, the application must provide the presently set QosPolicy settings in case of the immutable QosPolicy settings. Only the mutable QosPolicy settings can be changed.
When the qos contains conflicting QosPolicy settings (not self-consistent), the operation will fail and an InconsistentPolicyError is thrown.
qos | the qos |
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::ImmutablePolicyError | The parameter qos contains an immutable QosPolicy setting with a different value than set during enabling of the DataReader. |
dds::core::InconsistentPolicyError | The parameter qos contains conflicting QosPolicy settings, |
|
inherited |
Special operator== used to check if this reference object equals the dds::core::null reference.
The null-check can be done like this:
|
inherited |
Compares two Reference objects and returns true if they are equal.
Equality is based on the referential equality of the object being pointed.
ref | the other Reference object |
DataReader& dds::sub::DataReader< T >::operator>> | ( | dds::sub::LoanedSamples< T > & | ls | ) |
This operation reads a sequence of typed samples from the DataReader by means of the shift operator.
What samples are read depends on what default state filter has been set (default any).
This operation reads a sequence of typed samples from the DataReader<type>. The data is put into a dds::sub::LoanedSamples, which is basically a sequence of samples, which in turn contains the actual data and meta information.
The memory used for storing the sample may be loaned by the middleware thus allowing zero copy operations.
If the DataReader has no samples that meet the constraints, the resulting dds::sub::LoanedSamples will be empty.
Take
The default behaviour of the DataReader stream operator>> is to read samples. It can be explicitly stated if the operator should do a read or take.
These are two of the available convenience manipulators (see next paragraph).
Manipulators
Manipulators are defined externally to make it possible to control which data is read and whether the streaming operators reads or takes.
Available convenience stream manipulators:
The manipulators can be concatenated:
Please be aware that using pre-set filters on the DataReader and then call read() or take() on that reader explicitly will perform better than having to create Manipulators for every read (which is what essentially happens in the code example above). Performance can be increase by creating a manipulator up front and using that multiple times (see dds::sub::DataReader::ManipulatorSelector).
Invalid Data
Some elements in the returned sequence may not have valid data: the valid_data field in the SampleInfo indicates whether the corresponding data value contains any meaningful data. If not, the data value is just a ‘dummy’ sample for which only the keyfields have been assigned. It is used to accompany the SampleInfo that communicates a change in the instance_state of an instance for which there is no ‘real’ sample available.
For example, when an application always ‘takes’ all available samples of a particular instance, there is no sample available to report the disposal of that instance. In such a case the DataReader will insert a dummy sample into the data_values sequence to accompany the SampleInfo element in the info_seq sequence that communicates the disposal of the instance.
The act of reading a sample sets its sample_state to READ_SAMPLE_STATE. If the sample belongs to the most recent generation of the instance, it also sets the view_state of the instance to NOT_NEW_VIEW_STATE. It does not affect the instance_state of the instance.
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. |
|
inherited |
Gets the DataReaderQos setting for this instance.
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. |
ManipulatorSelector dds::sub::DataReader< T >::operator>> | ( | Functor | f | ) |
This operation reads a sequence of typed samples from the DataReader by means of the shift operator.
What samples are read depends on what default state filter has been set (default any).
This operation reads a sequence of typed samples from the DataReader<type>. The data is put into a dds::sub::LoanedSamples, which is basically a sequence of samples, which in turn contains the actual data and meta information.
The memory used for storing the sample may be loaned by the middleware thus allowing zero copy operations.
If the DataReader has no samples that meet the constraints, the resulting dds::sub::LoanedSamples will be empty.
Take
The default behaviour of the DataReader stream operator>> is to read samples. It can be explicitly stated if the operator should do a read or take.
These are two of the available convenience manipulators (see next paragraph).
Manipulators
Manipulators are defined externally to make it possible to control which data is read and whether the streaming operators reads or takes.
Available convenience stream manipulators:
The manipulators can be concatenated:
Please be aware that using pre-set filters on the DataReader and then call read() or take() on that reader explicitly will perform better than having to create Manipulators for every read (which is what essentially happens in the code example above). Performance can be increase by creating a manipulator up front and using that multiple times (see dds::sub::DataReader::ManipulatorSelector).
Invalid Data
Some elements in the returned sequence may not have valid data: the valid_data field in the SampleInfo indicates whether the corresponding data value contains any meaningful data. If not, the data value is just a ‘dummy’ sample for which only the keyfields have been assigned. It is used to accompany the SampleInfo that communicates a change in the instance_state of an instance for which there is no ‘real’ sample available.
For example, when an application always ‘takes’ all available samples of a particular instance, there is no sample available to report the disposal of that instance. In such a case the DataReader will insert a dummy sample into the data_values sequence to accompany the SampleInfo element in the info_seq sequence that communicates the disposal of the instance.
The act of reading a sample sets its sample_state to READ_SAMPLE_STATE. If the sample belongs to the most recent generation of the instance, it also sets the view_state of the instance to NOT_NEW_VIEW_STATE. It does not affect the instance_state of the instance.
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. |
ManipulatorSelector dds::sub::DataReader< T >::operator>> | ( | ManipulatorSelector & | manipulator)(ManipulatorSelector & | ) |
This operation reads a sequence of typed samples from the DataReader by means of the shift operator.
What samples are read depends on what default state filter has been set (default any).
This operation reads a sequence of typed samples from the DataReader<type>. The data is put into a dds::sub::LoanedSamples, which is basically a sequence of samples, which in turn contains the actual data and meta information.
The memory used for storing the sample may be loaned by the middleware thus allowing zero copy operations.
If the DataReader has no samples that meet the constraints, the resulting dds::sub::LoanedSamples will be empty.
Take
The default behaviour of the DataReader stream operator>> is to read samples. It can be explicitly stated if the operator should do a read or take.
These are two of the available convenience manipulators (see next paragraph).
Manipulators
Manipulators are defined externally to make it possible to control which data is read and whether the streaming operators reads or takes.
Available convenience stream manipulators:
The manipulators can be concatenated:
Please be aware that using pre-set filters on the DataReader and then call read() or take() on that reader explicitly will perform better than having to create Manipulators for every read (which is what essentially happens in the code example above). Performance can be increase by creating a manipulator up front and using that multiple times (see dds::sub::DataReader::ManipulatorSelector).
Invalid Data
Some elements in the returned sequence may not have valid data: the valid_data field in the SampleInfo indicates whether the corresponding data value contains any meaningful data. If not, the data value is just a ‘dummy’ sample for which only the keyfields have been assigned. It is used to accompany the SampleInfo that communicates a change in the instance_state of an instance for which there is no ‘real’ sample available.
For example, when an application always ‘takes’ all available samples of a particular instance, there is no sample available to report the disposal of that instance. In such a case the DataReader will insert a dummy sample into the data_values sequence to accompany the SampleInfo element in the info_seq sequence that communicates the disposal of the instance.
The act of reading a sample sets its sample_state to READ_SAMPLE_STATE. If the sample belongs to the most recent generation of the instance, it also sets the view_state of the instance to NOT_NEW_VIEW_STATE. It does not affect the instance_state of the instance.
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. |
|
inherited |
Gets the DataReaderQos setting for this instance.
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. |
|
inherited |
This operation replaces the existing set of QosPolicy settings for a DataReader.
The parameter qos contains the object with the QosPolicy settings which is checked for self-consistency and mutability.
When the application tries to change a QosPolicy setting for an enabled DataReader, which can only be set before the DataReader is enabled, the operation will fail and a ImmutablePolicyError is thrown. In other words, the application must provide the presently set QosPolicy settings in case of the immutable QosPolicy settings. Only the mutable QosPolicy settings can be changed.
When the qos contains conflicting QosPolicy settings (not self-consistent), the operation will fail and an InconsistentPolicyError is thrown.
qos | the qos |
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::ImmutablePolicyError | The parameter qos contains an immutable QosPolicy setting with a different value than set during enabling of the DataReader. |
dds::core::InconsistentPolicyError | The parameter qos contains conflicting QosPolicy settings, |
LoanedSamples<T> dds::sub::DataReader< T >::read | ( | ) |
This operation reads a sequence of typed samples from the DataReader.
What samples are read depends on what default state filter has been set (default any).
This operation reads a sequence of typed samples from the DataReader<type>. The data is put into a dds::sub::LoanedSamples, which is basically a sequence of samples, which in turn contains the actual data and meta information.
The memory used for storing the sample may be loaned by the middleware thus allowing zero copy operations.
If the DataReader has no samples that meet the constraints, the resulting dds::sub::LoanedSamples will be empty.
Selectors
What data is read already depends on the default state filter. But it can be manipulated even more when using dds::sub::DataReader::select() operation.
Invalid Data
Some elements in the returned sequence may not have valid data: the valid_data field in the SampleInfo indicates whether the corresponding data value contains any meaningful data. If not, the data value is just a ‘dummy’ sample for which only the keyfields have been assigned. It is used to accompany the SampleInfo that communicates a change in the instance_state of an instance for which there is no ‘real’ sample available.
For example, when an application always ‘takes’ all available samples of a particular instance, there is no sample available to report the disposal of that instance. In such a case the DataReader will insert a dummy sample into the data_values sequence to accompany the SampleInfo element in the info_seq sequence that communicates the disposal of the instance.
The act of reading a sample sets its sample_state to READ_SAMPLE_STATE. If the sample belongs to the most recent generation of the instance, it also sets the view_state of the instance to NOT_NEW_VIEW_STATE. It does not affect the instance_state of the instance.
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 >::read | ( | SamplesBIIterator | sbit | ) |
This operation reads a sequence of typed samples from the DataReader.
What samples are read depends on what default state filter has been set (default any).
The samples are copied into the application provided container using a back-inserting iterator. Notice that as a consequence of using a back-inserting iterator, this operation may allocate memory to resize the underlying container.
If the DataReader has no samples that meet the constraints, the resulting dds::sub::LoanedSamples will be empty.
Selectors
What data is read already depends on the default state filter. But it can be manipulated even more when using dds::sub::DataReader::select() operation.
Invalid Data
Some elements in the returned sequence may not have valid data: the valid_data field in the SampleInfo indicates whether the corresponding data value contains any meaningful data.
Look here for more information.
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 >::read | ( | SamplesFWIterator | sfit, |
uint32_t | max_samples | ||
) |
This operation reads a sequence of typed samples from the DataReader.
What samples are read depends on what default state filter has been set (default any).
The samples are copied into the application provided container using the forward iterator parameter.
If the DataReader has no samples that meet the constraints, the resulting dds::sub::LoanedSamples will be empty.
Selectors
What data is read already depends on the default state filter. But it can be manipulated even more when using dds::sub::DataReader::select() operation.
Invalid Data
Some elements in the returned sequence may not have valid data: the valid_data field in the SampleInfo indicates whether the corresponding data value contains any meaningful data.
Look here for more information.
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. |
|
inherited |
This operation obtains the RequestedDeadlineMissedStatus object of the DataReader.
This object contains the information whether the deadline that the DataReader was expecting through its dds::core::policy::Deadline QosPolicy was not respected for a specific instance.
The RequestedDeadlineMissedStatus can also be monitored using a DataReaderListener or by using the associated StatusCondition.
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. |
|
inherited |
This operation obtains the RequestedIncompatibleQosStatus object of the DataReader.
This object contains the information whether a QosPolicy setting was incompatible with the offered QosPolicy setting.
The Request/Offering mechanism is applicable between the DataWriter and the DataReader. If the QosPolicy settings between DataWriter and DataReader are inconsistent, no communication between them is established. In addition the DataWriter will be informed via a REQUESTED_INCOMPATIBLE_QOS status change and the DataReader will be informed via an OFFERED_INCOMPATIBLE_QOS status change.
The RequestedIncompatibleQosStatus can also be monitored using a DataReaderListener or by using the associated StatusCondition.
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. |
|
inherited |
Retain the Entity, even when it goes out of scope.
This function indicates that references to this object may go out of scope but that the application expects to look it up again later. Therefore the Service must consider this object to be still in use and may not close it automatically.
|
inherited |
This operation obtains the SampleLostStatus object of the DataReader.
This object contains information whether samples have been lost. This only applies when the dds::core::policy::Reliability QosPolicy is set to RELIABLE. If the ReliabilityQos Policy is set to BEST_EFFORT, the Data Distribution Service will not report the loss of samples.
The SampleLostStatus can also be monitored using a DataReaderListener or by using the associated StatusCondition.
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. |
|
inherited |
This operation obtains the SampleRejectedStatus object of the DataReader.
This object contains the information whether a received sample has been rejected. Samples may be rejected by the DataReader when it runs out of resource_limits to store incoming samples. Usually this means that old samples need to be "onsumed" (for example by "taking" them instead of "reading" them) to make room for newly incoming samples.
The SampleRejectedStatus can also be monitored using a DataReaderListener or by using the associated StatusCondition.
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. |
Selector dds::sub::DataReader< T >::select | ( | ) |
Get a dds::sub::DataReader::Selector instance that acts on this DataReader.
The DataReader::read and DataReader::take read all samples that are available within the DataReader (provided that the default state filter hasn't been changed).
Selectors
A Selector can perform complex data selections, such as per-instance selection, content and status filtering, etc when reading or taking. Such a selector is returned by this operation. Setting filters on the Selector can be concatenated, resulting in the following example code.
Please be aware that using pre-set filters on the DataReader and then call read() or take() on that reader explicitly will perform better than having to create Selectors for every read (which is what essentially happens in the code example above). Performance can be increase by creating a selector up front and using that multiple times (see dds::sub::DataReader::Selector).
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. |
|
inherited |
This operation returns a mask with the communication statuses in the Entity that are “triggered”.
This operation retrieves the list of communication statuses in the Entity that are triggered. That is the set of communication statuses whose value have changed since the last time the application called this operation. This operation shows whether a change has occurred even when the status seems unchanged because the status changed back to the original status.
When the Entity is first created or if the Entity is not enabled, all communication statuses are in the “un-triggered” state so the mask returned by the operation is empty.
The result value is a bit mask in which each bit shows which value has changed. The relevant bits represent one of the following statuses:
When the entity is first created, or if the entity is not enabled, all communication statuses are in the untriggered state so the list returned by the status_changes operation will be empty.
Each status bit is declared as a constant and can be used in an AND operation to check the status bit against the result of type StatusMask. Not all statuses are relevant to all Entity objects. See the respective Listener interfaces for each Entity for more information.
The list of statuses returned by the status_changes operation refers to the statuses that are triggered on the Entity itself, and does not include statuses that apply to contained entities.
|
inherited |
Get the Subscriber that owns this DataReader.
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. |
|
inherited |
This operation obtains the SubscriptionMatchedStatus object of the DataReader.
This object contains the information whether a new match has been discovered for the current subscription, or whether an existing match has ceased to exist.
This means that the status represents that either a DataWriter object has been discovered by the DataReader with the same Topic and a compatible Qos, or that a previously discovered DataWriter has ceased to be matched to the current DataReader. A DataWriter may cease to match when it gets deleted, when it changes its Qos to a value that is incompatible with the current DataReader or when either the DataReader or the DataWriter has chosen to put its matching counterpart on its ignore-list using the dds::sub::ignore or dds::pub::ignore operations on the DomainParticipant.
The operation may fail if the infrastructure does not hold the information necessary to fill in the SubscriptionMatchedStatus. This is the case when OpenSplice is configured not to maintain discovery information in the Networking Service. (See the description for the NetworkingService/Discovery/enabled property in the Deployment Manual for more information about this subject.) In this case the operation will throw UnsupportedError.
The SubscriptionMatchedStatus can also be monitored using a DataReaderListener or by using the associated StatusCondition.
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::UnsupportedError | OpenSplice is configured not to maintain the information about "associated" publications. |
LoanedSamples<T> dds::sub::DataReader< T >::take | ( | ) |
This operation takes a sequence of typed samples from the DataReader.
The behaviour is identical to read except for that the samples are removed from the DataReader.
What samples are taken depends on what default state filter has been set (default any).
This operation takes a sequence of typed samples from the DataReader<type>. The data is put into a dds::sub::LoanedSamples, which is basically a sequence of samples, which in turn contains the actual data and meta information.
The memory used for storing the sample may be loaned by the middleware thus allowing zero copy operations.
If the DataReader has no samples that meet the constraints, the resulting dds::sub::LoanedSamples will be empty.
Selectors
What data is taken, already depends on the default state filter. But it can be manipulated even more when using dds::sub::DataReader::select() operation.
Invalid Data
Some elements in the returned sequence may not have valid data: the valid_data field in the SampleInfo indicates whether the corresponding data value contains any meaningful data.
Look here for more information.
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 >::take | ( | SamplesBIIterator | sbit | ) |
This operation takes a sequence of typed samples from the DataReader.
What samples are take depends on what default state filter has been set (default any).
The samples are copied into the application provided container using a back-inserting iterator. Notice that as a consequence of using a back-inserting iterator, this operation may allocate memory to resize the underlying container.
If the DataReader has no samples that meet the constraints, the resulting dds::sub::LoanedSamples will be empty.
Selectors
What data is taken, already depends on the default state filter. But it can be manipulated even more when using dds::sub::DataReader::select() operation.
Invalid Data
Some elements in the returned sequence may not have valid data: the valid_data field in the SampleInfo indicates whether the corresponding data value contains any meaningful data.
Look here for more information.
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 >::take | ( | SamplesFWIterator | sfit, |
uint32_t | max_samples | ||
) |
This operation takes a sequence of typed samples from the DataReader.
What samples are take depends on what default state filter has been set (default any).
The samples are copied into the application provided container using the forward iterator parameter.
If the DataReader has no samples that meet the constraints, the resulting dds::sub::LoanedSamples will be empty.
Selectors
What data is taken, already depends on the default state filter. But it can be manipulated even more when using dds::sub::DataReader::select() operation.
Invalid Data
Some elements in the returned sequence may not have valid data: the valid_data field in the SampleInfo indicates whether the corresponding data value contains any meaningful data.
Look here for more information.
sfit | Forward-inserting container iterator |
max_samples | Maximum samples to take 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. |
|
inherited |
Get the TopicDescription associated with this DataReader.
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. |
|
inherited |
This operation will block the application thread until all "historical" data is received.
This operation behaves differently for DataReader objects which have a non-VOLATILE dds::core::policy::Durability QosPolicy and for DataReader objects which have a VOLATILE dds::core::policy::Durability QosPolicy.
As soon as an application enables a non-VOLATILE DataReader it will start receiving both "historical" data, i.e. the data that was written prior to the time the DataReader joined the domain, as well as any new data written by the DataWriter objects. There are situations where the application logic may require the application to wait until all "historical" data is received. This is the purpose of the wait_for_historical_data operation.
As soon as an application enables a VOLATILE DataReader it will not start receiving "historical" data but only new data written by the DataWriter objects. By calling wait_for_historical_data the DataReader explicitly requests the Data Distribution Service to start receiving also the "historical" data and to wait until either all "historical" data is received, or the duration specified by the max_wait parameter has elapsed, whichever happens first.
Thread Blocking
The operation wait_for_historical_data blocks the calling thread until either all "historical" data is received, or the duration specified by the max_wait parameter elapses, whichever happens first. When the function returns normally, indicates that all the "historical" data was received. If the function throws TimeoutError, it indicates that max_wait elapsed before all the data was received.
timeout | the time to wait for historical data (can be dds::core::Duration::infinite()) |
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::NotEnabledError | The entity has not yet been enabled. |
dds::core::TimeoutError | Not all data is received before timeout elapsed. |
dds::core::OutOfResourcesError | The Data Distribution Service ran out of resources to complete this operation. |