blob: e8a5eb9b096fb1e80c308ddf69c3a17965ef9547 [file] [log] [blame]
Junxiao Shi02e32242014-05-17 20:51:11 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoe4b22382018-06-10 14:37:24 -04002/*
3 * Copyright (c) 2014-2018, Regents of the University of California,
Junxiao Shi9f5b01d2016-08-05 03:54:28 +00004 * 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.
Junxiao Shi02e32242014-05-17 20:51:11 -070010 *
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/>.
Junxiao Shi9f5b01d2016-08-05 03:54:28 +000024 */
Junxiao Shi02e32242014-05-17 20:51:11 -070025
Eric Newberry185ab292017-03-28 06:45:39 +000026#ifndef NFD_CORE_RTT_ESTIMATOR_HPP
27#define NFD_CORE_RTT_ESTIMATOR_HPP
Junxiao Shi02e32242014-05-17 20:51:11 -070028
Junxiao Shi9f5b01d2016-08-05 03:54:28 +000029#include "core/common.hpp"
Junxiao Shi02e32242014-05-17 20:51:11 -070030
31namespace nfd {
32
33/**
34 * \brief implements the Mean-Deviation RTT estimator
35 *
Davide Pesaventoe4b22382018-06-10 14:37:24 -040036 * \sa ns3::RttMeanDeviation
Junxiao Shi02e32242014-05-17 20:51:11 -070037 *
38 * This RttEstimator algorithm is designed for TCP, which is a continuous stream.
39 * NDN Interest-Data traffic is not always a continuous stream,
40 * so NDN may need a different RttEstimator.
41 * The design of a more suitable RttEstimator is a research question.
42 */
43class RttEstimator
44{
45public:
Davide Pesaventoe4b22382018-06-10 14:37:24 -040046 using Duration = time::microseconds;
Junxiao Shi02e32242014-05-17 20:51:11 -070047
48 RttEstimator(uint16_t maxMultiplier = 16,
Davide Pesaventoe4b22382018-06-10 14:37:24 -040049 Duration minRto = 1_ms,
Junxiao Shi02e32242014-05-17 20:51:11 -070050 double gain = 0.1);
51
Davide Pesaventoe4b22382018-06-10 14:37:24 -040052 static Duration
53 getInitialRtt()
54 {
55 return 1_s;
56 }
57
Junxiao Shi02e32242014-05-17 20:51:11 -070058 void
59 addMeasurement(Duration measure);
60
61 void
62 incrementMultiplier();
63
64 void
65 doubleMultiplier();
66
67 Duration
68 computeRto() const;
69
70private:
71 uint16_t m_maxMultiplier;
72 double m_minRto;
73
74 double m_rtt;
75 double m_gain;
76 double m_variance;
77 uint16_t m_multiplier;
78 uint32_t m_nSamples;
79};
80
81} // namespace nfd
82
Eric Newberry185ab292017-03-28 06:45:39 +000083#endif // NFD_CORE_RTT_ESTIMATOR_HPP