blob: 6991451156fdad0901a4dc419988f7f81f07578e [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_FIFO_HPP
23#define NDN_IMS_IN_MEMORY_STORAGE_FIFO_HPP
Jiewen Tan99135962014-09-20 02:18:53 -070024
25#include "in-memory-storage.hpp"
26
27#include <boost/multi_index_container.hpp>
Jiewen Tan99135962014-09-20 02:18:53 -070028#include <boost/multi_index/hashed_index.hpp>
Junxiao Shic542f632017-07-18 14:20:32 +000029#include <boost/multi_index/sequenced_index.hpp>
Jiewen Tan99135962014-09-20 02:18:53 -070030
31namespace ndn {
Jiewen Tan99135962014-09-20 02:18:53 -070032
Junxiao Shic542f632017-07-18 14:20:32 +000033/** @brief Provides in-memory storage employing First-In-First-Out (FIFO) replacement policy.
Jiewen Tan99135962014-09-20 02:18:53 -070034 */
35class InMemoryStorageFifo : public InMemoryStorage
36{
37public:
38 explicit
39 InMemoryStorageFifo(size_t limit = 10);
40
Yingdi Yu404eafd2016-03-06 14:54:25 -080041 explicit
42 InMemoryStorageFifo(boost::asio::io_service& ioService, size_t limit = 10);
43
Junxiao Shi99848502014-10-13 19:22:22 -070044NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED:
Jiewen Tan99135962014-09-20 02:18:53 -070045 /** @brief Removes one Data packet from in-memory storage based on FIFO
46 * @return{ whether the Data was removed }
47 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050048 bool
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020049 evictItem() override;
Jiewen Tan99135962014-09-20 02:18:53 -070050
51 /** @brief Update the entry after a entry is successfully inserted, add it to the cleanupIndex
52 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050053 void
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020054 afterInsert(InMemoryStorageEntry* entry) override;
Jiewen Tan99135962014-09-20 02:18:53 -070055
56 /** @brief Update the entry or other data structures before a entry is successfully erased,
57 * erase it from the cleanupIndex
58 */
Davide Pesavento57c07df2016-12-11 18:41:45 -050059 void
Davide Pesaventoaeeb3fc2016-08-14 03:40:02 +020060 beforeErase(InMemoryStorageEntry* entry) override;
Jiewen Tan99135962014-09-20 02:18:53 -070061
62private:
Junxiao Shic542f632017-07-18 14:20:32 +000063 // multi_index_container to implement FIFO
Jiewen Tan99135962014-09-20 02:18:53 -070064 class byArrival;
65 class byEntity;
66
67 typedef boost::multi_index_container<
68 InMemoryStorageEntry*,
69 boost::multi_index::indexed_by<
70
71 // by Entry itself
72 boost::multi_index::hashed_unique<
73 boost::multi_index::tag<byEntity>,
74 boost::multi_index::identity<InMemoryStorageEntry*>
75 >,
76
77 // by arrival (FIFO)
78 boost::multi_index::sequenced<
79 boost::multi_index::tag<byArrival>
80 >
81
82 >
83 > CleanupIndex;
84
85 CleanupIndex m_cleanupIndex;
86};
87
Jiewen Tan99135962014-09-20 02:18:53 -070088} // namespace ndn
89
Junxiao Shic542f632017-07-18 14:20:32 +000090#endif // NDN_IMS_IN_MEMORY_STORAGE_FIFO_HPP