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