blob: 0bcb7e8a26e7704af4f689b97191c7766c4c29e5 [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"
Nick Gordond0a7df32017-05-30 16:44:34 -050025#include "nlsr.hpp"
26
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:
akmhoquefdbddb12014-05-02 18:35:19 -050049 ConfFileProcessor(Nlsr& nlsr, const std::string& cfile)
akmhoqueb6450b12014-04-24 00:01:03 -050050 : m_confFileName(cfile)
51 , m_nlsr(nlsr)
akmhoque53353462014-04-22 08:43:45 -050052 {
53 }
54
Nick Gordond0a7df32017-05-30 16:44:34 -050055 /*! \brief Load and parse the configuration file, then populate NLSR.
56 *
57 * Entry-point function that chains all the necessary steps together
58 * to configure an NLSR object.
59 *
60 * \return A boolean for whether configuration was successful.
61 */
akmhoque157b0a42014-05-13 00:26:37 -050062 bool
63 processConfFile();
akmhoque53353462014-04-22 08:43:45 -050064
65private:
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070066 typedef boost::property_tree::ptree ConfigSection;
67
Nick Gordond0a7df32017-05-30 16:44:34 -050068 /*! \brief Parse the configuration file into a tree and process the nodes.
69 *
70 * Reads the configuration file as a property tree, and then iterates
71 * over them, attempting to parse each node. The nodes themselves
72 * are passed to another function that determines what kind of
73 * section it is and handles it appropriately. On any error in
74 * reading the file, return false.
75 *
76 * \return Whether configuration was successful.
77 */
akmhoque157b0a42014-05-13 00:26:37 -050078 bool
79 load(std::istream& input);
akmhoque53353462014-04-22 08:43:45 -050080
Nick Gordond0a7df32017-05-30 16:44:34 -050081 /*! \brief A dispatcher-like function to send configuration tree nodes to the right subfunction.
82 */
akmhoque157b0a42014-05-13 00:26:37 -050083 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070084 processSection(const std::string& sectionName, const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050085
dmcoomescf8d0ed2017-02-21 11:39:01 -060086 /*! \brief Parse general options, including router name, LSA refresh.
Nick Gordond0a7df32017-05-30 16:44:34 -050087 */
akmhoque157b0a42014-05-13 00:26:37 -050088 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070089 processConfSectionGeneral(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050090
Nick Gordond0a7df32017-05-30 16:44:34 -050091 /*! \brief Configure options relating to neighbor configuration and detection.
92 *
93 * Parse options that control NLSR's behavior about neighbors. Such
94 * things include how many hello interests are sent and what their
95 * timeout is, as well as parsing neighbor specifications. Neighbor
96 * Face URIs are parsed and confirmed as valid here by ndn-cxx.
97 */
akmhoque157b0a42014-05-13 00:26:37 -050098 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070099 processConfSectionNeighbors(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -0500100
Nick Gordond0a7df32017-05-30 16:44:34 -0500101 /*! \brief Set the state of hyperbolic routing: off, on, dry-run.
102 */
akmhoque157b0a42014-05-13 00:26:37 -0500103 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700104 processConfSectionHyperbolic(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -0500105
Nick Gordond0a7df32017-05-30 16:44:34 -0500106 /*! \brief Set options for the FIB: nexthops per prefix, routing calculation interval.
107 */
akmhoque157b0a42014-05-13 00:26:37 -0500108 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700109 processConfSectionFib(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -0500110
Nick Gordond0a7df32017-05-30 16:44:34 -0500111 /*! \brief Set prefixes that NLSR is supposed to advertise immediately.
112 */
akmhoque157b0a42014-05-13 00:26:37 -0500113 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700114 processConfSectionAdvertising(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -0500115
Nick Gordond0a7df32017-05-30 16:44:34 -0500116 /*! \brief Parse and set rules for the validator.
117 *
118 * This section parses and sets rules for the validators, which
119 * control what criteria Interest and Data need to follow to be
120 * considered valid by this NLSR.
121 */
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700122 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -0700123 processConfSectionSecurity(const ConfigSection& section);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -0700124
akmhoque53353462014-04-22 08:43:45 -0500125private:
Nick Gordond0a7df32017-05-30 16:44:34 -0500126 /*! m_confFileName The full path of the configuration file to parse. */
akmhoquefdbddb12014-05-02 18:35:19 -0500127 std::string m_confFileName;
Nick Gordond0a7df32017-05-30 16:44:34 -0500128 /*! m_nlsr The NLSR object to configure upon successful parsing. */
akmhoqueb6450b12014-04-24 00:01:03 -0500129 Nlsr& m_nlsr;
Ashlesh Gawande7e3f6d72019-01-25 13:13:43 -0600130 /*! m_io For canonization of faceUri. */
131 boost::asio::io_service m_io;
akmhoque53353462014-04-22 08:43:45 -0500132};
133
Nick Gordonfad8e252016-08-11 14:21:38 -0500134} // namespace nlsr
dmcoomese689dd62017-03-29 11:05:12 -0500135#endif // NLSR_CONF_FILE_PROCESSOR_HPP