blob: ae9102e0c4e7e7708e27394084e1d0376301e55e [file] [log] [blame]
Steve DiBenedettobb75b552014-02-08 12:12:11 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * 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 DiBenedettobb75b552014-02-08 12:12:11 -070024
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070025#ifndef NFD_CORE_CONFIG_FILE_HPP
26#define NFD_CORE_CONFIG_FILE_HPP
Steve DiBenedettobb75b552014-02-08 12:12:11 -070027
28#include "common.hpp"
29
30#include <boost/property_tree/ptree.hpp>
31
32namespace nfd {
33
34typedef boost::property_tree::ptree ConfigSection;
35
36/// \brief callback for config file sections
Steve DiBenedetto34c95f72014-04-17 20:56:00 -060037typedef function<void(const ConfigSection& /*section*/,
38 bool /*isDryRun*/,
39 const std::string& /*filename*/)> ConfigSectionHandler;
40
41/// \brief callback for config file sections without a subscribed handler
42typedef function<void(const std::string& /*filename*/,
43 const std::string& /*sectionName*/,
44 const ConfigSection& /*section*/,
45 bool /*isDryRun*/)> UnknownConfigSectionHandler;
Steve DiBenedettobb75b552014-02-08 12:12:11 -070046
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -060047class ConfigFile : noncopyable
Steve DiBenedettobb75b552014-02-08 12:12:11 -070048{
49public:
50
51 class Error : public std::runtime_error
52 {
53 public:
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060054 explicit
Steve DiBenedettobb75b552014-02-08 12:12:11 -070055 Error(const std::string& what)
56 : std::runtime_error(what)
57 {
58
59 }
60 };
61
Steve DiBenedetto34c95f72014-04-17 20:56:00 -060062 ConfigFile(UnknownConfigSectionHandler unknownSectionCallback = throwErrorOnUnknownSection);
63
64 static void
65 throwErrorOnUnknownSection(const std::string& filename,
66 const std::string& sectionName,
67 const ConfigSection& section,
68 bool isDryRun);
69
70 static void
71 ignoreUnknownSection(const std::string& filename,
72 const std::string& sectionName,
73 const ConfigSection& section,
74 bool isDryRun);
Steve DiBenedettobb75b552014-02-08 12:12:11 -070075
Yanbiao Li698f4fe2015-08-19 16:30:16 -070076 /** @brief parse a config option that can be either "yes" or "no"
77 *
78 * @throw ConfigFile::Error value is neither "yes" nor "no"
79 * @return true if "yes", false if "no"
80 */
81 static bool
82 parseYesNo(const ConfigSection::const_iterator& i,
83 const std::string& optionName,
84 const std::string& sectionName);
85
Steve DiBenedettobb75b552014-02-08 12:12:11 -070086 /// \brief setup notification of configuration file sections
87 void
88 addSectionHandler(const std::string& sectionName,
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -060089 ConfigSectionHandler subscriber);
Steve DiBenedettobb75b552014-02-08 12:12:11 -070090
91
92 /**
93 * \param filename file to parse
94 * \param isDryRun true if performing a dry run of configuration, false otherwise
95 * \throws ConfigFile::Error if file not found
96 * \throws ConfigFile::Error if parse error
97 */
98 void
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -060099 parse(const std::string& filename, bool isDryRun);
Steve DiBenedettobb75b552014-02-08 12:12:11 -0700100
101 /**
102 * \param input configuration (as a string) to parse
103 * \param isDryRun true if performing a dry run of configuration, false otherwise
Alexander Afanasyevc0273e32015-01-06 13:05:50 -0800104 * \param filename logical filename of the config file, can appear in error messages
Steve DiBenedettobb75b552014-02-08 12:12:11 -0700105 * \throws ConfigFile::Error if file not found
106 * \throws ConfigFile::Error if parse error
107 */
108 void
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600109 parse(const std::string& input, bool isDryRun, const std::string& filename);
Steve DiBenedettobb75b552014-02-08 12:12:11 -0700110
111 /**
112 * \param input stream to parse
113 * \param isDryRun true if performing a dry run of configuration, false otherwise
Alexander Afanasyevc0273e32015-01-06 13:05:50 -0800114 * \param filename logical filename of the config file, can appear in error messages
Steve DiBenedettobb75b552014-02-08 12:12:11 -0700115 * \throws ConfigFile::Error if parse error
116 */
117 void
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600118 parse(std::istream& input, bool isDryRun, const std::string& filename);
Steve DiBenedettobb75b552014-02-08 12:12:11 -0700119
Alexander Afanasyevc0273e32015-01-06 13:05:50 -0800120 /**
121 * \param config ConfigSection that needs to be processed
122 * \param isDryRun true if performing a dry run of configuration, false otherwise
123 * \param filename logical filename of the config file, can appear in error messages
124 * \throws ConfigFile::Error if parse error
125 */
126 void
127 parse(const ConfigSection& config, bool isDryRun, const std::string& filename);
128
Steve DiBenedettobb75b552014-02-08 12:12:11 -0700129private:
130
131 void
Steve DiBenedetto84da5bf2014-03-11 14:51:29 -0600132 process(bool isDryRun, const std::string& filename);
Steve DiBenedettobb75b552014-02-08 12:12:11 -0700133
134private:
Steve DiBenedetto34c95f72014-04-17 20:56:00 -0600135 UnknownConfigSectionHandler m_unknownSectionCallback;
Steve DiBenedettobb75b552014-02-08 12:12:11 -0700136
Steve DiBenedetto1a3c6732014-03-13 06:44:05 -0600137 typedef std::map<std::string, ConfigSectionHandler> SubscriptionTable;
Steve DiBenedettobb75b552014-02-08 12:12:11 -0700138
139 SubscriptionTable m_subscriptions;
140
141 ConfigSection m_global;
142};
143
144} // namespace nfd
145
146
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700147#endif // NFD_CORE_CONFIG_FILE_HPP