Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 84c65c0 | 2017-07-05 18:40:34 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 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 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_TABLE_CS_HPP |
| 27 | #define NFD_DAEMON_TABLE_CS_HPP |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 28 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 29 | #include "cs-policy.hpp" |
| 30 | #include "cs-internal.hpp" |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 31 | #include "cs-entry-impl.hpp" |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 32 | |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 33 | #include <boost/iterator/transform_iterator.hpp> |
Ilya Moiseenko | 96b80bb | 2014-04-05 20:53:27 -0400 | [diff] [blame] | 34 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 35 | namespace nfd { |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 36 | namespace cs { |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 37 | |
Junxiao Shi | 30c37ab | 2018-04-09 14:26:47 +0000 | [diff] [blame] | 38 | /** \brief implements the Content Store |
| 39 | * |
| 40 | * This Content Store implementation consists of a Table and a replacement policy. |
| 41 | * |
| 42 | * The Table is a container ( \c std::set ) sorted by full Names of stored Data packets. |
| 43 | * Data packets are wrapped in Entry objects. Each Entry contains the Data packet itself, |
| 44 | * and a few additional attributes such as when the Data becomes non-fresh. |
| 45 | * |
| 46 | * The replacement policy is implemented in a subclass of \c Policy. |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 47 | */ |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 48 | class Cs : noncopyable |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 49 | { |
| 50 | public: |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 51 | explicit |
Junxiao Shi | b4a5acd | 2016-12-07 19:59:18 +0000 | [diff] [blame] | 52 | Cs(size_t nMaxPackets = 10); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 53 | |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 54 | /** \brief inserts a Data packet |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 55 | */ |
Minsheng Zhang | ffe8bbb | 2016-03-10 13:40:37 -0700 | [diff] [blame] | 56 | void |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 57 | insert(const Data& data, bool isUnsolicited = false); |
| 58 | |
Junxiao Shi | 30c37ab | 2018-04-09 14:26:47 +0000 | [diff] [blame] | 59 | /** \brief asynchronously erases entries under \p prefix |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 60 | * \tparam AfterEraseCallback `void f(size_t nErased)` |
Junxiao Shi | 30c37ab | 2018-04-09 14:26:47 +0000 | [diff] [blame] | 61 | * \param prefix name prefix of entries |
| 62 | * \param limit max number of entries to erase |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 63 | * \param cb callback to receive the actual number of erased entries; must not be empty; |
Junxiao Shi | 30c37ab | 2018-04-09 14:26:47 +0000 | [diff] [blame] | 64 | * it may be invoked either before or after erase() returns |
| 65 | */ |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 66 | template<typename AfterEraseCallback> |
Junxiao Shi | 30c37ab | 2018-04-09 14:26:47 +0000 | [diff] [blame] | 67 | void |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 68 | erase(const Name& prefix, size_t limit, AfterEraseCallback&& cb) |
| 69 | { |
| 70 | size_t nErased = eraseImpl(prefix, limit); |
| 71 | cb(nErased); |
| 72 | } |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 73 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 74 | /** \brief finds the best matching Data packet |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 75 | * \tparam HitCallback `void f(const Interest&, const Data&)` |
| 76 | * \tparam MissCallback `void f(const Interest&)` |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 77 | * \param interest the Interest for lookup |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 78 | * \param hit a callback if a match is found; must not be empty |
| 79 | * \param miss a callback if there's no match; must not be empty |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 80 | * \note A lookup invokes either callback exactly once. |
| 81 | * The callback may be invoked either before or after find() returns |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 82 | */ |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 83 | template<typename HitCallback, typename MissCallback> |
mzhang4 | eab7249 | 2015-02-25 11:16:09 -0600 | [diff] [blame] | 84 | void |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 85 | find(const Interest& interest, HitCallback&& hit, MissCallback&& miss) const |
| 86 | { |
| 87 | iterator match = findImpl(interest); |
| 88 | if (match == m_table.end()) { |
| 89 | miss(interest); |
| 90 | return; |
| 91 | } |
| 92 | hit(interest, match->getData()); |
| 93 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 94 | |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 95 | /** \brief get number of stored packets |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 96 | */ |
| 97 | size_t |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 98 | size() const |
| 99 | { |
| 100 | return m_table.size(); |
| 101 | } |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 102 | |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 103 | public: // configuration |
| 104 | /** \brief get capacity (in number of packets) |
| 105 | */ |
| 106 | size_t |
| 107 | getLimit() const |
| 108 | { |
| 109 | return m_policy->getLimit(); |
| 110 | } |
| 111 | |
| 112 | /** \brief change capacity (in number of packets) |
| 113 | */ |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 114 | void |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 115 | setLimit(size_t nMaxPackets) |
| 116 | { |
| 117 | return m_policy->setLimit(nMaxPackets); |
| 118 | } |
| 119 | |
| 120 | /** \brief get replacement policy |
| 121 | */ |
| 122 | Policy* |
| 123 | getPolicy() const |
| 124 | { |
| 125 | return m_policy.get(); |
| 126 | } |
| 127 | |
| 128 | /** \brief change replacement policy |
| 129 | * \pre size() == 0 |
| 130 | */ |
| 131 | void |
| 132 | setPolicy(unique_ptr<Policy> policy); |
| 133 | |
| 134 | /** \brief get CS_ENABLE_ADMIT flag |
| 135 | * \sa https://redmine.named-data.net/projects/nfd/wiki/CsMgmt#Update-config |
| 136 | */ |
| 137 | bool |
| 138 | shouldAdmit() const |
| 139 | { |
| 140 | return m_shouldAdmit; |
| 141 | } |
| 142 | |
| 143 | /** \brief set CS_ENABLE_ADMIT flag |
| 144 | * \sa https://redmine.named-data.net/projects/nfd/wiki/CsMgmt#Update-config |
| 145 | */ |
| 146 | void |
| 147 | enableAdmit(bool shouldAdmit); |
| 148 | |
| 149 | /** \brief get CS_ENABLE_SERVE flag |
| 150 | * \sa https://redmine.named-data.net/projects/nfd/wiki/CsMgmt#Update-config |
| 151 | */ |
| 152 | bool |
| 153 | shouldServe() const |
| 154 | { |
| 155 | return m_shouldServe; |
| 156 | } |
| 157 | |
| 158 | /** \brief set CS_ENABLE_SERVE flag |
| 159 | * \sa https://redmine.named-data.net/projects/nfd/wiki/CsMgmt#Update-config |
| 160 | */ |
| 161 | void |
| 162 | enableServe(bool shouldServe); |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 163 | |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 164 | public: // enumeration |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 165 | class EntryFromEntryImpl |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 166 | { |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 167 | public: |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 168 | typedef const Entry& result_type; |
| 169 | |
| 170 | const Entry& |
| 171 | operator()(const EntryImpl& entry) const |
| 172 | { |
| 173 | return entry; |
| 174 | } |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 175 | }; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 176 | |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 177 | /** \brief ContentStore iterator (public API) |
| 178 | */ |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 179 | using const_iterator = boost::transform_iterator<EntryFromEntryImpl, iterator, const Entry&>; |
Junxiao Shi | fc20696 | 2015-01-16 11:12:22 -0700 | [diff] [blame] | 180 | |
| 181 | const_iterator |
| 182 | begin() const |
| 183 | { |
| 184 | return boost::make_transform_iterator(m_table.begin(), EntryFromEntryImpl()); |
| 185 | } |
| 186 | |
| 187 | const_iterator |
| 188 | end() const |
| 189 | { |
| 190 | return boost::make_transform_iterator(m_table.end(), EntryFromEntryImpl()); |
| 191 | } |
| 192 | |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 193 | private: |
| 194 | std::pair<iterator, iterator> |
| 195 | findPrefixRange(const Name& prefix) const; |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 196 | |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 197 | size_t |
| 198 | eraseImpl(const Name& prefix, size_t limit); |
Junxiao Shi | 5640ec8 | 2015-01-07 21:51:19 -0700 | [diff] [blame] | 199 | |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 200 | iterator |
Junxiao Shi | 14b3918 | 2019-04-29 19:19:18 +0000 | [diff] [blame] | 201 | findImpl(const Interest& interest) const; |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 202 | |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 203 | void |
Junxiao Shi | 52555b0 | 2016-11-25 21:39:06 +0000 | [diff] [blame] | 204 | setPolicyImpl(unique_ptr<Policy> policy); |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 205 | |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 206 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| 207 | void |
| 208 | dump(); |
| 209 | |
Ilya Moiseenko | 76cf77a | 2014-03-05 14:35:51 -0800 | [diff] [blame] | 210 | private: |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 211 | Table m_table; |
Minsheng Zhang | cb6e05f | 2015-04-20 15:51:47 -0500 | [diff] [blame] | 212 | unique_ptr<Policy> m_policy; |
Junxiao Shi | 3d2049f | 2018-01-26 23:46:06 +0000 | [diff] [blame] | 213 | signal::ScopedConnection m_beforeEvictConnection; |
| 214 | |
Davide Pesavento | 3dade00 | 2019-03-19 11:29:56 -0600 | [diff] [blame] | 215 | bool m_shouldAdmit = true; ///< if false, no Data will be admitted |
| 216 | bool m_shouldServe = true; ///< if false, all lookups will miss |
Junxiao Shi | 0fcb41e | 2014-01-24 10:29:43 -0700 | [diff] [blame] | 217 | }; |
| 218 | |
Junxiao Shi | a938818 | 2014-12-13 23:16:09 -0700 | [diff] [blame] | 219 | } // namespace cs |
| 220 | |
| 221 | using cs::Cs; |
| 222 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 223 | } // namespace nfd |
Alexander Afanasyev | b927a3a | 2014-01-24 10:41:47 -0800 | [diff] [blame] | 224 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 225 | #endif // NFD_DAEMON_TABLE_CS_HPP |