blob: 81b3fd63352feb40872ca758fbb508898f3f05d9 [file] [log] [blame]
Junxiao Shi0fcb41e2014-01-24 10:29:43 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi3d2049f2018-01-26 23:46:06 +00002/*
3 * Copyright (c) 2014-2018, Regents of the University of California,
Junxiao Shi5640ec82015-01-07 21:51:19 -07004 * 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 Moiseenko76cf77a2014-03-05 14:35:51 -080010 *
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070011 * 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 Shi0fcb41e2014-01-24 10:29:43 -070024 */
25
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070026#include "cs.hpp"
Junxiao Shi5640ec82015-01-07 21:51:19 -070027#include "core/algorithm.hpp"
Junxiao Shi3aba7542016-12-24 02:42:52 +000028#include "core/asserts.hpp"
29#include "core/logger.hpp"
Junxiao Shicbc8e942016-09-06 03:17:45 +000030#include <ndn-cxx/lp/tags.hpp>
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080031
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080032namespace nfd {
Junxiao Shia9388182014-12-13 23:16:09 -070033namespace cs {
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070034
Junxiao Shi3aba7542016-12-24 02:42:52 +000035NFD_ASSERT_FORWARD_ITERATOR(Cs::const_iterator);
36
37NFD_LOG_INIT("ContentStore");
Junxiao Shifc206962015-01-16 11:12:22 -070038
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050039unique_ptr<Policy>
40makeDefaultPolicy()
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070041{
Junxiao Shi52555b02016-11-25 21:39:06 +000042 const std::string DEFAULT_POLICY = "priority_fifo";
43 return Policy::create(DEFAULT_POLICY);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050044}
45
Junxiao Shib4a5acd2016-12-07 19:59:18 +000046Cs::Cs(size_t nMaxPackets)
Junxiao Shi3d2049f2018-01-26 23:46:06 +000047 : m_shouldAdmit(true)
48 , m_shouldServe(true)
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050049{
Junxiao Shib4a5acd2016-12-07 19:59:18 +000050 this->setPolicyImpl(makeDefaultPolicy());
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050051 m_policy->setLimit(nMaxPackets);
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070052}
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080053
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080054void
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080055Cs::insert(const Data& data, bool isUnsolicited)
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070056{
Junxiao Shi3d2049f2018-01-26 23:46:06 +000057 if (!m_shouldAdmit || m_policy->getLimit() == 0) {
Minsheng Zhangffe8bbb2016-03-10 13:40:37 -070058 return;
59 }
Junxiao Shi3d2049f2018-01-26 23:46:06 +000060 NFD_LOG_DEBUG("insert " << data.getName());
Minsheng Zhangffe8bbb2016-03-10 13:40:37 -070061
Junxiao Shi0de23a22015-12-03 20:07:02 +000062 // recognize CachePolicy
63 shared_ptr<lp::CachePolicyTag> tag = data.getTag<lp::CachePolicyTag>();
64 if (tag != nullptr) {
65 lp::CachePolicyType policy = tag->get().getPolicy();
66 if (policy == lp::CachePolicyType::NO_CACHE) {
Minsheng Zhangffe8bbb2016-03-10 13:40:37 -070067 return;
Junxiao Shi35b16b12015-02-16 22:14:57 -070068 }
69 }
70
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050071 iterator it;
Junxiao Shi3d2049f2018-01-26 23:46:06 +000072 bool isNewEntry = false;
73 std::tie(it, isNewEntry) = m_table.emplace(data.shared_from_this(), isUnsolicited);
Junxiao Shifc206962015-01-16 11:12:22 -070074 EntryImpl& entry = const_cast<EntryImpl&>(*it);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080075
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050076 entry.updateStaleTime();
77
Junxiao Shia9388182014-12-13 23:16:09 -070078 if (!isNewEntry) { // existing entry
Junxiao Shia9388182014-12-13 23:16:09 -070079 // XXX This doesn't forbid unsolicited Data from refreshing a solicited entry.
80 if (entry.isUnsolicited() && !isUnsolicited) {
81 entry.unsetUnsolicited();
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080082 }
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050083
84 m_policy->afterRefresh(it);
Junxiao Shiaf6569a2014-06-14 00:01:34 -070085 }
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050086 else {
87 m_policy->afterInsert(it);
88 }
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080089}
90
mzhang4eab72492015-02-25 11:16:09 -060091void
92Cs::find(const Interest& interest,
93 const HitCallback& hitCallback,
94 const MissCallback& missCallback) const
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080095{
mzhang4eab72492015-02-25 11:16:09 -060096 BOOST_ASSERT(static_cast<bool>(hitCallback));
97 BOOST_ASSERT(static_cast<bool>(missCallback));
98
Junxiao Shi3d2049f2018-01-26 23:46:06 +000099 if (!m_shouldServe || m_policy->getLimit() == 0) {
100 missCallback(interest);
101 return;
102 }
Junxiao Shia9388182014-12-13 23:16:09 -0700103 const Name& prefix = interest.getName();
104 bool isRightmost = interest.getChildSelector() == 1;
105 NFD_LOG_DEBUG("find " << prefix << (isRightmost ? " R" : " L"));
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800106
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500107 iterator first = m_table.lower_bound(prefix);
108 iterator last = m_table.end();
Junxiao Shia9388182014-12-13 23:16:09 -0700109 if (prefix.size() > 0) {
Junxiao Shi5640ec82015-01-07 21:51:19 -0700110 last = m_table.lower_bound(prefix.getSuccessor());
Junxiao Shia9388182014-12-13 23:16:09 -0700111 }
Junxiao Shi5640ec82015-01-07 21:51:19 -0700112
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500113 iterator match = last;
Junxiao Shi5640ec82015-01-07 21:51:19 -0700114 if (isRightmost) {
115 match = this->findRightmost(interest, first, last);
116 }
117 else {
118 match = this->findLeftmost(interest, first, last);
119 }
120
121 if (match == last) {
122 NFD_LOG_DEBUG(" no-match");
mzhang4eab72492015-02-25 11:16:09 -0600123 missCallback(interest);
124 return;
Junxiao Shi5640ec82015-01-07 21:51:19 -0700125 }
126 NFD_LOG_DEBUG(" matching " << match->getName());
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500127 m_policy->beforeUse(match);
mzhang4eab72492015-02-25 11:16:09 -0600128 hitCallback(interest, match->getData());
Junxiao Shi5640ec82015-01-07 21:51:19 -0700129}
130
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500131iterator
132Cs::findLeftmost(const Interest& interest, iterator first, iterator last) const
Junxiao Shi5640ec82015-01-07 21:51:19 -0700133{
Junxiao Shifc206962015-01-16 11:12:22 -0700134 return std::find_if(first, last, bind(&cs::EntryImpl::canSatisfy, _1, interest));
Junxiao Shi5640ec82015-01-07 21:51:19 -0700135}
136
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500137iterator
138Cs::findRightmost(const Interest& interest, iterator first, iterator last) const
Junxiao Shi5640ec82015-01-07 21:51:19 -0700139{
140 // Each loop visits a sub-namespace under a prefix one component longer than Interest Name.
141 // If there is a match in that sub-namespace, the leftmost match is returned;
142 // otherwise, loop continues.
143
144 size_t interestNameLength = interest.getName().size();
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500145 for (iterator right = last; right != first;) {
146 iterator prev = std::prev(right);
Junxiao Shi5640ec82015-01-07 21:51:19 -0700147
148 // special case: [first,prev] have exact Names
149 if (prev->getName().size() == interestNameLength) {
150 NFD_LOG_TRACE(" find-among-exact " << prev->getName());
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500151 iterator matchExact = this->findRightmostAmongExact(interest, first, right);
Junxiao Shi5640ec82015-01-07 21:51:19 -0700152 return matchExact == right ? last : matchExact;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800153 }
154
Junxiao Shi5640ec82015-01-07 21:51:19 -0700155 Name prefix = prev->getName().getPrefix(interestNameLength + 1);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500156 iterator left = m_table.lower_bound(prefix);
Junxiao Shi5640ec82015-01-07 21:51:19 -0700157
158 // normal case: [left,right) are under one-component-longer prefix
159 NFD_LOG_TRACE(" find-under-prefix " << prefix);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500160 iterator match = this->findLeftmost(interest, left, right);
Junxiao Shi5640ec82015-01-07 21:51:19 -0700161 if (match != right) {
162 return match;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800163 }
Junxiao Shi5640ec82015-01-07 21:51:19 -0700164 right = left;
Junxiao Shia9388182014-12-13 23:16:09 -0700165 }
Junxiao Shi5640ec82015-01-07 21:51:19 -0700166 return last;
167}
168
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500169iterator
170Cs::findRightmostAmongExact(const Interest& interest, iterator first, iterator last) const
Junxiao Shi5640ec82015-01-07 21:51:19 -0700171{
Junxiao Shifc206962015-01-16 11:12:22 -0700172 return find_last_if(first, last, bind(&EntryImpl::canSatisfy, _1, interest));
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800173}
174
175void
Junxiao Shi3d2049f2018-01-26 23:46:06 +0000176Cs::dump()
177{
178 NFD_LOG_DEBUG("dump table");
179 for (const EntryImpl& entry : m_table) {
180 NFD_LOG_TRACE(entry.getFullName());
181 }
182}
183
184void
185Cs::setPolicy(unique_ptr<Policy> policy)
186{
187 BOOST_ASSERT(policy != nullptr);
188 BOOST_ASSERT(m_policy != nullptr);
189 size_t limit = m_policy->getLimit();
190 this->setPolicyImpl(std::move(policy));
191 m_policy->setLimit(limit);
192}
193
194void
Junxiao Shi52555b02016-11-25 21:39:06 +0000195Cs::setPolicyImpl(unique_ptr<Policy> policy)
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800196{
Junxiao Shi52555b02016-11-25 21:39:06 +0000197 NFD_LOG_DEBUG("set-policy " << policy->getName());
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500198 m_policy = std::move(policy);
199 m_beforeEvictConnection = m_policy->beforeEvict.connect([this] (iterator it) {
200 m_table.erase(it);
201 });
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800202
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500203 m_policy->setCs(this);
204 BOOST_ASSERT(m_policy->getCs() == this);
Junxiao Shia9388182014-12-13 23:16:09 -0700205}
206
207void
Junxiao Shi3d2049f2018-01-26 23:46:06 +0000208Cs::enableAdmit(bool shouldAdmit)
Junxiao Shia9388182014-12-13 23:16:09 -0700209{
Junxiao Shi3d2049f2018-01-26 23:46:06 +0000210 if (m_shouldAdmit == shouldAdmit) {
211 return;
Junxiao Shia9388182014-12-13 23:16:09 -0700212 }
Junxiao Shi3d2049f2018-01-26 23:46:06 +0000213 m_shouldAdmit = shouldAdmit;
214 NFD_LOG_INFO((shouldAdmit ? "Enabling" : "Disabling") << " Data admittance");
215}
216
217void
218Cs::enableServe(bool shouldServe)
219{
220 if (m_shouldServe == shouldServe) {
221 return;
222 }
223 m_shouldServe = shouldServe;
224 NFD_LOG_INFO((shouldServe ? "Enabling" : "Disabling") << " Data serving");
Junxiao Shia9388182014-12-13 23:16:09 -0700225}
226
227} // namespace cs
228} // namespace nfd