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