blob: 95d1d7133c612314c4b74c8aed9669baa5422897 [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/*
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -04003 * Copyright (c) 2014-2022, 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"
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040032#include "retx-suppression-exponential.hpp"
Vince Lehman8a4c29e2016-07-11 08:49:35 +000033
34namespace nfd {
35namespace fw {
36namespace asf {
37
38/** \brief Adaptive SRTT-based Forwarding Strategy
39 *
Saurab Dulal432be572021-01-26 12:09:29 -060040 * \see Vince Lehman, Ashlesh Gawande, Rodrigo Aldecoa, Dmitri Krioukov, Beichuan Zhang,
41 * Lixia Zhang, and Lan Wang, "An Experimental Investigation of Hyperbolic Routing
42 * with a Smart Forwarding Plane in NDN", NDN Technical Report NDN-0042, 2016.
43 * https://named-data.net/publications/techreports/ndn-0042-1-asf/
Vince Lehman8a4c29e2016-07-11 08:49:35 +000044 */
45class AsfStrategy : public Strategy
46{
47public:
48 explicit
Junxiao Shi037f4ab2016-12-13 04:27:06 +000049 AsfStrategy(Forwarder& forwarder, const Name& name = getStrategyName());
50
51 static const Name&
52 getStrategyName();
Vince Lehman8a4c29e2016-07-11 08:49:35 +000053
Vince Lehman8a4c29e2016-07-11 08:49:35 +000054public: // triggers
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050055 void
Davide Pesavento0498ce82021-06-14 02:02:21 -040056 afterReceiveInterest(const Interest& interest, const FaceEndpoint& ingress,
Junxiao Shi15e98b02016-08-12 11:21:44 +000057 const shared_ptr<pit::Entry>& pitEntry) override;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000058
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050059 void
Davide Pesavento0498ce82021-06-14 02:02:21 -040060 beforeSatisfyInterest(const Data& data, const FaceEndpoint& ingress,
61 const shared_ptr<pit::Entry>& pitEntry) override;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000062
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050063 void
Davide Pesavento0498ce82021-06-14 02:02:21 -040064 afterReceiveNack(const lp::Nack& nack, const FaceEndpoint& ingress,
Junxiao Shi15e98b02016-08-12 11:21:44 +000065 const shared_ptr<pit::Entry>& pitEntry) override;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000066
67private:
Saurab Dulal432be572021-01-26 12:09:29 -060068 pit::OutRecord*
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040069 forwardInterest(const Interest& interest, Face& outFace, const fib::Entry& fibEntry,
Saurab Dulal432be572021-01-26 12:09:29 -060070 const shared_ptr<pit::Entry>& pitEntry);
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040071
72 void
73 sendProbe(const Interest& interest, const FaceEndpoint& ingress, const Face& faceToUse,
74 const fib::Entry& fibEntry, const shared_ptr<pit::Entry>& pitEntry);
Saurab Dulala6dec222019-04-01 00:15:10 -050075
Junxiao Shia6de4292016-07-12 02:08:10 +000076 Face*
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040077 getBestFaceForForwarding(const Interest& interest, const Face& inFace,
78 const fib::Entry& fibEntry, const shared_ptr<pit::Entry>& pitEntry,
Saurab Dulala6dec222019-04-01 00:15:10 -050079 bool isNewInterest = true);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000080
81 void
Alex Lane9cec6992020-03-05 19:10:09 -060082 onTimeoutOrNack(const Name& interestName, FaceId faceId, bool isNack);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000083
84 void
Teng Liangebc20f62020-06-23 16:55:20 -070085 sendNoRouteNack(Face& face, const shared_ptr<pit::Entry>& pitEntry);
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050086
Vince Lehman8a4c29e2016-07-11 08:49:35 +000087private:
88 AsfMeasurements m_measurements;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000089
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040090NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
91 std::unique_ptr<RetxSuppressionExponential> m_retxSuppression;
92 ProbingModule m_probing;
93 size_t m_nMaxTimeouts = 3;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000094};
95
96} // namespace asf
97
98using asf::AsfStrategy;
99
100} // namespace fw
101} // namespace nfd
102
103#endif // NFD_DAEMON_FW_ASF_STRATEGY_HPP