Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame^] | 3 | * Copyright (c) 2014-2016, 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 | |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 26 | #include "config-file.hpp" |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 27 | #include "logger.hpp" |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 28 | |
| 29 | #include <boost/property_tree/info_parser.hpp> |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 30 | #include <fstream> |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 31 | |
| 32 | namespace nfd { |
| 33 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 34 | ConfigFile::ConfigFile(UnknownConfigSectionHandler unknownSectionCallback) |
| 35 | : m_unknownSectionCallback(unknownSectionCallback) |
| 36 | { |
| 37 | } |
| 38 | |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 39 | void |
| 40 | ConfigFile::throwErrorOnUnknownSection(const std::string& filename, |
| 41 | const std::string& sectionName, |
| 42 | const ConfigSection& section, |
| 43 | bool isDryRun) |
| 44 | { |
| 45 | std::string msg = "Error processing configuration file "; |
| 46 | msg += filename; |
| 47 | msg += ": no module subscribed for section \"" + sectionName + "\""; |
| 48 | |
Spyridon Mastorakis | 149e02c | 2015-07-27 13:22:22 -0700 | [diff] [blame] | 49 | BOOST_THROW_EXCEPTION(ConfigFile::Error(msg)); |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | void |
| 53 | ConfigFile::ignoreUnknownSection(const std::string& filename, |
| 54 | const std::string& sectionName, |
| 55 | const ConfigSection& section, |
| 56 | bool isDryRun) |
| 57 | { |
| 58 | // do nothing |
| 59 | } |
| 60 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 61 | bool |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame^] | 62 | ConfigFile::parseYesNo(const ConfigSection& node, const std::string& key, |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 63 | const std::string& sectionName) |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 64 | { |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame^] | 65 | auto value = node.get_value<std::string>(); |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 66 | |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 67 | if (value == "yes") { |
| 68 | return true; |
| 69 | } |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 70 | else if (value == "no") { |
Yanbiao Li | 698f4fe | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 71 | return false; |
| 72 | } |
| 73 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 74 | BOOST_THROW_EXCEPTION(Error("Invalid value \"" + value + "\" for option \"" + |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame^] | 75 | key + "\" in \"" + sectionName + "\" section")); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | void |
| 79 | ConfigFile::addSectionHandler(const std::string& sectionName, |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 80 | ConfigSectionHandler subscriber) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 81 | { |
| 82 | m_subscriptions[sectionName] = subscriber; |
| 83 | } |
| 84 | |
| 85 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 86 | ConfigFile::parse(const std::string& filename, bool isDryRun) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 87 | { |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame^] | 88 | std::ifstream inputFile(filename); |
| 89 | if (!inputFile.good() || !inputFile.is_open()) { |
| 90 | BOOST_THROW_EXCEPTION(Error("Failed to read configuration file: " + filename)); |
| 91 | } |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 92 | parse(inputFile, isDryRun, filename); |
| 93 | inputFile.close(); |
| 94 | } |
| 95 | |
| 96 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 97 | ConfigFile::parse(const std::string& input, bool isDryRun, const std::string& filename) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 98 | { |
| 99 | std::istringstream inputStream(input); |
| 100 | parse(inputStream, isDryRun, filename); |
| 101 | } |
| 102 | |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 103 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 104 | ConfigFile::parse(std::istream& input, bool isDryRun, const std::string& filename) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 105 | { |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame^] | 106 | try { |
| 107 | boost::property_tree::read_info(input, m_global); |
| 108 | } |
| 109 | catch (const boost::property_tree::info_parser_error& error) { |
| 110 | std::stringstream msg; |
| 111 | msg << "Failed to parse configuration file"; |
| 112 | msg << " " << filename; |
| 113 | msg << " " << error.message() << " line " << error.line(); |
| 114 | BOOST_THROW_EXCEPTION(Error(msg.str())); |
| 115 | } |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 116 | |
| 117 | process(isDryRun, filename); |
| 118 | } |
| 119 | |
| 120 | void |
Alexander Afanasyev | c0273e3 | 2015-01-06 13:05:50 -0800 | [diff] [blame] | 121 | ConfigFile::parse(const ConfigSection& config, bool isDryRun, const std::string& filename) |
| 122 | { |
| 123 | m_global = config; |
| 124 | process(isDryRun, filename); |
| 125 | } |
| 126 | |
| 127 | void |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 128 | ConfigFile::process(bool isDryRun, const std::string& filename) const |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 129 | { |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 130 | BOOST_ASSERT(!filename.empty()); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 131 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 132 | if (m_global.begin() == m_global.end()) { |
| 133 | std::string msg = "Error processing configuration file: "; |
| 134 | msg += filename; |
| 135 | msg += " no data"; |
| 136 | BOOST_THROW_EXCEPTION(Error(msg)); |
| 137 | } |
| 138 | |
| 139 | for (const auto& i : m_global) { |
| 140 | try { |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame^] | 141 | const ConfigSectionHandler& subscriber = m_subscriptions.at(i.first); |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 142 | subscriber(i.second, isDryRun, filename); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 143 | } |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 144 | catch (const std::out_of_range&) { |
| 145 | m_unknownSectionCallback(filename, i.first, i.second, isDryRun); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 146 | } |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 147 | } |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame^] | 150 | } // namespace nfd |