Diag-Client-Lib
udp_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_UDP_UDP_MESSAGE_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_UDP_UDP_MESSAGE_H_
10 
11 #include <cstdint>
12 #include <memory>
13 #include <string>
14 #include <string_view>
15 #include <utility>
16 #include <vector>
17 
18 #include "core/include/span.h"
19 
20 namespace boost_support {
21 namespace message {
22 namespace udp {
23 
27 constexpr std::uint8_t kMaxUdpResSize{40u};
28 
32 class UdpMessage final {
33  public:
37  using BufferType = std::vector<uint8_t>;
38 
39  public:
49  UdpMessage(std::string_view host_ip_address, std::uint16_t host_port_number, BufferType payload)
50  : payload_{std::move(payload)},
51  host_ip_address_{host_ip_address},
52  host_port_number_{host_port_number} {}
53 
54  UdpMessage(UdpMessage &&other) noexcept = default;
55  UdpMessage &operator=(UdpMessage &&other) noexcept = default;
56 
57  UdpMessage(const UdpMessage &other) = delete;
58  UdpMessage &operator=(const UdpMessage &other) = delete;
59 
63  ~UdpMessage() = default;
64 
69  std::string_view GetHostIpAddress() const { return host_ip_address_; }
70 
75  std::uint16_t GetHostPortNumber() const { return host_port_number_; }
76 
83  }
84 
85  private:
90 
94  std::string host_ip_address_;
95 
99  std::uint16_t host_port_number_;
100 };
101 
105 using UdpMessageConstPtr = std::unique_ptr<UdpMessage const>;
106 
110 using UdpMessagePtr = std::unique_ptr<UdpMessage>;
111 
112 } // namespace udp
113 } // namespace message
114 } // namespace boost_support
115 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_UDP_UDP_MESSAGE_H_
Immutable class to store received udp message.
Definition: udp_message.h:32
std::vector< uint8_t > BufferType
Type alias for underlying buffer.
Definition: udp_message.h:37
std::string_view GetHostIpAddress() const
Get the host ip address.
Definition: udp_message.h:69
BufferType payload_
The reception buffer.
Definition: udp_message.h:89
UdpMessage & operator=(const UdpMessage &other)=delete
UdpMessage(std::string_view host_ip_address, std::uint16_t host_port_number, BufferType payload)
Constructs an instance of UdpMessage.
Definition: udp_message.h:49
UdpMessage(const UdpMessage &other)=delete
UdpMessage(UdpMessage &&other) noexcept=default
std::string host_ip_address_
Store remote ip address.
Definition: udp_message.h:94
UdpMessage & operator=(UdpMessage &&other) noexcept=default
core_type::Span< std::uint8_t const > GetPayload() const
Get the readable view on received payload.
Definition: udp_message.h:81
std::uint16_t host_port_number_
Store remote port number.
Definition: udp_message.h:99
~UdpMessage()=default
Destructs an instance of UdpMessage.
std::uint16_t GetHostPortNumber() const
Get the host port number.
Definition: udp_message.h:75
A view over a contiguous sequence of objects.
Definition: span.h:191
std::unique_ptr< UdpMessage > UdpMessagePtr
The unique pointer to UdpMessage.
Definition: udp_message.h:110
constexpr std::uint8_t kMaxUdpResSize
Maximum response size.
Definition: udp_message.h:27
std::unique_ptr< UdpMessage const > UdpMessageConstPtr
The unique pointer to const UdpMessage.
Definition: udp_message.h:105