blob: 218ce44a9fb36c49f1f4309a7524b81770b8f572 [file] [log] [blame]
Junxiao Shid3c792f2014-01-30 00:46:13 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi4846f372016-04-05 13:39:30 -07003 * Copyright (c) 2014-2016, Regents of the University of California,
Junxiao Shi35353962015-01-08 09:13:47 -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 Shi82e7f582014-09-07 15:15:40 -070024 */
Junxiao Shid3c792f2014-01-30 00:46:13 -070025
26#include "strategy.hpp"
Junxiao Shi8c8d2182014-01-30 22:33:00 -070027#include "forwarder.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060028#include "core/logger.hpp"
Junxiao Shic5f651f2016-11-17 22:58:12 +000029#include "core/random.hpp"
Junxiao Shid3c792f2014-01-30 00:46:13 -070030
31namespace nfd {
Junxiao Shi8c8d2182014-01-30 22:33:00 -070032namespace fw {
Junxiao Shid3c792f2014-01-30 00:46:13 -070033
Junxiao Shi679e9272014-02-15 20:10:21 -070034NFD_LOG_INIT("Strategy");
35
Junxiao Shibb5105f2014-03-03 12:06:45 -070036Strategy::Strategy(Forwarder& forwarder, const Name& name)
Junxiao Shicde37ad2015-12-24 01:02:05 -070037 : afterAddFace(forwarder.getFaceTable().afterAdd)
38 , beforeRemoveFace(forwarder.getFaceTable().beforeRemove)
Junxiao Shi49e11e72014-12-14 19:46:05 -070039 , m_name(name)
Junxiao Shibb5105f2014-03-03 12:06:45 -070040 , m_forwarder(forwarder)
Junxiao Shi15e98b02016-08-12 11:21:44 +000041 , m_measurements(m_forwarder.getMeasurements(), m_forwarder.getStrategyChoice(), *this)
Junxiao Shid3c792f2014-01-30 00:46:13 -070042{
43}
44
Junxiao Shi15e98b02016-08-12 11:21:44 +000045Strategy::~Strategy() = default;
Junxiao Shid3c792f2014-01-30 00:46:13 -070046
Junxiao Shi679e9272014-02-15 20:10:21 -070047void
Junxiao Shi15e98b02016-08-12 11:21:44 +000048Strategy::beforeSatisfyInterest(const shared_ptr<pit::Entry>& pitEntry,
Junxiao Shi82e7f582014-09-07 15:15:40 -070049 const Face& inFace, const Data& data)
Junxiao Shi22be22c2014-02-16 22:53:48 -070050{
Junxiao Shi82e7f582014-09-07 15:15:40 -070051 NFD_LOG_DEBUG("beforeSatisfyInterest pitEntry=" << pitEntry->getName() <<
Junxiao Shi15e98b02016-08-12 11:21:44 +000052 " inFace=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi22be22c2014-02-16 22:53:48 -070053}
54
55void
Junxiao Shi15e98b02016-08-12 11:21:44 +000056Strategy::beforeExpirePendingInterest(const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shi679e9272014-02-15 20:10:21 -070057{
58 NFD_LOG_DEBUG("beforeExpirePendingInterest pitEntry=" << pitEntry->getName());
59}
60
Junxiao Shi5e5e4452015-09-24 16:56:52 -070061void
62Strategy::afterReceiveNack(const Face& inFace, const lp::Nack& nack,
Junxiao Shi15e98b02016-08-12 11:21:44 +000063 const shared_ptr<pit::Entry>& pitEntry)
Junxiao Shi5e5e4452015-09-24 16:56:52 -070064{
65 NFD_LOG_DEBUG("afterReceiveNack inFace=" << inFace.getId() <<
66 " pitEntry=" << pitEntry->getName());
67}
68
69void
Junxiao Shib9420cf2016-08-13 04:38:52 +000070Strategy::sendNacks(const shared_ptr<pit::Entry>& pitEntry, const lp::NackHeader& header,
Junxiao Shi5e5e4452015-09-24 16:56:52 -070071 std::initializer_list<const Face*> exceptFaces)
72{
73 // populate downstreams with all downstreams faces
74 std::unordered_set<const Face*> downstreams;
Junxiao Shi4846f372016-04-05 13:39:30 -070075 std::transform(pitEntry->in_begin(), pitEntry->in_end(), std::inserter(downstreams, downstreams.end()),
Junxiao Shi9cff7792016-08-01 21:45:11 +000076 [] (const pit::InRecord& inR) { return &inR.getFace(); });
Junxiao Shi5e5e4452015-09-24 16:56:52 -070077
78 // delete excluded faces
Junxiao Shi9cff7792016-08-01 21:45:11 +000079 // .erase in a loop is more efficient than std::set_difference because that requires sorted range
Junxiao Shi5e5e4452015-09-24 16:56:52 -070080 for (const Face* exceptFace : exceptFaces) {
81 downstreams.erase(exceptFace);
82 }
83
84 // send Nacks
85 for (const Face* downstream : downstreams) {
86 this->sendNack(pitEntry, *downstream, header);
87 }
Junxiao Shi4846f372016-04-05 13:39:30 -070088 // warning: don't loop on pitEntry->getInRecords(), because in-record is deleted when sending Nack
Junxiao Shi5e5e4452015-09-24 16:56:52 -070089}
Junxiao Shid3c792f2014-01-30 00:46:13 -070090
Junxiao Shicf0f3ce2016-09-02 13:01:59 +000091const fib::Entry&
92Strategy::lookupFib(const pit::Entry& pitEntry) const
93{
94 const Fib& fib = m_forwarder.getFib();
95 const NetworkRegionTable& nrt = m_forwarder.getNetworkRegionTable();
96
97 const Interest& interest = pitEntry.getInterest();
98 // has Link object?
99 if (!interest.hasLink()) {
100 // FIB lookup with Interest name
101 const fib::Entry& fibEntry = fib.findLongestPrefixMatch(pitEntry);
102 NFD_LOG_TRACE("lookupFib noLinkObject found=" << fibEntry.getPrefix());
103 return fibEntry;
104 }
105
106 const Link& link = interest.getLink();
107
108 // in producer region?
109 if (nrt.isInProducerRegion(link)) {
110 // FIB lookup with Interest name
111 const fib::Entry& fibEntry = fib.findLongestPrefixMatch(pitEntry);
112 NFD_LOG_TRACE("lookupFib inProducerRegion found=" << fibEntry.getPrefix());
113 return fibEntry;
114 }
115
116 // has SelectedDelegation?
117 if (interest.hasSelectedDelegation()) {
118 // FIB lookup with SelectedDelegation
119 Name selectedDelegation = interest.getSelectedDelegation();
120 const fib::Entry& fibEntry = fib.findLongestPrefixMatch(selectedDelegation);
121 NFD_LOG_TRACE("lookupFib hasSelectedDelegation=" << selectedDelegation << " found=" << fibEntry.getPrefix());
122 return fibEntry;
123 }
124
125 // FIB lookup with first delegation Name
126 const fib::Entry& fibEntry0 = fib.findLongestPrefixMatch(link.getDelegations().begin()->second);
127 // in default-free zone?
128 bool isDefaultFreeZone = !(fibEntry0.getPrefix().size() == 0 && fibEntry0.hasNextHops());
129 if (!isDefaultFreeZone) {
130 NFD_LOG_TRACE("lookupFib inConsumerRegion found=" << fibEntry0.getPrefix());
131 return fibEntry0;
132 }
133
134 // choose and set SelectedDelegation
135 for (const std::pair<uint32_t, Name>& delegation : link.getDelegations()) {
136 const Name& delegationName = delegation.second;
137 const fib::Entry& fibEntry = fib.findLongestPrefixMatch(delegationName);
138 if (fibEntry.hasNextHops()) {
139 /// \todo Don't modify in-record Interests.
140 /// Set SelectedDelegation in outgoing Interest pipeline.
141 std::for_each(pitEntry.in_begin(), pitEntry.in_end(),
142 [&delegationName] (const pit::InRecord& inR) {
143 const_cast<Interest&>(inR.getInterest()).setSelectedDelegation(delegationName);
144 });
145 NFD_LOG_TRACE("lookupFib enterDefaultFreeZone setSelectedDelegation=" << delegationName);
146 return fibEntry;
147 }
148 }
149 BOOST_ASSERT(false);
150 return fibEntry0;
151}
152
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700153} // namespace fw
Junxiao Shid3c792f2014-01-30 00:46:13 -0700154} // namespace nfd