Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014 Regents of the University of California, |
| 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 | * |
| 10 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 11 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 12 | * |
| 13 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 14 | * of the GNU General Public License as published by the Free Software Foundation, |
| 15 | * either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 18 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 19 | * PURPOSE. See the GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 23 | **/ |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 24 | |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 25 | #include "config-file.hpp" |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #include "logger.hpp" |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 27 | |
| 28 | #include <boost/property_tree/info_parser.hpp> |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 29 | #include <fstream> |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 30 | |
| 31 | namespace nfd { |
| 32 | |
| 33 | NFD_LOG_INIT("ConfigFile"); |
| 34 | |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 35 | void |
| 36 | ConfigFile::throwErrorOnUnknownSection(const std::string& filename, |
| 37 | const std::string& sectionName, |
| 38 | const ConfigSection& section, |
| 39 | bool isDryRun) |
| 40 | { |
| 41 | std::string msg = "Error processing configuration file "; |
| 42 | msg += filename; |
| 43 | msg += ": no module subscribed for section \"" + sectionName + "\""; |
| 44 | |
| 45 | throw ConfigFile::Error(msg); |
| 46 | } |
| 47 | |
| 48 | void |
| 49 | ConfigFile::ignoreUnknownSection(const std::string& filename, |
| 50 | const std::string& sectionName, |
| 51 | const ConfigSection& section, |
| 52 | bool isDryRun) |
| 53 | { |
| 54 | // do nothing |
| 55 | } |
| 56 | |
| 57 | ConfigFile::ConfigFile(UnknownConfigSectionHandler unknownSectionCallback) |
| 58 | : m_unknownSectionCallback(unknownSectionCallback) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 59 | { |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | void |
| 63 | ConfigFile::addSectionHandler(const std::string& sectionName, |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 64 | ConfigSectionHandler subscriber) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 65 | { |
| 66 | m_subscriptions[sectionName] = subscriber; |
| 67 | } |
| 68 | |
| 69 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 70 | ConfigFile::parse(const std::string& filename, bool isDryRun) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 71 | { |
| 72 | std::ifstream inputFile; |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 73 | inputFile.open(filename.c_str()); |
| 74 | if (!inputFile.good() || !inputFile.is_open()) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 75 | { |
| 76 | std::string msg = "Failed to read configuration file: "; |
| 77 | msg += filename; |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 78 | throw Error(msg); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 79 | } |
| 80 | parse(inputFile, isDryRun, filename); |
| 81 | inputFile.close(); |
| 82 | } |
| 83 | |
| 84 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 85 | ConfigFile::parse(const std::string& input, bool isDryRun, const std::string& filename) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 86 | { |
| 87 | std::istringstream inputStream(input); |
| 88 | parse(inputStream, isDryRun, filename); |
| 89 | } |
| 90 | |
| 91 | |
| 92 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 93 | ConfigFile::parse(std::istream& input, bool isDryRun, const std::string& filename) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 94 | { |
| 95 | try |
| 96 | { |
| 97 | boost::property_tree::read_info(input, m_global); |
| 98 | } |
| 99 | catch (const boost::property_tree::info_parser_error& error) |
| 100 | { |
| 101 | std::stringstream msg; |
| 102 | msg << "Failed to parse configuration file"; |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 103 | msg << " " << filename; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 104 | msg << " " << error.message() << " line " << error.line(); |
| 105 | throw Error(msg.str()); |
| 106 | } |
| 107 | |
| 108 | process(isDryRun, filename); |
| 109 | } |
| 110 | |
| 111 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 112 | ConfigFile::process(bool isDryRun, const std::string& filename) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 113 | { |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 114 | BOOST_ASSERT(!filename.empty()); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 115 | // NFD_LOG_DEBUG("processing..." << ((isDryRun)?("dry run"):(""))); |
| 116 | |
| 117 | if (m_global.begin() == m_global.end()) |
| 118 | { |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 119 | std::string msg = "Error processing configuration file: "; |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 120 | msg += filename; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 121 | msg += " no data"; |
| 122 | throw Error(msg); |
| 123 | } |
| 124 | |
| 125 | for (ConfigSection::const_iterator i = m_global.begin(); i != m_global.end(); ++i) |
| 126 | { |
| 127 | const std::string& sectionName = i->first; |
| 128 | const ConfigSection& section = i->second; |
| 129 | |
| 130 | SubscriptionTable::iterator subscriberIt = m_subscriptions.find(sectionName); |
| 131 | if (subscriberIt != m_subscriptions.end()) |
| 132 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 133 | ConfigSectionHandler subscriber = subscriberIt->second; |
| 134 | subscriber(section, isDryRun, filename); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 135 | } |
| 136 | else |
| 137 | { |
Steve DiBenedetto | 34c95f7 | 2014-04-17 20:56:00 -0600 | [diff] [blame] | 138 | m_unknownSectionCallback(filename, sectionName, section, isDryRun); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 139 | } |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | } |