Diag-Client-Lib
tls_client_.h
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 #ifndef DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_TCP_TLS_CLIENT_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_TCP_TLS_CLIENT_H_
10 // includes
11 #include <boost/asio.hpp>
12 #include <boost/asio/ssl.hpp>
13 #include <string>
14 #include <string_view>
15 #include <thread>
16 
18 #include "core/include/result.h"
19 
20 namespace boost_support {
21 namespace socket {
22 namespace tcp {
23 
27 class TlsClientSocket final {
28  public:
32  enum class TlsErrorCode : std::uint8_t {
38  };
39 
43  using TcpHandlerRead = std::function<void(message::tcp::TcpMessagePtr)>;
44 
45  public:
57  TlsClientSocket(std::string_view local_ip_address, std::uint16_t local_port_num,
58  TcpHandlerRead tcp_handler_read, std::string_view ca_certification_path);
59 
64 
70 
79  core_type::Result<void, TlsErrorCode> ConnectToHost(std::string_view host_ip_address,
80  std::uint16_t host_port_num);
81 
87 
95 
101 
102  private:
106  using Tcp = boost::asio::ip::tcp;
107 
111  using TcpSocket = Tcp::socket;
112 
116  using TlsStream = boost::asio::ssl::stream<TcpSocket>;
117 
121  using TcpIpAddress = boost::asio::ip::address;
122 
126  using TcpErrorCodeType = boost::system::error_code;
127 
131  std::string local_ip_address_;
132 
136  std::uint16_t local_port_num_;
137 
141  boost::asio::io_context io_context_;
142 
146  boost::asio::ssl::context io_ssl_context_;
147 
152 
156  std::atomic_bool exit_request_;
157 
161  std::atomic_bool running_;
162 
166  std::condition_variable cond_var_;
167 
171  std::mutex mutex_;
172 
176  std::thread thread_;
177 
182 
183  private:
187  TlsStream::lowest_layer_type& GetNativeTcpSocket();
188 
192  void HandleMessage();
193 };
194 } // namespace tcp
195 } // namespace socket
196 } // namespace boost_support
197 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_TCP_TLS_CLIENT_H_
Class used to create a tls socket for handling transmission and reception of tcp message from driver.
Definition: tls_client_.h:27
boost::asio::io_context io_context_
boost io context
Definition: tls_client_.h:141
TlsStream::lowest_layer_type & GetNativeTcpSocket()
Function to get the native tcp socket under tls socket.
core_type::Result< void, TlsErrorCode > DisconnectFromHost()
Function to Disconnect from host.
boost::asio::ip::address TcpIpAddress
Type alias for tcp ip address.
Definition: tls_client_.h:121
boost::asio::ssl::stream< TcpSocket > TlsStream
Type alias for tls stream wrapping tcp socket.
Definition: tls_client_.h:116
std::uint16_t local_port_num_
Store local port number.
Definition: tls_client_.h:136
std::atomic_bool exit_request_
Flag to terminate the thread.
Definition: tls_client_.h:156
TlsClientSocket(std::string_view local_ip_address, std::uint16_t local_port_num, TcpHandlerRead tcp_handler_read, std::string_view ca_certification_path)
Constructs an instance of TlsClientSocket.
Definition: tls_client_.cpp:51
Tcp::socket TcpSocket
Type alias for tcp socket.
Definition: tls_client_.h:111
std::thread thread_
The thread itself.
Definition: tls_client_.h:176
core_type::Result< void, TlsErrorCode > ConnectToHost(std::string_view host_ip_address, std::uint16_t host_port_num)
Function to connect to remote ip address and port number.
core_type::Result< void, TlsErrorCode > Open()
Function to Open the socket.
std::function< void(message::tcp::TcpMessagePtr)> TcpHandlerRead
Tcp function template used for reception.
Definition: tls_client_.h:43
boost::asio::ip::tcp Tcp
Type alias for tcp protocol.
Definition: tls_client_.h:106
core_type::Result< void, TlsErrorCode > Transmit(message::tcp::TcpMessageConstPtr tcp_message)
Function to trigger transmission.
core_type::Result< void, TlsErrorCode > Destroy()
Function to destroy the socket.
boost::asio::ssl::context io_ssl_context_
boost io ssl context
Definition: tls_client_.h:146
boost::system::error_code TcpErrorCodeType
Type alias for tcp error codes.
Definition: tls_client_.h:126
~TlsClientSocket()
Destruct an instance of TcpClientSocket.
std::mutex mutex_
mutex to lock critical section
Definition: tls_client_.h:171
void HandleMessage()
Function to handle the reception of tcp message.
std::string local_ip_address_
Store local ip address.
Definition: tls_client_.h:131
std::atomic_bool running_
Flag to start the thread.
Definition: tls_client_.h:161
TlsStream tls_socket_
Store ssl socket.
Definition: tls_client_.h:151
std::condition_variable cond_var_
Conditional variable to block the thread.
Definition: tls_client_.h:166
TcpHandlerRead tcp_handler_read_
Store the handler.
Definition: tls_client_.h:181
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29
std::unique_ptr< TcpMessage > TcpMessagePtr
The unique pointer to TcpMessage.
Definition: tcp_message.h:151
std::unique_ptr< TcpMessage const > TcpMessageConstPtr
The unique pointer to const TcpMessage.
Definition: tcp_message.h:146