blob: 15b482f4d2b058348d2fe50ff9d7460830cc6b76 [file] [log] [blame]
Alexander Afanasyev9a989702012-06-29 17:44:00 -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 LRU_POLICY_H_
22#define LRU_POLICY_H_
23
Alexander Afanasyev30cb1172012-07-06 10:47:39 -070024#include <boost/intrusive/options.hpp>
25#include <boost/intrusive/list.hpp>
26
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070027namespace ns3 {
28namespace ndn {
29namespace ndnSIM {
Alexander Afanasyev30cb1172012-07-06 10:47:39 -070030
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070031/**
32 * @brief Traits for Least Recently Used replacement policy
33 */
Alexander Afanasyev9a989702012-06-29 17:44:00 -070034struct lru_policy_traits
35{
Alexander Afanasyev30cb1172012-07-06 10:47:39 -070036 struct policy_hook_type : public boost::intrusive::list_member_hook<> {};
Alexander Afanasyev9a989702012-06-29 17:44:00 -070037
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070038 template<class Container>
39 struct container_hook
Alexander Afanasyev9a989702012-06-29 17:44:00 -070040 {
Alexander Afanasyev30cb1172012-07-06 10:47:39 -070041 typedef boost::intrusive::member_hook< Container,
42 policy_hook_type,
43 &Container::policy_hook_ > type;
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070044 };
Alexander Afanasyev9a989702012-06-29 17:44:00 -070045
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070046 template<class Base,
47 class Container,
48 class Hook>
49 struct policy
50 {
Alexander Afanasyev30cb1172012-07-06 10:47:39 -070051 typedef typename boost::intrusive::list< Container, Hook > policy_container;
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070052
53 // could be just typedef
54 class type : public policy_container
Alexander Afanasyev9a989702012-06-29 17:44:00 -070055 {
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070056 public:
57 typedef Container parent_trie;
58
59 type (Base &base)
60 : base_ (base)
61 , max_size_ (100)
62 {
63 }
64
65 inline void
66 update (typename parent_trie::iterator item)
67 {
68 // do relocation
69 policy_container::splice (policy_container::end (),
70 *this,
71 policy_container::s_iterator_to (*item));
72 }
Alexander Afanasyev9a989702012-06-29 17:44:00 -070073
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070074 inline bool
75 insert (typename parent_trie::iterator item)
76 {
Alexander Afanasyevbd6f3f42012-07-26 17:50:17 -070077 if (max_size_ != 0 && policy_container::size () >= max_size_)
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070078 {
79 base_.erase (&(*policy_container::begin ()));
80 }
Alexander Afanasyev9a989702012-06-29 17:44:00 -070081
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070082 policy_container::push_back (*item);
83 return true;
84 }
Alexander Afanasyev9a989702012-06-29 17:44:00 -070085
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070086 inline void
87 lookup (typename parent_trie::iterator item)
88 {
89 // do relocation
90 policy_container::splice (policy_container::end (),
91 *this,
92 policy_container::s_iterator_to (*item));
93 }
Alexander Afanasyev9a989702012-06-29 17:44:00 -070094
Alexander Afanasyev9e96e362012-07-02 23:04:39 -070095 inline void
96 erase (typename parent_trie::iterator item)
97 {
98 policy_container::erase (policy_container::s_iterator_to (*item));
99 }
Alexander Afanasyev9a989702012-06-29 17:44:00 -0700100
Alexander Afanasyev9e96e362012-07-02 23:04:39 -0700101 inline void
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700102 clear ()
103 {
104 policy_container::clear ();
105 }
106
107 inline void
Alexander Afanasyev9e96e362012-07-02 23:04:39 -0700108 set_max_size (size_t max_size)
109 {
110 max_size_ = max_size;
111 }
Alexander Afanasyev9a989702012-06-29 17:44:00 -0700112
Alexander Afanasyev9e96e362012-07-02 23:04:39 -0700113 inline size_t
114 get_max_size () const
115 {
116 return max_size_;
117 }
Alexander Afanasyev9a989702012-06-29 17:44:00 -0700118
Alexander Afanasyev9e96e362012-07-02 23:04:39 -0700119 private:
Alexander Afanasyev903062f2012-07-04 18:25:26 -0700120 type () : base_(*((Base*)0)) { };
121
122 private:
Alexander Afanasyev9e96e362012-07-02 23:04:39 -0700123 Base &base_;
124 size_t max_size_;
125 };
Alexander Afanasyev9a989702012-06-29 17:44:00 -0700126 };
127};
128
Alexander Afanasyev30cb1172012-07-06 10:47:39 -0700129} // ndnSIM
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700130} // ndn
Alexander Afanasyeve77db792012-08-09 11:10:58 -0700131} // ns3
Alexander Afanasyev30cb1172012-07-06 10:47:39 -0700132
Alexander Afanasyev9a989702012-06-29 17:44:00 -0700133#endif