blob: b41b4ab613a8f2839271f1f9cc959a9948cffac6 [file] [log] [blame]
Vince Lehman8a4c29e2016-07-11 08:49:35 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -05002/*
awlane9acba9c2024-01-26 18:10:39 -06003 * Copyright (c) 2014-2024, Regents of the University of California,
Vince Lehman8a4c29e2016-07-11 08:49:35 +00004 * 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#ifndef NFD_DAEMON_FW_ASF_STRATEGY_HPP
27#define NFD_DAEMON_FW_ASF_STRATEGY_HPP
28
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040029#include "strategy.hpp"
Vince Lehman8a4c29e2016-07-11 08:49:35 +000030#include "asf-measurements.hpp"
31#include "asf-probing-module.hpp"
awlane9acba9c2024-01-26 18:10:39 -060032#include "process-nack-traits.hpp"
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040033#include "retx-suppression-exponential.hpp"
Vince Lehman8a4c29e2016-07-11 08:49:35 +000034
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040035namespace nfd::fw {
Vince Lehman8a4c29e2016-07-11 08:49:35 +000036namespace asf {
37
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040038/**
39 * \brief Adaptive SRTT-based forwarding strategy.
Vince Lehman8a4c29e2016-07-11 08:49:35 +000040 *
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040041 * \see Vince Lehman, Ashlesh Gawande, Rodrigo Aldecoa, Dmitri Krioukov, Beichuan Zhang,
42 * Lixia Zhang, and Lan Wang, "An Experimental Investigation of Hyperbolic Routing
43 * with a Smart Forwarding Plane in NDN", NDN Technical Report NDN-0042, 2016.
44 * https://named-data.net/publications/techreports/ndn-0042-1-asf/
Vince Lehman8a4c29e2016-07-11 08:49:35 +000045 */
awlane9acba9c2024-01-26 18:10:39 -060046class AsfStrategy : public Strategy, public ProcessNackTraits<AsfStrategy>
Vince Lehman8a4c29e2016-07-11 08:49:35 +000047{
48public:
49 explicit
Junxiao Shi037f4ab2016-12-13 04:27:06 +000050 AsfStrategy(Forwarder& forwarder, const Name& name = getStrategyName());
51
52 static const Name&
53 getStrategyName();
Vince Lehman8a4c29e2016-07-11 08:49:35 +000054
Vince Lehman8a4c29e2016-07-11 08:49:35 +000055public: // triggers
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050056 void
Davide Pesavento0498ce82021-06-14 02:02:21 -040057 afterReceiveInterest(const Interest& interest, const FaceEndpoint& ingress,
Junxiao Shi15e98b02016-08-12 11:21:44 +000058 const shared_ptr<pit::Entry>& pitEntry) override;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000059
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050060 void
Davide Pesavento0498ce82021-06-14 02:02:21 -040061 beforeSatisfyInterest(const Data& data, const FaceEndpoint& ingress,
62 const shared_ptr<pit::Entry>& pitEntry) override;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000063
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050064 void
Davide Pesavento0498ce82021-06-14 02:02:21 -040065 afterReceiveNack(const lp::Nack& nack, const FaceEndpoint& ingress,
Junxiao Shi15e98b02016-08-12 11:21:44 +000066 const shared_ptr<pit::Entry>& pitEntry) override;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000067
68private:
Saurab Dulal432be572021-01-26 12:09:29 -060069 pit::OutRecord*
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040070 forwardInterest(const Interest& interest, Face& outFace, const fib::Entry& fibEntry,
Saurab Dulal432be572021-01-26 12:09:29 -060071 const shared_ptr<pit::Entry>& pitEntry);
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040072
73 void
74 sendProbe(const Interest& interest, const FaceEndpoint& ingress, const Face& faceToUse,
75 const fib::Entry& fibEntry, const shared_ptr<pit::Entry>& pitEntry);
Saurab Dulala6dec222019-04-01 00:15:10 -050076
Junxiao Shia6de4292016-07-12 02:08:10 +000077 Face*
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040078 getBestFaceForForwarding(const Interest& interest, const Face& inFace,
79 const fib::Entry& fibEntry, const shared_ptr<pit::Entry>& pitEntry,
Saurab Dulala6dec222019-04-01 00:15:10 -050080 bool isNewInterest = true);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000081
82 void
Alex Lane9cec6992020-03-05 19:10:09 -060083 onTimeoutOrNack(const Name& interestName, FaceId faceId, bool isNack);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000084
85 void
Teng Liangebc20f62020-06-23 16:55:20 -070086 sendNoRouteNack(Face& face, const shared_ptr<pit::Entry>& pitEntry);
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050087
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040088NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
awlane5fdcbec2023-12-15 14:56:05 -060089 struct FaceStatsForwardingCompare
90 {
91 bool
92 operator()(const FaceStats& lhs, const FaceStats& rhs) const noexcept;
93 };
94 using FaceStatsForwardingSet = std::set<FaceStats, FaceStatsForwardingCompare>;
95
awlaneee97f532024-09-19 15:48:21 -050096 AsfMeasurements m_measurements{getMeasurements()};
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040097 std::unique_ptr<RetxSuppressionExponential> m_retxSuppression;
awlane5fdcbec2023-12-15 14:56:05 -060098 ProbingModule m_probing{m_measurements};
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040099 size_t m_nMaxTimeouts = 3;
awlane9acba9c2024-01-26 18:10:39 -0600100
101 friend ProcessNackTraits<AsfStrategy>;
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000102};
103
104} // namespace asf
105
106using asf::AsfStrategy;
107
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400108} // namespace nfd::fw
Vince Lehman8a4c29e2016-07-11 08:49:35 +0000109
110#endif // NFD_DAEMON_FW_ASF_STRATEGY_HPP