blob: 155ec4a771f471e59b9bef6826d34a99aa6678dd [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shia110f262014-10-12 12:35:20 -07003 * 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
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
11 * 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 Shia110f262014-10-12 12:35:20 -070024 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -080025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FW_FORWARDER_HPP
27#define NFD_DAEMON_FW_FORWARDER_HPP
Alexander Afanasyev33b72772014-01-26 23:22:58 -080028
29#include "common.hpp"
Junxiao Shid3c792f2014-01-30 00:46:13 -070030#include "core/scheduler.hpp"
Junxiao Shi33152f12014-07-16 19:54:32 -070031#include "forwarder-counters.hpp"
Junxiao Shia4f2be82014-03-02 22:56:41 -070032#include "face-table.hpp"
Junxiao Shid3c792f2014-01-30 00:46:13 -070033#include "table/fib.hpp"
34#include "table/pit.hpp"
35#include "table/cs.hpp"
Junxiao Shidbe71732014-02-21 22:23:28 -070036#include "table/measurements.hpp"
Junxiao Shibb5105f2014-03-03 12:06:45 -070037#include "table/strategy-choice.hpp"
Junxiao Shia110f262014-10-12 12:35:20 -070038#include "table/dead-nonce-list.hpp"
Junxiao Shi0355e9f2015-09-02 07:24:53 -070039#include "table/network-region-table.hpp"
Alexander Afanasyev33b72772014-01-26 23:22:58 -080040
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080041namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080042
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070043namespace fw {
44class Strategy;
45} // namespace fw
46
47/** \brief main class of NFD
Junxiao Shic041ca32014-02-25 20:01:15 -070048 *
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070049 * Forwarder owns all faces and tables, and implements forwarding pipelines.
Alexander Afanasyev33b72772014-01-26 23:22:58 -080050 */
51class Forwarder
52{
53public:
Junxiao Shic041ca32014-02-25 20:01:15 -070054 Forwarder();
Alexander Afanasyev33b72772014-01-26 23:22:58 -080055
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060056 VIRTUAL_WITH_TESTS
57 ~Forwarder();
58
Junxiao Shib289cc12014-03-15 12:19:05 -070059 const ForwarderCounters&
60 getCounters() const;
61
Junxiao Shia4f2be82014-03-02 22:56:41 -070062public: // faces
63 FaceTable&
64 getFaceTable();
65
66 /** \brief get existing Face
67 *
68 * shortcut to .getFaceTable().get(face)
69 */
70 shared_ptr<Face>
71 getFace(FaceId id) const;
72
73 /** \brief add new Face
74 *
75 * shortcut to .getFaceTable().add(face)
76 */
Junxiao Shi8c8d2182014-01-30 22:33:00 -070077 void
78 addFace(shared_ptr<Face> face);
Alexander Afanasyev33b72772014-01-26 23:22:58 -080079
Junxiao Shia4f2be82014-03-02 22:56:41 -070080public: // forwarding entrypoints and tables
Junxiao Shi0355e9f2015-09-02 07:24:53 -070081 /** \brief start incoming Interest processing
82 * \param interest the incoming Interest, must be created with make_shared
83 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -080084 void
Junxiao Shi0355e9f2015-09-02 07:24:53 -070085 startProcessInterest(Face& face, const Interest& interest);
Alexander Afanasyev33b72772014-01-26 23:22:58 -080086
Junxiao Shi0355e9f2015-09-02 07:24:53 -070087 /** \brief start incoming Data processing
88 * \param data the incoming Data, must be created with make_shared
89 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -080090 void
Junxiao Shi0355e9f2015-09-02 07:24:53 -070091 startProcessData(Face& face, const Data& data);
Junxiao Shic041ca32014-02-25 20:01:15 -070092
Junxiao Shiea48d8b2014-03-16 13:53:47 -070093 NameTree&
94 getNameTree();
95
Junxiao Shi8c8d2182014-01-30 22:33:00 -070096 Fib&
97 getFib();
Junxiao Shic041ca32014-02-25 20:01:15 -070098
Junxiao Shi8c8d2182014-01-30 22:33:00 -070099 Pit&
100 getPit();
Junxiao Shic041ca32014-02-25 20:01:15 -0700101
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700102 Cs&
103 getCs();
Junxiao Shic041ca32014-02-25 20:01:15 -0700104
Junxiao Shidbe71732014-02-21 22:23:28 -0700105 Measurements&
106 getMeasurements();
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700107
Junxiao Shibb5105f2014-03-03 12:06:45 -0700108 StrategyChoice&
109 getStrategyChoice();
110
Junxiao Shia110f262014-10-12 12:35:20 -0700111 DeadNonceList&
112 getDeadNonceList();
113
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700114 NetworkRegionTable&
115 getNetworkRegionTable();
116
Junxiao Shi88884492014-02-15 15:57:43 -0700117PUBLIC_WITH_TESTS_ELSE_PRIVATE: // pipelines
Junxiao Shid3c792f2014-01-30 00:46:13 -0700118 /** \brief incoming Interest pipeline
119 */
Junxiao Shi88884492014-02-15 15:57:43 -0700120 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700121 onIncomingInterest(Face& inFace, const Interest& interest);
122
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700123 /** \brief Interest loop pipeline
124 */
125 VIRTUAL_WITH_TESTS void
126 onInterestLoop(Face& inFace, const Interest& interest,
127 shared_ptr<pit::Entry> pitEntry);
128
mzhang4eab72492015-02-25 11:16:09 -0600129 /** \brief Content Store miss pipeline
130 */
131 void
132 onContentStoreMiss(const Face& inFace, shared_ptr<pit::Entry> pitEntry, const Interest& interest);
133
134 /** \brief Content Store hit pipeline
135 */
136 void
137 onContentStoreHit(const Face& inFace, shared_ptr<pit::Entry> pitEntry,
138 const Interest& interest, const Data& data);
139
Junxiao Shid3c792f2014-01-30 00:46:13 -0700140 /** \brief outgoing Interest pipeline
141 */
Junxiao Shi88884492014-02-15 15:57:43 -0700142 VIRTUAL_WITH_TESTS void
Junxiao Shid938a6b2014-05-11 23:40:29 -0700143 onOutgoingInterest(shared_ptr<pit::Entry> pitEntry, Face& outFace,
144 bool wantNewNonce = false);
Junxiao Shic041ca32014-02-25 20:01:15 -0700145
Junxiao Shi09498f02014-02-26 19:41:08 -0700146 /** \brief Interest reject pipeline
Junxiao Shid3c792f2014-01-30 00:46:13 -0700147 */
Junxiao Shi88884492014-02-15 15:57:43 -0700148 VIRTUAL_WITH_TESTS void
Junxiao Shi09498f02014-02-26 19:41:08 -0700149 onInterestReject(shared_ptr<pit::Entry> pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700150
Junxiao Shid3c792f2014-01-30 00:46:13 -0700151 /** \brief Interest unsatisfied pipeline
152 */
Junxiao Shi88884492014-02-15 15:57:43 -0700153 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700154 onInterestUnsatisfied(shared_ptr<pit::Entry> pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700155
Junxiao Shia110f262014-10-12 12:35:20 -0700156 /** \brief Interest finalize pipeline
157 * \param isSatisfied whether the Interest has been satisfied
158 * \param dataFreshnessPeriod FreshnessPeriod of satisfying Data
159 */
160 VIRTUAL_WITH_TESTS void
161 onInterestFinalize(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
162 const time::milliseconds& dataFreshnessPeriod = time::milliseconds(-1));
163
Junxiao Shid3c792f2014-01-30 00:46:13 -0700164 /** \brief incoming Data pipeline
165 */
Junxiao Shi88884492014-02-15 15:57:43 -0700166 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700167 onIncomingData(Face& inFace, const Data& data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700168
Junxiao Shid3c792f2014-01-30 00:46:13 -0700169 /** \brief Data unsolicited pipeline
170 */
Junxiao Shi88884492014-02-15 15:57:43 -0700171 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700172 onDataUnsolicited(Face& inFace, const Data& data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700173
Junxiao Shid3c792f2014-01-30 00:46:13 -0700174 /** \brief outgoing Data pipeline
175 */
Junxiao Shi88884492014-02-15 15:57:43 -0700176 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700177 onOutgoingData(const Data& data, Face& outFace);
178
Junxiao Shi88884492014-02-15 15:57:43 -0700179PROTECTED_WITH_TESTS_ELSE_PRIVATE:
180 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700181 setUnsatisfyTimer(shared_ptr<pit::Entry> pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700182
Junxiao Shi88884492014-02-15 15:57:43 -0700183 VIRTUAL_WITH_TESTS void
Junxiao Shia110f262014-10-12 12:35:20 -0700184 setStragglerTimer(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
185 const time::milliseconds& dataFreshnessPeriod = time::milliseconds(-1));
Junxiao Shic041ca32014-02-25 20:01:15 -0700186
Junxiao Shi88884492014-02-15 15:57:43 -0700187 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700188 cancelUnsatisfyAndStragglerTimer(shared_ptr<pit::Entry> pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700189
Junxiao Shia110f262014-10-12 12:35:20 -0700190 /** \brief insert Nonce to Dead Nonce List if necessary
191 * \param upstream if null, insert Nonces from all OutRecords;
192 * if not null, insert Nonce only on the OutRecord of this face
193 */
194 VIRTUAL_WITH_TESTS void
195 insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied,
196 const time::milliseconds& dataFreshnessPeriod,
197 Face* upstream);
198
Junxiao Shif3c07812014-03-11 21:48:49 -0700199 /// call trigger (method) on the effective strategy of pitEntry
200#ifdef WITH_TESTS
201 virtual void
202 dispatchToStrategy(shared_ptr<pit::Entry> pitEntry, function<void(fw::Strategy*)> trigger);
203#else
204 template<class Function>
205 void
206 dispatchToStrategy(shared_ptr<pit::Entry> pitEntry, Function trigger);
207#endif
Junxiao Shid3c792f2014-01-30 00:46:13 -0700208
209private:
Junxiao Shib289cc12014-03-15 12:19:05 -0700210 ForwarderCounters m_counters;
211
Junxiao Shia4f2be82014-03-02 22:56:41 -0700212 FaceTable m_faceTable;
HangZhangad4afd12014-03-01 11:03:08 +0800213
Junxiao Shibb5105f2014-03-03 12:06:45 -0700214 // tables
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700215 NameTree m_nameTree;
216 Fib m_fib;
217 Pit m_pit;
218 Cs m_cs;
219 Measurements m_measurements;
220 StrategyChoice m_strategyChoice;
221 DeadNonceList m_deadNonceList;
222 NetworkRegionTable m_networkRegionTable;
Junxiao Shibb5105f2014-03-03 12:06:45 -0700223
Junxiao Shif3c07812014-03-11 21:48:49 -0700224 static const Name LOCALHOST_NAME;
Junxiao Shic041ca32014-02-25 20:01:15 -0700225
Junxiao Shid3c792f2014-01-30 00:46:13 -0700226 // allow Strategy (base class) to enter pipelines
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700227 friend class fw::Strategy;
Alexander Afanasyev33b72772014-01-26 23:22:58 -0800228};
229
Junxiao Shib289cc12014-03-15 12:19:05 -0700230inline const ForwarderCounters&
231Forwarder::getCounters() const
232{
233 return m_counters;
234}
235
Junxiao Shia4f2be82014-03-02 22:56:41 -0700236inline FaceTable&
237Forwarder::getFaceTable()
238{
239 return m_faceTable;
240}
241
242inline shared_ptr<Face>
243Forwarder::getFace(FaceId id) const
244{
245 return m_faceTable.get(id);
246}
247
248inline void
249Forwarder::addFace(shared_ptr<Face> face)
250{
251 m_faceTable.add(face);
252}
253
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700254inline NameTree&
255Forwarder::getNameTree()
256{
257 return m_nameTree;
258}
259
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700260inline Fib&
261Forwarder::getFib()
262{
263 return m_fib;
264}
265
266inline Pit&
267Forwarder::getPit()
268{
269 return m_pit;
270}
271
272inline Cs&
273Forwarder::getCs()
274{
275 return m_cs;
276}
277
Junxiao Shidbe71732014-02-21 22:23:28 -0700278inline Measurements&
279Forwarder::getMeasurements()
280{
281 return m_measurements;
282}
283
Junxiao Shibb5105f2014-03-03 12:06:45 -0700284inline StrategyChoice&
285Forwarder::getStrategyChoice()
286{
287 return m_strategyChoice;
288}
Junxiao Shia4f2be82014-03-02 22:56:41 -0700289
Junxiao Shia110f262014-10-12 12:35:20 -0700290inline DeadNonceList&
291Forwarder::getDeadNonceList()
292{
293 return m_deadNonceList;
294}
295
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700296inline NetworkRegionTable&
297Forwarder::getNetworkRegionTable()
298{
299 return m_networkRegionTable;
300}
301
Junxiao Shif3c07812014-03-11 21:48:49 -0700302#ifdef WITH_TESTS
303inline void
304Forwarder::dispatchToStrategy(shared_ptr<pit::Entry> pitEntry, function<void(fw::Strategy*)> trigger)
305#else
306template<class Function>
307inline void
308Forwarder::dispatchToStrategy(shared_ptr<pit::Entry> pitEntry, Function trigger)
309#endif
310{
311 fw::Strategy& strategy = m_strategyChoice.findEffectiveStrategy(*pitEntry);
312 trigger(&strategy);
313}
314
Junxiao Shid3c792f2014-01-30 00:46:13 -0700315} // namespace nfd
Alexander Afanasyev33b72772014-01-26 23:22:58 -0800316
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700317#endif // NFD_DAEMON_FW_FORWARDER_HPP