blob: 1b99ceae4687a2f6e4915b2ff55e9282f15c97e2 [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/>.
19 *
20 * \author A K M Mahmudul Hoque <ahoque1@memphis.edu>
21 * \author Minsheng Zhang <mzhang4@memphis.edu>
22 *
23 **/
akmhoque157b0a42014-05-13 00:26:37 -050024#ifndef CONF_PROCESSOR_HPP
25#define CONF_PROCESSOR_HPP
akmhoque53353462014-04-22 08:43:45 -050026
akmhoque157b0a42014-05-13 00:26:37 -050027#include <boost/smart_ptr/shared_ptr.hpp>
28#include <boost/property_tree/ptree.hpp>
akmhoquefdbddb12014-05-02 18:35:19 -050029#include <boost/cstdint.hpp>
akmhoque157b0a42014-05-13 00:26:37 -050030
akmhoque53353462014-04-22 08:43:45 -050031#include "nlsr.hpp"
32
33namespace nlsr {
akmhoqueb6450b12014-04-24 00:01:03 -050034
akmhoque53353462014-04-22 08:43:45 -050035class ConfFileProcessor
36{
37public:
akmhoquefdbddb12014-05-02 18:35:19 -050038 ConfFileProcessor(Nlsr& nlsr, const std::string& cfile)
akmhoqueb6450b12014-04-24 00:01:03 -050039 : m_confFileName(cfile)
40 , m_nlsr(nlsr)
akmhoque53353462014-04-22 08:43:45 -050041 {
42 }
43
akmhoque157b0a42014-05-13 00:26:37 -050044 bool
45 processConfFile();
akmhoque53353462014-04-22 08:43:45 -050046
47private:
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070048 typedef boost::property_tree::ptree ConfigSection;
49
akmhoque157b0a42014-05-13 00:26:37 -050050 bool
51 load(std::istream& input);
akmhoque53353462014-04-22 08:43:45 -050052
akmhoque157b0a42014-05-13 00:26:37 -050053 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070054 processSection(const std::string& sectionName, 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 processConfSectionGeneral(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 processConfSectionNeighbors(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 processConfSectionHyperbolic(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 processConfSectionFib(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050067
akmhoque157b0a42014-05-13 00:26:37 -050068 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070069 processConfSectionAdvertising(const ConfigSection& section);
akmhoque53353462014-04-22 08:43:45 -050070
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070071 bool
Alexander Afanasyev8388ec62014-08-16 18:38:57 -070072 processConfSectionSecurity(const ConfigSection& section);
Yingdi Yu20e3a6e2014-05-26 23:16:10 -070073
akmhoque53353462014-04-22 08:43:45 -050074private:
akmhoquefdbddb12014-05-02 18:35:19 -050075 std::string m_confFileName;
akmhoqueb6450b12014-04-24 00:01:03 -050076 Nlsr& m_nlsr;
akmhoque53353462014-04-22 08:43:45 -050077};
78
Nick Gordonfad8e252016-08-11 14:21:38 -050079} // namespace nlsr
akmhoque157b0a42014-05-13 00:26:37 -050080#endif //CONF_PROCESSOR_HPP