blob: 77a4474c8ad79009dfb6cec3ff6b0147dac392d7 [file] [log] [blame]
Junxiao Shi0fcb41e2014-01-24 10:29:43 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi5640ec82015-01-07 21:51:19 -07003 * Copyright (c) 2014-2015, Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080010 *
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070011 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Junxiao Shia9388182014-12-13 23:16:09 -070024 */
25
26/** \file
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070027 *
Junxiao Shia9388182014-12-13 23:16:09 -070028 * \brief implements the ContentStore
29 *
30 * This ContentStore implementation consists of two data structures,
31 * a Table, and a set of cleanup queues.
32 *
33 * The Table is a container (std::set) sorted by full Names of stored Data packets.
34 * Data packets are wrapped in Entry objects.
35 * Each Entry contain the Data packet itself,
36 * and a few addition attributes such as the staleness of the Data packet.
37 *
38 * The cleanup queues are three doubly linked lists which stores Table iterators.
39 * The three queues keep track of unsolicited, stale, and fresh Data packet, respectively.
40 * Table iterator is placed into, removed from, and moved between suitable queues
41 * whenever an Entry is added, removed, or has other attribute changes.
42 * The Table iterator of an Entry should be in exactly one queue at any moment.
43 * Within each queue, the iterators are kept in first-in-first-out order.
44 * Eviction procedure exhausts the first queue before moving onto the next queue,
45 * in the order of unsolicited, stale, and fresh queue.
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070046 */
47
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070048#ifndef NFD_DAEMON_TABLE_CS_HPP
49#define NFD_DAEMON_TABLE_CS_HPP
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080050
Junxiao Shifc206962015-01-16 11:12:22 -070051#include "cs-entry-impl.hpp"
52#include <boost/iterator/transform_iterator.hpp>
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040053
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080054namespace nfd {
Junxiao Shia9388182014-12-13 23:16:09 -070055namespace cs {
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070056
Junxiao Shia9388182014-12-13 23:16:09 -070057/** \brief represents the ContentStore
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070058 */
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080059class Cs : noncopyable
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070060{
61public:
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080062 explicit
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -060063 Cs(size_t nMaxPackets = 10);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080064
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070065 /** \brief inserts a Data packet
Junxiao Shia9388182014-12-13 23:16:09 -070066 * \return true
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070067 */
68 bool
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080069 insert(const Data& data, bool isUnsolicited = false);
70
Junxiao Shia9388182014-12-13 23:16:09 -070071 /** \brief finds the best matching Data packet
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070072 */
Alexander Afanasyevc9765df2014-01-25 19:24:27 -080073 const Data*
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080074 find(const Interest& interest) const;
75
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080076 void
Junxiao Shia9388182014-12-13 23:16:09 -070077 erase(const Name& exactName)
78 {
79 BOOST_ASSERT_MSG(false, "not implemented");
80 }
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080081
Junxiao Shia9388182014-12-13 23:16:09 -070082 /** \brief changes capacity (in number of packets)
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080083 */
84 void
85 setLimit(size_t nMaxPackets);
86
Junxiao Shia9388182014-12-13 23:16:09 -070087 /** \return capacity (in number of packets)
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080088 */
89 size_t
Junxiao Shia9388182014-12-13 23:16:09 -070090 getLimit() const
91 {
92 return m_limit;
93 }
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080094
Junxiao Shia9388182014-12-13 23:16:09 -070095 /** \return number of stored packets
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080096 */
97 size_t
Junxiao Shifc206962015-01-16 11:12:22 -070098 size() const
99 {
100 return m_table.size();
101 }
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800102
Junxiao Shia9388182014-12-13 23:16:09 -0700103PUBLIC_WITH_TESTS_ELSE_PRIVATE:
104 void
105 dump();
106
Junxiao Shifc206962015-01-16 11:12:22 -0700107public: // enumeration
108 struct EntryFromEntryImpl
109 {
110 typedef const Entry& result_type;
111
112 const Entry&
113 operator()(const EntryImpl& entry) const
114 {
115 return entry;
116 }
Junxiao Shia9388182014-12-13 23:16:09 -0700117 };
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800118
Junxiao Shifc206962015-01-16 11:12:22 -0700119 /** \brief ContentStore iterator (public API)
120 */
121 typedef boost::transform_iterator<EntryFromEntryImpl, TableIt, const Entry&> const_iterator;
122
123 const_iterator
124 begin() const
125 {
126 return boost::make_transform_iterator(m_table.begin(), EntryFromEntryImpl());
127 }
128
129 const_iterator
130 end() const
131 {
132 return boost::make_transform_iterator(m_table.end(), EntryFromEntryImpl());
133 }
134
135private: // find
Junxiao Shi5640ec82015-01-07 21:51:19 -0700136 /** \brief find leftmost match in [first,last)
137 * \return the leftmost match, or last if not found
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800138 */
Junxiao Shi5640ec82015-01-07 21:51:19 -0700139 TableIt
140 findLeftmost(const Interest& interest, TableIt left, TableIt right) const;
141
142 /** \brief find rightmost match in [first,last)
143 * \return the rightmost match, or last if not found
144 */
145 TableIt
146 findRightmost(const Interest& interest, TableIt first, TableIt last) const;
147
148 /** \brief find rightmost match among entries with exact Names in [first,last)
149 * \return the rightmost match, or last if not found
150 */
151 TableIt
152 findRightmostAmongExact(const Interest& interest, TableIt first, TableIt last) const;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800153
Junxiao Shifc206962015-01-16 11:12:22 -0700154private: // cleanup
Junxiao Shia9388182014-12-13 23:16:09 -0700155 /** \brief attaches an entry to a suitable cleanup queue
156 * \note if the entry is already attached to a queue, it's automatically detached
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800157 */
158 void
Junxiao Shia9388182014-12-13 23:16:09 -0700159 attachQueue(TableIt it);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800160
Junxiao Shia9388182014-12-13 23:16:09 -0700161 /** \brief detaches an entry from its current cleanup queue
162 * \warning if the entry is unattached, this will cause undefined behavior
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800163 */
Junxiao Shia9388182014-12-13 23:16:09 -0700164 void
165 detachQueue(TableIt it);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800166
Junxiao Shia9388182014-12-13 23:16:09 -0700167 /** \brief moves an entry from FIFO queue to STALE queue
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800168 */
Junxiao Shia9388182014-12-13 23:16:09 -0700169 void
170 moveToStaleQueue(TableIt it);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800171
Junxiao Shia9388182014-12-13 23:16:09 -0700172 /** \brief picks an entry for eviction
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800173 */
Junxiao Shia9388182014-12-13 23:16:09 -0700174 std::tuple<TableIt, std::string/*reason*/>
175 evictPick();
176
177 /** \brief evicts zero or more entries so that number of stored entries
178 * is not greater than capacity
179 */
180 void
181 evict();
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800182
183private:
Junxiao Shia9388182014-12-13 23:16:09 -0700184 size_t m_limit;
185 Table m_table;
Junxiao Shifc206962015-01-16 11:12:22 -0700186 Queue m_queues[QUEUE_MAX];
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700187};
188
Junxiao Shia9388182014-12-13 23:16:09 -0700189} // namespace cs
190
191using cs::Cs;
192
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800193} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -0800194
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700195#endif // NFD_DAEMON_TABLE_CS_HPP