Diag-Client-Lib
diagnostic_client.cpp
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
9 
10 #include <pthread.h>
11 
12 #include <memory>
13 #include <string>
14 
16 #include "core/include/result.h"
21 #include "utility/thread.h"
22 
23 namespace diag {
24 namespace client {
25 
30  public:
37  explicit DiagClientImpl(std::string_view diag_client_config_path) noexcept
38  : dcm_instance_{},
39  dcm_thread_{},
40  diag_client_config_path_{diag_client_config_path} {}
41 
45  DiagClientImpl(const DiagClientImpl &other) noexcept = delete;
46  DiagClientImpl &operator=(const DiagClientImpl &other) noexcept = delete;
47 
51  DiagClientImpl(DiagClientImpl &&other) noexcept = delete;
52  DiagClientImpl &operator=(DiagClientImpl &&other) noexcept = delete;
53 
58  ~DiagClientImpl() noexcept = default;
59 
66  Result<void> Initialize() noexcept {
68  FILE_NAME, __LINE__, __func__,
69  [](std::stringstream &msg) { msg << "DiagClient Initialization started"; });
70 
71  // read configuration
73  .AndThen([this](boost_support::parser::boost_tree config) {
74  // Create single dcm instance and pass the configuration
75  dcm_instance_ = std::make_unique<diag::client::dcm::DCMClient>(
77  // Start dcm client main thread
78  dcm_thread_ = utility::thread::Thread{"DcmClientMain",
79  [this]() noexcept { dcm_instance_->Main(); }};
81  FILE_NAME, __LINE__, "",
82  [](std::stringstream &msg) { msg << "DiagClient Initialization completed"; });
84  })
85  .MapError([](boost_support::parser::ParsingErrorCode const &) noexcept {
86  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogError(
87  FILE_NAME, __LINE__, "",
88  [](std::stringstream &msg) { msg << "DiagClient Initialization failed"; });
90  });
91  }
92 
101  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
102  FILE_NAME, __LINE__, __func__,
103  [](std::stringstream &msg) { msg << "DiagClient De-Initialization started"; });
104  // shutdown DCM module here
105  return dcm_instance_->SignalShutdown()
106  .AndThen([this]() {
107  dcm_thread_.Join();
108  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
109  FILE_NAME, __LINE__, "",
110  [](std::stringstream &msg) { msg << "DiagClient De-Initialization completed"; });
111  })
112  .OrElse([](core_type::ErrorCode const &) {
114  });
115  }
116 
125  std::string_view conversation_name) noexcept {
126  if (!dcm_instance_) {
127  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogFatalAndTerminate(
128  FILE_NAME, __LINE__, "",
129  [](std::stringstream &msg) { msg << "DiagClient is not Initialized"; });
130  }
131  return dcm_instance_->GetDiagnosticClientConversation(conversation_name);
132  }
133 
143  diag::client::vehicle_info::VehicleInfoListRequestType vehicle_info_request) noexcept {
144  if (!dcm_instance_) {
145  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogFatalAndTerminate(
146  FILE_NAME, __LINE__, "",
147  [](std::stringstream &msg) { msg << "DiagClient is not Initialized"; });
148  }
149  return dcm_instance_->SendVehicleIdentificationRequest(std::move(vehicle_info_request));
150  }
151 
152  private:
156  std::unique_ptr<diag::client::common::DiagnosticManager> dcm_instance_;
157 
162 
167 };
168 
169 DiagClient::DiagClient(std::string_view diag_client_config_path) noexcept
170  : diag_client_impl_{std::make_unique<DiagClientImpl>(diag_client_config_path)} {}
171 
172 DiagClient::~DiagClient() noexcept = default;
173 
174 Result<void> DiagClient::Initialize() noexcept { return diag_client_impl_->Initialize(); }
175 
176 Result<void> DiagClient::DeInitialize() noexcept { return diag_client_impl_->DeInitialize(); }
177 
180  diag::client::vehicle_info::VehicleInfoListRequestType vehicle_info_request) noexcept {
181  return diag_client_impl_->SendVehicleIdentificationRequest(std::move(vehicle_info_request));
182 }
183 
185  std::string_view conversation_name) noexcept {
186  return diag_client_impl_->GetDiagnosticClientConversation(conversation_name);
187 }
188 
189 std::unique_ptr<DiagClient> CreateDiagnosticClient(std::string_view diag_client_config_path) {
190  return (std::make_unique<DiagClient>(diag_client_config_path));
191 }
192 
193 } // namespace client
194 } // namespace diag
Encapsulation of an error code. An ErrorCode contains a raw error code value and an error domain....
Definition: error_code.h:22
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29
static Result FromValue(T &t) noexcept
Build a new Result from the specified value (given as lvalue)
Definition: result.h:48
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.
Definition: logger.h:32
void Join() noexcept
Function to join the running thread.
Definition: thread.h:62
#define FILE_NAME
Definition: file_path.h:14
ParsingErrorCode
Definitions of Parsing failure error codes.
Definition: json_parser.h:28
core_type::Result< boost_tree, ParsingErrorCode > Read(std::string_view config_path)
Parser to get the configuration from json file.
Definition: json_parser.cpp:16
boost::property_tree::ptree boost_tree
Type alias for boost property tree.
Definition: json_parser.h:23
diag::client::config_parser::DcmClientConfig ReadDcmClientConfig(boost_support::parser::boost_tree &config_tree)
Function to read from config tree and get the DcmClient configuration.
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.