blob: 4d522a4cf39b17fbded16118579215efb564e46d [file] [log] [blame]
Jiewen Tan99135962014-09-20 02:18:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yingdi Yu404eafd2016-03-06 14:54:25 -08003 * Copyright (c) 2013-2016 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
22#ifndef NDN_UTIL_IN_MEMORY_STORAGE_FIFO_HPP
23#define NDN_UTIL_IN_MEMORY_STORAGE_FIFO_HPP
24
25#include "in-memory-storage.hpp"
26
27#include <boost/multi_index_container.hpp>
28#include <boost/multi_index/sequenced_index.hpp>
29#include <boost/multi_index/hashed_index.hpp>
30
31namespace ndn {
32namespace util {
33
34/** @brief Provides in-memory storage employing FIFO replacement policy, which is first in first
35 * out.
36 */
37class InMemoryStorageFifo : public InMemoryStorage
38{
39public:
40 explicit
41 InMemoryStorageFifo(size_t limit = 10);
42
Yingdi Yu404eafd2016-03-06 14:54:25 -080043 explicit
44 InMemoryStorageFifo(boost::asio::io_service& ioService, size_t limit = 10);
45
Jiewen Tan99135962014-09-20 02:18:53 -070046 virtual
47 ~InMemoryStorageFifo();
48
Junxiao Shi99848502014-10-13 19:22:22 -070049NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED:
Jiewen Tan99135962014-09-20 02:18:53 -070050 /** @brief Removes one Data packet from in-memory storage based on FIFO
51 * @return{ whether the Data was removed }
52 */
53 virtual bool
54 evictItem();
55
56 /** @brief Update the entry after a entry is successfully inserted, add it to the cleanupIndex
57 */
58 virtual void
59 afterInsert(InMemoryStorageEntry* entry);
60
61 /** @brief Update the entry or other data structures before a entry is successfully erased,
62 * erase it from the cleanupIndex
63 */
64 virtual void
65 beforeErase(InMemoryStorageEntry* entry);
66
67private:
68 //multi_index_container to implement FIFO
69 class byArrival;
70 class byEntity;
71
72 typedef boost::multi_index_container<
73 InMemoryStorageEntry*,
74 boost::multi_index::indexed_by<
75
76 // by Entry itself
77 boost::multi_index::hashed_unique<
78 boost::multi_index::tag<byEntity>,
79 boost::multi_index::identity<InMemoryStorageEntry*>
80 >,
81
82 // by arrival (FIFO)
83 boost::multi_index::sequenced<
84 boost::multi_index::tag<byArrival>
85 >
86
87 >
88 > CleanupIndex;
89
90 CleanupIndex m_cleanupIndex;
91};
92
93} // namespace util
94} // namespace ndn
95
96#endif // NDN_UTIL_IN_MEMORY_STORAGE_FIFO_HPP