random-strategy.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2014-2022, 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.
10  *
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/>.
24  */
25 
26 #include "random-strategy.hpp"
27 #include "algorithm.hpp"
28 
29 #include <ndn-cxx/util/random.hpp>
30 
31 namespace nfd::fw {
32 
35 
36 RandomStrategy::RandomStrategy(Forwarder& forwarder, const Name& name)
37  : Strategy(forwarder)
38  , ProcessNackTraits(this)
39 {
41  if (!parsed.parameters.empty()) {
42  NDN_THROW(std::invalid_argument("RandomStrategy does not accept parameters"));
43  }
44  if (parsed.version && *parsed.version != getStrategyName()[-1].toVersion()) {
45  NDN_THROW(std::invalid_argument(
46  "RandomStrategy does not support version " + to_string(*parsed.version)));
47  }
49 }
50 
51 const Name&
53 {
54  static const auto strategyName = Name("/localhost/nfd/strategy/random").appendVersion(1);
55  return strategyName;
56 }
57 
58 void
59 RandomStrategy::afterReceiveInterest(const Interest& interest, const FaceEndpoint& ingress,
60  const shared_ptr<pit::Entry>& pitEntry)
61 {
62  const fib::Entry& fibEntry = this->lookupFib(*pitEntry);
63  fib::NextHopList nhs;
64 
65  std::copy_if(fibEntry.getNextHops().begin(), fibEntry.getNextHops().end(), std::back_inserter(nhs),
66  [&] (const auto& nh) { return isNextHopEligible(ingress.face, interest, nh, pitEntry); });
67 
68  if (nhs.empty()) {
69  NFD_LOG_DEBUG(interest << " from=" << ingress << " no nexthop");
70 
71  lp::NackHeader nackHeader;
72  nackHeader.setReason(lp::NackReason::NO_ROUTE);
73  this->sendNack(nackHeader, ingress.face, pitEntry);
74  this->rejectPendingInterest(pitEntry);
75  return;
76  }
77 
78  std::shuffle(nhs.begin(), nhs.end(), ndn::random::getRandomNumberEngine());
79  this->sendInterest(interest, nhs.front().getFace(), pitEntry);
80 }
81 
82 void
83 RandomStrategy::afterReceiveNack(const lp::Nack& nack, const FaceEndpoint& ingress,
84  const shared_ptr<pit::Entry>& pitEntry)
85 {
86  this->processNack(nack, ingress.face, pitEntry);
87 }
88 
89 } // namespace nfd::fw
This file contains common algorithms used by forwarding strategies.
Represents a face-endpoint pair in the forwarder.
Main class of NFD's forwarding engine.
Definition: forwarder.hpp:54
Represents an entry in the FIB.
Definition: fib-entry.hpp:54
const NextHopList & getNextHops() const
Definition: fib-entry.hpp:66
void processNack(const lp::Nack &nack, const Face &inFace, const shared_ptr< pit::Entry > &pitEntry)
A forwarding strategy that randomly chooses a nexthop.
static const Name & getStrategyName()
void afterReceiveNack(const lp::Nack &nack, const FaceEndpoint &ingress, const shared_ptr< pit::Entry > &pitEntry) override
Trigger after a Nack is received.
void afterReceiveInterest(const Interest &interest, const FaceEndpoint &ingress, const shared_ptr< pit::Entry > &pitEntry) override
Trigger after an Interest is received.
RandomStrategy(Forwarder &forwarder, const Name &name=getStrategyName())
Base class of all forwarding strategies.
Definition: strategy.hpp:42
void rejectPendingInterest(const shared_ptr< pit::Entry > &pitEntry)
Schedule the PIT entry for immediate deletion.
Definition: strategy.hpp:317
const fib::Entry & lookupFib(const pit::Entry &pitEntry) const
Performs a FIB lookup, considering Link object if present.
Definition: strategy.cpp:304
bool sendNack(const lp::NackHeader &header, Face &egress, const shared_ptr< pit::Entry > &pitEntry)
Send a Nack packet.
Definition: strategy.hpp:333
pit::OutRecord * sendInterest(const Interest &interest, Face &egress, const shared_ptr< pit::Entry > &pitEntry)
Send an Interest packet.
Definition: strategy.cpp:226
static ParsedInstanceName parseInstanceName(const Name &input)
Parse a strategy instance name.
Definition: strategy.cpp:123
void setInstanceName(const Name &name) noexcept
Set strategy instance name.
Definition: strategy.hpp:415
static Name makeInstanceName(const Name &input, const Name &strategyName)
Construct a strategy instance name.
Definition: strategy.cpp:134
#define NFD_LOG_INIT(name)
Definition: logger.hpp:31
#define NFD_LOG_DEBUG
Definition: logger.hpp:38
std::vector< NextHop > NextHopList
Definition: fib-entry.hpp:47
NFD_REGISTER_STRATEGY(SelfLearningStrategy)
std::optional< uint64_t > version
The strategy version number, if present.
Definition: strategy.hpp:387
PartialName parameters
Parameter components, may be empty.
Definition: strategy.hpp:388