Diag-Client-Lib
Public Types | Public Member Functions | Private Member Functions | Private Attributes | List of all members
boost_support::socket::tcp::TcpServerConnection Class Referencefinal

Tcp Server connection class to create connection with client. More...

#include <tls_server_.h>

Public Types

enum class  TcpErrorCode : std::uint8_t { kOpenFailed , kBindingFailed , kGenericError }
 Tcp error code. More...
 
using TcpHandlerRead = std::function< void(message::tcp::TcpMessagePtr)>
 Tcp function template used for reception. More...
 
using Tcp = boost::asio::ip::tcp
 Type alias for tcp protocol. More...
 
using TcpSocket = Tcp::socket
 Type alias for tcp socket. More...
 
using TlsStream = boost::asio::ssl::stream< TcpSocket >
 Type alias for tls stream wrapping tcp socket. More...
 

Public Member Functions

 TcpServerConnection (TlsStream tls_socket, TcpHandlerRead tcp_handler_read)
 Constructs an instance of TcpServerConnection. More...
 
 ~TcpServerConnection ()=default
 Destruct an instance of TcpServerConnection. More...
 
 TcpServerConnection (TcpServerConnection &&) noexcept=default
 Default move ctor and assignment operator. More...
 
TcpServerConnectionoperator= (TcpServerConnection &&) noexcept=default
 
 TcpServerConnection (TcpServerConnection const &)=delete
 Deleted copy ctor and assignment operator. More...
 
TcpServerConnectionoperator= (TcpServerConnection const &)=delete
 
core_type::Result< void, TcpErrorCodeTransmit (message::tcp::TcpMessageConstPtr tcp_message)
 Function to trigger transmission. More...
 
bool TryReceivingMessage ()
 Function to initiate reception of tcp message. More...
 
core_type::Result< void, TcpErrorCodeShutdown ()
 Function to shutdown the socket. More...
 

Private Member Functions

TlsStream::lowest_layer_type & GetNativeTcpSocket ()
 Function to get the native tcp socket under tls socket. More...
 

Private Attributes

TlsStream tls_socket_
 Store ssl socket. More...
 
TcpHandlerRead tcp_handler_read_
 Store the handler. More...
 

Detailed Description

Tcp Server connection class to create connection with client.

Definition at line 28 of file tls_server_.h.

Member Typedef Documentation

◆ Tcp

Type alias for tcp protocol.

Definition at line 43 of file tls_server_.h.

◆ TcpHandlerRead

Tcp function template used for reception.

Definition at line 38 of file tls_server_.h.

◆ TcpSocket

Type alias for tcp socket.

Definition at line 48 of file tls_server_.h.

◆ TlsStream

Type alias for tls stream wrapping tcp socket.

Definition at line 53 of file tls_server_.h.

Member Enumeration Documentation

◆ TcpErrorCode

Tcp error code.

Enumerator
kOpenFailed 
kBindingFailed 
kGenericError 

Definition at line 33 of file tls_server_.h.

33 : std::uint8_t { kOpenFailed, kBindingFailed, kGenericError };

Constructor & Destructor Documentation

◆ TcpServerConnection() [1/3]

boost_support::socket::tcp::TcpServerConnection::TcpServerConnection ( TlsStream  tls_socket,
TcpHandlerRead  tcp_handler_read 
)

Constructs an instance of TcpServerConnection.

Parameters
[in]io_contextThe local ip address
[in]tcp_handler_readThe handler to send received data to user

Definition at line 65 of file tls_server_.cpp.

66  : tls_socket_{std::move(tls_socket)},
67  tcp_handler_read_{std::move(tcp_handler_read)} {}
TcpHandlerRead tcp_handler_read_
Store the handler.
Definition: tls_server_.h:110

◆ ~TcpServerConnection()

boost_support::socket::tcp::TcpServerConnection::~TcpServerConnection ( )
default

Destruct an instance of TcpServerConnection.

◆ TcpServerConnection() [2/3]

boost_support::socket::tcp::TcpServerConnection::TcpServerConnection ( TcpServerConnection &&  )
defaultnoexcept

Default move ctor and assignment operator.

◆ TcpServerConnection() [3/3]

boost_support::socket::tcp::TcpServerConnection::TcpServerConnection ( TcpServerConnection const &  )
delete

Deleted copy ctor and assignment operator.

Member Function Documentation

◆ GetNativeTcpSocket()

TcpServerConnection::TlsStream::lowest_layer_type & boost_support::socket::tcp::TcpServerConnection::GetNativeTcpSocket ( )
private

Function to get the native tcp socket under tls socket.

Definition at line 69 of file tls_server_.cpp.

69  {
70  return tls_socket_.lowest_layer();
71 }

References tls_socket_.

Referenced by Shutdown(), Transmit(), and TryReceivingMessage().

Here is the caller graph for this function:

◆ operator=() [1/2]

TcpServerConnection& boost_support::socket::tcp::TcpServerConnection::operator= ( TcpServerConnection &&  )
defaultnoexcept

◆ operator=() [2/2]

TcpServerConnection& boost_support::socket::tcp::TcpServerConnection::operator= ( TcpServerConnection const &  )
delete

◆ Shutdown()

core_type::Result< void, TcpServerConnection::TcpErrorCode > boost_support::socket::tcp::TcpServerConnection::Shutdown ( )

Function to shutdown the socket.

Returns
Empty result on success otherwise error code

Definition at line 163 of file tls_server_.cpp.

163  {
165  TcpErrorCodeType ec{};
166 
167  // Graceful shutdown
168  if (GetNativeTcpSocket().is_open()) {
169  // Shutdown TLS connection
170  tls_socket_.shutdown(ec);
171  // Shutdown of TCP connection
172  GetNativeTcpSocket().shutdown(TcpSocket::shutdown_both, ec);
173  if (ec.value() == boost::system::errc::success) {
174  // Socket shutdown success
175  result.EmplaceValue();
176  } else {
178  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
179  msg << "Tcp Socket Disconnection failed with error: " << ec.message();
180  });
181  }
182  GetNativeTcpSocket().close();
183  }
184  return result;
185 }
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
Definition: logger.h:20
TlsStream::lowest_layer_type & GetNativeTcpSocket()
Function to get the native tcp socket under tls socket.
Definition: tls_server_.cpp:69
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29
#define FILE_NAME
Definition: file_path.h:14

References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), GetNativeTcpSocket(), kGenericError, and tls_socket_.

Here is the call graph for this function:

◆ Transmit()

core_type::Result< void, TcpServerConnection::TcpErrorCode > boost_support::socket::tcp::TcpServerConnection::Transmit ( message::tcp::TcpMessageConstPtr  tcp_message)

Function to trigger transmission.

Parameters
[in]tcp_messageThe tcp message to be transmitted
Returns
Empty result on success otherwise error code

Definition at line 73 of file tls_server_.cpp.

74  {
75  TcpErrorCodeType ec{};
77 
78  boost::asio::write(tls_socket_,
79  boost::asio::buffer(tcp_tx_message->GetPayload().data(),
80  std::size_t(tcp_tx_message->GetPayload().size())),
81  ec);
82  // Check for error
83  if (ec.value() == boost::system::errc::success) {
84  Tcp::endpoint endpoint_{GetNativeTcpSocket().remote_endpoint()};
86  FILE_NAME, __LINE__, __func__, [endpoint_](std::stringstream &msg) {
87  msg << "Tcp message sent to "
88  << "<" << endpoint_.address().to_string() << "," << endpoint_.port() << ">";
89  });
90  result.EmplaceValue();
91  } else {
93  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
94  msg << "Tcp message sending failed with error: " << ec.message();
95  });
96  }
97  return result;
98 }

References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), GetNativeTcpSocket(), kGenericError, and tls_socket_.

Here is the call graph for this function:

◆ TryReceivingMessage()

bool boost_support::socket::tcp::TcpServerConnection::TryReceivingMessage ( )

Function to initiate reception of tcp message.

Definition at line 100 of file tls_server_.cpp.

100  {
101  TcpErrorCodeType ec{};
102  bool connection_closed{false};
103 
104  // Perform TLS handshake
105  tls_socket_.handshake(boost::asio::ssl::stream_base::server, ec);
106 
107  if (ec.value() == boost::system::errc::success) {
108  // Create and reserve the buffer
110  rx_buffer.resize(message::tcp::kDoipheadrSize);
111  // Start blocking read to read Header first
112  boost::asio::read(tls_socket_, boost::asio::buffer(&rx_buffer[0], message::tcp::kDoipheadrSize),
113  ec);
114  // Check for error
115  if (ec.value() == boost::system::errc::success) {
116  // Read the next bytes to read
117  std::uint32_t const read_next_bytes = [&rx_buffer]() noexcept -> std::uint32_t {
118  return static_cast<std::uint32_t>(
119  (static_cast<std::uint32_t>(rx_buffer[4u] << 24u) & 0xFF000000) |
120  (static_cast<std::uint32_t>(rx_buffer[5u] << 16u) & 0x00FF0000) |
121  (static_cast<std::uint32_t>(rx_buffer[6u] << 8u) & 0x0000FF00) |
122  (static_cast<std::uint32_t>(rx_buffer[7u] & 0x000000FF)));
123  }();
124  // reserve the buffer
125  rx_buffer.resize(message::tcp::kDoipheadrSize + std::size_t(read_next_bytes));
126  boost::asio::read(
127  tls_socket_,
128  boost::asio::buffer(&rx_buffer[message::tcp::kDoipheadrSize], read_next_bytes), ec);
129 
130  // all message received, transfer to upper layer
131  Tcp::endpoint endpoint_{GetNativeTcpSocket().remote_endpoint()};
132  message::tcp::TcpMessagePtr tcp_rx_message{std::make_unique<message::tcp::TcpMessage>(
133  endpoint_.address().to_string(), endpoint_.port(), std::move(rx_buffer))};
135  FILE_NAME, __LINE__, __func__, [endpoint_](std::stringstream &msg) {
136  msg << "Tcp Message received from "
137  << "<" << endpoint_.address().to_string() << "," << endpoint_.port() << ">";
138  });
139  // send data to upper layer
140  tcp_handler_read_(std::move(tcp_rx_message));
141  } else if (ec.value() == boost::asio::error::eof) {
143  FILE_NAME, __LINE__, __func__,
144  [ec](std::stringstream &msg) { msg << "Remote Disconnected with: " << ec.message(); });
145  connection_closed = true;
146  } else {
148  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
149  msg << "Remote Disconnected with undefined error: " << ec.message();
150  });
151  connection_closed = true;
152  }
153  } else {
155  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
156  msg << "Tls server handshake with host failed with error: " << ec.message();
157  });
158  connection_closed = true;
159  }
160  return connection_closed;
161 }
std::vector< std::uint8_t > BufferType
Type alias for underlying buffer.
Definition: tcp_message.h:49
std::unique_ptr< TcpMessage > TcpMessagePtr
The unique pointer to TcpMessage.
Definition: tcp_message.h:151
constexpr std::uint8_t kDoipheadrSize
Doip HeaderSize.
Definition: tcp_message.h:156

References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), GetNativeTcpSocket(), boost_support::message::tcp::kDoipheadrSize, tcp_handler_read_, and tls_socket_.

Here is the call graph for this function:

Member Data Documentation

◆ tcp_handler_read_

TcpHandlerRead boost_support::socket::tcp::TcpServerConnection::tcp_handler_read_
private

Store the handler.

Definition at line 110 of file tls_server_.h.

Referenced by TryReceivingMessage().

◆ tls_socket_

TlsStream boost_support::socket::tcp::TcpServerConnection::tls_socket_
private

Store ssl socket.

Definition at line 105 of file tls_server_.h.

Referenced by GetNativeTcpSocket(), Shutdown(), Transmit(), and TryReceivingMessage().


The documentation for this class was generated from the following files: