Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | 0a05f7a | 2023-10-16 20:28:06 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2023, Regents of the University of California, |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [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_RETX_SUPPRESSION_EXPONENTIAL_HPP |
| 27 | #define NFD_DAEMON_FW_RETX_SUPPRESSION_EXPONENTIAL_HPP |
| 28 | |
| 29 | #include "retx-suppression.hpp" |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 30 | #include "strategy.hpp" |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 31 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 32 | namespace nfd::fw { |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 33 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 34 | /** |
| 35 | * \brief A retransmission suppression decision algorithm that suppresses |
| 36 | * retransmissions using exponential backoff. |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 37 | * |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 38 | * The i-th retransmission will be suppressed if the last transmission (out-record) |
| 39 | * occurred within `MIN(initialInterval * multiplier^(i-1), maxInterval)`. |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 40 | */ |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 41 | class RetxSuppressionExponential |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 42 | { |
| 43 | public: |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 44 | /** |
| 45 | * \brief Time granularity. |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 46 | */ |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 47 | using Duration = time::milliseconds; |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 48 | |
| 49 | explicit |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 50 | RetxSuppressionExponential(Duration initialInterval = DEFAULT_INITIAL_INTERVAL, |
| 51 | Duration maxInterval = DEFAULT_MAX_INTERVAL, |
| 52 | float multiplier = DEFAULT_MULTIPLIER); |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 53 | |
Davide Pesavento | 0a05f7a | 2023-10-16 20:28:06 -0400 | [diff] [blame] | 54 | /** |
| 55 | * \brief Determines whether Interest is a retransmission per PIT entry |
| 56 | * and if so, whether it shall be forwarded or suppressed. |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 57 | */ |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 58 | RetxSuppressionResult |
| 59 | decidePerPitEntry(pit::Entry& pitEntry); |
| 60 | |
Davide Pesavento | 0a05f7a | 2023-10-16 20:28:06 -0400 | [diff] [blame] | 61 | /** |
| 62 | * \brief Determines whether Interest is a retransmission per upstream |
| 63 | * and if so, whether it shall be forwarded or suppressed. |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 64 | */ |
| 65 | RetxSuppressionResult |
| 66 | decidePerUpstream(pit::Entry& pitEntry, Face& outFace); |
| 67 | |
Davide Pesavento | 0a05f7a | 2023-10-16 20:28:06 -0400 | [diff] [blame] | 68 | /** |
| 69 | * \brief Increment the suppression interval for an out-record. |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 70 | */ |
| 71 | void |
| 72 | incrementIntervalForOutRecord(pit::OutRecord& outRecord); |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 73 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 74 | static std::unique_ptr<RetxSuppressionExponential> |
| 75 | construct(const StrategyParameters& params); |
| 76 | |
| 77 | private: // non-member operators (hidden friends) |
| 78 | friend std::ostream& |
| 79 | operator<<(std::ostream& os, const RetxSuppressionExponential& retxSupp) |
| 80 | { |
Davide Pesavento | 0a05f7a | 2023-10-16 20:28:06 -0400 | [diff] [blame] | 81 | return os << "RetxSuppressionExponential initial-interval=" << retxSupp.m_initialInterval.count() |
| 82 | << " max-interval=" << retxSupp.m_maxInterval.count() |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 83 | << " multiplier=" << retxSupp.m_multiplier; |
| 84 | } |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 85 | |
| 86 | public: |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 87 | static constexpr Duration DEFAULT_INITIAL_INTERVAL = 10_ms; |
| 88 | static constexpr Duration DEFAULT_MAX_INTERVAL = 250_ms; |
| 89 | static constexpr float DEFAULT_MULTIPLIER = 2.0f; |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 90 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 91 | NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 92 | const Duration m_initialInterval; |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 93 | const Duration m_maxInterval; |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 94 | const float m_multiplier; |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 95 | }; |
| 96 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 97 | } // namespace nfd::fw |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 98 | |
| 99 | #endif // NFD_DAEMON_FW_RETX_SUPPRESSION_EXPONENTIAL_HPP |