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

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

#include <tcp_message.h>

Public Types

enum class  SocketState : std::uint8_t {
  kIdle = 0x00 , kSocketOnline , kSocketOffline , kSocketRxMessageReceived ,
  kSocketTxMessageSend , kSocketTxMessageConf , kSocketError
}
 Definition of different socket state. More...
 
enum class  SocketError : std::uint8_t { kNone = 0x00 }
 Definition of different socket error that could occur. More...
 
using BufferType = std::vector< std::uint8_t >
 Type alias for underlying buffer. More...
 
using IpAddressType = std::string_view
 Type alias of IP address type. More...
 

Public Member Functions

 TcpMessage (IpAddressType host_ip_address, std::uint16_t host_port_number, BufferType payload)
 Constructs an instance of TcpMessage. More...
 
 TcpMessage (TcpMessage &&other) noexcept=default
 
TcpMessageoperator= (TcpMessage &&other) noexcept=default
 
 TcpMessage (const TcpMessage &other)=default
 
TcpMessageoperator= (const TcpMessage &other)=default
 
 ~TcpMessage ()=default
 Destructs an instance of TcpMessage. More...
 
IpAddressType 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...
 
SocketState GetSocketState () const
 Get the state of underlying socket. More...
 
SocketError GetSocketError () const
 Get the error of underlying socket. More...
 

Private Attributes

SocketState socket_state_
 Store the socket state. More...
 
SocketError socket_error_
 Store the socket error. More...
 
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 tcp message.

Definition at line 26 of file tcp_message.h.

Member Typedef Documentation

◆ BufferType

using boost_support::message::tcp::TcpMessage::BufferType = std::vector<std::uint8_t>

Type alias for underlying buffer.

Definition at line 49 of file tcp_message.h.

◆ IpAddressType

Type alias of IP address type.

Definition at line 54 of file tcp_message.h.

Member Enumeration Documentation

◆ SocketError

Definition of different socket error that could occur.

Enumerator
kNone 

Definition at line 44 of file tcp_message.h.

44 : std::uint8_t { kNone = 0x00 };

◆ SocketState

Definition of different socket state.

Enumerator
kIdle 
kSocketOnline 
kSocketOffline 
kSocketRxMessageReceived 
kSocketTxMessageSend 
kSocketTxMessageConf 
kSocketError 

Definition at line 31 of file tcp_message.h.

31  : std::uint8_t {
32  kIdle = 0x00,
33  kSocketOnline,
34  kSocketOffline,
35  kSocketRxMessageReceived,
36  kSocketTxMessageSend,
37  kSocketTxMessageConf,
39  };

Constructor & Destructor Documentation

◆ TcpMessage() [1/3]

boost_support::message::tcp::TcpMessage::TcpMessage ( IpAddressType  host_ip_address,
std::uint16_t  host_port_number,
BufferType  payload 
)
inline

Constructs an instance of TcpMessage.

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

Definition at line 66 of file tcp_message.h.

69  payload_{std::move(payload)},
70  host_ip_address_{host_ip_address},
71  host_port_number_{host_port_number} {}
BufferType payload_
The reception buffer.
Definition: tcp_message.h:130
SocketState socket_state_
Store the socket state.
Definition: tcp_message.h:120
std::uint16_t host_port_number_
Store remote port number.
Definition: tcp_message.h:140
SocketError socket_error_
Store the socket error.
Definition: tcp_message.h:125
std::string host_ip_address_
Store remote ip address.
Definition: tcp_message.h:135

◆ TcpMessage() [2/3]

boost_support::message::tcp::TcpMessage::TcpMessage ( TcpMessage &&  other)
defaultnoexcept

◆ TcpMessage() [3/3]

boost_support::message::tcp::TcpMessage::TcpMessage ( const TcpMessage other)
default

◆ ~TcpMessage()

boost_support::message::tcp::TcpMessage::~TcpMessage ( )
default

Destructs an instance of TcpMessage.

Member Function Documentation

◆ GetHostIpAddress()

IpAddressType boost_support::message::tcp::TcpMessage::GetHostIpAddress ( ) const
inline

Get the host ip address.

Returns
The IP address

Definition at line 88 of file tcp_message.h.

88 { return host_ip_address_; }

References host_ip_address_.

◆ GetHostPortNumber()

std::uint16_t boost_support::message::tcp::TcpMessage::GetHostPortNumber ( ) const
inline

Get the host port number.

Returns
The port number

Definition at line 94 of file tcp_message.h.

94 { return host_port_number_; }

References host_port_number_.

◆ GetPayload()

core_type::Span<std::uint8_t const> boost_support::message::tcp::TcpMessage::GetPayload ( ) const
inline

Get the readable view on received payload.

Returns
The view on payload

Definition at line 100 of file tcp_message.h.

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

References payload_.

◆ GetSocketError()

SocketError boost_support::message::tcp::TcpMessage::GetSocketError ( ) const
inline

Get the error of underlying socket.

Returns
The socket error

Definition at line 114 of file tcp_message.h.

114 { return socket_error_; }

References socket_error_.

◆ GetSocketState()

SocketState boost_support::message::tcp::TcpMessage::GetSocketState ( ) const
inline

Get the state of underlying socket.

Returns
The socket state

Definition at line 108 of file tcp_message.h.

108 { return socket_state_; }

References socket_state_.

◆ operator=() [1/2]

TcpMessage& boost_support::message::tcp::TcpMessage::operator= ( const TcpMessage other)
default

◆ operator=() [2/2]

TcpMessage& boost_support::message::tcp::TcpMessage::operator= ( TcpMessage &&  other)
defaultnoexcept

Member Data Documentation

◆ host_ip_address_

std::string boost_support::message::tcp::TcpMessage::host_ip_address_
private

Store remote ip address.

Definition at line 135 of file tcp_message.h.

Referenced by GetHostIpAddress().

◆ host_port_number_

std::uint16_t boost_support::message::tcp::TcpMessage::host_port_number_
private

Store remote port number.

Definition at line 140 of file tcp_message.h.

Referenced by GetHostPortNumber().

◆ payload_

BufferType boost_support::message::tcp::TcpMessage::payload_
private

The reception buffer.

Definition at line 130 of file tcp_message.h.

Referenced by GetPayload().

◆ socket_error_

SocketError boost_support::message::tcp::TcpMessage::socket_error_
private

Store the socket error.

Definition at line 125 of file tcp_message.h.

Referenced by GetSocketError().

◆ socket_state_

SocketState boost_support::message::tcp::TcpMessage::socket_state_
private

Store the socket state.

Definition at line 120 of file tcp_message.h.

Referenced by GetSocketState().


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