blob: e1e8e730e4896c9f91ba22eaf3012e85509d92d7 [file] [log] [blame]
Junxiao Shi0fcb41e2014-01-24 10:29:43 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi5640ec82015-01-07 21:51:19 -07003 * Copyright (c) 2014-2015, Regents of the University of California,
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 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"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060027#include "core/logger.hpp"
Junxiao Shi5640ec82015-01-07 21:51:19 -070028#include "core/algorithm.hpp"
Junxiao Shia9388182014-12-13 23:16:09 -070029#include <numeric>
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080030
31NFD_LOG_INIT("ContentStore");
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080032
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080033namespace nfd {
Junxiao Shia9388182014-12-13 23:16:09 -070034namespace cs {
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070035
Junxiao Shifc206962015-01-16 11:12:22 -070036// http://en.cppreference.com/w/cpp/concept/ForwardIterator
37BOOST_CONCEPT_ASSERT((boost::ForwardIterator<Cs::const_iterator>));
38// boost::ForwardIterator follows SGI standard http://www.sgi.com/tech/stl/ForwardIterator.html,
39// which doesn't require DefaultConstructible
40#ifdef HAVE_IS_DEFAULT_CONSTRUCTIBLE
41static_assert(std::is_default_constructible<Cs::const_iterator>::value,
42 "Cs::const_iterator must be default-constructible");
43#else
44BOOST_CONCEPT_ASSERT((boost::DefaultConstructible<Cs::const_iterator>));
45#endif // HAVE_IS_DEFAULT_CONSTRUCTIBLE
46
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060047Cs::Cs(size_t nMaxPackets)
Junxiao Shia9388182014-12-13 23:16:09 -070048 : m_limit(nMaxPackets)
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070049{
Junxiao Shia9388182014-12-13 23:16:09 -070050 BOOST_ASSERT(nMaxPackets > 0);
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070051}
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080052
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080053void
54Cs::setLimit(size_t nMaxPackets)
55{
Junxiao Shia9388182014-12-13 23:16:09 -070056 BOOST_ASSERT(nMaxPackets > 0);
57 m_limit = nMaxPackets;
58 this->evict();
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080059}
60
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070061bool
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080062Cs::insert(const Data& data, bool isUnsolicited)
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070063{
Junxiao Shi5640ec82015-01-07 21:51:19 -070064 NFD_LOG_DEBUG("insert " << data.getName());
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080065
Junxiao Shia9388182014-12-13 23:16:09 -070066 bool isNewEntry = false; TableIt it;
67 // use .insert because gcc46 does not support .emplace
Junxiao Shifc206962015-01-16 11:12:22 -070068 std::tie(it, isNewEntry) = m_table.insert(EntryImpl(data.shared_from_this(), isUnsolicited));
69 EntryImpl& entry = const_cast<EntryImpl&>(*it);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080070
Junxiao Shia9388182014-12-13 23:16:09 -070071 if (!isNewEntry) { // existing entry
72 this->detachQueue(it);
73 // XXX This doesn't forbid unsolicited Data from refreshing a solicited entry.
74 if (entry.isUnsolicited() && !isUnsolicited) {
75 entry.unsetUnsolicited();
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080076 }
Junxiao Shiaf6569a2014-06-14 00:01:34 -070077 }
Junxiao Shifc206962015-01-16 11:12:22 -070078 entry.updateStaleTime();
Junxiao Shia9388182014-12-13 23:16:09 -070079 this->attachQueue(it);
80
81 // check there are same amount of entries in the table and in queues
Junxiao Shifc206962015-01-16 11:12:22 -070082 BOOST_ASSERT(m_table.size() == std::accumulate(m_queues, m_queues + QUEUE_MAX, 0U,
Junxiao Shia9388182014-12-13 23:16:09 -070083 [] (size_t sum, const Queue queue) { return sum + queue.size(); }));
84
85 this->evict(); // XXX The new entry could be evicted, but it shouldn't matter.
86
87 return true;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080088}
89
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080090const Data*
91Cs::find(const Interest& interest) const
92{
Junxiao Shia9388182014-12-13 23:16:09 -070093 const Name& prefix = interest.getName();
94 bool isRightmost = interest.getChildSelector() == 1;
95 NFD_LOG_DEBUG("find " << prefix << (isRightmost ? " R" : " L"));
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080096
Junxiao Shi5640ec82015-01-07 21:51:19 -070097 TableIt first = m_table.lower_bound(prefix);
98 TableIt last = m_table.end();
Junxiao Shia9388182014-12-13 23:16:09 -070099 if (prefix.size() > 0) {
Junxiao Shi5640ec82015-01-07 21:51:19 -0700100 last = m_table.lower_bound(prefix.getSuccessor());
Junxiao Shia9388182014-12-13 23:16:09 -0700101 }
Junxiao Shi5640ec82015-01-07 21:51:19 -0700102
103 TableIt match = last;
104 if (isRightmost) {
105 match = this->findRightmost(interest, first, last);
106 }
107 else {
108 match = this->findLeftmost(interest, first, last);
109 }
110
111 if (match == last) {
112 NFD_LOG_DEBUG(" no-match");
113 return nullptr;
114 }
115 NFD_LOG_DEBUG(" matching " << match->getName());
Junxiao Shifc206962015-01-16 11:12:22 -0700116 return &match->getData();
Junxiao Shi5640ec82015-01-07 21:51:19 -0700117}
118
Junxiao Shifc206962015-01-16 11:12:22 -0700119TableIt
Junxiao Shi5640ec82015-01-07 21:51:19 -0700120Cs::findLeftmost(const Interest& interest, TableIt first, TableIt last) const
121{
Junxiao Shifc206962015-01-16 11:12:22 -0700122 return std::find_if(first, last, bind(&cs::EntryImpl::canSatisfy, _1, interest));
Junxiao Shi5640ec82015-01-07 21:51:19 -0700123}
124
Junxiao Shifc206962015-01-16 11:12:22 -0700125TableIt
Junxiao Shi5640ec82015-01-07 21:51:19 -0700126Cs::findRightmost(const Interest& interest, TableIt first, TableIt last) const
127{
128 // Each loop visits a sub-namespace under a prefix one component longer than Interest Name.
129 // If there is a match in that sub-namespace, the leftmost match is returned;
130 // otherwise, loop continues.
131
132 size_t interestNameLength = interest.getName().size();
133 for (TableIt right = last; right != first;) {
134 TableIt prev = std::prev(right);
135
136 // special case: [first,prev] have exact Names
137 if (prev->getName().size() == interestNameLength) {
138 NFD_LOG_TRACE(" find-among-exact " << prev->getName());
139 TableIt matchExact = this->findRightmostAmongExact(interest, first, right);
140 return matchExact == right ? last : matchExact;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800141 }
142
Junxiao Shi5640ec82015-01-07 21:51:19 -0700143 Name prefix = prev->getName().getPrefix(interestNameLength + 1);
144 TableIt left = m_table.lower_bound(prefix);
145
146 // normal case: [left,right) are under one-component-longer prefix
147 NFD_LOG_TRACE(" find-under-prefix " << prefix);
148 TableIt match = this->findLeftmost(interest, left, right);
149 if (match != right) {
150 return match;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800151 }
Junxiao Shi5640ec82015-01-07 21:51:19 -0700152 right = left;
Junxiao Shia9388182014-12-13 23:16:09 -0700153 }
Junxiao Shi5640ec82015-01-07 21:51:19 -0700154 return last;
155}
156
Junxiao Shifc206962015-01-16 11:12:22 -0700157TableIt
Junxiao Shi5640ec82015-01-07 21:51:19 -0700158Cs::findRightmostAmongExact(const Interest& interest, TableIt first, TableIt last) const
159{
Junxiao Shifc206962015-01-16 11:12:22 -0700160 return find_last_if(first, last, bind(&EntryImpl::canSatisfy, _1, interest));
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800161}
162
163void
Junxiao Shia9388182014-12-13 23:16:09 -0700164Cs::attachQueue(TableIt it)
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800165{
Junxiao Shifc206962015-01-16 11:12:22 -0700166 EntryImpl& entry = const_cast<EntryImpl&>(*it);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800167
Junxiao Shia9388182014-12-13 23:16:09 -0700168 if (entry.queueType != QUEUE_NONE) {
169 this->detachQueue(it);
170 }
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800171
Junxiao Shia9388182014-12-13 23:16:09 -0700172 if (entry.isUnsolicited()) {
173 entry.queueType = QUEUE_UNSOLICITED;
174 }
175 else if (entry.isStale()) {
176 entry.queueType = QUEUE_STALE;
177 }
178 else {
179 entry.queueType = QUEUE_FIFO;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800180
Junxiao Shia9388182014-12-13 23:16:09 -0700181 if (entry.canStale()) {
Junxiao Shifc206962015-01-16 11:12:22 -0700182 entry.moveStaleEvent = scheduler::schedule(entry.getData().getFreshnessPeriod(),
Junxiao Shia9388182014-12-13 23:16:09 -0700183 bind(&Cs::moveToStaleQueue, this, it));
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800184 }
Junxiao Shia9388182014-12-13 23:16:09 -0700185 }
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800186
Junxiao Shia9388182014-12-13 23:16:09 -0700187 Queue& queue = m_queues[entry.queueType];
188 entry.queueIt = queue.insert(queue.end(), it);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800189}
190
191void
Junxiao Shia9388182014-12-13 23:16:09 -0700192Cs::detachQueue(TableIt it)
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800193{
Junxiao Shifc206962015-01-16 11:12:22 -0700194 EntryImpl& entry = const_cast<EntryImpl&>(*it);
Junxiao Shia9388182014-12-13 23:16:09 -0700195
196 BOOST_ASSERT(entry.queueType != QUEUE_NONE);
197
198 if (entry.queueType == QUEUE_FIFO) {
199 scheduler::cancel(entry.moveStaleEvent);
200 }
201
202 m_queues[entry.queueType].erase(entry.queueIt);
203 entry.queueType = QUEUE_NONE;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800204}
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700205
Junxiao Shia9388182014-12-13 23:16:09 -0700206void
207Cs::moveToStaleQueue(TableIt it)
208{
Junxiao Shifc206962015-01-16 11:12:22 -0700209 EntryImpl& entry = const_cast<EntryImpl&>(*it);
Junxiao Shia9388182014-12-13 23:16:09 -0700210
211 BOOST_ASSERT(entry.queueType == QUEUE_FIFO);
212 m_queues[QUEUE_FIFO].erase(entry.queueIt);
213
214 entry.queueType = QUEUE_STALE;
215 Queue& queue = m_queues[QUEUE_STALE];
216 entry.queueIt = queue.insert(queue.end(), it);
217}
218
Junxiao Shifc206962015-01-16 11:12:22 -0700219std::tuple<TableIt, std::string>
Junxiao Shia9388182014-12-13 23:16:09 -0700220Cs::evictPick()
221{
222 if (!m_queues[QUEUE_UNSOLICITED].empty()) {
223 return std::make_tuple(m_queues[QUEUE_UNSOLICITED].front(), "unsolicited");
224 }
225 if (!m_queues[QUEUE_STALE].empty()) {
226 return std::make_tuple(m_queues[QUEUE_STALE].front(), "stale");
227 }
228 if (!m_queues[QUEUE_FIFO].empty()) {
229 return std::make_tuple(m_queues[QUEUE_FIFO].front(), "fifo");
230 }
231
232 BOOST_ASSERT(false);
233 return std::make_tuple(m_table.end(), "error");
234}
235
236
237void
238Cs::evict()
239{
240 while (this->size() > m_limit) {
241 TableIt it; std::string reason;
242 std::tie(it, reason) = this->evictPick();
243
Junxiao Shi5640ec82015-01-07 21:51:19 -0700244 NFD_LOG_DEBUG("evict " << it->getName() << " " << reason);
Junxiao Shia9388182014-12-13 23:16:09 -0700245 this->detachQueue(it);
246 m_table.erase(it);
247 }
248}
249
250void
251Cs::dump()
252{
253 NFD_LOG_DEBUG("dump table");
Junxiao Shifc206962015-01-16 11:12:22 -0700254 for (const EntryImpl& entry : m_table) {
Junxiao Shia9388182014-12-13 23:16:09 -0700255 NFD_LOG_TRACE(entry.getFullName());
256 }
257}
258
259} // namespace cs
260} // namespace nfd