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