blob: d6cdcbeedace4d89d2df2cf9f451f80909286817 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonc6a85222017-01-03 16:54:34 -06003 * Copyright (c) 2014-2017, 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
akmhoque157b0a42014-05-13 00:26:37 -050024#include <boost/smart_ptr/shared_ptr.hpp>
25#include <boost/property_tree/ptree.hpp>
akmhoquefdbddb12014-05-02 18:35:19 -050026#include <boost/cstdint.hpp>
akmhoque157b0a42014-05-13 00:26:37 -050027
akmhoque53353462014-04-22 08:43:45 -050028#include "nlsr.hpp"
29
30namespace nlsr {
akmhoqueb6450b12014-04-24 00:01:03 -050031
akmhoque53353462014-04-22 08:43:45 -050032class ConfFileProcessor
33{
34public:
akmhoquefdbddb12014-05-02 18:35:19 -050035 ConfFileProcessor(Nlsr& nlsr, const std::string& cfile)
akmhoqueb6450b12014-04-24 00:01:03 -050036 : m_confFileName(cfile)
37 , m_nlsr(nlsr)
akmhoque53353462014-04-22 08:43:45 -050038 {
39 }
40
akmhoque157b0a42014-05-13 00:26:37 -050041 bool
42 processConfFile();
akmhoque53353462014-04-22 08:43:45 -050043
44private:
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070045 typedef boost::property_tree::ptree ConfigSection;
46
akmhoque157b0a42014-05-13 00:26:37 -050047 bool
48 load(std::istream& input);
akmhoque53353462014-04-22 08:43:45 -050049
akmhoque157b0a42014-05-13 00:26:37 -050050 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070051 processSection(const std::string& sectionName, const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050052
akmhoque157b0a42014-05-13 00:26:37 -050053 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070054 processConfSectionGeneral(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050055
akmhoque157b0a42014-05-13 00:26:37 -050056 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070057 processConfSectionNeighbors(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050058
akmhoque157b0a42014-05-13 00:26:37 -050059 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070060 processConfSectionHyperbolic(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050061
akmhoque157b0a42014-05-13 00:26:37 -050062 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070063 processConfSectionFib(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050064
akmhoque157b0a42014-05-13 00:26:37 -050065 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070066 processConfSectionAdvertising(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050067
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070068 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070069 processConfSectionSecurity(const ConfigSection& section);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070070
akmhoque53353462014-04-22 08:43:45 -050071private:
akmhoquefdbddb12014-05-02 18:35:19 -050072 std::string m_confFileName;
akmhoqueb6450b12014-04-24 00:01:03 -050073 Nlsr& m_nlsr;
akmhoque53353462014-04-22 08:43:45 -050074};
75
Nick Gordonfad8e252016-08-11 14:21:38 -050076} // namespace nlsr
dmcoomese689dd62017-03-29 11:05:12 -050077#endif // NLSR_CONF_FILE_PROCESSOR_HPP