Class to manage Diagnostic Client.
More...
#include <diagnostic_client.h>
Class to manage Diagnostic Client.
Definition at line 25 of file diagnostic_client.h.
◆ VehicleInfoResponseError
Definitions of Vehicle Identification response error code.
Enumerator |
---|
kTransmitFailed | Failure on Transmissions
|
kInvalidParameters | Invalid Parameter passed
|
kNoResponseReceived | No vehicle identification response received
|
Definition at line 30 of file diagnostic_client.h.
32 kInvalidParameters = 1U,
33 kNoResponseReceived = 2U,
◆ DiagClient() [1/3]
diag::client::DiagClient::DiagClient |
( |
std::string_view |
diag_client_config_path | ) |
|
|
explicitnoexcept |
Constructs an instance of DiagClient.
- Parameters
-
[in] | diag_client_config_path | path to diag client config file -Construction |
Definition at line 169 of file diagnostic_client.cpp.
170 :
diag_client_impl_{std::make_unique<DiagClientImpl>(diag_client_config_path)} {}
std::unique_ptr< DiagClientImpl > diag_client_impl_
Unique pointer to diag client implementation.
◆ DiagClient() [2/3]
diag::client::DiagClient::DiagClient |
( |
const DiagClient & |
other | ) |
|
|
deletenoexcept |
Deleted copy assignment and copy constructor.
◆ DiagClient() [3/3]
diag::client::DiagClient::DiagClient |
( |
DiagClient && |
other | ) |
|
|
deletenoexcept |
Deleted move assignment and move constructor.
◆ ~DiagClient()
diag::client::DiagClient::~DiagClient |
( |
| ) |
|
|
defaultnoexcept |
◆ DeInitialize()
Result< void > diag::client::DiagClient::DeInitialize |
( |
| ) |
|
|
noexcept |
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
- Returns
- Result with void in case of success, otherwise error is returned -DeInitialization
Definition at line 176 of file diagnostic_client.cpp.
References diag_client_impl_.
◆ GetDiagnosticClientConversation()
Function to get required diag client conversation object based on conversation name.
- Parameters
-
[in] | conversation_name | Name of conversation configured as json parameter "ConversationName" |
- Returns
- Diag client conversation object -MultipleTester-Connection, DiagClientLib-Conversation-Construction
Definition at line 184 of file diagnostic_client.cpp.
◆ Initialize()
Result< void > diag::client::DiagClient::Initialize |
( |
| ) |
|
|
noexcept |
◆ operator=() [1/2]
◆ operator=() [2/2]
◆ SendVehicleIdentificationRequest()
Function to send vehicle identification request and get the Diagnostic Server list.
- Parameters
-
[in] | vehicle_info_request | Vehicle information sent along with request |
- Returns
- Result containing available vehicle information response on success, VehicleResponseErrorCode on error -VehicleDiscovery
Definition at line 179 of file diagnostic_client.cpp.
181 return diag_client_impl_->SendVehicleIdentificationRequest(std::move(vehicle_info_request));
◆ diag_client_impl_
std::unique_ptr<DiagClientImpl> diag::client::DiagClient::diag_client_impl_ |
|
private |
The documentation for this class was generated from the following files:
- /home/runner/work/diag-client-lib/diag-client-lib/diag-client-lib/appl/include/diag-client/diagnostic_client.h
- /home/runner/work/diag-client-lib/diag-client-lib/diag-client-lib/appl/src/diag-client/diagnostic_client.cpp