blob: cd9faa38c27b36f441474e08b4eb5764094e6708 [file] [log] [blame]
Jiewen Tan99135962014-09-20 02:18:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2014 Regents of the University of California.
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
22#ifndef NDN_UTIL_IN_MEMORY_STORAGE_PERSISTENT_HPP
23#define NDN_UTIL_IN_MEMORY_STORAGE_PERSISTENT_HPP
24
25#include "in-memory-storage.hpp"
26
27namespace ndn {
28namespace util {
29
30/** @brief Provides application cache with persistent storage, of which no replacement policy will
31 * be employed. Entries will only be deleted by explicitly application control.
32 */
33class InMemoryStoragePersistent : public InMemoryStorage
34{
35public:
36 explicit
37 InMemoryStoragePersistent();
38
39 virtual
40 ~InMemoryStoragePersistent();
41
Junxiao Shi99848502014-10-13 19:22:22 -070042NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PROTECTED:
Jiewen Tan99135962014-09-20 02:18:53 -070043 /** @brief Do nothing.
44 *
45 * This storage is persistent, and does not support eviction.
46 *
47 * @return false
48 */
49 virtual bool
50 evictItem();
51};
52
53} // namespace util
54} // namespace ndn
55
56#endif // NDN_UTIL_IN_MEMORY_STORAGE_PERSISTENT_HPP