Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 3 | * 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 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" |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 27 | #include "core/logger.hpp" |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 28 | #include "core/algorithm.hpp" |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 29 | #include <numeric> |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 30 | |
| 31 | NFD_LOG_INIT("ContentStore"); |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -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 | |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 36 | // http://en.cppreference.com/w/cpp/concept/ForwardIterator |
| 37 | BOOST_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 |
| 41 | static_assert(std::is_default_constructible<Cs::const_iterator>::value, |
| 42 | "Cs::const_iterator must be default-constructible"); |
| 43 | #else |
| 44 | BOOST_CONCEPT_ASSERT((boost::DefaultConstructible<Cs::const_iterator>)); |
| 45 | #endif // HAVE_IS_DEFAULT_CONSTRUCTIBLE |
| 46 | |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 47 | Cs::Cs(size_t nMaxPackets) |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 48 | : m_limit(nMaxPackets) |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 49 | { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 50 | BOOST_ASSERT(nMaxPackets > 0); |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 51 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 52 | |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 53 | void |
| 54 | Cs::setLimit(size_t nMaxPackets) |
| 55 | { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 56 | BOOST_ASSERT(nMaxPackets > 0); |
| 57 | m_limit = nMaxPackets; |
| 58 | this->evict(); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 59 | } |
| 60 | |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 61 | bool |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 62 | Cs::insert(const Data& data, bool isUnsolicited) |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 63 | { |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 64 | NFD_LOG_DEBUG("insert " << data.getName()); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 65 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 66 | bool isNewEntry = false; TableIt it; |
| 67 | // use .insert because gcc46 does not support .emplace |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 68 | std::tie(it, isNewEntry) = m_table.insert(EntryImpl(data.shared_from_this(), isUnsolicited)); |
| 69 | EntryImpl& entry = const_cast<EntryImpl&>(*it); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 70 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 71 | 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 Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 76 | } |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 77 | } |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 78 | entry.updateStaleTime(); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 79 | this->attachQueue(it); |
| 80 | |
| 81 | // check there are same amount of entries in the table and in queues |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 82 | BOOST_ASSERT(m_table.size() == std::accumulate(m_queues, m_queues + QUEUE_MAX, 0U, |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 83 | [] (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 Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 88 | } |
| 89 | |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 90 | const Data* |
| 91 | Cs::find(const Interest& interest) const |
| 92 | { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 93 | const Name& prefix = interest.getName(); |
| 94 | bool isRightmost = interest.getChildSelector() == 1; |
| 95 | NFD_LOG_DEBUG("find " << prefix << (isRightmost ? " R" : " L")); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 96 | |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 97 | TableIt first = m_table.lower_bound(prefix); |
| 98 | TableIt last = m_table.end(); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 99 | if (prefix.size() > 0) { |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 100 | last = m_table.lower_bound(prefix.getSuccessor()); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 101 | } |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 102 | |
| 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 Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 116 | return &match->getData(); |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 119 | TableIt |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 120 | Cs::findLeftmost(const Interest& interest, TableIt first, TableIt last) const |
| 121 | { |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 122 | return std::find_if(first, last, bind(&cs::EntryImpl::canSatisfy, _1, interest)); |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 125 | TableIt |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 126 | Cs::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 Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 141 | } |
| 142 | |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 143 | 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 Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 151 | } |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 152 | right = left; |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 153 | } |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 154 | return last; |
| 155 | } |
| 156 | |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 157 | TableIt |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 158 | Cs::findRightmostAmongExact(const Interest& interest, TableIt first, TableIt last) const |
| 159 | { |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 160 | return find_last_if(first, last, bind(&EntryImpl::canSatisfy, _1, interest)); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | void |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 164 | Cs::attachQueue(TableIt it) |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 165 | { |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 166 | EntryImpl& entry = const_cast<EntryImpl&>(*it); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 167 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 168 | if (entry.queueType != QUEUE_NONE) { |
| 169 | this->detachQueue(it); |
| 170 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 171 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 172 | 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 Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 180 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 181 | if (entry.canStale()) { |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 182 | entry.moveStaleEvent = scheduler::schedule(entry.getData().getFreshnessPeriod(), |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 183 | bind(&Cs::moveToStaleQueue, this, it)); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 184 | } |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 185 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 186 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 187 | Queue& queue = m_queues[entry.queueType]; |
| 188 | entry.queueIt = queue.insert(queue.end(), it); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | void |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 192 | Cs::detachQueue(TableIt it) |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 193 | { |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 194 | EntryImpl& entry = const_cast<EntryImpl&>(*it); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 195 | |
| 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 Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 204 | } |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 205 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 206 | void |
| 207 | Cs::moveToStaleQueue(TableIt it) |
| 208 | { |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 209 | EntryImpl& entry = const_cast<EntryImpl&>(*it); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 210 | |
| 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 Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 219 | std::tuple<TableIt, std::string> |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 220 | Cs::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 | |
| 237 | void |
| 238 | Cs::evict() |
| 239 | { |
| 240 | while (this->size() > m_limit) { |
| 241 | TableIt it; std::string reason; |
| 242 | std::tie(it, reason) = this->evictPick(); |
| 243 | |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 244 | NFD_LOG_DEBUG("evict " << it->getName() << " " << reason); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 245 | this->detachQueue(it); |
| 246 | m_table.erase(it); |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | void |
| 251 | Cs::dump() |
| 252 | { |
| 253 | NFD_LOG_DEBUG("dump table"); |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 254 | for (const EntryImpl& entry : m_table) { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 255 | NFD_LOG_TRACE(entry.getFullName()); |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | } // namespace cs |
| 260 | } // namespace nfd |