Diag-Client-Lib
|
Class to handle udp received messages from lower layer. More...
#include <doip_udp_channel_handler.h>
Public Types | |
using | UdpMessagePtr = sockets::UdpSocketHandler::MessagePtr |
Type alias for Tcp message pointer. More... | |
Public Member Functions | |
DoipUdpChannelHandler (sockets::UdpSocketHandler &udp_socket_handler_broadcast, sockets::UdpSocketHandler &udp_socket_handler_unicast, DoipUdpChannel &channel) | |
Constructs an instance of DoipUdpChannelHandler. More... | |
auto | SendVehicleIdentificationRequest (uds_transport::UdsMessageConstPtr vehicle_identification_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult |
Function to vehicle identification request to the connected network. More... | |
void | HandleMessageUnicast (UdpMessagePtr udp_rx_message) noexcept |
Function to process the received unicast udp message. More... | |
void | HandleMessageBroadcast (UdpMessagePtr udp_rx_message) noexcept |
Function to process the received broadcast udp message. More... | |
Private Member Functions | |
auto | ProcessDoIPHeader (DoipMessage &doip_rx_message, std::uint8_t &nack_code) noexcept -> bool |
Function to process doip header in received response. More... | |
void | ProcessDoIPPayload (DoipMessage &doip_payload, DoipMessage::RxSocketType socket_type=DoipMessage::RxSocketType::kUnicast) |
Function to process the doip payload. More... | |
Static Private Member Functions | |
static auto | ProcessDoIPPayloadLength (std::uint32_t payload_len, std::uint16_t payload_type) noexcept -> bool |
Function to verify payload length of various payload type. More... | |
Private Attributes | |
VehicleDiscoveryHandler | vehicle_discovery_handler_ |
Handler to process vehicle discovery messages. More... | |
VehicleIdentificationHandler | vehicle_identification_handler_ |
Handler to process vehicle identification req/res messages. More... | |
std::mutex | channel_handler_lock |
Mutex to protect critical section. More... | |
Class to handle udp received messages from lower layer.
Definition at line 30 of file doip_udp_channel_handler.h.
using doip_client::channel::udp_channel::DoipUdpChannelHandler::UdpMessagePtr = sockets::UdpSocketHandler::MessagePtr |
Type alias for Tcp message pointer.
Definition at line 35 of file doip_udp_channel_handler.h.
doip_client::channel::udp_channel::DoipUdpChannelHandler::DoipUdpChannelHandler | ( | sockets::UdpSocketHandler & | udp_socket_handler_broadcast, |
sockets::UdpSocketHandler & | udp_socket_handler_unicast, | ||
DoipUdpChannel & | channel | ||
) |
Constructs an instance of DoipUdpChannelHandler.
[in] | udp_socket_handler_broadcast | The reference to socket handler with broadcast mechanism |
[in] | udp_socket_handler_unicast | The reference to socket handler with unicast mechanism |
[in] | channel | The reference to tcp transport handler |
Definition at line 30 of file doip_udp_channel_handler.cpp.
|
noexcept |
Function to process the received broadcast udp message.
[in] | udp_rx_message | The message received |
Definition at line 70 of file doip_udp_channel_handler.cpp.
References doip_client::DoipMessage::kUdp.
Referenced by doip_client::channel::udp_channel::DoipUdpChannel::ProcessReceivedUdpBroadcast().
|
noexcept |
Function to process the received unicast udp message.
[in] | udp_rx_message | The message received |
Definition at line 57 of file doip_udp_channel_handler.cpp.
References doip_client::DoipMessage::kUdp.
Referenced by doip_client::channel::udp_channel::DoipUdpChannel::ProcessReceivedUdpUnicast().
|
privatenoexcept |
Function to process doip header in received response.
[in] | doip_rx_message | The received doip rx message |
[in] | nack_code | The negative ack code |
Definition at line 83 of file doip_udp_channel_handler.cpp.
References doip_client::channel::udp_channel::kDoip_GenericHeader_IncorrectPattern, doip_client::channel::udp_channel::kDoip_GenericHeader_InvalidPayloadLen, doip_client::channel::udp_channel::kDoip_GenericHeader_MessageTooLarge, doip_client::channel::udp_channel::kDoip_GenericHeader_OutOfMemory, doip_client::channel::udp_channel::kDoip_GenericHeader_UnknownPayload, doip_client::kDoip_Protocol_MaxPayload, doip_client::kDoip_ProtocolVersion, doip_client::kDoip_ProtocolVersion_Def, doip_client::kDoip_VehicleAnnouncement_ResType, and doip_client::kUdpChannelLength.
|
private |
Function to process the doip payload.
[in] | doip_payload | The reference to received payload |
Definition at line 141 of file doip_udp_channel_handler.cpp.
References channel_handler_lock, doip_client::DoipMessage::GetPayloadType(), doip_client::kDoip_VehicleAnnouncement_ResType, doip_client::channel::udp_channel::VehicleIdentificationHandler::ProcessVehicleIdentificationResponse(), and vehicle_identification_handler_.
|
staticprivatenoexcept |
Function to verify payload length of various payload type.
[in] | payload_len | The length of payload received |
[in] | payload_type | The type of payload |
Definition at line 126 of file doip_udp_channel_handler.cpp.
References doip_client::kDoip_VehicleAnnouncement_ResMaxLen, and doip_client::kDoip_VehicleAnnouncement_ResType.
|
noexcept |
Function to vehicle identification request to the connected network.
[in] | vehicle_identification_request | The vehicle identification request |
Definition at line 36 of file doip_udp_channel_handler.cpp.
References uds_transport::UdsTransportProtocolMgr::kTransmitFailed.
Referenced by doip_client::channel::udp_channel::DoipUdpChannel::Transmit().
|
private |
Mutex to protect critical section.
Definition at line 116 of file doip_udp_channel_handler.h.
Referenced by ProcessDoIPPayload().
|
private |
Handler to process vehicle discovery messages.
Definition at line 106 of file doip_udp_channel_handler.h.
|
private |
Handler to process vehicle identification req/res messages.
Definition at line 111 of file doip_udp_channel_handler.h.
Referenced by ProcessDoIPPayload().