blob: 49301f31cce261be32484493aca005b7fe631987 [file] [log] [blame]
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2011-2015 Regents of the University of California.
Alexander Afanasyev30f60e32012-07-10 14:21:16 -07004 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08005 * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and
6 * contributors.
Alexander Afanasyev30f60e32012-07-10 14:21:16 -07007 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08008 * ndnSIM is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070011 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080012 * ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070015 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080016 * You should have received a copy of the GNU General Public License along with
17 * ndnSIM, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 **/
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070019
20#ifndef PERSISTENT_POLICY_H_
21#define PERSISTENT_POLICY_H_
22
23#include <boost/intrusive/options.hpp>
24#include <boost/intrusive/list.hpp>
25
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070026namespace ns3 {
27namespace ndn {
28namespace ndnSIM {
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070029
30/**
31 * @brief Traits for persistent replacement policy
32 *
33 * In this policy entries are added until there is a space (controlled by set_max_size call).
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080034 * If maximum is reached, new entries will not be added and nothing will be removed from the
35 *container
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070036 */
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080037struct persistent_policy_traits {
Alexander Afanasyev991a0cc2012-12-10 11:38:19 -080038 /// @brief Name that can be used to identify the policy (for NS-3 object model and logging)
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080039 static std::string
40 GetName()
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070041 {
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080042 return "Persistent";
43 }
44
45 struct policy_hook_type : public boost::intrusive::list_member_hook<> {
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070046 };
47
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080048 template<class Container>
49 struct container_hook {
50 typedef boost::intrusive::member_hook<Container, policy_hook_type, &Container::policy_hook_>
51 type;
52 };
53
54 template<class Base, class Container, class Hook>
55 struct policy {
56 typedef typename boost::intrusive::list<Container, Hook> policy_container;
57
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070058 // could be just typedef
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080059 class type : public policy_container {
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070060 public:
61 typedef Container parent_trie;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080062
63 type(Base& base)
64 : base_(base)
65 , max_size_(100) // when 0, policy is not enforced
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070066 {
67 }
68
69 inline void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080070 update(typename parent_trie::iterator item)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070071 {
72 // do nothing
73 }
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080074
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070075 inline bool
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080076 insert(typename parent_trie::iterator item)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070077 {
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080078 if (max_size_ != 0 && policy_container::size() >= max_size_)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070079 return false;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080080
81 policy_container::push_back(*item);
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070082 return true;
83 }
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080084
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070085 inline void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080086 lookup(typename parent_trie::iterator item)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070087 {
88 // do nothing
89 }
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080090
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070091 inline void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080092 erase(typename parent_trie::iterator item)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070093 {
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080094 policy_container::erase(policy_container::s_iterator_to(*item));
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070095 }
96
97 inline void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080098 clear()
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070099 {
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800100 policy_container::clear();
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700101 }
102
103 inline void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800104 set_max_size(size_t max_size)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700105 {
106 max_size_ = max_size;
107 }
108
109 inline size_t
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800110 get_max_size() const
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700111 {
112 return max_size_;
113 }
114
115 private:
116 // type () : base_(*((Base*)0)) { };
117
118 private:
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800119 Base& base_;
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700120 size_t max_size_;
121 };
122 };
123};
124
125} // ndnSIM
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700126} // ndn
Alexander Afanasyeve77db792012-08-09 11:10:58 -0700127} // ns3
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700128
129#endif // PERSISTENT_POLICY_H_