Diag-Client-Lib
|
Class used to create a udp socket for handling transmission and reception of udp message from driver. More...
#include <udp_socket.h>
Public Types | |
enum class | SocketError : std::uint8_t { kOpenFailed , kBindingFailed , kGenericError } |
Socket error code. More... | |
using | UdpMessage = boost_support::message::udp::UdpMessage |
Type alias for Tcp message. More... | |
using | UdpMessagePtr = boost_support::message::udp::UdpMessagePtr |
Type alias for Udp message pointer. More... | |
using | UdpMessageConstPtr = boost_support::message::udp::UdpMessageConstPtr |
Type alias for Udp message const pointer. More... | |
using | Udp = boost::asio::ip::udp |
Type alias for Udp protocol. More... | |
using | Socket = Udp::socket |
Type alias for Udp socket. More... | |
using | UdpHandlerRead = std::function< void(UdpMessagePtr)> |
Udp function template used for reception. More... | |
Public Member Functions | |
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. More... | |
UdpSocket (const UdpSocket &other) noexcept=delete | |
Deleted copy assignment and copy constructor. More... | |
UdpSocket & | operator= (const UdpSocket &other) noexcept=delete |
UdpSocket (UdpSocket &&other) noexcept=default | |
Move assignment and Move constructor. More... | |
UdpSocket & | operator= (UdpSocket &&other) noexcept=default |
~UdpSocket () noexcept | |
Destruct an instance of TcpSocket. More... | |
void | SetReadHandler (UdpHandlerRead read_handler) |
Function to set the read handler that is invoked when message is received. More... | |
core_type::Result< void, SocketError > | Open () noexcept |
Function to open and bind the socket to provided ip address & port. More... | |
core_type::Result< void, SocketError > | Transmit (UdpMessageConstPtr udp_message) noexcept |
Function to trigger transmission. More... | |
core_type::Result< void, SocketError > | Close () noexcept |
Function to destroy the socket. More... | |
Private Types | |
using | UdpErrorCodeType = boost::system::error_code |
Type alias for udp error codes. More... | |
Private Member Functions | |
core_type::Result< UdpMessagePtr > | Read (std::size_t bytes_received) |
Function to handle the reception of tcp message. More... | |
void | StartReceivingMessage () |
Function to start reception of Udp dataframe. More... | |
Private Attributes | |
Socket | udp_socket_ |
Store the underlying udp socket. More... | |
Udp::endpoint | local_endpoint_ |
Store the local endpoints. More... | |
Udp::endpoint | remote_endpoint_ |
Store the remote endpoints. More... | |
std::vector< std::uint8_t > | rx_buffer_ |
Reception buffer needed for async reception of udp data. More... | |
UdpHandlerRead | udp_handler_read_ |
Store the handler. More... | |
Class used to create a udp socket for handling transmission and reception of udp message from driver.
Definition at line 24 of file udp_socket.h.
using boost_support::socket::udp::UdpSocket::Socket = Udp::socket |
Type alias for Udp socket.
Definition at line 54 of file udp_socket.h.
using boost_support::socket::udp::UdpSocket::Udp = boost::asio::ip::udp |
Type alias for Udp protocol.
Definition at line 49 of file udp_socket.h.
|
private |
Type alias for udp error codes.
Definition at line 123 of file udp_socket.h.
using boost_support::socket::udp::UdpSocket::UdpHandlerRead = std::function<void(UdpMessagePtr)> |
Udp function template used for reception.
Definition at line 59 of file udp_socket.h.
Type alias for Tcp message.
Definition at line 34 of file udp_socket.h.
using boost_support::socket::udp::UdpSocket::UdpMessageConstPtr = boost_support::message::udp::UdpMessageConstPtr |
Type alias for Udp message const pointer.
Definition at line 44 of file udp_socket.h.
using boost_support::socket::udp::UdpSocket::UdpMessagePtr = boost_support::message::udp::UdpMessagePtr |
Type alias for Udp message pointer.
Definition at line 39 of file udp_socket.h.
|
strong |
Socket error code.
Enumerator | |
---|---|
kOpenFailed | |
kBindingFailed | |
kGenericError |
Definition at line 29 of file udp_socket.h.
|
noexcept |
Constructs an instance of TcpSocket.
[in] | local_ip_address | The local ip address |
[in] | local_port_num | The local port number |
[in] | io_context | The I/O context required to create socket |
Definition at line 20 of file udp_socket.cpp.
|
deletenoexcept |
Deleted copy assignment and copy constructor.
|
defaultnoexcept |
Move assignment and Move constructor.
|
defaultnoexcept |
Destruct an instance of TcpSocket.
|
noexcept |
Function to destroy the socket.
Definition at line 101 of file udp_socket.cpp.
References kGenericError, and udp_socket_.
|
noexcept |
Function to open and bind the socket to provided ip address & port.
Definition at line 33 of file udp_socket.cpp.
References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), kBindingFailed, kOpenFailed, local_endpoint_, StartReceivingMessage(), and udp_socket_.
|
deletenoexcept |
|
private |
Function to handle the reception of tcp message.
[in] | bytes_received | The number of bytes to be read |
Definition at line 109 of file udp_socket.cpp.
References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), boost_support::error_domain::kGenericError, boost_support::message::udp::kMaxUdpResSize, local_endpoint_, boost_support::error_domain::MakeErrorCode(), remote_endpoint_, rx_buffer_, and StartReceivingMessage().
void boost_support::socket::udp::UdpSocket::SetReadHandler | ( | UdpSocket::UdpHandlerRead | read_handler | ) |
Function to set the read handler that is invoked when message is received.
The ownership of provided read handler is moved
[in] | read_handler | The handler to be set |
Definition at line 29 of file udp_socket.cpp.
|
private |
Function to start reception of Udp dataframe.
Definition at line 146 of file udp_socket.cpp.
References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), remote_endpoint_, rx_buffer_, and udp_socket_.
Referenced by Open(), and Read().
|
noexcept |
Function to trigger transmission.
[in] | udp_message | The udp message to be transmitted |
Definition at line 65 of file udp_socket.cpp.
References FILE_NAME, and boost_support::common::logger::LibBoostLogger::GetLibBoostLogger().
|
private |
Store the local endpoints.
Definition at line 133 of file udp_socket.h.
|
private |
Store the remote endpoints.
Definition at line 138 of file udp_socket.h.
Referenced by Read(), and StartReceivingMessage().
|
private |
Reception buffer needed for async reception of udp data.
Definition at line 143 of file udp_socket.h.
Referenced by Read(), and StartReceivingMessage().
|
private |
Store the handler.
Definition at line 148 of file udp_socket.h.
|
private |
Store the underlying udp socket.
Definition at line 128 of file udp_socket.h.
Referenced by Close(), Open(), and StartReceivingMessage().