Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: net/base/network_quality_estimator.h

Issue 1273173002: Added Network Quality Estimator Real-time interface to Cronet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments on patch set 6 Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 enum ObservationType { DOWNLINK_THROUGHPUT, RTT };
tbansal1 2015/08/31 15:52:45 ObservationType seems unused.
bengr 2015/08/31 21:46:17 Thanks. Was left over. Done.
42
43 // On Android, a Java counterpart will be generated for this enum.
44 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.net
45 // GENERATED_JAVA_CLASS_NAME_OVERRIDE: NetworkQualityObservationSource
46 // GENERATED_JAVA_PREFIX_TO_STRIP: OBSERVATION_SOURCE_
47 enum ObservationSource {
48 OBSERVATION_SOURCE_URL_REQUEST,
49 OBSERVATION_SOURCE_TCP,
50 OBSERVATION_SOURCE_QUIC,
51 OBSERVATION_SOURCE_CACHED_ESTIMATE,
52 OBSERVATION_SOURCE_DEFAULT_FROM_PLATFORM,
53 OBSERVATION_SOURCE_EXTERNAL_ESTIMATE
54 };
55
56 // Observes measurements of round trip time.
57 class NET_EXPORT_PRIVATE RTTObserver {
58 public:
59 // Will be called when a new RTT observation is available. The round trip
60 // times is specified in milliseconds.
61 virtual void OnRTTObservation(int32_t rtt_ms,
62 const base::TimeTicks& timestamp,
63 ObservationSource source) = 0;
64
65 protected:
66 RTTObserver() {}
67 virtual ~RTTObserver() {}
68
69 private:
70 DISALLOW_COPY_AND_ASSIGN(RTTObserver);
71 };
72
73 // Observes measurements of throughput.
74 class NET_EXPORT_PRIVATE ThroughputObserver {
75 public:
76 // Will be called when a new throughput observation is available.
77 // Throughput is specified in kilobits per second.
78 virtual void OnThroughputObservation(int32_t throughput_kbps,
79 const base::TimeTicks& timestamp,
80 ObservationSource source) = 0;
81
82 protected:
83 ThroughputObserver() {}
84 virtual ~ThroughputObserver() {}
85
86 private:
87 DISALLOW_COPY_AND_ASSIGN(ThroughputObserver);
88 };
89
39 // Creates a new NetworkQualityEstimator. 90 // Creates a new NetworkQualityEstimator.
40 // |variation_params| is the map containing all field trial parameters 91 // |variation_params| is the map containing all field trial parameters
41 // related to NetworkQualityEstimator field trial. 92 // related to NetworkQualityEstimator field trial.
42 // |external_estimates_provider| may be NULL. 93 // |external_estimates_provider| may be NULL.
43 NetworkQualityEstimator( 94 NetworkQualityEstimator(
44 scoped_ptr<ExternalEstimateProvider> external_estimates_provider, 95 scoped_ptr<ExternalEstimateProvider> external_estimates_provider,
45 const std::map<std::string, std::string>& variation_params); 96 const std::map<std::string, std::string>& variation_params);
46 97
47 ~NetworkQualityEstimator() override; 98 ~NetworkQualityEstimator() override;
48 99
(...skipping 20 matching lines...) Expand all
69 virtual bool GetRecentMedianRTT(const base::TimeTicks& begin_timestamp, 120 virtual bool GetRecentMedianRTT(const base::TimeTicks& begin_timestamp,
70 base::TimeDelta* rtt) const; 121 base::TimeDelta* rtt) const;
71 122
72 // Returns true if median downstream throughput is available and sets |kbps| 123 // Returns true if median downstream throughput is available and sets |kbps|
73 // to the median of downstream Kbps observations since |begin_timestamp|. 124 // to the median of downstream Kbps observations since |begin_timestamp|.
74 // Virtualized for testing. |kbps| should not be null. 125 // Virtualized for testing. |kbps| should not be null.
75 virtual bool GetRecentMedianDownlinkThroughputKbps( 126 virtual bool GetRecentMedianDownlinkThroughputKbps(
76 const base::TimeTicks& begin_timestamp, 127 const base::TimeTicks& begin_timestamp,
77 int32_t* kbps) const; 128 int32_t* kbps) const;
78 129
130 void AddRTTObserver(RTTObserver* rtt_observer);
131 void RemoveRTTObserver(RTTObserver* rtt_observer);
132 void AddThroughputObserver(ThroughputObserver* throughput_observer);
133 void RemoveThroughputObserver(ThroughputObserver* throughput_observer);
134
135 void Configure(bool allow_local_host_requests, bool allow_smaller_responses);
136
79 protected: 137 protected:
80 // NetworkID is used to uniquely identify a network. 138 // NetworkID is used to uniquely identify a network.
81 // For the purpose of network quality estimation and caching, a network is 139 // For the purpose of network quality estimation and caching, a network is
82 // uniquely identified by a combination of |type| and 140 // uniquely identified by a combination of |type| and
83 // |id|. This approach is unable to distinguish networks with 141 // |id|. This approach is unable to distinguish networks with
84 // same name (e.g., different Wi-Fi networks with same SSID). 142 // same name (e.g., different Wi-Fi networks with same SSID).
85 // This is a protected member to expose it to tests. 143 // This is a protected member to expose it to tests.
86 struct NET_EXPORT_PRIVATE NetworkID { 144 struct NET_EXPORT_PRIVATE NetworkID {
87 NetworkID(NetworkChangeNotifier::ConnectionType type, const std::string& id) 145 NetworkID(NetworkChangeNotifier::ConnectionType type, const std::string& id)
88 : type(type), id(id) {} 146 : type(type), id(id) {}
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 const base::TimeTicks last_update_time_; 264 const base::TimeTicks last_update_time_;
207 265
208 // Quality of this cached network. 266 // Quality of this cached network.
209 const NetworkQuality network_quality_; 267 const NetworkQuality network_quality_;
210 268
211 private: 269 private:
212 DISALLOW_ASSIGN(CachedNetworkQuality); 270 DISALLOW_ASSIGN(CachedNetworkQuality);
213 }; 271 };
214 272
215 // Records the round trip time or throughput observation, along with the time 273 // Records the round trip time or throughput observation, along with the time
216 // the observation was made. 274 // the observation was made. The units of value are type specific. For round
275 // trip time observations, the value is in milliseconds. For throughput,
276 // the value is in kilobits per second. Observations can be made at several
277 // places in the network stack, thus the observation source is provided as
278 // well.
217 struct NET_EXPORT_PRIVATE Observation { 279 struct NET_EXPORT_PRIVATE Observation {
218 Observation(int32_t value, base::TimeTicks timestamp); 280 Observation(int32_t value,
281 base::TimeTicks timestamp,
282 ObservationSource source);
219 ~Observation(); 283 ~Observation();
220 284
221 // Value of the observation. 285 // Value of the observation.
222 const int32_t value; 286 const int32_t value;
223 287
224 // Time when the observation was taken. 288 // Time when the observation was taken.
225 const base::TimeTicks timestamp; 289 const base::TimeTicks timestamp;
290
291 // The source of the observation.
292 ObservationSource source;
226 }; 293 };
227 294
228 // Holds an observation and its weight. 295 // Holds an observation and its weight.
229 struct NET_EXPORT_PRIVATE WeightedObservation { 296 struct NET_EXPORT_PRIVATE WeightedObservation {
230 WeightedObservation(int32_t value, double weight) 297 WeightedObservation(int32_t value, double weight)
231 : value(value), weight(weight) {} 298 : value(value), weight(weight) {}
232 WeightedObservation(const WeightedObservation& other) 299 WeightedObservation(const WeightedObservation& other)
233 : WeightedObservation(other.value, other.weight) {} 300 : WeightedObservation(other.value, other.weight) {}
234 301
235 WeightedObservation& operator=(const WeightedObservation& other) { 302 WeightedObservation& operator=(const WeightedObservation& other) {
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 const base::TimeTicks& begin_timestamp, 438 const base::TimeTicks& begin_timestamp,
372 int percentile) const; 439 int percentile) const;
373 440
374 // Returns the current network ID checking by calling the platform APIs. 441 // Returns the current network ID checking by calling the platform APIs.
375 // Virtualized for testing. 442 // Virtualized for testing.
376 virtual NetworkID GetCurrentNetworkID() const; 443 virtual NetworkID GetCurrentNetworkID() const;
377 444
378 // Writes the estimated quality of the current network to the cache. 445 // Writes the estimated quality of the current network to the cache.
379 void CacheNetworkQualityEstimate(); 446 void CacheNetworkQualityEstimate();
380 447
448 void NotifyObserversOfRTT(const Observation& observation);
449
450 void NotifyObserversOfThroughput(const Observation& observation);
451
381 // Records the UMA related to RTT. 452 // Records the UMA related to RTT.
382 void RecordRTTUMA(int32_t estimated_value_msec, 453 void RecordRTTUMA(int32_t estimated_value_msec,
383 int32_t actual_value_msec) const; 454 int32_t actual_value_msec) const;
384 455
385 // Returns true only if |request| can be used for network quality estimation. 456 // 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 457 // Only the requests that go over network are considered to provide useful
387 // observations. 458 // observations.
388 bool RequestProvidesUsefulObservations(const URLRequest& request) const; 459 bool RequestProvidesUsefulObservations(const URLRequest& request) const;
389 460
390 // Determines if the requests to local host can be used in estimating the 461 // Determines if the requests to local host can be used in estimating the
391 // network quality. Set to true only for tests. 462 // network quality. Set to true only for tests.
392 const bool allow_localhost_requests_; 463 bool allow_localhost_requests_;
393 464
394 // Determines if the responses smaller than |kMinTransferSizeInBytes| 465 // Determines if the responses smaller than |kMinTransferSizeInBytes|
395 // or shorter than |kMinTransferSizeInBytes| can be used in estimating the 466 // or shorter than |kMinTransferSizeInBytes| can be used in estimating the
396 // network quality. Set to true only for tests. 467 // network quality. Set to true only for tests.
397 const bool allow_small_responses_; 468 bool allow_small_responses_;
398 469
399 // Time when last connection change was observed. 470 // Time when last connection change was observed.
400 base::TimeTicks last_connection_change_; 471 base::TimeTicks last_connection_change_;
401 472
402 // ID of the current network. 473 // ID of the current network.
403 NetworkID current_network_id_; 474 NetworkID current_network_id_;
404 475
405 // Peak network quality (fastest round-trip-time (RTT) and highest 476 // Peak network quality (fastest round-trip-time (RTT) and highest
406 // downstream throughput) measured since last connectivity change. RTT is 477 // downstream throughput) measured since last connectivity change. RTT is
407 // measured from time the request is sent until the first byte received. 478 // measured from time the request is sent until the first byte received.
(...skipping 17 matching lines...) Expand all
425 NetworkQuality 496 NetworkQuality
426 default_observations_[NetworkChangeNotifier::CONNECTION_LAST + 1]; 497 default_observations_[NetworkChangeNotifier::CONNECTION_LAST + 1];
427 498
428 // Estimated network quality. Updated on mainframe requests. 499 // Estimated network quality. Updated on mainframe requests.
429 NetworkQuality estimated_median_network_quality_; 500 NetworkQuality estimated_median_network_quality_;
430 501
431 // ExternalEstimateProvider that provides network quality using operating 502 // ExternalEstimateProvider that provides network quality using operating
432 // system APIs. May be NULL. 503 // system APIs. May be NULL.
433 const scoped_ptr<ExternalEstimateProvider> external_estimates_provider_; 504 const scoped_ptr<ExternalEstimateProvider> external_estimates_provider_;
434 505
506 // Observer lists for round trip times and throughput measurements.
507 scoped_refptr<base::ObserverListThreadSafe<RTTObserver>> rtt_observer_list_;
508 scoped_refptr<base::ObserverListThreadSafe<ThroughputObserver>>
509 throughput_observer_list_;
510
435 base::ThreadChecker thread_checker_; 511 base::ThreadChecker thread_checker_;
436 512
437 DISALLOW_COPY_AND_ASSIGN(NetworkQualityEstimator); 513 DISALLOW_COPY_AND_ASSIGN(NetworkQualityEstimator);
438 }; 514 };
439 515
440 } // namespace net 516 } // namespace net
441 517
442 #endif // NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_ 518 #endif // NET_BASE_NETWORK_QUALITY_ESTIMATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698