Diag-Client-Lib
|
Class to provide implementation of diag client. More...
Public Member Functions | |
DiagClientImpl (std::string_view diag_client_config_path) noexcept | |
Constructs an instance of DiagClient. More... | |
DiagClientImpl (const DiagClientImpl &other) noexcept=delete | |
Deleted copy assignment and copy constructor. More... | |
DiagClientImpl & | operator= (const DiagClientImpl &other) noexcept=delete |
DiagClientImpl (DiagClientImpl &&other) noexcept=delete | |
Deleted move assignment and move constructor. More... | |
DiagClientImpl & | operator= (DiagClientImpl &&other) noexcept=delete |
~DiagClientImpl () noexcept=default | |
Destruct an instance of DiagClient -Destruction. More... | |
Result< void > | Initialize () noexcept |
Function to initialize the already created instance of DiagClient. More... | |
Result< void > | DeInitialize () noexcept |
Function to de-initialize the already initialized instance of DiagClient. More... | |
conversation::DiagClientConversation | GetDiagnosticClientConversation (std::string_view conversation_name) noexcept |
Function to get required diag client conversation object based on conversation name. More... | |
Result< vehicle_info::VehicleInfoMessageResponseUniquePtr, DiagClient::VehicleInfoResponseError > | SendVehicleIdentificationRequest (diag::client::vehicle_info::VehicleInfoListRequestType vehicle_info_request) noexcept |
Function to send vehicle identification request and get the Diagnostic Server list. More... | |
Private Attributes | |
std::unique_ptr< diag::client::common::DiagnosticManager > | dcm_instance_ |
Unique pointer to dcm client instance. More... | |
utility::thread::Thread | dcm_thread_ |
Thread to handle dcm client lifecycle. More... | |
std::string | diag_client_config_path_ |
Store the diag client config path. More... | |
Class to provide implementation of diag client.
Definition at line 29 of file diagnostic_client.cpp.
|
inlineexplicitnoexcept |
Constructs an instance of DiagClient.
[in] | diag_client_config_path | The path to diag client config file -Construction |
Definition at line 37 of file diagnostic_client.cpp.
|
deletenoexcept |
Deleted copy assignment and copy constructor.
|
deletenoexcept |
Deleted move assignment and move constructor.
|
defaultnoexcept |
Destruct an instance of DiagClient -Destruction.
|
inlinenoexcept |
Function to de-initialize the already initialized instance of DiagClient.
Must be called during shutdown phase, no further processing of any function will be allowed after this call
Definition at line 100 of file diagnostic_client.cpp.
References dcm_instance_, dcm_thread_, FILE_NAME, diag::client::logger::DiagClientLogger::GetDiagClientLogger(), utility::thread::Thread::Join(), diag::client::error_domain::kDeInitializationFailed, and diag::client::error_domain::MakeErrorCode().
|
inlinenoexcept |
Function to get required diag client conversation object based on conversation name.
[in] | conversation_name | Name of conversation configured as json parameter "ConversationName" |
Definition at line 124 of file diagnostic_client.cpp.
References dcm_instance_, FILE_NAME, and diag::client::logger::DiagClientLogger::GetDiagClientLogger().
|
inlinenoexcept |
Function to initialize the already created instance of DiagClient.
Must be called once and before using any other functions of DiagClient
Definition at line 66 of file diagnostic_client.cpp.
References dcm_instance_, dcm_thread_, diag_client_config_path_, FILE_NAME, core_type::Result< T, E >::FromValue(), diag::client::logger::DiagClientLogger::GetDiagClientLogger(), diag::client::error_domain::kInitializationFailed, diag::client::error_domain::MakeErrorCode(), boost_support::parser::Read(), and diag::client::config_parser::ReadDcmClientConfig().
|
deletenoexcept |
|
deletenoexcept |
|
inlinenoexcept |
Function to send vehicle identification request and get the Diagnostic Server list.
[in] | vehicle_info_request | Vehicle information sent along with request |
Definition at line 142 of file diagnostic_client.cpp.
References dcm_instance_, FILE_NAME, and diag::client::logger::DiagClientLogger::GetDiagClientLogger().
|
private |
Unique pointer to dcm client instance.
Definition at line 156 of file diagnostic_client.cpp.
Referenced by DeInitialize(), GetDiagnosticClientConversation(), Initialize(), and SendVehicleIdentificationRequest().
|
private |
Thread to handle dcm client lifecycle.
Definition at line 161 of file diagnostic_client.cpp.
Referenced by DeInitialize(), and Initialize().
|
private |
Store the diag client config path.
Definition at line 166 of file diagnostic_client.cpp.
Referenced by Initialize().