Diag-Client-Lib
Classes | Public Member Functions | Private Member Functions | Private Attributes | List of all members
diag::client::conversation_manager::ConversationManager Class Referencefinal

Class to manage all the conversation created from usr request. More...

#include <conversation_manager.h>

Collaboration diagram for diag::client::conversation_manager::ConversationManager:
Collaboration graph
[legend]

Classes

struct  ConversationStorage
 Store Dm conversation. More...
 

Public Member Functions

 ConversationManager (diag::client::config_parser::DcmClientConfig config, diag::client::uds_transport::UdsTransportProtocolManager &uds_transport_mgr) noexcept
 Constructs an instance of ConversationManager. More...
 
 ~ConversationManager () noexcept=default
 Destructs an instance of ConversationManager. More...
 
void Startup () noexcept
 Function to start the ConversationManager. More...
 
void Shutdown () noexcept
 Function to shutdown the ConversationManager. More...
 
diag::client::conversation::ConversationGetDiagnosticClientConversation (std::string_view conversation_name) noexcept
 Function to get DM conversation object based on conversation name. More...
 

Private Member Functions

void StoreConversationConfig (diag::client::config_parser::DcmClientConfig &config) noexcept
 Function to store the dcm client configuration internally. More...
 

Private Attributes

uds_transport::UdsTransportProtocolManageruds_transport_mgr_
 Store the reference to uds transport manager. More...
 
std::unordered_map< std::string, ConversationStorageconversation_map_
 Map to store conversation object(dm) along with conversation name. More...
 

Detailed Description

Class to manage all the conversation created from usr request.

Definition at line 29 of file conversation_manager.h.

Constructor & Destructor Documentation

◆ ConversationManager()

diag::client::conversation_manager::ConversationManager::ConversationManager ( diag::client::config_parser::DcmClientConfig  config,
diag::client::uds_transport::UdsTransportProtocolManager uds_transport_mgr 
)
noexcept

Constructs an instance of ConversationManager.

Parameters
[in]configThe configuration of dcm client
[in]uds_transport_mgrThe reference to Uds transport manger

Definition at line 31 of file conversation_manager.cpp.

34  : uds_transport_mgr_{uds_transport_mgr} {
35  // store the conversation config (vd & dm) out of passed config
37 }
void StoreConversationConfig(diag::client::config_parser::DcmClientConfig &config) noexcept
Function to store the dcm client configuration internally.
uds_transport::UdsTransportProtocolManager & uds_transport_mgr_
Store the reference to uds transport manager.

◆ ~ConversationManager()

diag::client::conversation_manager::ConversationManager::~ConversationManager ( )
defaultnoexcept

Destructs an instance of ConversationManager.

Member Function Documentation

◆ GetDiagnosticClientConversation()

diag::client::conversation::Conversation & diag::client::conversation_manager::ConversationManager::GetDiagnosticClientConversation ( std::string_view  conversation_name)
noexcept

Function to get DM conversation object based on conversation name.

Parameters
[in]conversation_nameThe conversation name
Returns
The reference to diag client conversation as per provided conversation name

Definition at line 61 of file conversation_manager.cpp.

62  {
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(
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(
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 }
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
::uds_transport::UdsTransportProtocolHandler & GetTransportProtocolHandler()
virtual std::unique_ptr< Connection > CreateUdpConnection(ConversionHandler &conversion_handler, std::string_view udpIpaddress, uint16_t portNum)=0
Function to create a new Udp connection.
virtual std::unique_ptr< Connection > CreateTcpConnection(ConversionHandler &conversion_handler, std::string_view tcpIpaddress, uint16_t portNum)=0
Function to create a new Tcp connection.
#define FILE_NAME
Definition: file_path.h:14

References FILE_NAME, and diag::client::logger::DiagClientLogger::GetDiagClientLogger().

Here is the call graph for this function:

◆ Shutdown()

void diag::client::conversation_manager::ConversationManager::Shutdown ( )
noexcept

Function to shutdown the ConversationManager.

Definition at line 41 of file conversation_manager.cpp.

41  {
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 }

References conversation_map_, FILE_NAME, diag::client::logger::DiagClientLogger::GetDiagClientLogger(), and diag::client::conversation::Conversation::kInactive.

Referenced by diag::client::dcm::DCMClient::Shutdown().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Startup()

void diag::client::conversation_manager::ConversationManager::Startup ( )
noexcept

Function to start the ConversationManager.

Definition at line 39 of file conversation_manager.cpp.

39 {}

◆ StoreConversationConfig()

void diag::client::conversation_manager::ConversationManager::StoreConversationConfig ( diag::client::config_parser::DcmClientConfig config)
privatenoexcept

Function to store the dcm client configuration internally.

Parameters
[in]configThe Dcm client configuration

Definition at line 106 of file conversation_manager.cpp.

107  {
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
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 }
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.
std::vector< ConversationType > conversations

References diag::client::conversation_manager::anonymous_namespace{conversation_manager.cpp}::kRandomPortNumber, diag::client::conversation_manager::anonymous_namespace{conversation_manager.cpp}::kVdConversationName, diag::client::conversation::DMConversationType::rx_buffer_size, and diag::client::conversation::VDConversationType::udp_address.

Member Data Documentation

◆ conversation_map_

std::unordered_map<std::string, ConversationStorage> diag::client::conversation_manager::ConversationManager::conversation_map_
private

Map to store conversation object(dm) along with conversation name.

Pair of Conversation name and Conversation Object

Definition at line 92 of file conversation_manager.h.

Referenced by Shutdown().

◆ uds_transport_mgr_

uds_transport::UdsTransportProtocolManager& diag::client::conversation_manager::ConversationManager::uds_transport_mgr_
private

Store the reference to uds transport manager.

Definition at line 86 of file conversation_manager.h.


The documentation for this class was generated from the following files: