HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [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. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 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 | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 24 | */ |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_TABLE_NAME_TREE_HPP |
| 27 | #define NFD_DAEMON_TABLE_NAME_TREE_HPP |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 28 | |
| 29 | #include "common.hpp" |
| 30 | #include "name-tree-entry.hpp" |
| 31 | |
| 32 | namespace nfd { |
| 33 | namespace name_tree { |
| 34 | |
| 35 | /** |
Haowei Yuan | f52dac7 | 2014-03-24 23:35:03 -0500 | [diff] [blame] | 36 | * \brief Compute the hash value of the given name prefix's WIRE FORMAT |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 37 | */ |
Haowei Yuan | f52dac7 | 2014-03-24 23:35:03 -0500 | [diff] [blame] | 38 | size_t |
| 39 | computeHash(const Name& prefix); |
| 40 | |
| 41 | /** |
| 42 | * \brief Incrementally compute hash values |
| 43 | * \return Return a vector of hash values, starting from the root prefix |
| 44 | */ |
| 45 | std::vector<size_t> |
| 46 | computeHashSet(const Name& prefix); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 47 | |
Junxiao Shi | 4063184 | 2014-03-01 13:52:37 -0700 | [diff] [blame] | 48 | /// a predicate to accept or reject an Entry in find operations |
| 49 | typedef function<bool (const Entry& entry)> EntrySelector; |
| 50 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 51 | /** |
| 52 | * \brief a predicate to accept or reject an Entry and its children |
| 53 | * \return .first indicates whether entry should be accepted; |
| 54 | * .second indicates whether entry's children should be visited |
| 55 | */ |
| 56 | typedef function<std::pair<bool,bool> (const Entry& entry)> EntrySubTreeSelector; |
| 57 | |
Junxiao Shi | 4063184 | 2014-03-01 13:52:37 -0700 | [diff] [blame] | 58 | struct AnyEntry { |
| 59 | bool |
| 60 | operator()(const Entry& entry) |
| 61 | { |
| 62 | return true; |
| 63 | } |
| 64 | }; |
| 65 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 66 | struct AnyEntrySubTree { |
| 67 | std::pair<bool, bool> |
| 68 | operator()(const Entry& entry) |
| 69 | { |
| 70 | return std::make_pair(true, true); |
| 71 | } |
| 72 | }; |
| 73 | |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 74 | } // namespace name_tree |
| 75 | |
| 76 | /** |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 77 | * \brief Class Name Tree |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 78 | */ |
| 79 | class NameTree : noncopyable |
| 80 | { |
| 81 | public: |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 82 | class const_iterator; |
| 83 | |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 84 | explicit |
Haowei Yuan | f52dac7 | 2014-03-24 23:35:03 -0500 | [diff] [blame] | 85 | NameTree(size_t nBuckets = 1024); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 86 | |
| 87 | ~NameTree(); |
| 88 | |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 89 | public: // information |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 90 | /** |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 91 | * \brief Get the number of occupied entries in the Name Tree |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 92 | */ |
| 93 | size_t |
| 94 | size() const; |
| 95 | |
| 96 | /** |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 97 | * \brief Get the number of buckets in the Name Tree (NPHT) |
| 98 | * \details The number of buckets is the one that used to create the hash |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 99 | * table, i.e., m_nBuckets. |
| 100 | */ |
| 101 | size_t |
| 102 | getNBuckets() const; |
| 103 | |
| 104 | /** |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 105 | * \brief Dump all the information stored in the Name Tree for debugging. |
| 106 | */ |
| 107 | void |
| 108 | dump(std::ostream& output) const; |
| 109 | |
| 110 | public: // mutation |
| 111 | /** |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 112 | * \brief Look for the Name Tree Entry that contains this name prefix. |
| 113 | * \details Starts from the shortest name prefix, and then increase the |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 114 | * number of name components by one each time. All non-existing Name Tree |
| 115 | * Entries will be created. |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 116 | * \param prefix The querying name prefix. |
| 117 | * \return The pointer to the Name Tree Entry that contains this full name |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 118 | * prefix. |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 119 | * \note Existing iterators are unaffected. |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 120 | */ |
| 121 | shared_ptr<name_tree::Entry> |
| 122 | lookup(const Name& prefix); |
| 123 | |
| 124 | /** |
Junxiao Shi | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 125 | * \brief Delete a Name Tree Entry if this entry is empty. |
| 126 | * \param entry The entry to be deleted if empty. |
| 127 | * \note This function must be called after a table entry is detached from Name Tree |
| 128 | * entry. The function deletes a Name Tree entry if nothing is attached to it and |
| 129 | * it has no children, then repeats the same process on its ancestors. |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 130 | * \note Existing iterators, except those pointing to deleted entries, are unaffected. |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 131 | */ |
| 132 | bool |
| 133 | eraseEntryIfEmpty(shared_ptr<name_tree::Entry> entry); |
| 134 | |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 135 | public: // shortcut access |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 136 | /** \brief get NameTree entry from FIB entry |
| 137 | * |
| 138 | * This is equivalent to .lookup(fibEntry.getPrefix()) |
| 139 | */ |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 140 | shared_ptr<name_tree::Entry> |
| 141 | get(const fib::Entry& fibEntry) const; |
| 142 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 143 | /** \brief get NameTree entry from PIT entry |
| 144 | * |
| 145 | * This is equivalent to .lookup(pitEntry.getName()). |
| 146 | */ |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 147 | shared_ptr<name_tree::Entry> |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 148 | get(const pit::Entry& pitEntry); |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 149 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 150 | /** \brief get NameTree entry from Measurements entry |
| 151 | * |
| 152 | * This is equivalent to .lookup(measurementsEntry.getName()) |
| 153 | */ |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 154 | shared_ptr<name_tree::Entry> |
| 155 | get(const measurements::Entry& measurementsEntry) const; |
| 156 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 157 | /** \brief get NameTree entry from StrategyChoice entry |
| 158 | * |
| 159 | * This is equivalent to .lookup(strategyChoiceEntry.getName()) |
| 160 | */ |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 161 | shared_ptr<name_tree::Entry> |
| 162 | get(const strategy_choice::Entry& strategyChoiceEntry) const; |
| 163 | |
| 164 | public: // matching |
| 165 | /** |
| 166 | * \brief Exact match lookup for the given name prefix. |
| 167 | * \return a null shared_ptr if this prefix is not found; |
| 168 | * otherwise return the Name Tree Entry address |
| 169 | */ |
| 170 | shared_ptr<name_tree::Entry> |
| 171 | findExactMatch(const Name& prefix) const; |
| 172 | |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 173 | /** |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 174 | * \brief Longest prefix matching for the given name |
| 175 | * \details Starts from the full name string, reduce the number of name component |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 176 | * by one each time, until an Entry is found. |
| 177 | */ |
| 178 | shared_ptr<name_tree::Entry> |
Junxiao Shi | 4063184 | 2014-03-01 13:52:37 -0700 | [diff] [blame] | 179 | findLongestPrefixMatch(const Name& prefix, |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 180 | const name_tree::EntrySelector& entrySelector = |
| 181 | name_tree::AnyEntry()) const; |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 182 | |
HangZhang | cb4fc83 | 2014-03-11 16:57:11 +0800 | [diff] [blame] | 183 | shared_ptr<name_tree::Entry> |
| 184 | findLongestPrefixMatch(shared_ptr<name_tree::Entry> entry, |
| 185 | const name_tree::EntrySelector& entrySelector = |
| 186 | name_tree::AnyEntry()) const; |
| 187 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 188 | /** \brief longest prefix matching for Interest name of the PIT entry |
| 189 | * |
| 190 | * This is equivalent to .findLongestPrefixMatch(pitEntry.getName(), AnyEntry()). |
| 191 | */ |
| 192 | shared_ptr<name_tree::Entry> |
| 193 | findLongestPrefixMatch(const pit::Entry& pitEntry) const; |
| 194 | |
Junxiao Shi | 2b73ca3 | 2014-11-17 19:16:08 -0700 | [diff] [blame] | 195 | /** \brief Enumerate all the name prefixes that satisfy the prefix and entrySelector |
| 196 | * \return an unspecified type that have .begin() and .end() methods |
| 197 | * and is usable with range-based for |
| 198 | * |
| 199 | * Example: |
| 200 | * \code{.cpp} |
| 201 | * auto&& allMatches = nt.findAllMatches(Name("/A/B/C")); |
| 202 | * for (const name_tree::Entry& nte : allMatches) { |
| 203 | * ... |
| 204 | * } |
| 205 | * \endcode |
Alexander Afanasyev | 09fc3d9 | 2015-01-03 02:02:37 -0800 | [diff] [blame] | 206 | * \note Iteration order is implementation-specific and is undefined |
| 207 | * \note The returned iterator may get invalidated when NameTree is modified |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 208 | */ |
Junxiao Shi | 5ccd0c2 | 2014-12-02 23:54:42 -0700 | [diff] [blame] | 209 | boost::iterator_range<const_iterator> |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 210 | findAllMatches(const Name& prefix, |
| 211 | const name_tree::EntrySelector& entrySelector = name_tree::AnyEntry()) const; |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 212 | |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 213 | public: // enumeration |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 214 | /** \brief Enumerate all entries, optionally filtered by an EntrySelector. |
| 215 | * \return an unspecified type that have .begin() and .end() methods |
| 216 | * and is usable with range-based for |
| 217 | * |
| 218 | * Example: |
| 219 | * \code{.cpp} |
| 220 | * auto&& enumerable = nt.fullEnumerate(); |
| 221 | * for (const name_tree::Entry& nte : enumerable) { |
| 222 | * ... |
| 223 | * } |
| 224 | * \endcode |
Alexander Afanasyev | 09fc3d9 | 2015-01-03 02:02:37 -0800 | [diff] [blame] | 225 | * \note Iteration order is implementation-specific and is undefined |
| 226 | * \note The returned iterator may get invalidated when NameTree is modified |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 227 | */ |
Junxiao Shi | 5ccd0c2 | 2014-12-02 23:54:42 -0700 | [diff] [blame] | 228 | boost::iterator_range<const_iterator> |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 229 | fullEnumerate(const name_tree::EntrySelector& entrySelector = name_tree::AnyEntry()) const; |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 230 | |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 231 | /** \brief Enumerate all entries under a prefix, optionally filtered by an EntrySubTreeSelector. |
| 232 | * \return an unspecified type that have .begin() and .end() methods |
| 233 | * and is usable with range-based for |
| 234 | * |
| 235 | * Example: |
| 236 | * \code{.cpp} |
| 237 | * auto&& enumerable = nt.partialEnumerate(Name("/A/B/C")); |
| 238 | * for (const name_tree::Entry& nte : enumerable) { |
| 239 | * ... |
| 240 | * } |
| 241 | * \endcode |
Alexander Afanasyev | 09fc3d9 | 2015-01-03 02:02:37 -0800 | [diff] [blame] | 242 | * \note Iteration order is implementation-specific and is undefined |
| 243 | * \note The returned iterator may get invalidated when NameTree is modified |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 244 | */ |
Junxiao Shi | 5ccd0c2 | 2014-12-02 23:54:42 -0700 | [diff] [blame] | 245 | boost::iterator_range<const_iterator> |
Junxiao Shi | 4063184 | 2014-03-01 13:52:37 -0700 | [diff] [blame] | 246 | partialEnumerate(const Name& prefix, |
Junxiao Shi | efceadc | 2014-03-09 18:52:57 -0700 | [diff] [blame] | 247 | const name_tree::EntrySubTreeSelector& entrySubTreeSelector = |
| 248 | name_tree::AnyEntrySubTree()) const; |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 249 | |
Alexander Afanasyev | 09fc3d9 | 2015-01-03 02:02:37 -0800 | [diff] [blame] | 250 | /** \brief Get an iterator pointing to the first NameTree entry |
| 251 | * \note Iteration order is implementation-specific and is undefined |
| 252 | * \note The returned iterator may get invalidated when NameTree is modified |
| 253 | */ |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 254 | const_iterator |
| 255 | begin() const; |
| 256 | |
Alexander Afanasyev | 09fc3d9 | 2015-01-03 02:02:37 -0800 | [diff] [blame] | 257 | /** \brief Get an iterator referring to the past-the-end FIB entry |
| 258 | * \note Iteration order is implementation-specific and is undefined |
| 259 | * \note The returned iterator may get invalidated when NameTree is modified |
| 260 | */ |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 261 | const_iterator |
| 262 | end() const; |
| 263 | |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 264 | enum IteratorType { |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 265 | FULL_ENUMERATE_TYPE, |
| 266 | PARTIAL_ENUMERATE_TYPE, |
| 267 | FIND_ALL_MATCHES_TYPE |
| 268 | }; |
| 269 | |
Alexander Afanasyev | 09fc3d9 | 2015-01-03 02:02:37 -0800 | [diff] [blame] | 270 | class const_iterator : public std::iterator<std::forward_iterator_tag, const name_tree::Entry> |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 271 | { |
| 272 | public: |
| 273 | friend class NameTree; |
| 274 | |
Alexander Afanasyev | 09fc3d9 | 2015-01-03 02:02:37 -0800 | [diff] [blame] | 275 | const_iterator(); |
| 276 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 277 | const_iterator(NameTree::IteratorType type, |
| 278 | const NameTree& nameTree, |
| 279 | shared_ptr<name_tree::Entry> entry, |
| 280 | const name_tree::EntrySelector& entrySelector = name_tree::AnyEntry(), |
| 281 | const name_tree::EntrySubTreeSelector& entrySubTreeSelector = name_tree::AnyEntrySubTree()); |
| 282 | |
| 283 | ~const_iterator(); |
| 284 | |
| 285 | const name_tree::Entry& |
| 286 | operator*() const; |
| 287 | |
| 288 | shared_ptr<name_tree::Entry> |
| 289 | operator->() const; |
| 290 | |
| 291 | const_iterator |
| 292 | operator++(); |
| 293 | |
| 294 | const_iterator |
| 295 | operator++(int); |
| 296 | |
| 297 | bool |
| 298 | operator==(const const_iterator& other) const; |
| 299 | |
| 300 | bool |
| 301 | operator!=(const const_iterator& other) const; |
| 302 | |
| 303 | private: |
Alexander Afanasyev | 09fc3d9 | 2015-01-03 02:02:37 -0800 | [diff] [blame] | 304 | const NameTree* m_nameTree; |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 305 | shared_ptr<name_tree::Entry> m_entry; |
| 306 | shared_ptr<name_tree::Entry> m_subTreeRoot; |
| 307 | shared_ptr<name_tree::EntrySelector> m_entrySelector; |
| 308 | shared_ptr<name_tree::EntrySubTreeSelector> m_entrySubTreeSelector; |
| 309 | NameTree::IteratorType m_type; |
Junxiao Shi | efceadc | 2014-03-09 18:52:57 -0700 | [diff] [blame] | 310 | bool m_shouldVisitChildren; |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 311 | }; |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 312 | |
| 313 | private: |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 314 | /** |
| 315 | * \brief Resize the hash table size when its load factor reaches a threshold. |
| 316 | * \details As we are currently using a hand-written hash table implementation |
| 317 | * for the Name Tree, the hash table resize() function should be kept in the |
| 318 | * name-tree.hpp file. |
| 319 | * \param newNBuckets The number of buckets for the new hash table. |
| 320 | */ |
| 321 | void |
| 322 | resize(size_t newNBuckets); |
| 323 | |
| 324 | private: |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 325 | size_t m_nItems; // Number of items being stored |
| 326 | size_t m_nBuckets; // Number of hash buckets |
Haowei Yuan | f52dac7 | 2014-03-24 23:35:03 -0500 | [diff] [blame] | 327 | size_t m_minNBuckets; // Minimum number of hash buckets |
| 328 | double m_enlargeLoadFactor; |
| 329 | size_t m_enlargeThreshold; |
| 330 | int m_enlargeFactor; |
| 331 | double m_shrinkLoadFactor; |
| 332 | size_t m_shrinkThreshold; |
| 333 | double m_shrinkFactor; |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 334 | name_tree::Node** m_buckets; // Name Tree Buckets in the NPHT |
| 335 | shared_ptr<name_tree::Entry> m_end; |
| 336 | const_iterator m_endIterator; |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 337 | |
| 338 | /** |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 339 | * \brief Create a Name Tree Entry if it does not exist, or return the existing |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 340 | * Name Tree Entry address. |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 341 | * \details Called by lookup() only. |
| 342 | * \return The first item is the Name Tree Entry address, the second item is |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 343 | * a bool value indicates whether this is an old entry (false) or a new |
| 344 | * entry (true). |
| 345 | */ |
| 346 | std::pair<shared_ptr<name_tree::Entry>, bool> |
| 347 | insert(const Name& prefix); |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 348 | }; |
| 349 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 350 | inline NameTree::const_iterator::~const_iterator() |
| 351 | { |
| 352 | } |
| 353 | |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 354 | inline size_t |
| 355 | NameTree::size() const |
| 356 | { |
| 357 | return m_nItems; |
| 358 | } |
| 359 | |
| 360 | inline size_t |
| 361 | NameTree::getNBuckets() const |
| 362 | { |
| 363 | return m_nBuckets; |
| 364 | } |
| 365 | |
Junxiao Shi | efceadc | 2014-03-09 18:52:57 -0700 | [diff] [blame] | 366 | inline shared_ptr<name_tree::Entry> |
HangZhang | cb4fc83 | 2014-03-11 16:57:11 +0800 | [diff] [blame] | 367 | NameTree::get(const fib::Entry& fibEntry) const |
| 368 | { |
| 369 | return fibEntry.m_nameTreeEntry; |
| 370 | } |
| 371 | |
| 372 | inline shared_ptr<name_tree::Entry> |
HangZhang | cb4fc83 | 2014-03-11 16:57:11 +0800 | [diff] [blame] | 373 | NameTree::get(const measurements::Entry& measurementsEntry) const |
| 374 | { |
| 375 | return measurementsEntry.m_nameTreeEntry; |
| 376 | } |
| 377 | |
| 378 | inline shared_ptr<name_tree::Entry> |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 379 | NameTree::get(const strategy_choice::Entry& strategyChoiceEntry) const |
HangZhang | cb4fc83 | 2014-03-11 16:57:11 +0800 | [diff] [blame] | 380 | { |
Alexander Afanasyev | b303324 | 2014-08-04 11:09:05 -0700 | [diff] [blame] | 381 | return strategyChoiceEntry.m_nameTreeEntry; |
HangZhang | cb4fc83 | 2014-03-11 16:57:11 +0800 | [diff] [blame] | 382 | } |
| 383 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 384 | inline NameTree::const_iterator |
| 385 | NameTree::begin() const |
| 386 | { |
Junxiao Shi | 60607c7 | 2014-11-26 22:40:36 -0700 | [diff] [blame] | 387 | return fullEnumerate().begin(); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | inline NameTree::const_iterator |
| 391 | NameTree::end() const |
| 392 | { |
| 393 | return m_endIterator; |
| 394 | } |
| 395 | |
| 396 | inline const name_tree::Entry& |
| 397 | NameTree::const_iterator::operator*() const |
| 398 | { |
| 399 | return *m_entry; |
| 400 | } |
| 401 | |
| 402 | inline shared_ptr<name_tree::Entry> |
| 403 | NameTree::const_iterator::operator->() const |
| 404 | { |
| 405 | return m_entry; |
| 406 | } |
| 407 | |
| 408 | inline NameTree::const_iterator |
| 409 | NameTree::const_iterator::operator++(int) |
| 410 | { |
| 411 | NameTree::const_iterator temp(*this); |
| 412 | ++(*this); |
| 413 | return temp; |
| 414 | } |
| 415 | |
| 416 | inline bool |
| 417 | NameTree::const_iterator::operator==(const NameTree::const_iterator& other) const |
| 418 | { |
| 419 | return m_entry == other.m_entry; |
| 420 | } |
| 421 | |
| 422 | inline bool |
| 423 | NameTree::const_iterator::operator!=(const NameTree::const_iterator& other) const |
| 424 | { |
| 425 | return m_entry != other.m_entry; |
| 426 | } |
| 427 | |
HYuan | a9b8575 | 2014-02-26 02:32:30 -0600 | [diff] [blame] | 428 | } // namespace nfd |
| 429 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 430 | #endif // NFD_DAEMON_TABLE_NAME_TREE_HPP |