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

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

Collaboration diagram for boost_support::client::tcp::TcpClient::TcpClientImpl:
Collaboration graph
[legend]

Public Member Functions

 TcpClientImpl (std::string_view client_name, std::string_view local_ip_address, std::uint16_t local_port_num) noexcept
 Constructs an instance of TcpClientImpl. More...
 
 TcpClientImpl (const TcpClientImpl &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
TcpClientImploperator= (const TcpClientImpl &other) noexcept=delete
 
 TcpClientImpl (TcpClientImpl &&other) noexcept=delete
 Deleted move assignment and move constructor. More...
 
TcpClientImploperator= (TcpClientImpl &&other) noexcept=delete
 
 ~TcpClientImpl () noexcept=default
 Destruct an instance of TcpClientImpl. 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 Types

enum class  State : std::uint8_t { kConnected = 0U , kDisconnected = 1U }
 Definitions of different connection state. More...
 
using TcpConnection = connection::tcp::TcpConnection< connection::tcp::ConnectionType::kClient, socket::tcp::TcpSocket >
 Type alias for unsecured tcp connection. More...
 
using IoContext = boost_support::socket::IoContext
 Type alias for boost context. More...
 

Private Attributes

IoContext io_context_
 Stores the io context. More...
 
std::atomic< Stateconnection_state_
 Store the state of tcp connection. More...
 
std::string client_name_
 The client name. More...
 
TcpConnection tcp_connection_
 Store the tcp connection. More...
 

Detailed Description

Class to provide implementation of tcp client.

Definition at line 42 of file tcp_client.cpp.

Member Typedef Documentation

◆ IoContext

Type alias for boost context.

Definition at line 61 of file tcp_client.cpp.

◆ TcpConnection

Type alias for unsecured tcp connection.

Definition at line 47 of file tcp_client.cpp.

Member Enumeration Documentation

◆ State

Definitions of different connection state.

Enumerator
kConnected 

Connected to remote server

kDisconnected 

Disconnected from remote server

Definition at line 53 of file tcp_client.cpp.

53  : std::uint8_t {
54  kConnected = 0U,
55  kDisconnected = 1U
56  };

Constructor & Destructor Documentation

◆ TcpClientImpl() [1/3]

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

Constructs an instance of TcpClientImpl.

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

Definition at line 71 of file tcp_client.cpp.

73  : io_context_{},
75  client_name_{AppendIpAddressAndPort(client_name, local_ip_address, local_port_num)},
76  tcp_connection_{client_name,
77  socket::tcp::TcpSocket{local_ip_address, local_port_num, io_context_}} {}
TcpConnection tcp_connection_
Store the tcp connection.
Definition: tcp_client.cpp:211
std::atomic< State > connection_state_
Store the state of tcp connection.
Definition: tcp_client.cpp:201
std::string AppendIpAddressAndPort(std::string_view client_name, std::string_view ip_address, std::uint16_t port_num)
Function to append the ip address and port number to the connection name.
Definition: tcp_client.cpp:28

◆ TcpClientImpl() [2/3]

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

Deleted copy assignment and copy constructor.

◆ TcpClientImpl() [3/3]

boost_support::client::tcp::TcpClient::TcpClientImpl::TcpClientImpl ( TcpClientImpl &&  other)
deletenoexcept

Deleted move assignment and move constructor.

◆ ~TcpClientImpl()

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

Destruct an instance of TcpClientImpl.

Member Function Documentation

◆ ConnectToHost()

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

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

125  {
128  if (connection_state_.load(std::memory_order_seq_cst) != State::kConnected) {
129  if (tcp_connection_.ConnectToHost(host_ip_address, host_port_num)) {
130  connection_state_.store(State::kConnected, std::memory_order_seq_cst);
131  result.EmplaceValue();
132  } // else, connect failed
133  } else {
134  // already connected
135  result.EmplaceValue();
136  common::logger::LibBoostLogger::GetLibBoostLogger().GetLogger().LogVerbose(
137  FILE_NAME, __LINE__, __func__,
138  [](std::stringstream &msg) { msg << "Tcp client is already connected"; });
139  }
140  return result;
141  }
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
Definition: logger.h:20
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
auto MakeErrorCode(BoostSupportErrorDomain::Errc code, BoostSupportErrorDomain::SupportDataType data) noexcept -> core_type::ErrorCode
Create a new ErrorCode within DoipErrorDomain.

References connection_state_, FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), kConnected, boost_support::error_domain::kSocketError, boost_support::error_domain::MakeErrorCode(), and tcp_connection_.

Here is the call graph for this function:

◆ DeInitialize()

void boost_support::client::tcp::TcpClient::TcpClientImpl::DeInitialize ( )
inlinenoexcept

De-initialize the client.

Definition at line 104 of file tcp_client.cpp.

104 { tcp_connection_.DeInitialize(); }

References tcp_connection_.

◆ DisconnectFromHost()

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

Function to disconnect from remote host if already connected.

Returns
Empty void on success, otherwise error is returned

Definition at line 147 of file tcp_client.cpp.

147  {
150  if (connection_state_.load(std::memory_order_seq_cst) == State::kConnected) {
151  tcp_connection_.DisconnectFromHost();
152  connection_state_.store(State::kDisconnected, std::memory_order_seq_cst);
153  result.EmplaceValue();
154  } else {
155  // Not connected
157  FILE_NAME, __LINE__, __func__,
158  [](std::stringstream &msg) { msg << "Tcp client is in disconnected state"; });
159  }
160  return result;
161  }

References connection_state_, FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), kConnected, kDisconnected, boost_support::error_domain::kSocketError, boost_support::error_domain::MakeErrorCode(), and tcp_connection_.

Here is the call graph for this function:

◆ Initialize()

void boost_support::client::tcp::TcpClient::TcpClientImpl::Initialize ( )
inlinenoexcept

Initialize the client.

Definition at line 99 of file tcp_client.cpp.

99 { tcp_connection_.Initialize(); }

References tcp_connection_.

◆ IsConnectedToHost()

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

Function to get the connection status.

Returns
True if connected, False otherwise

Definition at line 167 of file tcp_client.cpp.

167  {
168  return (connection_state_.load(std::memory_order_seq_cst) == State::kConnected);
169  }

References connection_state_, and kConnected.

◆ operator=() [1/2]

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

◆ operator=() [2/2]

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

◆ SetReadHandler()

void boost_support::client::tcp::TcpClient::TcpClientImpl::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 112 of file tcp_client.cpp.

112  {
113  tcp_connection_.SetReadHandler(std::move(read_handler));
114  }

References tcp_connection_.

◆ Transmit()

core_type::Result<void> boost_support::client::tcp::TcpClient::TcpClientImpl::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 177 of file tcp_client.cpp.

177  {
180  if (connection_state_.load(std::memory_order_seq_cst) == State::kConnected) {
181  if (tcp_connection_.Transmit(std::move(tcp_message))) { result.EmplaceValue(); }
182  } else {
183  // not connected
185  FILE_NAME, __LINE__, __func__, [](std::stringstream &msg) {
186  msg << "Tcp client is Offline, please connect to server first";
187  });
188  }
189  return result;
190  }

References connection_state_, FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), kConnected, boost_support::error_domain::kGenericError, boost_support::error_domain::MakeErrorCode(), and tcp_connection_.

Here is the call graph for this function:

Member Data Documentation

◆ client_name_

std::string boost_support::client::tcp::TcpClient::TcpClientImpl::client_name_
private

The client name.

Definition at line 206 of file tcp_client.cpp.

◆ connection_state_

std::atomic<State> boost_support::client::tcp::TcpClient::TcpClientImpl::connection_state_
private

Store the state of tcp connection.

Definition at line 201 of file tcp_client.cpp.

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

◆ io_context_

IoContext boost_support::client::tcp::TcpClient::TcpClientImpl::io_context_
private

Stores the io context.

Definition at line 196 of file tcp_client.cpp.

◆ tcp_connection_

TcpConnection boost_support::client::tcp::TcpClient::TcpClientImpl::tcp_connection_
private

Store the tcp connection.

Definition at line 211 of file tcp_client.cpp.

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


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