Diag-Client-Lib
Public Types | Public Member Functions | Private Attributes | List of all members
boost_support::connection::udp::UdpConnection< Socket > Class Template Referencefinal

Client connection class used to handle transmission and reception of udp message from socket. More...

#include <udp_connection.h>

Public Types

using UdpMessage = typename Socket::UdpMessage
 Type alias for Udp message. More...
 
using UdpMessagePtr = typename Socket::UdpMessagePtr
 Type alias for Udp message pointer. More...
 
using UdpMessageConstPtr = typename Socket::UdpMessageConstPtr
 Type alias for Udp message const pointer. More...
 
using HandlerRead = std::function< void(UdpMessagePtr)>
 Tcp function template used for reception. More...
 

Public Member Functions

 UdpConnection (Socket socket) noexcept
 Constructs an instance of UdpConnection. More...
 
 UdpConnection (const UdpConnection &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
UdpConnectionoperator= (const UdpConnection &other) &noexcept=delete
 
 UdpConnection (UdpConnection &&other) noexcept=default
 Move assignment and move constructor. More...
 
UdpConnectionoperator= (UdpConnection &&other) &noexcept=default
 
 ~UdpConnection () noexcept=default
 Destruct an instance of UdpConnection. More...
 
void SetReadHandler (HandlerRead read_handler)
 Function to set the read handler that is invoked when message is received. More...
 
void Initialize () noexcept
 Initialize the client. More...
 
void DeInitialize () noexcept
 De-initialize the client. More...
 
core_type::Result< void > Transmit (UdpMessageConstPtr message) noexcept
 Function to trigger transmission. More...
 

Private Attributes

Socket socket_
 Store socket used for reading and writing tcp message. More...
 

Detailed Description

template<typename Socket>
class boost_support::connection::udp::UdpConnection< Socket >

Client connection class used to handle transmission and reception of udp message from socket.

Template Parameters
SocketThe type of socket to read and write from/to

Definition at line 26 of file udp_connection.h.

Member Typedef Documentation

◆ HandlerRead

template<typename Socket >
using boost_support::connection::udp::UdpConnection< Socket >::HandlerRead = std::function<void(UdpMessagePtr)>

Tcp function template used for reception.

Definition at line 46 of file udp_connection.h.

◆ UdpMessage

template<typename Socket >
using boost_support::connection::udp::UdpConnection< Socket >::UdpMessage = typename Socket::UdpMessage

Type alias for Udp message.

Definition at line 31 of file udp_connection.h.

◆ UdpMessageConstPtr

template<typename Socket >
using boost_support::connection::udp::UdpConnection< Socket >::UdpMessageConstPtr = typename Socket::UdpMessageConstPtr

Type alias for Udp message const pointer.

Definition at line 41 of file udp_connection.h.

◆ UdpMessagePtr

template<typename Socket >
using boost_support::connection::udp::UdpConnection< Socket >::UdpMessagePtr = typename Socket::UdpMessagePtr

Type alias for Udp message pointer.

Definition at line 36 of file udp_connection.h.

Constructor & Destructor Documentation

◆ UdpConnection() [1/3]

template<typename Socket >
boost_support::connection::udp::UdpConnection< Socket >::UdpConnection ( Socket  socket)
inlineexplicitnoexcept

Constructs an instance of UdpConnection.

Parameters
[in]socketThe socket used for read and writing messages

Definition at line 54 of file udp_connection.h.

54 : socket_{std::move(socket)} {}
Socket socket_
Store socket used for reading and writing tcp message.

◆ UdpConnection() [2/3]

template<typename Socket >
boost_support::connection::udp::UdpConnection< Socket >::UdpConnection ( const UdpConnection< Socket > &  other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ UdpConnection() [3/3]

template<typename Socket >
boost_support::connection::udp::UdpConnection< Socket >::UdpConnection ( UdpConnection< Socket > &&  other)
defaultnoexcept

Move assignment and move constructor.

◆ ~UdpConnection()

template<typename Socket >
boost_support::connection::udp::UdpConnection< Socket >::~UdpConnection ( )
defaultnoexcept

Destruct an instance of UdpConnection.

Member Function Documentation

◆ DeInitialize()

template<typename Socket >
void boost_support::connection::udp::UdpConnection< Socket >::DeInitialize ( )
inlinenoexcept

De-initialize the client.

Definition at line 92 of file udp_connection.h.

92 { socket_.Close(); }

References boost_support::connection::udp::UdpConnection< Socket >::socket_.

Referenced by boost_support::client::udp::UdpClient::UdpClientImpl::DeInitialize().

Here is the caller graph for this function:

◆ Initialize()

template<typename Socket >
void boost_support::connection::udp::UdpConnection< Socket >::Initialize ( )
inlinenoexcept

Initialize the client.

Definition at line 84 of file udp_connection.h.

84  {
85  // Open socket
86  socket_.Open();
87  }

References boost_support::connection::udp::UdpConnection< Socket >::socket_.

Referenced by boost_support::client::udp::UdpClient::UdpClientImpl::Initialize().

Here is the caller graph for this function:

◆ operator=() [1/2]

template<typename Socket >
UdpConnection& boost_support::connection::udp::UdpConnection< Socket >::operator= ( const UdpConnection< Socket > &  other) &
deletenoexcept

◆ operator=() [2/2]

template<typename Socket >
UdpConnection& boost_support::connection::udp::UdpConnection< Socket >::operator= ( UdpConnection< Socket > &&  other) &
defaultnoexcept

◆ SetReadHandler()

template<typename Socket >
void boost_support::connection::udp::UdpConnection< Socket >::SetReadHandler ( HandlerRead  read_handler)
inline

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 79 of file udp_connection.h.

79 { socket_.SetReadHandler(std::move(read_handler)); }

References boost_support::connection::udp::UdpConnection< Socket >::socket_.

Referenced by boost_support::client::udp::UdpClient::UdpClientImpl::SetReadHandler().

Here is the caller graph for this function:

◆ Transmit()

template<typename Socket >
core_type::Result<void> boost_support::connection::udp::UdpConnection< Socket >::Transmit ( UdpMessageConstPtr  message)
inlinenoexcept

Function to trigger transmission.

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

Definition at line 100 of file udp_connection.h.

100  {
101  return socket_.Transmit(std::move(message))
102  .AndThen([]() { return core_type::Result<void>::FromValue(); })
103  .MapError([](typename Socket::SocketError const &) {
105  });
106  }
static Result FromValue(T &t) noexcept
Build a new Result from the specified value (given as lvalue)
Definition: result.h:48
auto MakeErrorCode(BoostSupportErrorDomain::Errc code, BoostSupportErrorDomain::SupportDataType data) noexcept -> core_type::ErrorCode
Create a new ErrorCode within DoipErrorDomain.

References core_type::Result< T, E >::FromValue(), boost_support::error_domain::kSocketError, boost_support::error_domain::MakeErrorCode(), and boost_support::connection::udp::UdpConnection< Socket >::socket_.

Referenced by boost_support::client::udp::UdpClient::UdpClientImpl::Transmit().

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

Member Data Documentation

◆ socket_

template<typename Socket >
Socket boost_support::connection::udp::UdpConnection< Socket >::socket_
private

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