Diag-Client-Lib
Public Types | Public Member Functions | Private Attributes | List of all members
doip_client::sockets::SocketHandler< ClientType > Class Template Referencefinal

Handler class to manage different socket of various client (Udp / Tcp) More...

#include <socket_handler.h>

Public Types

using Client = ClientType
 Type alias for client. More...
 
using Message = typename Client::Message
 Type alias for message. More...
 
using MessagePtr = typename Client::MessagePtr
 Type alias for message pointer. More...
 
using MessageConstPtr = typename Client::MessageConstPtr
 Type alias for message const pointer. More...
 
using HandlerRead = std::function< void(MessagePtr)>
 Tcp function template used for reception. More...
 

Public Member Functions

 SocketHandler (Client client) noexcept
 Constructs an instance of TcpSocketHandler. More...
 
 SocketHandler (const SocketHandler &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
SocketHandleroperator= (const SocketHandler &other) noexcept=delete
 
 SocketHandler (SocketHandler &&other) noexcept=default
 Move assignment and Move constructor. More...
 
SocketHandleroperator= (SocketHandler &&other) noexcept=default
 
 ~SocketHandler ()=default
 Destruct an instance of TcpSocketHandler. More...
 
void Initialize () noexcept
 Function to start the socket handler. More...
 
void DeInitialize () noexcept
 Function to stop the socket handler. More...
 
void SetReadHandler (HandlerRead read_handler)
 Function to set the read handler that is invoked when message is received. More...
 
core_type::Result< void > ConnectToHost (std::string_view host_ip_address, std::uint16_t host_port_num)
 Function to connect to remote ip address and port number. More...
 
core_type::Result< void > DisconnectFromHost ()
 Function to disconnect from remote host if already connected. More...
 
auto IsConnectedToHost () const noexcept -> bool
 Function to get the connection status. More...
 
core_type::Result< void > Transmit (MessageConstPtr message)
 Function to transmit the provided message. More...
 

Private Attributes

Client client_
 Store the client object. More...
 

Detailed Description

template<typename ClientType>
class doip_client::sockets::SocketHandler< ClientType >

Handler class to manage different socket of various client (Udp / Tcp)

Definition at line 24 of file socket_handler.h.

Member Typedef Documentation

◆ Client

template<typename ClientType >
using doip_client::sockets::SocketHandler< ClientType >::Client = ClientType

Type alias for client.

Definition at line 29 of file socket_handler.h.

◆ HandlerRead

template<typename ClientType >
using doip_client::sockets::SocketHandler< ClientType >::HandlerRead = std::function<void(MessagePtr)>

Tcp function template used for reception.

Definition at line 49 of file socket_handler.h.

◆ Message

template<typename ClientType >
using doip_client::sockets::SocketHandler< ClientType >::Message = typename Client::Message

Type alias for message.

Definition at line 34 of file socket_handler.h.

◆ MessageConstPtr

template<typename ClientType >
using doip_client::sockets::SocketHandler< ClientType >::MessageConstPtr = typename Client::MessageConstPtr

Type alias for message const pointer.

Definition at line 44 of file socket_handler.h.

◆ MessagePtr

template<typename ClientType >
using doip_client::sockets::SocketHandler< ClientType >::MessagePtr = typename Client::MessagePtr

Type alias for message pointer.

Definition at line 39 of file socket_handler.h.

Constructor & Destructor Documentation

◆ SocketHandler() [1/3]

template<typename ClientType >
doip_client::sockets::SocketHandler< ClientType >::SocketHandler ( Client  client)
inlineexplicitnoexcept

Constructs an instance of TcpSocketHandler.

Parameters
[in]socketThe socket used

Definition at line 56 of file socket_handler.h.

56 : client_{std::move(client)} {}
Client client_
Store the client object.

◆ SocketHandler() [2/3]

template<typename ClientType >
doip_client::sockets::SocketHandler< ClientType >::SocketHandler ( const SocketHandler< ClientType > &  other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ SocketHandler() [3/3]

template<typename ClientType >
doip_client::sockets::SocketHandler< ClientType >::SocketHandler ( SocketHandler< ClientType > &&  other)
defaultnoexcept

Move assignment and Move constructor.

◆ ~SocketHandler()

template<typename ClientType >
doip_client::sockets::SocketHandler< ClientType >::~SocketHandler ( )
default

Destruct an instance of TcpSocketHandler.

Member Function Documentation

◆ ConnectToHost()

template<typename ClientType >
core_type::Result<void> doip_client::sockets::SocketHandler< ClientType >::ConnectToHost ( std::string_view  host_ip_address,
std::uint16_t  host_port_num 
)
inline

Function to connect to remote ip address and port number.

Parameters
[in]host_ip_addressThe host ip address
[in]host_port_numThe host port number
Returns
Empty void on success, otherwise error is returned

Definition at line 101 of file socket_handler.h.

102  {
103  return client_.ConnectToHost(host_ip_address, host_port_num);
104  }

References doip_client::sockets::SocketHandler< ClientType >::client_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannel::ConnectToHost().

Here is the caller graph for this function:

◆ DeInitialize()

template<typename ClientType >
void doip_client::sockets::SocketHandler< ClientType >::DeInitialize ( )
inlinenoexcept

Function to stop the socket handler.

Definition at line 83 of file socket_handler.h.

83 { client_.DeInitialize(); }

References doip_client::sockets::SocketHandler< ClientType >::client_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannel::Stop(), and doip_client::channel::udp_channel::DoipUdpChannel::Stop().

Here is the caller graph for this function:

◆ DisconnectFromHost()

template<typename ClientType >
core_type::Result<void> doip_client::sockets::SocketHandler< ClientType >::DisconnectFromHost ( )
inline

Function to disconnect from remote host if already connected.

Returns
Empty void on success, otherwise error is returned

Definition at line 110 of file socket_handler.h.

110 { return client_.DisconnectFromHost(); }

References doip_client::sockets::SocketHandler< ClientType >::client_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannel::DisconnectFromHost().

Here is the caller graph for this function:

◆ Initialize()

template<typename ClientType >
void doip_client::sockets::SocketHandler< ClientType >::Initialize ( )
inlinenoexcept

Function to start the socket handler.

Definition at line 78 of file socket_handler.h.

78 { client_.Initialize(); }

References doip_client::sockets::SocketHandler< ClientType >::client_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannel::Start(), and doip_client::channel::udp_channel::DoipUdpChannel::Start().

Here is the caller graph for this function:

◆ IsConnectedToHost()

template<typename ClientType >
auto doip_client::sockets::SocketHandler< ClientType >::IsConnectedToHost ( ) const -> bool
inlinenoexcept

Function to get the connection status.

Returns
True if connected, False otherwise

Definition at line 116 of file socket_handler.h.

116 { return client_.IsConnectedToHost(); }

References doip_client::sockets::SocketHandler< ClientType >::client_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannel::IsConnectedToHost().

Here is the caller graph for this function:

◆ operator=() [1/2]

template<typename ClientType >
SocketHandler& doip_client::sockets::SocketHandler< ClientType >::operator= ( const SocketHandler< ClientType > &  other)
deletenoexcept

◆ operator=() [2/2]

template<typename ClientType >
SocketHandler& doip_client::sockets::SocketHandler< ClientType >::operator= ( SocketHandler< ClientType > &&  other)
defaultnoexcept

◆ SetReadHandler()

template<typename ClientType >
void doip_client::sockets::SocketHandler< ClientType >::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 91 of file socket_handler.h.

91 { client_.SetReadHandler(std::move(read_handler)); }

References doip_client::sockets::SocketHandler< ClientType >::client_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannel::Start(), and doip_client::channel::udp_channel::DoipUdpChannel::Start().

Here is the caller graph for this function:

◆ Transmit()

template<typename ClientType >
core_type::Result<void> doip_client::sockets::SocketHandler< ClientType >::Transmit ( MessageConstPtr  message)
inline

Function to transmit the provided message.

Parameters
[in]messageThe message to be sent
Returns
Empty void on success, otherwise error is returned

Definition at line 124 of file socket_handler.h.

124  {
125  return client_.Transmit(std::move(message));
126  }

References doip_client::sockets::SocketHandler< ClientType >::client_.

Member Data Documentation

◆ client_

template<typename ClientType >
Client doip_client::sockets::SocketHandler< ClientType >::client_
private

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