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 | 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 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 51 | #include "cs-policy.hpp" |
| 52 | #include "cs-internal.hpp" |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 53 | #include "cs-entry-impl.hpp" |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 54 | #include <ndn-cxx/util/signal.hpp> |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 55 | #include <boost/iterator/transform_iterator.hpp> |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 56 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 57 | namespace nfd { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 58 | namespace cs { |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 59 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 60 | unique_ptr<Policy> |
| 61 | makeDefaultPolicy(); |
| 62 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 63 | /** \brief represents the ContentStore |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 64 | */ |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 65 | class Cs : noncopyable |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 66 | { |
| 67 | public: |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 68 | explicit |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 69 | Cs(size_t nMaxPackets = 10, unique_ptr<Policy> policy = makeDefaultPolicy()); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 70 | |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 71 | /** \brief inserts a Data packet |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 72 | * \return true |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 73 | */ |
| 74 | bool |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 75 | insert(const Data& data, bool isUnsolicited = false); |
| 76 | |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 77 | typedef std::function<void(const Interest&, const Data& data)> HitCallback; |
| 78 | typedef std::function<void(const Interest&)> MissCallback; |
| 79 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 80 | /** \brief finds the best matching Data packet |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 81 | * \param interest the Interest for lookup |
| 82 | * \param hitCallback a callback if a match is found; must not be empty |
| 83 | * \param missCallback a callback if there's no match; must not be empty |
| 84 | * \note A lookup invokes either callback exactly once. |
| 85 | * The callback may be invoked either before or after find() returns |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 86 | */ |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 87 | void |
| 88 | find(const Interest& interest, |
| 89 | const HitCallback& hitCallback, |
| 90 | const MissCallback& missCallback) const; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 91 | |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 92 | void |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 93 | erase(const Name& exactName) |
| 94 | { |
| 95 | BOOST_ASSERT_MSG(false, "not implemented"); |
| 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 | /** \brief changes capacity (in number of packets) |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 99 | */ |
| 100 | void |
| 101 | setLimit(size_t nMaxPackets); |
| 102 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 103 | /** \return capacity (in number of packets) |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 104 | */ |
| 105 | size_t |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 106 | getLimit() const; |
| 107 | |
| 108 | /** \brief changes cs replacement policy |
| 109 | * \pre size() == 0 |
| 110 | */ |
| 111 | void |
| 112 | setPolicy(unique_ptr<Policy> policy); |
| 113 | |
| 114 | /** \return cs replacement policy |
| 115 | */ |
| 116 | Policy* |
| 117 | getPolicy() const |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 118 | { |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 119 | return m_policy.get(); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 120 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 121 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 122 | /** \return number of stored packets |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 123 | */ |
| 124 | size_t |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 125 | size() const |
| 126 | { |
| 127 | return m_table.size(); |
| 128 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 129 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 130 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| 131 | void |
| 132 | dump(); |
| 133 | |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 134 | public: // enumeration |
| 135 | struct EntryFromEntryImpl |
| 136 | { |
| 137 | typedef const Entry& result_type; |
| 138 | |
| 139 | const Entry& |
| 140 | operator()(const EntryImpl& entry) const |
| 141 | { |
| 142 | return entry; |
| 143 | } |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 144 | }; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 145 | |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 146 | /** \brief ContentStore iterator (public API) |
| 147 | */ |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 148 | typedef boost::transform_iterator<EntryFromEntryImpl, iterator, const Entry&> const_iterator; |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 149 | |
| 150 | const_iterator |
| 151 | begin() const |
| 152 | { |
| 153 | return boost::make_transform_iterator(m_table.begin(), EntryFromEntryImpl()); |
| 154 | } |
| 155 | |
| 156 | const_iterator |
| 157 | end() const |
| 158 | { |
| 159 | return boost::make_transform_iterator(m_table.end(), EntryFromEntryImpl()); |
| 160 | } |
| 161 | |
| 162 | private: // find |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 163 | /** \brief find leftmost match in [first,last) |
| 164 | * \return the leftmost match, or last if not found |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 165 | */ |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 166 | iterator |
| 167 | findLeftmost(const Interest& interest, iterator left, iterator right) const; |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 168 | |
| 169 | /** \brief find rightmost match in [first,last) |
| 170 | * \return the rightmost match, or last if not found |
| 171 | */ |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 172 | iterator |
| 173 | findRightmost(const Interest& interest, iterator first, iterator last) const; |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 174 | |
| 175 | /** \brief find rightmost match among entries with exact Names in [first,last) |
| 176 | * \return the rightmost match, or last if not found |
| 177 | */ |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 178 | iterator |
| 179 | findRightmostAmongExact(const Interest& interest, iterator first, iterator last) const; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 180 | |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 181 | void |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 182 | setPolicyImpl(unique_ptr<Policy>& policy); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 183 | |
| 184 | private: |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 185 | Table m_table; |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 186 | unique_ptr<Policy> m_policy; |
| 187 | ndn::util::signal::ScopedConnection m_beforeEvictConnection; |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 188 | }; |
| 189 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 190 | } // namespace cs |
| 191 | |
| 192 | using cs::Cs; |
| 193 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 194 | } // namespace nfd |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 195 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 196 | #endif // NFD_DAEMON_TABLE_CS_HPP |