Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 24 | */ |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_CORE_CONFIG_FILE_HPP |
| 27 | #define NFD_CORE_CONFIG_FILE_HPP |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 28 | |
| 29 | #include "common.hpp" |
| 30 | |
| 31 | #include <boost/property_tree/ptree.hpp> |
| 32 | |
| 33 | namespace nfd { |
| 34 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 35 | /** \brief a config file section |
| 36 | */ |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 37 | using ConfigSection = boost::property_tree::ptree; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 38 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 39 | /** \brief an optional config file section |
| 40 | */ |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 41 | using OptionalConfigSection = boost::optional<const ConfigSection&>; |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 42 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 43 | /** \brief callback to process a config file section |
| 44 | */ |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 45 | using ConfigSectionHandler = std::function<void(const ConfigSection& section, bool isDryRun, |
| 46 | const std::string& filename)>; |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 47 | |
| 48 | /** \brief callback to process a config file section without a \p ConfigSectionHandler |
| 49 | */ |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 50 | using UnknownConfigSectionHandler = std::function<void(const std::string& filename, |
| 51 | const std::string& sectionName, |
| 52 | const ConfigSection& section, |
| 53 | bool isDryRun)>; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 54 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 55 | /** \brief configuration file parsing utility |
| 56 | */ |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 57 | class ConfigFile : noncopyable |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 58 | { |
| 59 | public: |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 60 | class Error : public std::runtime_error |
| 61 | { |
| 62 | public: |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 63 | explicit |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 64 | Error(const std::string& what) |
| 65 | : std::runtime_error(what) |
| 66 | { |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 67 | } |
| 68 | }; |
| 69 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 70 | explicit |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 71 | ConfigFile(UnknownConfigSectionHandler unknownSectionCallback = throwErrorOnUnknownSection); |
| 72 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 73 | public: // unknown section handlers |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 74 | static void |
| 75 | throwErrorOnUnknownSection(const std::string& filename, |
| 76 | const std::string& sectionName, |
| 77 | const ConfigSection& section, |
| 78 | bool isDryRun); |
| 79 | |
| 80 | static void |
| 81 | ignoreUnknownSection(const std::string& filename, |
| 82 | const std::string& sectionName, |
| 83 | const ConfigSection& section, |
| 84 | bool isDryRun); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 85 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 86 | public: // parse helpers |
| 87 | /** \brief parse a config option that can be either "yes" or "no" |
| 88 | * \retval true "yes" |
| 89 | * \retval false "no" |
| 90 | * \throw Error the value is neither "yes" nor "no" |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 91 | */ |
| 92 | static bool |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 93 | parseYesNo(const ConfigSection& node, const std::string& key, const std::string& sectionName); |
| 94 | |
| 95 | static bool |
| 96 | parseYesNo(const ConfigSection::value_type& option, const std::string& sectionName) |
| 97 | { |
| 98 | return parseYesNo(option.second, option.first, sectionName); |
| 99 | } |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 100 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 101 | /** |
| 102 | * \brief parse a numeric (integral or floating point) config option |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 103 | * \tparam T an arithmetic type |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 104 | * |
| 105 | * \return the numeric value of the parsed option |
| 106 | * \throw Error the value cannot be converted to the specified type |
| 107 | */ |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 108 | template<typename T> |
| 109 | static T |
| 110 | parseNumber(const ConfigSection& node, const std::string& key, const std::string& sectionName) |
| 111 | { |
| 112 | static_assert(std::is_arithmetic<T>::value, "T must be an arithmetic type"); |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 113 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 114 | boost::optional<T> value = node.get_value_optional<T>(); |
| 115 | if (value) { |
| 116 | return *value; |
| 117 | } |
| 118 | BOOST_THROW_EXCEPTION(Error("Invalid value \"" + node.get_value<std::string>() + |
| 119 | "\" for option \"" + key + "\" in \"" + sectionName + "\" section")); |
| 120 | } |
| 121 | |
| 122 | template <typename T> |
| 123 | static T |
| 124 | parseNumber(const ConfigSection::value_type& option, const std::string& sectionName) |
| 125 | { |
| 126 | return parseNumber<T>(option.second, option.first, sectionName); |
| 127 | } |
| 128 | |
| 129 | public: // setup and parsing |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 130 | /// \brief setup notification of configuration file sections |
| 131 | void |
| 132 | addSectionHandler(const std::string& sectionName, |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 133 | ConfigSectionHandler subscriber); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 134 | |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 135 | /** |
| 136 | * \param filename file to parse |
| 137 | * \param isDryRun true if performing a dry run of configuration, false otherwise |
| 138 | * \throws ConfigFile::Error if file not found |
| 139 | * \throws ConfigFile::Error if parse error |
| 140 | */ |
| 141 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 142 | parse(const std::string& filename, bool isDryRun); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 143 | |
| 144 | /** |
| 145 | * \param input configuration (as a string) to parse |
| 146 | * \param isDryRun true if performing a dry run of configuration, false otherwise |
Alexander Afanasyev | c0273e3 | 2015-01-06 13:05:50 -0800 | [diff] [blame] | 147 | * \param filename logical filename of the config file, can appear in error messages |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 148 | * \throws ConfigFile::Error if file not found |
| 149 | * \throws ConfigFile::Error if parse error |
| 150 | */ |
| 151 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 152 | parse(const std::string& input, bool isDryRun, const std::string& filename); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 153 | |
| 154 | /** |
| 155 | * \param input stream to parse |
| 156 | * \param isDryRun true if performing a dry run of configuration, false otherwise |
Alexander Afanasyev | c0273e3 | 2015-01-06 13:05:50 -0800 | [diff] [blame] | 157 | * \param filename logical filename of the config file, can appear in error messages |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 158 | * \throws ConfigFile::Error if parse error |
| 159 | */ |
| 160 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 161 | parse(std::istream& input, bool isDryRun, const std::string& filename); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 162 | |
Alexander Afanasyev | c0273e3 | 2015-01-06 13:05:50 -0800 | [diff] [blame] | 163 | /** |
| 164 | * \param config ConfigSection that needs to be processed |
| 165 | * \param isDryRun true if performing a dry run of configuration, false otherwise |
| 166 | * \param filename logical filename of the config file, can appear in error messages |
| 167 | * \throws ConfigFile::Error if parse error |
| 168 | */ |
| 169 | void |
| 170 | parse(const ConfigSection& config, bool isDryRun, const std::string& filename); |
| 171 | |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 172 | private: |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 173 | void |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 174 | process(bool isDryRun, const std::string& filename) const; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 175 | |
| 176 | private: |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 177 | UnknownConfigSectionHandler m_unknownSectionCallback; |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 178 | std::map<std::string, ConfigSectionHandler> m_subscriptions; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 179 | ConfigSection m_global; |
| 180 | }; |
| 181 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 182 | } // namespace nfd |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 183 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 184 | #endif // NFD_CORE_CONFIG_FILE_HPP |