blob: 3dd9dfe8c7b21116cefd4a6e043d5f11750e3dc6 [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/*
3 * Copyright (c) 2013-2017 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
41 InMemoryStorageLru(size_t limit = 10);
42
Yingdi Yu404eafd2016-03-06 14:54:25 -080043 InMemoryStorageLru(boost::asio::io_service& ioService, size_t limit = 10);
44
Junxiao Shi99848502014-10-13 19:22:22 -070045NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED:
Jiewen Tan99135962014-09-20 02:18:53 -070046 /** @brief Removes one Data packet from in-memory storage based on LRU, i.e. evict the least
47 * recently accessed Data packet
48 * @return{ whether the Data was removed }
49 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050050 bool
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020051 evictItem() override;
Jiewen Tan99135962014-09-20 02:18:53 -070052
53 /** @brief Update the entry when the entry is returned by the find() function,
54 * update the last used time according to LRU
55 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050056 void
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020057 afterAccess(InMemoryStorageEntry* entry) override;
Jiewen Tan99135962014-09-20 02:18:53 -070058
59 /** @brief Update the entry after a entry is successfully inserted, add it to the cleanupIndex
60 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050061 void
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020062 afterInsert(InMemoryStorageEntry* entry) override;
Jiewen Tan99135962014-09-20 02:18:53 -070063
64 /** @brief Update the entry or other data structures before a entry is successfully erased,
65 * erase it from the cleanupIndex
66 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050067 void
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020068 beforeErase(InMemoryStorageEntry* entry) override;
Jiewen Tan99135962014-09-20 02:18:53 -070069
70private:
Junxiao Shic542f632017-07-18 14:20:32 +000071 // multi_index_container to implement LRU
Jiewen Tan99135962014-09-20 02:18:53 -070072 class byUsedTime;
73 class byEntity;
74
75 typedef boost::multi_index_container<
76 InMemoryStorageEntry*,
77 boost::multi_index::indexed_by<
78
79 // by Entry itself
80 boost::multi_index::hashed_unique<
81 boost::multi_index::tag<byEntity>,
82 boost::multi_index::identity<InMemoryStorageEntry*>
83 >,
84
85 // by last used time (LRU)
86 boost::multi_index::sequenced<
87 boost::multi_index::tag<byUsedTime>
88 >
89
90 >
91 > CleanupIndex;
92
93 CleanupIndex m_cleanupIndex;
94};
95
Jiewen Tan99135962014-09-20 02:18:53 -070096} // namespace ndn
97
Junxiao Shic542f632017-07-18 14:20:32 +000098#endif // NDN_IMS_IN_MEMORY_STORAGE_LRU_HPP