blob: 65791b1ae3e3af53caf238a0eb413ceef6ded10c [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// A convenience class to store rtt samples and calculate smoothed rtt.
6
7#ifndef QUICHE_QUIC_CORE_CONGESTION_CONTROL_RTT_STATS_H_
8#define QUICHE_QUIC_CORE_CONGESTION_CONTROL_RTT_STATS_H_
9
10#include <algorithm>
11#include <cstdint>
12
QUICHE teama6ef0a62019-03-07 20:34:33 -050013#include "net/third_party/quiche/src/quic/core/quic_packets.h"
14#include "net/third_party/quiche/src/quic/core/quic_time.h"
15#include "net/third_party/quiche/src/quic/platform/api/quic_bug_tracker.h"
16#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
17
18namespace quic {
19
20namespace test {
21class RttStatsPeer;
22} // namespace test
23
24class QUIC_EXPORT_PRIVATE RttStats {
25 public:
26 RttStats();
27 RttStats(const RttStats&) = delete;
28 RttStats& operator=(const RttStats&) = delete;
29
30 // Updates the RTT from an incoming ack which is received |send_delta| after
31 // the packet is sent and the peer reports the ack being delayed |ack_delay|.
32 void UpdateRtt(QuicTime::Delta send_delta,
33 QuicTime::Delta ack_delay,
34 QuicTime now);
35
36 // Causes the smoothed_rtt to be increased to the latest_rtt if the latest_rtt
37 // is larger. The mean deviation is increased to the most recent deviation if
38 // it's larger.
39 void ExpireSmoothedMetrics();
40
41 // Called when connection migrates and rtt measurement needs to be reset.
42 void OnConnectionMigration();
43
44 // Returns the EWMA smoothed RTT for the connection.
45 // May return Zero if no valid updates have occurred.
46 QuicTime::Delta smoothed_rtt() const { return smoothed_rtt_; }
47
48 // Returns the EWMA smoothed RTT prior to the most recent RTT sample.
49 QuicTime::Delta previous_srtt() const { return previous_srtt_; }
50
51 QuicTime::Delta initial_rtt() const { return initial_rtt_; }
52
53 QuicTime::Delta SmoothedOrInitialRtt() const {
54 return smoothed_rtt_.IsZero() ? initial_rtt_ : smoothed_rtt_;
55 }
56
57 // Sets an initial RTT to be used for SmoothedRtt before any RTT updates.
58 void set_initial_rtt(QuicTime::Delta initial_rtt) {
59 if (initial_rtt.ToMicroseconds() <= 0) {
60 QUIC_BUG << "Attempt to set initial rtt to <= 0.";
61 return;
62 }
63 initial_rtt_ = initial_rtt;
64 }
65
66 // The most recent rtt measurement.
67 // May return Zero if no valid updates have occurred.
68 QuicTime::Delta latest_rtt() const { return latest_rtt_; }
69
70 // Returns the min_rtt for the entire connection.
71 // May return Zero if no valid updates have occurred.
72 QuicTime::Delta min_rtt() const { return min_rtt_; }
73
74 QuicTime::Delta mean_deviation() const { return mean_deviation_; }
75
76 QuicTime::Delta max_ack_delay() const { return max_ack_delay_; }
77
78 bool ignore_max_ack_delay() const { return ignore_max_ack_delay_; }
79
80 void set_ignore_max_ack_delay(bool ignore_max_ack_delay) {
81 ignore_max_ack_delay_ = ignore_max_ack_delay;
82 }
83
84 void set_initial_max_ack_delay(QuicTime::Delta initial_max_ack_delay) {
85 max_ack_delay_ = std::max(max_ack_delay_, initial_max_ack_delay);
86 }
87
88 private:
89 friend class test::RttStatsPeer;
90
91 QuicTime::Delta latest_rtt_;
92 QuicTime::Delta min_rtt_;
93 QuicTime::Delta smoothed_rtt_;
94 QuicTime::Delta previous_srtt_;
95 // Mean RTT deviation during this session.
96 // Approximation of standard deviation, the error is roughly 1.25 times
97 // larger than the standard deviation, for a normally distributed signal.
98 QuicTime::Delta mean_deviation_;
99 QuicTime::Delta initial_rtt_;
100 // The maximum ack delay observed over the connection after excluding ack
101 // delays that were too large to be included in an RTT measurement.
102 QuicTime::Delta max_ack_delay_;
103 // Whether to ignore the peer's max ack delay.
104 bool ignore_max_ack_delay_;
105};
106
107} // namespace quic
108
109#endif // QUICHE_QUIC_CORE_CONGESTION_CONTROL_RTT_STATS_H_