blob: c523293438317d8620445af8e4a3c367708f068e [file] [log] [blame]
Junxiao Shi0fcb41e2014-01-24 10:29:43 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -06003 * Copyright (c) 2014, 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/>.
24 *
25 * \author Ilya Moiseenko <iliamo@ucla.edu>
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070026 */
27
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070028#ifndef NFD_DAEMON_TABLE_CS_HPP
29#define NFD_DAEMON_TABLE_CS_HPP
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080030
31#include "common.hpp"
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070032#include "cs-entry.hpp"
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -080033
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040034#include <boost/multi_index/member.hpp>
35#include <boost/multi_index_container.hpp>
36#include <boost/multi_index/ordered_index.hpp>
37#include <boost/multi_index/sequenced_index.hpp>
38#include <boost/multi_index/identity.hpp>
39
Davide Pesavento52a18f92014-04-10 00:55:01 +020040#include <queue>
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040041
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080042namespace nfd {
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070043
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040044typedef std::list<cs::Entry*> SkipListLayer;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080045typedef std::list<SkipListLayer*> SkipList;
46
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040047class StalenessComparator
48{
49public:
50 bool
51 operator()(const cs::Entry* entry1, const cs::Entry* entry2) const
52 {
53 return entry1->getStaleTime() < entry2->getStaleTime();
54 }
55};
56
57class UnsolicitedComparator
58{
59public:
60 bool
61 operator()(const cs::Entry* entry1, const cs::Entry* entry2) const
62 {
63 return entry1->isUnsolicited();
64 }
65};
66
67// tags
68class unsolicited;
69class byStaleness;
70class byArrival;
71
Davide Pesavento52a18f92014-04-10 00:55:01 +020072typedef boost::multi_index_container<
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040073 cs::Entry*,
Davide Pesavento52a18f92014-04-10 00:55:01 +020074 boost::multi_index::indexed_by<
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040075
76 // by arrival (FIFO)
Davide Pesavento52a18f92014-04-10 00:55:01 +020077 boost::multi_index::sequenced<
78 boost::multi_index::tag<byArrival>
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040079 >,
80
81 // index by staleness time
Davide Pesavento52a18f92014-04-10 00:55:01 +020082 boost::multi_index::ordered_non_unique<
83 boost::multi_index::tag<byStaleness>,
84 boost::multi_index::identity<cs::Entry*>,
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040085 StalenessComparator
86 >,
87
88 // unsolicited Data is in the front
Davide Pesavento52a18f92014-04-10 00:55:01 +020089 boost::multi_index::ordered_non_unique<
90 boost::multi_index::tag<unsolicited>,
91 boost::multi_index::identity<cs::Entry*>,
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -040092 UnsolicitedComparator
93 >
94
95 >
96> CleanupIndex;
97
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -080098/** \brief represents Content Store
Junxiao Shi0fcb41e2014-01-24 10:29:43 -070099 */
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -0800100class Cs : noncopyable
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700101{
102public:
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800103 explicit
Steve DiBenedetto3a4f83d2014-06-02 14:58:54 -0600104 Cs(size_t nMaxPackets = 10);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800105
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700106 ~Cs();
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800107
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700108 /** \brief inserts a Data packet
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800109 * This method does not consider the payload of the Data packet.
110 *
111 * Packets are considered duplicate if the name matches.
112 * The new Data packet with the identical name, but a different payload
113 * is not placed in the Content Store
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700114 * \return{ whether the Data is added }
115 */
116 bool
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800117 insert(const Data& data, bool isUnsolicited = false);
118
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700119 /** \brief finds the best match Data for an Interest
Alexander Afanasyevc9765df2014-01-25 19:24:27 -0800120 * \return{ the best match, if any; otherwise 0 }
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700121 */
Alexander Afanasyevc9765df2014-01-25 19:24:27 -0800122 const Data*
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800123 find(const Interest& interest) const;
124
125 /** \brief deletes CS entry by the exact name
126 */
127 void
128 erase(const Name& exactName);
129
130 /** \brief sets maximum allowed size of Content Store (in packets)
131 */
132 void
133 setLimit(size_t nMaxPackets);
134
135 /** \brief returns maximum allowed size of Content Store (in packets)
136 * \return{ number of packets that can be stored in Content Store }
137 */
138 size_t
139 getLimit() const;
140
141 /** \brief returns current size of Content Store measured in packets
142 * \return{ number of packets located in Content Store }
143 */
144 size_t
145 size() const;
146
147protected:
148 /** \brief removes one Data packet from Content Store based on replacement policy
149 * \return{ whether the Data was removed }
150 */
151 bool
152 evictItem();
153
154private:
155 /** \brief returns True if the Content Store is at its maximum capacity
156 * \return{ True if Content Store is full; otherwise False}
157 */
158 bool
159 isFull() const;
160
161 /** \brief Computes the layer where new Content Store Entry is placed
162 *
163 * Reference: "Skip Lists: A Probabilistic Alternative to Balanced Trees" by W.Pugh
164 * \return{ returns random layer (number) in a skip list}
165 */
Alexander Afanasyevefea8fe2014-03-23 00:00:35 -0700166 size_t
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800167 pickRandomLayer() const;
168
169 /** \brief Inserts a new Content Store Entry in a skip list
170 * \return{ returns a pair containing a pointer to the CS Entry,
171 * and a flag indicating if the entry was newly created (True) or refreshed (False) }
172 */
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400173 std::pair<cs::Entry*, bool>
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800174 insertToSkipList(const Data& data, bool isUnsolicited = false);
175
176 /** \brief Removes a specific CS Entry from all layers of a skip list
177 * \return{ returns True if CS Entry was succesfully removed and False if CS Entry was not found}
178 */
179 bool
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400180 eraseFromSkipList(cs::Entry* entry);
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800181
182 /** \brief Prints contents of the skip list, starting from the top layer
183 */
184 void
185 printSkipList() const;
186
187 /** \brief Implements child selector (leftmost, rightmost, undeclared).
188 * Operates on the first layer of a skip list.
189 *
190 * startingPoint must be less than Interest Name.
191 * startingPoint can be equal to Interest Name only when the item is in the begin() position.
192 *
193 * Iterates toward greater Names, terminates when CS entry falls out of Interest prefix.
194 * When childSelector = leftmost, returns first CS entry that satisfies other selectors.
195 * When childSelector = rightmost, it goes till the end, and returns CS entry that satisfies
196 * other selectors. Returned CS entry is the leftmost child of the rightmost child.
197 * \return{ the best match, if any; otherwise 0 }
198 */
199 const Data*
200 selectChild(const Interest& interest, SkipListLayer::iterator startingPoint) const;
201
202 /** \brief checks if Content Store entry satisfies Interest selectors (MinSuffixComponents,
203 * MaxSuffixComponents, Implicit Digest, MustBeFresh)
204 * \return{ true if satisfies all selectors; false otherwise }
205 */
206 bool
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400207 doesComplyWithSelectors(const Interest& interest,
208 cs::Entry* entry,
209 bool doesInterestContainDigest) const;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800210
211 /** \brief interprets minSuffixComponent and name lengths to understand if Interest contains
212 * implicit digest of the data
213 * \return{ True if Interest name contains digest; False otherwise }
214 */
215 bool
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400216 recognizeInterestWithDigest(const Interest& interest, cs::Entry* entry) const;
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800217
218private:
Ilya Moiseenko76cf77a2014-03-05 14:35:51 -0800219 SkipList m_skipList;
Ilya Moiseenko96b80bb2014-04-05 20:53:27 -0400220 CleanupIndex m_cleanupIndex;
221 size_t m_nMaxPackets; // user defined maximum size of the Content Store in packets
222 size_t m_nPackets; // current number of packets in Content Store
223 std::queue<cs::Entry*> m_freeCsEntries; // memory pool
Junxiao Shi0fcb41e2014-01-24 10:29:43 -0700224};
225
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800226} // namespace nfd
Alexander Afanasyevb927a3a2014-01-24 10:41:47 -0800227
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700228#endif // NFD_DAEMON_TABLE_CS_HPP