Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 2 | /* |
awlane | 9acba9c | 2024-01-26 18:10:39 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 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 | #ifndef NFD_DAEMON_FW_ASF_STRATEGY_HPP |
| 27 | #define NFD_DAEMON_FW_ASF_STRATEGY_HPP |
| 28 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 29 | #include "strategy.hpp" |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 30 | #include "asf-measurements.hpp" |
| 31 | #include "asf-probing-module.hpp" |
awlane | 9acba9c | 2024-01-26 18:10:39 -0600 | [diff] [blame] | 32 | #include "process-nack-traits.hpp" |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 33 | #include "retx-suppression-exponential.hpp" |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 34 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 35 | namespace nfd::fw { |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 36 | namespace asf { |
| 37 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 38 | /** |
| 39 | * \brief Adaptive SRTT-based forwarding strategy. |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 40 | * |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 41 | * \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 Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 45 | */ |
awlane | 9acba9c | 2024-01-26 18:10:39 -0600 | [diff] [blame] | 46 | class AsfStrategy : public Strategy, public ProcessNackTraits<AsfStrategy> |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 47 | { |
| 48 | public: |
| 49 | explicit |
Junxiao Shi | 037f4ab | 2016-12-13 04:27:06 +0000 | [diff] [blame] | 50 | AsfStrategy(Forwarder& forwarder, const Name& name = getStrategyName()); |
| 51 | |
| 52 | static const Name& |
| 53 | getStrategyName(); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 54 | |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 55 | public: // triggers |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 56 | void |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 57 | afterReceiveInterest(const Interest& interest, const FaceEndpoint& ingress, |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 58 | const shared_ptr<pit::Entry>& pitEntry) override; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 59 | |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 60 | void |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 61 | beforeSatisfyInterest(const Data& data, const FaceEndpoint& ingress, |
| 62 | const shared_ptr<pit::Entry>& pitEntry) override; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 63 | |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 64 | void |
Davide Pesavento | 0498ce8 | 2021-06-14 02:02:21 -0400 | [diff] [blame] | 65 | afterReceiveNack(const lp::Nack& nack, const FaceEndpoint& ingress, |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 66 | const shared_ptr<pit::Entry>& pitEntry) override; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 67 | |
| 68 | private: |
Saurab Dulal | 432be57 | 2021-01-26 12:09:29 -0600 | [diff] [blame] | 69 | pit::OutRecord* |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame] | 70 | forwardInterest(const Interest& interest, Face& outFace, const fib::Entry& fibEntry, |
Saurab Dulal | 432be57 | 2021-01-26 12:09:29 -0600 | [diff] [blame] | 71 | const shared_ptr<pit::Entry>& pitEntry); |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame] | 72 | |
| 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 Dulal | a6dec22 | 2019-04-01 00:15:10 -0500 | [diff] [blame] | 76 | |
Junxiao Shi | a6de429 | 2016-07-12 02:08:10 +0000 | [diff] [blame] | 77 | Face* |
Davide Pesavento | a6f637a | 2019-08-28 23:23:20 -0400 | [diff] [blame] | 78 | getBestFaceForForwarding(const Interest& interest, const Face& inFace, |
| 79 | const fib::Entry& fibEntry, const shared_ptr<pit::Entry>& pitEntry, |
Saurab Dulal | a6dec22 | 2019-04-01 00:15:10 -0500 | [diff] [blame] | 80 | bool isNewInterest = true); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 81 | |
| 82 | void |
Alex Lane | 9cec699 | 2020-03-05 19:10:09 -0600 | [diff] [blame] | 83 | onTimeoutOrNack(const Name& interestName, FaceId faceId, bool isNack); |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 84 | |
| 85 | void |
Teng Liang | ebc20f6 | 2020-06-23 16:55:20 -0700 | [diff] [blame] | 86 | sendNoRouteNack(Face& face, const shared_ptr<pit::Entry>& pitEntry); |
Ashlesh Gawande | 92e4ea5 | 2017-07-19 11:38:12 -0500 | [diff] [blame] | 87 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 88 | NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
awlane | 5fdcbec | 2023-12-15 14:56:05 -0600 | [diff] [blame] | 89 | struct FaceStatsForwardingCompare |
| 90 | { |
| 91 | bool |
| 92 | operator()(const FaceStats& lhs, const FaceStats& rhs) const noexcept; |
| 93 | }; |
| 94 | using FaceStatsForwardingSet = std::set<FaceStats, FaceStatsForwardingCompare>; |
| 95 | |
awlane | ee97f53 | 2024-09-19 15:48:21 -0500 | [diff] [blame] | 96 | AsfMeasurements m_measurements{getMeasurements()}; |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 97 | std::unique_ptr<RetxSuppressionExponential> m_retxSuppression; |
awlane | 5fdcbec | 2023-12-15 14:56:05 -0600 | [diff] [blame] | 98 | ProbingModule m_probing{m_measurements}; |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 99 | size_t m_nMaxTimeouts = 3; |
awlane | 9acba9c | 2024-01-26 18:10:39 -0600 | [diff] [blame] | 100 | |
| 101 | friend ProcessNackTraits<AsfStrategy>; |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 102 | }; |
| 103 | |
| 104 | } // namespace asf |
| 105 | |
| 106 | using asf::AsfStrategy; |
| 107 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 108 | } // namespace nfd::fw |
Vince Lehman | 8a4c29e | 2016-07-11 08:49:35 +0000 | [diff] [blame] | 109 | |
| 110 | #endif // NFD_DAEMON_FW_ASF_STRATEGY_HPP |