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> | 10 #include <deque> |
11 #include <map> | 11 #include <map> |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/ref_counted.h" | |
16 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
18 #include "base/observer_list_threadsafe.h" | |
17 #include "base/threading/thread_checker.h" | 19 #include "base/threading/thread_checker.h" |
18 #include "base/time/time.h" | 20 #include "base/time/time.h" |
19 #include "net/base/external_estimate_provider.h" | 21 #include "net/base/external_estimate_provider.h" |
20 #include "net/base/net_export.h" | 22 #include "net/base/net_export.h" |
21 #include "net/base/network_change_notifier.h" | 23 #include "net/base/network_change_notifier.h" |
22 | 24 |
23 namespace net { | 25 namespace net { |
24 | 26 |
25 class URLRequest; | 27 class URLRequest; |
26 | 28 |
27 // NetworkQualityEstimator provides network quality estimates (quality of the | 29 // NetworkQualityEstimator provides network quality estimates (quality of the |
28 // full paths to all origins that have been connected to). | 30 // full paths to all origins that have been connected to). |
29 // The estimates are based on the observed organic traffic. | 31 // The estimates are based on the observed organic traffic. |
30 // A NetworkQualityEstimator instance is attached to URLRequestContexts and | 32 // A NetworkQualityEstimator instance is attached to URLRequestContexts and |
31 // observes the traffic of URLRequests spawned from the URLRequestContexts. | 33 // observes the traffic of URLRequests spawned from the URLRequestContexts. |
32 // A single instance of NQE can be attached to multiple URLRequestContexts, | 34 // A single instance of NQE can be attached to multiple URLRequestContexts, |
33 // thereby increasing the single NQE instance's accuracy by providing more | 35 // thereby increasing the single NQE instance's accuracy by providing more |
34 // observed traffic characteristics. | 36 // observed traffic characteristics. |
35 class NET_EXPORT_PRIVATE NetworkQualityEstimator | 37 class NET_EXPORT_PRIVATE NetworkQualityEstimator |
36 : public NetworkChangeNotifier::ConnectionTypeObserver, | 38 : public NetworkChangeNotifier::ConnectionTypeObserver, |
37 public ExternalEstimateProvider::UpdatedEstimateDelegate { | 39 public ExternalEstimateProvider::UpdatedEstimateDelegate { |
38 public: | 40 public: |
41 // On Android, a Java counterpart will be generated for this enum. | |
42 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.net | |
43 // GENERATED_JAVA_CLASS_NAME_OVERRIDE: NetworkQualityObservationSource | |
44 // GENERATED_JAVA_PREFIX_TO_STRIP: OBSERVATION_SOURCE_ | |
45 enum ObservationSource { | |
46 OBSERVATION_SOURCE_URL_REQUEST, | |
47 OBSERVATION_SOURCE_TCP, | |
48 OBSERVATION_SOURCE_QUIC, | |
49 OBSERVATION_SOURCE_CACHED_ESTIMATE, | |
50 OBSERVATION_SOURCE_DEFAULT_FROM_PLATFORM, | |
51 OBSERVATION_SOURCE_EXTERNAL_ESTIMATE | |
52 }; | |
53 | |
54 // Observes measurements of round trip time. | |
55 class NET_EXPORT_PRIVATE RTTObserver { | |
56 public: | |
57 // Will be called when a new RTT observation is available. The round trip | |
58 // times is specified in milliseconds. | |
59 virtual void OnRTTObservation(int32_t rtt_ms, | |
60 const base::TimeTicks& timestamp, | |
61 ObservationSource source) = 0; | |
62 | |
63 protected: | |
64 RTTObserver() {} | |
65 virtual ~RTTObserver() {} | |
66 | |
67 private: | |
68 DISALLOW_COPY_AND_ASSIGN(RTTObserver); | |
69 }; | |
70 | |
71 // Observes measurements of throughput. | |
72 class NET_EXPORT_PRIVATE ThroughputObserver { | |
73 public: | |
74 // Will be called when a new throughput observation is available. | |
75 // Throughput is specified in kilobits per second. | |
76 virtual void OnThroughputObservation(int32_t throughput_kbps, | |
77 const base::TimeTicks& timestamp, | |
78 ObservationSource source) = 0; | |
79 | |
80 protected: | |
81 ThroughputObserver() {} | |
82 virtual ~ThroughputObserver() {} | |
83 | |
84 private: | |
85 DISALLOW_COPY_AND_ASSIGN(ThroughputObserver); | |
86 }; | |
87 | |
39 // Creates a new NetworkQualityEstimator. | 88 // Creates a new NetworkQualityEstimator. |
40 // |variation_params| is the map containing all field trial parameters | 89 // |variation_params| is the map containing all field trial parameters |
41 // related to NetworkQualityEstimator field trial. | 90 // related to NetworkQualityEstimator field trial. |
42 // |external_estimates_provider| may be NULL. | 91 // |external_estimates_provider| may be NULL. |
43 NetworkQualityEstimator( | 92 NetworkQualityEstimator( |
44 scoped_ptr<ExternalEstimateProvider> external_estimates_provider, | 93 scoped_ptr<ExternalEstimateProvider> external_estimates_provider, |
45 const std::map<std::string, std::string>& variation_params); | 94 const std::map<std::string, std::string>& variation_params); |
46 | 95 |
47 ~NetworkQualityEstimator() override; | 96 ~NetworkQualityEstimator() override; |
48 | 97 |
(...skipping 20 matching lines...) Expand all Loading... | |
69 virtual bool GetRecentMedianRTT(const base::TimeTicks& begin_timestamp, | 118 virtual bool GetRecentMedianRTT(const base::TimeTicks& begin_timestamp, |
70 base::TimeDelta* rtt) const; | 119 base::TimeDelta* rtt) const; |
71 | 120 |
72 // Returns true if median downstream throughput is available and sets |kbps| | 121 // Returns true if median downstream throughput is available and sets |kbps| |
73 // to the median of downstream Kbps observations since |begin_timestamp|. | 122 // to the median of downstream Kbps observations since |begin_timestamp|. |
74 // Virtualized for testing. |kbps| should not be null. | 123 // Virtualized for testing. |kbps| should not be null. |
75 virtual bool GetRecentMedianDownlinkThroughputKbps( | 124 virtual bool GetRecentMedianDownlinkThroughputKbps( |
76 const base::TimeTicks& begin_timestamp, | 125 const base::TimeTicks& begin_timestamp, |
77 int32_t* kbps) const; | 126 int32_t* kbps) const; |
78 | 127 |
128 void AddRTTObserver(RTTObserver* rtt_observer); | |
pauljensen
2015/09/01 10:59:10
These functions need comments, esp with regard to
bengr
2015/09/01 23:07:39
Done.
| |
129 void RemoveRTTObserver(RTTObserver* rtt_observer); | |
130 void AddThroughputObserver(ThroughputObserver* throughput_observer); | |
131 void RemoveThroughputObserver(ThroughputObserver* throughput_observer); | |
132 | |
133 void Configure(bool allow_local_host_requests, bool allow_smaller_responses); | |
134 | |
79 protected: | 135 protected: |
80 // NetworkID is used to uniquely identify a network. | 136 // NetworkID is used to uniquely identify a network. |
81 // For the purpose of network quality estimation and caching, a network is | 137 // For the purpose of network quality estimation and caching, a network is |
82 // uniquely identified by a combination of |type| and | 138 // uniquely identified by a combination of |type| and |
83 // |id|. This approach is unable to distinguish networks with | 139 // |id|. This approach is unable to distinguish networks with |
84 // same name (e.g., different Wi-Fi networks with same SSID). | 140 // same name (e.g., different Wi-Fi networks with same SSID). |
85 // This is a protected member to expose it to tests. | 141 // This is a protected member to expose it to tests. |
86 struct NET_EXPORT_PRIVATE NetworkID { | 142 struct NET_EXPORT_PRIVATE NetworkID { |
87 NetworkID(NetworkChangeNotifier::ConnectionType type, const std::string& id) | 143 NetworkID(NetworkChangeNotifier::ConnectionType type, const std::string& id) |
88 : type(type), id(id) {} | 144 : type(type), id(id) {} |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
206 const base::TimeTicks last_update_time_; | 262 const base::TimeTicks last_update_time_; |
207 | 263 |
208 // Quality of this cached network. | 264 // Quality of this cached network. |
209 const NetworkQuality network_quality_; | 265 const NetworkQuality network_quality_; |
210 | 266 |
211 private: | 267 private: |
212 DISALLOW_ASSIGN(CachedNetworkQuality); | 268 DISALLOW_ASSIGN(CachedNetworkQuality); |
213 }; | 269 }; |
214 | 270 |
215 // Records the round trip time or throughput observation, along with the time | 271 // Records the round trip time or throughput observation, along with the time |
216 // the observation was made. | 272 // the observation was made. The units of value are type specific. For round |
273 // trip time observations, the value is in milliseconds. For throughput, | |
274 // the value is in kilobits per second. Observations can be made at several | |
275 // places in the network stack, thus the observation source is provided as | |
276 // well. | |
217 struct NET_EXPORT_PRIVATE Observation { | 277 struct NET_EXPORT_PRIVATE Observation { |
218 Observation(int32_t value, base::TimeTicks timestamp); | 278 Observation(int32_t value, |
279 base::TimeTicks timestamp, | |
280 ObservationSource source); | |
219 ~Observation(); | 281 ~Observation(); |
220 | 282 |
221 // Value of the observation. | 283 // Value of the observation. |
222 const int32_t value; | 284 const int32_t value; |
223 | 285 |
224 // Time when the observation was taken. | 286 // Time when the observation was taken. |
225 const base::TimeTicks timestamp; | 287 const base::TimeTicks timestamp; |
288 | |
289 // The source of the observation. | |
290 ObservationSource source; | |
pauljensen
2015/09/01 10:59:10
const
bengr
2015/09/01 23:07:39
Done.
| |
226 }; | 291 }; |
227 | 292 |
228 // Holds an observation and its weight. | 293 // Holds an observation and its weight. |
229 struct NET_EXPORT_PRIVATE WeightedObservation { | 294 struct NET_EXPORT_PRIVATE WeightedObservation { |
230 WeightedObservation(int32_t value, double weight) | 295 WeightedObservation(int32_t value, double weight) |
231 : value(value), weight(weight) {} | 296 : value(value), weight(weight) {} |
232 WeightedObservation(const WeightedObservation& other) | 297 WeightedObservation(const WeightedObservation& other) |
233 : WeightedObservation(other.value, other.weight) {} | 298 : WeightedObservation(other.value, other.weight) {} |
234 | 299 |
235 WeightedObservation& operator=(const WeightedObservation& other) { | 300 WeightedObservation& operator=(const WeightedObservation& other) { |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
371 const base::TimeTicks& begin_timestamp, | 436 const base::TimeTicks& begin_timestamp, |
372 int percentile) const; | 437 int percentile) const; |
373 | 438 |
374 // Returns the current network ID checking by calling the platform APIs. | 439 // Returns the current network ID checking by calling the platform APIs. |
375 // Virtualized for testing. | 440 // Virtualized for testing. |
376 virtual NetworkID GetCurrentNetworkID() const; | 441 virtual NetworkID GetCurrentNetworkID() const; |
377 | 442 |
378 // Writes the estimated quality of the current network to the cache. | 443 // Writes the estimated quality of the current network to the cache. |
379 void CacheNetworkQualityEstimate(); | 444 void CacheNetworkQualityEstimate(); |
380 | 445 |
446 void NotifyObserversOfRTT(const Observation& observation); | |
447 | |
448 void NotifyObserversOfThroughput(const Observation& observation); | |
449 | |
381 // Records the UMA related to RTT. | 450 // Records the UMA related to RTT. |
382 void RecordRTTUMA(int32_t estimated_value_msec, | 451 void RecordRTTUMA(int32_t estimated_value_msec, |
383 int32_t actual_value_msec) const; | 452 int32_t actual_value_msec) const; |
384 | 453 |
385 // Returns true only if |request| can be used for network quality estimation. | 454 // Returns true only if |request| can be used for network quality estimation. |
386 // Only the requests that go over network are considered to provide useful | 455 // Only the requests that go over network are considered to provide useful |
387 // observations. | 456 // observations. |
388 bool RequestProvidesUsefulObservations(const URLRequest& request) const; | 457 bool RequestProvidesUsefulObservations(const URLRequest& request) const; |
389 | 458 |
390 // Determines if the requests to local host can be used in estimating the | 459 // Determines if the requests to local host can be used in estimating the |
391 // network quality. Set to true only for tests. | 460 // network quality. Set to true only for tests. |
392 const bool allow_localhost_requests_; | 461 bool allow_localhost_requests_; |
pauljensen
2015/09/01 10:59:10
why are you removing the const and adding Configur
bengr
2015/09/01 23:07:39
For tests.
pauljensen
2015/09/02 16:54:47
Configure() seems unused. Can we go back to const
| |
393 | 462 |
394 // Determines if the responses smaller than |kMinTransferSizeInBytes| | 463 // Determines if the responses smaller than |kMinTransferSizeInBytes| |
395 // or shorter than |kMinTransferSizeInBytes| can be used in estimating the | 464 // or shorter than |kMinTransferSizeInBytes| can be used in estimating the |
396 // network quality. Set to true only for tests. | 465 // network quality. Set to true only for tests. |
397 const bool allow_small_responses_; | 466 bool allow_small_responses_; |
398 | 467 |
399 // Time when last connection change was observed. | 468 // Time when last connection change was observed. |
400 base::TimeTicks last_connection_change_; | 469 base::TimeTicks last_connection_change_; |
401 | 470 |
402 // ID of the current network. | 471 // ID of the current network. |
403 NetworkID current_network_id_; | 472 NetworkID current_network_id_; |
404 | 473 |
405 // Peak network quality (fastest round-trip-time (RTT) and highest | 474 // Peak network quality (fastest round-trip-time (RTT) and highest |
406 // downstream throughput) measured since last connectivity change. RTT is | 475 // downstream throughput) measured since last connectivity change. RTT is |
407 // measured from time the request is sent until the first byte received. | 476 // measured from time the request is sent until the first byte received. |
(...skipping 17 matching lines...) Expand all Loading... | |
425 NetworkQuality | 494 NetworkQuality |
426 default_observations_[NetworkChangeNotifier::CONNECTION_LAST + 1]; | 495 default_observations_[NetworkChangeNotifier::CONNECTION_LAST + 1]; |
427 | 496 |
428 // Estimated network quality. Updated on mainframe requests. | 497 // Estimated network quality. Updated on mainframe requests. |
429 NetworkQuality estimated_median_network_quality_; | 498 NetworkQuality estimated_median_network_quality_; |
430 | 499 |
431 // ExternalEstimateProvider that provides network quality using operating | 500 // ExternalEstimateProvider that provides network quality using operating |
432 // system APIs. May be NULL. | 501 // system APIs. May be NULL. |
433 const scoped_ptr<ExternalEstimateProvider> external_estimates_provider_; | 502 const scoped_ptr<ExternalEstimateProvider> external_estimates_provider_; |
434 | 503 |
504 // Observer lists for round trip times and throughput measurements. | |
505 scoped_refptr<base::ObserverListThreadSafe<RTTObserver>> rtt_observer_list_; | |
pauljensen
2015/09/01 10:59:10
const
pauljensen
2015/09/01 10:59:10
why do these need to be ThreadSafe? can we instea
bengr
2015/09/01 23:07:39
Acknowledged.
bengr
2015/09/01 23:07:39
Funny. I fixed this before I saw your comment. Gla
| |
506 scoped_refptr<base::ObserverListThreadSafe<ThroughputObserver>> | |
507 throughput_observer_list_; | |
508 | |
435 base::ThreadChecker thread_checker_; | 509 base::ThreadChecker thread_checker_; |
436 | 510 |
437 DISALLOW_COPY_AND_ASSIGN(NetworkQualityEstimator); | 511 DISALLOW_COPY_AND_ASSIGN(NetworkQualityEstimator); |
438 }; | 512 }; |
439 | 513 |
440 } // namespace net | 514 } // namespace net |
441 | 515 |
442 #endif // NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ | 516 #endif // NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ |
OLD | NEW |