OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "chrome/browser/net/load_timing_observer.h" | 5 #include "chrome/browser/net/load_timing_observer.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/time.h" | 8 #include "base/time.h" |
9 #include "chrome/browser/net/chrome_net_log.h" | 9 #include "chrome/browser/net/chrome_net_log.h" |
10 #include "chrome/common/resource_response.h" | 10 #include "chrome/common/resource_response.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 tick_to_time_offset); | 37 tick_to_time_offset); |
38 } | 38 } |
39 | 39 |
40 static int32 TimeTicksToOffset( | 40 static int32 TimeTicksToOffset( |
41 const TimeTicks& time_ticks, | 41 const TimeTicks& time_ticks, |
42 LoadTimingObserver::URLRequestRecord* record) { | 42 LoadTimingObserver::URLRequestRecord* record) { |
43 return static_cast<int32>( | 43 return static_cast<int32>( |
44 (time_ticks - record->base_ticks).InMillisecondsRoundedUp()); | 44 (time_ticks - record->base_ticks).InMillisecondsRoundedUp()); |
45 } | 45 } |
46 | 46 |
47 } | 47 } // namespace |
48 | 48 |
49 LoadTimingObserver::URLRequestRecord::URLRequestRecord() | 49 LoadTimingObserver::URLRequestRecord::URLRequestRecord() |
50 : connect_job_id(net::NetLog::Source::kInvalidId), | 50 : connect_job_id(net::NetLog::Source::kInvalidId), |
51 socket_log_id(net::NetLog::Source::kInvalidId), | 51 socket_log_id(net::NetLog::Source::kInvalidId), |
52 socket_reused(false) { | 52 socket_reused(false) { |
53 } | 53 } |
54 | 54 |
55 LoadTimingObserver::LoadTimingObserver() | 55 LoadTimingObserver::LoadTimingObserver() |
56 : Observer(net::NetLog::LOG_BASIC), | 56 : ThreadSafeObserver(net::NetLog::LOG_BASIC), |
57 last_connect_job_id_(net::NetLog::Source::kInvalidId) { | 57 last_connect_job_id_(net::NetLog::Source::kInvalidId) { |
58 } | 58 } |
59 | 59 |
60 LoadTimingObserver::~LoadTimingObserver() { | 60 LoadTimingObserver::~LoadTimingObserver() { |
61 } | 61 } |
62 | 62 |
63 LoadTimingObserver::URLRequestRecord* | 63 LoadTimingObserver::URLRequestRecord* |
64 LoadTimingObserver::GetURLRequestRecord(uint32 source_id) { | 64 LoadTimingObserver::GetURLRequestRecord(uint32 source_id) { |
| 65 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 66 |
65 URLRequestToRecordMap::iterator it = url_request_to_record_.find(source_id); | 67 URLRequestToRecordMap::iterator it = url_request_to_record_.find(source_id); |
66 if (it != url_request_to_record_.end()) | 68 if (it != url_request_to_record_.end()) |
67 return &it->second; | 69 return &it->second; |
68 return NULL; | 70 return NULL; |
69 } | 71 } |
70 | 72 |
71 void LoadTimingObserver::OnAddEntry(net::NetLog::EventType type, | 73 void LoadTimingObserver::OnAddEntry(net::NetLog::EventType type, |
72 const base::TimeTicks& time, | 74 const base::TimeTicks& time, |
73 const net::NetLog::Source& source, | 75 const net::NetLog::Source& source, |
74 net::NetLog::EventPhase phase, | 76 net::NetLog::EventPhase phase, |
75 net::NetLog::EventParameters* params) { | 77 net::NetLog::EventParameters* params) { |
| 78 // The events that the Observer is interested in only occur on the IO thread. |
| 79 if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) |
| 80 return; |
76 if (source.type == net::NetLog::SOURCE_URL_REQUEST) | 81 if (source.type == net::NetLog::SOURCE_URL_REQUEST) |
77 OnAddURLRequestEntry(type, time, source, phase, params); | 82 OnAddURLRequestEntry(type, time, source, phase, params); |
78 else if (source.type == net::NetLog::SOURCE_CONNECT_JOB) | 83 else if (source.type == net::NetLog::SOURCE_CONNECT_JOB) |
79 OnAddConnectJobEntry(type, time, source, phase, params); | 84 OnAddConnectJobEntry(type, time, source, phase, params); |
80 else if (source.type == net::NetLog::SOURCE_SOCKET) | 85 else if (source.type == net::NetLog::SOURCE_SOCKET) |
81 OnAddSocketEntry(type, time, source, phase, params); | 86 OnAddSocketEntry(type, time, source, phase, params); |
82 } | 87 } |
83 | 88 |
84 // static | 89 // static |
85 void LoadTimingObserver::PopulateTimingInfo(net::URLRequest* request, | 90 void LoadTimingObserver::PopulateTimingInfo(net::URLRequest* request, |
86 ResourceResponse* response) { | 91 ResourceResponse* response) { |
| 92 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
87 if (!(request->load_flags() & net::LOAD_ENABLE_LOAD_TIMING)) | 93 if (!(request->load_flags() & net::LOAD_ENABLE_LOAD_TIMING)) |
88 return; | 94 return; |
89 | 95 |
90 ChromeNetLog* chrome_net_log = static_cast<ChromeNetLog*>( | 96 ChromeNetLog* chrome_net_log = static_cast<ChromeNetLog*>( |
91 request->net_log().net_log()); | 97 request->net_log().net_log()); |
92 if (chrome_net_log == NULL) | 98 if (chrome_net_log == NULL) |
93 return; | 99 return; |
94 | 100 |
95 uint32 source_id = request->net_log().source().id; | 101 uint32 source_id = request->net_log().source().id; |
96 LoadTimingObserver* observer = chrome_net_log->load_timing_observer(); | 102 LoadTimingObserver* observer = chrome_net_log->load_timing_observer(); |
97 LoadTimingObserver::URLRequestRecord* record = | 103 LoadTimingObserver::URLRequestRecord* record = |
98 observer->GetURLRequestRecord(source_id); | 104 observer->GetURLRequestRecord(source_id); |
99 if (record) { | 105 if (record) { |
100 response->response_head.connection_id = record->socket_log_id; | 106 response->response_head.connection_id = record->socket_log_id; |
101 response->response_head.connection_reused = record->socket_reused; | 107 response->response_head.connection_reused = record->socket_reused; |
102 response->response_head.load_timing = record->timing; | 108 response->response_head.load_timing = record->timing; |
103 } | 109 } |
104 } | 110 } |
105 | 111 |
106 void LoadTimingObserver::OnAddURLRequestEntry( | 112 void LoadTimingObserver::OnAddURLRequestEntry( |
107 net::NetLog::EventType type, | 113 net::NetLog::EventType type, |
108 const base::TimeTicks& time, | 114 const base::TimeTicks& time, |
109 const net::NetLog::Source& source, | 115 const net::NetLog::Source& source, |
110 net::NetLog::EventPhase phase, | 116 net::NetLog::EventPhase phase, |
111 net::NetLog::EventParameters* params) { | 117 net::NetLog::EventParameters* params) { |
| 118 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 119 |
112 bool is_begin = phase == net::NetLog::PHASE_BEGIN; | 120 bool is_begin = phase == net::NetLog::PHASE_BEGIN; |
113 bool is_end = phase == net::NetLog::PHASE_END; | 121 bool is_end = phase == net::NetLog::PHASE_END; |
114 | 122 |
115 if (type == net::NetLog::TYPE_URL_REQUEST_START_JOB) { | 123 if (type == net::NetLog::TYPE_URL_REQUEST_START_JOB) { |
116 if (is_begin) { | 124 if (is_begin) { |
117 // Only record timing for entries with corresponding flag. | 125 // Only record timing for entries with corresponding flag. |
118 int load_flags = static_cast<URLRequestStartEventParameters*>(params)-> | 126 int load_flags = static_cast<URLRequestStartEventParameters*>(params)-> |
119 load_flags(); | 127 load_flags(); |
120 if (!(load_flags & net::LOAD_ENABLE_LOAD_TIMING)) | 128 if (!(load_flags & net::LOAD_ENABLE_LOAD_TIMING)) |
121 return; | 129 return; |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 break; | 211 break; |
204 } | 212 } |
205 } | 213 } |
206 | 214 |
207 void LoadTimingObserver::OnAddConnectJobEntry( | 215 void LoadTimingObserver::OnAddConnectJobEntry( |
208 net::NetLog::EventType type, | 216 net::NetLog::EventType type, |
209 const base::TimeTicks& time, | 217 const base::TimeTicks& time, |
210 const net::NetLog::Source& source, | 218 const net::NetLog::Source& source, |
211 net::NetLog::EventPhase phase, | 219 net::NetLog::EventPhase phase, |
212 net::NetLog::EventParameters* params) { | 220 net::NetLog::EventParameters* params) { |
| 221 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 222 |
213 bool is_begin = phase == net::NetLog::PHASE_BEGIN; | 223 bool is_begin = phase == net::NetLog::PHASE_BEGIN; |
214 bool is_end = phase == net::NetLog::PHASE_END; | 224 bool is_end = phase == net::NetLog::PHASE_END; |
215 | 225 |
216 // Manage record lifetime based on the SOCKET_POOL_CONNECT_JOB entry. | 226 // Manage record lifetime based on the SOCKET_POOL_CONNECT_JOB entry. |
217 if (type == net::NetLog::TYPE_SOCKET_POOL_CONNECT_JOB) { | 227 if (type == net::NetLog::TYPE_SOCKET_POOL_CONNECT_JOB) { |
218 if (is_begin) { | 228 if (is_begin) { |
219 // Prevents us from passively growing the memory memory unbounded in case | 229 // Prevents us from passively growing the memory memory unbounded in case |
220 // something went wrong. Should not happen. | 230 // something went wrong. Should not happen. |
221 if (connect_job_to_record_.size() > kMaxNumEntries) { | 231 if (connect_job_to_record_.size() > kMaxNumEntries) { |
222 LOG(WARNING) << "The load timing observer connect job count has grown " | 232 LOG(WARNING) << "The load timing observer connect job count has grown " |
(...skipping 23 matching lines...) Expand all Loading... |
246 } | 256 } |
247 } | 257 } |
248 } | 258 } |
249 | 259 |
250 void LoadTimingObserver::OnAddSocketEntry( | 260 void LoadTimingObserver::OnAddSocketEntry( |
251 net::NetLog::EventType type, | 261 net::NetLog::EventType type, |
252 const base::TimeTicks& time, | 262 const base::TimeTicks& time, |
253 const net::NetLog::Source& source, | 263 const net::NetLog::Source& source, |
254 net::NetLog::EventPhase phase, | 264 net::NetLog::EventPhase phase, |
255 net::NetLog::EventParameters* params) { | 265 net::NetLog::EventParameters* params) { |
| 266 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 267 |
256 bool is_begin = phase == net::NetLog::PHASE_BEGIN; | 268 bool is_begin = phase == net::NetLog::PHASE_BEGIN; |
257 bool is_end = phase == net::NetLog::PHASE_END; | 269 bool is_end = phase == net::NetLog::PHASE_END; |
258 | 270 |
259 // Manage record lifetime based on the SOCKET_ALIVE entry. | 271 // Manage record lifetime based on the SOCKET_ALIVE entry. |
260 if (type == net::NetLog::TYPE_SOCKET_ALIVE) { | 272 if (type == net::NetLog::TYPE_SOCKET_ALIVE) { |
261 if (is_begin) { | 273 if (is_begin) { |
262 // Prevents us from passively growing the memory memory unbounded in case | 274 // Prevents us from passively growing the memory memory unbounded in case |
263 // something went wrong. Should not happen. | 275 // something went wrong. Should not happen. |
264 if (socket_to_record_.size() > kMaxNumEntries) { | 276 if (socket_to_record_.size() > kMaxNumEntries) { |
265 LOG(WARNING) << "The load timing observer socket count has grown " | 277 LOG(WARNING) << "The load timing observer socket count has grown " |
(...skipping 12 matching lines...) Expand all Loading... |
278 if (it == socket_to_record_.end()) | 290 if (it == socket_to_record_.end()) |
279 return; | 291 return; |
280 | 292 |
281 if (type == net::NetLog::TYPE_SSL_CONNECT) { | 293 if (type == net::NetLog::TYPE_SSL_CONNECT) { |
282 if (is_begin) | 294 if (is_begin) |
283 it->second.ssl_start = time; | 295 it->second.ssl_start = time; |
284 else if (is_end) | 296 else if (is_end) |
285 it->second.ssl_end = time; | 297 it->second.ssl_end = time; |
286 } | 298 } |
287 } | 299 } |
OLD | NEW |