OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading | 5 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc
e-loading |
6 | 6 |
7 #include "content/child/resource_dispatcher.h" | 7 #include "content/child/resource_dispatcher.h" |
8 | 8 |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/metrics/histogram.h" | 21 #include "base/metrics/histogram.h" |
22 #include "base/rand_util.h" | 22 #include "base/rand_util.h" |
23 #include "base/strings/string_util.h" | 23 #include "base/strings/string_util.h" |
24 #include "build/build_config.h" | 24 #include "build/build_config.h" |
25 #include "content/child/request_extra_data.h" | 25 #include "content/child/request_extra_data.h" |
26 #include "content/child/request_info.h" | 26 #include "content/child/request_info.h" |
27 #include "content/child/resource_scheduling_filter.h" | 27 #include "content/child/resource_scheduling_filter.h" |
28 #include "content/child/shared_memory_received_data_factory.h" | 28 #include "content/child/shared_memory_received_data_factory.h" |
29 #include "content/child/site_isolation_stats_gatherer.h" | 29 #include "content/child/site_isolation_stats_gatherer.h" |
30 #include "content/child/sync_load_response.h" | 30 #include "content/child/sync_load_response.h" |
| 31 #include "content/child/url_response_body_consumer.h" |
31 #include "content/common/inter_process_time_ticks_converter.h" | 32 #include "content/common/inter_process_time_ticks_converter.h" |
32 #include "content/common/navigation_params.h" | 33 #include "content/common/navigation_params.h" |
33 #include "content/common/resource_messages.h" | 34 #include "content/common/resource_messages.h" |
34 #include "content/common/resource_request.h" | 35 #include "content/common/resource_request.h" |
35 #include "content/common/resource_request_completion_status.h" | 36 #include "content/common/resource_request_completion_status.h" |
36 #include "content/public/child/fixed_received_data.h" | 37 #include "content/public/child/fixed_received_data.h" |
37 #include "content/public/child/request_peer.h" | 38 #include "content/public/child/request_peer.h" |
38 #include "content/public/child/resource_dispatcher_delegate.h" | 39 #include "content/public/child/resource_dispatcher_delegate.h" |
39 #include "content/public/common/content_features.h" | 40 #include "content/public/common/content_features.h" |
40 #include "content/public/common/resource_response.h" | 41 #include "content/public/common/resource_response.h" |
41 #include "content/public/common/resource_type.h" | 42 #include "content/public/common/resource_type.h" |
| 43 #include "mojo/public/cpp/bindings/binding.h" |
42 #include "net/base/net_errors.h" | 44 #include "net/base/net_errors.h" |
43 #include "net/base/request_priority.h" | 45 #include "net/base/request_priority.h" |
44 #include "net/http/http_response_headers.h" | 46 #include "net/http/http_response_headers.h" |
45 | 47 |
46 namespace content { | 48 namespace content { |
47 | 49 |
48 namespace { | 50 namespace { |
49 | 51 |
50 // Converts |time| from a remote to local TimeTicks, overwriting the original | 52 // Converts |time| from a remote to local TimeTicks, overwriting the original |
51 // value. | 53 // value. |
(...skipping 14 matching lines...) Expand all Loading... |
66 | 68 |
67 // Each resource request is assigned an ID scoped to this process. | 69 // Each resource request is assigned an ID scoped to this process. |
68 int MakeRequestID() { | 70 int MakeRequestID() { |
69 // NOTE: The resource_dispatcher_host also needs probably unique | 71 // NOTE: The resource_dispatcher_host also needs probably unique |
70 // request_ids, so they count down from -2 (-1 is a special we're | 72 // request_ids, so they count down from -2 (-1 is a special we're |
71 // screwed value), while the renderer process counts up. | 73 // screwed value), while the renderer process counts up. |
72 static int next_request_id = 0; | 74 static int next_request_id = 0; |
73 return next_request_id++; | 75 return next_request_id++; |
74 } | 76 } |
75 | 77 |
| 78 class URLLoaderClientImpl final : public mojom::URLLoaderClient { |
| 79 public: |
| 80 URLLoaderClientImpl(int request_id, ResourceDispatcher* resource_dispatcher) |
| 81 : binding_(this), |
| 82 request_id_(request_id), |
| 83 resource_dispatcher_(resource_dispatcher) {} |
| 84 ~URLLoaderClientImpl() override { |
| 85 if (body_consumer_) |
| 86 body_consumer_->Cancel(); |
| 87 } |
| 88 |
| 89 void OnReceiveResponse(const ResourceResponseHead& response_head) override { |
| 90 resource_dispatcher_->OnMessageReceived( |
| 91 ResourceMsg_ReceivedResponse(request_id_, response_head)); |
| 92 } |
| 93 |
| 94 void OnStartLoadingResponseBody( |
| 95 mojo::ScopedDataPipeConsumerHandle body) override { |
| 96 DCHECK(!body_consumer_); |
| 97 body_consumer_ = new URLResponseBodyConsumer( |
| 98 request_id_, resource_dispatcher_, std::move(body)); |
| 99 } |
| 100 |
| 101 void OnComplete(const ResourceRequestCompletionStatus& status) override { |
| 102 body_consumer_->OnComplete(status); |
| 103 } |
| 104 |
| 105 mojom::URLLoaderClientPtr CreateInterfacePtrAndBind() { |
| 106 return binding_.CreateInterfacePtrAndBind(); |
| 107 } |
| 108 |
| 109 private: |
| 110 mojo::Binding<mojom::URLLoaderClient> binding_; |
| 111 scoped_refptr<URLResponseBodyConsumer> body_consumer_; |
| 112 const int request_id_; |
| 113 ResourceDispatcher* const resource_dispatcher_; |
| 114 }; |
| 115 |
76 } // namespace | 116 } // namespace |
77 | 117 |
78 ResourceDispatcher::ResourceDispatcher( | 118 ResourceDispatcher::ResourceDispatcher( |
79 IPC::Sender* sender, | 119 IPC::Sender* sender, |
80 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner) | 120 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner) |
81 : message_sender_(sender), | 121 : message_sender_(sender), |
82 delegate_(NULL), | 122 delegate_(NULL), |
83 io_timestamp_(base::TimeTicks()), | 123 io_timestamp_(base::TimeTicks()), |
84 main_thread_task_runner_(main_thread_task_runner), | 124 main_thread_task_runner_(main_thread_task_runner), |
85 weak_factory_(this) { | 125 weak_factory_(this) { |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 if (index != pending_requests_.end()) { | 578 if (index != pending_requests_.end()) { |
539 PendingRequestInfo* pending_request = index->second.get(); | 579 PendingRequestInfo* pending_request = index->second.get(); |
540 if (pending_request->is_deferred) { | 580 if (pending_request->is_deferred) { |
541 pending_request->deferred_message_queue.swap(q); | 581 pending_request->deferred_message_queue.swap(q); |
542 return; | 582 return; |
543 } | 583 } |
544 } | 584 } |
545 } | 585 } |
546 } | 586 } |
547 | 587 |
548 void ResourceDispatcher::StartSync(const RequestInfo& request_info, | 588 void ResourceDispatcher::StartSync( |
549 ResourceRequestBodyImpl* request_body, | 589 const RequestInfo& request_info, |
550 SyncLoadResponse* response) { | 590 ResourceRequestBodyImpl* request_body, |
| 591 SyncLoadResponse* response, |
| 592 blink::WebURLRequest::LoadingIPCType ipc_type, |
| 593 mojom::URLLoaderFactory* url_loader_factory) { |
551 std::unique_ptr<ResourceRequest> request = | 594 std::unique_ptr<ResourceRequest> request = |
552 CreateRequest(request_info, request_body, NULL); | 595 CreateRequest(request_info, request_body, NULL); |
| 596 // TODO(yhirano): Use url_loader_factory otherwise. |
| 597 DCHECK_EQ(blink::WebURLRequest::LoadingIPCType::ChromeIPC, ipc_type); |
553 | 598 |
554 SyncLoadResult result; | 599 SyncLoadResult result; |
555 IPC::SyncMessage* msg = new ResourceHostMsg_SyncLoad( | 600 IPC::SyncMessage* msg = new ResourceHostMsg_SyncLoad( |
556 request_info.routing_id, MakeRequestID(), *request, &result); | 601 request_info.routing_id, MakeRequestID(), *request, &result); |
557 | 602 |
558 // NOTE: This may pump events (see RenderThread::Send). | 603 // NOTE: This may pump events (see RenderThread::Send). |
559 if (!message_sender_->Send(msg)) { | 604 if (!message_sender_->Send(msg)) { |
560 response->error_code = net::ERR_FAILED; | 605 response->error_code = net::ERR_FAILED; |
561 return; | 606 return; |
562 } | 607 } |
563 | 608 |
564 response->error_code = result.error_code; | 609 response->error_code = result.error_code; |
565 response->url = result.final_url; | 610 response->url = result.final_url; |
566 response->headers = result.headers; | 611 response->headers = result.headers; |
567 response->mime_type = result.mime_type; | 612 response->mime_type = result.mime_type; |
568 response->charset = result.charset; | 613 response->charset = result.charset; |
569 response->request_time = result.request_time; | 614 response->request_time = result.request_time; |
570 response->response_time = result.response_time; | 615 response->response_time = result.response_time; |
571 response->encoded_data_length = result.encoded_data_length; | 616 response->encoded_data_length = result.encoded_data_length; |
572 response->load_timing = result.load_timing; | 617 response->load_timing = result.load_timing; |
573 response->devtools_info = result.devtools_info; | 618 response->devtools_info = result.devtools_info; |
574 response->data.swap(result.data); | 619 response->data.swap(result.data); |
575 response->download_file_path = result.download_file_path; | 620 response->download_file_path = result.download_file_path; |
576 response->socket_address = result.socket_address; | 621 response->socket_address = result.socket_address; |
577 response->encoded_data_length = result.encoded_data_length; | 622 response->encoded_data_length = result.encoded_data_length; |
578 response->encoded_body_length = result.encoded_body_length; | 623 response->encoded_body_length = result.encoded_body_length; |
579 } | 624 } |
580 | 625 |
581 int ResourceDispatcher::StartAsync(const RequestInfo& request_info, | 626 int ResourceDispatcher::StartAsync( |
582 ResourceRequestBodyImpl* request_body, | 627 const RequestInfo& request_info, |
583 std::unique_ptr<RequestPeer> peer) { | 628 ResourceRequestBodyImpl* request_body, |
| 629 std::unique_ptr<RequestPeer> peer, |
| 630 blink::WebURLRequest::LoadingIPCType ipc_type, |
| 631 mojom::URLLoaderFactory* url_loader_factory) { |
584 GURL frame_origin; | 632 GURL frame_origin; |
585 std::unique_ptr<ResourceRequest> request = | 633 std::unique_ptr<ResourceRequest> request = |
586 CreateRequest(request_info, request_body, &frame_origin); | 634 CreateRequest(request_info, request_body, &frame_origin); |
587 | 635 |
588 // Compute a unique request_id for this renderer process. | 636 // Compute a unique request_id for this renderer process. |
589 int request_id = MakeRequestID(); | 637 int request_id = MakeRequestID(); |
590 pending_requests_[request_id] = base::WrapUnique(new PendingRequestInfo( | 638 pending_requests_[request_id] = base::WrapUnique(new PendingRequestInfo( |
591 std::move(peer), request->resource_type, request->origin_pid, | 639 std::move(peer), request->resource_type, request->origin_pid, |
592 frame_origin, request->url, request_info.download_to_file)); | 640 frame_origin, request->url, request_info.download_to_file)); |
593 | 641 |
594 if (resource_scheduling_filter_.get() && | 642 if (resource_scheduling_filter_.get() && |
595 request_info.loading_web_task_runner) { | 643 request_info.loading_web_task_runner) { |
596 resource_scheduling_filter_->SetRequestIdTaskRunner( | 644 resource_scheduling_filter_->SetRequestIdTaskRunner( |
597 request_id, | 645 request_id, |
598 request_info.loading_web_task_runner->clone()); | 646 request_info.loading_web_task_runner->clone()); |
599 } | 647 } |
600 | 648 |
601 message_sender_->Send(new ResourceHostMsg_RequestResource( | 649 if (ipc_type == blink::WebURLRequest::LoadingIPCType::Mojo) { |
602 request_info.routing_id, request_id, *request)); | 650 std::unique_ptr<URLLoaderClientImpl> client( |
| 651 new URLLoaderClientImpl(request_id, this)); |
| 652 mojom::URLLoaderPtr url_loader; |
| 653 url_loader_factory->CreateLoaderAndStart( |
| 654 GetProxy(&url_loader), request_id, *request, |
| 655 client->CreateInterfacePtrAndBind()); |
| 656 pending_requests_[request_id]->url_loader = std::move(url_loader); |
| 657 pending_requests_[request_id]->url_loader_client = std::move(client); |
| 658 } else { |
| 659 message_sender_->Send(new ResourceHostMsg_RequestResource( |
| 660 request_info.routing_id, request_id, *request)); |
| 661 } |
603 | 662 |
604 return request_id; | 663 return request_id; |
605 } | 664 } |
606 | 665 |
607 void ResourceDispatcher::ToResourceResponseInfo( | 666 void ResourceDispatcher::ToResourceResponseInfo( |
608 const PendingRequestInfo& request_info, | 667 const PendingRequestInfo& request_info, |
609 const ResourceResponseHead& browser_info, | 668 const ResourceResponseHead& browser_info, |
610 ResourceResponseInfo* renderer_info) const { | 669 ResourceResponseInfo* renderer_info) const { |
611 *renderer_info = browser_info; | 670 *renderer_info = browser_info; |
612 if (base::TimeTicks::IsConsistentAcrossProcesses() || | 671 if (base::TimeTicks::IsConsistentAcrossProcesses() || |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 *frame_origin = extra_data->frame_origin(); | 873 *frame_origin = extra_data->frame_origin(); |
815 return request; | 874 return request; |
816 } | 875 } |
817 | 876 |
818 void ResourceDispatcher::SetResourceSchedulingFilter( | 877 void ResourceDispatcher::SetResourceSchedulingFilter( |
819 scoped_refptr<ResourceSchedulingFilter> resource_scheduling_filter) { | 878 scoped_refptr<ResourceSchedulingFilter> resource_scheduling_filter) { |
820 resource_scheduling_filter_ = resource_scheduling_filter; | 879 resource_scheduling_filter_ = resource_scheduling_filter; |
821 } | 880 } |
822 | 881 |
823 } // namespace content | 882 } // namespace content |
OLD | NEW |