17 namespace conversation_manager {
34 : uds_transport_mgr_{uds_transport_mgr} {
36 StoreConversationConfig(config);
43 for (std::unordered_map<std::string, ConversationStorage>::value_type
const &conversation:
45 if (conversation.second.conversation !=
nullptr) {
46 if (conversation.second.conversation->GetActivityStatus() !=
50 FILE_NAME, __LINE__,
"", [&conversation](std::stringstream &msg) {
51 msg <<
"'" << conversation.first <<
"'"
53 <<
"Shutdown is not triggered by user, will be shutdown forcefully";
55 conversation.second.conversation->Shutdown();
62 std::string_view conversation_name) noexcept {
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](
72 std::unique_ptr<diag::client::conversation::Conversation> conversation{
73 std::make_unique<diag::client::conversation::DmConversation>(
74 conversation_name_in_map, conversation_type)};
76 conversation->RegisterConnection(
77 uds_transport_mgr_.GetTransportProtocolHandler().CreateTcpConnection(
78 conversation->GetConversationHandler(),
79 conversation_type.tcp_address, conversation_type.port_num));
82 [
this, &conversation_name_in_map](
85 std::unique_ptr<diag::client::conversation::Conversation> conversation{
86 std::make_unique<diag::client::conversation::VdConversation>(
87 conversation_name_in_map, conversation_type)};
89 conversation->RegisterConnection(
90 uds_transport_mgr_.GetTransportProtocolHandler().CreateUdpConnection(
91 conversation->GetConversationHandler(),
92 conversation_type.udp_address, conversation_type.port_num));
95 it->second.conversation_type);
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";
103 return *(it->second.conversation);
110 conversion_identifier.
udp_address = config.udp_ip_address;
111 conversion_identifier.udp_broadcast_address = config.udp_broadcast_address;
118 for (std::uint8_t conv_count{0U}; conv_count < config.num_of_conversation; conv_count++) {
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;
127 conversation_map_.emplace(config.conversations[conv_count].conversation_name,
Interface for diag client conversation.
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.
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.