Diag-Client-Lib
udp_socket.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_SOCKET_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_UDP_UDP_SOCKET_H_
10 
11 #include <boost/asio.hpp>
12 #include <vector>
13 
15 #include "core/include/result.h"
16 
17 namespace boost_support {
18 namespace socket {
19 namespace udp {
20 
24 class UdpSocket final {
25  public:
29  enum class SocketError : std::uint8_t { kOpenFailed, kBindingFailed, kGenericError };
30 
35 
40 
45 
49  using Udp = boost::asio::ip::udp;
50 
54  using Socket = Udp::socket;
55 
59  using UdpHandlerRead = std::function<void(UdpMessagePtr)>;
60 
61  public:
71  UdpSocket(std::string_view local_ip_address, std::uint16_t local_port_num,
72  boost::asio::io_context &io_context) noexcept;
73 
77  UdpSocket(const UdpSocket &other) noexcept = delete;
78  UdpSocket &operator=(const UdpSocket &other) noexcept = delete;
79 
83  UdpSocket(UdpSocket &&other) noexcept = default;
84  UdpSocket &operator=(UdpSocket &&other) noexcept = default;
85 
89  ~UdpSocket() noexcept;
90 
97  void SetReadHandler(UdpHandlerRead read_handler);
98 
103  core_type::Result<void, SocketError> Open() noexcept;
104 
111  core_type::Result<void, SocketError> Transmit(UdpMessageConstPtr udp_message) noexcept;
112 
117  core_type::Result<void, SocketError> Close() noexcept;
118 
119  private:
123  using UdpErrorCodeType = boost::system::error_code;
124 
129 
133  Udp::endpoint local_endpoint_;
134 
139 
143  std::vector<std::uint8_t> rx_buffer_;
144 
149 
150  private:
157  core_type::Result<UdpMessagePtr> Read(std::size_t bytes_received);
158 
162  void StartReceivingMessage();
163 };
164 
165 } // namespace udp
166 } // namespace socket
167 } // namespace boost_support
168 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_UDP_UDP_SOCKET_H_
Immutable class to store received udp message.
Definition: udp_message.h:32
Class used to create a udp socket for handling transmission and reception of udp message from driver.
Definition: udp_socket.h:24
UdpSocket & operator=(const UdpSocket &other) noexcept=delete
void SetReadHandler(UdpHandlerRead read_handler)
Function to set the read handler that is invoked when message is received.
Definition: udp_socket.cpp:29
UdpSocket(UdpSocket &&other) noexcept=default
Move assignment and Move constructor.
boost_support::message::udp::UdpMessageConstPtr UdpMessageConstPtr
Type alias for Udp message const pointer.
Definition: udp_socket.h:44
void StartReceivingMessage()
Function to start reception of Udp dataframe.
Definition: udp_socket.cpp:146
core_type::Result< void, SocketError > Close() noexcept
Function to destroy the socket.
Definition: udp_socket.cpp:101
std::vector< std::uint8_t > rx_buffer_
Reception buffer needed for async reception of udp data.
Definition: udp_socket.h:143
~UdpSocket() noexcept
Destruct an instance of TcpSocket.
boost::asio::ip::udp Udp
Type alias for Udp protocol.
Definition: udp_socket.h:49
Udp::endpoint local_endpoint_
Store the local endpoints.
Definition: udp_socket.h:133
std::function< void(UdpMessagePtr)> UdpHandlerRead
Udp function template used for reception.
Definition: udp_socket.h:59
Udp::socket Socket
Type alias for Udp socket.
Definition: udp_socket.h:54
UdpHandlerRead udp_handler_read_
Store the handler.
Definition: udp_socket.h:148
core_type::Result< UdpMessagePtr > Read(std::size_t bytes_received)
Function to handle the reception of tcp message.
Definition: udp_socket.cpp:109
boost::system::error_code UdpErrorCodeType
Type alias for udp error codes.
Definition: udp_socket.h:123
UdpSocket(const UdpSocket &other) noexcept=delete
Deleted copy assignment and copy constructor.
core_type::Result< void, SocketError > Transmit(UdpMessageConstPtr udp_message) noexcept
Function to trigger transmission.
Definition: udp_socket.cpp:65
UdpSocket & operator=(UdpSocket &&other) noexcept=default
Socket udp_socket_
Store the underlying udp socket.
Definition: udp_socket.h:128
UdpSocket(std::string_view local_ip_address, std::uint16_t local_port_num, boost::asio::io_context &io_context) noexcept
Constructs an instance of TcpSocket.
Definition: udp_socket.cpp:20
core_type::Result< void, SocketError > Open() noexcept
Function to open and bind the socket to provided ip address & port.
Definition: udp_socket.cpp:33
boost_support::message::udp::UdpMessagePtr UdpMessagePtr
Type alias for Udp message pointer.
Definition: udp_socket.h:39
Udp::endpoint remote_endpoint_
Store the remote endpoints.
Definition: udp_socket.h:138
std::unique_ptr< UdpMessage > UdpMessagePtr
The unique pointer to UdpMessage.
Definition: udp_message.h:110
std::unique_ptr< UdpMessage const > UdpMessageConstPtr
The unique pointer to const UdpMessage.
Definition: udp_message.h:105
core_type::Result< T, E > Result
Class type to contains a value (of type ValueType), or an error (of type ErrorType)