69 [](std::stringstream &msg) { msg <<
"DiagClient Initialization started"; });
75 dcm_instance_ = std::make_unique<diag::client::dcm::DCMClient>(
82 [](std::stringstream &msg) { msg <<
"DiagClient Initialization completed"; });
88 [](std::stringstream &msg) { msg <<
"DiagClient Initialization failed"; });
103 [](std::stringstream &msg) { msg <<
"DiagClient De-Initialization started"; });
110 [](std::stringstream &msg) { msg <<
"DiagClient De-Initialization completed"; });
125 std::string_view conversation_name) noexcept {
129 [](std::stringstream &msg) { msg <<
"DiagClient is not Initialized"; });
131 return dcm_instance_->GetDiagnosticClientConversation(conversation_name);
147 [](std::stringstream &msg) { msg <<
"DiagClient is not Initialized"; });
149 return dcm_instance_->SendVehicleIdentificationRequest(std::move(vehicle_info_request));
170 : diag_client_impl_{std::make_unique<DiagClientImpl>(diag_client_config_path)} {}
181 return diag_client_impl_->SendVehicleIdentificationRequest(std::move(vehicle_info_request));
185 std::string_view conversation_name) noexcept {
186 return diag_client_impl_->GetDiagnosticClientConversation(conversation_name);
190 return (std::make_unique<DiagClient>(diag_client_config_path));
Encapsulation of an error code. An ErrorCode contains a raw error code value and an error domain....
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
static Result FromValue(T &t) noexcept
Build a new Result from the specified value (given as lvalue)
Class to provide implementation of diag client.
~DiagClientImpl() noexcept=default
Destruct an instance of DiagClient -Destruction.
Result< void > DeInitialize() noexcept
Function to de-initialize the already initialized instance of DiagClient.
Result< void > Initialize() noexcept
Function to initialize the already created instance of DiagClient.
conversation::DiagClientConversation GetDiagnosticClientConversation(std::string_view conversation_name) noexcept
Function to get required diag client conversation object based on conversation name.
utility::thread::Thread dcm_thread_
Thread to handle dcm client lifecycle.
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.
DiagClientImpl & operator=(const DiagClientImpl &other) noexcept=delete
DiagClientImpl(DiagClientImpl &&other) noexcept=delete
Deleted move assignment and move constructor.
DiagClientImpl(const DiagClientImpl &other) noexcept=delete
Deleted copy assignment and copy constructor.
DiagClientImpl & operator=(DiagClientImpl &&other) noexcept=delete
DiagClientImpl(std::string_view diag_client_config_path) noexcept
Constructs an instance of DiagClient.
std::unique_ptr< diag::client::common::DiagnosticManager > dcm_instance_
Unique pointer to dcm client instance.
std::string diag_client_config_path_
Store the diag client config path.
Class to manage Diagnostic Client.
Result< void > Initialize() noexcept
Function to initialize the already created instance of DiagClient.
Result< vehicle_info::VehicleInfoMessageResponseUniquePtr, VehicleInfoResponseError > SendVehicleIdentificationRequest(diag::client::vehicle_info::VehicleInfoListRequestType vehicle_info_request) noexcept
Function to send vehicle identification request and get the Diagnostic Server list.
std::unique_ptr< DiagClientImpl > diag_client_impl_
Unique pointer to diag client implementation.
DiagClient(std::string_view diag_client_config_path) noexcept
Constructs an instance of DiagClient.
conversation::DiagClientConversation GetDiagnosticClientConversation(std::string_view conversation_name) noexcept
Function to get required diag client conversation object based on conversation name.
~DiagClient() noexcept
Destruct an instance of DiagClient -Destruction.
Result< void > DeInitialize() noexcept
Function to de-initialize the already initialized instance of DiagClient.
Conversation class to establish connection with a Diagnostic Server.
static auto GetDiagClientLogger() noexcept -> DiagClientLogger &
Get the diag client logger instance.
void Join() noexcept
Function to join the running thread.
ParsingErrorCode
Definitions of Parsing failure error codes.
core_type::Result< boost_tree, ParsingErrorCode > Read(std::string_view config_path)
Parser to get the configuration from json file.
boost::property_tree::ptree boost_tree
Type alias for boost property tree.
diag::client::config_parser::DcmClientConfig ReadDcmClientConfig(boost_support::parser::boost_tree &config_tree)
Function to read from config tree and get the DcmClient configuration.
@ kDeInitializationFailed
core_type::ErrorCode MakeErrorCode(DmErrorErrc, core_type::ErrorDomain::SupportDataType data) noexcept
Create a new ErrorCode within DmErrorDomain.
std::unique_ptr< DiagClient > CreateDiagnosticClient(std::string_view diag_client_config_path)
Creates a diagnostic client to communicate with diagnostic server.
Struct containing Vehicle selection mode.