Diag-Client-Lib
dcm_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  */
8 /* includes */
9 #include "dcm_client.h"
10 
11 #include <optional>
12 
14 
15 namespace diag {
16 namespace client {
17 namespace dcm {
18 namespace {
19 
23 std::optional<std::reference_wrapper<conversation_manager::ConversationManager>>
25 
29 constexpr std::string_view VehicleDiscoveryConversation{"VdConversation"};
30 } // namespace
31 
33  : DiagnosticManager{},
34  uds_transport_protocol_mgr_{std::make_unique<uds_transport::UdsTransportProtocolManager>()},
35  conversation_mgr_{std::move(dcm_client_config), *uds_transport_protocol_mgr_},
36  vehicle_discovery_conversation_{
37  conversation_mgr_.GetDiagnosticClientConversation(VehicleDiscoveryConversation)} {
38  // make the conversation manager reference available externally
40 }
41 
42 DCMClient::~DCMClient() noexcept = default;
43 
44 void DCMClient::Initialize() noexcept {
45  // start Conversation Manager
46  conversation_mgr_.Startup();
47  // start all the udsTransportProtocol Layer
48  uds_transport_protocol_mgr_->Startup();
49  // start Vehicle Discovery
50  vehicle_discovery_conversation_.Startup();
51 
53  FILE_NAME, __LINE__, __func__,
54  [](std::stringstream &msg) { msg << "Dcm Client Initialized"; });
55 }
56 
57 void DCMClient::Run() noexcept {
58  // run udsTransportProtocol layer
61  FILE_NAME, __LINE__, __func__,
62  [](std::stringstream &msg) { msg << "Dcm Client is ready to serve"; });
63 }
64 
65 void DCMClient::Shutdown() noexcept {
66  // shutdown Vehicle Discovery
68  // shutdown udsTransportProtocol layer
69  uds_transport_protocol_mgr_->Shutdown();
70  // shutdown Conversation Manager
72 
74  FILE_NAME, __LINE__, __func__,
75  [](std::stringstream &msg) { msg << "Dcm Client Shutdown completed"; });
76 }
77 
79  std::string_view conversation_name) noexcept {
80  return conversation::DiagClientConversation{conversation_name};
81 }
82 
86  diag::client::vehicle_info::VehicleInfoListRequestType vehicle_info_request) noexcept {
87  return vehicle_discovery_conversation_.SendVehicleIdentificationRequest(vehicle_info_request);
88 }
89 
90 auto GetConversationManager() noexcept -> conversation_manager::ConversationManager & {
91  if (!conversation_manager_ref.has_value()) {
92  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogFatalAndTerminate(
93  FILE_NAME, __LINE__, "",
94  [](std::stringstream &msg) { msg << "DiagClient is not Initialized"; });
95  }
96  return conversation_manager_ref.value();
97 }
98 
99 } // namespace dcm
100 } // namespace client
101 } // namespace diag
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29
VehicleInfoResponseError
Definitions of Vehicle Identification response error code.
virtual void Shutdown() noexcept=0
Function to shutdown the Conversation.
Conversation class to establish connection with a Diagnostic Server.
void Shutdown() noexcept
Function to shutdown the ConversationManager.
Class to create Diagnostic Manager Client functionality.
Definition: dcm_client.h:26
std::unique_ptr< uds_transport::UdsTransportProtocolManager > uds_transport_protocol_mgr_
Stores the uds transport protocol manager.
Definition: dcm_client.h:91
DCMClient(config_parser::DcmClientConfig dcm_client_config)
Constructs an instance of DCMClient.
Definition: dcm_client.cpp:32
void Shutdown() noexcept override
Function to shutdown the DCMClient.
Definition: dcm_client.cpp:65
conversation_manager::ConversationManager conversation_mgr_
Stores the conversation manager instance.
Definition: dcm_client.h:96
void Run() noexcept override
Function to run DCMClient.
Definition: dcm_client.cpp:57
~DCMClient() noexcept override
Destructs an instance of DCMClient.
conversation::DiagClientConversation GetDiagnosticClientConversation(std::string_view conversation_name) noexcept override
Function to get required diag client conversation object based on conversation name.
Definition: dcm_client.cpp:78
conversation::Conversation & vehicle_discovery_conversation_
Store the conversation for vehicle discovery.
Definition: dcm_client.h:101
core_type::Result< diag::client::vehicle_info::VehicleInfoMessageResponseUniquePtr, DiagClient::VehicleInfoResponseError > SendVehicleIdentificationRequest(diag::client::vehicle_info::VehicleInfoListRequestType vehicle_info_request) noexcept override
Function to send vehicle identification request and get the Diagnostic Server list.
Definition: dcm_client.cpp:85
static auto GetDiagClientLogger() noexcept -> DiagClientLogger &
Get the diag client logger instance.
Definition: logger.h:32
#define FILE_NAME
Definition: file_path.h:14
std::optional< std::reference_wrapper< conversation_manager::ConversationManager > > conversation_manager_ref
Store the conversation manager reference optionally.
Definition: dcm_client.cpp:24
constexpr std::string_view VehicleDiscoveryConversation
String representing of vehicle discovery conversation name.
Definition: dcm_client.cpp:29
auto GetConversationManager() noexcept -> conversation_manager::ConversationManager &
Function to get the reference to conversation manager.
Definition: dcm_client.cpp:90
std::unique_ptr< VehicleInfoMessage > VehicleInfoMessageResponseUniquePtr
The unique_ptr for Vehicle Identification Response Message.