Junxiao Shi | fbe8efe | 2016-08-22 16:02:30 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | ae43030 | 2023-05-11 01:42:46 -0400 | [diff] [blame^] | 3 | * Copyright (c) 2014-2023, Regents of the University of California, |
Junxiao Shi | fbe8efe | 2016-08-22 16:02:30 +0000 | [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. |
| 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 "unsolicited-data-policy.hpp" |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 27 | |
Junxiao Shi | 9db7359 | 2016-12-01 23:43:11 +0000 | [diff] [blame] | 28 | #include <boost/range/adaptor/map.hpp> |
| 29 | #include <boost/range/algorithm/copy.hpp> |
Junxiao Shi | fbe8efe | 2016-08-22 16:02:30 +0000 | [diff] [blame] | 30 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 31 | namespace nfd::fw { |
Junxiao Shi | fbe8efe | 2016-08-22 16:02:30 +0000 | [diff] [blame] | 32 | |
| 33 | std::ostream& |
| 34 | operator<<(std::ostream& os, UnsolicitedDataDecision d) |
| 35 | { |
| 36 | switch (d) { |
| 37 | case UnsolicitedDataDecision::DROP: |
| 38 | return os << "drop"; |
| 39 | case UnsolicitedDataDecision::CACHE: |
| 40 | return os << "cache"; |
| 41 | } |
| 42 | return os << static_cast<int>(d); |
| 43 | } |
| 44 | |
Junxiao Shi | 58320f7 | 2016-09-04 04:40:34 +0000 | [diff] [blame] | 45 | UnsolicitedDataPolicy::Registry& |
| 46 | UnsolicitedDataPolicy::getRegistry() |
| 47 | { |
| 48 | static Registry registry; |
| 49 | return registry; |
| 50 | } |
| 51 | |
| 52 | unique_ptr<UnsolicitedDataPolicy> |
Junxiao Shi | 9db7359 | 2016-12-01 23:43:11 +0000 | [diff] [blame] | 53 | UnsolicitedDataPolicy::create(const std::string& policyName) |
Junxiao Shi | 58320f7 | 2016-09-04 04:40:34 +0000 | [diff] [blame] | 54 | { |
| 55 | Registry& registry = getRegistry(); |
Junxiao Shi | 9db7359 | 2016-12-01 23:43:11 +0000 | [diff] [blame] | 56 | auto i = registry.find(policyName); |
Junxiao Shi | 58320f7 | 2016-09-04 04:40:34 +0000 | [diff] [blame] | 57 | return i == registry.end() ? nullptr : i->second(); |
| 58 | } |
| 59 | |
Junxiao Shi | 9db7359 | 2016-12-01 23:43:11 +0000 | [diff] [blame] | 60 | std::set<std::string> |
| 61 | UnsolicitedDataPolicy::getPolicyNames() |
| 62 | { |
| 63 | std::set<std::string> policyNames; |
| 64 | boost::copy(getRegistry() | boost::adaptors::map_keys, |
| 65 | std::inserter(policyNames, policyNames.end())); |
| 66 | return policyNames; |
| 67 | } |
| 68 | |
Junxiao Shi | 9db7359 | 2016-12-01 23:43:11 +0000 | [diff] [blame] | 69 | NFD_REGISTER_UNSOLICITED_DATA_POLICY(DropAllUnsolicitedDataPolicy); |
Junxiao Shi | 58320f7 | 2016-09-04 04:40:34 +0000 | [diff] [blame] | 70 | |
Junxiao Shi | fbe8efe | 2016-08-22 16:02:30 +0000 | [diff] [blame] | 71 | UnsolicitedDataDecision |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 72 | DropAllUnsolicitedDataPolicy::decide(const Face&, const Data&) const |
Junxiao Shi | 36b2225 | 2016-08-25 13:22:21 +0000 | [diff] [blame] | 73 | { |
| 74 | return UnsolicitedDataDecision::DROP; |
| 75 | } |
| 76 | |
Junxiao Shi | 9db7359 | 2016-12-01 23:43:11 +0000 | [diff] [blame] | 77 | NFD_REGISTER_UNSOLICITED_DATA_POLICY(AdmitLocalUnsolicitedDataPolicy); |
Junxiao Shi | 58320f7 | 2016-09-04 04:40:34 +0000 | [diff] [blame] | 78 | |
Junxiao Shi | 36b2225 | 2016-08-25 13:22:21 +0000 | [diff] [blame] | 79 | UnsolicitedDataDecision |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 80 | AdmitLocalUnsolicitedDataPolicy::decide(const Face& inFace, const Data&) const |
Junxiao Shi | fbe8efe | 2016-08-22 16:02:30 +0000 | [diff] [blame] | 81 | { |
| 82 | if (inFace.getScope() == ndn::nfd::FACE_SCOPE_LOCAL) { |
| 83 | return UnsolicitedDataDecision::CACHE; |
| 84 | } |
| 85 | return UnsolicitedDataDecision::DROP; |
| 86 | } |
| 87 | |
Junxiao Shi | 9db7359 | 2016-12-01 23:43:11 +0000 | [diff] [blame] | 88 | NFD_REGISTER_UNSOLICITED_DATA_POLICY(AdmitNetworkUnsolicitedDataPolicy); |
Junxiao Shi | 58320f7 | 2016-09-04 04:40:34 +0000 | [diff] [blame] | 89 | |
Junxiao Shi | 36b2225 | 2016-08-25 13:22:21 +0000 | [diff] [blame] | 90 | UnsolicitedDataDecision |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 91 | AdmitNetworkUnsolicitedDataPolicy::decide(const Face& inFace, const Data&) const |
Junxiao Shi | 36b2225 | 2016-08-25 13:22:21 +0000 | [diff] [blame] | 92 | { |
| 93 | if (inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL) { |
| 94 | return UnsolicitedDataDecision::CACHE; |
| 95 | } |
| 96 | return UnsolicitedDataDecision::DROP; |
| 97 | } |
| 98 | |
Junxiao Shi | 9db7359 | 2016-12-01 23:43:11 +0000 | [diff] [blame] | 99 | NFD_REGISTER_UNSOLICITED_DATA_POLICY(AdmitAllUnsolicitedDataPolicy); |
Junxiao Shi | 58320f7 | 2016-09-04 04:40:34 +0000 | [diff] [blame] | 100 | |
Junxiao Shi | 36b2225 | 2016-08-25 13:22:21 +0000 | [diff] [blame] | 101 | UnsolicitedDataDecision |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 102 | AdmitAllUnsolicitedDataPolicy::decide(const Face&, const Data&) const |
Junxiao Shi | 36b2225 | 2016-08-25 13:22:21 +0000 | [diff] [blame] | 103 | { |
| 104 | return UnsolicitedDataDecision::CACHE; |
| 105 | } |
| 106 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 107 | } // namespace nfd::fw |