Diag-Client-Lib
doip_tcp_channel.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  */
8 
10 
11 #include <utility>
12 
13 #include "common/logger.h"
14 
15 namespace doip_client {
16 namespace channel {
17 namespace tcp_channel {
18 
20  uds_transport::Connection &connection)
21  : tcp_socket_handler_{std::move(tcp_socket_handler)},
22  tcp_channel_handler_{tcp_socket_handler_, *this},
23  connection_{connection} {}
24 
26  // Set the handler to receive data from socket handler
28  [this](TcpMessagePtr tcp_message) { ProcessReceivedTcpMessage(std::move(tcp_message)); });
29  // Start the socket and channel handler
32 }
33 
37 }
38 
40 
45 
46  uds_transport::UdsMessage::IpAddress const kHostIpAddress{message->GetHostIpAddress()};
47  uds_transport::UdsMessage::PortNumber const kHostPortNumber{message->GetHostPortNumber()};
48  // Initiate connecting to server
49  if (tcp_socket_handler_.ConnectToHost(kHostIpAddress, kHostPortNumber)) {
50  // Once connected, Send routing activation req and get response
51  ret_val = tcp_channel_handler_.SendRoutingActivationRequest(std::move(message));
52  } else { // failure
53  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogError(
54  FILE_NAME, __LINE__, __func__, [&kHostIpAddress, &kHostPortNumber](std::stringstream &msg) {
55  msg << "Doip Tcp socket connect failed for remote endpoints : "
56  << "<Ip: " << kHostIpAddress << ", Port: " << kHostPortNumber << ">";
57  });
58  }
59  return ret_val;
60 }
61 
67  // Reset the handler
69  }
71  }
72  return ret_val;
73 }
74 
76  tcp_channel_handler_.HandleMessage(std::move(tcp_rx_message));
77 }
78 
83  // Routing activation should be active before sending diag request
85  ret_val = tcp_channel_handler_.SendDiagnosticRequest(std::move(message));
86  } else {
87  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogError(
88  FILE_NAME, __LINE__, __func__, [](std::stringstream &msg) {
89  msg << "Routing Activation required, please connect to server first";
90  });
91  }
92  return ret_val;
93 }
94 
95 std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
99  uds_transport::ChannelID channel_id, std::size_t size,
100  uds_transport::Priority priority,
101  uds_transport::ProtocolKind protocol_kind,
103  return connection_.IndicateMessage(source_addr, target_addr, type, channel_id, size, priority,
104  protocol_kind, payload_info);
105 }
106 
108  connection_.HandleMessage(std::move(message));
109 }
110 
111 } // namespace tcp_channel
112 } // namespace channel
113 } // namespace doip_client
A view over a contiguous sequence of objects.
Definition: span.h:191
auto IsRoutingActivated() noexcept -> bool
Check if routing activation is active for this handler.
auto SendDiagnosticRequest(uds_transport::UdsMessageConstPtr diagnostic_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
Function to send diagnostic request.
auto SendRoutingActivationRequest(uds_transport::UdsMessageConstPtr routing_activation_request) noexcept -> uds_transport::UdsTransportProtocolMgr::ConnectionResult
Function to send routing activation request.
void HandleMessage(TcpMessagePtr tcp_rx_message) noexcept
Function to process the received message.
void Stop()
Function to stop the channel.
uds_transport::Connection & connection_
Store the reference to doip connection.
void HandleMessage(uds_transport::UdsMessagePtr message)
Function to Hands over a valid received Uds message to upper layer.
void Start()
Function to start the channel.
sockets::TcpSocketHandler::MessagePtr TcpMessagePtr
Type alias for Tcp message pointer.
std::pair< uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr > IndicateMessage(uds_transport::UdsMessage::Address source_addr, uds_transport::UdsMessage::Address target_addr, uds_transport::UdsMessage::TargetAddressType type, uds_transport::ChannelID channel_id, std::size_t size, uds_transport::Priority priority, uds_transport::ProtocolKind protocol_kind, core_type::Span< std::uint8_t const > payload_info)
Function to indicate a start of reception of message.
DoipTcpChannelHandler tcp_channel_handler_
Store the doip channel handler.
bool IsConnectedToHost()
Function to check if connected to host remote server.
DoipTcpChannel(TcpSocketHandler tcp_socket_handler, uds_transport::Connection &connection)
Constructs an instance of TcpChannel.
uds_transport::UdsTransportProtocolMgr::ConnectionResult ConnectToHost(uds_transport::UdsMessageConstPtr message)
Function to establish connection to remote host server.
void ProcessReceivedTcpMessage(TcpMessagePtr tcp_rx_message)
Function to process the received Tcp message from socket layer.
uds_transport::UdsTransportProtocolMgr::DisconnectionResult DisconnectFromHost()
Function to disconnect from remote host server.
uds_transport::UdsTransportProtocolMgr::TransmissionResult Transmit(uds_transport::UdsMessageConstPtr message)
Function to transmit a valid Uds message.
TcpSocketHandler tcp_socket_handler_
Store the tcp socket handler.
static auto GetDiagClientLogger() noexcept -> DoipClientLogger &
Definition: logger.h:20
Handler class to manage different socket of various client (Udp / Tcp)
void SetReadHandler(HandlerRead read_handler)
Function to set the read handler that is invoked when message is received.
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.
core_type::Result< void > DisconnectFromHost()
Function to disconnect from remote host if already connected.
void DeInitialize() noexcept
Function to stop the socket handler.
void Initialize() noexcept
Function to start the socket handler.
auto IsConnectedToHost() const noexcept -> bool
Function to get the connection status.
Interface class to handle connection between two layers.
Definition: connection.h:45
virtual std::pair< UdsTransportProtocolMgr::IndicationResult, UdsMessagePtr > IndicateMessage(UdsMessage::Address source_addr, UdsMessage::Address target_addr, UdsMessage::TargetAddressType type, ChannelID channel_id, std::size_t size, Priority priority, ProtocolKind protocol_kind, core_type::Span< std::uint8_t const > payload_info)=0
Function to indicate a start of reception of message.
virtual void HandleMessage(UdsMessagePtr message)=0
Function to Hands over a valid received Uds message.
std::string_view IpAddress
Definition: uds_message.h:24
std::uint16_t PortNumber
Definition: uds_message.h:26
#define FILE_NAME
Definition: file_path.h:14
std::string_view ProtocolKind
std::unique_ptr< const UdsMessage > UdsMessageConstPtr
Definition: uds_message.h:69
std::unique_ptr< UdsMessage > UdsMessagePtr
Definition: uds_message.h:71
uint32_t ChannelID
std::uint8_t Priority