Diag-Client-Lib
|
Interface for diag client conversation. More...
#include <conversation.h>
Public Types | |
enum class | ActivityStatusType : uint8_t { kActive = 0x00 , kInactive = 0x01 } |
Definitions of current activity status. More... | |
using | IpAddress = DiagClientConversation::IpAddress |
Type alias for Ip address. More... | |
using | ConnectResult = DiagClientConversation::ConnectResult |
Type alias for Connection results. More... | |
using | DisconnectResult = DiagClientConversation::DisconnectResult |
Type alias for Disconnection results. More... | |
using | DiagError = DiagClientConversation::DiagError |
Type alias for Diagnostic results. More... | |
Public Member Functions | |
Conversation () noexcept=default | |
Constructs an instance of Conversation. More... | |
Conversation (const Conversation &other) noexcept=delete | |
Deleted copy assignment and copy constructor. More... | |
Conversation & | operator= (const Conversation &other) noexcept=delete |
Conversation (Conversation &&other) noexcept=delete | |
Deleted move assignment and move constructor. More... | |
Conversation & | operator= (Conversation &&other) noexcept=delete |
virtual | ~Conversation () noexcept=default |
Destructs an instance of Conversation. More... | |
virtual void | Startup () noexcept=0 |
Function to start the Conversation. More... | |
virtual void | Shutdown () noexcept=0 |
Function to shutdown the Conversation. More... | |
virtual void | RegisterConnection (std::unique_ptr<::uds_transport::Connection > connection) noexcept=0 |
Function to register the conversation to underlying transport protocol handler. More... | |
virtual ::uds_transport::ConversionHandler & | GetConversationHandler () noexcept=0 |
Function to get the conversation handler from conversation object. More... | |
virtual ConnectResult | ConnectToDiagServer (std::uint16_t, IpAddress) noexcept |
Function to connect to Diagnostic Server. More... | |
virtual DisconnectResult | DisconnectFromDiagServer () noexcept |
Function to disconnect from Diagnostic Server. More... | |
virtual 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) noexcept=0 |
Function to indicate a start of reception of message. More... | |
virtual void | HandleMessage (::uds_transport::UdsMessagePtr message) noexcept=0 |
Function to Hands over a valid received Uds message. More... | |
virtual Result< uds_message::UdsResponseMessagePtr, DiagError > | SendDiagnosticRequest (uds_message::UdsRequestMessageConstPtr) noexcept |
Function to send Diagnostic Request and get Diagnostic Response. More... | |
virtual core_type::Result< diag::client::vehicle_info::VehicleInfoMessageResponseUniquePtr, DiagClient::VehicleInfoResponseError > | SendVehicleIdentificationRequest (vehicle_info::VehicleInfoListRequestType) noexcept |
Function to send vehicle identification request and get the Diagnostic Server list. More... | |
auto | GetActivityStatus () const noexcept -> ActivityStatusType |
Get the current activity status of this conversation. More... | |
Protected Attributes | |
ActivityStatusType | activity_status_ {ActivityStatusType::kInactive} |
Store the conversation activity status. More... | |
Interface for diag client conversation.
Definition at line 24 of file conversation.h.
using diag::client::conversation::Conversation::ConnectResult = DiagClientConversation::ConnectResult |
Type alias for Connection results.
Definition at line 34 of file conversation.h.
Type alias for Diagnostic results.
Definition at line 44 of file conversation.h.
using diag::client::conversation::Conversation::DisconnectResult = DiagClientConversation::DisconnectResult |
Type alias for Disconnection results.
Definition at line 39 of file conversation.h.
Type alias for Ip address.
Definition at line 29 of file conversation.h.
|
strong |
Definitions of current activity status.
Enumerator | |
---|---|
kActive | |
kInactive |
Definition at line 49 of file conversation.h.
|
defaultnoexcept |
Constructs an instance of Conversation.
|
deletenoexcept |
Deleted copy assignment and copy constructor.
|
deletenoexcept |
Deleted move assignment and move constructor.
|
virtualdefaultnoexcept |
Destructs an instance of Conversation.
|
inlinevirtualnoexcept |
Function to connect to Diagnostic Server.
[in] | target_address | Logical address of the Remote server |
[in] | host_ip_addr | IP address of the Remote server |
Reimplemented in diag::client::conversation::DmConversation.
Definition at line 108 of file conversation.h.
References diag::client::conversation::DiagClientConversation::kConnectFailed.
Referenced by diag::client::conversation::DiagClientConversation::DiagClientConversationImpl::ConnectToDiagServer().
|
inlinevirtualnoexcept |
Function to disconnect from Diagnostic Server.
Reimplemented in diag::client::conversation::DmConversation.
Definition at line 117 of file conversation.h.
References diag::client::conversation::DiagClientConversation::kDisconnectFailed.
Referenced by diag::client::conversation::DiagClientConversation::DiagClientConversationImpl::DisconnectFromDiagServer().
|
inlinenoexcept |
Get the current activity status of this conversation.
Definition at line 196 of file conversation.h.
References activity_status_.
Referenced by diag::client::conversation::DmConversation::Shutdown(), and diag::client::conversation::VdConversation::Shutdown().
|
pure virtualnoexcept |
Function to get the conversation handler from conversation object.
Implemented in diag::client::conversation::VdConversation, and diag::client::conversation::DmConversation.
|
pure virtualnoexcept |
Function to Hands over a valid received Uds message.
[in] | message | The The Uds message ptr (unique_ptr semantics) with the request. Ownership of the UdsMessage is given back to the conversation here |
Implemented in diag::client::conversation::VdConversation, and diag::client::conversation::DmConversation.
|
pure virtualnoexcept |
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 |
Implemented in diag::client::conversation::VdConversation, and diag::client::conversation::DmConversation.
|
deletenoexcept |
|
deletenoexcept |
|
pure virtualnoexcept |
Function to register the conversation to underlying transport protocol handler.
[in] | connection | The conversation connection object |
Implemented in diag::client::conversation::VdConversation, and diag::client::conversation::DmConversation.
|
inlinevirtualnoexcept |
Function to send Diagnostic Request and get Diagnostic Response.
[in] | message | The diagnostic request message wrapped in a unique pointer |
Reimplemented in diag::client::conversation::DmConversation.
Definition at line 172 of file conversation.h.
References core_type::Result< T, E >::FromError(), and diag::client::conversation::DiagClientConversation::kDiagRequestSendFailed.
Referenced by diag::client::conversation::DiagClientConversation::DiagClientConversationImpl::SendDiagnosticRequest().
|
inlinevirtualnoexcept |
Function to send vehicle identification request and get the Diagnostic Server list.
[in] | vehicle_info_request | Vehicle information sent along with request |
Reimplemented in diag::client::conversation::VdConversation.
Definition at line 186 of file conversation.h.
References diag::client::DiagClient::kTransmitFailed.
|
pure virtualnoexcept |
Function to shutdown the Conversation.
Implemented in diag::client::conversation::VdConversation, and diag::client::conversation::DmConversation.
Referenced by diag::client::conversation::DiagClientConversation::DiagClientConversationImpl::Shutdown(), and diag::client::dcm::DCMClient::Shutdown().
|
pure virtualnoexcept |
Function to start the Conversation.
Implemented in diag::client::conversation::VdConversation, and diag::client::conversation::DmConversation.
Referenced by diag::client::conversation::DiagClientConversation::DiagClientConversationImpl::Startup().
|
protected |
Store the conversation activity status.
Definition at line 202 of file conversation.h.
Referenced by GetActivityStatus(), diag::client::conversation::DmConversation::Shutdown(), diag::client::conversation::VdConversation::Shutdown(), diag::client::conversation::DmConversation::Startup(), and diag::client::conversation::VdConversation::Startup().