Diag-Client-Lib
tcp_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_TCP_TCP_CLIENT_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_CLIENT_TCP_TCP_CLIENT_H_
10 
11 #include <functional>
12 #include <string_view>
13 
15 #include "core/include/result.h"
16 
17 namespace boost_support {
18 namespace client {
19 namespace tcp {
20 
24 class TcpClient final {
25  public:
30 
35 
40 
44  using HandlerRead = std::function<void(MessagePtr)>;
45 
46  public:
56  TcpClient(std::string_view client_name, std::string_view local_ip_address,
57  std::uint16_t local_port_num) noexcept;
58 
62  TcpClient(const TcpClient &other) noexcept = delete;
63  TcpClient &operator=(const TcpClient &other) noexcept = delete;
64 
68  TcpClient(TcpClient &&other) noexcept;
69  TcpClient &operator=(TcpClient &&other) noexcept;
70 
74  ~TcpClient() noexcept;
75 
79  void Initialize() noexcept;
80 
84  void DeInitialize() noexcept;
85 
92  void SetReadHandler(HandlerRead read_handler) noexcept;
93 
102  core_type::Result<void> ConnectToHost(std::string_view host_ip_address,
103  std::uint16_t host_port_num);
104 
110 
115  auto IsConnectedToHost() const noexcept -> bool;
116 
123  core_type::Result<void> Transmit(MessageConstPtr tcp_message);
124 
125  private:
129  class TcpClientImpl;
130 
134  std::unique_ptr<TcpClientImpl> tcp_client_impl_;
135 };
136 
137 } // namespace tcp
138 } // namespace client
139 } // namespace boost_support
140 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_CLIENT_TCP_TCP_CLIENT_H_
Class to provide implementation of tcp client.
Definition: tcp_client.cpp:42
Client that manages unsecured/ secured tcp connection.
Definition: tcp_client.h:24
TcpClient(const TcpClient &other) noexcept=delete
Deleted copy assignment and copy constructor.
TcpClient & operator=(const TcpClient &other) noexcept=delete
TcpClient(std::string_view client_name, std::string_view local_ip_address, std::uint16_t local_port_num) noexcept
Constructs an instance of TcpClient.
Definition: tcp_client.cpp:214
core_type::Result< void > DisconnectFromHost()
Function to disconnect from remote host if already connected.
Definition: tcp_client.cpp:238
boost_support::message::tcp::TcpMessageConstPtr MessageConstPtr
Type alias for Tcp message const pointer.
Definition: tcp_client.h:39
void Initialize() noexcept
Initialize the client.
Definition: tcp_client.cpp:225
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
Definition: tcp_client.cpp:229
core_type::Result< void > Transmit(MessageConstPtr tcp_message)
Function to transmit the provided tcp message.
Definition: tcp_client.cpp:246
boost_support::message::tcp::TcpMessagePtr MessagePtr
Type alias for Tcp message pointer.
Definition: tcp_client.h:34
TcpClient & operator=(TcpClient &&other) noexcept
void DeInitialize() noexcept
De-initialize the client.
Definition: tcp_client.cpp:227
~TcpClient() noexcept
Destruct an instance of TcpClient.
auto IsConnectedToHost() const noexcept -> bool
Function to get the connection status.
Definition: tcp_client.cpp:242
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: tcp_client.cpp:233
std::function< void(MessagePtr)> HandlerRead
Tcp function template used for reception.
Definition: tcp_client.h:44
std::unique_ptr< TcpClientImpl > tcp_client_impl_
Unique pointer to tcp client implementation.
Definition: tcp_client.h:129
TcpClient(TcpClient &&other) noexcept
Move assignment and move constructor.
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)