Cyclone ISO C++ API Reference Guide
dds::pub Namespace Reference

Namespaces

 qos
 

Classes

class  AnyDataWriter
 Typeless base class for the typed DataWriter. More...
 
class  AnyDataWriterListener
 AnyDataWriter events Listener. More...
 
class  CoherentSet
 Class for RAII way of beginning/ending coherent publication sets. More...
 
class  DataWriter
 DataWriter allows the application to set the value of the sample to be published under a given Topic. More...
 
class  DataWriterListener
 DataWriter events Listener. More...
 
class  NoOpAnyDataWriterListener
 AnyDataWriter events Listener. More...
 
class  NoOpDataWriterListener
 DataWriter events Listener. More...
 
class  NoOpPublisherListener
 Publisher events Listener. More...
 
class  Publisher
 The Publisher acts on the behalf of one or several DataWriter objects that belong to it. More...
 
class  PublisherListener
 Publisher events Listener. More...
 
class  SuspendedPublication
 Class for RAII way of suspending/resuming publication. More...
 

Functions

template<typename WRITER , typename BinIterator >
uint32_t find (const dds::pub::Publisher &pub, const std::string &topic_name, BinIterator begin)
 
template<typename WRITER , typename FwdIterator >
uint32_t find (const dds::pub::Publisher &pub, const std::string &topic_name, FwdIterator begin, uint32_t max_size)
 
void ignore (const dds::domain::DomainParticipant &dp, const dds::core::InstanceHandle &handle)
 
template<typename FwdIterator >
void ignore (const dds::domain::DomainParticipant &dp, FwdIterator begin, FwdIterator end)
 
template<typename T >
const dds::topic::SubscriptionBuiltinTopicData matched_subscription_data (const dds::pub::DataWriter< T > &dw, const ::dds::core::InstanceHandle &h)
 
template<typename T >
::dds::core::InstanceHandleSeq matched_subscriptions (const dds::pub::DataWriter< T > &dw)
 
template<typename T , typename FwdIterator >
uint32_t matched_subscriptions (const dds::pub::DataWriter< T > &dw, FwdIterator begin, uint32_t max_size)
 

Function Documentation

◆ find() [1/2]

template<typename WRITER , typename BinIterator >
uint32_t dds::pub::find ( const dds::pub::Publisher pub,
const std::string &  topic_name,
BinIterator  begin 
)

This function retrieves previously-created DataWriters belonging to the Publisher that is attached to a Topic with a matching topic_name. If no such DataWriter exists, the operation will return an empty container.

Parameters
pubthe Publisher to find an associated DataWriter for
topic_namethe topic name
begina back insertion iterator for a sequence in which to put found DataWriters
Returns
the total number of elements found. Notice that at most max_size will be copied using the provided iterator.

◆ find() [2/2]

template<typename WRITER , typename FwdIterator >
uint32_t dds::pub::find ( const dds::pub::Publisher pub,
const std::string &  topic_name,
FwdIterator  begin,
uint32_t  max_size 
)

This function retrieves previously-created DataWriters belonging to the Publisher that is attached to a Topic with a matching topic_name. If no such DataWriter exists, the operation will return an empty container.

Parameters
pubthe Publisher to find an associated DataWriter for
topic_namethe topic name
begina iterator for a sequence in which to put found DataWriters
max_sizethe maximum number of DataWriters to return
Returns
the total number of elements found. Notice that at most max_size will be copied using the provided iterator

◆ ignore() [1/2]

void dds::pub::ignore ( const dds::domain::DomainParticipant dp,
const dds::core::InstanceHandle handle 
)

Ignore publications.

This operation is not yet implemented. It is scheduled for a future release.

Parameters
dpthe DomainParticipant for which the remote entity will be ignored
handlethe InstanceHandle of the remote entity that has to be ignored

◆ ignore() [2/2]

template<typename FwdIterator >
void dds::pub::ignore ( const dds::domain::DomainParticipant dp,
FwdIterator  begin,
FwdIterator  end 
)

Ignore publications.

This operation is not yet implemented. It is scheduled for a future release.

Parameters
dpthe DomainParticipant for which the remote entity will be ignored
beginan iterator indicating the beginning of a sequence of InstanceHandles of the remote Entity that has to be ignored
endan iterator indicating the end of a sequence of InstanceHandles of the remote Entity that has to be ignored

◆ matched_subscription_data()

template<typename T >
const dds::topic::SubscriptionBuiltinTopicData dds::pub::matched_subscription_data ( const dds::pub::DataWriter< T > &  dw,
const ::dds::core::InstanceHandle h 
)

This operation retrieves information on the specified subscription that is currently “associated” with the DataWriter. That is, a subscription with a matching Topic and compatible QoS that the application has not indicated should be “ignored” by means of the dds::sub::ignore operation on the DomainParticipant class.

The subscription_handle must correspond to a subscription currently associated with the DataWriter, otherwise the operation will fail and throw InvalidArgumentError. The operation dds::pub::matched_subscriptions can be used to find the subscriptions that are currently matched with the DataWriter.

The operation may fail if the infrastructure does not locally maintain the connectivity information. 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 such cases the operation will throw UnsupportedError.

See also DCPS_Builtin_Topics and DCPS_Builtin_Topics_SubscriptionData.

Parameters
dwthe DataWriter
hthe InstanceHandle
Returns
the SubscriptionBuiltinTopicData
Exceptions
dds::core::ErrorAn internal error has occurred.
dds::core::NullReferenceErrorThe entity was not properly created and references to dds::core::null.
dds::core::AlreadyClosedErrorThe entity has already been closed.
dds::core::NotEnabledErrorThe DataWriter has not yet been enabled.
dds::core::UnsupportedErrorOpenSplice is configured not to maintain the information about “associated” subscriptions.
dds::core::InvalidArgumentErrorSubscription not associated with the DataWriter.
dds::core::OutOfResourcesErrorThe Data Distribution Service ran out of resources to complete this operation.

◆ matched_subscriptions() [1/2]

template<typename T >
::dds::core::InstanceHandleSeq dds::pub::matched_subscriptions ( const dds::pub::DataWriter< T > &  dw)

This operation retrieves the list of subscriptions currently “associated” with the DataWriter. That is, subscriptions that have a matching Topic and compatible QoS that the application has not indicated should be “ignored” by means of the dds::sub::ignore operation on the DomainParticipant class.

The handles returned in the dds::core::InstanceHandleSeq are the ones that are used by the DDS implementation to locally identify the corresponding matched DataReader entities. You can access more detailed information about a particular subscription by passing its subscription_handle to either the dds::pub::matched_subscription_data operation or to the read with instance operation on the built-in reader for the “DCPSSubscription” topic.

Note
Be aware that since InstanceHandle is an opaque datatype, it does not necessarily mean that the handles obtained from the matched_subscriptions operation have the same value as the ones that appear in the instance_handle field of the SampleInfo when retrieving the subscription info through corresponding "DCPSSubscriptions" built-in reader. You can’t just compare two handles to determine whether they represent the same subscription. If you want to know whether two handles actually do represent the same subscription, use both handles to retrieve their corresponding SubscriptionBuiltinTopicData samples and then compare the key field of both samples.

The operation may fail if the infrastructure does not locally maintain the connectivity information. 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 such cases the operation will throw UnsupportedError.

See Builtin Topics for more information.

Parameters
dwthe DataWriter
Returns
a sequence of handles
Exceptions
dds::core::ErrorAn internal error has occurred.
dds::core::NullReferenceErrorThe entity was not properly created and references to dds::core::null.
dds::core::AlreadyClosedErrorThe entity has already been closed.
dds::core::NotEnabledErrorThe DataWriter has not yet been enabled.
dds::core::UnsupportedErrorOpenSplice is configured not to maintain the information about “associated” subscriptions.
dds::core::OutOfResourcesErrorThe Data Distribution Service ran out of resources to complete this operation.

◆ matched_subscriptions() [2/2]

template<typename T , typename FwdIterator >
uint32_t dds::pub::matched_subscriptions ( const dds::pub::DataWriter< T > &  dw,
FwdIterator  begin,
uint32_t  max_size 
)

This operation retrieves the list of subscriptions currently “associated” with the DataWriter. That is, subscriptions that have a matching Topic and compatible QoS that the application has not indicated should be “ignored” by means of the dds::sub::ignore operation on the DomainParticipant class.

The handles returned in the dds::core::InstanceHandleSeq are the ones that are used by the DDS implementation to locally identify the corresponding matched DataReader entities. You can access more detailed information about a particular subscription by passing its subscription_handle to either the dds::pub::matched_subscription_data operation or to the read with instance operation on the built-in reader for the “DCPSSubscription” topic.

Note
Be aware that since InstanceHandle is an opaque datatype, it does not necessarily mean that the handles obtained from the matched_subscriptions operation have the same value as the ones that appear in the instance_handle field of the SampleInfo when retrieving the subscription info through corresponding "DCPSSubscriptions" built-in reader. You can’t just compare two handles to determine whether they represent the same subscription. If you want to know whether two handles actually do represent the same subscription, use both handles to retrieve their corresponding SubscriptionBuiltinTopicData samples and then compare the key field of both samples.

The operation may fail if the infrastructure does not locally maintain the connectivity information. 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 such cases the operation will throw UnsupportedError.

See Builtin Topics for more information.

Parameters
dwthe DataWriter
beginan iterator indicating the beginning of a sequence of instance handles in which to put the matched subscriptions
max_sizethe maximum number of matched subscriptions to return
Returns
the number of matched subscriptions returned
Exceptions
dds::core::ErrorAn internal error has occurred.
dds::core::NullReferenceErrorThe entity was not properly created and references to dds::core::null.
dds::core::AlreadyClosedErrorThe entity has already been closed.
dds::core::NotEnabledErrorThe DataWriter has not yet been enabled.
dds::core::UnsupportedErrorOpenSplice is configured not to maintain the information about “associated” subscriptions.
dds::core::OutOfResourcesErrorThe Data Distribution Service ran out of resources to complete this operation.