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

Unified Diff: net/base/network_quality_estimator.cc

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 remaining comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/network_quality_estimator.h ('k') | net/base/network_quality_estimator_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/network_quality_estimator.cc
diff --git a/net/base/network_quality_estimator.cc b/net/base/network_quality_estimator.cc
index 708a13c2bbf5cec591f882e6adf4d49ee9045d56..f5ad591c310a47a252d20553020e9d2156d5929a 100644
--- a/net/base/network_quality_estimator.cc
+++ b/net/base/network_quality_estimator.cc
@@ -243,16 +243,21 @@ void NetworkQualityEstimator::ObtainOperatingParams(
void NetworkQualityEstimator::AddDefaultEstimates() {
DCHECK(thread_checker_.CalledOnValidThread());
if (default_observations_[current_network_id_.type].rtt() != InvalidRTT()) {
- rtt_msec_observations_.AddObservation(Observation(
+ Observation rtt_observation(
default_observations_[current_network_id_.type].rtt().InMilliseconds(),
- base::TimeTicks::Now()));
+ base::TimeTicks::Now(), OBSERVATION_SOURCE_DEFAULT_FROM_PLATFORM);
+ rtt_msec_observations_.AddObservation(rtt_observation);
+ NotifyObserversOfRTT(rtt_observation);
}
if (default_observations_[current_network_id_.type]
.downstream_throughput_kbps() != kInvalidThroughput) {
+ Observation throughput_observation(
+ default_observations_[current_network_id_.type]
+ .downstream_throughput_kbps(),
+ base::TimeTicks::Now(), OBSERVATION_SOURCE_DEFAULT_FROM_PLATFORM);
downstream_throughput_kbps_observations_.AddObservation(
- Observation(default_observations_[current_network_id_.type]
- .downstream_throughput_kbps(),
- base::TimeTicks::Now()));
+ throughput_observation);
+ NotifyObserversOfThroughput(throughput_observation);
}
}
@@ -300,8 +305,10 @@ void NetworkQualityEstimator::NotifyHeadersReceived(const URLRequest& request) {
observed_rtt, peak_network_quality_.downstream_throughput_kbps());
}
- rtt_msec_observations_.AddObservation(
- Observation(observed_rtt.InMilliseconds(), now));
+ Observation rtt_observation(observed_rtt.InMilliseconds(), now,
+ OBSERVATION_SOURCE_URL_REQUEST);
+ rtt_msec_observations_.AddObservation(rtt_observation);
+ NotifyObserversOfRTT(rtt_observation);
// Compare the RTT observation with the estimated value and record it.
if (estimated_median_network_quality_.rtt() != InvalidRTT()) {
@@ -368,8 +375,39 @@ void NetworkQualityEstimator::NotifyRequestCompleted(
peak_network_quality_ =
NetworkQuality(peak_network_quality_.rtt(), downstream_kbps_as_integer);
+ Observation throughput_observation(downstream_kbps_as_integer, now,
+ OBSERVATION_SOURCE_URL_REQUEST);
downstream_throughput_kbps_observations_.AddObservation(
- Observation(downstream_kbps_as_integer, now));
+ throughput_observation);
+ NotifyObserversOfThroughput(throughput_observation);
+}
+
+void NetworkQualityEstimator::AddRTTObserver(RTTObserver* rtt_observer) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ rtt_observer_list_.AddObserver(rtt_observer);
+}
+
+void NetworkQualityEstimator::RemoveRTTObserver(RTTObserver* rtt_observer) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ rtt_observer_list_.RemoveObserver(rtt_observer);
+}
+
+void NetworkQualityEstimator::AddThroughputObserver(
+ ThroughputObserver* throughput_observer) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ throughput_observer_list_.AddObserver(throughput_observer);
+}
+
+void NetworkQualityEstimator::RemoveThroughputObserver(
+ ThroughputObserver* throughput_observer) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ throughput_observer_list_.RemoveObserver(throughput_observer);
+}
+
+void NetworkQualityEstimator::ConfigureForTests(bool allow_local_host_requests,
+ bool allow_smaller_responses) {
+ allow_localhost_requests_ = allow_local_host_requests,
+ allow_small_responses_ = allow_smaller_responses;
}
void NetworkQualityEstimator::RecordRTTUMA(int32_t estimated_value_msec,
@@ -587,8 +625,9 @@ bool NetworkQualityEstimator::GetRecentMedianDownlinkThroughputKbps(
}
NetworkQualityEstimator::Observation::Observation(int32_t value,
- base::TimeTicks timestamp)
- : value(value), timestamp(timestamp) {
+ base::TimeTicks timestamp,
+ ObservationSource source)
+ : value(value), timestamp(timestamp), source(source) {
DCHECK_GE(value, 0);
DCHECK(!timestamp.is_null());
}
@@ -803,10 +842,19 @@ bool NetworkQualityEstimator::ReadCachedNetworkQualityEstimate() {
DCHECK_NE(InvalidRTT(), network_quality.rtt());
DCHECK_NE(kInvalidThroughput, network_quality.downstream_throughput_kbps());
- downstream_throughput_kbps_observations_.AddObservation(Observation(
- network_quality.downstream_throughput_kbps(), base::TimeTicks::Now()));
- rtt_msec_observations_.AddObservation(Observation(
- network_quality.rtt().InMilliseconds(), base::TimeTicks::Now()));
+ Observation througphput_observation(
+ network_quality.downstream_throughput_kbps(), base::TimeTicks::Now(),
+ OBSERVATION_SOURCE_CACHED_ESTIMATE);
+ downstream_throughput_kbps_observations_.AddObservation(
+ througphput_observation);
+ NotifyObserversOfThroughput(througphput_observation);
+
+ Observation rtt_observation(network_quality.rtt().InMilliseconds(),
+ base::TimeTicks::Now(),
+ OBSERVATION_SOURCE_CACHED_ESTIMATE);
+ rtt_msec_observations_.AddObservation(rtt_observation);
+ NotifyObserversOfRTT(rtt_observation);
+
return true;
}
@@ -869,6 +917,21 @@ NetworkQualityEstimator::CreateUDPSocketPerformanceWatcher() const {
new SocketPerformanceWatcherUDP());
}
+void NetworkQualityEstimator::NotifyObserversOfRTT(
+ const Observation& observation) {
+ FOR_EACH_OBSERVER(RTTObserver, rtt_observer_list_,
+ OnRTTObservation(observation.value, observation.timestamp,
+ observation.source));
+}
+
+void NetworkQualityEstimator::NotifyObserversOfThroughput(
+ const Observation& observation) {
+ FOR_EACH_OBSERVER(
+ ThroughputObserver, throughput_observer_list_,
+ OnThroughputObservation(observation.value, observation.timestamp,
+ observation.source));
+}
+
NetworkQualityEstimator::CachedNetworkQuality::CachedNetworkQuality(
const NetworkQuality& network_quality)
: last_update_time_(base::TimeTicks::Now()),
« no previous file with comments | « net/base/network_quality_estimator.h ('k') | net/base/network_quality_estimator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698