blob: af3e4b5db9a3655136e9ae4ab522ea0909f65baa [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/*
Saurab Dulal432be572021-01-26 12:09:29 -06003 * Copyright (c) 2014-2021, 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
29#include "asf-measurements.hpp"
30#include "asf-probing-module.hpp"
31#include "fw/retx-suppression-exponential.hpp"
32#include "fw/strategy.hpp"
33
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:
68 void
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040069 processParams(const PartialName& parsed);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000070
Saurab Dulal432be572021-01-26 12:09:29 -060071 pit::OutRecord*
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040072 forwardInterest(const Interest& interest, Face& outFace, const fib::Entry& fibEntry,
Saurab Dulal432be572021-01-26 12:09:29 -060073 const shared_ptr<pit::Entry>& pitEntry);
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040074
75 void
76 sendProbe(const Interest& interest, const FaceEndpoint& ingress, const Face& faceToUse,
77 const fib::Entry& fibEntry, const shared_ptr<pit::Entry>& pitEntry);
Saurab Dulala6dec222019-04-01 00:15:10 -050078
Junxiao Shia6de4292016-07-12 02:08:10 +000079 Face*
Davide Pesaventoa6f637a2019-08-28 23:23:20 -040080 getBestFaceForForwarding(const Interest& interest, const Face& inFace,
81 const fib::Entry& fibEntry, const shared_ptr<pit::Entry>& pitEntry,
Saurab Dulala6dec222019-04-01 00:15:10 -050082 bool isNewInterest = true);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000083
84 void
Alex Lane9cec6992020-03-05 19:10:09 -060085 onTimeoutOrNack(const Name& interestName, FaceId faceId, bool isNack);
Vince Lehman8a4c29e2016-07-11 08:49:35 +000086
87 void
Teng Liangebc20f62020-06-23 16:55:20 -070088 sendNoRouteNack(Face& face, const shared_ptr<pit::Entry>& pitEntry);
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -050089
Vince Lehman8a4c29e2016-07-11 08:49:35 +000090private:
91 AsfMeasurements m_measurements;
92 ProbingModule m_probing;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000093 RetxSuppressionExponential m_retxSuppression;
Saurab Dulalaf3ff5a2021-09-19 19:45:07 -040094 size_t m_nMaxTimeouts = 3;
Vince Lehman8a4c29e2016-07-11 08:49:35 +000095
96 static const time::milliseconds RETX_SUPPRESSION_INITIAL;
97 static const time::milliseconds RETX_SUPPRESSION_MAX;
98};
99
100} // namespace asf
101
102using asf::AsfStrategy;
103
104} // namespace fw
105} // namespace nfd
106
107#endif // NFD_DAEMON_FW_ASF_STRATEGY_HPP