OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ | 5 #ifndef NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ |
6 #define NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ | 6 #define NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <deque> | |
11 | |
10 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
11 #include "base/macros.h" | 13 #include "base/macros.h" |
12 #include "base/threading/thread_checker.h" | 14 #include "base/threading/thread_checker.h" |
13 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "net/base/net_export.h" | |
14 #include "net/base/network_change_notifier.h" | 17 #include "net/base/network_change_notifier.h" |
15 | 18 |
16 namespace net { | 19 namespace net { |
17 | 20 |
18 struct NetworkQuality; | 21 class NetworkQuality; |
19 | 22 |
20 // NetworkQualityEstimator provides network quality estimates (quality of the | 23 // NetworkQualityEstimator provides network quality estimates (quality of the |
21 // full paths to all origins that have been connected to). | 24 // full paths to all origins that have been connected to). |
22 // The estimates are based on the observed organic traffic. | 25 // The estimates are based on the observed organic traffic. |
23 // A NetworkQualityEstimator instance is attached to URLRequestContexts and | 26 // A NetworkQualityEstimator instance is attached to URLRequestContexts and |
24 // observes the traffic of URLRequests spawned from the URLRequestContexts. | 27 // observes the traffic of URLRequests spawned from the URLRequestContexts. |
25 // A single instance of NQE can be attached to multiple URLRequestContexts, | 28 // A single instance of NQE can be attached to multiple URLRequestContexts, |
26 // thereby increasing the single NQE instance's accuracy by providing more | 29 // thereby increasing the single NQE instance's accuracy by providing more |
27 // observed traffic characteristics. | 30 // observed traffic characteristics. |
28 class NET_EXPORT_PRIVATE NetworkQualityEstimator | 31 class NET_EXPORT_PRIVATE NetworkQualityEstimator |
29 : public NetworkChangeNotifier::ConnectionTypeObserver { | 32 : public NetworkChangeNotifier::ConnectionTypeObserver { |
30 public: | 33 public: |
31 // Creates a new NetworkQualityEstimator. | 34 // Creates a new NetworkQualityEstimator. |
32 NetworkQualityEstimator(); | 35 NetworkQualityEstimator(); |
33 | 36 |
34 ~NetworkQualityEstimator() override; | 37 ~NetworkQualityEstimator() override; |
35 | 38 |
36 // Returns an estimate of the current network quality. | 39 // Returns the peak estimates (fastest RTT and peak throughput) of the |
37 NetworkQuality GetEstimate() const; | 40 // current network. |
41 NetworkQuality GetPeakEstimate() const; | |
38 | 42 |
39 // Notifies NetworkQualityEstimator that a response has been received. | 43 // Notifies NetworkQualityEstimator that a response has been received. |
40 // |prefilter_bytes_read| is the count of the bytes received prior to | 44 // |cumulative_prefilter_bytes_read| is the count of the bytes received prior |
41 // applying filters (e.g. decompression, SDCH) from request creation time | 45 // to applying filters (e.g. decompression, SDCH) from request creation time |
42 // until now. | 46 // until now. |
47 // |prefiltered_bytes_read| is the count of the bytes received prior | |
48 // to applying filters in the most recent read. | |
43 void NotifyDataReceived(const URLRequest& request, | 49 void NotifyDataReceived(const URLRequest& request, |
44 int64_t prefilter_bytes_read); | 50 int64_t cumulative_prefilter_bytes_read, |
51 int64_t prefiltered_bytes_read); | |
45 | 52 |
46 private: | 53 private: |
54 FRIEND_TEST_ALL_PREFIXES(NetworkQualityEstimatorTest, StoreObservations); | |
47 FRIEND_TEST_ALL_PREFIXES(NetworkQualityEstimatorTest, | 55 FRIEND_TEST_ALL_PREFIXES(NetworkQualityEstimatorTest, |
48 TestPeakKbpsFastestRTTUpdates); | 56 TestPeakKbpsFastestRTTUpdates); |
57 FRIEND_TEST_ALL_PREFIXES(NetworkQualityEstimatorTest, TestAddObservation); | |
49 FRIEND_TEST_ALL_PREFIXES(URLRequestTestHTTP, NetworkQualityEstimator); | 58 FRIEND_TEST_ALL_PREFIXES(URLRequestTestHTTP, NetworkQualityEstimator); |
50 | 59 |
60 // Observation is used to store RTT and Kbps observation in buffers. An | |
61 // observation has a value and a timestamp (when the observation was taken). | |
62 struct Observation { | |
63 Observation(int32_t value, base::TimeTicks timestamp); | |
64 | |
65 ~Observation(); | |
66 | |
67 // Value of the observation. | |
68 const int32_t value; | |
69 | |
70 // Time when the observation was taken. | |
71 const base::TimeTicks timestamp; | |
72 }; | |
73 | |
74 // ObservationBuffer is used to store observations sorted by time. | |
75 class ObservationBuffer { | |
76 public: | |
77 ObservationBuffer(); | |
78 | |
79 ~ObservationBuffer(); | |
80 | |
81 // Adds an observation to the buffer. The oldest observation in the buffer | |
82 // will be popped out and discarded if the buffer is already full. | |
83 void AddObservation(int32_t value); | |
84 | |
85 // Returns the number of observations in this buffer. | |
86 size_t size() const; | |
87 | |
88 private: | |
89 // Maximum number of observations to hold in the ObservationBuffer. | |
90 static const size_t kMaximumObservations; | |
bengr
2015/06/09 20:46:33
Why not just put this in an anonymous namespace in
tbansal1
2015/06/10 01:00:05
Now, this is exposed to tests. I believe in that c
| |
91 | |
92 // Buffer that holds observations sorted by time. | |
bengr
2015/06/09 20:46:33
Perhaps rewrite as:
Holds observations sorted by
tbansal1
2015/06/10 01:00:05
Done.
| |
93 // Oldest observation is at the front of the queue. | |
94 std::deque<Observation> observations_; | |
95 | |
96 DISALLOW_COPY_AND_ASSIGN(ObservationBuffer); | |
97 }; | |
98 | |
51 // Tiny transfer sizes may give inaccurate throughput results. | 99 // Tiny transfer sizes may give inaccurate throughput results. |
52 // Minimum size of the transfer over which the throughput is computed. | 100 // Minimum size of the transfer over which the throughput is computed. |
53 static const int kMinTransferSizeInBytes = 10000; | 101 static const int kMinTransferSizeInBytes = 10000; |
54 | 102 |
55 // Minimum duration (in microseconds) of the transfer over which the | 103 // Minimum duration (in microseconds) of the transfer over which the |
56 // throughput is computed. | 104 // throughput is computed. |
57 static const int kMinRequestDurationMicroseconds = 1000; | 105 static const int kMinRequestDurationMicroseconds = 1000; |
58 | 106 |
59 // Construct a NetworkQualityEstimator instance allowing for test | 107 // Construct a NetworkQualityEstimator instance allowing for test |
60 // configuration. | 108 // configuration. |
(...skipping 13 matching lines...) Expand all Loading... | |
74 const bool allow_localhost_requests_; | 122 const bool allow_localhost_requests_; |
75 | 123 |
76 // Time when last connection change was observed. | 124 // Time when last connection change was observed. |
77 base::TimeTicks last_connection_change_; | 125 base::TimeTicks last_connection_change_; |
78 | 126 |
79 // Last value passed to |OnConnectionTypeChanged|. This indicates the | 127 // Last value passed to |OnConnectionTypeChanged|. This indicates the |
80 // current connection type. | 128 // current connection type. |
81 NetworkChangeNotifier::ConnectionType current_connection_type_; | 129 NetworkChangeNotifier::ConnectionType current_connection_type_; |
82 | 130 |
83 // Set if any network data has been received since last connectivity change. | 131 // Set if any network data has been received since last connectivity change. |
84 bool bytes_read_since_last_connection_change_; | 132 bool have_received_bytes_since_last_connection_change_; |
85 | 133 |
86 // Fastest round-trip-time (RTT) since last connectivity change. RTT measured | 134 // Fastest round-trip-time (RTT) since last connectivity change. RTT measured |
87 // from URLRequest creation until first byte received. | 135 // from URLRequest creation until first byte received. |
88 base::TimeDelta fastest_RTT_since_last_connection_change_; | 136 base::TimeDelta fastest_RTT_since_last_connection_change_; |
89 | 137 |
90 // Rough measurement of downlink peak Kbps witnessed since last connectivity | 138 // Rough measurement of downstream peak Kbps witnessed since last connectivity |
91 // change. The accuracy is decreased by ignoring these factors: | 139 // change. The accuracy is decreased by ignoring these factors: |
92 // 1) Multiple URLRequests can occur concurrently. | 140 // 1) Multiple URLRequests can occur concurrently. |
93 // 2) The transfer time includes at least one RTT while no bytes are read. | 141 // 2) The transfer time includes at least one RTT while no bytes are read. |
94 uint64_t peak_kbps_since_last_connection_change_; | 142 int32_t peak_kbps_since_last_connection_change_; |
143 | |
144 // Buffer that holds Kbps observations. | |
145 ObservationBuffer kbps_observations_; | |
146 | |
147 // Buffer that holds RTT (in milliseconds) observations. | |
148 ObservationBuffer rtt_msec_observations_; | |
95 | 149 |
96 base::ThreadChecker thread_checker_; | 150 base::ThreadChecker thread_checker_; |
97 | 151 |
98 DISALLOW_COPY_AND_ASSIGN(NetworkQualityEstimator); | 152 DISALLOW_COPY_AND_ASSIGN(NetworkQualityEstimator); |
99 }; | 153 }; |
100 | 154 |
101 } // namespace net | 155 } // namespace net |
102 | 156 |
103 #endif // NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ | 157 #endif // NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ |
OLD | NEW |