Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [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. |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 10 | * |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 24 | */ |
| 25 | |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 26 | #include "cs.hpp" |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 27 | #include "core/algorithm.hpp" |
Junxiao Shi | 3aba754 | 2016-12-24 02:42:52 +0000 | [diff] [blame] | 28 | #include "core/logger.hpp" |
Davide Pesavento | 981db80 | 2018-04-10 18:05:04 -0400 | [diff] [blame] | 29 | |
Junxiao Shi | cbc8e94 | 2016-09-06 03:17:45 +0000 | [diff] [blame] | 30 | #include <ndn-cxx/lp/tags.hpp> |
Davide Pesavento | 981db80 | 2018-04-10 18:05:04 -0400 | [diff] [blame] | 31 | #include <ndn-cxx/util/concepts.hpp> |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 32 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 33 | namespace nfd { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 34 | namespace cs { |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 35 | |
Davide Pesavento | 981db80 | 2018-04-10 18:05:04 -0400 | [diff] [blame] | 36 | NDN_CXX_ASSERT_FORWARD_ITERATOR(Cs::const_iterator); |
Junxiao Shi | 3aba754 | 2016-12-24 02:42:52 +0000 | [diff] [blame] | 37 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 38 | NFD_LOG_INIT(ContentStore); |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 39 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 40 | unique_ptr<Policy> |
| 41 | makeDefaultPolicy() |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 42 | { |
Junxiao Shi | 52555b0 | 2016-11-25 21:39:06 +0000 | [diff] [blame] | 43 | const std::string DEFAULT_POLICY = "priority_fifo"; |
| 44 | return Policy::create(DEFAULT_POLICY); |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 45 | } |
| 46 | |
Junxiao Shi | b4a5acd | 2016-12-07 19:59:18 +0000 | [diff] [blame] | 47 | Cs::Cs(size_t nMaxPackets) |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 48 | : m_shouldAdmit(true) |
| 49 | , m_shouldServe(true) |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 50 | { |
Junxiao Shi | b4a5acd | 2016-12-07 19:59:18 +0000 | [diff] [blame] | 51 | this->setPolicyImpl(makeDefaultPolicy()); |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 52 | m_policy->setLimit(nMaxPackets); |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 53 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 54 | |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 55 | void |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 56 | Cs::insert(const Data& data, bool isUnsolicited) |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 57 | { |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 58 | if (!m_shouldAdmit || m_policy->getLimit() == 0) { |
Minsheng Zhang | ffe8bbb | 2016-03-10 13:40:37 -0700 | [diff] [blame] | 59 | return; |
| 60 | } |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 61 | NFD_LOG_DEBUG("insert " << data.getName()); |
Minsheng Zhang | ffe8bbb | 2016-03-10 13:40:37 -0700 | [diff] [blame] | 62 | |
Junxiao Shi | 0de23a2 | 2015-12-03 20:07:02 +0000 | [diff] [blame] | 63 | // recognize CachePolicy |
| 64 | shared_ptr<lp::CachePolicyTag> tag = data.getTag<lp::CachePolicyTag>(); |
| 65 | if (tag != nullptr) { |
| 66 | lp::CachePolicyType policy = tag->get().getPolicy(); |
| 67 | if (policy == lp::CachePolicyType::NO_CACHE) { |
Minsheng Zhang | ffe8bbb | 2016-03-10 13:40:37 -0700 | [diff] [blame] | 68 | return; |
Junxiao Shi | 35b16b1 | 2015-02-16 22:14:57 -0700 | [diff] [blame] | 69 | } |
| 70 | } |
| 71 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 72 | iterator it; |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 73 | bool isNewEntry = false; |
| 74 | std::tie(it, isNewEntry) = m_table.emplace(data.shared_from_this(), isUnsolicited); |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 75 | EntryImpl& entry = const_cast<EntryImpl&>(*it); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 76 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 77 | entry.updateStaleTime(); |
| 78 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 79 | if (!isNewEntry) { // existing entry |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 80 | // XXX This doesn't forbid unsolicited Data from refreshing a solicited entry. |
| 81 | if (entry.isUnsolicited() && !isUnsolicited) { |
| 82 | entry.unsetUnsolicited(); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 83 | } |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 84 | |
| 85 | m_policy->afterRefresh(it); |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 86 | } |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 87 | else { |
| 88 | m_policy->afterInsert(it); |
| 89 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 90 | } |
| 91 | |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 92 | void |
Junxiao Shi | 30c37ab | 2018-04-09 14:26:47 +0000 | [diff] [blame] | 93 | Cs::erase(const Name& prefix, size_t limit, const AfterEraseCallback& cb) |
| 94 | { |
| 95 | BOOST_ASSERT(static_cast<bool>(cb)); |
| 96 | |
| 97 | iterator first = m_table.lower_bound(prefix); |
| 98 | iterator last = m_table.end(); |
| 99 | if (prefix.size() > 0) { |
| 100 | last = m_table.lower_bound(prefix.getSuccessor()); |
| 101 | } |
| 102 | |
| 103 | size_t nErased = 0; |
| 104 | while (first != last && nErased < limit) { |
| 105 | m_policy->beforeErase(first); |
| 106 | first = m_table.erase(first); |
| 107 | ++nErased; |
| 108 | } |
| 109 | |
| 110 | if (cb) { |
| 111 | cb(nErased); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | void |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 116 | Cs::find(const Interest& interest, |
| 117 | const HitCallback& hitCallback, |
| 118 | const MissCallback& missCallback) const |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 119 | { |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 120 | BOOST_ASSERT(static_cast<bool>(hitCallback)); |
| 121 | BOOST_ASSERT(static_cast<bool>(missCallback)); |
| 122 | |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 123 | if (!m_shouldServe || m_policy->getLimit() == 0) { |
| 124 | missCallback(interest); |
| 125 | return; |
| 126 | } |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 127 | const Name& prefix = interest.getName(); |
| 128 | bool isRightmost = interest.getChildSelector() == 1; |
| 129 | NFD_LOG_DEBUG("find " << prefix << (isRightmost ? " R" : " L")); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 130 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 131 | iterator first = m_table.lower_bound(prefix); |
| 132 | iterator last = m_table.end(); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 133 | if (prefix.size() > 0) { |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 134 | last = m_table.lower_bound(prefix.getSuccessor()); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 135 | } |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 136 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 137 | iterator match = last; |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 138 | if (isRightmost) { |
| 139 | match = this->findRightmost(interest, first, last); |
| 140 | } |
| 141 | else { |
| 142 | match = this->findLeftmost(interest, first, last); |
| 143 | } |
| 144 | |
| 145 | if (match == last) { |
| 146 | NFD_LOG_DEBUG(" no-match"); |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 147 | missCallback(interest); |
| 148 | return; |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 149 | } |
| 150 | NFD_LOG_DEBUG(" matching " << match->getName()); |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 151 | m_policy->beforeUse(match); |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 152 | hitCallback(interest, match->getData()); |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 155 | iterator |
| 156 | Cs::findLeftmost(const Interest& interest, iterator first, iterator last) const |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 157 | { |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 158 | return std::find_if(first, last, [&interest] (const auto& entry) { return entry.canSatisfy(interest); }); |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 161 | iterator |
| 162 | Cs::findRightmost(const Interest& interest, iterator first, iterator last) const |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 163 | { |
| 164 | // Each loop visits a sub-namespace under a prefix one component longer than Interest Name. |
| 165 | // If there is a match in that sub-namespace, the leftmost match is returned; |
| 166 | // otherwise, loop continues. |
| 167 | |
| 168 | size_t interestNameLength = interest.getName().size(); |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 169 | for (iterator right = last; right != first;) { |
| 170 | iterator prev = std::prev(right); |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 171 | |
| 172 | // special case: [first,prev] have exact Names |
| 173 | if (prev->getName().size() == interestNameLength) { |
| 174 | NFD_LOG_TRACE(" find-among-exact " << prev->getName()); |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 175 | iterator matchExact = this->findRightmostAmongExact(interest, first, right); |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 176 | return matchExact == right ? last : matchExact; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 177 | } |
| 178 | |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 179 | Name prefix = prev->getName().getPrefix(interestNameLength + 1); |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 180 | iterator left = m_table.lower_bound(prefix); |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 181 | |
| 182 | // normal case: [left,right) are under one-component-longer prefix |
| 183 | NFD_LOG_TRACE(" find-under-prefix " << prefix); |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 184 | iterator match = this->findLeftmost(interest, left, right); |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 185 | if (match != right) { |
| 186 | return match; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 187 | } |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 188 | right = left; |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 189 | } |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 190 | return last; |
| 191 | } |
| 192 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 193 | iterator |
| 194 | Cs::findRightmostAmongExact(const Interest& interest, iterator first, iterator last) const |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 195 | { |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 196 | return find_last_if(first, last, [&interest] (const auto& entry) { return entry.canSatisfy(interest); }); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | void |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 200 | Cs::dump() |
| 201 | { |
| 202 | NFD_LOG_DEBUG("dump table"); |
| 203 | for (const EntryImpl& entry : m_table) { |
| 204 | NFD_LOG_TRACE(entry.getFullName()); |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | void |
| 209 | Cs::setPolicy(unique_ptr<Policy> policy) |
| 210 | { |
| 211 | BOOST_ASSERT(policy != nullptr); |
| 212 | BOOST_ASSERT(m_policy != nullptr); |
| 213 | size_t limit = m_policy->getLimit(); |
| 214 | this->setPolicyImpl(std::move(policy)); |
| 215 | m_policy->setLimit(limit); |
| 216 | } |
| 217 | |
| 218 | void |
Junxiao Shi | 52555b0 | 2016-11-25 21:39:06 +0000 | [diff] [blame] | 219 | Cs::setPolicyImpl(unique_ptr<Policy> policy) |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 220 | { |
Junxiao Shi | 52555b0 | 2016-11-25 21:39:06 +0000 | [diff] [blame] | 221 | NFD_LOG_DEBUG("set-policy " << policy->getName()); |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 222 | m_policy = std::move(policy); |
| 223 | m_beforeEvictConnection = m_policy->beforeEvict.connect([this] (iterator it) { |
| 224 | m_table.erase(it); |
| 225 | }); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 226 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 227 | m_policy->setCs(this); |
| 228 | BOOST_ASSERT(m_policy->getCs() == this); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | void |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 232 | Cs::enableAdmit(bool shouldAdmit) |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 233 | { |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 234 | if (m_shouldAdmit == shouldAdmit) { |
| 235 | return; |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 236 | } |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 237 | m_shouldAdmit = shouldAdmit; |
| 238 | NFD_LOG_INFO((shouldAdmit ? "Enabling" : "Disabling") << " Data admittance"); |
| 239 | } |
| 240 | |
| 241 | void |
| 242 | Cs::enableServe(bool shouldServe) |
| 243 | { |
| 244 | if (m_shouldServe == shouldServe) { |
| 245 | return; |
| 246 | } |
| 247 | m_shouldServe = shouldServe; |
| 248 | NFD_LOG_INFO((shouldServe ? "Enabling" : "Disabling") << " Data serving"); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | } // namespace cs |
| 252 | } // namespace nfd |