blob: 41d5bdb1cb8235e19bf908c02b1f0fe4054ca502 [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/*
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -04003 * Copyright (c) 2014-2022, 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
32namespace nfd {
33namespace fw {
34
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040035/**
36 * \brief A retransmission suppression decision algorithm that suppresses
37 * retransmissions using exponential backoff.
Junxiao Shi73b909a2015-02-08 21:31:42 -070038 *
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040039 * The i-th retransmission will be suppressed if the last transmission (out-record)
40 * occurred within `MIN(initialInterval * multiplier^(i-1), maxInterval)`.
Junxiao Shi73b909a2015-02-08 21:31:42 -070041 */
Ashlesh Gawande90015992017-07-11 17:25:48 -050042class RetxSuppressionExponential
Junxiao Shi73b909a2015-02-08 21:31:42 -070043{
44public:
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040045 /**
46 * \brief Time granularity.
Junxiao Shi73b909a2015-02-08 21:31:42 -070047 */
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040048 using Duration = time::milliseconds;
Junxiao Shi73b909a2015-02-08 21:31:42 -070049
50 explicit
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040051 RetxSuppressionExponential(Duration initialInterval = DEFAULT_INITIAL_INTERVAL,
52 Duration maxInterval = DEFAULT_MAX_INTERVAL,
53 float multiplier = DEFAULT_MULTIPLIER);
Junxiao Shi73b909a2015-02-08 21:31:42 -070054
Ashlesh Gawande90015992017-07-11 17:25:48 -050055 /** \brief determines whether Interest is a retransmission per pit entry
Junxiao Shi73b909a2015-02-08 21:31:42 -070056 * and if so, whether it shall be forwarded or suppressed
57 */
Ashlesh Gawande90015992017-07-11 17:25:48 -050058 RetxSuppressionResult
59 decidePerPitEntry(pit::Entry& pitEntry);
60
61 /** \brief determines whether Interest is a retransmission per upstream
62 * and if so, whether it shall be forwarded or suppressed
63 */
64 RetxSuppressionResult
65 decidePerUpstream(pit::Entry& pitEntry, Face& outFace);
66
67 /** \brief Increment the suppression interval for out record
68 */
69 void
70 incrementIntervalForOutRecord(pit::OutRecord& outRecord);
Junxiao Shi73b909a2015-02-08 21:31:42 -070071
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040072 static std::unique_ptr<RetxSuppressionExponential>
73 construct(const StrategyParameters& params);
74
75private: // non-member operators (hidden friends)
76 friend std::ostream&
77 operator<<(std::ostream& os, const RetxSuppressionExponential& retxSupp)
78 {
79 return os << "RetxSuppressionExponential initial-interval=" << retxSupp.m_initialInterval
80 << " max-interval=" << retxSupp.m_maxInterval
81 << " multiplier=" << retxSupp.m_multiplier;
82 }
Junxiao Shi73b909a2015-02-08 21:31:42 -070083
84public:
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040085 static constexpr Duration DEFAULT_INITIAL_INTERVAL = 10_ms;
86 static constexpr Duration DEFAULT_MAX_INTERVAL = 250_ms;
87 static constexpr float DEFAULT_MULTIPLIER = 2.0f;
Junxiao Shi73b909a2015-02-08 21:31:42 -070088
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040089NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Junxiao Shi73b909a2015-02-08 21:31:42 -070090 const Duration m_initialInterval;
Junxiao Shi73b909a2015-02-08 21:31:42 -070091 const Duration m_maxInterval;
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040092 const float m_multiplier;
Junxiao Shi73b909a2015-02-08 21:31:42 -070093};
94
95} // namespace fw
96} // namespace nfd
97
98#endif // NFD_DAEMON_FW_RETX_SUPPRESSION_EXPONENTIAL_HPP