blob: 3c3be606568ae1cacbc3ee9833f239540a0915a2 [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
Ashlesh Gawande90015992017-07-11 17:25:48 -050029#include "algorithm.hpp"
Junxiao Shi73b909a2015-02-08 21:31:42 -070030#include "retx-suppression.hpp"
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040031#include "strategy.hpp"
Junxiao Shi73b909a2015-02-08 21:31:42 -070032
33namespace nfd {
34namespace fw {
35
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040036/**
37 * \brief A retransmission suppression decision algorithm that suppresses
38 * retransmissions using exponential backoff.
Junxiao Shi73b909a2015-02-08 21:31:42 -070039 *
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040040 * The i-th retransmission will be suppressed if the last transmission (out-record)
41 * occurred within `MIN(initialInterval * multiplier^(i-1), maxInterval)`.
Junxiao Shi73b909a2015-02-08 21:31:42 -070042 */
Ashlesh Gawande90015992017-07-11 17:25:48 -050043class RetxSuppressionExponential
Junxiao Shi73b909a2015-02-08 21:31:42 -070044{
45public:
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040046 /**
47 * \brief Time granularity.
Junxiao Shi73b909a2015-02-08 21:31:42 -070048 */
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040049 using Duration = time::milliseconds;
Junxiao Shi73b909a2015-02-08 21:31:42 -070050
51 explicit
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040052 RetxSuppressionExponential(Duration initialInterval = DEFAULT_INITIAL_INTERVAL,
53 Duration maxInterval = DEFAULT_MAX_INTERVAL,
54 float multiplier = DEFAULT_MULTIPLIER);
Junxiao Shi73b909a2015-02-08 21:31:42 -070055
Ashlesh Gawande90015992017-07-11 17:25:48 -050056 /** \brief determines whether Interest is a retransmission per pit entry
Junxiao Shi73b909a2015-02-08 21:31:42 -070057 * and if so, whether it shall be forwarded or suppressed
58 */
Ashlesh Gawande90015992017-07-11 17:25:48 -050059 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 Shi73b909a2015-02-08 21:31:42 -070072
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040073 static std::unique_ptr<RetxSuppressionExponential>
74 construct(const StrategyParameters& params);
75
76private: // 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 Shi73b909a2015-02-08 21:31:42 -070084
85public:
86 static const Duration DEFAULT_INITIAL_INTERVAL;
Junxiao Shi73b909a2015-02-08 21:31:42 -070087 static const Duration DEFAULT_MAX_INTERVAL;
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040088 static const float DEFAULT_MULTIPLIER;
Junxiao Shi73b909a2015-02-08 21:31:42 -070089
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040090NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Junxiao Shi73b909a2015-02-08 21:31:42 -070091 const Duration m_initialInterval;
Junxiao Shi73b909a2015-02-08 21:31:42 -070092 const Duration m_maxInterval;
Ashlesh Gawande1ef93d02022-04-08 00:25:06 -040093 const float m_multiplier;
Junxiao Shi73b909a2015-02-08 21:31:42 -070094};
95
96} // namespace fw
97} // namespace nfd
98
99#endif // NFD_DAEMON_FW_RETX_SUPPRESSION_EXPONENTIAL_HPP