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

Class to provide implementation of udp client. More...

Collaboration diagram for boost_support::client::udp::UdpClient::UdpClientImpl:
Collaboration graph
[legend]

Public Member Functions

 UdpClientImpl (std::string_view local_ip_address, std::uint16_t local_port_num) noexcept
 Constructs an instance of UdpClientImpl. More...
 
 UdpClientImpl (const UdpClientImpl &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
UdpClientImploperator= (const UdpClientImpl &other) noexcept=delete
 
 UdpClientImpl (UdpClientImpl &&other) noexcept=delete
 Deleted move assignment and move constructor. More...
 
UdpClientImploperator= (UdpClientImpl &&other) noexcept=delete
 
 ~UdpClientImpl () noexcept=default
 Destruct an instance of UdpClientImpl. More...
 
void Initialize () noexcept
 Initialize the client. More...
 
void DeInitialize () noexcept
 De-initialize the client. More...
 
void SetReadHandler (HandlerRead read_handler) noexcept
 Function to set the read handler that is invoked when message is received. More...
 
core_type::Result< void > Transmit (MessageConstPtr udp_message)
 Function to transmit the provided udp message. More...
 

Private Types

using UdpConnection = connection::udp::UdpConnection< socket::udp::UdpSocket >
 Type alias for Udp connection. More...
 
using IoContext = boost_support::socket::IoContext
 Type alias for boost context. More...
 

Private Attributes

IoContext io_context_
 Stores the io context. More...
 
UdpConnection udp_connection_
 Store the udp connection. More...
 

Detailed Description

Class to provide implementation of udp client.

Definition at line 22 of file udp_client.cpp.

Member Typedef Documentation

◆ IoContext

Type alias for boost context.

Definition at line 98 of file udp_client.cpp.

◆ UdpConnection

Type alias for Udp connection.

Definition at line 93 of file udp_client.cpp.

Constructor & Destructor Documentation

◆ UdpClientImpl() [1/3]

boost_support::client::udp::UdpClient::UdpClientImpl::UdpClientImpl ( std::string_view  local_ip_address,
std::uint16_t  local_port_num 
)
inlinenoexcept

Constructs an instance of UdpClientImpl.

Parameters
[in]local_ip_addressThe local ip address of client
[in]local_port_numThe local port number of client

Definition at line 31 of file udp_client.cpp.

32  : io_context_{"UdpClient"},
34  socket::udp::UdpSocket{local_ip_address, local_port_num, io_context_.GetContext()}} {}
UdpConnection udp_connection_
Store the udp connection.
Definition: udp_client.cpp:108
Context & GetContext() noexcept
Function to get the io context reference.
Definition: io_context.cpp:68

◆ UdpClientImpl() [2/3]

boost_support::client::udp::UdpClient::UdpClientImpl::UdpClientImpl ( const UdpClientImpl other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ UdpClientImpl() [3/3]

boost_support::client::udp::UdpClient::UdpClientImpl::UdpClientImpl ( UdpClientImpl &&  other)
deletenoexcept

Deleted move assignment and move constructor.

◆ ~UdpClientImpl()

boost_support::client::udp::UdpClient::UdpClientImpl::~UdpClientImpl ( )
defaultnoexcept

Destruct an instance of UdpClientImpl.

Member Function Documentation

◆ DeInitialize()

void boost_support::client::udp::UdpClient::UdpClientImpl::DeInitialize ( )
inlinenoexcept

De-initialize the client.

Definition at line 64 of file udp_client.cpp.

64  {
67  }
void DeInitialize() noexcept
De-initialize the client.
void DeInitialize() noexcept
De-initialize the context.
Definition: io_context.cpp:61

References boost_support::connection::udp::UdpConnection< Socket >::DeInitialize(), boost_support::socket::IoContext::DeInitialize(), io_context_, and udp_connection_.

Here is the call graph for this function:

◆ Initialize()

void boost_support::client::udp::UdpClient::UdpClientImpl::Initialize ( )
inlinenoexcept

Initialize the client.

Definition at line 56 of file udp_client.cpp.

56  {
59  }
void Initialize() noexcept
Initialize the client.
void Initialize() noexcept
Initialize the context.
Definition: io_context.cpp:55

References boost_support::connection::udp::UdpConnection< Socket >::Initialize(), boost_support::socket::IoContext::Initialize(), io_context_, and udp_connection_.

Here is the call graph for this function:

◆ operator=() [1/2]

UdpClientImpl& boost_support::client::udp::UdpClient::UdpClientImpl::operator= ( const UdpClientImpl other)
deletenoexcept

◆ operator=() [2/2]

UdpClientImpl& boost_support::client::udp::UdpClient::UdpClientImpl::operator= ( UdpClientImpl &&  other)
deletenoexcept

◆ SetReadHandler()

void boost_support::client::udp::UdpClient::UdpClientImpl::SetReadHandler ( HandlerRead  read_handler)
inlinenoexcept

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 75 of file udp_client.cpp.

75  {
76  udp_connection_.SetReadHandler(std::move(read_handler));
77  }
void SetReadHandler(HandlerRead read_handler)
Function to set the read handler that is invoked when message is received.

References boost_support::connection::udp::UdpConnection< Socket >::SetReadHandler(), and udp_connection_.

Here is the call graph for this function:

◆ Transmit()

core_type::Result<void> boost_support::client::udp::UdpClient::UdpClientImpl::Transmit ( MessageConstPtr  udp_message)
inline

Function to transmit the provided udp message.

Parameters
[in]udp_messageThe udp message
Returns
Empty void on success, otherwise error is returned

Definition at line 85 of file udp_client.cpp.

85  {
86  return udp_connection_.Transmit(std::move(udp_message));
87  }
core_type::Result< void > Transmit(UdpMessageConstPtr message) noexcept
Function to trigger transmission.

References boost_support::connection::udp::UdpConnection< Socket >::Transmit(), and udp_connection_.

Here is the call graph for this function:

Member Data Documentation

◆ io_context_

IoContext boost_support::client::udp::UdpClient::UdpClientImpl::io_context_
private

Stores the io context.

Definition at line 103 of file udp_client.cpp.

Referenced by DeInitialize(), and Initialize().

◆ udp_connection_

UdpConnection boost_support::client::udp::UdpClient::UdpClientImpl::udp_connection_
private

Store the udp connection.

Definition at line 108 of file udp_client.cpp.

Referenced by DeInitialize(), Initialize(), SetReadHandler(), and Transmit().


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