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_
12 #include <string_view>
56 TcpClient(std::string_view client_name, std::string_view local_ip_address,
57 std::uint16_t local_port_num) noexcept;
103 std::uint16_t host_port_num);
Class to provide implementation of tcp client.
Client that manages unsecured/ secured tcp connection.
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.
core_type::Result< void > DisconnectFromHost()
Function to disconnect from remote host if already connected.
boost_support::message::tcp::TcpMessageConstPtr MessageConstPtr
Type alias for Tcp message const pointer.
void Initialize() noexcept
Initialize the client.
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
core_type::Result< void > Transmit(MessageConstPtr tcp_message)
Function to transmit the provided tcp message.
boost_support::message::tcp::TcpMessagePtr MessagePtr
Type alias for Tcp message pointer.
TcpClient & operator=(TcpClient &&other) noexcept
void DeInitialize() noexcept
De-initialize the client.
~TcpClient() noexcept
Destruct an instance of TcpClient.
auto IsConnectedToHost() const noexcept -> bool
Function to get the connection status.
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.
std::function< void(MessagePtr)> HandlerRead
Tcp function template used for reception.
std::unique_ptr< TcpClientImpl > tcp_client_impl_
Unique pointer to tcp client implementation.
TcpClient(TcpClient &&other) noexcept
Move assignment and move constructor.
Immutable class to store received tcp message.
std::unique_ptr< TcpMessage > TcpMessagePtr
The unique pointer to TcpMessage.
std::unique_ptr< TcpMessage const > TcpMessageConstPtr
The unique pointer to const TcpMessage.
core_type::Result< T, E > Result
Class type to contains a value (of type ValueType), or an error (of type ErrorType)