in-memory-storage-lru.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
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 
33 namespace ndn {
34 namespace util {
35 
40 {
41 public:
42  explicit
43  InMemoryStorageLru(size_t limit = 10);
44 
45  InMemoryStorageLru(boost::asio::io_service& ioService, size_t limit = 10);
46 
52  bool
53  evictItem() override;
54 
58  void
59  afterAccess(InMemoryStorageEntry* entry) override;
60 
63  void
64  afterInsert(InMemoryStorageEntry* entry) override;
65 
69  void
70  beforeErase(InMemoryStorageEntry* entry) override;
71 
72 private:
73  //multi_index_container to implement LRU
74  class byUsedTime;
75  class byEntity;
76 
77  typedef boost::multi_index_container<
79  boost::multi_index::indexed_by<
80 
81  // by Entry itself
82  boost::multi_index::hashed_unique<
83  boost::multi_index::tag<byEntity>,
84  boost::multi_index::identity<InMemoryStorageEntry*>
85  >,
86 
87  // by last used time (LRU)
88  boost::multi_index::sequenced<
89  boost::multi_index::tag<byUsedTime>
90  >
91 
92  >
93  > CleanupIndex;
94 
95  CleanupIndex m_cleanupIndex;
96 };
97 
98 } // namespace util
99 } // namespace ndn
100 
101 #endif // NDN_UTIL_IN_MEMORY_STORAGE_LRU_HPP
Copyright (c) 2013-2016 Regents of the University of California.
Definition: common.hpp:74
void afterAccess(InMemoryStorageEntry *entry) override
Update the entry when the entry is returned by the find() function, update the last used time accordi...
void afterInsert(InMemoryStorageEntry *entry) override
Update the entry after a entry is successfully inserted, add it to the cleanupIndex.
Represents in-memory storage.
void beforeErase(InMemoryStorageEntry *entry) override
Update the entry or other data structures before a entry is successfully erased, erase it from the cl...
Represents an in-memory storage entry.
#define NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED
Definition: common.hpp:42
bool evictItem() override
Removes one Data packet from in-memory storage based on LRU, i.e.
Provides in-memory storage employing LRU replacement policy, of which the least recently used entry w...