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

Client that manages unsecured/ secured tcp connection. More...

#include <tcp_client.h>

Classes

class  TcpClientImpl
 Class to provide implementation of tcp client. More...
 

Public Types

using Message = boost_support::message::tcp::TcpMessage
 Type alias for Tcp message. More...
 
using MessagePtr = boost_support::message::tcp::TcpMessagePtr
 Type alias for Tcp message pointer. More...
 
using MessageConstPtr = boost_support::message::tcp::TcpMessageConstPtr
 Type alias for Tcp message const pointer. More...
 
using HandlerRead = std::function< void(MessagePtr)>
 Tcp function template used for reception. More...
 

Public Member Functions

 TcpClient (std::string_view client_name, std::string_view local_ip_address, std::uint16_t local_port_num) noexcept
 Constructs an instance of TcpClient. More...
 
 TcpClient (const TcpClient &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
TcpClientoperator= (const TcpClient &other) noexcept=delete
 
 TcpClient (TcpClient &&other) noexcept
 Move assignment and move constructor. More...
 
TcpClientoperator= (TcpClient &&other) noexcept
 
 ~TcpClient () noexcept
 Destruct an instance of TcpClient. More...
 
void Initialize () noexcept
 Initialize the client. More...
 
void DeInitialize () noexcept
 De-initialize the client. 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 > ConnectToHost (std::string_view host_ip_address, std::uint16_t host_port_num)
 Function to connect to remote ip address and port number. More...
 
core_type::Result< void > DisconnectFromHost ()
 Function to disconnect from remote host if already connected. More...
 
auto IsConnectedToHost () const noexcept -> bool
 Function to get the connection status. More...
 
core_type::Result< void > Transmit (MessageConstPtr tcp_message)
 Function to transmit the provided tcp message. More...
 

Private Attributes

std::unique_ptr< TcpClientImpltcp_client_impl_
 Unique pointer to tcp client implementation. More...
 

Detailed Description

Client that manages unsecured/ secured tcp connection.

Definition at line 24 of file tcp_client.h.

Member Typedef Documentation

◆ HandlerRead

Tcp function template used for reception.

Definition at line 44 of file tcp_client.h.

◆ Message

Type alias for Tcp message.

Definition at line 29 of file tcp_client.h.

◆ MessageConstPtr

Type alias for Tcp message const pointer.

Definition at line 39 of file tcp_client.h.

◆ MessagePtr

Type alias for Tcp message pointer.

Definition at line 34 of file tcp_client.h.

Constructor & Destructor Documentation

◆ TcpClient() [1/3]

boost_support::client::tcp::TcpClient::TcpClient ( std::string_view  client_name,
std::string_view  local_ip_address,
std::uint16_t  local_port_num 
)
noexcept

Constructs an instance of TcpClient.

Parameters
[in]client_nameThe name of the client
[in]local_ip_addressThe local ip address
[in]local_port_numThe local port number

Definition at line 214 of file tcp_client.cpp.

217  std::make_unique<TcpClientImpl>(client_name, local_ip_address, local_port_num)} {}
std::unique_ptr< TcpClientImpl > tcp_client_impl_
Unique pointer to tcp client implementation.
Definition: tcp_client.h:129

◆ TcpClient() [2/3]

boost_support::client::tcp::TcpClient::TcpClient ( const TcpClient other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ TcpClient() [3/3]

boost_support::client::tcp::TcpClient::TcpClient ( TcpClient &&  other)
defaultnoexcept

Move assignment and move constructor.

◆ ~TcpClient()

boost_support::client::tcp::TcpClient::~TcpClient ( )
defaultnoexcept

Destruct an instance of TcpClient.

Member Function Documentation

◆ ConnectToHost()

core_type::Result< void > boost_support::client::tcp::TcpClient::ConnectToHost ( std::string_view  host_ip_address,
std::uint16_t  host_port_num 
)

Function to connect to remote ip address and port number.

Parameters
[in]host_ip_addressThe host ip address
[in]host_port_numThe host port number
Returns
Empty void on success, otherwise error is returned

Definition at line 233 of file tcp_client.cpp.

234  {
235  return tcp_client_impl_->ConnectToHost(host_ip_address, host_port_num);
236 }

References tcp_client_impl_.

◆ DeInitialize()

void boost_support::client::tcp::TcpClient::DeInitialize ( )
noexcept

De-initialize the client.

Definition at line 227 of file tcp_client.cpp.

227 { tcp_client_impl_->DeInitialize(); }

References tcp_client_impl_.

◆ DisconnectFromHost()

core_type::Result< void > boost_support::client::tcp::TcpClient::DisconnectFromHost ( )

Function to disconnect from remote host if already connected.

Returns
Empty void on success, otherwise error is returned

Definition at line 238 of file tcp_client.cpp.

238  {
239  return tcp_client_impl_->DisconnectFromHost();
240 }

References tcp_client_impl_.

◆ Initialize()

void boost_support::client::tcp::TcpClient::Initialize ( )
noexcept

Initialize the client.

Definition at line 225 of file tcp_client.cpp.

225 { tcp_client_impl_->Initialize(); }

References Initialize().

Referenced by Initialize().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ IsConnectedToHost()

auto boost_support::client::tcp::TcpClient::IsConnectedToHost ( ) const -> bool
noexcept

Function to get the connection status.

Returns
True if connected, False otherwise

Definition at line 242 of file tcp_client.cpp.

242  {
243  return tcp_client_impl_->IsConnectedToHost();
244 }

References tcp_client_impl_.

◆ operator=() [1/2]

TcpClient& boost_support::client::tcp::TcpClient::operator= ( const TcpClient other)
deletenoexcept

◆ operator=() [2/2]

TcpClient & boost_support::client::tcp::TcpClient::operator= ( TcpClient &&  other)
defaultnoexcept

◆ SetReadHandler()

void boost_support::client::tcp::TcpClient::SetReadHandler ( TcpClient::HandlerRead  read_handler)
noexcept

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 229 of file tcp_client.cpp.

229  {
230  tcp_client_impl_->SetReadHandler(std::move(read_handler));
231 }

◆ Transmit()

core_type::Result< void > boost_support::client::tcp::TcpClient::Transmit ( MessageConstPtr  tcp_message)

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 246 of file tcp_client.cpp.

246  {
247  return tcp_client_impl_->Transmit(std::move(tcp_message));
248 }

References tcp_client_impl_.

Member Data Documentation

◆ tcp_client_impl_

std::unique_ptr<TcpClientImpl> boost_support::client::tcp::TcpClient::tcp_client_impl_
private

Unique pointer to tcp client implementation.

Definition at line 134 of file tcp_client.h.

Referenced by ConnectToHost(), DeInitialize(), DisconnectFromHost(), IsConnectedToHost(), and Transmit().


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