blob: bde0de4fc0170135bd8bf9e4d5e07cd52d36216f [file] [log] [blame]
Jiewen Tan99135962014-09-20 02:18:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2014 Regents of the University of California.
4 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
22#ifndef NDN_UTIL_IN_MEMORY_STORAGE_LRU_HPP
23#define NDN_UTIL_IN_MEMORY_STORAGE_LRU_HPP
24
25#include "in-memory-storage.hpp"
26
27#include <boost/multi_index/member.hpp>
28#include <boost/multi_index_container.hpp>
29#include <boost/multi_index/sequenced_index.hpp>
30#include <boost/multi_index/hashed_index.hpp>
31#include <boost/multi_index/identity.hpp>
32
33namespace ndn {
34namespace util {
35
36/** @brief Provides in-memory storage employing LRU replacement policy, of which the least
37 * recently used entry will be evict first.
38 */
39class InMemoryStorageLru : public InMemoryStorage
40{
41public:
42 explicit
43 InMemoryStorageLru(size_t limit = 10);
44
45 virtual
46 ~InMemoryStorageLru();
47
Junxiao Shi99848502014-10-13 19:22:22 -070048NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED:
Jiewen Tan99135962014-09-20 02:18:53 -070049 /** @brief Removes one Data packet from in-memory storage based on LRU, i.e. evict the least
50 * recently accessed Data packet
51 * @return{ whether the Data was removed }
52 */
53 virtual bool
54 evictItem();
55
56 /** @brief Update the entry when the entry is returned by the find() function,
57 * update the last used time according to LRU
58 */
59 virtual void
60 afterAccess(InMemoryStorageEntry* entry);
61
62 /** @brief Update the entry after a entry is successfully inserted, add it to the cleanupIndex
63 */
64 virtual void
65 afterInsert(InMemoryStorageEntry* entry);
66
67 /** @brief Update the entry or other data structures before a entry is successfully erased,
68 * erase it from the cleanupIndex
69 */
70 virtual void
71 beforeErase(InMemoryStorageEntry* entry);
72
73private:
74 //multi_index_container to implement LRU
75 class byUsedTime;
76 class byEntity;
77
78 typedef boost::multi_index_container<
79 InMemoryStorageEntry*,
80 boost::multi_index::indexed_by<
81
82 // by Entry itself
83 boost::multi_index::hashed_unique<
84 boost::multi_index::tag<byEntity>,
85 boost::multi_index::identity<InMemoryStorageEntry*>
86 >,
87
88 // by last used time (LRU)
89 boost::multi_index::sequenced<
90 boost::multi_index::tag<byUsedTime>
91 >
92
93 >
94 > CleanupIndex;
95
96 CleanupIndex m_cleanupIndex;
97};
98
99} // namespace util
100} // namespace ndn
101
102#endif // NDN_UTIL_IN_MEMORY_STORAGE_LRU_HPP