Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 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 | #include "tables-config-section.hpp" |
Junxiao Shi | 593887c | 2016-12-24 02:39:29 +0000 | [diff] [blame] | 27 | #include "fw/strategy.hpp" |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 28 | |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 29 | #include <map> |
| 30 | |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 31 | namespace nfd { |
| 32 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 33 | constexpr size_t DEFAULT_CS_MAX_PACKETS = 65536; |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 34 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 35 | TablesConfigSection::TablesConfigSection(Forwarder& forwarder) |
| 36 | : m_forwarder(forwarder) |
| 37 | , m_isConfigured(false) |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 38 | { |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | void |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 42 | TablesConfigSection::setConfigFile(ConfigFile& configFile) |
| 43 | { |
Davide Pesavento | 412c982 | 2021-07-02 00:21:05 -0400 | [diff] [blame] | 44 | configFile.addSectionHandler("tables", [this] (auto&&... args) { |
| 45 | processConfig(std::forward<decltype(args)>(args)...); |
| 46 | }); |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 47 | } |
| 48 | |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 49 | void |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 50 | TablesConfigSection::ensureConfigured() |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 51 | { |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 52 | if (m_isConfigured) { |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 53 | return; |
| 54 | } |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 55 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 56 | m_forwarder.getCs().setLimit(DEFAULT_CS_MAX_PACKETS); |
Junxiao Shi | b4a5acd | 2016-12-07 19:59:18 +0000 | [diff] [blame] | 57 | // Don't set default cs_policy because it's already created by CS itself. |
Junxiao Shi | 9685cc5 | 2016-08-29 12:47:05 +0000 | [diff] [blame] | 58 | m_forwarder.setUnsolicitedDataPolicy(make_unique<fw::DefaultUnsolicitedDataPolicy>()); |
Steve DiBenedetto | fbea590 | 2014-07-08 15:29:12 -0600 | [diff] [blame] | 59 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 60 | m_isConfigured = true; |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | void |
Davide Pesavento | 412c982 | 2021-07-02 00:21:05 -0400 | [diff] [blame] | 64 | TablesConfigSection::processConfig(const ConfigSection& section, bool isDryRun, const std::string&) |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 65 | { |
Steve DiBenedetto | 9bcc88f | 2014-07-08 09:52:13 -0600 | [diff] [blame] | 66 | size_t nCsMaxPackets = DEFAULT_CS_MAX_PACKETS; |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 67 | OptionalConfigSection csMaxPacketsNode = section.get_child_optional("cs_max_packets"); |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 68 | if (csMaxPacketsNode) { |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 69 | nCsMaxPackets = ConfigFile::parseNumber<size_t>(*csMaxPacketsNode, "cs_max_packets", "tables"); |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 70 | } |
| 71 | |
Junxiao Shi | b4a5acd | 2016-12-07 19:59:18 +0000 | [diff] [blame] | 72 | unique_ptr<cs::Policy> csPolicy; |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 73 | OptionalConfigSection csPolicyNode = section.get_child_optional("cs_policy"); |
Junxiao Shi | b4a5acd | 2016-12-07 19:59:18 +0000 | [diff] [blame] | 74 | if (csPolicyNode) { |
| 75 | std::string policyName = csPolicyNode->get_value<std::string>(); |
| 76 | csPolicy = cs::Policy::create(policyName); |
| 77 | if (csPolicy == nullptr) { |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 78 | NDN_THROW(ConfigFile::Error("Unknown cs_policy '" + policyName + "' in section 'tables'")); |
Junxiao Shi | b4a5acd | 2016-12-07 19:59:18 +0000 | [diff] [blame] | 79 | } |
| 80 | } |
| 81 | |
Junxiao Shi | 9685cc5 | 2016-08-29 12:47:05 +0000 | [diff] [blame] | 82 | unique_ptr<fw::UnsolicitedDataPolicy> unsolicitedDataPolicy; |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 83 | OptionalConfigSection unsolicitedDataPolicyNode = section.get_child_optional("cs_unsolicited_policy"); |
Junxiao Shi | 9685cc5 | 2016-08-29 12:47:05 +0000 | [diff] [blame] | 84 | if (unsolicitedDataPolicyNode) { |
Junxiao Shi | b4a5acd | 2016-12-07 19:59:18 +0000 | [diff] [blame] | 85 | std::string policyName = unsolicitedDataPolicyNode->get_value<std::string>(); |
| 86 | unsolicitedDataPolicy = fw::UnsolicitedDataPolicy::create(policyName); |
Junxiao Shi | 9685cc5 | 2016-08-29 12:47:05 +0000 | [diff] [blame] | 87 | if (unsolicitedDataPolicy == nullptr) { |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 88 | NDN_THROW(ConfigFile::Error("Unknown cs_unsolicited_policy '" + policyName + "' in section 'tables'")); |
Junxiao Shi | 9685cc5 | 2016-08-29 12:47:05 +0000 | [diff] [blame] | 89 | } |
| 90 | } |
| 91 | else { |
| 92 | unsolicitedDataPolicy = make_unique<fw::DefaultUnsolicitedDataPolicy>(); |
| 93 | } |
| 94 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 95 | OptionalConfigSection strategyChoiceSection = section.get_child_optional("strategy_choice"); |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 96 | if (strategyChoiceSection) { |
| 97 | processStrategyChoiceSection(*strategyChoiceSection, isDryRun); |
| 98 | } |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 99 | |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 100 | OptionalConfigSection networkRegionSection = section.get_child_optional("network_region"); |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 101 | if (networkRegionSection) { |
| 102 | processNetworkRegionSection(*networkRegionSection, isDryRun); |
| 103 | } |
| 104 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 105 | if (isDryRun) { |
| 106 | return; |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 107 | } |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 108 | |
Junxiao Shi | b4a5acd | 2016-12-07 19:59:18 +0000 | [diff] [blame] | 109 | Cs& cs = m_forwarder.getCs(); |
| 110 | cs.setLimit(nCsMaxPackets); |
| 111 | if (cs.size() == 0 && csPolicy != nullptr) { |
| 112 | cs.setPolicy(std::move(csPolicy)); |
| 113 | } |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 114 | |
Junxiao Shi | 9685cc5 | 2016-08-29 12:47:05 +0000 | [diff] [blame] | 115 | m_forwarder.setUnsolicitedDataPolicy(std::move(unsolicitedDataPolicy)); |
| 116 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 117 | m_isConfigured = true; |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 118 | } |
| 119 | |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 120 | void |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 121 | TablesConfigSection::processStrategyChoiceSection(const ConfigSection& section, bool isDryRun) |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 122 | { |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 123 | std::map<Name, Name> choices; |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 124 | for (const auto& prefixAndStrategy : section) { |
| 125 | Name prefix(prefixAndStrategy.first); |
| 126 | Name strategy(prefixAndStrategy.second.get_value<std::string>()); |
| 127 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 128 | if (!fw::Strategy::canCreate(strategy)) { |
| 129 | NDN_THROW(ConfigFile::Error("Unknown strategy '" + prefixAndStrategy.second.get_value<std::string>() + |
| 130 | "' for prefix '" + prefix.toUri() + "' in section 'strategy_choice'")); |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 133 | if (!choices.try_emplace(prefix, std::move(strategy)).second) { |
| 134 | NDN_THROW(ConfigFile::Error("Duplicate strategy choice for prefix '" + prefix.toUri() + |
| 135 | "' in section 'strategy_choice'")); |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 136 | } |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 137 | } |
| 138 | |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 139 | if (isDryRun) { |
| 140 | return; |
| 141 | } |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 142 | |
Junxiao Shi | 593887c | 2016-12-24 02:39:29 +0000 | [diff] [blame] | 143 | StrategyChoice& sc = m_forwarder.getStrategyChoice(); |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 144 | for (const auto& prefixAndStrategy : choices) { |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 145 | if (!sc.insert(prefixAndStrategy.first, prefixAndStrategy.second)) { |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 146 | NDN_THROW(ConfigFile::Error( |
| 147 | "Failed to set strategy '" + prefixAndStrategy.second.toUri() + "' for prefix '" + |
| 148 | prefixAndStrategy.first.toUri() + "' in section 'strategy_choice'")); |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 149 | } |
| 150 | } |
Junxiao Shi | 593887c | 2016-12-24 02:39:29 +0000 | [diff] [blame] | 151 | ///\todo redesign so that strategy parameter errors can be catched during dry-run |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 154 | void |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 155 | TablesConfigSection::processNetworkRegionSection(const ConfigSection& section, bool isDryRun) |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 156 | { |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 157 | if (isDryRun) { |
| 158 | return; |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 159 | } |
| 160 | |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 161 | auto& nrt = m_forwarder.getNetworkRegionTable(); |
Junxiao Shi | 0cc125c | 2016-08-25 21:50:04 +0000 | [diff] [blame] | 162 | nrt.clear(); |
| 163 | for (const auto& pair : section) { |
Davide Pesavento | 19779d8 | 2019-02-14 13:40:04 -0500 | [diff] [blame] | 164 | nrt.insert(Name(pair.first)); |
Vince Lehman | 63ab1bb | 2015-09-04 17:06:58 -0500 | [diff] [blame] | 165 | } |
| 166 | } |
Steve DiBenedetto | c0640f5 | 2014-11-03 15:55:43 -0700 | [diff] [blame] | 167 | |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 168 | } // namespace nfd |