blob: 65b9a163286df3c2052df260ce22bb82fbaa64cb [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Ashlesh Gawande7e3f6d72019-01-25 13:13:43 -06003 * Copyright (c) 2014-2019, The University of Memphis,
Nick Gordonf8b5bcd2016-08-11 15:06:50 -05004 * Regents of the University of California
akmhoque3d06e792014-05-27 16:23:20 -05005 *
6 * This file is part of NLSR (Named-data Link State Routing).
7 * See AUTHORS.md for complete list of NLSR authors and contributors.
8 *
9 * NLSR is free software: you can redistribute it and/or modify it under the terms
10 * of the GNU General Public License as published by the Free Software Foundation,
11 * either version 3 of the License, or (at your option) any later version.
12 *
13 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
akmhoque3d06e792014-05-27 16:23:20 -050019 **/
Ashlesh Gawande415676b2016-12-22 00:26:23 -060020
dmcoomese689dd62017-03-29 11:05:12 -050021#ifndef NLSR_CONF_FILE_PROCESSOR_HPP
22#define NLSR_CONF_FILE_PROCESSOR_HPP
akmhoque53353462014-04-22 08:43:45 -050023
Nick Gordone98480b2017-05-24 11:23:03 -050024#include "common.hpp"
Ashlesh Gawande85998a12017-12-07 22:22:13 -060025#include "conf-parameter.hpp"
Nick Gordond0a7df32017-05-30 16:44:34 -050026
Nick Gordone98480b2017-05-24 11:23:03 -050027#include <boost/algorithm/string.hpp>
28#include <boost/property_tree/info_parser.hpp>
29#include <boost/filesystem.hpp>
akmhoque157b0a42014-05-13 00:26:37 -050030
akmhoque53353462014-04-22 08:43:45 -050031namespace nlsr {
akmhoqueb6450b12014-04-24 00:01:03 -050032
Nick Gordond0a7df32017-05-30 16:44:34 -050033/*! \brief A class containing methods to parse an NLSR configuration file
34 *
35 * This class contains methods to parse an NLSR configuration file and
36 * set all the parameters in NLSR to the received values. There are
37 * defaults for any unconfigured settings.
38 *
39 * This is currently called by the wrapper class NlsrRunner to
40 * populate the NLSR object with its configuration before NLSR is
41 * started.
42 *
43 * \sa nlsr::ConfParameter
44 * \sa NlsrRunner::run
45 */
akmhoque53353462014-04-22 08:43:45 -050046class ConfFileProcessor
47{
48public:
Ashlesh Gawande85998a12017-12-07 22:22:13 -060049 ConfFileProcessor(ConfParameter& confParam);
akmhoque53353462014-04-22 08:43:45 -050050
Nick Gordond0a7df32017-05-30 16:44:34 -050051 /*! \brief Load and parse the configuration file, then populate NLSR.
52 *
53 * Entry-point function that chains all the necessary steps together
54 * to configure an NLSR object.
55 *
56 * \return A boolean for whether configuration was successful.
57 */
akmhoque157b0a42014-05-13 00:26:37 -050058 bool
59 processConfFile();
akmhoque53353462014-04-22 08:43:45 -050060
61private:
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070062 typedef boost::property_tree::ptree ConfigSection;
63
Nick Gordond0a7df32017-05-30 16:44:34 -050064 /*! \brief Parse the configuration file into a tree and process the nodes.
65 *
66 * Reads the configuration file as a property tree, and then iterates
67 * over them, attempting to parse each node. The nodes themselves
68 * are passed to another function that determines what kind of
69 * section it is and handles it appropriately. On any error in
70 * reading the file, return false.
71 *
72 * \return Whether configuration was successful.
73 */
akmhoque157b0a42014-05-13 00:26:37 -050074 bool
75 load(std::istream& input);
akmhoque53353462014-04-22 08:43:45 -050076
Nick Gordond0a7df32017-05-30 16:44:34 -050077 /*! \brief A dispatcher-like function to send configuration tree nodes to the right subfunction.
78 */
akmhoque157b0a42014-05-13 00:26:37 -050079 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070080 processSection(const std::string& sectionName, const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050081
dmcoomescf8d0ed2017-02-21 11:39:01 -060082 /*! \brief Parse general options, including router name, LSA refresh.
Nick Gordond0a7df32017-05-30 16:44:34 -050083 */
akmhoque157b0a42014-05-13 00:26:37 -050084 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070085 processConfSectionGeneral(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050086
Nick Gordond0a7df32017-05-30 16:44:34 -050087 /*! \brief Configure options relating to neighbor configuration and detection.
88 *
89 * Parse options that control NLSR's behavior about neighbors. Such
90 * things include how many hello interests are sent and what their
91 * timeout is, as well as parsing neighbor specifications. Neighbor
92 * Face URIs are parsed and confirmed as valid here by ndn-cxx.
93 */
akmhoque157b0a42014-05-13 00:26:37 -050094 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070095 processConfSectionNeighbors(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050096
Nick Gordond0a7df32017-05-30 16:44:34 -050097 /*! \brief Set the state of hyperbolic routing: off, on, dry-run.
98 */
akmhoque157b0a42014-05-13 00:26:37 -050099 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700100 processConfSectionHyperbolic(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -0500101
Nick Gordond0a7df32017-05-30 16:44:34 -0500102 /*! \brief Set options for the FIB: nexthops per prefix, routing calculation interval.
103 */
akmhoque157b0a42014-05-13 00:26:37 -0500104 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700105 processConfSectionFib(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -0500106
Nick Gordond0a7df32017-05-30 16:44:34 -0500107 /*! \brief Set prefixes that NLSR is supposed to advertise immediately.
108 */
akmhoque157b0a42014-05-13 00:26:37 -0500109 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700110 processConfSectionAdvertising(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -0500111
Nick Gordond0a7df32017-05-30 16:44:34 -0500112 /*! \brief Parse and set rules for the validator.
113 *
114 * This section parses and sets rules for the validators, which
115 * control what criteria Interest and Data need to follow to be
116 * considered valid by this NLSR.
117 */
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700118 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700119 processConfSectionSecurity(const ConfigSection& section);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700120
akmhoque53353462014-04-22 08:43:45 -0500121private:
Nick Gordond0a7df32017-05-30 16:44:34 -0500122 /*! m_confFileName The full path of the configuration file to parse. */
akmhoquefdbddb12014-05-02 18:35:19 -0500123 std::string m_confFileName;
Ashlesh Gawande85998a12017-12-07 22:22:13 -0600124 /*! m_confParam The ConfFileProcessor object to configure as parsing is done. */
125 ConfParameter& m_confParam;
Ashlesh Gawande7e3f6d72019-01-25 13:13:43 -0600126 /*! m_io For canonization of faceUri. */
127 boost::asio::io_service m_io;
akmhoque53353462014-04-22 08:43:45 -0500128};
129
Nick Gordonfad8e252016-08-11 14:21:38 -0500130} // namespace nlsr
dmcoomese689dd62017-03-29 11:05:12 -0500131#endif // NLSR_CONF_FILE_PROCESSOR_HPP