Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | c542f63 | 2017-07-18 14:20:32 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 4 | * |
| 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 Shi | c542f63 | 2017-07-18 14:20:32 +0000 | [diff] [blame] | 22 | #ifndef NDN_IMS_IN_MEMORY_STORAGE_FIFO_HPP |
| 23 | #define NDN_IMS_IN_MEMORY_STORAGE_FIFO_HPP |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 24 | |
| 25 | #include "in-memory-storage.hpp" |
| 26 | |
| 27 | #include <boost/multi_index_container.hpp> |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 28 | #include <boost/multi_index/hashed_index.hpp> |
Junxiao Shi | c542f63 | 2017-07-18 14:20:32 +0000 | [diff] [blame] | 29 | #include <boost/multi_index/sequenced_index.hpp> |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 30 | |
| 31 | namespace ndn { |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 32 | |
Junxiao Shi | c542f63 | 2017-07-18 14:20:32 +0000 | [diff] [blame] | 33 | /** @brief Provides in-memory storage employing First-In-First-Out (FIFO) replacement policy. |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 34 | */ |
| 35 | class InMemoryStorageFifo : public InMemoryStorage |
| 36 | { |
| 37 | public: |
| 38 | explicit |
| 39 | InMemoryStorageFifo(size_t limit = 10); |
| 40 | |
Yingdi Yu | 404eafd | 2016-03-06 14:54:25 -0800 | [diff] [blame] | 41 | explicit |
| 42 | InMemoryStorageFifo(boost::asio::io_service& ioService, size_t limit = 10); |
| 43 | |
Junxiao Shi | 9984850 | 2014-10-13 19:22:22 -0700 | [diff] [blame] | 44 | NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED: |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 45 | /** @brief Removes one Data packet from in-memory storage based on FIFO |
| 46 | * @return{ whether the Data was removed } |
| 47 | */ |
Davide Pesavento | 57c07df | 2016-12-11 18:41:45 -0500 | [diff] [blame] | 48 | bool |
Davide Pesavento | aeeb3fc | 2016-08-14 03:40:02 +0200 | [diff] [blame] | 49 | evictItem() override; |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 50 | |
| 51 | /** @brief Update the entry after a entry is successfully inserted, add it to the cleanupIndex |
| 52 | */ |
Davide Pesavento | 57c07df | 2016-12-11 18:41:45 -0500 | [diff] [blame] | 53 | void |
Davide Pesavento | aeeb3fc | 2016-08-14 03:40:02 +0200 | [diff] [blame] | 54 | afterInsert(InMemoryStorageEntry* entry) override; |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 55 | |
| 56 | /** @brief Update the entry or other data structures before a entry is successfully erased, |
| 57 | * erase it from the cleanupIndex |
| 58 | */ |
Davide Pesavento | 57c07df | 2016-12-11 18:41:45 -0500 | [diff] [blame] | 59 | void |
Davide Pesavento | aeeb3fc | 2016-08-14 03:40:02 +0200 | [diff] [blame] | 60 | beforeErase(InMemoryStorageEntry* entry) override; |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 61 | |
| 62 | private: |
Junxiao Shi | c542f63 | 2017-07-18 14:20:32 +0000 | [diff] [blame] | 63 | // multi_index_container to implement FIFO |
Jiewen Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 64 | 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 Tan | 9913596 | 2014-09-20 02:18:53 -0700 | [diff] [blame] | 88 | } // namespace ndn |
| 89 | |
Junxiao Shi | c542f63 | 2017-07-18 14:20:32 +0000 | [diff] [blame] | 90 | #endif // NDN_IMS_IN_MEMORY_STORAGE_FIFO_HPP |