blob: fb728642a146548ef86c534e515c595894519a33 [file] [log] [blame]
Alexander Afanasyev30f60e32012-07-10 14:21:16 -07001/* -*- 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 PERSISTENT_POLICY_H_
22#define PERSISTENT_POLICY_H_
23
24#include <boost/intrusive/options.hpp>
25#include <boost/intrusive/list.hpp>
26
27namespace ndnSIM
28{
29
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).
34 * If maximum is reached, new entries will not be added and nothing will be removed from the container
35 */
36struct persistent_policy_traits
37{
38 struct policy_hook_type : public boost::intrusive::list_member_hook<> {};
39
40 template<class Container>
41 struct container_hook
42 {
43 typedef boost::intrusive::member_hook< Container,
44 policy_hook_type,
45 &Container::policy_hook_ > type;
46 };
47
48 template<class Base,
49 class Container,
50 class Hook>
51 struct policy
52 {
53 typedef typename boost::intrusive::list< Container, Hook > policy_container;
54
55 // could be just typedef
56 class type : public policy_container
57 {
58 public:
59 typedef Container parent_trie;
60
61 type (Base &base)
62 : base_ (base)
63 , max_size_ (100) // when 0, policy is not enforced
64 {
65 }
66
67 inline void
68 update (typename parent_trie::iterator item)
69 {
70 // do nothing
71 }
72
73 inline bool
74 insert (typename parent_trie::iterator item)
75 {
76 if (max_size_ != 0 && policy_container::size () >= max_size_)
77 return false;
78
79 policy_container::push_back (*item);
80 return true;
81 }
82
83 inline void
84 lookup (typename parent_trie::iterator item)
85 {
86 // do nothing
87 }
88
89 inline void
90 erase (typename parent_trie::iterator item)
91 {
92 policy_container::erase (policy_container::s_iterator_to (*item));
93 }
94
95 inline void
96 clear ()
97 {
98 policy_container::clear ();
99 }
100
101 inline void
102 set_max_size (size_t max_size)
103 {
104 max_size_ = max_size;
105 }
106
107 inline size_t
108 get_max_size () const
109 {
110 return max_size_;
111 }
112
113 private:
114 // type () : base_(*((Base*)0)) { };
115
116 private:
117 Base &base_;
118 size_t max_size_;
119 };
120 };
121};
122
123} // ndnSIM
124
125#endif // PERSISTENT_POLICY_H_