Diag-Client-Lib
config_parser_type.h
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 #ifndef DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONFIG_PARSER_CONFIG_PARSER_TYPE_H
9 #define DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONFIG_PARSER_CONFIG_PARSER_TYPE_H
10 /* includes */
11 #include <string>
12 
14 
15 namespace diag {
16 namespace client {
17 namespace config_parser {
18 
19 // Doip network property type
21  // local tcp address
22  std::string tcp_ip_address;
23  // tls handling (True = secured, False = unsecured)
25 };
26 
27 // Properties of a single conversation
29  // store p2 client timeout
30  std::uint16_t p2_client_max;
31  // store p2 star client timeout
32  std::uint16_t p2_star_client_max;
33  // store receive buffer size
34  std::uint16_t rx_buffer_size;
35  // store source address of client
36  std::uint16_t source_address;
37  // store the client conversation name
38  std::string conversation_name;
39  // store the doip network item
41 };
42 
43 // Properties of diag client configuration
45  // local udp address
46  std::string udp_ip_address;
47  // broadcast address
48  std::string udp_broadcast_address;
49  // number of conversation
50  std::uint8_t num_of_conversation;
51  // store all conversations
52  std::vector<ConversationType> conversations;
53 };
54 
63 
64 } // namespace config_parser
65 } // namespace client
66 } // namespace diag
67 #endif // DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONFIG_PARSER_CONFIG_PARSER_TYPE_H
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.
std::vector< ConversationType > conversations