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 | #include "retx-suppression-exponential.hpp" |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 27 | #include "algorithm.hpp" |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 28 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame^] | 29 | namespace nfd::fw { |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 30 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 31 | namespace { |
| 32 | |
| 33 | class PitInfo final : public StrategyInfo |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 34 | { |
| 35 | public: |
| 36 | static constexpr int |
| 37 | getTypeId() |
| 38 | { |
| 39 | return 1020; |
| 40 | } |
| 41 | |
| 42 | explicit |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 43 | PitInfo(const RetxSuppressionExponential::Duration& initialInterval) |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 44 | : suppressionInterval(initialInterval) |
| 45 | { |
| 46 | } |
| 47 | |
| 48 | public: |
| 49 | /** \brief if last transmission occurred within suppressionInterval, |
| 50 | * retransmission will be suppressed |
| 51 | */ |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 52 | RetxSuppressionExponential::Duration suppressionInterval; |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 53 | }; |
| 54 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 55 | } // namespace |
| 56 | |
| 57 | RetxSuppressionExponential::RetxSuppressionExponential(Duration initialInterval, |
| 58 | Duration maxInterval, |
| 59 | float multiplier) |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 60 | : m_initialInterval(initialInterval) |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 61 | , m_maxInterval(maxInterval) |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 62 | , m_multiplier(multiplier) |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 63 | { |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 64 | if (m_initialInterval <= 0_ns) { |
| 65 | NDN_THROW(std::invalid_argument("Retx suppression initial interval must be > 0")); |
| 66 | } |
| 67 | if (m_maxInterval < m_initialInterval) { |
| 68 | NDN_THROW(std::invalid_argument("Retx suppression max interval must be >= initial interval")); |
| 69 | } |
| 70 | if (m_multiplier < 1.0f) { |
| 71 | NDN_THROW(std::invalid_argument("Retx suppression multiplier must be >= 1")); |
| 72 | } |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 73 | } |
| 74 | |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 75 | RetxSuppressionResult |
| 76 | RetxSuppressionExponential::decidePerPitEntry(pit::Entry& pitEntry) |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 77 | { |
Junxiao Shi | fef73e4 | 2016-03-29 14:15:05 -0700 | [diff] [blame] | 78 | bool isNewPitEntry = !hasPendingOutRecords(pitEntry); |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 79 | if (isNewPitEntry) { |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 80 | return RetxSuppressionResult::NEW; |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 83 | auto lastOutgoing = getLastOutgoing(pitEntry); |
| 84 | auto now = time::steady_clock::now(); |
| 85 | auto sinceLastOutgoing = now - lastOutgoing; |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 86 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 87 | PitInfo* pi = pitEntry.insertStrategyInfo<PitInfo>(m_initialInterval).first; |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 88 | bool shouldSuppress = sinceLastOutgoing < pi->suppressionInterval; |
| 89 | |
| 90 | if (shouldSuppress) { |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 91 | return RetxSuppressionResult::SUPPRESS; |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | pi->suppressionInterval = std::min(m_maxInterval, |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 95 | time::duration_cast<Duration>(pi->suppressionInterval * m_multiplier)); |
| 96 | |
| 97 | return RetxSuppressionResult::FORWARD; |
| 98 | } |
| 99 | |
| 100 | RetxSuppressionResult |
| 101 | RetxSuppressionExponential::decidePerUpstream(pit::Entry& pitEntry, Face& outFace) |
| 102 | { |
| 103 | // NEW if outRecord for the face does not exist |
Md Ashiqur Rahman | c88d2d4 | 2019-08-28 20:19:47 +0000 | [diff] [blame] | 104 | auto outRecord = pitEntry.getOutRecord(outFace); |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 105 | if (outRecord == pitEntry.out_end()) { |
| 106 | return RetxSuppressionResult::NEW; |
| 107 | } |
| 108 | |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 109 | auto lastOutgoing = outRecord->getLastRenewed(); |
| 110 | auto now = time::steady_clock::now(); |
| 111 | auto sinceLastOutgoing = now - lastOutgoing; |
Ashlesh Gawande | 9001599 | 2017-07-11 17:25:48 -0500 | [diff] [blame] | 112 | |
| 113 | // insertStrategyInfo does not insert m_initialInterval again if it already exists |
| 114 | PitInfo* pi = outRecord->insertStrategyInfo<PitInfo>(m_initialInterval).first; |
| 115 | bool shouldSuppress = sinceLastOutgoing < pi->suppressionInterval; |
| 116 | |
| 117 | if (shouldSuppress) { |
| 118 | return RetxSuppressionResult::SUPPRESS; |
| 119 | } |
| 120 | |
| 121 | return RetxSuppressionResult::FORWARD; |
| 122 | } |
| 123 | |
| 124 | void |
| 125 | RetxSuppressionExponential::incrementIntervalForOutRecord(pit::OutRecord& outRecord) |
| 126 | { |
| 127 | PitInfo* pi = outRecord.insertStrategyInfo<PitInfo>(m_initialInterval).first; |
| 128 | pi->suppressionInterval = std::min(m_maxInterval, |
| 129 | time::duration_cast<Duration>(pi->suppressionInterval * m_multiplier)); |
Junxiao Shi | 73b909a | 2015-02-08 21:31:42 -0700 | [diff] [blame] | 130 | } |
| 131 | |
Ashlesh Gawande | 1ef93d0 | 2022-04-08 00:25:06 -0400 | [diff] [blame] | 132 | std::unique_ptr<RetxSuppressionExponential> |
| 133 | RetxSuppressionExponential::construct(const StrategyParameters& params) |
| 134 | { |
| 135 | auto init = params.getOrDefault<Duration::rep>("retx-suppression-initial", |
| 136 | RetxSuppressionExponential::DEFAULT_INITIAL_INTERVAL.count()); |
| 137 | auto max = params.getOrDefault<Duration::rep>("retx-suppression-max", |
| 138 | RetxSuppressionExponential::DEFAULT_MAX_INTERVAL.count()); |
| 139 | auto mult = params.getOrDefault<float>("retx-suppression-multiplier", |
| 140 | RetxSuppressionExponential::DEFAULT_MULTIPLIER); |
| 141 | |
| 142 | return make_unique<RetxSuppressionExponential>(Duration(init), Duration(max), mult); |
| 143 | } |
| 144 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame^] | 145 | } // namespace nfd::fw |