17 namespace conversation {
92 : diag_client_conversation_impl_{
93 std::make_unique<DiagClientConversationImpl>(conversation_name)} {}
103 return diag_client_conversation_impl_->ConnectToDiagServer(target_address, host_ip_addr);
114 return diag_client_conversation_impl_->SendDiagnosticRequest(std::move(message));
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Interface for diag client conversation.
virtual ConnectResult ConnectToDiagServer(std::uint16_t, IpAddress) noexcept
Function to connect to Diagnostic Server.
virtual void Shutdown() noexcept=0
Function to shutdown the Conversation.
virtual DisconnectResult DisconnectFromDiagServer() noexcept
Function to disconnect from Diagnostic Server.
virtual Result< uds_message::UdsResponseMessagePtr, DiagError > SendDiagnosticRequest(uds_message::UdsRequestMessageConstPtr) noexcept
Function to send Diagnostic Request and get Diagnostic Response.
virtual void Startup() noexcept=0
Function to start the Conversation.
DisconnectResult DisconnectFromDiagServer() noexcept
Function to disconnect from Diagnostic Server.
Conversation & internal_conversation_
Reference to valid conversation created.
void Startup() noexcept
Function to startup the Diagnostic Client Conversation.
~DiagClientConversationImpl() noexcept=default
Destructor an instance of DiagClientConversationImpl.
DiagClientConversationImpl(std::string_view conversation_name) noexcept
Constructor an instance of DiagClientConversationImpl.
Result< uds_message::UdsResponseMessagePtr, DiagClientConversation::DiagError > SendDiagnosticRequest(uds_message::UdsRequestMessageConstPtr message) noexcept
Function to send Diagnostic Request and get Diagnostic Response.
ConnectResult ConnectToDiagServer(std::uint16_t target_address, IpAddress host_ip_addr) noexcept
Function to connect to Diagnostic Server.
void Shutdown() noexcept
Function to shutdown the Diagnostic Client Conversation.
Conversation class to establish connection with a Diagnostic Server.
Result< uds_message::UdsResponseMessagePtr, DiagError > SendDiagnosticRequest(uds_message::UdsRequestMessageConstPtr message) noexcept
Function to send Diagnostic Request and get Diagnostic Response.
DiagClientConversation(std::string_view conversation_name) noexcept
Constructor an instance of DiagClientConversation.
DisconnectResult
Definitions of Disconnection results.
uds_message::UdsMessage::IpAddress IpAddress
Type alias of ip address type.
ConnectResult ConnectToDiagServer(std::uint16_t target_address, IpAddress host_ip_addr) noexcept
Function to connect to Diagnostic Server using Target address and IP address of the server.
void Startup() noexcept
Function to startup the Diagnostic Client Conversation.
ConnectResult
Definitions of Connection results.
~DiagClientConversation() noexcept
Destructor an instance of DiagClientConversation -Conversation-Destruction.
void Shutdown() noexcept
Function to shutdown the Diagnostic Client Conversation.
DisconnectResult DisconnectFromDiagServer() noexcept
Function to disconnect from Diagnostic Server.
std::unique_ptr< DiagClientConversationImpl > diag_client_conversation_impl_
Unique pointer to diag client conversation implementation.
auto GetConversationManager() noexcept -> conversation_manager::ConversationManager &
Function to get the reference to conversation manager.
std::unique_ptr< const UdsMessage > UdsRequestMessageConstPtr
Type alias of unique_ptr for constant UdsRequestMessage.