Diag-Client-Lib
conversation_manager.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 */
10 
14 
15 namespace diag {
16 namespace client {
17 namespace conversation_manager {
18 namespace {
19 
23 constexpr std::uint16_t kRandomPortNumber{0u};
24 
28 constexpr std::string_view kVdConversationName{"VdConversation"};
29 } // namespace
30 
34  : uds_transport_mgr_{uds_transport_mgr} {
35  // store the conversation config (vd & dm) out of passed config
36  StoreConversationConfig(config);
37 }
38 
39 void ConversationManager::Startup() noexcept {}
40 
42  // Loop through available conversation and check if already in shutdown state
43  for (std::unordered_map<std::string, ConversationStorage>::value_type const &conversation:
45  if (conversation.second.conversation != nullptr) {
46  if (conversation.second.conversation->GetActivityStatus() !=
48  // Shutdown is not called on the conversation by user, log warning and perform shutdown
50  FILE_NAME, __LINE__, "", [&conversation](std::stringstream &msg) {
51  msg << "'" << conversation.first << "'"
52  << "-> "
53  << "Shutdown is not triggered by user, will be shutdown forcefully";
54  });
55  conversation.second.conversation->Shutdown();
56  }
57  }
58  }
59 }
60 
62  std::string_view conversation_name) noexcept {
63  // find the conversation from config stored
64  auto it = conversation_map_.find(std::string{conversation_name});
65  if (it != conversation_map_.end()) {
66  std::string const conversation_name_in_map{it->first};
67  it->second.conversation =
69  [this, &conversation_name_in_map](
70  conversation::DMConversationType conversation_type) noexcept {
71  // Create the conversation
72  std::unique_ptr<diag::client::conversation::Conversation> conversation{
73  std::make_unique<diag::client::conversation::DmConversation>(
74  conversation_name_in_map, conversation_type)};
75  // Register the connection
76  conversation->RegisterConnection(
77  uds_transport_mgr_.GetTransportProtocolHandler().CreateTcpConnection(
78  conversation->GetConversationHandler(),
79  conversation_type.tcp_address, conversation_type.port_num));
80  return conversation;
81  },
82  [this, &conversation_name_in_map](
83  conversation::VDConversationType conversation_type) noexcept {
84  // Create the conversation
85  std::unique_ptr<diag::client::conversation::Conversation> conversation{
86  std::make_unique<diag::client::conversation::VdConversation>(
87  conversation_name_in_map, conversation_type)};
88  // Register the connection
89  conversation->RegisterConnection(
90  uds_transport_mgr_.GetTransportProtocolHandler().CreateUdpConnection(
91  conversation->GetConversationHandler(),
92  conversation_type.udp_address, conversation_type.port_num));
93  return conversation;
94  }},
95  it->second.conversation_type);
96  } else {
97  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogFatalAndTerminate(
98  FILE_NAME, __LINE__, __func__, [conversation_name](std::stringstream &msg) {
99  msg << "Invalid conversation name: '" << conversation_name
100  << "', provide correct name as per config file";
101  });
102  }
103  return *(it->second.conversation);
104 }
105 
108  { // Create Vehicle discovery config
109  conversation::VDConversationType conversion_identifier{};
110  conversion_identifier.udp_address = config.udp_ip_address;
111  conversion_identifier.udp_broadcast_address = config.udp_broadcast_address;
112  conversion_identifier.port_num = kRandomPortNumber; // random selection of port number
113  conversation_map_.emplace(kVdConversationName,
114  ConversationStorage{conversion_identifier, nullptr});
115  }
116 
117  { // Create Conversation config
118  for (std::uint8_t conv_count{0U}; conv_count < config.num_of_conversation; conv_count++) {
119  conversation::DMConversationType conversion_identifier{};
120  conversion_identifier.rx_buffer_size = config.conversations[conv_count].rx_buffer_size;
121  conversion_identifier.p2_client_max = config.conversations[conv_count].p2_client_max;
122  conversion_identifier.p2_star_client_max =
123  config.conversations[conv_count].p2_star_client_max;
124  conversion_identifier.source_address = config.conversations[conv_count].source_address;
125  conversion_identifier.tcp_address = config.conversations[conv_count].network.tcp_ip_address;
126  conversion_identifier.port_num = kRandomPortNumber; // random selection of port number
127  conversation_map_.emplace(config.conversations[conv_count].conversation_name,
128  ConversationStorage{conversion_identifier, nullptr});
129  }
130  }
131 }
132 
133 } // namespace conversation_manager
134 } // namespace client
135 } // namespace diag
Interface for diag client conversation.
Definition: conversation.h:24
void StoreConversationConfig(diag::client::config_parser::DcmClientConfig &config) noexcept
Function to store the dcm client configuration internally.
diag::client::conversation::Conversation & GetDiagnosticClientConversation(std::string_view conversation_name) noexcept
Function to get DM conversation object based on conversation name.
void Shutdown() noexcept
Function to shutdown the ConversationManager.
ConversationManager(diag::client::config_parser::DcmClientConfig config, diag::client::uds_transport::UdsTransportProtocolManager &uds_transport_mgr) noexcept
Constructs an instance of ConversationManager.
void Startup() noexcept
Function to start the ConversationManager.
std::unordered_map< std::string, ConversationStorage > conversation_map_
Map to store conversation object(dm) along with conversation name.
static auto GetDiagClientLogger() noexcept -> DiagClientLogger &
Get the diag client logger instance.
Definition: logger.h:32
#define FILE_NAME
Definition: file_path.h:14
constexpr std::string_view kVdConversationName
The conversation name for Vehicle discovery.
constexpr std::uint16_t kRandomPortNumber
Needed to create random port number from client side.
Structure containing DM conversation type.
std::uint32_t rx_buffer_size
The reception buffer size type.
Structure containing VD conversation type.
std::string udp_address
The Udp IP address of conversation.