Diag-Client-Lib
Classes | Public Member Functions | Private Attributes | List of all members
doip_client::connection::ConnectionManager Class Referencefinal

Manages Doip tcp and udp connections. More...

#include <connection_manager.h>

Collaboration diagram for doip_client::connection::ConnectionManager:
Collaboration graph
[legend]

Classes

struct  IoContext
 Type alias for boost context. More...
 

Public Member Functions

 ConnectionManager () noexcept
 Constructs an instance of DoipConnectionManager. More...
 
 ~ConnectionManager () noexcept=default
 Destruct an instance of DoipConnectionManager. More...
 
std::unique_ptr< uds_transport::ConnectionCreateTcpConnection (uds_transport::ConversionHandler const &conversation, std::string_view tcp_ip_address, std::uint16_t port_num)
 Function to find or create a new Tcp connection. More...
 
std::unique_ptr< uds_transport::ConnectionCreateUdpConnection (uds_transport::ConversionHandler const &conversation, std::string_view udp_ip_address, std::uint16_t port_num)
 Function to find or create a new Udp connection. More...
 

Private Attributes

IoContext io_context_
 Stores the io context. More...
 

Detailed Description

Manages Doip tcp and udp connections.

Definition at line 23 of file connection_manager.h.

Constructor & Destructor Documentation

◆ ConnectionManager()

doip_client::connection::ConnectionManager::ConnectionManager ( )
noexcept

Constructs an instance of DoipConnectionManager.

Definition at line 318 of file connection_manager.cpp.

318 : io_context_{} {}
IoContext io_context_
Stores the io context.

◆ ~ConnectionManager()

doip_client::connection::ConnectionManager::~ConnectionManager ( )
defaultnoexcept

Destruct an instance of DoipConnectionManager.

Member Function Documentation

◆ CreateTcpConnection()

std::unique_ptr< uds_transport::Connection > doip_client::connection::ConnectionManager::CreateTcpConnection ( uds_transport::ConversionHandler const &  conversation,
std::string_view  tcp_ip_address,
std::uint16_t  port_num 
)

Function to find or create a new Tcp connection.

Parameters
[in]conversationThe conversation handler used by tcp connection to communicate
[in]tcp_ip_addressThe local tcp ip address
[in]port_numThe local port number
Returns
The unique pointer to tcp connection created

Definition at line 320 of file connection_manager.cpp.

322  {
323  return std::make_unique<DoipTcpConnection>(conversation, tcp_ip_address, port_num);
324 }

Referenced by doip_client::transport_protocol_handler::DoipTransportProtocolHandler::CreateTcpConnection().

Here is the caller graph for this function:

◆ CreateUdpConnection()

std::unique_ptr< uds_transport::Connection > doip_client::connection::ConnectionManager::CreateUdpConnection ( uds_transport::ConversionHandler const &  conversation,
std::string_view  udp_ip_address,
std::uint16_t  port_num 
)

Function to find or create a new Udp connection.

Parameters
[in]conversationThe conversation handler used by tcp connection to communicate
[in]udp_ip_addressThe local udp ip address
[in]port_numThe local port number
Returns
The unique pointer to udp connection created

Definition at line 326 of file connection_manager.cpp.

328  {
329  return std::make_unique<DoipUdpConnection>(conversation, udp_ip_address, port_num);
330 }

Referenced by doip_client::transport_protocol_handler::DoipTransportProtocolHandler::CreateUdpConnection().

Here is the caller graph for this function:

Member Data Documentation

◆ io_context_

IoContext doip_client::connection::ConnectionManager::io_context_
private

Stores the io context.

Definition at line 73 of file connection_manager.h.


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