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/>. |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 24 | */ |
| 25 | |
| 26 | /** \file |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 27 | * |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 28 | * \brief implements the ContentStore |
| 29 | * |
| 30 | * This ContentStore implementation consists of two data structures, |
| 31 | * a Table, and a set of cleanup queues. |
| 32 | * |
| 33 | * The Table is a container (std::set) sorted by full Names of stored Data packets. |
| 34 | * Data packets are wrapped in Entry objects. |
| 35 | * Each Entry contain the Data packet itself, |
| 36 | * and a few addition attributes such as the staleness of the Data packet. |
| 37 | * |
| 38 | * The cleanup queues are three doubly linked lists which stores Table iterators. |
| 39 | * The three queues keep track of unsolicited, stale, and fresh Data packet, respectively. |
| 40 | * Table iterator is placed into, removed from, and moved between suitable queues |
| 41 | * whenever an Entry is added, removed, or has other attribute changes. |
| 42 | * The Table iterator of an Entry should be in exactly one queue at any moment. |
| 43 | * Within each queue, the iterators are kept in first-in-first-out order. |
| 44 | * Eviction procedure exhausts the first queue before moving onto the next queue, |
| 45 | * in the order of unsolicited, stale, and fresh queue. |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 46 | */ |
| 47 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 48 | #ifndef NFD_DAEMON_TABLE_CS_HPP |
| 49 | #define NFD_DAEMON_TABLE_CS_HPP |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 50 | |
| 51 | #include "common.hpp" |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 52 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 53 | namespace nfd { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 54 | namespace cs { |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 55 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 56 | class Entry; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 57 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 58 | /** \brief represents the ContentStore |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 59 | */ |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 60 | class Cs : noncopyable |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 61 | { |
| 62 | public: |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 63 | explicit |
Steve DiBenedetto | 3a4f83d | 2014-06-02 14:58:54 -0600 | [diff] [blame] | 64 | Cs(size_t nMaxPackets = 10); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 65 | |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 66 | ~Cs(); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 67 | |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 68 | /** \brief inserts a Data packet |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 69 | * \return true |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 70 | */ |
| 71 | bool |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 72 | insert(const Data& data, bool isUnsolicited = false); |
| 73 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 74 | /** \brief finds the best matching Data packet |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 75 | */ |
Alexander Afanasyev | c9765df | 2014-01-25 19:24:27 -0800 | [diff] [blame] | 76 | const Data* |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 77 | find(const Interest& interest) const; |
| 78 | |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 79 | void |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 80 | erase(const Name& exactName) |
| 81 | { |
| 82 | BOOST_ASSERT_MSG(false, "not implemented"); |
| 83 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 84 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 85 | /** \brief changes capacity (in number of packets) |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 86 | */ |
| 87 | void |
| 88 | setLimit(size_t nMaxPackets); |
| 89 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 90 | /** \return capacity (in number of packets) |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 91 | */ |
| 92 | size_t |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 93 | getLimit() const |
| 94 | { |
| 95 | return m_limit; |
| 96 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 97 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 98 | /** \return number of stored packets |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 99 | */ |
| 100 | size_t |
| 101 | size() const; |
| 102 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 103 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| 104 | void |
| 105 | dump(); |
| 106 | |
| 107 | public: |
| 108 | typedef std::set<Entry> Table; |
| 109 | typedef Table::const_iterator TableIt; |
| 110 | typedef std::list<TableIt> Queue; |
| 111 | typedef Queue::iterator QueueIt; |
| 112 | enum QueueType { |
| 113 | QUEUE_UNSOLICITED, |
| 114 | QUEUE_STALE, |
| 115 | QUEUE_FIFO, |
| 116 | QUEUE_UBOUND, |
| 117 | QUEUE_NONE = QUEUE_UBOUND |
| 118 | }; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 119 | |
| 120 | private: |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 121 | /** \brief determines whether b should be the rightmost candidate instead of a |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 122 | */ |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 123 | static bool |
| 124 | isNewRightmostCandidate(const Name& prefix, TableIt a, TableIt b); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 125 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 126 | /** \brief attaches an entry to a suitable cleanup queue |
| 127 | * \note if the entry is already attached to a queue, it's automatically detached |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 128 | */ |
| 129 | void |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 130 | attachQueue(TableIt it); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 131 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 132 | /** \brief detaches an entry from its current cleanup queue |
| 133 | * \warning if the entry is unattached, this will cause undefined behavior |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 134 | */ |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 135 | void |
| 136 | detachQueue(TableIt it); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 137 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 138 | /** \brief moves an entry from FIFO queue to STALE queue |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 139 | */ |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 140 | void |
| 141 | moveToStaleQueue(TableIt it); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 142 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 143 | /** \brief picks an entry for eviction |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 144 | */ |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 145 | std::tuple<TableIt, std::string/*reason*/> |
| 146 | evictPick(); |
| 147 | |
| 148 | /** \brief evicts zero or more entries so that number of stored entries |
| 149 | * is not greater than capacity |
| 150 | */ |
| 151 | void |
| 152 | evict(); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 153 | |
| 154 | private: |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 155 | size_t m_limit; |
| 156 | Table m_table; |
| 157 | Queue m_queues[QUEUE_UBOUND]; |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 158 | }; |
| 159 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame^] | 160 | } // namespace cs |
| 161 | |
| 162 | using cs::Cs; |
| 163 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 164 | } // namespace nfd |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 165 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 166 | #endif // NFD_DAEMON_TABLE_CS_HPP |