summaryrefslogtreecommitdiff
path: root/implementation/endpoints/include/tcp_server_endpoint_impl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/endpoints/include/tcp_server_endpoint_impl.hpp')
-rw-r--r--implementation/endpoints/include/tcp_server_endpoint_impl.hpp36
1 files changed, 19 insertions, 17 deletions
diff --git a/implementation/endpoints/include/tcp_server_endpoint_impl.hpp b/implementation/endpoints/include/tcp_server_endpoint_impl.hpp
index bf0e1b9..1a2cf4e 100644
--- a/implementation/endpoints/include/tcp_server_endpoint_impl.hpp
+++ b/implementation/endpoints/include/tcp_server_endpoint_impl.hpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+// Copyright (C) 2014-2021 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
@@ -19,9 +19,8 @@
namespace vsomeip_v3 {
-typedef server_endpoint_impl<
- boost::asio::ip::tcp
- > tcp_server_endpoint_base_impl;
+using tcp_server_endpoint_base_impl =
+ server_endpoint_impl<boost::asio::ip::tcp>;
class tcp_server_endpoint_impl: public tcp_server_endpoint_base_impl {
@@ -29,7 +28,7 @@ public:
tcp_server_endpoint_impl(const std::shared_ptr<endpoint_host>& _endpoint_host,
const std::shared_ptr<routing_host>& _routing_host,
const endpoint_type& _local,
- boost::asio::io_service &_io,
+ boost::asio::io_context &_io,
const std::shared_ptr<configuration>& _configuration);
virtual ~tcp_server_endpoint_impl();
@@ -40,14 +39,14 @@ public:
const byte_t *_data, uint32_t _size);
bool send_error(const std::shared_ptr<endpoint_definition> _target,
const byte_t *_data, uint32_t _size);
- void send_queued(const queue_iterator_type _queue_iterator);
- void send_queued_sync(const queue_iterator_type _queue_iterator);
+ bool send_queued(const target_data_iterator_type _it);
+ void send_queued_sync(const target_data_iterator_type _it);
void get_configured_times_from_endpoint(
service_t _service, method_t _method,
std::chrono::nanoseconds *_debouncing,
std::chrono::nanoseconds *_maximum_retention) const;
- VSOMEIP_EXPORT bool is_established(const std::shared_ptr<endpoint_definition>& _endpoint);
+ VSOMEIP_EXPORT bool is_established_to(const std::shared_ptr<endpoint_definition>& _endpoint);
bool get_default_target(service_t, endpoint_type &) const;
@@ -64,14 +63,17 @@ private:
class connection: public std::enable_shared_from_this<connection> {
public:
- typedef std::shared_ptr<connection> ptr;
+ using ptr = std::shared_ptr<connection>;
static ptr create(const std::weak_ptr<tcp_server_endpoint_impl>& _server,
std::uint32_t _max_message_size,
std::uint32_t _buffer_shrink_threshold,
bool _magic_cookies_enabled,
- boost::asio::io_service & _io_service,
+ boost::asio::io_context & _io,
std::chrono::milliseconds _send_timeout);
+
+ ~connection();
+
socket_type & get_socket();
std::unique_lock<std::mutex> get_socket_lock();
@@ -79,11 +81,11 @@ private:
void stop();
void receive();
- void send_queued(const queue_iterator_type _queue_iterator);
- void send_queued_sync(const queue_iterator_type _queue_iterator);
+ void send_queued(const target_data_iterator_type _it);
+ void send_queued_sync(const target_data_iterator_type _it);
void set_remote_info(const endpoint_type &_remote);
- const std::string get_address_port_remote() const;
+ std::string get_address_port_remote() const;
std::size_t get_recv_buffer_capacity() const;
private:
@@ -92,14 +94,14 @@ private:
std::uint32_t _recv_buffer_size_initial,
std::uint32_t _buffer_shrink_threshold,
bool _magic_cookies_enabled,
- boost::asio::io_service & _io_service,
+ boost::asio::io_context &_io,
std::chrono::milliseconds _send_timeout);
bool send_magic_cookie(message_buffer_ptr_t &_buffer);
bool is_magic_cookie(size_t _offset) const;
void receive_cbk(boost::system::error_code const &_error,
std::size_t _bytes);
void calculate_shrink_count();
- const std::string get_address_port_local() const;
+ std::string get_address_port_local() const;
void handle_recv_buffer_exception(const std::exception &_e);
std::size_t write_completion_condition(
const boost::system::error_code& _error,
@@ -134,7 +136,7 @@ private:
std::mutex acceptor_mutex_;
boost::asio::ip::tcp::acceptor acceptor_;
std::mutex connections_mutex_;
- typedef std::map<endpoint_type, connection::ptr> connections_t;
+ using connections_t = std::map<endpoint_type, connection::ptr>;
connections_t connections_;
const std::uint32_t buffer_shrink_threshold_;
const std::uint16_t local_port_;
@@ -145,7 +147,7 @@ private:
void accept_cbk(const connection::ptr& _connection,
boost::system::error_code const &_error);
std::string get_remote_information(
- const queue_iterator_type _queue_iterator) const;
+ const target_data_iterator_type _it) const;
std::string get_remote_information(const endpoint_type& _remote) const;
bool tp_segmentation_enabled(service_t _service, method_t _method) const;
};