Diag-Client-Lib
socket_handler.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_DOIP_CLIENT_SOCKETS_SOCKET_HANDLER_H_
9 #define DIAG_CLIENT_LIB_LIB_DOIP_CLIENT_SOCKETS_SOCKET_HANDLER_H_
10 
11 #include <string_view>
12 
15 #include "core/include/result.h"
16 
17 namespace doip_client {
18 namespace sockets {
19 
23 template<typename ClientType>
24 class SocketHandler final {
25  public:
29  using Client = ClientType;
30 
34  using Message = typename Client::Message;
35 
39  using MessagePtr = typename Client::MessagePtr;
40 
44  using MessageConstPtr = typename Client::MessageConstPtr;
45 
49  using HandlerRead = std::function<void(MessagePtr)>;
50 
56  explicit SocketHandler(Client client) noexcept : client_{std::move(client)} {}
57 
61  SocketHandler(const SocketHandler &other) noexcept = delete;
62  SocketHandler &operator=(const SocketHandler &other) noexcept = delete;
63 
67  SocketHandler(SocketHandler &&other) noexcept = default;
68  SocketHandler &operator=(SocketHandler &&other) noexcept = default;
69 
73  ~SocketHandler() = default;
74 
78  void Initialize() noexcept { client_.Initialize(); }
79 
83  void DeInitialize() noexcept { client_.DeInitialize(); }
84 
91  void SetReadHandler(HandlerRead read_handler) { client_.SetReadHandler(std::move(read_handler)); }
92 
101  core_type::Result<void> ConnectToHost(std::string_view host_ip_address,
102  std::uint16_t host_port_num) {
103  return client_.ConnectToHost(host_ip_address, host_port_num);
104  }
105 
110  core_type::Result<void> DisconnectFromHost() { return client_.DisconnectFromHost(); }
111 
116  auto IsConnectedToHost() const noexcept -> bool { return client_.IsConnectedToHost(); }
117 
125  return client_.Transmit(std::move(message));
126  }
127 
128  private:
133 };
134 
139 
144 
145 } // namespace sockets
146 } // namespace doip_client
147 #endif // DIAG_CLIENT_LIB_LIB_DOIP_CLIENT_SOCKETS_SOCKET_HANDLER_H_
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29
Handler class to manage different socket of various client (Udp / Tcp)
std::function< void(MessagePtr)> HandlerRead
Tcp function template used for reception.
typename Client::MessagePtr MessagePtr
Type alias for message pointer.
SocketHandler(Client client) noexcept
Constructs an instance of TcpSocketHandler.
Client client_
Store the client object.
void SetReadHandler(HandlerRead read_handler)
Function to set the read handler that is invoked when message is received.
SocketHandler(const SocketHandler &other) noexcept=delete
Deleted copy assignment and copy constructor.
SocketHandler & operator=(SocketHandler &&other) noexcept=default
~SocketHandler()=default
Destruct an instance of TcpSocketHandler.
core_type::Result< void > Transmit(MessageConstPtr message)
Function to transmit the provided message.
SocketHandler(SocketHandler &&other) noexcept=default
Move assignment and Move constructor.
typename Client::MessageConstPtr MessageConstPtr
Type alias for message const pointer.
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.
core_type::Result< void > DisconnectFromHost()
Function to disconnect from remote host if already connected.
void DeInitialize() noexcept
Function to stop the socket handler.
SocketHandler & operator=(const SocketHandler &other) noexcept=delete
typename Client::Message Message
Type alias for message.
ClientType Client
Type alias for client.
void Initialize() noexcept
Function to start the socket handler.
auto IsConnectedToHost() const noexcept -> bool
Function to get the connection status.