blob: b0cc156d3d9ae88c7ad0f9e1169f1db6a4bbb2d0 [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Eric Newberryf4056d02017-05-26 17:31:53 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shi330136a2016-03-10 04:53:08 -07004 * 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
Junxiao Shi9f5b01d2016-08-05 03:54:28 +000029#include "core/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 Shifbe8efe2016-08-22 16:02:30 +000033#include "unsolicited-data-policy.hpp"
Junxiao Shid3c792f2014-01-30 00:46:13 -070034#include "table/fib.hpp"
35#include "table/pit.hpp"
36#include "table/cs.hpp"
Junxiao Shidbe71732014-02-21 22:23:28 -070037#include "table/measurements.hpp"
Junxiao Shibb5105f2014-03-03 12:06:45 -070038#include "table/strategy-choice.hpp"
Junxiao Shia110f262014-10-12 12:35:20 -070039#include "table/dead-nonce-list.hpp"
Junxiao Shi0355e9f2015-09-02 07:24:53 -070040#include "table/network-region-table.hpp"
Alexander Afanasyev33b72772014-01-26 23:22:58 -080041
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080042namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080043
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070044namespace fw {
45class Strategy;
46} // namespace fw
47
48/** \brief main class of NFD
Junxiao Shic041ca32014-02-25 20:01:15 -070049 *
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070050 * Forwarder owns all faces and tables, and implements forwarding pipelines.
Alexander Afanasyev33b72772014-01-26 23:22:58 -080051 */
52class Forwarder
53{
54public:
Junxiao Shic041ca32014-02-25 20:01:15 -070055 Forwarder();
Alexander Afanasyev33b72772014-01-26 23:22:58 -080056
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060057 VIRTUAL_WITH_TESTS
58 ~Forwarder();
59
Junxiao Shib289cc12014-03-15 12:19:05 -070060 const ForwarderCounters&
Junxiao Shib9420cf2016-08-13 04:38:52 +000061 getCounters() const
62 {
63 return m_counters;
64 }
Junxiao Shib289cc12014-03-15 12:19:05 -070065
Junxiao Shifbe8efe2016-08-22 16:02:30 +000066public: // faces and policies
Junxiao Shia4f2be82014-03-02 22:56:41 -070067 FaceTable&
Junxiao Shib9420cf2016-08-13 04:38:52 +000068 getFaceTable()
69 {
70 return m_faceTable;
71 }
Junxiao Shia4f2be82014-03-02 22:56:41 -070072
73 /** \brief get existing Face
74 *
75 * shortcut to .getFaceTable().get(face)
76 */
Junxiao Shi5b43f9a2016-07-19 13:15:56 +000077 Face*
Junxiao Shib9420cf2016-08-13 04:38:52 +000078 getFace(FaceId id) const
79 {
80 return m_faceTable.get(id);
81 }
Junxiao Shia4f2be82014-03-02 22:56:41 -070082
83 /** \brief add new Face
84 *
85 * shortcut to .getFaceTable().add(face)
86 */
Junxiao Shi8c8d2182014-01-30 22:33:00 -070087 void
Junxiao Shib9420cf2016-08-13 04:38:52 +000088 addFace(shared_ptr<Face> face)
89 {
90 m_faceTable.add(face);
91 }
Alexander Afanasyev33b72772014-01-26 23:22:58 -080092
Junxiao Shifbe8efe2016-08-22 16:02:30 +000093 fw::UnsolicitedDataPolicy&
94 getUnsolicitedDataPolicy() const
95 {
96 return *m_unsolicitedDataPolicy;
97 }
98
99 void
100 setUnsolicitedDataPolicy(unique_ptr<fw::UnsolicitedDataPolicy> policy)
101 {
102 BOOST_ASSERT(policy != nullptr);
103 m_unsolicitedDataPolicy = std::move(policy);
104 }
105
Junxiao Shia4f2be82014-03-02 22:56:41 -0700106public: // forwarding entrypoints and tables
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700107 /** \brief start incoming Interest processing
Alexander Afanasyevb755e9d2015-10-20 17:35:51 -0500108 * \param face face on which Interest is received
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700109 * \param interest the incoming Interest, must be created with make_shared
110 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -0800111 void
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700112 startProcessInterest(Face& face, const Interest& interest);
Alexander Afanasyev33b72772014-01-26 23:22:58 -0800113
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700114 /** \brief start incoming Data processing
Alexander Afanasyevb755e9d2015-10-20 17:35:51 -0500115 * \param face face on which Data is received
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700116 * \param data the incoming Data, must be created with make_shared
117 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -0800118 void
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700119 startProcessData(Face& face, const Data& data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700120
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700121 /** \brief start incoming Nack processing
Alexander Afanasyevb755e9d2015-10-20 17:35:51 -0500122 * \param face face on which Nack is received
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700123 * \param nack the incoming Nack, must be created with make_shared
124 */
125 void
126 startProcessNack(Face& face, const lp::Nack& nack);
127
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700128 NameTree&
Junxiao Shib9420cf2016-08-13 04:38:52 +0000129 getNameTree()
130 {
131 return m_nameTree;
132 }
Junxiao Shiea48d8b2014-03-16 13:53:47 -0700133
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700134 Fib&
Junxiao Shib9420cf2016-08-13 04:38:52 +0000135 getFib()
136 {
137 return m_fib;
138 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700139
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700140 Pit&
Junxiao Shib9420cf2016-08-13 04:38:52 +0000141 getPit()
142 {
143 return m_pit;
144 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700145
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700146 Cs&
Junxiao Shib9420cf2016-08-13 04:38:52 +0000147 getCs()
148 {
149 return m_cs;
150 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700151
Junxiao Shidbe71732014-02-21 22:23:28 -0700152 Measurements&
Junxiao Shib9420cf2016-08-13 04:38:52 +0000153 getMeasurements()
154 {
155 return m_measurements;
156 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700157
Junxiao Shibb5105f2014-03-03 12:06:45 -0700158 StrategyChoice&
Junxiao Shib9420cf2016-08-13 04:38:52 +0000159 getStrategyChoice()
160 {
161 return m_strategyChoice;
162 }
Junxiao Shibb5105f2014-03-03 12:06:45 -0700163
Junxiao Shia110f262014-10-12 12:35:20 -0700164 DeadNonceList&
Junxiao Shib9420cf2016-08-13 04:38:52 +0000165 getDeadNonceList()
166 {
167 return m_deadNonceList;
168 }
Junxiao Shia110f262014-10-12 12:35:20 -0700169
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700170 NetworkRegionTable&
Junxiao Shib9420cf2016-08-13 04:38:52 +0000171 getNetworkRegionTable()
172 {
173 return m_networkRegionTable;
174 }
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700175
Junxiao Shi88884492014-02-15 15:57:43 -0700176PUBLIC_WITH_TESTS_ELSE_PRIVATE: // pipelines
Junxiao Shid3c792f2014-01-30 00:46:13 -0700177 /** \brief incoming Interest pipeline
178 */
Junxiao Shi88884492014-02-15 15:57:43 -0700179 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700180 onIncomingInterest(Face& inFace, const Interest& interest);
181
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700182 /** \brief Interest loop pipeline
183 */
184 VIRTUAL_WITH_TESTS void
Junxiao Shi330136a2016-03-10 04:53:08 -0700185 onInterestLoop(Face& inFace, const Interest& interest);
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700186
mzhang4eab72492015-02-25 11:16:09 -0600187 /** \brief Content Store miss pipeline
188 */
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700189 VIRTUAL_WITH_TESTS void
Junxiao Shic5f651f2016-11-17 22:58:12 +0000190 onContentStoreMiss(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry, const Interest& interest);
mzhang4eab72492015-02-25 11:16:09 -0600191
192 /** \brief Content Store hit pipeline
193 */
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700194 VIRTUAL_WITH_TESTS void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000195 onContentStoreHit(const Face& inFace, const shared_ptr<pit::Entry>& pitEntry,
mzhang4eab72492015-02-25 11:16:09 -0600196 const Interest& interest, const Data& data);
197
Junxiao Shid3c792f2014-01-30 00:46:13 -0700198 /** \brief outgoing Interest pipeline
199 */
Junxiao Shi88884492014-02-15 15:57:43 -0700200 VIRTUAL_WITH_TESTS void
Junxiao Shic5f651f2016-11-17 22:58:12 +0000201 onOutgoingInterest(const shared_ptr<pit::Entry>& pitEntry, Face& outFace, const Interest& interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700202
Junxiao Shi09498f02014-02-26 19:41:08 -0700203 /** \brief Interest reject pipeline
Junxiao Shid3c792f2014-01-30 00:46:13 -0700204 */
Junxiao Shi88884492014-02-15 15:57:43 -0700205 VIRTUAL_WITH_TESTS void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000206 onInterestReject(const shared_ptr<pit::Entry>& pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700207
Junxiao Shid3c792f2014-01-30 00:46:13 -0700208 /** \brief Interest unsatisfied pipeline
209 */
Junxiao Shi88884492014-02-15 15:57:43 -0700210 VIRTUAL_WITH_TESTS void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000211 onInterestUnsatisfied(const shared_ptr<pit::Entry>& pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700212
Junxiao Shia110f262014-10-12 12:35:20 -0700213 /** \brief Interest finalize pipeline
214 * \param isSatisfied whether the Interest has been satisfied
215 * \param dataFreshnessPeriod FreshnessPeriod of satisfying Data
216 */
217 VIRTUAL_WITH_TESTS void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000218 onInterestFinalize(const shared_ptr<pit::Entry>& pitEntry, bool isSatisfied,
Eric Newberryf4056d02017-05-26 17:31:53 +0000219 ndn::optional<time::milliseconds> dataFreshnessPeriod = ndn::nullopt);
Junxiao Shia110f262014-10-12 12:35:20 -0700220
Junxiao Shid3c792f2014-01-30 00:46:13 -0700221 /** \brief incoming Data pipeline
222 */
Junxiao Shi88884492014-02-15 15:57:43 -0700223 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700224 onIncomingData(Face& inFace, const Data& data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700225
Junxiao Shid3c792f2014-01-30 00:46:13 -0700226 /** \brief Data unsolicited pipeline
227 */
Junxiao Shi88884492014-02-15 15:57:43 -0700228 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700229 onDataUnsolicited(Face& inFace, const Data& data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700230
Junxiao Shid3c792f2014-01-30 00:46:13 -0700231 /** \brief outgoing Data pipeline
232 */
Junxiao Shi88884492014-02-15 15:57:43 -0700233 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700234 onOutgoingData(const Data& data, Face& outFace);
235
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700236 /** \brief incoming Nack pipeline
237 */
238 VIRTUAL_WITH_TESTS void
239 onIncomingNack(Face& inFace, const lp::Nack& nack);
240
241 /** \brief outgoing Nack pipeline
242 */
243 VIRTUAL_WITH_TESTS void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000244 onOutgoingNack(const shared_ptr<pit::Entry>& pitEntry, const Face& outFace, const lp::NackHeader& nack);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700245
Junxiao Shi88884492014-02-15 15:57:43 -0700246PROTECTED_WITH_TESTS_ELSE_PRIVATE:
247 VIRTUAL_WITH_TESTS void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000248 setUnsatisfyTimer(const shared_ptr<pit::Entry>& pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700249
Junxiao Shi88884492014-02-15 15:57:43 -0700250 VIRTUAL_WITH_TESTS void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000251 setStragglerTimer(const shared_ptr<pit::Entry>& pitEntry, bool isSatisfied,
Eric Newberryf4056d02017-05-26 17:31:53 +0000252 ndn::optional<time::milliseconds> dataFreshnessPeriod = ndn::nullopt);
Junxiao Shic041ca32014-02-25 20:01:15 -0700253
Junxiao Shi88884492014-02-15 15:57:43 -0700254 VIRTUAL_WITH_TESTS void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000255 cancelUnsatisfyAndStragglerTimer(pit::Entry& pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700256
Junxiao Shia110f262014-10-12 12:35:20 -0700257 /** \brief insert Nonce to Dead Nonce List if necessary
Junxiao Shi4846f372016-04-05 13:39:30 -0700258 * \param upstream if null, insert Nonces from all out-records;
259 * if not null, insert Nonce only on the out-records of this face
Junxiao Shia110f262014-10-12 12:35:20 -0700260 */
261 VIRTUAL_WITH_TESTS void
262 insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied,
Eric Newberryf4056d02017-05-26 17:31:53 +0000263 ndn::optional<time::milliseconds> dataFreshnessPeriod, Face* upstream);
Junxiao Shia110f262014-10-12 12:35:20 -0700264
Junxiao Shib9420cf2016-08-13 04:38:52 +0000265 /** \brief call trigger (method) on the effective strategy of pitEntry
266 */
Junxiao Shif3c07812014-03-11 21:48:49 -0700267#ifdef WITH_TESTS
268 virtual void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000269 dispatchToStrategy(pit::Entry& pitEntry, function<void(fw::Strategy&)> trigger)
Junxiao Shif3c07812014-03-11 21:48:49 -0700270#else
271 template<class Function>
272 void
Junxiao Shib9420cf2016-08-13 04:38:52 +0000273 dispatchToStrategy(pit::Entry& pitEntry, Function trigger)
Junxiao Shif3c07812014-03-11 21:48:49 -0700274#endif
Junxiao Shib9420cf2016-08-13 04:38:52 +0000275 {
276 trigger(m_strategyChoice.findEffectiveStrategy(pitEntry));
277 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700278
279private:
Junxiao Shib289cc12014-03-15 12:19:05 -0700280 ForwarderCounters m_counters;
281
Junxiao Shia4f2be82014-03-02 22:56:41 -0700282 FaceTable m_faceTable;
Junxiao Shifbe8efe2016-08-22 16:02:30 +0000283 unique_ptr<fw::UnsolicitedDataPolicy> m_unsolicitedDataPolicy;
HangZhangad4afd12014-03-01 11:03:08 +0800284
Junxiao Shi0355e9f2015-09-02 07:24:53 -0700285 NameTree m_nameTree;
286 Fib m_fib;
287 Pit m_pit;
288 Cs m_cs;
289 Measurements m_measurements;
290 StrategyChoice m_strategyChoice;
291 DeadNonceList m_deadNonceList;
292 NetworkRegionTable m_networkRegionTable;
Junxiao Shibb5105f2014-03-03 12:06:45 -0700293
Junxiao Shid3c792f2014-01-30 00:46:13 -0700294 // allow Strategy (base class) to enter pipelines
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700295 friend class fw::Strategy;
Alexander Afanasyev33b72772014-01-26 23:22:58 -0800296};
297
Junxiao Shid3c792f2014-01-30 00:46:13 -0700298} // namespace nfd
Alexander Afanasyev33b72772014-01-26 23:22:58 -0800299
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700300#endif // NFD_DAEMON_FW_FORWARDER_HPP