Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014, 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/>. |
| 24 | * |
Alexander Afanasyev | 4b3fc86 | 2014-06-19 14:57:57 -0700 | [diff] [blame] | 25 | * \author Ilya Moiseenko <http://ilyamoiseenko.com/> |
| 26 | * \author Junxiao Shi <http://www.cs.arizona.edu/people/shijunxiao/> |
| 27 | * \author Alexander Afanasyev <http://lasr.cs.ucla.edu/afanasyev/index.html> |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 28 | */ |
| 29 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 30 | #ifndef NFD_DAEMON_TABLE_CS_HPP |
| 31 | #define NFD_DAEMON_TABLE_CS_HPP |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 32 | |
| 33 | #include "common.hpp" |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 34 | #include "cs-entry.hpp" |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 35 | |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 36 | #include <boost/multi_index/member.hpp> |
| 37 | #include <boost/multi_index_container.hpp> |
| 38 | #include <boost/multi_index/ordered_index.hpp> |
| 39 | #include <boost/multi_index/sequenced_index.hpp> |
| 40 | #include <boost/multi_index/identity.hpp> |
| 41 | |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 42 | #include <queue> |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 43 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 44 | namespace nfd { |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 45 | |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 46 | typedef std::list<cs::Entry*> SkipListLayer; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 47 | typedef std::list<SkipListLayer*> SkipList; |
| 48 | |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 49 | class StalenessComparator |
| 50 | { |
| 51 | public: |
| 52 | bool |
| 53 | operator()(const cs::Entry* entry1, const cs::Entry* entry2) const |
| 54 | { |
| 55 | return entry1->getStaleTime() < entry2->getStaleTime(); |
| 56 | } |
| 57 | }; |
| 58 | |
| 59 | class UnsolicitedComparator |
| 60 | { |
| 61 | public: |
| 62 | bool |
| 63 | operator()(const cs::Entry* entry1, const cs::Entry* entry2) const |
| 64 | { |
| 65 | return entry1->isUnsolicited(); |
| 66 | } |
| 67 | }; |
| 68 | |
| 69 | // tags |
| 70 | class unsolicited; |
| 71 | class byStaleness; |
| 72 | class byArrival; |
| 73 | |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 74 | typedef boost::multi_index_container< |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 75 | cs::Entry*, |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 76 | boost::multi_index::indexed_by< |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 77 | |
| 78 | // by arrival (FIFO) |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 79 | boost::multi_index::sequenced< |
| 80 | boost::multi_index::tag<byArrival> |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 81 | >, |
| 82 | |
| 83 | // index by staleness time |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 84 | boost::multi_index::ordered_non_unique< |
| 85 | boost::multi_index::tag<byStaleness>, |
| 86 | boost::multi_index::identity<cs::Entry*>, |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 87 | StalenessComparator |
| 88 | >, |
| 89 | |
| 90 | // unsolicited Data is in the front |
Davide Pesavento | 52a18f9 | 2014-04-10 00:55:01 +0200 | [diff] [blame] | 91 | boost::multi_index::ordered_non_unique< |
| 92 | boost::multi_index::tag<unsolicited>, |
| 93 | boost::multi_index::identity<cs::Entry*>, |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 94 | UnsolicitedComparator |
| 95 | > |
| 96 | |
| 97 | > |
| 98 | > CleanupIndex; |
| 99 | |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 100 | /** \brief represents Content Store |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 101 | */ |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 102 | class Cs : noncopyable |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 103 | { |
| 104 | public: |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 105 | explicit |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 106 | Cs(size_t nMaxPackets = 10); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 107 | |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 108 | ~Cs(); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 109 | |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 110 | /** \brief inserts a Data packet |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 111 | * This method does not consider the payload of the Data packet. |
| 112 | * |
| 113 | * Packets are considered duplicate if the name matches. |
| 114 | * The new Data packet with the identical name, but a different payload |
| 115 | * is not placed in the Content Store |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 116 | * \return{ whether the Data is added } |
| 117 | */ |
| 118 | bool |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 119 | insert(const Data& data, bool isUnsolicited = false); |
| 120 | |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 121 | /** \brief finds the best match Data for an Interest |
Alexander Afanasyev | c9765df | 2014-01-25 19:24:27 -0800 | [diff] [blame] | 122 | * \return{ the best match, if any; otherwise 0 } |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 123 | */ |
Alexander Afanasyev | c9765df | 2014-01-25 19:24:27 -0800 | [diff] [blame] | 124 | const Data* |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 125 | find(const Interest& interest) const; |
| 126 | |
| 127 | /** \brief deletes CS entry by the exact name |
| 128 | */ |
| 129 | void |
| 130 | erase(const Name& exactName); |
| 131 | |
| 132 | /** \brief sets maximum allowed size of Content Store (in packets) |
| 133 | */ |
| 134 | void |
| 135 | setLimit(size_t nMaxPackets); |
| 136 | |
| 137 | /** \brief returns maximum allowed size of Content Store (in packets) |
| 138 | * \return{ number of packets that can be stored in Content Store } |
| 139 | */ |
| 140 | size_t |
| 141 | getLimit() const; |
| 142 | |
| 143 | /** \brief returns current size of Content Store measured in packets |
| 144 | * \return{ number of packets located in Content Store } |
| 145 | */ |
| 146 | size_t |
| 147 | size() const; |
| 148 | |
| 149 | protected: |
| 150 | /** \brief removes one Data packet from Content Store based on replacement policy |
| 151 | * \return{ whether the Data was removed } |
| 152 | */ |
| 153 | bool |
| 154 | evictItem(); |
| 155 | |
| 156 | private: |
| 157 | /** \brief returns True if the Content Store is at its maximum capacity |
| 158 | * \return{ True if Content Store is full; otherwise False} |
| 159 | */ |
| 160 | bool |
| 161 | isFull() const; |
| 162 | |
| 163 | /** \brief Computes the layer where new Content Store Entry is placed |
| 164 | * |
| 165 | * Reference: "Skip Lists: A Probabilistic Alternative to Balanced Trees" by W.Pugh |
| 166 | * \return{ returns random layer (number) in a skip list} |
| 167 | */ |
Alexander Afanasyev | efea8fe | 2014-03-23 00:00:35 -0700 | [diff] [blame] | 168 | size_t |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 169 | pickRandomLayer() const; |
| 170 | |
| 171 | /** \brief Inserts a new Content Store Entry in a skip list |
| 172 | * \return{ returns a pair containing a pointer to the CS Entry, |
| 173 | * and a flag indicating if the entry was newly created (True) or refreshed (False) } |
| 174 | */ |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 175 | std::pair<cs::Entry*, bool> |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 176 | insertToSkipList(const Data& data, bool isUnsolicited = false); |
| 177 | |
| 178 | /** \brief Removes a specific CS Entry from all layers of a skip list |
| 179 | * \return{ returns True if CS Entry was succesfully removed and False if CS Entry was not found} |
| 180 | */ |
| 181 | bool |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 182 | eraseFromSkipList(cs::Entry* entry); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 183 | |
| 184 | /** \brief Prints contents of the skip list, starting from the top layer |
| 185 | */ |
| 186 | void |
| 187 | printSkipList() const; |
| 188 | |
| 189 | /** \brief Implements child selector (leftmost, rightmost, undeclared). |
| 190 | * Operates on the first layer of a skip list. |
| 191 | * |
| 192 | * startingPoint must be less than Interest Name. |
| 193 | * startingPoint can be equal to Interest Name only when the item is in the begin() position. |
| 194 | * |
| 195 | * Iterates toward greater Names, terminates when CS entry falls out of Interest prefix. |
| 196 | * When childSelector = leftmost, returns first CS entry that satisfies other selectors. |
| 197 | * When childSelector = rightmost, it goes till the end, and returns CS entry that satisfies |
| 198 | * other selectors. Returned CS entry is the leftmost child of the rightmost child. |
| 199 | * \return{ the best match, if any; otherwise 0 } |
| 200 | */ |
| 201 | const Data* |
| 202 | selectChild(const Interest& interest, SkipListLayer::iterator startingPoint) const; |
| 203 | |
| 204 | /** \brief checks if Content Store entry satisfies Interest selectors (MinSuffixComponents, |
| 205 | * MaxSuffixComponents, Implicit Digest, MustBeFresh) |
| 206 | * \return{ true if satisfies all selectors; false otherwise } |
| 207 | */ |
| 208 | bool |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 209 | doesComplyWithSelectors(const Interest& interest, |
| 210 | cs::Entry* entry, |
| 211 | bool doesInterestContainDigest) const; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 212 | |
| 213 | /** \brief interprets minSuffixComponent and name lengths to understand if Interest contains |
| 214 | * implicit digest of the data |
| 215 | * \return{ True if Interest name contains digest; False otherwise } |
| 216 | */ |
| 217 | bool |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 218 | recognizeInterestWithDigest(const Interest& interest, cs::Entry* entry) const; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 219 | |
| 220 | private: |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 221 | SkipList m_skipList; |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 222 | CleanupIndex m_cleanupIndex; |
| 223 | size_t m_nMaxPackets; // user defined maximum size of the Content Store in packets |
| 224 | size_t m_nPackets; // current number of packets in Content Store |
| 225 | std::queue<cs::Entry*> m_freeCsEntries; // memory pool |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 226 | }; |
| 227 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 228 | } // namespace nfd |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 229 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 230 | #endif // NFD_DAEMON_TABLE_CS_HPP |