Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014, 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 |
| 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" |
| 33 | #include "table/strategy-choice.hpp" |
| 34 | |
| 35 | #include "core/config-file.hpp" |
| 36 | |
| 37 | namespace nfd { |
| 38 | |
| 39 | class TablesConfigSection |
| 40 | { |
| 41 | public: |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 42 | TablesConfigSection(Cs& cs, |
| 43 | Pit& pit, |
| 44 | Fib& fib, |
| 45 | StrategyChoice& strategyChoice, |
| 46 | Measurements& measurements); |
| 47 | |
| 48 | void |
| 49 | setConfigFile(ConfigFile& configFile); |
| 50 | |
| 51 | void |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 52 | ensureTablesAreConfigured(); |
| 53 | |
| 54 | private: |
| 55 | |
| 56 | void |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 57 | onConfig(const ConfigSection& configSection, |
| 58 | bool isDryRun, |
| 59 | const std::string& filename); |
| 60 | |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 61 | void |
| 62 | processSectionStrategyChoice(const ConfigSection& configSection, |
| 63 | bool isDryRun); |
| 64 | |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 65 | private: |
| 66 | Cs& m_cs; |
| 67 | // Pit& m_pit; |
| 68 | // Fib& m_fib; |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 69 | StrategyChoice& m_strategyChoice; |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 70 | // Measurements& m_measurements; |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 71 | |
| 72 | bool m_areTablesConfigured; |
| 73 | |
| 74 | private: |
| 75 | |
| 76 | static const size_t DEFAULT_CS_MAX_PACKETS; |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | } // namespace nfd |
| 80 | |
| 81 | #endif // NFD_MGMT_TABLES_CONFIG_SECTION_HPP |