blob: 1f1564850986bea2522515f7a96c64092298bb59 [file] [log] [blame]
Jiewen Tan99135962014-09-20 02:18:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shic542f632017-07-18 14:20:32 +00002/*
Ashlesh Gawande1bbce6d2018-11-13 15:31:04 -06003 * Copyright (c) 2013-2018 Regents of the University of California.
Jiewen Tan99135962014-09-20 02:18:53 -07004 *
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
Junxiao Shic542f632017-07-18 14:20:32 +000022#ifndef NDN_IMS_IN_MEMORY_STORAGE_LRU_HPP
23#define NDN_IMS_IN_MEMORY_STORAGE_LRU_HPP
Jiewen Tan99135962014-09-20 02:18:53 -070024
25#include "in-memory-storage.hpp"
26
Jiewen Tan99135962014-09-20 02:18:53 -070027#include <boost/multi_index_container.hpp>
Jiewen Tan99135962014-09-20 02:18:53 -070028#include <boost/multi_index/hashed_index.hpp>
29#include <boost/multi_index/identity.hpp>
Junxiao Shic542f632017-07-18 14:20:32 +000030#include <boost/multi_index/member.hpp>
31#include <boost/multi_index/sequenced_index.hpp>
Jiewen Tan99135962014-09-20 02:18:53 -070032
33namespace ndn {
Jiewen Tan99135962014-09-20 02:18:53 -070034
Junxiao Shic542f632017-07-18 14:20:32 +000035/** @brief Provides in-memory storage employing Least Recently Used (LRU) replacement policy.
Jiewen Tan99135962014-09-20 02:18:53 -070036 */
37class InMemoryStorageLru : public InMemoryStorage
38{
39public:
40 explicit
Ashlesh Gawande1bbce6d2018-11-13 15:31:04 -060041 InMemoryStorageLru(size_t limit = 16);
Jiewen Tan99135962014-09-20 02:18:53 -070042
Ashlesh Gawande1bbce6d2018-11-13 15:31:04 -060043 explicit
44 InMemoryStorageLru(boost::asio::io_service& ioService, size_t limit = 16);
Yingdi Yu404eafd2016-03-06 14:54:25 -080045
Junxiao Shi99848502014-10-13 19:22:22 -070046NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED:
Jiewen Tan99135962014-09-20 02:18:53 -070047 /** @brief Removes one Data packet from in-memory storage based on LRU, i.e. evict the least
48 * recently accessed Data packet
49 * @return{ whether the Data was removed }
50 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050051 bool
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020052 evictItem() override;
Jiewen Tan99135962014-09-20 02:18:53 -070053
54 /** @brief Update the entry when the entry is returned by the find() function,
55 * update the last used time according to LRU
56 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050057 void
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020058 afterAccess(InMemoryStorageEntry* entry) override;
Jiewen Tan99135962014-09-20 02:18:53 -070059
60 /** @brief Update the entry after a entry is successfully inserted, add it to the cleanupIndex
61 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050062 void
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020063 afterInsert(InMemoryStorageEntry* entry) override;
Jiewen Tan99135962014-09-20 02:18:53 -070064
65 /** @brief Update the entry or other data structures before a entry is successfully erased,
66 * erase it from the cleanupIndex
67 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050068 void
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020069 beforeErase(InMemoryStorageEntry* entry) override;
Jiewen Tan99135962014-09-20 02:18:53 -070070
71private:
Junxiao Shic542f632017-07-18 14:20:32 +000072 // multi_index_container to implement LRU
Jiewen Tan99135962014-09-20 02:18:53 -070073 class byUsedTime;
74 class byEntity;
75
76 typedef boost::multi_index_container<
77 InMemoryStorageEntry*,
78 boost::multi_index::indexed_by<
79
80 // by Entry itself
81 boost::multi_index::hashed_unique<
82 boost::multi_index::tag<byEntity>,
83 boost::multi_index::identity<InMemoryStorageEntry*>
84 >,
85
86 // by last used time (LRU)
87 boost::multi_index::sequenced<
88 boost::multi_index::tag<byUsedTime>
89 >
90
91 >
92 > CleanupIndex;
93
94 CleanupIndex m_cleanupIndex;
95};
96
Jiewen Tan99135962014-09-20 02:18:53 -070097} // namespace ndn
98
Junxiao Shic542f632017-07-18 14:20:32 +000099#endif // NDN_IMS_IN_MEMORY_STORAGE_LRU_HPP