Cyclone ISO C++ API Reference Guide
AnyDataReader.hpp
Go to the documentation of this file.
1 #ifndef OMG_TDDS_SUB_ANY_DATA_READER_HPP_
2 #define OMG_TDDS_SUB_ANY_DATA_READER_HPP_
3 /* Copyright 2010, Object Management Group, Inc.
4  * Copyright 2010, PrismTech, Corp.
5  * Copyright 2010, Real-Time Innovations, Inc.
6  * All rights reserved.
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 
21 #include <dds/core/Entity.hpp>
22 #include <dds/sub/Subscriber.hpp>
25 
26 namespace dds
27 {
28 namespace sub
29 {
30 
31 class AnyDataReader;
32 
33 }
34 }
35 
51 {
52 public:
54 #if 0
56 #else
57 public:
58 template <typename H__>
59 AnyDataReader(const H__& h)
60 {
61  if (h.is_nil()) {
62  /* We got a null object and are not really able to do a typecheck here. */
63  /* So, just set a null object. */
64  *this = dds::core::null;
65  } else {
66  this->::dds::core::Reference< DELEGATE_T >::impl_ = OSPL_CXX11_STD_MODULE::dynamic_pointer_cast< DELEGATE_T >(h.delegate());
67  if (h.delegate() != this->::dds::core::Reference< DELEGATE_T >::impl_) {
68  throw dds::core::IllegalOperationError(std::string("Attempted invalid cast: ") + typeid(h).name() + " to " + typeid(*this).name());
69  }
70  }
71 }
72 
73 template <typename T__>
75 operator=(const T__& rhs) {
76  if (this != (AnyDataReader*)&rhs) {
77  if (rhs.is_nil()) {
78  /* We got a null object and are not really able to do a typecheck here. */
79  /* So, just set a null object. */
80  *this = dds::core::null;
81  } else {
82  AnyDataReader other(rhs);
83  /* Dont have to copy when the delegate impl is the same. */
84  if (other.delegate() != this->::dds::core::Reference< DELEGATE_T >::impl_) {
85  *this = other;
86  }
87  }
88  }
89  return *this;
90 }
91 #endif
92 
93  virtual ~AnyDataReader();
96  //==========================================================================
97  // -- Entity Navigation API
98 
110  const dds::sub::Subscriber& subscriber() const;
111 
124 
125 
126 
173  void wait_for_historical_data(const dds::core::Duration& timeout);
174 
175 
176  //==========================================================================
177  // -- QoS Management
178 
194  qos() const;
195 
228  void qos(const dds::sub::qos::DataReaderQos& qos);
229 
232 
235 
236 
237  //========================================================================
238  // -- Status API
262 
288 
313 
337 
367 
410 
411 };
412 
413 
414 #endif /* OMG_TDDS_SUB_ANY_DATA_READER_HPP_ */
dds::sub::Subscriber
A Subscriber is the object responsible for the actual reception of the data resulting from its subscr...
Definition: Subscriber.hpp:53
dds::core::status::RequestedDeadlineMissedStatus
Definition: Status.hpp:226
dds::core::status::SubscriptionMatchedStatus
Definition: Status.hpp:399
dds::sub::AnyDataReader::operator=
AnyDataReader & operator=(const T__ &rhs)
Definition: AnyDataReader.hpp:75
dds::sub::AnyDataReader::subscriber
const dds::sub::Subscriber & subscriber() const
dds::sub::AnyDataReader::requested_deadline_missed_status
dds::core::status::RequestedDeadlineMissedStatus requested_deadline_missed_status()
dds::core::status::LivelinessChangedStatus
Definition: Status.hpp:145
dds::sub::AnyDataReader::operator>>
const AnyDataReader & operator>>(dds::sub::qos::DataReaderQos &qos) const
dds::sub::AnyDataReader::requested_incompatible_qos_status
dds::core::status::RequestedIncompatibleQosStatus requested_incompatible_qos_status()
dds::sub::AnyDataReader::wait_for_historical_data
void wait_for_historical_data(const dds::core::Duration &timeout)
dds::core::Duration
Definition: Duration.hpp:42
OMG_DDS_IMPLICIT_REF_BASE
#define OMG_DDS_IMPLICIT_REF_BASE(TYPE)
Definition: refmacros.hpp:75
dds::sub::AnyDataReader::AnyDataReader
AnyDataReader(const H__ &h)
Definition: AnyDataReader.hpp:59
OMG_DDS_REF_TYPE_PROTECTED_DC
#define OMG_DDS_REF_TYPE_PROTECTED_DC(TYPE, BASE, DELEGATE)
Definition: refmacros.hpp:164
dds::sub::AnyDataReader::qos
dds::sub::qos::DataReaderQos qos() const
dds::core::status::SampleLostStatus
Definition: Status.hpp:61
dds::core::IllegalOperationError
Exception: An operation was invoked on an inappropriate object or at an inappropriate time.
Definition: Exception.hpp:149
dds::core::Reference
Base class for reference-counted objects.
Definition: Reference.hpp:94
DataReaderQos.hpp
dds::sub::AnyDataReader::sample_rejected_status
dds::core::status::SampleRejectedStatus sample_rejected_status()
dds::sub::AnyDataReader::sample_lost_status
dds::core::status::SampleLostStatus sample_lost_status()
dds
Definition: array.hpp:30
dds::sub::AnyDataReader
Typeless base class for the typed DataReader.
Definition: AnyDataReader.hpp:50
Subscriber.hpp
dds::sub::AnyDataReader::liveliness_changed_status
dds::core::status::LivelinessChangedStatus liveliness_changed_status()
dds::sub::AnyDataReader::subscription_matched_status
dds::core::status::SubscriptionMatchedStatus subscription_matched_status()
dds::core::Entity
This class is the abstract base class for all the DCPS objects.
Definition: Entity.hpp:55
dds::core::Reference::is_nil
bool is_nil() const
Entity.hpp
dds::sub::qos::DataReaderQos
This class provides the basic mechanism for an application to specify Quality of Service attributes f...
Definition: DataReaderQos.hpp:66
dds::core::status::SampleRejectedStatus
Definition: Status.hpp:85
TopicDescription.hpp
dds::sub::AnyDataReader::operator<<
AnyDataReader & operator<<(const dds::sub::qos::DataReaderQos &qos)
dds::sub::AnyDataReader::topic_description
const dds::topic::TopicDescription & topic_description() const
dds::core::status::RequestedIncompatibleQosStatus
Definition: Status.hpp:307
dds::topic::TopicDescription
This class is the base for Topic, ContentFilteredTopic and MultiTopic.
Definition: TopicDescription.hpp:48