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

Immutable class to store received udp message. More...

#include <udp_message.h>

Public Types

using BufferType = std::vector< uint8_t >
 Type alias for underlying buffer. More...
 

Public Member Functions

 UdpMessage (std::string_view host_ip_address, std::uint16_t host_port_number, BufferType payload)
 Constructs an instance of UdpMessage. More...
 
 UdpMessage (UdpMessage &&other) noexcept=default
 
UdpMessageoperator= (UdpMessage &&other) noexcept=default
 
 UdpMessage (const UdpMessage &other)=delete
 
UdpMessageoperator= (const UdpMessage &other)=delete
 
 ~UdpMessage ()=default
 Destructs an instance of UdpMessage. More...
 
std::string_view GetHostIpAddress () const
 Get the host ip address. More...
 
std::uint16_t GetHostPortNumber () const
 Get the host port number. More...
 
core_type::Span< std::uint8_t const > GetPayload () const
 Get the readable view on received payload. More...
 

Private Attributes

BufferType payload_
 The reception buffer. More...
 
std::string host_ip_address_
 Store remote ip address. More...
 
std::uint16_t host_port_number_
 Store remote port number. More...
 

Detailed Description

Immutable class to store received udp message.

Definition at line 32 of file udp_message.h.

Member Typedef Documentation

◆ BufferType

Type alias for underlying buffer.

Definition at line 37 of file udp_message.h.

Constructor & Destructor Documentation

◆ UdpMessage() [1/3]

boost_support::message::udp::UdpMessage::UdpMessage ( std::string_view  host_ip_address,
std::uint16_t  host_port_number,
BufferType  payload 
)
inline

Constructs an instance of UdpMessage.

Parameters
[in]host_ip_addressThe host ip address
[in]host_port_numberThe host port number
[in]payloadThe received data payload

Definition at line 49 of file udp_message.h.

50  : payload_{std::move(payload)},
51  host_ip_address_{host_ip_address},
52  host_port_number_{host_port_number} {}
BufferType payload_
The reception buffer.
Definition: udp_message.h:89
std::string host_ip_address_
Store remote ip address.
Definition: udp_message.h:94
std::uint16_t host_port_number_
Store remote port number.
Definition: udp_message.h:99

◆ UdpMessage() [2/3]

boost_support::message::udp::UdpMessage::UdpMessage ( UdpMessage &&  other)
defaultnoexcept

◆ UdpMessage() [3/3]

boost_support::message::udp::UdpMessage::UdpMessage ( const UdpMessage other)
delete

◆ ~UdpMessage()

boost_support::message::udp::UdpMessage::~UdpMessage ( )
default

Destructs an instance of UdpMessage.

Member Function Documentation

◆ GetHostIpAddress()

std::string_view boost_support::message::udp::UdpMessage::GetHostIpAddress ( ) const
inline

Get the host ip address.

Returns
The IP address

Definition at line 69 of file udp_message.h.

69 { return host_ip_address_; }

References host_ip_address_.

◆ GetHostPortNumber()

std::uint16_t boost_support::message::udp::UdpMessage::GetHostPortNumber ( ) const
inline

Get the host port number.

Returns
The port number

Definition at line 75 of file udp_message.h.

75 { return host_port_number_; }

References host_port_number_.

◆ GetPayload()

core_type::Span<std::uint8_t const> boost_support::message::udp::UdpMessage::GetPayload ( ) const
inline

Get the readable view on received payload.

Returns
The view on payload

Definition at line 81 of file udp_message.h.

81  {
83  }
A view over a contiguous sequence of objects.
Definition: span.h:191

References payload_.

◆ operator=() [1/2]

UdpMessage& boost_support::message::udp::UdpMessage::operator= ( const UdpMessage other)
delete

◆ operator=() [2/2]

UdpMessage& boost_support::message::udp::UdpMessage::operator= ( UdpMessage &&  other)
defaultnoexcept

Member Data Documentation

◆ host_ip_address_

std::string boost_support::message::udp::UdpMessage::host_ip_address_
private

Store remote ip address.

Definition at line 94 of file udp_message.h.

Referenced by GetHostIpAddress().

◆ host_port_number_

std::uint16_t boost_support::message::udp::UdpMessage::host_port_number_
private

Store remote port number.

Definition at line 99 of file udp_message.h.

Referenced by GetHostPortNumber().

◆ payload_

BufferType boost_support::message::udp::UdpMessage::payload_
private

The reception buffer.

Definition at line 89 of file udp_message.h.

Referenced by GetPayload().


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