Diag-Client-Lib
|
Public Member Functions | |
DiagClientConversationImpl (std::string_view conversation_name) noexcept | |
Constructor an instance of DiagClientConversationImpl. More... | |
~DiagClientConversationImpl () noexcept=default | |
Destructor an instance of DiagClientConversationImpl. More... | |
void | Startup () noexcept |
Function to startup the Diagnostic Client Conversation. More... | |
void | Shutdown () noexcept |
Function to shutdown the Diagnostic Client Conversation. More... | |
ConnectResult | ConnectToDiagServer (std::uint16_t target_address, IpAddress host_ip_addr) noexcept |
Function to connect to Diagnostic Server. More... | |
DisconnectResult | DisconnectFromDiagServer () noexcept |
Function to disconnect from Diagnostic Server. More... | |
Result< uds_message::UdsResponseMessagePtr, DiagClientConversation::DiagError > | SendDiagnosticRequest (uds_message::UdsRequestMessageConstPtr message) noexcept |
Function to send Diagnostic Request and get Diagnostic Response. More... | |
Private Attributes | |
Conversation & | internal_conversation_ |
Reference to valid conversation created. More... | |
Definition at line 19 of file diagnostic_client_conversation.cpp.
|
inlineexplicitnoexcept |
Constructor an instance of DiagClientConversationImpl.
[in] | conversation_name | The name of conversation configured as json parameter under "ConversationName" |
Definition at line 26 of file diagnostic_client_conversation.cpp.
References diag::client::dcm::GetConversationManager().
|
defaultnoexcept |
Destructor an instance of DiagClientConversationImpl.
|
inlinenoexcept |
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 |
Definition at line 57 of file diagnostic_client_conversation.cpp.
References diag::client::conversation::Conversation::ConnectToDiagServer(), and internal_conversation_.
|
inlinenoexcept |
Function to disconnect from Diagnostic Server.
Definition at line 66 of file diagnostic_client_conversation.cpp.
References diag::client::conversation::Conversation::DisconnectFromDiagServer(), and internal_conversation_.
|
inlinenoexcept |
Function to send Diagnostic Request and get Diagnostic Response.
[in] | message | The diagnostic request message wrapped in a unique pointer |
Definition at line 80 of file diagnostic_client_conversation.cpp.
References internal_conversation_, and diag::client::conversation::Conversation::SendDiagnosticRequest().
|
inlinenoexcept |
Function to shutdown the Diagnostic Client Conversation.
Must be called during shutdown phase, no further processing of any function will be allowed after this call
Definition at line 46 of file diagnostic_client_conversation.cpp.
References internal_conversation_, and diag::client::conversation::Conversation::Shutdown().
|
inlinenoexcept |
Function to startup the Diagnostic Client Conversation.
Must be called once and before using any other functions of DiagClientConversation
Definition at line 39 of file diagnostic_client_conversation.cpp.
References internal_conversation_, and diag::client::conversation::Conversation::Startup().
|
private |
Reference to valid conversation created.
Definition at line 88 of file diagnostic_client_conversation.cpp.
Referenced by ConnectToDiagServer(), DisconnectFromDiagServer(), SendDiagnosticRequest(), Shutdown(), and Startup().