123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- // 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 <vector>
- #include <fastdds/rtps/common/Locator.h>
- #include <fastdds/rtps/common/Guid.h>
- #include <fastdds/rtps/common/SequenceNumber.h>
- #include <fastdds/rtps/messages/RTPSMessageGroup.h>
- #include <fastdds/rtps/common/LocatorSelectorEntry.hpp>
- 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<Locator_t>& unicast_locators,
- const ResourceLimitedVector<Locator_t>& 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<Locator_t>& unicast_locators,
- const ResourceLimitedVector<Locator_t>& 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<GuidPrefix_t>& 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<GUID_t>& 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<GuidPrefix_t> guid_prefix_as_vector_;
- std::vector<GUID_t> guid_as_vector_;
- };
- } /* namespace rtps */
- } /* namespace fastrtps */
- } /* namespace eprosima */
- #endif
- #endif /* _FASTDDS_RTPS_READERLOCATOR_H_ */
|