Diag-Client-Lib
Public Types | Public Member Functions | Private Types | Private Member Functions | Private Attributes | List of all members
boost_support::socket::udp::UdpSocket Class Referencefinal

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...
 
UdpSocketoperator= (const UdpSocket &other) noexcept=delete
 
 UdpSocket (UdpSocket &&other) noexcept=default
 Move assignment and Move constructor. More...
 
UdpSocketoperator= (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, SocketErrorOpen () noexcept
 Function to open and bind the socket to provided ip address & port. More...
 
core_type::Result< void, SocketErrorTransmit (UdpMessageConstPtr udp_message) noexcept
 Function to trigger transmission. More...
 
core_type::Result< void, SocketErrorClose () 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< UdpMessagePtrRead (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...
 

Detailed Description

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.

Member Typedef Documentation

◆ Socket

Type alias for Udp socket.

Definition at line 54 of file udp_socket.h.

◆ Udp

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.

◆ UdpErrorCodeType

using boost_support::socket::udp::UdpSocket::UdpErrorCodeType = boost::system::error_code
private

Type alias for udp error codes.

Definition at line 123 of file udp_socket.h.

◆ UdpHandlerRead

Udp function template used for reception.

Definition at line 59 of file udp_socket.h.

◆ UdpMessage

Type alias for Tcp message.

Definition at line 34 of file udp_socket.h.

◆ UdpMessageConstPtr

Type alias for Udp message const pointer.

Definition at line 44 of file udp_socket.h.

◆ UdpMessagePtr

Type alias for Udp message pointer.

Definition at line 39 of file udp_socket.h.

Member Enumeration Documentation

◆ SocketError

Socket error code.

Enumerator
kOpenFailed 
kBindingFailed 
kGenericError 

Definition at line 29 of file udp_socket.h.

29 : std::uint8_t { kOpenFailed, kBindingFailed, kGenericError };

Constructor & Destructor Documentation

◆ UdpSocket() [1/3]

boost_support::socket::udp::UdpSocket::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.

Parameters
[in]local_ip_addressThe local ip address
[in]local_port_numThe local port number
[in]io_contextThe I/O context required to create socket

Definition at line 20 of file udp_socket.cpp.

22  : udp_socket_{io_context},
23  local_endpoint_{boost::asio::ip::make_address(local_ip_address), local_port_num} {
25 }
std::vector< std::uint8_t > rx_buffer_
Reception buffer needed for async reception of udp data.
Definition: udp_socket.h:143
Udp::endpoint local_endpoint_
Store the local endpoints.
Definition: udp_socket.h:133
Socket udp_socket_
Store the underlying udp socket.
Definition: udp_socket.h:128
constexpr std::uint8_t kMaxUdpResSize
Maximum response size.
Definition: udp_message.h:27

◆ UdpSocket() [2/3]

boost_support::socket::udp::UdpSocket::UdpSocket ( const UdpSocket other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ UdpSocket() [3/3]

boost_support::socket::udp::UdpSocket::UdpSocket ( UdpSocket &&  other)
defaultnoexcept

Move assignment and Move constructor.

◆ ~UdpSocket()

boost_support::socket::udp::UdpSocket::~UdpSocket ( )
defaultnoexcept

Destruct an instance of TcpSocket.

Member Function Documentation

◆ Close()

core_type::Result< void, UdpSocket::SocketError > boost_support::socket::udp::UdpSocket::Close ( )
noexcept

Function to destroy the socket.

Returns
Empty result on success otherwise error code

Definition at line 101 of file udp_socket.cpp.

101  {
103  // destroy the socket
104  udp_socket_.close();
105  result.EmplaceValue();
106  return result;
107 }
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29

References kGenericError, and udp_socket_.

◆ Open()

core_type::Result< void, UdpSocket::SocketError > boost_support::socket::udp::UdpSocket::Open ( )
noexcept

Function to open and bind the socket to provided ip address & port.

Returns
Empty result on success otherwise error code

Definition at line 33 of file udp_socket.cpp.

33  {
35  UdpErrorCodeType ec{};
36  udp_socket_.open(local_endpoint_.protocol(), ec);
37  if (ec.value() == boost::system::errc::success) {
38  // set broadcast option
39  udp_socket_.set_option(boost::asio::socket_base::broadcast{true});
40  // reuse address
41  udp_socket_.set_option(boost::asio::socket_base::reuse_address{true});
42  udp_socket_.bind(local_endpoint_, ec);
43  }
44  if (ec.value() == boost::system::errc::success) {
45  local_endpoint_ = udp_socket_.local_endpoint();
47  FILE_NAME, __LINE__, __func__, [this](std::stringstream &msg) {
48  msg << "Udp Socket opened and bound to "
49  << "<" << local_endpoint_.address() << "," << local_endpoint_.port() << ">";
50  });
51  // start async receive
53  result.EmplaceValue();
54  } else {
55  // Socket binding failed
56  result.EmplaceError(SocketError::kBindingFailed);
58  FILE_NAME, __LINE__, __func__, [ec](std::stringstream &msg) {
59  msg << "Udp Socket Bind failed with message: " << ec.message();
60  });
61  }
62  return result;
63 }
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
Definition: logger.h:20
void StartReceivingMessage()
Function to start reception of Udp dataframe.
Definition: udp_socket.cpp:146
boost::system::error_code UdpErrorCodeType
Type alias for udp error codes.
Definition: udp_socket.h:123
#define FILE_NAME
Definition: file_path.h:14

References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), kBindingFailed, kOpenFailed, local_endpoint_, StartReceivingMessage(), and udp_socket_.

Here is the call graph for this function:

◆ operator=() [1/2]

UdpSocket& boost_support::socket::udp::UdpSocket::operator= ( const UdpSocket other)
deletenoexcept

◆ operator=() [2/2]

UdpSocket& boost_support::socket::udp::UdpSocket::operator= ( UdpSocket &&  other)
defaultnoexcept

◆ Read()

core_type::Result< UdpSocket::UdpMessagePtr > boost_support::socket::udp::UdpSocket::Read ( std::size_t  bytes_received)
private

Function to handle the reception of tcp message.

Parameters
[in]bytes_receivedThe number of bytes to be read
Returns
Udp Message created from received data on success, otherwise error

Definition at line 109 of file udp_socket.cpp.

109  {
112  // Ignore self reception
113  if (local_endpoint_.address().to_string() != remote_endpoint_.address().to_string()) {
114  UdpMessage::BufferType received_data{};
115  received_data.reserve(total_bytes_received);
116 
117  // Received message must be less than max udp message
118  assert(total_bytes_received <= message::udp::kMaxUdpResSize);
119  // copy the received bytes into local buffer
120  received_data.insert(received_data.begin(), rx_buffer_.begin(),
121  rx_buffer_.begin() + static_cast<std::uint8_t>(total_bytes_received));
122 
123  UdpMessagePtr udp_rx_message{std::make_unique<UdpMessage>(
124  remote_endpoint_.address().to_string(), remote_endpoint_.port(), std::move(received_data))};
125 
127  FILE_NAME, __LINE__, __func__, [this](std::stringstream &msg) {
128  msg << "Udp Message received from: "
129  << "<" << remote_endpoint_.address() << "," << remote_endpoint_.port() << ">";
130  });
131  result.EmplaceValue(std::move(udp_rx_message));
132  } else {
133  common::logger::LibBoostLogger::GetLibBoostLogger().GetLogger().LogVerbose(
134  FILE_NAME, __LINE__, __func__, [this](std::stringstream &msg) {
135  msg << "Udp Message received from "
136  << "<" << remote_endpoint_.address() << "," << remote_endpoint_.port() << ">"
137  << " ignored as received by self ip"
138  << " <" << local_endpoint_.address() << "," << local_endpoint_.port() << ">";
139  });
140  }
141  // start async receive
143  return result;
144 }
std::vector< uint8_t > BufferType
Type alias for underlying buffer.
Definition: udp_message.h:37
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
auto MakeErrorCode(BoostSupportErrorDomain::Errc code, BoostSupportErrorDomain::SupportDataType data) noexcept -> core_type::ErrorCode
Create a new ErrorCode within DoipErrorDomain.

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().

Here is the call graph for this function:

◆ SetReadHandler()

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

Parameters
[in]read_handlerThe handler to be set

Definition at line 29 of file udp_socket.cpp.

29  {
30  udp_handler_read_ = std::move(read_handler);
31 }
UdpHandlerRead udp_handler_read_
Store the handler.
Definition: udp_socket.h:148

◆ StartReceivingMessage()

void boost_support::socket::udp::UdpSocket::StartReceivingMessage ( )
private

Function to start reception of Udp dataframe.

Definition at line 146 of file udp_socket.cpp.

146  {
147  // start async receive
148  udp_socket_.async_receive_from(
149  boost::asio::buffer(rx_buffer_), remote_endpoint_,
150  [this](const UdpErrorCodeType &error, std::size_t bytes_received) {
151  if (error.value() == boost::system::errc::success) {
152  static_cast<void>(Read(bytes_received).AndThen([this](UdpMessagePtr udp_message) {
153  // send data to upper layer
154  if (udp_handler_read_) { udp_handler_read_(std::move(udp_message)); }
155  return core_type::Result<void>::FromValue();
156  }));
157  } else {
158  if (error.value() != boost::asio::error::operation_aborted) {
160  FILE_NAME, __LINE__, __func__, [error](std::stringstream &msg) {
161  msg << "Remote Disconnected with undefined error: " << error.message();
162  });
163  }
164  }
165  });
166 }

References FILE_NAME, boost_support::common::logger::LibBoostLogger::GetLibBoostLogger(), remote_endpoint_, rx_buffer_, and udp_socket_.

Referenced by Open(), and Read().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Transmit()

core_type::Result< void, UdpSocket::SocketError > boost_support::socket::udp::UdpSocket::Transmit ( UdpSocket::UdpMessageConstPtr  udp_message)
noexcept

Function to trigger transmission.

Parameters
[in]udp_messageThe udp message to be transmitted
Returns
Empty result on success otherwise error code

Definition at line 65 of file udp_socket.cpp.

66  {
68  UdpErrorCodeType ec{};
69 
70  // Transmit to remote endpoints
71  std::size_t const send_size{udp_socket_.send_to(
72  boost::asio::buffer(udp_message->GetPayload().data(), udp_message->GetPayload().size()),
73  Udp::endpoint{boost::asio::ip::make_address(udp_message->GetHostIpAddress()),
74  udp_message->GetHostPortNumber()},
75  {}, ec)};
76  // Check for error
77  if (ec.value() == boost::system::errc::success && send_size == udp_message->GetPayload().size()) {
78  // successful
80  FILE_NAME, __LINE__, __func__, [this, &udp_message](std::stringstream &msg) {
81  msg << "Udp message sent : "
82  << "<" << local_endpoint_.address() << "," << local_endpoint_.port() << ">"
83  << " -> "
84  << "<" << udp_message->GetHostIpAddress() << "," << udp_message->GetHostPortNumber()
85  << ">";
86  });
87  result.EmplaceValue();
88  // start async receive
90  } else {
92  FILE_NAME, __LINE__, __func__, [&ec, &udp_message](std::stringstream &msg) {
93  msg << "Udp message sending to "
94  << "<" << udp_message->GetHostIpAddress() << "> "
95  << "failed with error: " << ec.message();
96  });
97  }
98  return result;
99 }

References FILE_NAME, and boost_support::common::logger::LibBoostLogger::GetLibBoostLogger().

Here is the call graph for this function:

Member Data Documentation

◆ local_endpoint_

Udp::endpoint boost_support::socket::udp::UdpSocket::local_endpoint_
private

Store the local endpoints.

Definition at line 133 of file udp_socket.h.

Referenced by Open(), and Read().

◆ remote_endpoint_

Udp::endpoint boost_support::socket::udp::UdpSocket::remote_endpoint_
private

Store the remote endpoints.

Definition at line 138 of file udp_socket.h.

Referenced by Read(), and StartReceivingMessage().

◆ rx_buffer_

std::vector<std::uint8_t> boost_support::socket::udp::UdpSocket::rx_buffer_
private

Reception buffer needed for async reception of udp data.

Definition at line 143 of file udp_socket.h.

Referenced by Read(), and StartReceivingMessage().

◆ udp_handler_read_

UdpHandlerRead boost_support::socket::udp::UdpSocket::udp_handler_read_
private

Store the handler.

Definition at line 148 of file udp_socket.h.

◆ udp_socket_

Socket boost_support::socket::udp::UdpSocket::udp_socket_
private

Store the underlying udp socket.

Definition at line 128 of file udp_socket.h.

Referenced by Close(), Open(), and StartReceivingMessage().


The documentation for this class was generated from the following files: