Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2012 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 FRESHNESS_POLICY_H_ |
| 22 | #define FRESHNESS_POLICY_H_ |
| 23 | |
| 24 | #include <boost/intrusive/options.hpp> |
| 25 | #include <boost/intrusive/list.hpp> |
| 26 | |
| 27 | #include <ns3/nstime.h> |
| 28 | #include <ns3/simulator.h> |
| 29 | #include <ns3/traced-callback.h> |
| 30 | |
| 31 | namespace ns3 { |
| 32 | namespace ndn { |
| 33 | namespace ndnSIM { |
| 34 | |
| 35 | /** |
| 36 | * @brief Traits for freshness policy |
| 37 | */ |
| 38 | struct freshness_policy_traits |
| 39 | { |
| 40 | /// @brief Name that can be used to identify the policy (for NS-3 object model and logging) |
| 41 | static std::string GetName () { return "Freshness"; } |
| 42 | |
| 43 | struct policy_hook_type : public boost::intrusive::set_member_hook<> { Time timeWhenShouldExpire; }; |
| 44 | |
| 45 | template<class Container> |
| 46 | struct container_hook |
| 47 | { |
| 48 | typedef boost::intrusive::member_hook< Container, |
| 49 | policy_hook_type, |
| 50 | &Container::policy_hook_ > type; |
| 51 | }; |
| 52 | |
| 53 | template<class Base, |
| 54 | class Container, |
| 55 | class Hook> |
Alexander Afanasyev | 41824bd | 2013-01-23 23:57:59 -0800 | [diff] [blame] | 56 | struct policy |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 57 | { |
| 58 | static Time& get_freshness (typename Container::iterator item) |
| 59 | { |
| 60 | return static_cast<typename policy_container::value_traits::hook_type*> |
| 61 | (policy_container::value_traits::to_node_ptr(*item))->timeWhenShouldExpire; |
| 62 | } |
Alexander Afanasyev | 41824bd | 2013-01-23 23:57:59 -0800 | [diff] [blame] | 63 | |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 64 | static const Time& get_freshness (typename Container::const_iterator item) |
| 65 | { |
| 66 | return static_cast<const typename policy_container::value_traits::hook_type*> |
| 67 | (policy_container::value_traits::to_node_ptr(*item))->timeWhenShouldExpire; |
| 68 | } |
| 69 | |
| 70 | template<class Key> |
| 71 | struct MemberHookLess |
| 72 | { |
| 73 | bool operator () (const Key &a, const Key &b) const |
| 74 | { |
| 75 | return get_freshness (&a) < get_freshness (&b); |
| 76 | } |
| 77 | }; |
| 78 | |
| 79 | typedef boost::intrusive::multiset< Container, |
| 80 | boost::intrusive::compare< MemberHookLess< Container > >, |
| 81 | Hook > policy_container; |
| 82 | |
Alexander Afanasyev | 41824bd | 2013-01-23 23:57:59 -0800 | [diff] [blame] | 83 | |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 84 | class type : public policy_container |
| 85 | { |
| 86 | public: |
Alexander Afanasyev | 6978611 | 2012-12-13 11:53:36 -0800 | [diff] [blame] | 87 | typedef policy policy_base; // to get access to get_freshness methods from outside |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 88 | typedef Container parent_trie; |
| 89 | |
| 90 | type (Base &base) |
| 91 | : base_ (base) |
| 92 | , max_size_ (100) |
| 93 | { |
| 94 | } |
| 95 | |
| 96 | inline void |
| 97 | update (typename parent_trie::iterator item) |
| 98 | { |
Alexander Afanasyev | 41824bd | 2013-01-23 23:57:59 -0800 | [diff] [blame] | 99 | // do nothing |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 100 | } |
Alexander Afanasyev | 41824bd | 2013-01-23 23:57:59 -0800 | [diff] [blame] | 101 | |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 102 | inline bool |
| 103 | insert (typename parent_trie::iterator item) |
| 104 | { |
| 105 | // get_time (item) = Simulator::Now (); |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 106 | Time freshness = item->payload ()->GetData ()->GetFreshness (); |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 107 | if (!freshness.IsZero ()) |
| 108 | { |
| 109 | get_freshness (item) = Simulator::Now () + freshness; |
| 110 | |
| 111 | // push item only if freshness is non zero. otherwise, this payload is not controlled by the policy |
| 112 | // note that .size() on this policy would return only number of items with non-infinite freshness policy |
Alexander Afanasyev | 8c476bb | 2013-07-04 09:34:55 -0700 | [diff] [blame] | 113 | policy_container::insert (*item); |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | return true; |
| 117 | } |
Alexander Afanasyev | 41824bd | 2013-01-23 23:57:59 -0800 | [diff] [blame] | 118 | |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 119 | inline void |
| 120 | lookup (typename parent_trie::iterator item) |
| 121 | { |
| 122 | // do nothing. it's random policy |
| 123 | } |
Alexander Afanasyev | 41824bd | 2013-01-23 23:57:59 -0800 | [diff] [blame] | 124 | |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 125 | inline void |
| 126 | erase (typename parent_trie::iterator item) |
| 127 | { |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 128 | if (!item->payload ()->GetData ()->GetFreshness ().IsZero ()) |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 129 | { |
| 130 | // erase only if freshness is non zero (otherwise an item is not in the policy |
| 131 | policy_container::erase (policy_container::s_iterator_to (*item)); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | inline void |
| 136 | clear () |
| 137 | { |
| 138 | policy_container::clear (); |
| 139 | } |
| 140 | |
| 141 | inline void |
| 142 | set_max_size (size_t max_size) |
| 143 | { |
| 144 | max_size_ = max_size; |
| 145 | } |
| 146 | |
| 147 | inline size_t |
| 148 | get_max_size () const |
| 149 | { |
| 150 | return max_size_; |
| 151 | } |
| 152 | |
| 153 | private: |
| 154 | type () : base_(*((Base*)0)) { }; |
Alexander Afanasyev | 41824bd | 2013-01-23 23:57:59 -0800 | [diff] [blame] | 155 | |
Alexander Afanasyev | c3cc0b3 | 2012-12-12 18:41:20 -0800 | [diff] [blame] | 156 | private: |
| 157 | Base &base_; |
| 158 | size_t max_size_; |
| 159 | }; |
| 160 | }; |
| 161 | }; |
| 162 | |
| 163 | } // ndnSIM |
| 164 | } // ndn |
| 165 | } // ns3 |
| 166 | |
| 167 | #endif // LIFETIME_STATS_POLICY_H |