blob: 6935bfd0a87a11e142d65b3dc4430f07451e1559 [file] [log] [blame]
Junxiao Shi73b909a2015-02-08 21:31:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande90015992017-07-11 17:25:48 -05002/*
Davide Pesavento0a05f7a2023-10-16 20:28:06 -04003 * Copyright (c) 2014-2023, Regents of the University of California,
Junxiao Shi73b909a2015-02-08 21:31:42 -07004 * 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 Gawande1ef93d02022-04-08 00:25:06 -040030#include "strategy.hpp"
Junxiao Shi73b909a2015-02-08 21:31:42 -070031
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::fw {
Junxiao Shi73b909a2015-02-08 21:31:42 -070033
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040034/**
35 * \brief A retransmission suppression decision algorithm that suppresses
36 * retransmissions using exponential backoff.
Junxiao Shi73b909a2015-02-08 21:31:42 -070037 *
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040038 * The i-th retransmission will be suppressed if the last transmission (out-record)
39 * occurred within `MIN(initialInterval * multiplier^(i-1), maxInterval)`.
Junxiao Shi73b909a2015-02-08 21:31:42 -070040 */
Ashlesh Gawande90015992017-07-11 17:25:48 -050041class RetxSuppressionExponential
Junxiao Shi73b909a2015-02-08 21:31:42 -070042{
43public:
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040044 /**
45 * \brief Time granularity.
Junxiao Shi73b909a2015-02-08 21:31:42 -070046 */
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040047 using Duration = time::milliseconds;
Junxiao Shi73b909a2015-02-08 21:31:42 -070048
49 explicit
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040050 RetxSuppressionExponential(Duration initialInterval = DEFAULT_INITIAL_INTERVAL,
51 Duration maxInterval = DEFAULT_MAX_INTERVAL,
52 float multiplier = DEFAULT_MULTIPLIER);
Junxiao Shi73b909a2015-02-08 21:31:42 -070053
Davide Pesavento0a05f7a2023-10-16 20:28:06 -040054 /**
55 * \brief Determines whether Interest is a retransmission per PIT entry
56 * and if so, whether it shall be forwarded or suppressed.
Junxiao Shi73b909a2015-02-08 21:31:42 -070057 */
Ashlesh Gawande90015992017-07-11 17:25:48 -050058 RetxSuppressionResult
59 decidePerPitEntry(pit::Entry& pitEntry);
60
Davide Pesavento0a05f7a2023-10-16 20:28:06 -040061 /**
62 * \brief Determines whether Interest is a retransmission per upstream
63 * and if so, whether it shall be forwarded or suppressed.
Ashlesh Gawande90015992017-07-11 17:25:48 -050064 */
65 RetxSuppressionResult
66 decidePerUpstream(pit::Entry& pitEntry, Face& outFace);
67
Davide Pesavento0a05f7a2023-10-16 20:28:06 -040068 /**
69 * \brief Increment the suppression interval for an out-record.
Ashlesh Gawande90015992017-07-11 17:25:48 -050070 */
71 void
72 incrementIntervalForOutRecord(pit::OutRecord& outRecord);
Junxiao Shi73b909a2015-02-08 21:31:42 -070073
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040074 static std::unique_ptr<RetxSuppressionExponential>
75 construct(const StrategyParameters& params);
76
77private: // non-member operators (hidden friends)
78 friend std::ostream&
79 operator<<(std::ostream& os, const RetxSuppressionExponential& retxSupp)
80 {
Davide Pesavento0a05f7a2023-10-16 20:28:06 -040081 return os << "RetxSuppressionExponential initial-interval=" << retxSupp.m_initialInterval.count()
82 << " max-interval=" << retxSupp.m_maxInterval.count()
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040083 << " multiplier=" << retxSupp.m_multiplier;
84 }
Junxiao Shi73b909a2015-02-08 21:31:42 -070085
86public:
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040087 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 Shi73b909a2015-02-08 21:31:42 -070090
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040091NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Junxiao Shi73b909a2015-02-08 21:31:42 -070092 const Duration m_initialInterval;
Junxiao Shi73b909a2015-02-08 21:31:42 -070093 const Duration m_maxInterval;
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040094 const float m_multiplier;
Junxiao Shi73b909a2015-02-08 21:31:42 -070095};
96
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040097} // namespace nfd::fw
Junxiao Shi73b909a2015-02-08 21:31:42 -070098
99#endif // NFD_DAEMON_FW_RETX_SUPPRESSION_EXPONENTIAL_HPP