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 "net/proxy/multi_threaded_proxy_resolver.h" | 5 #include "net/proxy/multi_threaded_proxy_resolver.h" |
6 | 6 |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "base/stringprintf.h" | 9 #include "base/stringprintf.h" |
10 #include "base/thread.h" | 10 #include "base/thread.h" |
11 #include "net/base/capturing_net_log.h" | |
12 #include "net/base/net_errors.h" | 11 #include "net/base/net_errors.h" |
12 #include "net/base/net_log.h" | |
13 #include "net/proxy/proxy_info.h" | 13 #include "net/proxy/proxy_info.h" |
14 | 14 |
15 // TODO(eroman): Have the MultiThreadedProxyResolver clear its PAC script | 15 // TODO(eroman): Have the MultiThreadedProxyResolver clear its PAC script |
16 // data when SetPacScript fails. That will reclaim memory when | 16 // data when SetPacScript fails. That will reclaim memory when |
17 // testing bogus scripts. | 17 // testing bogus scripts. |
18 | 18 |
19 namespace net { | 19 namespace net { |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
246 } | 246 } |
247 | 247 |
248 net_log_.AddEvent( | 248 net_log_.AddEvent( |
249 NetLog::TYPE_SUBMITTED_TO_RESOLVER_THREAD, | 249 NetLog::TYPE_SUBMITTED_TO_RESOLVER_THREAD, |
250 make_scoped_refptr(new NetLogIntegerParameter( | 250 make_scoped_refptr(new NetLogIntegerParameter( |
251 "thread_number", executor()->thread_number()))); | 251 "thread_number", executor()->thread_number()))); |
252 } | 252 } |
253 | 253 |
254 // Runs on the worker thread. | 254 // Runs on the worker thread. |
255 virtual void Run(MessageLoop* origin_loop) { | 255 virtual void Run(MessageLoop* origin_loop) { |
256 const size_t kNetLogBound = 50u; | |
257 worker_log_.reset(new CapturingNetLog(kNetLogBound)); | |
258 BoundNetLog bound_worker_log(NetLog::Source(), worker_log_.get()); | |
259 | |
260 ProxyResolver* resolver = executor()->resolver(); | 256 ProxyResolver* resolver = executor()->resolver(); |
261 int rv = resolver->GetProxyForURL( | 257 int rv = resolver->GetProxyForURL( |
262 url_, &results_buf_, NULL, NULL, bound_worker_log); | 258 url_, &results_buf_, NULL, NULL, net_log_); |
263 DCHECK_NE(rv, ERR_IO_PENDING); | 259 DCHECK_NE(rv, ERR_IO_PENDING); |
264 | 260 |
265 origin_loop->PostTask( | 261 origin_loop->PostTask( |
266 FROM_HERE, | 262 FROM_HERE, |
267 NewRunnableMethod(this, &GetProxyForURLJob::QueryComplete, rv)); | 263 NewRunnableMethod(this, &GetProxyForURLJob::QueryComplete, rv)); |
268 } | 264 } |
269 | 265 |
270 private: | 266 private: |
271 // Runs the completion callback on the origin thread. | 267 // Runs the completion callback on the origin thread. |
272 void QueryComplete(int result_code) { | 268 void QueryComplete(int result_code) { |
273 // The Job may have been cancelled after it was started. | 269 // The Job may have been cancelled after it was started. |
274 if (!was_cancelled()) { | 270 if (!was_cancelled()) { |
275 // Merge the load log that was generated on the worker thread, into the | |
276 // main log. | |
277 CapturingBoundNetLog bound_worker_log(NetLog::Source(), | |
278 worker_log_.release()); | |
279 bound_worker_log.AppendTo(net_log_); | |
280 | |
281 if (result_code >= OK) { // Note: unit-tests use values > 0. | 271 if (result_code >= OK) { // Note: unit-tests use values > 0. |
282 results_->Use(results_buf_); | 272 results_->Use(results_buf_); |
283 } | 273 } |
284 RunUserCallback(result_code); | 274 RunUserCallback(result_code); |
285 } | 275 } |
286 OnJobCompleted(); | 276 OnJobCompleted(); |
287 } | 277 } |
288 | 278 |
289 // Must only be used on the "origin" thread. | 279 // Must only be used on the "origin" thread. |
eroman
2010/11/30 01:43:37
This comment is no longer accurate (since |net_log
mmenke
2010/11/30 18:59:04
Added a commend that net_log_ and url_ can be used
| |
290 ProxyInfo* results_; | 280 ProxyInfo* results_; |
291 BoundNetLog net_log_; | 281 BoundNetLog net_log_; |
292 const GURL url_; | 282 const GURL url_; |
293 | 283 |
294 // Usable from within DoQuery on the worker thread. | 284 // Usable from within DoQuery on the worker thread. |
295 ProxyInfo results_buf_; | 285 ProxyInfo results_buf_; |
296 | 286 |
297 // Used to pass the captured events between DoQuery [worker thread] and | |
298 // QueryComplete [origin thread]. | |
299 scoped_ptr<CapturingNetLog> worker_log_; | |
300 | |
301 bool was_waiting_for_thread_; | 287 bool was_waiting_for_thread_; |
302 }; | 288 }; |
303 | 289 |
304 // MultiThreadedProxyResolver::Executor ---------------------------------------- | 290 // MultiThreadedProxyResolver::Executor ---------------------------------------- |
305 | 291 |
306 MultiThreadedProxyResolver::Executor::Executor( | 292 MultiThreadedProxyResolver::Executor::Executor( |
307 MultiThreadedProxyResolver* coordinator, | 293 MultiThreadedProxyResolver* coordinator, |
308 ProxyResolver* resolver, | 294 ProxyResolver* resolver, |
309 int thread_number) | 295 int thread_number) |
310 : coordinator_(coordinator), | 296 : coordinator_(coordinator), |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
567 return; | 553 return; |
568 | 554 |
569 // Get the next job to process (FIFO). Transfer it from the pending queue | 555 // Get the next job to process (FIFO). Transfer it from the pending queue |
570 // to the executor. | 556 // to the executor. |
571 scoped_refptr<Job> job = pending_jobs_.front(); | 557 scoped_refptr<Job> job = pending_jobs_.front(); |
572 pending_jobs_.pop_front(); | 558 pending_jobs_.pop_front(); |
573 executor->StartJob(job); | 559 executor->StartJob(job); |
574 } | 560 } |
575 | 561 |
576 } // namespace net | 562 } // namespace net |
OLD | NEW |