Diag-Client-Lib
|
Class to manage a udp channel as per DoIP protocol. More...
#include <doip_udp_channel.h>
Public Types | |
using | UdpSocketHandler = sockets::UdpSocketHandler |
Type alias for Tcp socket handler. More... | |
using | UdpMessagePtr = sockets::UdpSocketHandler::MessagePtr |
Type alias for Udp message pointer. More... | |
Public Member Functions | |
DoipUdpChannel (UdpSocketHandler udp_socket_handler_broadcast, UdpSocketHandler udp_socket_handler_unicast, uds_transport::Connection &connection) | |
Constructs an instance of UdpChannel. More... | |
~DoipUdpChannel ()=default | |
Destruct an instance of UdpChannel. More... | |
void | Start () |
Function to start the channel. More... | |
void | Stop () |
Function to stop the channel. More... | |
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. More... | |
void | HandleMessage (uds_transport::UdsMessagePtr message) |
Function to Hands over a valid received Uds message to upper layer. More... | |
void | ProcessReceivedUdpBroadcast (UdpMessagePtr udp_rx_message) |
Function to process the received Udp broadcast message from socket layer. More... | |
void | ProcessReceivedUdpUnicast (UdpMessagePtr udp_rx_message) |
Function to process the received Udp unicast message from socket layer. More... | |
uds_transport::UdsTransportProtocolMgr::TransmissionResult | Transmit (uds_transport::UdsMessageConstPtr message) |
Function to transmit a Vehicle Identification request. More... | |
Private Attributes | |
UdpSocketHandler | udp_socket_handler_broadcast_ |
Store the udp socket handler for broadcast messages. More... | |
UdpSocketHandler | udp_socket_handler_unicast_ |
Store the udp socket handler for unicast messages. More... | |
DoipUdpChannelHandler | udp_channel_handler_ |
Store the doip channel handler. More... | |
uds_transport::Connection & | connection_ |
Store the reference to doip connection. More... | |
Class to manage a udp channel as per DoIP protocol.
Definition at line 26 of file doip_udp_channel.h.
using doip_client::channel::udp_channel::DoipUdpChannel::UdpMessagePtr = sockets::UdpSocketHandler::MessagePtr |
Type alias for Udp message pointer.
Definition at line 36 of file doip_udp_channel.h.
using doip_client::channel::udp_channel::DoipUdpChannel::UdpSocketHandler = sockets::UdpSocketHandler |
Type alias for Tcp socket handler.
Definition at line 31 of file doip_udp_channel.h.
doip_client::channel::udp_channel::DoipUdpChannel::DoipUdpChannel | ( | UdpSocketHandler | udp_socket_handler_broadcast, |
UdpSocketHandler | udp_socket_handler_unicast, | ||
uds_transport::Connection & | connection | ||
) |
Constructs an instance of UdpChannel.
[in] | udp_ip_address | The local ip address |
[in] | port_num | The reference to tcp transport handler |
[in] | connection | The reference to tcp transport handler |
Definition at line 15 of file doip_udp_channel.cpp.
|
default |
Destruct an instance of UdpChannel.
void doip_client::channel::udp_channel::DoipUdpChannel::HandleMessage | ( | uds_transport::UdsMessagePtr | message | ) |
Function to Hands over a valid received Uds message to upper layer.
[in] | message | The Uds message ptr (unique_ptr semantics) with the request. Ownership of the UdsMessage is given back to the conversation here |
Definition at line 64 of file doip_udp_channel.cpp.
References connection_, and uds_transport::Connection::HandleMessage().
std::pair< uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr > doip_client::channel::udp_channel::DoipUdpChannel::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.
This is called to indicate the reception of new message by underlying transport protocol handler
[in] | source_addr | The UDS source address of message |
[in] | target_addr | The UDS target address of message |
[in] | type | The indication whether its is phys/func request |
[in] | channel_id | The transport protocol channel on which message start happened |
[in] | size | The size in bytes of the UdsMessage starting from SID |
[in] | priority | The priority of the given message, used for prioritization of conversations |
[in] | protocol_kind | The identifier of protocol kind associated to message |
[in] | payload_info | The view onto the first received payload bytes, if any. This view shall be used only within this function call. It is recommended that the TP provides at least the first two bytes of the request message, so the DM can identify a functional TesterPresent |
Definition at line 53 of file doip_udp_channel.cpp.
References connection_, and uds_transport::Connection::IndicateMessage().
void doip_client::channel::udp_channel::DoipUdpChannel::ProcessReceivedUdpBroadcast | ( | DoipUdpChannel::UdpMessagePtr | udp_rx_message | ) |
Function to process the received Udp broadcast message from socket layer.
[in] | udp_rx_message | The Udp message ptr (unique_ptr semantics) with the request. Ownership of the UdsMessage is given back to the channel here |
Definition at line 39 of file doip_udp_channel.cpp.
References doip_client::channel::udp_channel::DoipUdpChannelHandler::HandleMessageBroadcast(), and udp_channel_handler_.
Referenced by Start().
void doip_client::channel::udp_channel::DoipUdpChannel::ProcessReceivedUdpUnicast | ( | DoipUdpChannel::UdpMessagePtr | udp_rx_message | ) |
Function to process the received Udp unicast message from socket layer.
[in] | udp_rx_message | The Udp message ptr (unique_ptr semantics) with the request. Ownership of the UdsMessage is given back to the channel here |
Definition at line 43 of file doip_udp_channel.cpp.
References doip_client::channel::udp_channel::DoipUdpChannelHandler::HandleMessageUnicast(), and udp_channel_handler_.
Referenced by Start().
void doip_client::channel::udp_channel::DoipUdpChannel::Start | ( | ) |
Function to start the channel.
Definition at line 23 of file doip_udp_channel.cpp.
References doip_client::sockets::SocketHandler< ClientType >::Initialize(), ProcessReceivedUdpBroadcast(), ProcessReceivedUdpUnicast(), doip_client::sockets::SocketHandler< ClientType >::SetReadHandler(), udp_socket_handler_broadcast_, and udp_socket_handler_unicast_.
Referenced by doip_client::connection::DoipUdpConnection::Start().
void doip_client::channel::udp_channel::DoipUdpChannel::Stop | ( | ) |
Function to stop the channel.
Definition at line 34 of file doip_udp_channel.cpp.
References doip_client::sockets::SocketHandler< ClientType >::DeInitialize(), udp_socket_handler_broadcast_, and udp_socket_handler_unicast_.
Referenced by doip_client::connection::DoipUdpConnection::Stop().
uds_transport::UdsTransportProtocolMgr::TransmissionResult doip_client::channel::udp_channel::DoipUdpChannel::Transmit | ( | uds_transport::UdsMessageConstPtr | message | ) |
Function to transmit a Vehicle Identification request.
[in] | message | The vehicle identification message |
Definition at line 47 of file doip_udp_channel.cpp.
References doip_client::channel::udp_channel::DoipUdpChannelHandler::SendVehicleIdentificationRequest(), and udp_channel_handler_.
Referenced by doip_client::connection::DoipUdpConnection::Transmit().
|
private |
Store the reference to doip connection.
Definition at line 150 of file doip_udp_channel.h.
Referenced by HandleMessage(), and IndicateMessage().
|
private |
Store the doip channel handler.
Definition at line 145 of file doip_udp_channel.h.
Referenced by ProcessReceivedUdpBroadcast(), ProcessReceivedUdpUnicast(), and Transmit().
|
private |
Store the udp socket handler for broadcast messages.
Definition at line 135 of file doip_udp_channel.h.
|
private |
Store the udp socket handler for unicast messages.
Definition at line 140 of file doip_udp_channel.h.