Diag-Client-Lib
doip_udp_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 namespace doip_client {
12 namespace channel {
13 namespace udp_channel {
14 
16  UdpSocketHandler udp_socket_handler_unicast,
17  uds_transport::Connection &connection)
18  : udp_socket_handler_broadcast_{std::move(udp_socket_handler_broadcast)},
19  udp_socket_handler_unicast_{std::move(udp_socket_handler_unicast)},
20  udp_channel_handler_{udp_socket_handler_broadcast_, udp_socket_handler_unicast_, *this},
21  connection_{connection} {}
22 
24  udp_socket_handler_broadcast_.SetReadHandler([this](UdpMessagePtr udp_message) noexcept {
25  ProcessReceivedUdpBroadcast(std::move(udp_message));
26  });
27  udp_socket_handler_unicast_.SetReadHandler([this](UdpMessagePtr udp_message) noexcept {
28  ProcessReceivedUdpUnicast(std::move(udp_message));
29  });
32 }
33 
37 }
38 
40  udp_channel_handler_.HandleMessageBroadcast(std::move(udp_rx_message));
41 }
42 
44  udp_channel_handler_.HandleMessageUnicast(std::move(udp_rx_message));
45 }
46 
49  return udp_channel_handler_.SendVehicleIdentificationRequest(std::move(message));
50 }
51 
52 std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
56  uds_transport::ChannelID channel_id, std::size_t size,
57  uds_transport::Priority priority,
58  uds_transport::ProtocolKind protocol_kind,
60  return connection_.IndicateMessage(source_addr, target_addr, type, channel_id, size, priority,
61  protocol_kind, payload_info);
62 }
63 
65  connection_.HandleMessage(std::move(message));
66 }
67 
68 } // namespace udp_channel
69 } // namespace channel
70 } // namespace doip_client
A view over a contiguous sequence of objects.
Definition: span.h:191
auto SendVehicleIdentificationRequest(uds_transport::UdsMessageConstPtr vehicle_identification_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
Function to vehicle identification request to the connected network.
void HandleMessageUnicast(UdpMessagePtr udp_rx_message) noexcept
Function to process the received unicast udp message.
void HandleMessageBroadcast(UdpMessagePtr udp_rx_message) noexcept
Function to process the received broadcast udp message.
uds_transport::UdsTransportProtocolMgr::TransmissionResult Transmit(uds_transport::UdsMessageConstPtr message)
Function to transmit a Vehicle Identification request.
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.
UdpSocketHandler udp_socket_handler_broadcast_
Store the udp socket handler for broadcast messages.
UdpSocketHandler udp_socket_handler_unicast_
Store the udp socket handler for unicast messages.
sockets::UdpSocketHandler::MessagePtr UdpMessagePtr
Type alias for Udp message pointer.
DoipUdpChannel(UdpSocketHandler udp_socket_handler_broadcast, UdpSocketHandler udp_socket_handler_unicast, uds_transport::Connection &connection)
Constructs an instance of UdpChannel.
void ProcessReceivedUdpUnicast(UdpMessagePtr udp_rx_message)
Function to process the received Udp unicast message from socket layer.
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.
void Stop()
Function to stop the channel.
void ProcessReceivedUdpBroadcast(UdpMessagePtr udp_rx_message)
Function to process the received Udp broadcast message from socket layer.
uds_transport::Connection & connection_
Store the reference to doip connection.
DoipUdpChannelHandler udp_channel_handler_
Store the doip channel handler.
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.
void DeInitialize() noexcept
Function to stop the socket handler.
void Initialize() noexcept
Function to start the socket handler.
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 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