123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- // 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.
- #ifndef _FASTDDS_TCP_CHANNEL_RESOURCE_BASE_
- #define _FASTDDS_TCP_CHANNEL_RESOURCE_BASE_
- #include <fastdds/rtps/transport/TCPTransportDescriptor.h>
- #include <fastdds/rtps/transport/TransportReceiverInterface.h>
- #include <fastdds/rtps/transport/ChannelResource.h>
- #include <fastdds/rtps/transport/tcp/RTCPMessageManager.h>
- #include <fastdds/rtps/common/Locator.h>
- #include <asio.hpp>
- namespace eprosima {
- namespace fastdds {
- namespace rtps {
- class TCPConnector;
- class TCPTransportInterface;
- enum eSocketErrorCodes
- {
- eNoError,
- eBrokenPipe,
- eAsioError,
- eSystemError,
- eException,
- eConnectionAborted = 125
- };
- class TCPChannelResource : public ChannelResource
- {
- protected:
- enum TCPConnectionType
- {
- TCP_ACCEPT_TYPE = 0,
- TCP_CONNECT_TYPE = 1
- };
- enum eConnectionStatus
- {
- eDisconnected = 0,
- eConnecting, // Output -> Trying connection.
- eConnected, // Output -> Send bind message.
- eWaitingForBind, // Input -> Waiting for the bind message.
- eWaitingForBindResponse, // Output -> Waiting for the bind response message.
- eEstablished,
- eUnbinding
- };
- TCPTransportInterface* parent_;
- fastrtps::rtps::Locator_t locator_;
- bool waiting_for_keep_alive_;
- // Must be accessed after lock pending_logical_mutex_
- std::map<TCPTransactionId, uint16_t> negotiating_logical_ports_;
- std::map<TCPTransactionId, uint16_t> last_checked_logical_port_;
- std::vector<uint16_t> pending_logical_output_ports_; // Must be accessed after lock pending_logical_mutex_
- std::vector<uint16_t> logical_output_ports_;
- std::mutex read_mutex_;
- std::recursive_mutex pending_logical_mutex_;
- std::atomic<eConnectionStatus> connection_status_;
- public:
- void add_logical_port(
- uint16_t port,
- RTCPMessageManager* rtcp_manager);
- void set_logical_port_pending(
- uint16_t port);
- bool remove_logical_port(
- uint16_t port);
- virtual void disable() override;
- bool is_logical_port_opened(
- uint16_t port);
- bool is_logical_port_added(
- uint16_t port);
- bool connection_established()
- {
- return connection_status_ == eConnectionStatus::eEstablished;
- }
- eConnectionStatus connection_status()
- {
- return connection_status_;
- }
- inline const fastrtps::rtps::Locator_t& locator() const
- {
- return locator_;
- }
- ResponseCode process_bind_request(
- const fastrtps::rtps::Locator_t& locator);
- // Socket related methods
- virtual void connect(
- const std::shared_ptr<TCPChannelResource>& myself) = 0;
- virtual void disconnect() = 0;
- virtual uint32_t read(
- fastrtps::rtps::octet* buffer,
- std::size_t size,
- asio::error_code& ec) = 0;
- virtual size_t send(
- const fastrtps::rtps::octet* header,
- size_t header_size,
- const fastrtps::rtps::octet* buffer,
- size_t size,
- asio::error_code& ec) = 0;
- virtual asio::ip::tcp::endpoint remote_endpoint() const = 0;
- virtual asio::ip::tcp::endpoint local_endpoint() const = 0;
- virtual void set_options(
- const TCPTransportDescriptor* options) = 0;
- virtual void cancel() = 0;
- virtual void close() = 0;
- virtual void shutdown(
- asio::socket_base::shutdown_type what) = 0;
- TCPConnectionType tcp_connection_type() const
- {
- return tcp_connection_type_;
- }
- protected:
- // Constructor called when trying to connect to a remote server
- TCPChannelResource(
- TCPTransportInterface* parent,
- const fastrtps::rtps::Locator_t& locator,
- uint32_t maxMsgSize);
- // Constructor called when local server accepted connection
- TCPChannelResource(
- TCPTransportInterface* parent,
- uint32_t maxMsgSize);
- inline eConnectionStatus change_status(
- eConnectionStatus s,
- RTCPMessageManager* rtcp_manager = nullptr)
- {
- eConnectionStatus old = connection_status_.exchange(s);
- if (old != s)
- {
- if (s == eEstablished)
- {
- assert(rtcp_manager != nullptr);
- send_pending_open_logical_ports(rtcp_manager);
- }
- }
- return old;
- }
- void add_logical_port_response(
- const TCPTransactionId& id,
- bool success,
- RTCPMessageManager* rtcp_manager);
- void process_check_logical_ports_response(
- const TCPTransactionId& transactionId,
- const std::vector<uint16_t>& availablePorts,
- RTCPMessageManager* rtcp_manager);
- TCPConnectionType tcp_connection_type_;
- friend class TCPTransportInterface;
- friend class RTCPMessageManager;
- private:
- void prepare_send_check_logical_ports_req(
- uint16_t closedPort,
- RTCPMessageManager* rtcp_manager);
- void send_pending_open_logical_ports(
- RTCPMessageManager* rtcp_manager);
- void set_all_ports_pending();
- TCPChannelResource(
- const TCPChannelResource&) = delete;
- TCPChannelResource& operator =(
- const TCPChannelResource&) = delete;
- };
- } // namespace rtps
- } // namespace fastdds
- } // namespace eprosima
- #endif // _FASTDDS_TCP_CHANNEL_RESOURCE_BASE_
|