Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame^] | 3 | * Copyright (c) 2014-2015, 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 | * The University of Memphis. |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #ifndef NFD_MGMT_TABLES_CONFIG_SECTION_HPP |
| 27 | #define NFD_MGMT_TABLES_CONFIG_SECTION_HPP |
| 28 | |
| 29 | #include "table/fib.hpp" |
| 30 | #include "table/pit.hpp" |
| 31 | #include "table/cs.hpp" |
| 32 | #include "table/measurements.hpp" |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame^] | 33 | #include "table/network-region-table.hpp" |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 34 | #include "table/strategy-choice.hpp" |
| 35 | |
| 36 | #include "core/config-file.hpp" |
| 37 | |
| 38 | namespace nfd { |
| 39 | |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame^] | 40 | /** |
| 41 | * \brief Provides parsing for `tables` configuration file section. |
| 42 | * |
| 43 | * This class enables configuration of CS, PIT, FIB, Strategy Choice, Measurements, and |
| 44 | * Network Region tables. |
| 45 | */ |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 46 | class TablesConfigSection |
| 47 | { |
| 48 | public: |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 49 | TablesConfigSection(Cs& cs, |
| 50 | Pit& pit, |
| 51 | Fib& fib, |
| 52 | StrategyChoice& strategyChoice, |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame^] | 53 | Measurements& measurements, |
| 54 | NetworkRegionTable& networkRegionTable); |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 55 | |
| 56 | void |
| 57 | setConfigFile(ConfigFile& configFile); |
| 58 | |
| 59 | void |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 60 | ensureTablesAreConfigured(); |
| 61 | |
| 62 | private: |
| 63 | |
| 64 | void |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame^] | 65 | processConfig(const ConfigSection& configSection, |
| 66 | bool isDryRun, |
| 67 | const std::string& filename); |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 68 | |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 69 | void |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame^] | 70 | processStrategyChoiceSection(const ConfigSection& configSection, |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 71 | bool isDryRun); |
| 72 | |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame^] | 73 | void |
| 74 | processNetworkRegionSection(const ConfigSection& configSection, |
| 75 | bool isDryRun); |
| 76 | |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 77 | private: |
| 78 | Cs& m_cs; |
| 79 | // Pit& m_pit; |
| 80 | // Fib& m_fib; |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 81 | StrategyChoice& m_strategyChoice; |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 82 | // Measurements& m_measurements; |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame^] | 83 | NetworkRegionTable& m_networkRegionTable; |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 84 | |
| 85 | bool m_areTablesConfigured; |
| 86 | |
| 87 | private: |
| 88 | |
| 89 | static const size_t DEFAULT_CS_MAX_PACKETS; |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | } // namespace nfd |
| 93 | |
| 94 | #endif // NFD_MGMT_TABLES_CONFIG_SECTION_HPP |