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_
11 #include <boost/asio.hpp>
49 using Udp = boost::asio::ip::udp;
71 UdpSocket(std::string_view local_ip_address, std::uint16_t local_port_num,
72 boost::asio::io_context &io_context) noexcept;
Immutable class to store received udp message.
Class used to create a udp socket for handling transmission and reception of udp message from driver.
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.
UdpSocket(UdpSocket &&other) noexcept=default
Move assignment and Move constructor.
boost_support::message::udp::UdpMessageConstPtr UdpMessageConstPtr
Type alias for Udp message const pointer.
void StartReceivingMessage()
Function to start reception of Udp dataframe.
core_type::Result< void, SocketError > Close() noexcept
Function to destroy the socket.
std::vector< std::uint8_t > rx_buffer_
Reception buffer needed for async reception of udp data.
~UdpSocket() noexcept
Destruct an instance of TcpSocket.
boost::asio::ip::udp Udp
Type alias for Udp protocol.
Udp::endpoint local_endpoint_
Store the local endpoints.
std::function< void(UdpMessagePtr)> UdpHandlerRead
Udp function template used for reception.
Udp::socket Socket
Type alias for Udp socket.
UdpHandlerRead udp_handler_read_
Store the handler.
core_type::Result< UdpMessagePtr > Read(std::size_t bytes_received)
Function to handle the reception of tcp message.
boost::system::error_code UdpErrorCodeType
Type alias for udp error codes.
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.
UdpSocket & operator=(UdpSocket &&other) noexcept=default
SocketError
Socket error code.
Socket udp_socket_
Store the underlying udp socket.
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.
core_type::Result< void, SocketError > Open() noexcept
Function to open and bind the socket to provided ip address & port.
boost_support::message::udp::UdpMessagePtr UdpMessagePtr
Type alias for Udp message pointer.
Udp::endpoint remote_endpoint_
Store the remote endpoints.
std::unique_ptr< UdpMessage > UdpMessagePtr
The unique pointer to UdpMessage.
std::unique_ptr< UdpMessage const > UdpMessageConstPtr
The unique pointer to const UdpMessage.
core_type::Result< T, E > Result
Class type to contains a value (of type ValueType), or an error (of type ErrorType)