blob: d8bc19f417a7553fef30e4a1a03e77fb66fb1152 [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shiaf6569a2014-06-14 00:01:34 -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 Shiaf6569a2014-06-14 00:01:34 -070024 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -080025
26#include "forwarder.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060027#include "core/logger.hpp"
Junxiao Shiaf6569a2014-06-14 00:01:34 -070028#include "core/random.hpp"
Junxiao Shid938a6b2014-05-11 23:40:29 -070029#include "available-strategies.hpp"
Junxiao Shiaf6569a2014-06-14 00:01:34 -070030#include <boost/random/uniform_int_distribution.hpp>
Alexander Afanasyev33b72772014-01-26 23:22:58 -080031
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080032namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080033
Junxiao Shi8c8d2182014-01-30 22:33:00 -070034NFD_LOG_INIT("Forwarder");
35
Junxiao Shif3c07812014-03-11 21:48:49 -070036using fw::Strategy;
37
Junxiao Shif3c07812014-03-11 21:48:49 -070038const Name Forwarder::LOCALHOST_NAME("ndn:/localhost");
Junxiao Shi88884492014-02-15 15:57:43 -070039
Junxiao Shic041ca32014-02-25 20:01:15 -070040Forwarder::Forwarder()
Junxiao Shia4f2be82014-03-02 22:56:41 -070041 : m_faceTable(*this)
HangZhangad4afd12014-03-01 11:03:08 +080042 , m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060043 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080044 , m_measurements(m_nameTree)
Junxiao Shif3c07812014-03-11 21:48:49 -070045 , m_strategyChoice(m_nameTree, fw::makeDefaultStrategy(*this))
Alexander Afanasyev33b72772014-01-26 23:22:58 -080046{
Junxiao Shif3c07812014-03-11 21:48:49 -070047 fw::installStrategies(*this);
Alexander Afanasyev33b72772014-01-26 23:22:58 -080048}
49
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060050Forwarder::~Forwarder()
51{
52
53}
54
Alexander Afanasyev33b72772014-01-26 23:22:58 -080055void
Junxiao Shid3c792f2014-01-30 00:46:13 -070056Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
57{
58 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -070059 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
60 " interest=" << interest.getName());
Junxiao Shi06887ac2014-02-13 20:15:42 -070061 const_cast<Interest&>(interest).setIncomingFaceId(inFace.getId());
Junxiao Shi33152f12014-07-16 19:54:32 -070062 ++m_counters.getNInInterests();
Junxiao Shic041ca32014-02-25 20:01:15 -070063
Junxiao Shi88884492014-02-15 15:57:43 -070064 // /localhost scope control
Junxiao Shif3c07812014-03-11 21:48:49 -070065 bool isViolatingLocalhost = !inFace.isLocal() &&
66 LOCALHOST_NAME.isPrefixOf(interest.getName());
67 if (isViolatingLocalhost) {
68 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
69 " interest=" << interest.getName() << " violates /localhost");
70 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -070071 return;
72 }
Junxiao Shic041ca32014-02-25 20:01:15 -070073
Junxiao Shid3c792f2014-01-30 00:46:13 -070074 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -070075 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -070076
Junxiao Shia110f262014-10-12 12:35:20 -070077 // detect duplicate Nonce
78 int dnw = pitEntry->findNonce(interest.getNonce(), inFace);
79 bool hasDuplicateNonce = (dnw != pit::DUPLICATE_NONCE_NONE) ||
80 m_deadNonceList.has(interest.getName(), interest.getNonce());
81 if (hasDuplicateNonce) {
Junxiao Shid3c792f2014-01-30 00:46:13 -070082 // goto Interest loop pipeline
83 this->onInterestLoop(inFace, interest, pitEntry);
84 return;
85 }
Junxiao Shic041ca32014-02-25 20:01:15 -070086
Junxiao Shid3c792f2014-01-30 00:46:13 -070087 // cancel unsatisfy & straggler timer
88 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -070089
Junxiao Shif3c07812014-03-11 21:48:49 -070090 // is pending?
Junxiao Shid3c792f2014-01-30 00:46:13 -070091 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
Junxiao Shie17349a2014-03-25 00:55:38 -070092 bool isPending = inRecords.begin() != inRecords.end();
Junxiao Shid3c792f2014-01-30 00:46:13 -070093 if (!isPending) {
94 // CS lookup
95 const Data* csMatch = m_cs.find(interest);
96 if (csMatch != 0) {
Junxiao Shi7b984c62014-07-17 22:18:34 -070097 const_cast<Data*>(csMatch)->setIncomingFaceId(FACEID_CONTENT_STORE);
Junxiao Shid3c792f2014-01-30 00:46:13 -070098 // XXX should we lookup PIT for other Interests that also match csMatch?
99
Junxiao Shiad3f1cb2014-08-18 11:12:30 -0700100 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700101 this->setStragglerTimer(pitEntry, true, csMatch->getFreshnessPeriod());
Junxiao Shiad3f1cb2014-08-18 11:12:30 -0700102
Junxiao Shid3c792f2014-01-30 00:46:13 -0700103 // goto outgoing Data pipeline
104 this->onOutgoingData(*csMatch, inFace);
105 return;
106 }
107 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700108
Junxiao Shid3c792f2014-01-30 00:46:13 -0700109 // insert InRecord
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700110 pitEntry->insertOrUpdateInRecord(inFace.shared_from_this(), interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700111
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700112 // set PIT unsatisfy timer
113 this->setUnsatisfyTimer(pitEntry);
114
Junxiao Shid3c792f2014-01-30 00:46:13 -0700115 // FIB lookup
Junxiao Shi40631842014-03-01 13:52:37 -0700116 shared_ptr<fib::Entry> fibEntry = m_fib.findLongestPrefixMatch(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700117
Junxiao Shid3c792f2014-01-30 00:46:13 -0700118 // dispatch to strategy
Junxiao Shif3c07812014-03-11 21:48:49 -0700119 this->dispatchToStrategy(pitEntry, bind(&Strategy::afterReceiveInterest, _1,
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700120 cref(inFace), cref(interest), fibEntry, pitEntry));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700121}
122
123void
124Forwarder::onInterestLoop(Face& inFace, const Interest& interest,
125 shared_ptr<pit::Entry> pitEntry)
126{
Junxiao Shif3c07812014-03-11 21:48:49 -0700127 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
128 " interest=" << interest.getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700129
Junxiao Shif3c07812014-03-11 21:48:49 -0700130 // (drop)
131}
132
133/** \brief compare two InRecords for picking outgoing Interest
134 * \return true if b is preferred over a
135 *
136 * This function should be passed to std::max_element over InRecordCollection.
137 * The outgoing Interest picked is the last incoming Interest
138 * that does not come from outFace.
139 * If all InRecords come from outFace, it's fine to pick that. This happens when
140 * there's only one InRecord that comes from outFace. The legit use is for
141 * vehicular network; otherwise, strategy shouldn't send to the sole inFace.
142 */
143static inline bool
144compare_pickInterest(const pit::InRecord& a, const pit::InRecord& b, const Face* outFace)
145{
146 bool isOutFaceA = a.getFace().get() == outFace;
147 bool isOutFaceB = b.getFace().get() == outFace;
148
149 if (!isOutFaceA && isOutFaceB) {
150 return false;
151 }
152 if (isOutFaceA && !isOutFaceB) {
153 return true;
154 }
155
156 return a.getLastRenewed() > b.getLastRenewed();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700157}
158
159void
Junxiao Shid938a6b2014-05-11 23:40:29 -0700160Forwarder::onOutgoingInterest(shared_ptr<pit::Entry> pitEntry, Face& outFace,
161 bool wantNewNonce)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700162{
Junxiao Shi223271b2014-07-03 22:06:13 -0700163 if (outFace.getId() == INVALID_FACEID) {
164 NFD_LOG_WARN("onOutgoingInterest face=invalid interest=" << pitEntry->getName());
165 return;
166 }
Junxiao Shif3c07812014-03-11 21:48:49 -0700167 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
168 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700169
Junxiao Shi57f0f312014-03-16 11:52:20 -0700170 // scope control
171 if (pitEntry->violatesScope(outFace)) {
Junxiao Shif3c07812014-03-11 21:48:49 -0700172 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
Junxiao Shi57f0f312014-03-16 11:52:20 -0700173 " interest=" << pitEntry->getName() << " violates scope");
Junxiao Shi11bd9c22014-03-13 20:44:13 -0700174 return;
175 }
176
Junxiao Shid3c792f2014-01-30 00:46:13 -0700177 // pick Interest
Junxiao Shif3c07812014-03-11 21:48:49 -0700178 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
179 pit::InRecordCollection::const_iterator pickedInRecord = std::max_element(
180 inRecords.begin(), inRecords.end(), bind(&compare_pickInterest, _1, _2, &outFace));
181 BOOST_ASSERT(pickedInRecord != inRecords.end());
Junxiao Shid938a6b2014-05-11 23:40:29 -0700182 shared_ptr<Interest> interest = const_pointer_cast<Interest>(
183 pickedInRecord->getInterest().shared_from_this());
184
185 if (wantNewNonce) {
186 interest = make_shared<Interest>(*interest);
Junxiao Shiaf6569a2014-06-14 00:01:34 -0700187 static boost::random::uniform_int_distribution<uint32_t> dist;
188 interest->setNonce(dist(getGlobalRng()));
Junxiao Shid938a6b2014-05-11 23:40:29 -0700189 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700190
Junxiao Shid3c792f2014-01-30 00:46:13 -0700191 // insert OutRecord
Junxiao Shid938a6b2014-05-11 23:40:29 -0700192 pitEntry->insertOrUpdateOutRecord(outFace.shared_from_this(), *interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700193
Junxiao Shid3c792f2014-01-30 00:46:13 -0700194 // send Interest
Junxiao Shid938a6b2014-05-11 23:40:29 -0700195 outFace.sendInterest(*interest);
Junxiao Shi33152f12014-07-16 19:54:32 -0700196 ++m_counters.getNOutInterests();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700197}
198
199void
Junxiao Shi09498f02014-02-26 19:41:08 -0700200Forwarder::onInterestReject(shared_ptr<pit::Entry> pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700201{
Junxiao Shid938a6b2014-05-11 23:40:29 -0700202 if (pitEntry->hasUnexpiredOutRecords()) {
203 NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() <<
204 " cannot reject forwarded Interest");
205 return;
206 }
Junxiao Shi09498f02014-02-26 19:41:08 -0700207 NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700208
Alexander Afanasyeva57f8b42014-07-10 20:11:32 -0700209 // cancel unsatisfy & straggler timer
210 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
211
Junxiao Shid3c792f2014-01-30 00:46:13 -0700212 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700213 this->setStragglerTimer(pitEntry, false);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700214}
215
216void
217Forwarder::onInterestUnsatisfied(shared_ptr<pit::Entry> pitEntry)
218{
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700219 NFD_LOG_DEBUG("onInterestUnsatisfied interest=" << pitEntry->getName());
220
Junxiao Shid3c792f2014-01-30 00:46:13 -0700221 // invoke PIT unsatisfied callback
Junxiao Shif3c07812014-03-11 21:48:49 -0700222 this->dispatchToStrategy(pitEntry, bind(&Strategy::beforeExpirePendingInterest, _1,
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700223 pitEntry));
Junxiao Shic041ca32014-02-25 20:01:15 -0700224
Junxiao Shia110f262014-10-12 12:35:20 -0700225 // goto Interest Finalize pipeline
226 this->onInterestFinalize(pitEntry, false);
227}
228
229void
230Forwarder::onInterestFinalize(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
231 const time::milliseconds& dataFreshnessPeriod)
232{
233 NFD_LOG_DEBUG("onInterestFinalize interest=" << pitEntry->getName() <<
234 (isSatisfied ? " satisfied" : " unsatisfied"));
235
236 // Dead Nonce List insert if necessary
237 this->insertDeadNonceList(*pitEntry, isSatisfied, dataFreshnessPeriod, 0);
238
Junxiao Shif3c07812014-03-11 21:48:49 -0700239 // PIT delete
Junxiao Shid938a6b2014-05-11 23:40:29 -0700240 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600241 m_pit.erase(pitEntry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700242}
243
244void
245Forwarder::onIncomingData(Face& inFace, const Data& data)
246{
247 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700248 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi06887ac2014-02-13 20:15:42 -0700249 const_cast<Data&>(data).setIncomingFaceId(inFace.getId());
Junxiao Shi33152f12014-07-16 19:54:32 -0700250 ++m_counters.getNInDatas();
Junxiao Shic041ca32014-02-25 20:01:15 -0700251
Junxiao Shi88884492014-02-15 15:57:43 -0700252 // /localhost scope control
Junxiao Shif3c07812014-03-11 21:48:49 -0700253 bool isViolatingLocalhost = !inFace.isLocal() &&
254 LOCALHOST_NAME.isPrefixOf(data.getName());
255 if (isViolatingLocalhost) {
256 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
257 " data=" << data.getName() << " violates /localhost");
258 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700259 return;
260 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700261
Junxiao Shid3c792f2014-01-30 00:46:13 -0700262 // PIT match
263 shared_ptr<pit::DataMatchResult> pitMatches = m_pit.findAllDataMatches(data);
264 if (pitMatches->begin() == pitMatches->end()) {
265 // goto Data unsolicited pipeline
266 this->onDataUnsolicited(inFace, data);
267 return;
268 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700269
Junxiao Shid3c792f2014-01-30 00:46:13 -0700270 // CS insert
271 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700272
Junxiao Shid3c792f2014-01-30 00:46:13 -0700273 std::set<shared_ptr<Face> > pendingDownstreams;
274 // foreach PitEntry
275 for (pit::DataMatchResult::iterator it = pitMatches->begin();
276 it != pitMatches->end(); ++it) {
277 shared_ptr<pit::Entry> pitEntry = *it;
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700278 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700279
Junxiao Shid3c792f2014-01-30 00:46:13 -0700280 // cancel unsatisfy & straggler timer
281 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700282
Junxiao Shid3c792f2014-01-30 00:46:13 -0700283 // remember pending downstreams
284 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
285 for (pit::InRecordCollection::const_iterator it = inRecords.begin();
286 it != inRecords.end(); ++it) {
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700287 if (it->getExpiry() > time::steady_clock::now()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700288 pendingDownstreams.insert(it->getFace());
289 }
290 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700291
Junxiao Shid938a6b2014-05-11 23:40:29 -0700292 // invoke PIT satisfy callback
Junxiao Shi82e7f582014-09-07 15:15:40 -0700293 this->dispatchToStrategy(pitEntry, bind(&Strategy::beforeSatisfyInterest, _1,
Junxiao Shid938a6b2014-05-11 23:40:29 -0700294 pitEntry, cref(inFace), cref(data)));
295
Junxiao Shia110f262014-10-12 12:35:20 -0700296 // Dead Nonce List insert if necessary (for OutRecord of inFace)
297 this->insertDeadNonceList(*pitEntry, true, data.getFreshnessPeriod(), &inFace);
298
Junxiao Shid3c792f2014-01-30 00:46:13 -0700299 // mark PIT satisfied
300 pitEntry->deleteInRecords();
301 pitEntry->deleteOutRecord(inFace.shared_from_this());
Junxiao Shic041ca32014-02-25 20:01:15 -0700302
Junxiao Shid3c792f2014-01-30 00:46:13 -0700303 // set PIT straggler timer
Junxiao Shia110f262014-10-12 12:35:20 -0700304 this->setStragglerTimer(pitEntry, true, data.getFreshnessPeriod());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700305 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700306
Junxiao Shid3c792f2014-01-30 00:46:13 -0700307 // foreach pending downstream
308 for (std::set<shared_ptr<Face> >::iterator it = pendingDownstreams.begin();
309 it != pendingDownstreams.end(); ++it) {
Junxiao Shida006f52014-05-16 11:18:00 -0700310 shared_ptr<Face> pendingDownstream = *it;
311 if (pendingDownstream.get() == &inFace) {
312 continue;
313 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700314 // goto outgoing Data pipeline
Junxiao Shida006f52014-05-16 11:18:00 -0700315 this->onOutgoingData(data, *pendingDownstream);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700316 }
317}
318
319void
320Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
321{
322 // accept to cache?
Junxiao Shif3c07812014-03-11 21:48:49 -0700323 bool acceptToCache = inFace.isLocal();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700324 if (acceptToCache) {
325 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700326 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700327 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700328
Junxiao Shif3c07812014-03-11 21:48:49 -0700329 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
330 " data=" << data.getName() <<
331 (acceptToCache ? " cached" : " not cached"));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700332}
333
334void
335Forwarder::onOutgoingData(const Data& data, Face& outFace)
336{
Junxiao Shi223271b2014-07-03 22:06:13 -0700337 if (outFace.getId() == INVALID_FACEID) {
338 NFD_LOG_WARN("onOutgoingData face=invalid data=" << data.getName());
339 return;
340 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700341 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
342
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700343 // /localhost scope control
Junxiao Shif3c07812014-03-11 21:48:49 -0700344 bool isViolatingLocalhost = !outFace.isLocal() &&
345 LOCALHOST_NAME.isPrefixOf(data.getName());
346 if (isViolatingLocalhost) {
347 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
348 " data=" << data.getName() << " violates /localhost");
349 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700350 return;
351 }
352
Junxiao Shif3c07812014-03-11 21:48:49 -0700353 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700354
Junxiao Shid3c792f2014-01-30 00:46:13 -0700355 // send Data
356 outFace.sendData(data);
Junxiao Shi33152f12014-07-16 19:54:32 -0700357 ++m_counters.getNOutDatas();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700358}
359
360static inline bool
361compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
362{
363 return a.getExpiry() < b.getExpiry();
364}
365
366void
367Forwarder::setUnsatisfyTimer(shared_ptr<pit::Entry> pitEntry)
368{
369 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
370 pit::InRecordCollection::const_iterator lastExpiring =
371 std::max_element(inRecords.begin(), inRecords.end(),
372 &compare_InRecord_expiry);
373
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700374 time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry();
375 time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700376 if (lastExpiryFromNow <= time::seconds(0)) {
377 // TODO all InRecords are already expired; will this happen?
378 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700379
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700380 scheduler::cancel(pitEntry->m_unsatisfyTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700381 pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow,
Junxiao Shid3c792f2014-01-30 00:46:13 -0700382 bind(&Forwarder::onInterestUnsatisfied, this, pitEntry));
383}
384
385void
Junxiao Shia110f262014-10-12 12:35:20 -0700386Forwarder::setStragglerTimer(shared_ptr<pit::Entry> pitEntry, bool isSatisfied,
387 const time::milliseconds& dataFreshnessPeriod)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700388{
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700389 time::nanoseconds stragglerTime = time::milliseconds(100);
Junxiao Shic041ca32014-02-25 20:01:15 -0700390
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700391 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700392 pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime,
Junxiao Shia110f262014-10-12 12:35:20 -0700393 bind(&Forwarder::onInterestFinalize, this, pitEntry, isSatisfied, dataFreshnessPeriod));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700394}
395
396void
397Forwarder::cancelUnsatisfyAndStragglerTimer(shared_ptr<pit::Entry> pitEntry)
398{
Junxiao Shic041ca32014-02-25 20:01:15 -0700399 scheduler::cancel(pitEntry->m_unsatisfyTimer);
400 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700401}
402
Junxiao Shia110f262014-10-12 12:35:20 -0700403static inline void
404insertNonceToDnl(DeadNonceList& dnl, const pit::Entry& pitEntry,
405 const pit::OutRecord& outRecord)
406{
407 dnl.add(pitEntry.getName(), outRecord.getLastNonce());
408}
409
410void
411Forwarder::insertDeadNonceList(pit::Entry& pitEntry, bool isSatisfied,
412 const time::milliseconds& dataFreshnessPeriod,
413 Face* upstream)
414{
415 // need Dead Nonce List insert?
416 bool needDnl = false;
417 if (isSatisfied) {
418 bool hasFreshnessPeriod = dataFreshnessPeriod >= time::milliseconds::zero();
419 // Data never becomes stale if it doesn't have FreshnessPeriod field
420 needDnl = static_cast<bool>(pitEntry.getInterest().getMustBeFresh()) &&
421 (hasFreshnessPeriod && dataFreshnessPeriod < m_deadNonceList.getLifetime());
422 }
423 else {
424 needDnl = true;
425 }
426
427 if (!needDnl) {
428 return;
429 }
430
431 // Dead Nonce List insert
432 if (upstream == 0) {
433 // insert all outgoing Nonces
434 const pit::OutRecordCollection& outRecords = pitEntry.getOutRecords();
435 std::for_each(outRecords.begin(), outRecords.end(),
436 bind(&insertNonceToDnl, ref(m_deadNonceList), cref(pitEntry), _1));
437 }
438 else {
439 // insert outgoing Nonce of a specific face
440 pit::OutRecordCollection::const_iterator outRecord =
441 pitEntry.getOutRecord(upstream->shared_from_this());
442 if (outRecord != pitEntry.getOutRecords().end()) {
443 m_deadNonceList.add(pitEntry.getName(), outRecord->getLastNonce());
444 }
445 }
446}
447
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800448} // namespace nfd