Diag-Client-Lib
Public Member Functions | Private Types | Private Attributes | List of all members
boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl Class Referencefinal

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

Collaboration diagram for boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl:
Collaboration graph
[legend]

Public Member Functions

 TlsClientImpl (std::string_view client_name, std::string_view local_ip_address, std::uint16_t local_port_num, std::string_view ca_certification_path, TlsVersion tls_version) noexcept
 Constructs an instance of TcpClient. More...
 
 TlsClientImpl (const TlsClientImpl &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
TlsClientImploperator= (const TlsClientImpl &other) noexcept=delete
 
 TlsClientImpl (TlsClientImpl &&other) noexcept=delete
 Deleted move assignment and move constructor. More...
 
TlsClientImploperator= (TlsClientImpl &&other) noexcept=delete
 
 ~TlsClientImpl () 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

using TlsSocket = socket::tls::TlsSocket
 Type alias for secured socket. More...
 
using TcpConnectionSecured = connection::tcp::TcpConnection< connection::tcp::ConnectionType::kClient, TlsSocket >
 Type alias for secured tcp connection. More...
 
using IoContext = boost_support::socket::IoContext
 Type alias for boost context. More...
 
using TlsContext = boost_support::socket::tls::TlsContext
 Type alias for tls context. More...
 

Private Attributes

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

Detailed Description

template<typename TlsVersion>
class boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl

Class to provide implementation of tls client.

Definition at line 40 of file tls_client.cpp.

Member Typedef Documentation

◆ IoContext

Type alias for boost context.

Definition at line 64 of file tls_client.cpp.

◆ TcpConnectionSecured

Type alias for secured tcp connection.

Definition at line 50 of file tls_client.cpp.

◆ TlsContext

Type alias for tls context.

Definition at line 69 of file tls_client.cpp.

◆ TlsSocket

Type alias for secured socket.

Definition at line 45 of file tls_client.cpp.

Constructor & Destructor Documentation

◆ TlsClientImpl() [1/3]

template<typename TlsVersion >
boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::TlsClientImpl ( std::string_view  client_name,
std::string_view  local_ip_address,
std::uint16_t  local_port_num,
std::string_view  ca_certification_path,
TlsVersion  tls_version 
)
inlinenoexcept

Constructs an instance of TcpClient.

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

Definition at line 79 of file tls_client.cpp.

82  : io_context_{},
83  tls_context_{tls_version, ca_certification_path},
84  connection_state_{State::kDisconnected},
85  client_name_{AppendIpAddressAndPort(client_name, local_ip_address, local_port_num)},
86  tcp_connection_{client_name,
87  TlsSocket{local_ip_address, local_port_num, tls_context_, io_context_}} {}
std::atomic< State > connection_state_
Store the state of tcp connection.
Definition: tls_client.cpp:216
socket::tls::TlsSocket TlsSocket
Type alias for secured socket.
Definition: tls_client.cpp:45
TlsContext tls_context_
Stores the tls context.
Definition: tls_client.cpp:211
TcpConnectionSecured tcp_connection_
Store the tcp connection.
Definition: tls_client.cpp:226
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: tls_client.cpp:25

◆ TlsClientImpl() [2/3]

template<typename TlsVersion >
boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::TlsClientImpl ( const TlsClientImpl other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ TlsClientImpl() [3/3]

template<typename TlsVersion >
boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::TlsClientImpl ( TlsClientImpl &&  other)
deletenoexcept

Deleted move assignment and move constructor.

◆ ~TlsClientImpl()

template<typename TlsVersion >
boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::~TlsClientImpl ( )
defaultnoexcept

Destruct an instance of TcpClientImpl.

Member Function Documentation

◆ ConnectToHost()

template<typename TlsVersion >
core_type::Result<void> boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::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 134 of file tls_client.cpp.

135  {
138  if (connection_state_.load(std::memory_order_seq_cst) != State::kConnected) {
139  if (tcp_connection_.ConnectToHost(host_ip_address, host_port_num)) {
140  connection_state_.store(State::kConnected, std::memory_order_seq_cst);
141  result.EmplaceValue();
142  } // else, connect failed
143  } else {
144  // already connected
145  result.EmplaceValue();
146  common::logger::LibBoostLogger::GetLibBoostLogger().GetLogger().LogVerbose(
147  FILE_NAME, __LINE__, __func__,
148  [](std::stringstream &msg) { msg << "Tcp client is already connected"; });
149  }
150  return result;
151  }
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 FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), boost_support::error_domain::kSocketError, and boost_support::error_domain::MakeErrorCode().

Here is the call graph for this function:

◆ DeInitialize()

template<typename TlsVersion >
void boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::DeInitialize ( )
inlinenoexcept

De-initialize the client.

Definition at line 114 of file tls_client.cpp.

114 { tcp_connection_.DeInitialize(); }

◆ DisconnectFromHost()

template<typename TlsVersion >
core_type::Result<void> boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::DisconnectFromHost ( )
inline

Function to disconnect from remote host if already connected.

Returns
Empty void on success, otherwise error is returned

Definition at line 157 of file tls_client.cpp.

157  {
160  if (connection_state_.load(std::memory_order_seq_cst) == State::kConnected) {
161  tcp_connection_.DisconnectFromHost();
162  connection_state_.store(State::kDisconnected, std::memory_order_seq_cst);
163  result.EmplaceValue();
164  } else {
165  // Not connected
167  FILE_NAME, __LINE__, __func__,
168  [](std::stringstream &msg) { msg << "Tcp client is in disconnected state"; });
169  }
170  return result;
171  }

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

Here is the call graph for this function:

◆ Initialize()

template<typename TlsVersion >
void boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::Initialize ( )
inlinenoexcept

Initialize the client.

Definition at line 109 of file tls_client.cpp.

109 { tcp_connection_.Initialize(); }

◆ IsConnectedToHost()

template<typename TlsVersion >
auto boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::IsConnectedToHost ( ) const -> bool
inlinenoexcept

Function to get the connection status.

Returns
True if connected, False otherwise

Definition at line 177 of file tls_client.cpp.

177  {
178  return (connection_state_.load(std::memory_order_seq_cst) == State::kConnected);
179  }

◆ operator=() [1/2]

template<typename TlsVersion >
TlsClientImpl& boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::operator= ( const TlsClientImpl other)
deletenoexcept

◆ operator=() [2/2]

template<typename TlsVersion >
TlsClientImpl& boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::operator= ( TlsClientImpl &&  other)
deletenoexcept

◆ SetReadHandler()

template<typename TlsVersion >
void boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::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 122 of file tls_client.cpp.

122  {
123  tcp_connection_.SetReadHandler(std::move(read_handler));
124  }

References boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::SetReadHandler().

Referenced by boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::SetReadHandler().

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

◆ Transmit()

template<typename TlsVersion >
core_type::Result<void> boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::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 187 of file tls_client.cpp.

187  {
190  if (connection_state_.load(std::memory_order_seq_cst) == State::kConnected) {
191  if (tcp_connection_.Transmit(std::move(tcp_message))) { result.EmplaceValue(); }
192  } else {
193  // not connected
195  FILE_NAME, __LINE__, __func__, [](std::stringstream &msg) {
196  msg << "Tcp client is Offline, please connect to server first";
197  });
198  }
199  return result;
200  }

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

Here is the call graph for this function:

Member Data Documentation

◆ client_name_

template<typename TlsVersion >
std::string boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::client_name_
private

The client name.

Definition at line 221 of file tls_client.cpp.

◆ connection_state_

template<typename TlsVersion >
std::atomic<State> boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::connection_state_
private

Store the state of tcp connection.

Definition at line 216 of file tls_client.cpp.

◆ io_context_

template<typename TlsVersion >
IoContext boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::io_context_
private

Stores the io context.

Definition at line 206 of file tls_client.cpp.

◆ tcp_connection_

template<typename TlsVersion >
TcpConnectionSecured boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::tcp_connection_
private

Store the tcp connection.

Definition at line 226 of file tls_client.cpp.

◆ tls_context_

template<typename TlsVersion >
TlsContext boost_support::client::tls::TlsClient< TlsVersion >::TlsClientImpl::tls_context_
private

Stores the tls context.

Definition at line 211 of file tls_client.cpp.


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