// Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima). // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. /** * @file ReaderLocator.h */ #ifndef _FASTDDS_RTPS_READERLOCATOR_H_ #define _FASTDDS_RTPS_READERLOCATOR_H_ #ifndef DOXYGEN_SHOULD_SKIP_THIS_PUBLIC #include #include #include #include #include #include namespace eprosima { namespace fastrtps { namespace rtps { class RTPSParticipantImpl; class RTPSWriter; class RTPSReader; /** * Class ReaderLocator, contains information about a remote reader, without saving its state. * It also implements RTPSMessageSenderInterface, so it can be used when separate sending is enabled. * @ingroup WRITER_MODULE */ class ReaderLocator : public RTPSMessageSenderInterface { public: virtual ~ReaderLocator() = default; /** * Construct a ReaderLocator. * * @param owner Pointer to the RTPSWriter creating this object. * @param max_unicast_locators Maximum number of unicast locators to hold. * @param max_multicast_locators Maximum number of multicast locators to hold. */ ReaderLocator( RTPSWriter* owner, size_t max_unicast_locators, size_t max_multicast_locators); bool expects_inline_qos() const { return expects_inline_qos_; } bool is_local_reader() const { return is_local_reader_; } RTPSReader* local_reader(); void local_reader( RTPSReader* local_reader) { local_reader_ = local_reader; } const GUID_t& remote_guid() const { return locator_info_.remote_guid; } LocatorSelectorEntry* locator_selector_entry() { return &locator_info_; } /** * Try to start using this object for a new matched reader. * * @param remote_guid GUID of the remote reader. * @param unicast_locators Unicast locators of the remote reader. * @param multicast_locators Multicast locators of the remote reader. * @param expects_inline_qos Whether remote reader expects to receive inline QoS. * * @return false when this object was already started, true otherwise. */ bool start( const GUID_t& remote_guid, const ResourceLimitedVector& unicast_locators, const ResourceLimitedVector& multicast_locators, bool expects_inline_qos); /** * Try to update information of this object. * * @param unicast_locators Unicast locators of the remote reader. * @param multicast_locators Multicast locators of the remote reader. * @param expects_inline_qos Whether remote reader expects to receive inline QoS. * * @return true when information has changed, false otherwise. */ bool update( const ResourceLimitedVector& unicast_locators, const ResourceLimitedVector& multicast_locators, bool expects_inline_qos); /** * Try to stop using this object for an unmatched reader. * * @param remote_guid GUID of the remote reader. * * @return true if this object was started for remote_guid, false otherwise. */ bool stop( const GUID_t& remote_guid); /** * Check if the destinations managed by this sender interface have changed. * * @return true if destinations have changed, false otherwise. */ bool destinations_have_changed() const override { return false; } /** * Get a GUID prefix representing all destinations. * * @return When all the destinations share the same prefix (i.e. belong to the same participant) * that prefix is returned. When there are no destinations, or they belong to different * participants, c_GuidPrefix_Unknown is returned. */ GuidPrefix_t destination_guid_prefix() const override { return locator_info_.remote_guid.guidPrefix; } /** * Get the GUID prefix of all the destination participants. * * @return a const reference to a vector with the GUID prefix of all destination participants. */ const std::vector& remote_participants() const override { return guid_prefix_as_vector_; } /** * Get the GUID of all destinations. * * @return a const reference to a vector with the GUID of all destinations. */ const std::vector& remote_guids() const override { return guid_as_vector_; } /** * Send a message through this interface. * * @param message Pointer to the buffer with the message already serialized. * @param max_blocking_time_point Future timepoint where blocking send should end. */ bool send( CDRMessage_t* message, std::chrono::steady_clock::time_point& max_blocking_time_point) const override; private: RTPSWriter* owner_; RTPSParticipantImpl* participant_owner_; LocatorSelectorEntry locator_info_; bool expects_inline_qos_; bool is_local_reader_; RTPSReader* local_reader_; std::vector guid_prefix_as_vector_; std::vector guid_as_vector_; }; } /* namespace rtps */ } /* namespace fastrtps */ } /* namespace eprosima */ #endif #endif /* _FASTDDS_RTPS_READERLOCATOR_H_ */