Diag-Client-Lib
|
Class to manage a tcp channel as per DoIP protocol. More...
#include <doip_tcp_channel.h>
Public Types | |
using | TcpSocketHandler = sockets::TcpSocketHandler |
Type alias for Tcp socket handler. More... | |
using | TcpMessagePtr = sockets::TcpSocketHandler::MessagePtr |
Type alias for Tcp message pointer. More... | |
Public Member Functions | |
DoipTcpChannel (TcpSocketHandler tcp_socket_handler, uds_transport::Connection &connection) | |
Constructs an instance of TcpChannel. More... | |
~DoipTcpChannel ()=default | |
Destruct an instance of TcpChannel. More... | |
void | Start () |
Function to start the channel. More... | |
void | Stop () |
Function to stop the channel. More... | |
bool | IsConnectedToHost () |
Function to check if connected to host remote server. More... | |
uds_transport::UdsTransportProtocolMgr::ConnectionResult | ConnectToHost (uds_transport::UdsMessageConstPtr message) |
Function to establish connection to remote host server. More... | |
uds_transport::UdsTransportProtocolMgr::DisconnectionResult | DisconnectFromHost () |
Function to disconnect from remote host server. 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... | |
uds_transport::UdsTransportProtocolMgr::TransmissionResult | Transmit (uds_transport::UdsMessageConstPtr message) |
Function to transmit a valid Uds message. More... | |
void | HandleMessage (uds_transport::UdsMessagePtr message) |
Function to Hands over a valid received Uds message to upper layer. More... | |
void | ProcessReceivedTcpMessage (TcpMessagePtr tcp_rx_message) |
Function to process the received Tcp message from socket layer. More... | |
Private Attributes | |
TcpSocketHandler | tcp_socket_handler_ |
Store the tcp socket handler. More... | |
DoipTcpChannelHandler | tcp_channel_handler_ |
Store the doip channel handler. More... | |
uds_transport::Connection & | connection_ |
Store the reference to doip connection. More... | |
Class to manage a tcp channel as per DoIP protocol.
Definition at line 26 of file doip_tcp_channel.h.
using doip_client::channel::tcp_channel::DoipTcpChannel::TcpMessagePtr = sockets::TcpSocketHandler::MessagePtr |
Type alias for Tcp message pointer.
Definition at line 36 of file doip_tcp_channel.h.
using doip_client::channel::tcp_channel::DoipTcpChannel::TcpSocketHandler = sockets::TcpSocketHandler |
Type alias for Tcp socket handler.
Definition at line 31 of file doip_tcp_channel.h.
doip_client::channel::tcp_channel::DoipTcpChannel::DoipTcpChannel | ( | TcpSocketHandler | tcp_socket_handler, |
uds_transport::Connection & | connection | ||
) |
Constructs an instance of TcpChannel.
[in] | tcp_socket_handler | The tcp socket handler |
[in] | connection | The reference to tcp transport handler |
Definition at line 19 of file doip_tcp_channel.cpp.
|
default |
Destruct an instance of TcpChannel.
uds_transport::UdsTransportProtocolMgr::ConnectionResult doip_client::channel::tcp_channel::DoipTcpChannel::ConnectToHost | ( | uds_transport::UdsMessageConstPtr | message | ) |
Function to establish connection to remote host server.
[in] | message | The connection message |
Definition at line 41 of file doip_tcp_channel.cpp.
References doip_client::sockets::SocketHandler< ClientType >::ConnectToHost(), FILE_NAME, doip_client::logger::DoipClientLogger::GetDiagClientLogger(), uds_transport::UdsTransportProtocolMgr::kConnectionFailed, doip_client::channel::tcp_channel::DoipTcpChannelHandler::SendRoutingActivationRequest(), tcp_channel_handler_, and tcp_socket_handler_.
Referenced by doip_client::connection::DoipTcpConnection::ConnectToHost().
uds_transport::UdsTransportProtocolMgr::DisconnectionResult doip_client::channel::tcp_channel::DoipTcpChannel::DisconnectFromHost | ( | ) |
Function to disconnect from remote host server.
Definition at line 62 of file doip_tcp_channel.cpp.
References doip_client::sockets::SocketHandler< ClientType >::DisconnectFromHost(), doip_client::channel::tcp_channel::DoipTcpChannelHandler::IsRoutingActivated(), uds_transport::UdsTransportProtocolMgr::kDisconnectionFailed, uds_transport::UdsTransportProtocolMgr::kDisconnectionOk, doip_client::channel::tcp_channel::DoipTcpChannelHandler::Reset(), tcp_channel_handler_, and tcp_socket_handler_.
Referenced by doip_client::connection::DoipTcpConnection::DisconnectFromHost().
void doip_client::channel::tcp_channel::DoipTcpChannel::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 107 of file doip_tcp_channel.cpp.
References connection_, and uds_transport::Connection::HandleMessage().
std::pair< uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr > doip_client::channel::tcp_channel::DoipTcpChannel::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 96 of file doip_tcp_channel.cpp.
References connection_, and uds_transport::Connection::IndicateMessage().
bool doip_client::channel::tcp_channel::DoipTcpChannel::IsConnectedToHost | ( | ) |
Function to check if connected to host remote server.
Definition at line 39 of file doip_tcp_channel.cpp.
References doip_client::sockets::SocketHandler< ClientType >::IsConnectedToHost(), and tcp_socket_handler_.
Referenced by doip_client::connection::DoipTcpConnection::IsConnectToHost().
void doip_client::channel::tcp_channel::DoipTcpChannel::ProcessReceivedTcpMessage | ( | TcpMessagePtr | tcp_rx_message | ) |
Function to process the received Tcp message from socket layer.
[in] | tcp_rx_message | The Tcp message ptr (unique_ptr semantics) with the request. Ownership of the UdsMessage is given back to the channel here |
Definition at line 75 of file doip_tcp_channel.cpp.
References doip_client::channel::tcp_channel::DoipTcpChannelHandler::HandleMessage(), and tcp_channel_handler_.
Referenced by Start().
void doip_client::channel::tcp_channel::DoipTcpChannel::Start | ( | ) |
Function to start the channel.
Definition at line 25 of file doip_tcp_channel.cpp.
References doip_client::sockets::SocketHandler< ClientType >::Initialize(), ProcessReceivedTcpMessage(), doip_client::sockets::SocketHandler< ClientType >::SetReadHandler(), doip_client::channel::tcp_channel::DoipTcpChannelHandler::Start(), tcp_channel_handler_, and tcp_socket_handler_.
Referenced by doip_client::connection::DoipTcpConnection::Start().
void doip_client::channel::tcp_channel::DoipTcpChannel::Stop | ( | ) |
Function to stop the channel.
Definition at line 34 of file doip_tcp_channel.cpp.
References doip_client::sockets::SocketHandler< ClientType >::DeInitialize(), doip_client::channel::tcp_channel::DoipTcpChannelHandler::Stop(), tcp_channel_handler_, and tcp_socket_handler_.
Referenced by doip_client::connection::DoipTcpConnection::Stop().
uds_transport::UdsTransportProtocolMgr::TransmissionResult doip_client::channel::tcp_channel::DoipTcpChannel::Transmit | ( | uds_transport::UdsMessageConstPtr | message | ) |
Function to transmit a valid Uds message.
[in] | message | The Uds message ptr (unique_ptr semantics) with the request. |
Definition at line 79 of file doip_tcp_channel.cpp.
References FILE_NAME, doip_client::logger::DoipClientLogger::GetDiagClientLogger(), doip_client::channel::tcp_channel::DoipTcpChannelHandler::IsRoutingActivated(), uds_transport::UdsTransportProtocolMgr::kTransmitFailed, doip_client::channel::tcp_channel::DoipTcpChannelHandler::SendDiagnosticRequest(), and tcp_channel_handler_.
Referenced by doip_client::connection::DoipTcpConnection::Transmit().
|
private |
Store the reference to doip connection.
Definition at line 154 of file doip_tcp_channel.h.
Referenced by HandleMessage(), and IndicateMessage().
|
private |
Store the doip channel handler.
Definition at line 149 of file doip_tcp_channel.h.
Referenced by ConnectToHost(), DisconnectFromHost(), ProcessReceivedTcpMessage(), Start(), Stop(), and Transmit().
|
private |
Store the tcp socket handler.
Definition at line 144 of file doip_tcp_channel.h.
Referenced by ConnectToHost(), DisconnectFromHost(), IsConnectedToHost(), Start(), and Stop().