123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- // Copyright 2019 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 PDPServer.h
- *
- */
- #ifndef _FASTDDS_RTPS_PDPSERVER_H_
- #define _FASTDDS_RTPS_PDPSERVER_H_
- #ifndef DOXYGEN_SHOULD_SKIP_THIS_PUBLIC
- #include <fastdds/rtps/builtin/discovery/participant/PDP.h>
- #include <fastdds/rtps/messages/RTPSMessageGroup.h>
- #include <fastdds/rtps/builtin/discovery/participant/timedevent/DServerEvent.h>
- // TODO: remove when the Writer API issue is resolved
- #include <fastdds/rtps/attributes/WriterAttributes.h>
- namespace eprosima {
- namespace fastrtps{
- namespace rtps {
- class StatefulWriter;
- class StatefulReader;
- class RemoteWriterAttributes;
- /**
- * Class PDPServer manages server side of the discovery server mechanism
- *@ingroup DISCOVERY_MODULE
- */
- class PDPServer : public PDP
- {
- friend class DServerEvent;
- friend class PDPServerListener;
- friend class InPDPCallback;
- typedef std::set<const ParticipantProxyData*> pending_matches_list;
- typedef std::set<InstanceHandle_t> key_list;
- //! EDP pending matches
- pending_matches_list _p2match;
- //! Keys to wipe out from WriterHistory because its related Participants have been removed
- key_list _demises;
- //! TRANSIENT or TRANSIENT_LOCAL durability;
- DurabilityKind_t _durability;
- //! Temporary locator list to solve new Writer API issue
- // TODO: remove when the Writer API issue is resolved
- std::map<GUID_t, ReaderProxyData> clients_;
- public:
- /**
- * Constructor
- * @param builtin Pointer to the BuiltinProcols object.
- * @param allocation participant's allocation settings
- * @param durability_kind the kind of persistence we want for the discovery data
- */
- PDPServer(
- BuiltinProtocols* builtin,
- const RTPSParticipantAllocationAttributes& allocation,
- DurabilityKind_t durability_kind = TRANSIENT_LOCAL);
- ~PDPServer();
- void initializeParticipantProxyData(ParticipantProxyData* participant_data) override;
- /**
- * Initialize the PDP.
- * @param part Pointer to the RTPSParticipant.
- * @return True on success
- */
- bool init(RTPSParticipantImpl* part) override;
- /**
- * Creates an initializes a new participant proxy from a DATA(p) raw info
- * @param p ParticipantProxyData from DATA msg deserialization
- * @param writer_guid GUID of originating writer
- * @return new ParticipantProxyData * or nullptr on failure
- */
- ParticipantProxyData* createParticipantProxyData(
- const ParticipantProxyData& p,
- const GUID_t& writer_guid) override;
- /**
- * Create the SPDP Writer and Reader
- * @return True if correct.
- */
- bool createPDPEndpoints() override;
- /**
- * This method removes a remote RTPSParticipant and all its writers and readers.
- * @param participant_guid GUID_t of the remote RTPSParticipant.
- * @param reason Why the participant is being removed (dropped vs removed)
- * @return true if correct.
- */
- bool remove_remote_participant(
- const GUID_t& participant_guid,
- ParticipantDiscoveryInfo::DISCOVERY_STATUS reason) override;
- /**
- * Methods to update WriterHistory with reader information
- */
- /**
- * Some History data is flag for defer removal till every client
- * acknowledges reception
- * @return True if trimming must be done
- */
- bool pendingHistoryCleaning();
- /**
- *! Callback to remove unnecesary WriterHistory info from PDP and EDP
- * @return True if trimming is completed
- */
- bool trimWriterHistory();
- /**
- * Add participant CacheChange_ts from reader to writer
- * @param c metatraffic CacheChange_t
- * @return True if successfully modified WriterHistory
- */
- bool addRelayedChangeToHistory(CacheChange_t& c);
- /**
- * Trigger the participant CacheChange_t removal system
- * @param h instanceHandle associated with participants CacheChange_ts
- * @return True if successfully modified WriterHistory
- */
- void removeParticipantFromHistory(const InstanceHandle_t& h);
- /**
- * Methods to synchronize EDP matching
- */
- /**
- * Add a participant to the queue of pending participants to EDP matching
- * @param p ParticipantProxyData associated with the new participant
- */
- void queueParticipantForEDPMatch(const ParticipantProxyData* p);
- /**
- * Remove a participant from the queue of pending participants to EDP matching
- * @param guid GUID associated with the new participant
- */
- void removeParticipantForEDPMatch(const GUID_t& guid);
- /**
- * Check if all client have acknowledge the server PDP data
- * @return True if all clients known each other
- */
- bool all_clients_acknowledge_PDP();
- /**
- * Check if there are pending matches.
- * @return True if all participants EDP endpoints are already matched
- */
- inline bool pendingEDPMatches()
- {
- std::lock_guard<std::recursive_mutex> guardPDP(*mp_mutex);
- return !_p2match.empty();
- }
- //! Matches all clients EDP endpoints
- void match_all_clients_EDP_endpoints();
- /**
- * Methods to synchronize with another servers
- */
- /**
- * Check if all servers have acknowledge this server PDP data
- * This method must be called from a mutex protected context.
- * @return True if all can reach the client
- */
- bool all_servers_acknowledge_PDP();
- /**
- * Check if we have our PDP received data updated
- * This method must be called from a mutex protected context.
- * @return True if we known all the participants the servers are aware of
- */
- bool is_all_servers_PDPdata_updated();
- /**
- * Matching server EDP endpoints
- * @return true if all servers have been discovered
- */
- bool match_servers_EDP_endpoints();
- /**
- * Force the sending of our local PDP to all servers
- * @param new_change If true a new change (with new seqNum) is created and sent; if false the last change is re-sent
- * @param dispose Sets change kind to NOT_ALIVE_DISPOSED_UNREGISTERED
- * @param wparams allows to identify the change
- */
- void announceParticipantState(
- bool new_change,
- bool dispose = false,
- WriteParams& wparams = WriteParams::WRITE_PARAM_DEFAULT) override;
- /**
- * These methods wouldn't be needed under perfect server operation (no need of dynamic endpoint allocation)
- * but must be implemented to solve server shutdown situations.
- * @param pdata Pointer to the RTPSParticipantProxyData object.
- */
- void assignRemoteEndpoints(ParticipantProxyData* pdata) override;
- void removeRemoteEndpoints(ParticipantProxyData * pdata) override;
- void notifyAboveRemoteEndpoints(const ParticipantProxyData& pdata) override;
- #if HAVE_SQLITE3
- //! Get filename for persistence database file
- std::string GetPersistenceFileName();
- #endif
- //! returns true if loading info from persistency database
- bool ongoingDeserialization();
- //! Process the info recorded in the persistence database
- void processPersistentData();
- //! Wakes up the DServerEvent for new matching or trimming
- void awakeServerThread() { mp_sync->restart_timer(); }
- // The following struct and two methods solve a callback synchronization issue
- class InPDPCallback
- {
- friend class PDPServer;
- PDPServer & server_;
- public:
- InPDPCallback(PDPServer & svr);
- ~InPDPCallback();
- };
- // ! returns a unique_ptr to an object that handles PDP_callback_ in a RAII fashion
- std::unique_ptr<InPDPCallback> signalCallback();
- // ! calls PDP Reader matched_writer_remove preventing deadlocks
- bool safe_PDP_matched_writer_remove(const GUID_t& wguid);
- private:
- /**
- * Callback to remove unnecesary WriterHistory info from PDP alone
- * @return True if trimming is completed
- */
- bool trimPDPWriterHistory();
- /**
- * TimedEvent for server synchronization:
- * first stage: periodically resend the local RTPSParticipant information until all servers have acknowledge reception
- * second stage: waiting PDP info is up to date before allowing EDP matching
- */
- DServerEvent* mp_sync;
- // ! on PDP DATA(p[UD]) callback. Only modified by transport threads which are
- // serialized for PDP reader
- volatile bool PDP_callback_;
- };
- }
- } /* namespace rtps */
- } /* namespace eprosima */
- #endif
- #endif /* _FASTDDS_RTPS_PDPSERVER_H_ */
|