Diag-Client-Lib
json_parser.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 
10 
12 
13 namespace boost_support {
14 namespace parser {
15 
18  // Get the tree with configuration details
19  try {
20  boost_tree json_tree{};
21  boost::property_tree::read_json(std::string{config_path}, json_tree);
22  parse_result.EmplaceValue(json_tree);
23  } catch (boost::property_tree::json_parser_error &error) {
24  parse_result.EmplaceError(ParsingErrorCode::kError);
26  FILE_NAME, __LINE__, __func__, [&error](std::stringstream &msg) {
27  msg << "Reading of config failed with error: " << error.message();
28  });
29  }
30  return parse_result;
31 }
32 
33 } // namespace parser
34 } // namespace boost_support
static auto GetLibBoostLogger() noexcept -> LibBoostLogger &
Definition: logger.h:20
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Definition: result.h:29
#define FILE_NAME
Definition: file_path.h:14
core_type::Result< boost_tree, ParsingErrorCode > Read(std::string_view config_path)
Parser to get the configuration from json file.
Definition: json_parser.cpp:16
boost::property_tree::ptree boost_tree
Type alias for boost property tree.
Definition: json_parser.h:23