Diag-Client-Lib
tcp_message.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_SOCKET_TCP_TCP_MESSAGE_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_TCP_TCP_MESSAGE_H_
10 
11 #include <cstdint>
12 #include <memory>
13 #include <string>
14 #include <string_view>
15 #include <vector>
16 
17 #include "core/include/span.h"
18 
19 namespace boost_support {
20 namespace message {
21 namespace tcp {
22 
26 class TcpMessage final {
27  public:
31  enum class SocketState : std::uint8_t {
32  kIdle = 0x00,
39  };
40 
44  enum class SocketError : std::uint8_t { kNone = 0x00 };
45 
49  using BufferType = std::vector<std::uint8_t>;
50 
54  using IpAddressType = std::string_view;
55 
56  public:
66  TcpMessage(IpAddressType host_ip_address, std::uint16_t host_port_number, BufferType payload)
67  : socket_state_{SocketState::kIdle},
68  socket_error_{SocketError::kNone},
69  payload_{std::move(payload)},
70  host_ip_address_{host_ip_address},
71  host_port_number_{host_port_number} {}
72 
73  TcpMessage(TcpMessage &&other) noexcept = default;
74  TcpMessage &operator=(TcpMessage &&other) noexcept = default;
75 
76  TcpMessage(const TcpMessage &other) = default;
77  TcpMessage &operator=(const TcpMessage &other) = default;
78 
82  ~TcpMessage() = default;
83 
89 
94  std::uint16_t GetHostPortNumber() const { return host_port_number_; }
95 
102  }
103 
109 
115 
116  private:
121 
126 
131 
135  std::string host_ip_address_;
136 
140  std::uint16_t host_port_number_;
141 };
142 
146 using TcpMessageConstPtr = std::unique_ptr<TcpMessage const>;
147 
151 using TcpMessagePtr = std::unique_ptr<TcpMessage>;
152 
156 constexpr std::uint8_t kDoipheadrSize = 8U;
157 
158 } // namespace tcp
159 } // namespace message
160 } // namespace boost_support
161 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_TCP_TCP_MESSAGE_H_
Immutable class to store received tcp message.
Definition: tcp_message.h:26
IpAddressType GetHostIpAddress() const
Get the host ip address.
Definition: tcp_message.h:88
SocketState
Definition of different socket state.
Definition: tcp_message.h:31
BufferType payload_
The reception buffer.
Definition: tcp_message.h:130
SocketState socket_state_
Store the socket state.
Definition: tcp_message.h:120
std::uint16_t GetHostPortNumber() const
Get the host port number.
Definition: tcp_message.h:94
std::vector< std::uint8_t > BufferType
Type alias for underlying buffer.
Definition: tcp_message.h:49
std::uint16_t host_port_number_
Store remote port number.
Definition: tcp_message.h:140
TcpMessage(const TcpMessage &other)=default
TcpMessage(IpAddressType host_ip_address, std::uint16_t host_port_number, BufferType payload)
Constructs an instance of TcpMessage.
Definition: tcp_message.h:66
SocketError GetSocketError() const
Get the error of underlying socket.
Definition: tcp_message.h:114
TcpMessage & operator=(const TcpMessage &other)=default
~TcpMessage()=default
Destructs an instance of TcpMessage.
SocketError socket_error_
Store the socket error.
Definition: tcp_message.h:125
core_type::Span< std::uint8_t const > GetPayload() const
Get the readable view on received payload.
Definition: tcp_message.h:100
SocketState GetSocketState() const
Get the state of underlying socket.
Definition: tcp_message.h:108
SocketError
Definition of different socket error that could occur.
Definition: tcp_message.h:44
std::string host_ip_address_
Store remote ip address.
Definition: tcp_message.h:135
std::string_view IpAddressType
Type alias of IP address type.
Definition: tcp_message.h:54
TcpMessage & operator=(TcpMessage &&other) noexcept=default
TcpMessage(TcpMessage &&other) noexcept=default
A view over a contiguous sequence of objects.
Definition: span.h:191
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
constexpr std::uint8_t kDoipheadrSize
Doip HeaderSize.
Definition: tcp_message.h:156