Diag-Client-Lib
|
Doip Tcp Connection handle connection between two layers. More...
Public Types | |
using | InitializationResult = uds_transport::Connection::InitializationResult |
Type alias for Initialization result. More... | |
using | TcpClient = sockets::TcpSocketHandler::Client |
Type alias for Tcp client used by socket handler. More... | |
![]() | |
using | ConnectionId = std::uint8_t |
Type alias for connection id. More... | |
using | InitializationResult = uds_transport::UdsTransportProtocolHandler::InitializationResult |
Type alias for Initialization result. More... | |
Public Member Functions | |
DoipTcpConnection (uds_transport::ConversionHandler const &conversation_handler, std::string_view tcp_ip_address, std::uint16_t port_num) | |
Constructor to create a new tcp connection. More... | |
~DoipTcpConnection () final=default | |
Destruct an instance of DoipTcpConnection. More... | |
InitializationResult | Initialize () override |
Function to initialize the connection. More... | |
void | Start () override |
Function to start the connection. More... | |
void | Stop () override |
Function to stop the connection. More... | |
bool | IsConnectToHost () override |
Function to check if connected to host remote server. More... | |
uds_transport::UdsTransportProtocolMgr::ConnectionResult | ConnectToHost (uds_transport::UdsMessageConstPtr message) override |
Function to establish connection to remote host server. More... | |
uds_transport::UdsTransportProtocolMgr::DisconnectionResult | DisconnectFromHost () override |
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) override |
Function to indicate a start of reception of message. More... | |
uds_transport::UdsTransportProtocolMgr::TransmissionResult | Transmit (uds_transport::UdsMessageConstPtr message) override |
Function to transmit a valid Uds message. More... | |
void | HandleMessage (uds_transport::UdsMessagePtr message) override |
Function to Hands over a valid received Uds message. More... | |
![]() | |
Connection (std::string_view connection_name, ConnectionId connection_id, uds_transport::ConversionHandler const &conversation_handler) noexcept | |
Constructor to create a new connection. More... | |
virtual | ~Connection ()=default |
Destruct an instance of Connection. More... | |
ConnectionId | GetConnectionId () const noexcept |
Function to get the connection id. More... | |
std::string_view | GetConnectionName () const noexcept |
Function to get the connection name. More... | |
Private Attributes | |
channel::tcp_channel::DoipTcpChannel | doip_tcp_channel_ |
Store the doip tcp channel. More... | |
Additional Inherited Members | |
![]() | |
uds_transport::ConversionHandler const & | conversation_handler_ |
Store the conversation handler. More... | |
Doip Tcp Connection handle connection between two layers.
Definition at line 38 of file connection_manager.cpp.
using doip_client::connection::DoipTcpConnection::InitializationResult = uds_transport::Connection::InitializationResult |
Type alias for Initialization result.
Definition at line 43 of file connection_manager.cpp.
Type alias for Tcp client used by socket handler.
Definition at line 48 of file connection_manager.cpp.
|
inline |
Constructor to create a new tcp connection.
[in] | conversation_handler | The reference to conversation handler |
[in] | tcp_ip_address | The local tcp ip address |
[in] | port_num | The local port number |
[in] | io_context | The reference to io context |
Definition at line 61 of file connection_manager.cpp.
|
finaldefault |
Destruct an instance of DoipTcpConnection.
|
inlineoverridevirtual |
Function to establish connection to remote host server.
[in] | message | The connection message |
Implements uds_transport::Connection.
Definition at line 101 of file connection_manager.cpp.
References doip_client::channel::tcp_channel::DoipTcpChannel::ConnectToHost(), and doip_tcp_channel_.
|
inlineoverridevirtual |
Function to disconnect from remote host server.
Implements uds_transport::Connection.
Definition at line 110 of file connection_manager.cpp.
References doip_client::channel::tcp_channel::DoipTcpChannel::DisconnectFromHost(), and doip_tcp_channel_.
|
inlineoverridevirtual |
Function to Hands over a valid received Uds message.
[in] | message | The Uds message ptr (unique_ptr semantics) with the request. Ownership of the UdsMessage is given back to the conversation here |
Implements uds_transport::Connection.
Definition at line 166 of file connection_manager.cpp.
References uds_transport::Connection::conversation_handler_, and uds_transport::ConversionHandler::HandleMessage().
|
inlineoverridevirtual |
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 |
Implements uds_transport::Connection.
Definition at line 140 of file connection_manager.cpp.
References uds_transport::Connection::conversation_handler_, and uds_transport::ConversionHandler::IndicateMessage().
|
inlineoverridevirtual |
Function to initialize the connection.
Implements uds_transport::Connection.
Definition at line 77 of file connection_manager.cpp.
References uds_transport::UdsTransportProtocolHandler::kInitializeOk.
|
inlineoverridevirtual |
Function to check if connected to host remote server.
Implements uds_transport::Connection.
Definition at line 93 of file connection_manager.cpp.
References doip_tcp_channel_, and doip_client::channel::tcp_channel::DoipTcpChannel::IsConnectedToHost().
|
inlineoverridevirtual |
Function to start the connection.
Implements uds_transport::Connection.
Definition at line 82 of file connection_manager.cpp.
References doip_tcp_channel_, and doip_client::channel::tcp_channel::DoipTcpChannel::Start().
|
inlineoverridevirtual |
Function to stop the connection.
Implements uds_transport::Connection.
Definition at line 87 of file connection_manager.cpp.
References doip_tcp_channel_, and doip_client::channel::tcp_channel::DoipTcpChannel::Stop().
|
inlineoverridevirtual |
Function to transmit a valid Uds message.
[in] | message | The Uds message ptr (unique_ptr semantics) with the request. |
Implements uds_transport::Connection.
Definition at line 155 of file connection_manager.cpp.
References doip_tcp_channel_, and doip_client::channel::tcp_channel::DoipTcpChannel::Transmit().
|
private |
Store the doip tcp channel.
Definition at line 174 of file connection_manager.cpp.
Referenced by ConnectToHost(), DisconnectFromHost(), IsConnectToHost(), Start(), Stop(), and Transmit().