blob: b29b82732c10cb5ee001a42a448c1bc4c3631557 [file] [log] [blame]
Junxiao Shifbe8efe2016-08-22 16:02:30 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -04002/*
3 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shifbe8efe2016-08-22 16:02:30 +00004 * 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 Pesaventoa3a7a4e2022-05-29 16:06:22 -040027
Junxiao Shi9db73592016-12-01 23:43:11 +000028#include <boost/range/adaptor/map.hpp>
29#include <boost/range/algorithm/copy.hpp>
Junxiao Shifbe8efe2016-08-22 16:02:30 +000030
31namespace nfd {
32namespace fw {
33
34std::ostream&
35operator<<(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 Shi58320f72016-09-04 04:40:34 +000046UnsolicitedDataPolicy::Registry&
47UnsolicitedDataPolicy::getRegistry()
48{
49 static Registry registry;
50 return registry;
51}
52
53unique_ptr<UnsolicitedDataPolicy>
Junxiao Shi9db73592016-12-01 23:43:11 +000054UnsolicitedDataPolicy::create(const std::string& policyName)
Junxiao Shi58320f72016-09-04 04:40:34 +000055{
56 Registry& registry = getRegistry();
Junxiao Shi9db73592016-12-01 23:43:11 +000057 auto i = registry.find(policyName);
Junxiao Shi58320f72016-09-04 04:40:34 +000058 return i == registry.end() ? nullptr : i->second();
59}
60
Junxiao Shi9db73592016-12-01 23:43:11 +000061std::set<std::string>
62UnsolicitedDataPolicy::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
70const std::string DropAllUnsolicitedDataPolicy::POLICY_NAME("drop-all");
71NFD_REGISTER_UNSOLICITED_DATA_POLICY(DropAllUnsolicitedDataPolicy);
Junxiao Shi58320f72016-09-04 04:40:34 +000072
Junxiao Shifbe8efe2016-08-22 16:02:30 +000073UnsolicitedDataDecision
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040074DropAllUnsolicitedDataPolicy::decide(const Face&, const Data&) const
Junxiao Shi36b22252016-08-25 13:22:21 +000075{
76 return UnsolicitedDataDecision::DROP;
77}
78
Junxiao Shi9db73592016-12-01 23:43:11 +000079const std::string AdmitLocalUnsolicitedDataPolicy::POLICY_NAME("admit-local");
80NFD_REGISTER_UNSOLICITED_DATA_POLICY(AdmitLocalUnsolicitedDataPolicy);
Junxiao Shi58320f72016-09-04 04:40:34 +000081
Junxiao Shi36b22252016-08-25 13:22:21 +000082UnsolicitedDataDecision
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040083AdmitLocalUnsolicitedDataPolicy::decide(const Face& inFace, const Data&) const
Junxiao Shifbe8efe2016-08-22 16:02:30 +000084{
85 if (inFace.getScope() == ndn::nfd::FACE_SCOPE_LOCAL) {
86 return UnsolicitedDataDecision::CACHE;
87 }
88 return UnsolicitedDataDecision::DROP;
89}
90
Junxiao Shi9db73592016-12-01 23:43:11 +000091const std::string AdmitNetworkUnsolicitedDataPolicy::POLICY_NAME("admit-network");
92NFD_REGISTER_UNSOLICITED_DATA_POLICY(AdmitNetworkUnsolicitedDataPolicy);
Junxiao Shi58320f72016-09-04 04:40:34 +000093
Junxiao Shi36b22252016-08-25 13:22:21 +000094UnsolicitedDataDecision
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040095AdmitNetworkUnsolicitedDataPolicy::decide(const Face& inFace, const Data&) const
Junxiao Shi36b22252016-08-25 13:22:21 +000096{
97 if (inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL) {
98 return UnsolicitedDataDecision::CACHE;
99 }
100 return UnsolicitedDataDecision::DROP;
101}
102
Junxiao Shi9db73592016-12-01 23:43:11 +0000103const std::string AdmitAllUnsolicitedDataPolicy::POLICY_NAME("admit-all");
104NFD_REGISTER_UNSOLICITED_DATA_POLICY(AdmitAllUnsolicitedDataPolicy);
Junxiao Shi58320f72016-09-04 04:40:34 +0000105
Junxiao Shi36b22252016-08-25 13:22:21 +0000106UnsolicitedDataDecision
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400107AdmitAllUnsolicitedDataPolicy::decide(const Face&, const Data&) const
Junxiao Shi36b22252016-08-25 13:22:21 +0000108{
109 return UnsolicitedDataDecision::CACHE;
110}
111
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000112} // namespace fw
113} // namespace nfd