Diag-Client-Lib
doip_transport_protocol_handler.cpp
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
9 
10 #include "common/logger.h"
12 
13 namespace doip_client {
14 namespace transport_protocol_handler {
15 
17  UdsTransportProtocolHandlerId const handler_id,
18  uds_transport::UdsTransportProtocolMgr const &transport_protocol_mgr)
19  : uds_transport::UdsTransportProtocolHandler(handler_id, transport_protocol_mgr) {}
20 
22 
25 }
26 
28 
30 
31 std::unique_ptr<uds_transport::Connection> DoipTransportProtocolHandler::CreateTcpConnection(
32  uds_transport::ConversionHandler &conversation, std::string_view tcp_ip_address,
33  std::uint16_t port_num) {
35  FILE_NAME, __LINE__, __func__, [tcp_ip_address](std::stringstream &msg) {
36  msg << "DoIP Tcp protocol requested with local endpoint : "
37  << "<Tcp: " << tcp_ip_address << ">";
38  });
39  return connection_mgr_.CreateTcpConnection(conversation, tcp_ip_address, port_num);
40 }
41 
42 std::unique_ptr<uds_transport::Connection> DoipTransportProtocolHandler::CreateUdpConnection(
43  uds_transport::ConversionHandler &conversation, std::string_view udp_ip_address,
44  std::uint16_t port_num) {
46  FILE_NAME, __LINE__, __func__, [udp_ip_address](std::stringstream &msg) {
47  msg << "DoIP Udp protocol requested with local endpoint : "
48  << "<Udp: " << udp_ip_address << ">";
49  });
50  return connection_mgr_.CreateUdpConnection(conversation, udp_ip_address, port_num);
51 }
52 } // namespace transport_protocol_handler
53 } // namespace doip_client
std::unique_ptr< uds_transport::Connection > 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.
std::unique_ptr< uds_transport::Connection > 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.
static auto GetDiagClientLogger() noexcept -> DoipClientLogger &
Definition: logger.h:20
DoipTransportProtocolHandler(UdsTransportProtocolHandlerId handler_id, uds_transport::UdsTransportProtocolMgr const &transport_protocol_mgr)
Constructs an instance of DoipTransportProtocolHandler.
std::unique_ptr< uds_transport::Connection > CreateUdpConnection(uds_transport::ConversionHandler &conversation, std::string_view udp_ip_address, std::uint16_t port_num) override
Function to create a new Udp connection.
std::unique_ptr< uds_transport::Connection > CreateTcpConnection(uds_transport::ConversionHandler &conversation, std::string_view tcp_ip_address, std::uint16_t port_num) override
Function to create a new Tcp connection.
connection::ConnectionManager connection_mgr_
Store Doip Connection manager.
InitializationResult Initialize() override
Function to initialize the handler.
uds_transport::UdsTransportProtocolHandler::UdsTransportProtocolHandlerId UdsTransportProtocolHandlerId
Type alias for handler id.
~DoipTransportProtocolHandler() final
Destruct an instance of DoipTransportProtocolHandler.
Class to manage reception from transport protocol handler to connection handler.
InitializationResult
Definitions of different initialization result.
#define FILE_NAME
Definition: file_path.h:14