Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -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 | |
| 21 | #ifndef TRIE_WITH_POLICY_H_ |
| 22 | #define TRIE_WITH_POLICY_H_ |
| 23 | |
| 24 | #include "trie.h" |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 26 | namespace ns3 { |
| 27 | namespace ndn { |
| 28 | namespace ndnSIM { |
Alexander Afanasyev | 30cb117 | 2012-07-06 10:47:39 -0700 | [diff] [blame] | 29 | |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 30 | template<typename FullKey, |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 31 | typename PayloadTraits, |
| 32 | typename PolicyTraits |
| 33 | > |
| 34 | class trie_with_policy |
| 35 | { |
| 36 | public: |
Alexander Afanasyev | 9e96e36 | 2012-07-02 23:04:39 -0700 | [diff] [blame] | 37 | typedef trie< FullKey, |
Alexander Afanasyev | 9e96e36 | 2012-07-02 23:04:39 -0700 | [diff] [blame] | 38 | PayloadTraits, |
| 39 | typename PolicyTraits::policy_hook_type > parent_trie; |
| 40 | |
| 41 | typedef typename parent_trie::iterator iterator; |
Alexander Afanasyev | 1ba09b8 | 2012-07-09 09:16:14 -0700 | [diff] [blame] | 42 | typedef typename parent_trie::const_iterator const_iterator; |
Alexander Afanasyev | 9e96e36 | 2012-07-02 23:04:39 -0700 | [diff] [blame] | 43 | |
| 44 | typedef typename PolicyTraits::template policy< |
| 45 | trie_with_policy<FullKey, PayloadTraits, PolicyTraits>, |
| 46 | parent_trie, |
| 47 | typename PolicyTraits::template container_hook<parent_trie>::type >::type policy_container; |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 48 | |
| 49 | inline |
| 50 | trie_with_policy (size_t bucketSize = 10, size_t bucketIncrement = 10) |
| 51 | : trie_ ("", bucketSize, bucketIncrement) |
Alexander Afanasyev | 9e96e36 | 2012-07-02 23:04:39 -0700 | [diff] [blame] | 52 | , policy_ (*this) |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 53 | { |
| 54 | } |
| 55 | |
| 56 | inline std::pair< iterator, bool > |
Alexander Afanasyev | 0845c09 | 2012-07-13 17:45:33 -0700 | [diff] [blame] | 57 | insert (const FullKey &key, typename PayloadTraits::insert_type payload) |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 58 | { |
| 59 | std::pair<iterator, bool> item = |
| 60 | trie_.insert (key, payload); |
| 61 | |
| 62 | if (item.second) // real insert |
| 63 | { |
Alexander Afanasyev | 9e96e36 | 2012-07-02 23:04:39 -0700 | [diff] [blame] | 64 | bool ok = policy_.insert (s_iterator_to (item.first)); |
| 65 | if (!ok) |
| 66 | { |
| 67 | item.first->erase (); // cannot insert |
| 68 | return std::make_pair (end (), false); |
| 69 | } |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 70 | } |
| 71 | else |
| 72 | { |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 73 | return std::make_pair (s_iterator_to (item.first), false); |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | return item; |
| 77 | } |
| 78 | |
| 79 | inline void |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 80 | erase (const FullKey &key) |
| 81 | { |
| 82 | iterator foundItem, lastItem; |
| 83 | bool reachLast; |
| 84 | boost::tie (foundItem, reachLast, lastItem) = trie_.find (key); |
| 85 | |
| 86 | if (!reachLast || lastItem->payload () == PayloadTraits::empty_payload) |
| 87 | return; // nothing to invalidate |
| 88 | |
| 89 | erase (lastItem); |
| 90 | } |
| 91 | |
| 92 | inline void |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 93 | erase (iterator node) |
| 94 | { |
| 95 | if (node == end ()) return; |
| 96 | |
| 97 | policy_.erase (s_iterator_to (node)); |
| 98 | node->erase (); // will do cleanup here |
| 99 | } |
| 100 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 101 | inline void |
| 102 | clear () |
| 103 | { |
| 104 | policy_.clear (); |
| 105 | trie_.clear (); |
| 106 | } |
| 107 | |
| 108 | template<typename Modifier> |
| 109 | bool |
| 110 | modify (iterator position, Modifier mod) |
| 111 | { |
| 112 | if (position == end ()) return false; |
| 113 | if (position->payload () == PayloadTraits::empty_payload) return false; |
| 114 | |
| 115 | mod (*position->payload ()); |
| 116 | policy_.update (position); |
| 117 | return true; |
| 118 | } |
Alexander Afanasyev | adcccf4 | 2012-11-26 23:55:34 -0800 | [diff] [blame] | 119 | |
| 120 | /** |
| 121 | * @brief Find a node that has the exact match with the key |
| 122 | */ |
| 123 | inline iterator |
| 124 | find_exact (const FullKey &key) |
| 125 | { |
| 126 | iterator foundItem, lastItem; |
| 127 | bool reachLast; |
| 128 | boost::tie (foundItem, reachLast, lastItem) = trie_.find (key); |
| 129 | |
| 130 | if (!reachLast || lastItem->payload () == PayloadTraits::empty_payload) |
| 131 | return end (); |
| 132 | |
| 133 | return lastItem; |
| 134 | } |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 135 | |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 136 | /** |
| 137 | * @brief Find a node that has the longest common prefix with key (FIB/PIT lookup) |
| 138 | */ |
| 139 | inline iterator |
| 140 | longest_prefix_match (const FullKey &key) |
| 141 | { |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 142 | iterator foundItem, lastItem; |
| 143 | bool reachLast; |
| 144 | boost::tie (foundItem, reachLast, lastItem) = trie_.find (key); |
| 145 | if (foundItem != trie_.end ()) |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 146 | { |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 147 | policy_.lookup (s_iterator_to (foundItem)); |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 148 | } |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 149 | return foundItem; |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 150 | } |
| 151 | |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 152 | // /** |
| 153 | // * @brief Const version of the longest common prefix match |
| 154 | // * (semi-const, because there could be update of the policy anyways) |
| 155 | // */ |
| 156 | // inline const_iterator |
| 157 | // longest_prefix_match (const FullKey &key) const |
| 158 | // { |
| 159 | // return static_cast<trie_with_policy*> (this)->longest_prefix_match (key); |
| 160 | // } |
| 161 | |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 162 | /** |
| 163 | * @brief Find a node that has prefix at least as the key (cache lookup) |
| 164 | */ |
| 165 | inline iterator |
| 166 | deepest_prefix_match (const FullKey &key) |
| 167 | { |
| 168 | iterator foundItem, lastItem; |
| 169 | bool reachLast; |
| 170 | boost::tie (foundItem, reachLast, lastItem) = trie_.find (key); |
| 171 | |
| 172 | // guard in case we don't have anything in the trie |
| 173 | if (lastItem == trie_.end ()) |
| 174 | return trie_.end (); |
| 175 | |
| 176 | if (reachLast) |
| 177 | { |
| 178 | if (foundItem == trie_.end ()) |
| 179 | { |
| 180 | foundItem = lastItem->find (); // should be something |
| 181 | } |
| 182 | policy_.lookup (s_iterator_to (foundItem)); |
| 183 | return foundItem; |
| 184 | } |
| 185 | else |
| 186 | { // couldn't find a node that has prefix at least as key |
| 187 | return trie_.end (); |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * @brief Find a node that has prefix at least as the key |
| 193 | */ |
| 194 | template<class Predicate> |
| 195 | inline iterator |
| 196 | deepest_prefix_match (const FullKey &key, Predicate pred) |
| 197 | { |
| 198 | iterator foundItem, lastItem; |
| 199 | bool reachLast; |
| 200 | boost::tie (foundItem, reachLast, lastItem) = trie_.find (key); |
| 201 | |
| 202 | // guard in case we don't have anything in the trie |
| 203 | if (lastItem == trie_.end ()) |
| 204 | return trie_.end (); |
| 205 | |
| 206 | if (reachLast) |
| 207 | { |
| 208 | foundItem = lastItem->find_if (pred); // may or may not find something |
| 209 | if (foundItem == trie_.end ()) |
| 210 | { |
| 211 | return trie_.end (); |
| 212 | } |
| 213 | policy_.lookup (s_iterator_to (foundItem)); |
| 214 | return foundItem; |
| 215 | } |
| 216 | else |
| 217 | { // couldn't find a node that has prefix at least as key |
| 218 | return trie_.end (); |
| 219 | } |
| 220 | } |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 221 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 222 | iterator end () const |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 223 | { |
| 224 | return 0; |
| 225 | } |
| 226 | |
| 227 | const parent_trie & |
| 228 | getTrie () const { return trie_; } |
| 229 | |
Alexander Afanasyev | 44bb6ea | 2012-07-09 08:44:41 -0700 | [diff] [blame] | 230 | parent_trie & |
| 231 | getTrie () { return trie_; } |
| 232 | |
Alexander Afanasyev | 9e96e36 | 2012-07-02 23:04:39 -0700 | [diff] [blame] | 233 | const policy_container & |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 234 | getPolicy () const { return policy_; } |
| 235 | |
Alexander Afanasyev | 9e96e36 | 2012-07-02 23:04:39 -0700 | [diff] [blame] | 236 | policy_container & |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 237 | getPolicy () { return policy_; } |
| 238 | |
| 239 | static inline iterator |
| 240 | s_iterator_to (typename parent_trie::iterator item) |
| 241 | { |
| 242 | if (item == 0) |
| 243 | return 0; |
| 244 | else |
| 245 | return &(*item); |
| 246 | } |
| 247 | |
| 248 | private: |
| 249 | parent_trie trie_; |
Alexander Afanasyev | 30f60e3 | 2012-07-10 14:21:16 -0700 | [diff] [blame] | 250 | mutable policy_container policy_; |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 251 | }; |
| 252 | |
Alexander Afanasyev | 30cb117 | 2012-07-06 10:47:39 -0700 | [diff] [blame] | 253 | } // ndnSIM |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 254 | } // ndn |
Alexander Afanasyev | e77db79 | 2012-08-09 11:10:58 -0700 | [diff] [blame] | 255 | } // ns3 |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 256 | |
| 257 | #endif // TRIE_WITH_POLICY_H_ |