Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2011 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 21 | #ifndef TRIE_H_ |
| 22 | #define TRIE_H_ |
| 23 | |
| 24 | #include "ns3/ptr.h" |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 25 | |
| 26 | #include <boost/intrusive/unordered_set.hpp> |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 27 | #include <boost/intrusive/list.hpp> |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 28 | #include <boost/intrusive/set.hpp> |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 29 | #include <boost/functional/hash.hpp> |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 30 | #include <boost/interprocess/smart_ptr/unique_ptr.hpp> |
| 31 | #include <boost/tuple/tuple.hpp> |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 32 | #include <boost/foreach.hpp> |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 33 | #include <boost/mpl/if.hpp> |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 34 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 35 | namespace ns3 { |
| 36 | namespace ndn { |
| 37 | namespace ndnSIM { |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 38 | |
| 39 | ///////////////////////////////////////////////////// |
| 40 | // Allow customization for payload |
| 41 | // |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 42 | template<typename Payload, typename BasePayload = Payload> |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 43 | struct pointer_payload_traits |
| 44 | { |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 45 | typedef Payload payload_type; // general type of the payload |
| 46 | typedef Payload* storage_type; // how the payload is actually stored |
| 47 | typedef Payload* insert_type; // what parameter is inserted |
| 48 | |
| 49 | typedef Payload* return_type; // what is returned on access |
| 50 | typedef const Payload* const_return_type; // what is returned on const access |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 51 | |
Alexander Afanasyev | 62304f2 | 2012-12-10 18:06:21 -0800 | [diff] [blame] | 52 | typedef BasePayload* base_type; // base type of the entry (when implementation details need to be hidden) |
| 53 | typedef const BasePayload* const_base_type; // const base type of the entry (when implementation details need to be hidden) |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 54 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 55 | static Payload* empty_payload; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 56 | }; |
| 57 | |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 58 | template<typename Payload, typename BasePayload> |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 59 | Payload* |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 60 | pointer_payload_traits<Payload, BasePayload>::empty_payload = 0; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 61 | |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 62 | template<typename Payload, typename BasePayload = Payload> |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 63 | struct smart_pointer_payload_traits |
| 64 | { |
Alexander Afanasyev | 9e96e36 | 2012-07-02 23:04:39 -0700 | [diff] [blame] | 65 | typedef Payload payload_type; |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 66 | typedef ns3::Ptr<Payload> storage_type; |
| 67 | typedef ns3::Ptr<Payload> insert_type; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 68 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 69 | typedef ns3::Ptr<Payload> return_type; |
| 70 | typedef ns3::Ptr<const Payload> const_return_type; |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 71 | |
| 72 | typedef ns3::Ptr<BasePayload> base_type; |
| 73 | typedef ns3::Ptr<const BasePayload> const_base_type; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 74 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 75 | static ns3::Ptr<Payload> empty_payload; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 76 | }; |
| 77 | |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 78 | template<typename Payload, typename BasePayload> |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 79 | ns3::Ptr<Payload> |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 80 | smart_pointer_payload_traits<Payload, BasePayload>::empty_payload = 0; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 81 | |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 82 | template<typename Payload, typename BasePayload = Payload> |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 83 | struct non_pointer_traits |
| 84 | { |
| 85 | typedef Payload payload_type; |
| 86 | typedef Payload storage_type; |
| 87 | typedef const Payload & insert_type; // nothing to insert |
| 88 | |
| 89 | typedef Payload& return_type; |
| 90 | typedef const Payload & const_return_type; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 91 | |
Alexander Afanasyev | 62304f2 | 2012-12-10 18:06:21 -0800 | [diff] [blame] | 92 | typedef BasePayload& base_type; |
| 93 | typedef const BasePayload& const_base_type; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 94 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 95 | static Payload empty_payload; |
| 96 | }; |
| 97 | |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 98 | template<typename Payload, typename BasePayload> |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 99 | Payload |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 100 | non_pointer_traits<Payload, BasePayload>::empty_payload = Payload (); |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 101 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 102 | |
| 103 | //////////////////////////////////////////////////// |
| 104 | // forward declarations |
| 105 | // |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 106 | template<typename FullKey, |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 107 | typename PayloadTraits, |
| 108 | typename PolicyHook > |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 109 | class trie; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 110 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 111 | template<typename FullKey, typename PayloadTraits, typename PolicyHook> |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 112 | inline std::ostream& |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 113 | operator << (std::ostream &os, |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 114 | const trie<FullKey, PayloadTraits, PolicyHook> &trie_node); |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 115 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 116 | template<typename FullKey, typename PayloadTraits, typename PolicyHook> |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 117 | bool |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 118 | operator== (const trie<FullKey, PayloadTraits, PolicyHook> &a, |
| 119 | const trie<FullKey, PayloadTraits, PolicyHook> &b); |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 120 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 121 | template<typename FullKey, typename PayloadTraits, typename PolicyHook > |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 122 | std::size_t |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 123 | hash_value (const trie<FullKey, PayloadTraits, PolicyHook> &trie_node); |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 124 | |
| 125 | /////////////////////////////////////////////////// |
| 126 | // actual definition |
| 127 | // |
Alexander Afanasyev | 1cb4aad | 2012-08-09 14:58:16 -0700 | [diff] [blame] | 128 | template<class T, class NonConstT> |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 129 | class trie_iterator; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 130 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 131 | template<class T> |
| 132 | class trie_point_iterator; |
| 133 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 134 | template<typename FullKey, |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 135 | typename PayloadTraits, |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 136 | typename PolicyHook > |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 137 | class trie |
| 138 | { |
| 139 | public: |
| 140 | typedef typename FullKey::partial_type Key; |
| 141 | |
| 142 | typedef trie* iterator; |
| 143 | typedef const trie* const_iterator; |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 144 | |
Alexander Afanasyev | 1cb4aad | 2012-08-09 14:58:16 -0700 | [diff] [blame] | 145 | typedef trie_iterator<trie, trie> recursive_iterator; |
| 146 | typedef trie_iterator<const trie, trie> const_recursive_iterator; |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 147 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 148 | typedef trie_point_iterator<trie> point_iterator; |
| 149 | typedef trie_point_iterator<const trie> const_point_iterator; |
| 150 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 151 | typedef PayloadTraits payload_traits; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 152 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 153 | inline |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 154 | trie (const Key &key, size_t bucketSize = 10, size_t bucketIncrement = 10) |
| 155 | : key_ (key) |
| 156 | , initialBucketSize_ (bucketSize) |
| 157 | , bucketIncrement_ (bucketIncrement) |
| 158 | , bucketSize_ (initialBucketSize_) |
| 159 | , buckets_ (new bucket_type [bucketSize_]) //cannot use normal pointer, because lifetime of buckets should be larger than lifetime of the container |
| 160 | , children_ (bucket_traits (buckets_.get (), bucketSize_)) |
| 161 | , payload_ (PayloadTraits::empty_payload) |
| 162 | , parent_ (0) |
| 163 | { |
| 164 | } |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 165 | |
| 166 | inline |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 167 | ~trie () |
| 168 | { |
| 169 | payload_ = PayloadTraits::empty_payload; // necessary for smart pointers... |
| 170 | children_.clear_and_dispose (trie_delete_disposer ()); |
| 171 | } |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 172 | |
| 173 | void |
| 174 | clear () |
| 175 | { |
| 176 | children_.clear_and_dispose (trie_delete_disposer ()); |
| 177 | } |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 178 | |
| 179 | template<class Predicate> |
| 180 | void |
| 181 | clear_if (Predicate cond) |
| 182 | { |
| 183 | recursive_iterator trieNode (this); |
| 184 | recursive_iterator end (0); |
| 185 | |
| 186 | while (trieNode != end) |
| 187 | { |
| 188 | if (cond (*trieNode)) |
| 189 | { |
| 190 | trieNode = recursive_iterator (trieNode->erase ()); |
| 191 | } |
| 192 | trieNode ++; |
| 193 | } |
| 194 | } |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 195 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 196 | // actual entry |
| 197 | friend bool |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 198 | operator== <> (const trie<FullKey, PayloadTraits, PolicyHook> &a, |
| 199 | const trie<FullKey, PayloadTraits, PolicyHook> &b); |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 200 | |
| 201 | friend std::size_t |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 202 | hash_value <> (const trie<FullKey, PayloadTraits, PolicyHook> &trie_node); |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 203 | |
| 204 | inline std::pair<iterator, bool> |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 205 | insert (const FullKey &key, |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 206 | typename PayloadTraits::insert_type payload) |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 207 | { |
| 208 | trie *trieNode = this; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 209 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 210 | BOOST_FOREACH (const Key &subkey, key) |
| 211 | { |
| 212 | typename unordered_set::iterator item = trieNode->children_.find (subkey); |
| 213 | if (item == trieNode->children_.end ()) |
| 214 | { |
| 215 | trie *newNode = new trie (subkey, initialBucketSize_, bucketIncrement_); |
| 216 | // std::cout << "new " << newNode << "\n"; |
| 217 | newNode->parent_ = trieNode; |
| 218 | |
| 219 | if (trieNode->children_.size () >= trieNode->bucketSize_) |
| 220 | { |
| 221 | trieNode->bucketSize_ += trieNode->bucketIncrement_; |
Alexander Afanasyev | 424d584 | 2012-09-03 17:35:34 -0700 | [diff] [blame] | 222 | trieNode->bucketIncrement_ *= 2; // increase bucketIncrement exponentially |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 223 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 224 | buckets_array newBuckets (new bucket_type [trieNode->bucketSize_]); |
| 225 | trieNode->children_.rehash (bucket_traits (newBuckets.get (), trieNode->bucketSize_)); |
| 226 | trieNode->buckets_.swap (newBuckets); |
| 227 | } |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 228 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 229 | std::pair< typename unordered_set::iterator, bool > ret = |
| 230 | trieNode->children_.insert (*newNode); |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 231 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 232 | trieNode = &(*ret.first); |
| 233 | } |
| 234 | else |
| 235 | trieNode = &(*item); |
| 236 | } |
| 237 | |
| 238 | if (trieNode->payload_ == PayloadTraits::empty_payload) |
| 239 | { |
| 240 | trieNode->payload_ = payload; |
| 241 | return std::make_pair (trieNode, true); |
| 242 | } |
| 243 | else |
| 244 | return std::make_pair (trieNode, false); |
| 245 | } |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 246 | |
| 247 | /** |
| 248 | * @brief Removes payload (if it exists) and if there are no children, prunes parents trie |
| 249 | */ |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 250 | inline iterator |
| 251 | erase () |
| 252 | { |
| 253 | payload_ = PayloadTraits::empty_payload; |
| 254 | return prune (); |
| 255 | } |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 256 | |
| 257 | /** |
| 258 | * @brief Do exactly as erase, but without erasing the payload |
| 259 | */ |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 260 | inline iterator |
| 261 | prune () |
| 262 | { |
| 263 | if (payload_ == PayloadTraits::empty_payload && |
| 264 | children_.size () == 0) |
| 265 | { |
| 266 | if (parent_ == 0) return this; |
| 267 | |
| 268 | trie *parent = parent_; |
| 269 | parent->children_.erase_and_dispose (*this, trie_delete_disposer ()); // delete this; basically, committing a suicide |
| 270 | |
| 271 | return parent->prune (); |
| 272 | } |
| 273 | return this; |
| 274 | } |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 275 | |
Alexander Afanasyev | 70426a0 | 2012-08-15 15:39:18 -0700 | [diff] [blame] | 276 | /** |
| 277 | * @brief Perform prune of the node, but without attempting to parent of the node |
| 278 | */ |
| 279 | inline void |
| 280 | prune_node () |
| 281 | { |
| 282 | if (payload_ == PayloadTraits::empty_payload && |
| 283 | children_.size () == 0) |
| 284 | { |
| 285 | if (parent_ == 0) return; |
| 286 | |
| 287 | trie *parent = parent_; |
| 288 | parent->children_.erase_and_dispose (*this, trie_delete_disposer ()); // delete this; basically, committing a suicide |
| 289 | } |
| 290 | } |
| 291 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 292 | // inline boost::tuple<const iterator, bool, const iterator> |
| 293 | // find (const FullKey &key) const |
| 294 | // { |
| 295 | // return const_cast<trie*> (this)->find (key); |
| 296 | // } |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 297 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 298 | /** |
| 299 | * @brief Perform the longest prefix match |
| 300 | * @param key the key for which to perform the longest prefix match |
| 301 | * |
| 302 | * @return ->second is true if prefix in ->first is longer than key |
| 303 | */ |
| 304 | inline boost::tuple<iterator, bool, iterator> |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 305 | find (const FullKey &key) |
| 306 | { |
| 307 | trie *trieNode = this; |
| 308 | iterator foundNode = (payload_ != PayloadTraits::empty_payload) ? this : 0; |
| 309 | bool reachLast = true; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 310 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 311 | BOOST_FOREACH (const Key &subkey, key) |
| 312 | { |
| 313 | typename unordered_set::iterator item = trieNode->children_.find (subkey); |
| 314 | if (item == trieNode->children_.end ()) |
| 315 | { |
| 316 | reachLast = false; |
| 317 | break; |
| 318 | } |
| 319 | else |
| 320 | { |
| 321 | trieNode = &(*item); |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 322 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 323 | if (trieNode->payload_ != PayloadTraits::empty_payload) |
| 324 | foundNode = trieNode; |
| 325 | } |
| 326 | } |
| 327 | |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 328 | return boost::make_tuple (foundNode, reachLast, trieNode); |
| 329 | } |
| 330 | |
| 331 | /** |
| 332 | * @brief Perform the longest prefix match satisfying preficate |
| 333 | * @param key the key for which to perform the longest prefix match |
| 334 | * |
| 335 | * @return ->second is true if prefix in ->first is longer than key |
| 336 | */ |
| 337 | template<class Predicate> |
| 338 | inline boost::tuple<iterator, bool, iterator> |
| 339 | find_if (const FullKey &key, Predicate pred) |
| 340 | { |
| 341 | trie *trieNode = this; |
| 342 | iterator foundNode = (payload_ != PayloadTraits::empty_payload) ? this : 0; |
| 343 | bool reachLast = true; |
| 344 | |
| 345 | BOOST_FOREACH (const Key &subkey, key) |
| 346 | { |
| 347 | typename unordered_set::iterator item = trieNode->children_.find (subkey); |
| 348 | if (item == trieNode->children_.end ()) |
| 349 | { |
| 350 | reachLast = false; |
| 351 | break; |
| 352 | } |
| 353 | else |
| 354 | { |
| 355 | trieNode = &(*item); |
| 356 | |
| 357 | if (trieNode->payload_ != PayloadTraits::empty_payload && |
| 358 | pred (trieNode->payload_)) |
| 359 | { |
| 360 | foundNode = trieNode; |
| 361 | } |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | return boost::make_tuple (foundNode, reachLast, trieNode); |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 366 | } |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 367 | |
| 368 | /** |
| 369 | * @brief Find next payload of the sub-trie |
| 370 | * @returns end() or a valid iterator pointing to the trie leaf (order is not defined, enumeration ) |
| 371 | */ |
| 372 | inline iterator |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 373 | find () |
| 374 | { |
| 375 | if (payload_ != PayloadTraits::empty_payload) |
| 376 | return this; |
| 377 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 378 | typedef trie<FullKey, PayloadTraits, PolicyHook> trie; |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 379 | for (typename trie::unordered_set::iterator subnode = children_.begin (); |
| 380 | subnode != children_.end (); |
| 381 | subnode++ ) |
| 382 | // BOOST_FOREACH (trie &subnode, children_) |
| 383 | { |
| 384 | iterator value = subnode->find (); |
| 385 | if (value != 0) |
| 386 | return value; |
| 387 | } |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 388 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 389 | return 0; |
| 390 | } |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 391 | |
| 392 | /** |
| 393 | * @brief Find next payload of the sub-trie satisfying the predicate |
| 394 | * @param pred predicate |
| 395 | * @returns end() or a valid iterator pointing to the trie leaf (order is not defined, enumeration ) |
| 396 | */ |
| 397 | template<class Predicate> |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 398 | inline const iterator |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 399 | find_if (Predicate pred) |
| 400 | { |
| 401 | if (payload_ != PayloadTraits::empty_payload && pred (payload_)) |
| 402 | return this; |
| 403 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 404 | typedef trie<FullKey, PayloadTraits, PolicyHook> trie; |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 405 | for (typename trie::unordered_set::iterator subnode = children_.begin (); |
| 406 | subnode != children_.end (); |
| 407 | subnode++ ) |
| 408 | // BOOST_FOREACH (const trie &subnode, children_) |
| 409 | { |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 410 | iterator value = subnode->find_if (pred); |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 411 | if (value != 0) |
| 412 | return value; |
| 413 | } |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 414 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 415 | return 0; |
| 416 | } |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 417 | |
| 418 | iterator end () |
| 419 | { |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | const_iterator end () const |
| 424 | { |
| 425 | return 0; |
| 426 | } |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 427 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 428 | typename PayloadTraits::const_return_type |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 429 | payload () const |
| 430 | { |
| 431 | return payload_; |
| 432 | } |
| 433 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 434 | typename PayloadTraits::return_type |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 435 | payload () |
| 436 | { |
| 437 | return payload_; |
| 438 | } |
| 439 | |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 440 | void |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 441 | set_payload (typename PayloadTraits::insert_type payload) |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 442 | { |
| 443 | payload_ = payload; |
| 444 | } |
Alexander Afanasyev | 0560eec | 2012-07-16 15:44:31 -0700 | [diff] [blame] | 445 | |
| 446 | Key key () const |
| 447 | { |
| 448 | return key_; |
| 449 | } |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 450 | |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 451 | inline void |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 452 | PrintStat (std::ostream &os) const; |
| 453 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 454 | private: |
| 455 | //The disposer object function |
| 456 | struct trie_delete_disposer |
| 457 | { |
| 458 | void operator() (trie *delete_this) |
| 459 | { |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 460 | delete delete_this; |
| 461 | } |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 462 | }; |
| 463 | |
| 464 | template<class D> |
| 465 | struct array_disposer |
| 466 | { |
| 467 | void operator() (D *array) |
| 468 | { |
| 469 | delete [] array; |
| 470 | } |
| 471 | }; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 472 | |
| 473 | friend |
| 474 | std::ostream& |
| 475 | operator<< < > (std::ostream &os, const trie &trie_node); |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 476 | |
| 477 | public: |
| 478 | PolicyHook policy_hook_; |
| 479 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 480 | private: |
Alexander Afanasyev | 30cb117 | 2012-07-06 10:47:39 -0700 | [diff] [blame] | 481 | boost::intrusive::unordered_set_member_hook<> unordered_set_member_hook_; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 482 | |
| 483 | // necessary typedefs |
| 484 | typedef trie self_type; |
Alexander Afanasyev | 30cb117 | 2012-07-06 10:47:39 -0700 | [diff] [blame] | 485 | typedef boost::intrusive::member_hook< trie, |
| 486 | boost::intrusive::unordered_set_member_hook< >, |
| 487 | &trie::unordered_set_member_hook_ > member_hook; |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 488 | |
Alexander Afanasyev | 30cb117 | 2012-07-06 10:47:39 -0700 | [diff] [blame] | 489 | typedef boost::intrusive::unordered_set< trie, member_hook > unordered_set; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 490 | typedef typename unordered_set::bucket_type bucket_type; |
| 491 | typedef typename unordered_set::bucket_traits bucket_traits; |
| 492 | |
Alexander Afanasyev | 1cb4aad | 2012-08-09 14:58:16 -0700 | [diff] [blame] | 493 | template<class T, class NonConstT> |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 494 | friend class trie_iterator; |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 495 | |
| 496 | template<class T> |
| 497 | friend class trie_point_iterator; |
| 498 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 499 | //////////////////////////////////////////////// |
| 500 | // Actual data |
| 501 | //////////////////////////////////////////////// |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 502 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 503 | Key key_; ///< name component |
| 504 | |
| 505 | size_t initialBucketSize_; |
| 506 | size_t bucketIncrement_; |
| 507 | |
| 508 | size_t bucketSize_; |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 509 | typedef boost::interprocess::unique_ptr< bucket_type, array_disposer<bucket_type> > buckets_array; |
| 510 | buckets_array buckets_; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 511 | unordered_set children_; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 512 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 513 | typename PayloadTraits::storage_type payload_; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 514 | trie *parent_; // to make cleaning effective |
| 515 | }; |
| 516 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 517 | |
| 518 | |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 519 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 520 | template<typename FullKey, typename PayloadTraits, typename PolicyHook> |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 521 | inline std::ostream& |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 522 | operator << (std::ostream &os, const trie<FullKey, PayloadTraits, PolicyHook> &trie_node) |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 523 | { |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 524 | os << "# " << trie_node.key_ << ((trie_node.payload_ != PayloadTraits::empty_payload)?"*":"") << std::endl; |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 525 | typedef trie<FullKey, PayloadTraits, PolicyHook> trie; |
Alexander Afanasyev | 051d378 | 2012-07-03 10:10:15 -0700 | [diff] [blame] | 526 | |
| 527 | for (typename trie::unordered_set::const_iterator subnode = trie_node.children_.begin (); |
| 528 | subnode != trie_node.children_.end (); |
| 529 | subnode++ ) |
| 530 | // BOOST_FOREACH (const trie &subnode, trie_node.children_) |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 531 | { |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 532 | os << "\"" << &trie_node << "\"" << " [label=\"" << trie_node.key_ << ((trie_node.payload_ != PayloadTraits::empty_payload)?"*":"") << "\"]\n"; |
| 533 | os << "\"" << &(*subnode) << "\"" << " [label=\"" << subnode->key_ << ((subnode->payload_ != PayloadTraits::empty_payload)?"*":"") << "\"]""\n"; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 534 | |
Alexander Afanasyev | 051d378 | 2012-07-03 10:10:15 -0700 | [diff] [blame] | 535 | os << "\"" << &trie_node << "\"" << " -> " << "\"" << &(*subnode) << "\"" << "\n"; |
| 536 | os << *subnode; |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | return os; |
| 540 | } |
| 541 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 542 | template<typename FullKey, typename PayloadTraits, typename PolicyHook> |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 543 | inline void |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 544 | trie<FullKey, PayloadTraits, PolicyHook> |
Alexander Afanasyev | b0c4389 | 2012-06-13 00:52:58 -0700 | [diff] [blame] | 545 | ::PrintStat (std::ostream &os) const |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 546 | { |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 547 | os << "# " << key_ << ((payload_ != PayloadTraits::empty_payload)?"*":"") << ": " << children_.size() << " children" << std::endl; |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 548 | for (size_t bucket = 0, maxbucket = children_.bucket_count (); |
| 549 | bucket < maxbucket; |
| 550 | bucket++) |
| 551 | { |
| 552 | os << " " << children_.bucket_size (bucket); |
| 553 | } |
| 554 | os << "\n"; |
| 555 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 556 | typedef trie<FullKey, PayloadTraits, PolicyHook> trie; |
Alexander Afanasyev | 051d378 | 2012-07-03 10:10:15 -0700 | [diff] [blame] | 557 | for (typename trie::unordered_set::const_iterator subnode = children_.begin (); |
| 558 | subnode != children_.end (); |
| 559 | subnode++ ) |
| 560 | // BOOST_FOREACH (const trie &subnode, children_) |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 561 | { |
Alexander Afanasyev | 051d378 | 2012-07-03 10:10:15 -0700 | [diff] [blame] | 562 | subnode->PrintStat (os); |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 563 | } |
| 564 | } |
| 565 | |
| 566 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 567 | template<typename FullKey, typename PayloadTraits, typename PolicyHook> |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 568 | inline bool |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 569 | operator == (const trie<FullKey, PayloadTraits, PolicyHook> &a, |
| 570 | const trie<FullKey, PayloadTraits, PolicyHook> &b) |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 571 | { |
| 572 | return a.key_ == b.key_; |
| 573 | } |
| 574 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 575 | template<typename FullKey, typename PayloadTraits, typename PolicyHook> |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 576 | inline std::size_t |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 577 | hash_value (const trie<FullKey, PayloadTraits, PolicyHook> &trie_node) |
Alexander Afanasyev | fd0c41c | 2012-06-11 22:15:49 -0700 | [diff] [blame] | 578 | { |
| 579 | return boost::hash_value (trie_node.key_); |
| 580 | } |
Alexander Afanasyev | 89fb535 | 2012-06-12 22:43:16 -0700 | [diff] [blame] | 581 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 582 | |
| 583 | |
Alexander Afanasyev | 1cb4aad | 2012-08-09 14:58:16 -0700 | [diff] [blame] | 584 | template<class Trie, class NonConstTrie> // hack for boost < 1.47 |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 585 | class trie_iterator |
| 586 | { |
| 587 | public: |
| 588 | trie_iterator () : trie_ (0) {} |
| 589 | trie_iterator (typename Trie::iterator item) : trie_ (item) {} |
| 590 | trie_iterator (Trie &item) : trie_ (&item) {} |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 591 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 592 | Trie & operator* () { return *trie_; } |
| 593 | const Trie & operator* () const { return *trie_; } |
| 594 | Trie * operator-> () { return trie_; } |
| 595 | const Trie * operator-> () const { return trie_; } |
Alexander Afanasyev | 1cb4aad | 2012-08-09 14:58:16 -0700 | [diff] [blame] | 596 | bool operator== (trie_iterator<const Trie, NonConstTrie> &other) const { return (trie_ == other.trie_); } |
| 597 | bool operator== (trie_iterator<Trie, NonConstTrie> &other) { return (trie_ == other.trie_); } |
| 598 | bool operator!= (trie_iterator<const Trie, NonConstTrie> &other) const { return !(*this == other); } |
| 599 | bool operator!= (trie_iterator<Trie, NonConstTrie> &other) { return !(*this == other); } |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 600 | |
Alexander Afanasyev | 1cb4aad | 2012-08-09 14:58:16 -0700 | [diff] [blame] | 601 | trie_iterator<Trie,NonConstTrie> & |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 602 | operator++ (int) |
| 603 | { |
| 604 | if (trie_->children_.size () > 0) |
| 605 | trie_ = &(*trie_->children_.begin ()); |
| 606 | else |
| 607 | trie_ = goUp (); |
| 608 | return *this; |
| 609 | } |
| 610 | |
Alexander Afanasyev | 1cb4aad | 2012-08-09 14:58:16 -0700 | [diff] [blame] | 611 | trie_iterator<Trie,NonConstTrie> & |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 612 | operator++ () |
| 613 | { |
| 614 | (*this)++; |
| 615 | return *this; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 616 | } |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 617 | |
| 618 | private: |
Alexander Afanasyev | 1cb4aad | 2012-08-09 14:58:16 -0700 | [diff] [blame] | 619 | typedef typename boost::mpl::if_< boost::is_same<Trie, NonConstTrie>, |
| 620 | typename Trie::unordered_set::iterator, |
| 621 | typename Trie::unordered_set::const_iterator>::type set_iterator; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 622 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 623 | Trie* goUp () |
| 624 | { |
| 625 | if (trie_->parent_ != 0) |
| 626 | { |
| 627 | // typename Trie::unordered_set::iterator item = |
Alexander Afanasyev | 1cb4aad | 2012-08-09 14:58:16 -0700 | [diff] [blame] | 628 | set_iterator item = const_cast<NonConstTrie*>(trie_)->parent_->children_.iterator_to (const_cast<NonConstTrie&> (*trie_)); |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 629 | item++; |
| 630 | if (item != trie_->parent_->children_.end ()) |
| 631 | { |
| 632 | return &(*item); |
| 633 | } |
| 634 | else |
| 635 | { |
| 636 | trie_ = trie_->parent_; |
| 637 | return goUp (); |
| 638 | } |
| 639 | } |
| 640 | else |
| 641 | return 0; |
| 642 | } |
| 643 | private: |
| 644 | Trie *trie_; |
| 645 | }; |
| 646 | |
| 647 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 648 | template<class Trie> |
| 649 | class trie_point_iterator |
| 650 | { |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 651 | private: |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 652 | typedef typename boost::mpl::if_< boost::is_same<Trie, const Trie>, |
| 653 | typename Trie::unordered_set::const_iterator, |
| 654 | typename Trie::unordered_set::iterator>::type set_iterator; |
| 655 | |
| 656 | public: |
| 657 | trie_point_iterator () : trie_ (0) {} |
| 658 | trie_point_iterator (typename Trie::iterator item) : trie_ (item) {} |
| 659 | trie_point_iterator (Trie &item) |
| 660 | { |
| 661 | if (item.children_.size () != 0) |
| 662 | trie_ = &*item.children_.begin (); |
| 663 | else |
| 664 | trie_ = 0; |
| 665 | } |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 666 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 667 | Trie & operator* () { return *trie_; } |
| 668 | const Trie & operator* () const { return *trie_; } |
| 669 | Trie * operator-> () { return trie_; } |
| 670 | const Trie * operator-> () const { return trie_; } |
| 671 | bool operator== (trie_point_iterator<const Trie> &other) const { return (trie_ == other.trie_); } |
| 672 | bool operator== (trie_point_iterator<Trie> &other) { return (trie_ == other.trie_); } |
| 673 | bool operator!= (trie_point_iterator<const Trie> &other) const { return !(*this == other); } |
| 674 | bool operator!= (trie_point_iterator<Trie> &other) { return !(*this == other); } |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 675 | |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 676 | trie_point_iterator<Trie> & |
| 677 | operator++ (int) |
| 678 | { |
| 679 | if (trie_->parent_ != 0) |
| 680 | { |
| 681 | set_iterator item = trie_->parent_->children_.iterator_to (*trie_); |
| 682 | item ++; |
| 683 | if (item == trie_->parent_->children_.end ()) |
| 684 | trie_ = 0; |
| 685 | else |
| 686 | trie_ = &*item; |
| 687 | } |
| 688 | else |
| 689 | { |
| 690 | trie_ = 0; |
| 691 | } |
| 692 | return *this; |
| 693 | } |
| 694 | |
| 695 | trie_point_iterator<Trie> & |
| 696 | operator++ () |
| 697 | { |
| 698 | (*this)++; |
| 699 | return *this; |
Alexander Afanasyev | eec6629 | 2013-02-06 16:23:21 -0800 | [diff] [blame] | 700 | } |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 701 | |
| 702 | private: |
| 703 | Trie *trie_; |
| 704 | }; |
| 705 | |
| 706 | |
Alexander Afanasyev | 30cb117 | 2012-07-06 10:47:39 -0700 | [diff] [blame] | 707 | } // ndnSIM |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 708 | } // ndn |
Alexander Afanasyev | e77db79 | 2012-08-09 11:10:58 -0700 | [diff] [blame] | 709 | } // ns3 |
Alexander Afanasyev | 30cb117 | 2012-07-06 10:47:39 -0700 | [diff] [blame] | 710 | |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 711 | #endif // TRIE_H_ |