Diag-Client-Lib
Public Types | Public Member Functions | Private Attributes | List of all members
boost_support::server::tcp::TcpServer::TcpServerImpl Class Referencefinal
Collaboration diagram for boost_support::server::tcp::TcpServer::TcpServerImpl:
Collaboration graph
[legend]

Public Types

using TcpConnection = connection::tcp::TcpConnection< connection::tcp::ConnectionType::kServer, TcpSocket >
 Type alias for tcp server connection. More...
 

Public Member Functions

 TcpServerImpl (std::string_view server_name, TcpSocket tcp_socket) noexcept
 Constructs an instance of TcpServerImpl. More...
 
 TcpServerImpl (const TcpServerImpl &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
TcpServerImploperator= (const TcpServerImpl &other) noexcept=delete
 
 TcpServerImpl (TcpServerImpl &&other) noexcept=delete
 Deleted move assignment and move constructor. More...
 
TcpServerImploperator= (TcpServerImpl &&other) noexcept=delete
 
 ~TcpServerImpl () noexcept=default
 Destruct an instance of TcpServerImpl. More...
 
void Initialize () noexcept
 Initialize the TcpServerImpl. More...
 
void DeInitialize () noexcept
 De-initialize the TcpServerImpl. More...
 
void SetReadHandler (HandlerRead read_handler) noexcept
 Function to set the read handler that is invoked when message is received. More...
 
core_type::Result< void > Transmit (MessageConstPtr tcp_message)
 Function to transmit the provided tcp message. More...
 

Private Attributes

TcpConnection tcp_connection_
 Store the tcp connection. More...
 

Detailed Description

Definition at line 18 of file tcp_server.cpp.

Member Typedef Documentation

◆ TcpConnection

Type alias for tcp server connection.

Definition at line 23 of file tcp_server.cpp.

Constructor & Destructor Documentation

◆ TcpServerImpl() [1/3]

boost_support::server::tcp::TcpServer::TcpServerImpl::TcpServerImpl ( std::string_view  server_name,
TcpSocket  tcp_socket 
)
inlineexplicitnoexcept

Constructs an instance of TcpServerImpl.

Parameters
[in]tcp_socketThe underlying tcp socket required for communication

Definition at line 31 of file tcp_server.cpp.

32  : tcp_connection_{server_name, std::move(tcp_socket)} {}
TcpConnection tcp_connection_
Store the tcp connection.
Definition: tcp_server.cpp:85

◆ TcpServerImpl() [2/3]

boost_support::server::tcp::TcpServer::TcpServerImpl::TcpServerImpl ( const TcpServerImpl other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ TcpServerImpl() [3/3]

boost_support::server::tcp::TcpServer::TcpServerImpl::TcpServerImpl ( TcpServerImpl &&  other)
deletenoexcept

Deleted move assignment and move constructor.

◆ ~TcpServerImpl()

boost_support::server::tcp::TcpServer::TcpServerImpl::~TcpServerImpl ( )
defaultnoexcept

Destruct an instance of TcpServerImpl.

Member Function Documentation

◆ DeInitialize()

void boost_support::server::tcp::TcpServer::TcpServerImpl::DeInitialize ( )
inlinenoexcept

De-initialize the TcpServerImpl.

Definition at line 59 of file tcp_server.cpp.

59 { tcp_connection_.DeInitialize(); }

References tcp_connection_.

◆ Initialize()

void boost_support::server::tcp::TcpServer::TcpServerImpl::Initialize ( )
inlinenoexcept

Initialize the TcpServerImpl.

Definition at line 54 of file tcp_server.cpp.

54 { tcp_connection_.Initialize(); }

References tcp_connection_.

◆ operator=() [1/2]

TcpServerImpl& boost_support::server::tcp::TcpServer::TcpServerImpl::operator= ( const TcpServerImpl other)
deletenoexcept

◆ operator=() [2/2]

TcpServerImpl& boost_support::server::tcp::TcpServer::TcpServerImpl::operator= ( TcpServerImpl &&  other)
deletenoexcept

◆ SetReadHandler()

void boost_support::server::tcp::TcpServer::TcpServerImpl::SetReadHandler ( HandlerRead  read_handler)
inlinenoexcept

Function to set the read handler that is invoked when message is received.

The ownership of provided read handler is moved

Parameters
[in]read_handlerThe handler to be set

Definition at line 67 of file tcp_server.cpp.

67  {
68  tcp_connection_.SetReadHandler(std::move(read_handler));
69  }

References tcp_connection_.

◆ Transmit()

core_type::Result<void> boost_support::server::tcp::TcpServer::TcpServerImpl::Transmit ( MessageConstPtr  tcp_message)
inline

Function to transmit the provided tcp message.

Parameters
[in]tcp_messageThe tcp message
Returns
Empty void on success, otherwise error is returned

Definition at line 77 of file tcp_server.cpp.

77  {
78  return tcp_connection_.Transmit(std::move(tcp_message));
79  }

References tcp_connection_.

Member Data Documentation

◆ tcp_connection_

TcpConnection boost_support::server::tcp::TcpServer::TcpServerImpl::tcp_connection_
private

Store the tcp connection.

Definition at line 85 of file tcp_server.cpp.

Referenced by DeInitialize(), Initialize(), SetReadHandler(), and Transmit().


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