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_
11 #include <boost/asio.hpp>
12 #include <boost/asio/ssl.hpp>
14 #include <string_view>
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);
80 std::uint16_t host_port_num);
106 using Tcp = boost::asio::ip::tcp;
Class used to create a tls socket for handling transmission and reception of tcp message from driver.
boost::asio::io_context io_context_
boost io context
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.
boost::asio::ssl::stream< TcpSocket > TlsStream
Type alias for tls stream wrapping tcp socket.
std::uint16_t local_port_num_
Store local port number.
std::atomic_bool exit_request_
Flag to terminate the thread.
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.
Tcp::socket TcpSocket
Type alias for tcp socket.
std::thread thread_
The thread itself.
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.
boost::asio::ip::tcp Tcp
Type alias for tcp protocol.
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
boost::system::error_code TcpErrorCodeType
Type alias for tcp error codes.
~TlsClientSocket()
Destruct an instance of TcpClientSocket.
std::mutex mutex_
mutex to lock critical section
void HandleMessage()
Function to handle the reception of tcp message.
std::string local_ip_address_
Store local ip address.
std::atomic_bool running_
Flag to start the thread.
TlsStream tls_socket_
Store ssl socket.
std::condition_variable cond_var_
Conditional variable to block the thread.
TlsErrorCode
TLS error code.
TcpHandlerRead tcp_handler_read_
Store the handler.
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
std::unique_ptr< TcpMessage > TcpMessagePtr
The unique pointer to TcpMessage.
std::unique_ptr< TcpMessage const > TcpMessageConstPtr
The unique pointer to const TcpMessage.