blob: c1a735820fdf27fbb911ba0fb4b2015283271572 [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/*
Davide Pesaventoae430302023-05-11 01:42:46 -04003 * Copyright (c) 2014-2023, 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
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040031namespace nfd::fw {
Junxiao Shifbe8efe2016-08-22 16:02:30 +000032
33std::ostream&
34operator<<(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 Shi58320f72016-09-04 04:40:34 +000045UnsolicitedDataPolicy::Registry&
46UnsolicitedDataPolicy::getRegistry()
47{
48 static Registry registry;
49 return registry;
50}
51
52unique_ptr<UnsolicitedDataPolicy>
Junxiao Shi9db73592016-12-01 23:43:11 +000053UnsolicitedDataPolicy::create(const std::string& policyName)
Junxiao Shi58320f72016-09-04 04:40:34 +000054{
55 Registry& registry = getRegistry();
Junxiao Shi9db73592016-12-01 23:43:11 +000056 auto i = registry.find(policyName);
Junxiao Shi58320f72016-09-04 04:40:34 +000057 return i == registry.end() ? nullptr : i->second();
58}
59
Junxiao Shi9db73592016-12-01 23:43:11 +000060std::set<std::string>
61UnsolicitedDataPolicy::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 Shi9db73592016-12-01 23:43:11 +000069NFD_REGISTER_UNSOLICITED_DATA_POLICY(DropAllUnsolicitedDataPolicy);
Junxiao Shi58320f72016-09-04 04:40:34 +000070
Junxiao Shifbe8efe2016-08-22 16:02:30 +000071UnsolicitedDataDecision
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040072DropAllUnsolicitedDataPolicy::decide(const Face&, const Data&) const
Junxiao Shi36b22252016-08-25 13:22:21 +000073{
74 return UnsolicitedDataDecision::DROP;
75}
76
Junxiao Shi9db73592016-12-01 23:43:11 +000077NFD_REGISTER_UNSOLICITED_DATA_POLICY(AdmitLocalUnsolicitedDataPolicy);
Junxiao Shi58320f72016-09-04 04:40:34 +000078
Junxiao Shi36b22252016-08-25 13:22:21 +000079UnsolicitedDataDecision
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040080AdmitLocalUnsolicitedDataPolicy::decide(const Face& inFace, const Data&) const
Junxiao Shifbe8efe2016-08-22 16:02:30 +000081{
82 if (inFace.getScope() == ndn::nfd::FACE_SCOPE_LOCAL) {
83 return UnsolicitedDataDecision::CACHE;
84 }
85 return UnsolicitedDataDecision::DROP;
86}
87
Junxiao Shi9db73592016-12-01 23:43:11 +000088NFD_REGISTER_UNSOLICITED_DATA_POLICY(AdmitNetworkUnsolicitedDataPolicy);
Junxiao Shi58320f72016-09-04 04:40:34 +000089
Junxiao Shi36b22252016-08-25 13:22:21 +000090UnsolicitedDataDecision
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040091AdmitNetworkUnsolicitedDataPolicy::decide(const Face& inFace, const Data&) const
Junxiao Shi36b22252016-08-25 13:22:21 +000092{
93 if (inFace.getScope() == ndn::nfd::FACE_SCOPE_NON_LOCAL) {
94 return UnsolicitedDataDecision::CACHE;
95 }
96 return UnsolicitedDataDecision::DROP;
97}
98
Junxiao Shi9db73592016-12-01 23:43:11 +000099NFD_REGISTER_UNSOLICITED_DATA_POLICY(AdmitAllUnsolicitedDataPolicy);
Junxiao Shi58320f72016-09-04 04:40:34 +0000100
Junxiao Shi36b22252016-08-25 13:22:21 +0000101UnsolicitedDataDecision
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400102AdmitAllUnsolicitedDataPolicy::decide(const Face&, const Data&) const
Junxiao Shi36b22252016-08-25 13:22:21 +0000103{
104 return UnsolicitedDataDecision::CACHE;
105}
106
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400107} // namespace nfd::fw