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_INCLUDE_BOOST_SUPPORT_CLIENT_TLS_TLS_CLIENT_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_CLIENT_TLS_TLS_CLIENT_H_
10 
11 #include <functional>
12 #include <string_view>
13 
16 #include "core/include/result.h"
17 
18 namespace boost_support {
19 namespace client {
20 namespace tls {
21 
22 // Forward declaration
23 template<typename TlsVersion>
24 class TlsClient;
25 
30 
35 
41 template<typename TlsVersion>
42 class TlsClient final {
43  public:
48 
53 
58 
62  using HandlerRead = std::function<void(MessagePtr)>;
63 
64  public:
74  TlsClient(std::string_view client_name, std::string_view local_ip_address,
75  std::uint16_t local_port_num, std::string_view ca_certification_path,
76  TlsVersion tls_version) noexcept;
77 
81  TlsClient(const TlsClient &other) noexcept = delete;
82  TlsClient &operator=(const TlsClient &other) noexcept = delete;
83 
87  TlsClient(TlsClient &&other) noexcept;
88  TlsClient &operator=(TlsClient &&other) noexcept;
89 
93  ~TlsClient() noexcept;
94 
98  void Initialize() noexcept;
99 
103  void DeInitialize() noexcept;
104 
111  void SetReadHandler(HandlerRead read_handler) noexcept;
112 
121  core_type::Result<void> ConnectToHost(std::string_view host_ip_address,
122  std::uint16_t host_port_num);
123 
129 
134  auto IsConnectedToHost() const noexcept -> bool;
135 
142  core_type::Result<void> Transmit(MessageConstPtr tcp_message);
143 
144  private:
148  class TlsClientImpl;
149 
153  std::unique_ptr<TlsClientImpl> tls_client_impl_;
154 };
155 
156 } // namespace tls
157 } // namespace client
158 } // namespace boost_support
159 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_CLIENT_TLS_TLS_CLIENT_H_
Class to provide implementation of tls client.
Definition: tls_client.cpp:40
Client that manages secured tcp connection.
Definition: tls_client.h:42
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
Definition: tls_client.cpp:258
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.
Definition: tls_client.cpp:263
auto IsConnectedToHost() const noexcept -> bool
Function to get the connection status.
Definition: tls_client.cpp:274
core_type::Result< void > DisconnectFromHost()
Function to disconnect from remote host if already connected.
Definition: tls_client.cpp:269
void DeInitialize() noexcept
De-initialize the client.
Definition: tls_client.cpp:253
boost_support::message::tcp::TcpMessageConstPtr MessageConstPtr
Type alias for Tcp message const pointer.
Definition: tls_client.h:57
boost_support::message::tcp::TcpMessagePtr MessagePtr
Type alias for Tcp message pointer.
Definition: tls_client.h:52
core_type::Result< void > Transmit(MessageConstPtr tcp_message)
Function to transmit the provided tcp message.
Definition: tls_client.cpp:279
~TlsClient() noexcept
Destruct an instance of TlsClient.
TlsClient(const TlsClient &other) noexcept=delete
Deleted copy assignment and copy constructor.
std::function< void(MessagePtr)> HandlerRead
Tcp function template used for reception.
Definition: tls_client.h:62
std::unique_ptr< TlsClientImpl > tls_client_impl_
Unique pointer to tls client implementation.
Definition: tls_client.h:148
TlsClient & operator=(TlsClient &&other) noexcept
TlsClient(TlsClient &&other) noexcept
Move assignment and move constructor.
TlsClient & operator=(const TlsClient &other) noexcept=delete
TlsClient(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 TlsClient.
Definition: tls_client.cpp:230
void Initialize() noexcept
Initialize the client.
Definition: tls_client.cpp:248
Immutable class to store received tcp message.
Definition: tcp_message.h:26
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
core_type::Result< T, E > Result
Class type to contains a value (of type ValueType), or an error (of type ErrorType)