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