blob: 9193442a829b50dde1c7f61c27998c7620800a58 [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 PAYLOAD_POLICY_H_
22#define PAYLOAD_POLICY_H_
23
24#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 Afanasyev30f60e32012-07-10 14:21:16 -070030
31/**
32 * @brief Traits for policy that keeps items in a sorted order using payload member
33 */
34template<class Member>
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080035struct payload_policy_traits {
36 struct policy_hook_type : public boost::intrusive::set_member_hook<> {
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070037 };
38
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080039 template<class Container>
40 struct container_hook {
41 typedef boost::intrusive::member_hook<Container, policy_hook_type, &Container::policy_hook_>
42 type;
43 };
44
45 template<class Base, class Container, class Hook>
46 struct policy {
47 typedef typename boost::intrusive::list<Container, Hook> policy_container;
48
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070049 // could be just typedef
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080050 class type : public policy_container {
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070051 public:
52 typedef Container parent_trie;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080053
54 type(Base& base)
55 : base_(base)
56 , max_size_(100)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070057 {
58 }
59
60 inline void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080061 update(typename parent_trie::iterator item)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070062 {
63 // do relocation
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080064 policy_container::splice(policy_container::end(), *this,
65 policy_container::s_iterator_to(*item));
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070066 }
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080067
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070068 inline bool
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080069 insert(typename parent_trie::iterator item)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070070 {
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080071 if (policy_container::size() >= max_size_) {
72 base_.erase(&(*policy_container::begin()));
73 }
74
75 policy_container::push_back(*item);
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070076 return true;
77 }
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080078
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070079 inline void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080080 lookup(typename parent_trie::iterator item)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070081 {
82 // do relocation
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080083 policy_container::splice(policy_container::end(), *this,
84 policy_container::s_iterator_to(*item));
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070085 }
86
87 inline void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080088 erase(typename parent_trie::iterator item)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070089 {
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080090 policy_container::erase(policy_container::s_iterator_to(*item));
Alexander Afanasyev30f60e32012-07-10 14:21:16 -070091 }
92
93 inline void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080094 clear()
95 {
96 policy_container::clear();
97 }
98
99 inline void
100 set_max_size(size_t max_size)
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700101 {
102 max_size_ = max_size;
103 }
104
105 inline size_t
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800106 get_max_size() const
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700107 {
108 return max_size_;
109 }
110
111 private:
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800112 type()
113 : base_(*((Base*)0)){};
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700114
115 private:
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800116 Base& base_;
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700117 size_t max_size_;
118 };
119 };
120};
121
122} // ndnSIM
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700123} // ndn
Alexander Afanasyeve77db792012-08-09 11:10:58 -0700124} // ns3
Alexander Afanasyev30f60e32012-07-10 14:21:16 -0700125
126#endif // PAYLOAD_POLICY_H