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 | |
| 35 | ConfigFile::ConfigFile() |
| 36 | { |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | void |
| 40 | ConfigFile::addSectionHandler(const std::string& sectionName, |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 41 | ConfigSectionHandler subscriber) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 42 | { |
| 43 | m_subscriptions[sectionName] = subscriber; |
| 44 | } |
| 45 | |
| 46 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 47 | ConfigFile::parse(const std::string& filename, bool isDryRun) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 48 | { |
| 49 | std::ifstream inputFile; |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 50 | inputFile.open(filename.c_str()); |
| 51 | if (!inputFile.good() || !inputFile.is_open()) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 52 | { |
| 53 | std::string msg = "Failed to read configuration file: "; |
| 54 | msg += filename; |
Steve DiBenedetto | 2c2b889 | 2014-02-27 11:46:48 -0700 | [diff] [blame] | 55 | throw Error(msg); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 56 | } |
| 57 | parse(inputFile, isDryRun, filename); |
| 58 | inputFile.close(); |
| 59 | } |
| 60 | |
| 61 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 62 | ConfigFile::parse(const std::string& input, bool isDryRun, const std::string& filename) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 63 | { |
| 64 | std::istringstream inputStream(input); |
| 65 | parse(inputStream, isDryRun, filename); |
| 66 | } |
| 67 | |
| 68 | |
| 69 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 70 | ConfigFile::parse(std::istream& input, bool isDryRun, const std::string& filename) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 71 | { |
| 72 | try |
| 73 | { |
| 74 | boost::property_tree::read_info(input, m_global); |
| 75 | } |
| 76 | catch (const boost::property_tree::info_parser_error& error) |
| 77 | { |
| 78 | std::stringstream msg; |
| 79 | msg << "Failed to parse configuration file"; |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 80 | msg << " " << filename; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 81 | msg << " " << error.message() << " line " << error.line(); |
| 82 | throw Error(msg.str()); |
| 83 | } |
| 84 | |
| 85 | process(isDryRun, filename); |
| 86 | } |
| 87 | |
| 88 | void |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 89 | ConfigFile::process(bool isDryRun, const std::string& filename) |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 90 | { |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 91 | BOOST_ASSERT(!filename.empty()); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 92 | // NFD_LOG_DEBUG("processing..." << ((isDryRun)?("dry run"):(""))); |
| 93 | |
| 94 | if (m_global.begin() == m_global.end()) |
| 95 | { |
| 96 | std::string msg = "Error processing configuration file"; |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 97 | msg += ": "; |
| 98 | msg += filename; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 99 | msg += " no data"; |
| 100 | throw Error(msg); |
| 101 | } |
| 102 | |
| 103 | for (ConfigSection::const_iterator i = m_global.begin(); i != m_global.end(); ++i) |
| 104 | { |
| 105 | const std::string& sectionName = i->first; |
| 106 | const ConfigSection& section = i->second; |
| 107 | |
| 108 | SubscriptionTable::iterator subscriberIt = m_subscriptions.find(sectionName); |
| 109 | if (subscriberIt != m_subscriptions.end()) |
| 110 | { |
Steve DiBenedetto | 1a3c673 | 2014-03-13 06:44:05 -0600 | [diff] [blame] | 111 | ConfigSectionHandler subscriber = subscriberIt->second; |
| 112 | subscriber(section, isDryRun, filename); |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 113 | } |
| 114 | else |
| 115 | { |
| 116 | std::string msg = "Error processing configuration file"; |
Steve DiBenedetto | 84da5bf | 2014-03-11 14:51:29 -0600 | [diff] [blame] | 117 | msg += " "; |
| 118 | msg += filename; |
Steve DiBenedetto | bb75b55 | 2014-02-08 12:12:11 -0700 | [diff] [blame] | 119 | msg += " no module subscribed for section: " + sectionName; |
| 120 | throw Error(msg); |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | } |