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
3 // found in the LICENSE file.
5 // See http://dev.chromium.org/developers/design-documents/multi-process-resource-loading
7 #include "content/child/resource_dispatcher.h"
9 #include "base/basictypes.h"
10 #include "base/bind.h"
11 #include "base/compiler_specific.h"
12 #include "base/debug/alias.h"
13 #include "base/files/file_path.h"
14 #include "base/memory/shared_memory.h"
15 #include "base/message_loop/message_loop.h"
16 #include "base/metrics/histogram.h"
17 #include "base/strings/string_util.h"
18 #include "content/child/request_extra_data.h"
19 #include "content/child/site_isolation_policy.h"
20 #include "content/common/inter_process_time_ticks_converter.h"
21 #include "content/common/resource_messages.h"
22 #include "content/public/child/resource_dispatcher_delegate.h"
23 #include "content/public/common/resource_response.h"
24 #include "net/base/net_errors.h"
25 #include "net/base/net_util.h"
26 #include "net/base/request_priority.h"
27 #include "net/http/http_response_headers.h"
28 #include "webkit/common/resource_type.h"
30 using webkit_glue::ResourceLoaderBridge
;
31 using webkit_glue::ResourceRequestBody
;
32 using webkit_glue::ResourceResponseInfo
;
38 // Converts |time| from a remote to local TimeTicks, overwriting the original
40 void RemoteToLocalTimeTicks(
41 const InterProcessTimeTicksConverter
& converter
,
42 base::TimeTicks
* time
) {
43 RemoteTimeTicks remote_time
= RemoteTimeTicks::FromTimeTicks(*time
);
44 *time
= converter
.ToLocalTimeTicks(remote_time
).ToTimeTicks();
50 static void CrashOnMapFailure() {
52 DWORD last_err
= GetLastError();
53 base::debug::Alias(&last_err
);
58 // Each resource request is assigned an ID scoped to this process.
59 static int MakeRequestID() {
60 // NOTE: The resource_dispatcher_host also needs probably unique
61 // request_ids, so they count down from -2 (-1 is a special we're
62 // screwed value), while the renderer process counts up.
63 static int next_request_id
= 0;
64 return next_request_id
++;
67 // ResourceLoaderBridge implementation ----------------------------------------
69 class IPCResourceLoaderBridge
: public ResourceLoaderBridge
{
71 IPCResourceLoaderBridge(ResourceDispatcher
* dispatcher
,
72 const ResourceLoaderBridge::RequestInfo
& request_info
);
73 virtual ~IPCResourceLoaderBridge();
75 // ResourceLoaderBridge
76 virtual void SetRequestBody(ResourceRequestBody
* request_body
) OVERRIDE
;
77 virtual bool Start(Peer
* peer
) OVERRIDE
;
78 virtual void Cancel() OVERRIDE
;
79 virtual void SetDefersLoading(bool value
) OVERRIDE
;
80 virtual void DidChangePriority(net::RequestPriority new_priority
) OVERRIDE
;
81 virtual void SyncLoad(SyncLoadResponse
* response
) OVERRIDE
;
84 ResourceLoaderBridge::Peer
* peer_
;
86 // The resource dispatcher for this loader. The bridge doesn't own it, but
87 // it's guaranteed to outlive the bridge.
88 ResourceDispatcher
* dispatcher_
;
90 // The request to send, created on initialization for modification and
92 ResourceHostMsg_Request request_
;
94 // ID for the request, valid once Start()ed, -1 if not valid yet.
97 // The routing id used when sending IPC messages.
100 // The security origin of the frame that initiates this request.
103 bool is_synchronous_request_
;
106 IPCResourceLoaderBridge::IPCResourceLoaderBridge(
107 ResourceDispatcher
* dispatcher
,
108 const ResourceLoaderBridge::RequestInfo
& request_info
)
110 dispatcher_(dispatcher
),
112 routing_id_(request_info
.routing_id
),
113 is_synchronous_request_(false) {
114 DCHECK(dispatcher_
) << "no resource dispatcher";
115 request_
.method
= request_info
.method
;
116 request_
.url
= request_info
.url
;
117 request_
.first_party_for_cookies
= request_info
.first_party_for_cookies
;
118 request_
.referrer
= request_info
.referrer
;
119 request_
.referrer_policy
= request_info
.referrer_policy
;
120 request_
.headers
= request_info
.headers
;
121 request_
.load_flags
= request_info
.load_flags
;
122 request_
.origin_pid
= request_info
.requestor_pid
;
123 request_
.resource_type
= request_info
.request_type
;
124 request_
.priority
= request_info
.priority
;
125 request_
.request_context
= request_info
.request_context
;
126 request_
.appcache_host_id
= request_info
.appcache_host_id
;
127 request_
.download_to_file
= request_info
.download_to_file
;
128 request_
.has_user_gesture
= request_info
.has_user_gesture
;
129 if (request_info
.extra_data
) {
130 RequestExtraData
* extra_data
=
131 static_cast<RequestExtraData
*>(request_info
.extra_data
);
132 request_
.visiblity_state
= extra_data
->visibility_state();
133 request_
.render_frame_id
= extra_data
->render_frame_id();
134 request_
.is_main_frame
= extra_data
->is_main_frame();
135 request_
.parent_is_main_frame
= extra_data
->parent_is_main_frame();
136 request_
.parent_render_frame_id
= extra_data
->parent_render_frame_id();
137 request_
.allow_download
= extra_data
->allow_download();
138 request_
.transition_type
= extra_data
->transition_type();
139 request_
.should_replace_current_entry
=
140 extra_data
->should_replace_current_entry();
141 request_
.transferred_request_child_id
=
142 extra_data
->transferred_request_child_id();
143 request_
.transferred_request_request_id
=
144 extra_data
->transferred_request_request_id();
145 frame_origin_
= extra_data
->frame_origin();
147 request_
.visiblity_state
= blink::WebPageVisibilityStateVisible
;
148 request_
.render_frame_id
= MSG_ROUTING_NONE
;
149 request_
.is_main_frame
= false;
150 request_
.parent_is_main_frame
= false;
151 request_
.parent_render_frame_id
= -1;
152 request_
.allow_download
= true;
153 request_
.transition_type
= PAGE_TRANSITION_LINK
;
154 request_
.should_replace_current_entry
= false;
155 request_
.transferred_request_child_id
= -1;
156 request_
.transferred_request_request_id
= -1;
160 IPCResourceLoaderBridge::~IPCResourceLoaderBridge() {
161 // we remove our hook for the resource dispatcher only when going away, since
162 // it doesn't keep track of whether we've force terminated the request
163 if (request_id_
>= 0) {
164 // this operation may fail, as the dispatcher will have preemptively
165 // removed us when the renderer sends the ReceivedAllData message.
166 dispatcher_
->RemovePendingRequest(request_id_
);
168 if (request_
.download_to_file
) {
169 dispatcher_
->message_sender()->Send(
170 new ResourceHostMsg_ReleaseDownloadedFile(request_id_
));
175 void IPCResourceLoaderBridge::SetRequestBody(
176 ResourceRequestBody
* request_body
) {
177 DCHECK(request_id_
== -1) << "request already started";
178 request_
.request_body
= request_body
;
181 // Writes a footer on the message and sends it
182 bool IPCResourceLoaderBridge::Start(Peer
* peer
) {
183 if (request_id_
!= -1) {
184 NOTREACHED() << "Starting a request twice";
190 // generate the request ID, and append it to the message
191 request_id_
= dispatcher_
->AddPendingRequest(peer_
,
192 request_
.resource_type
,
197 return dispatcher_
->message_sender()->Send(
198 new ResourceHostMsg_RequestResource(routing_id_
, request_id_
, request_
));
201 void IPCResourceLoaderBridge::Cancel() {
202 if (request_id_
< 0) {
203 NOTREACHED() << "Trying to cancel an unstarted request";
207 if (!is_synchronous_request_
)
208 dispatcher_
->CancelPendingRequest(request_id_
);
210 // We can't remove the request ID from the resource dispatcher because more
211 // data might be pending. Sending the cancel message may cause more data
212 // to be flushed, and will then cause a complete message to be sent.
215 void IPCResourceLoaderBridge::SetDefersLoading(bool value
) {
216 if (request_id_
< 0) {
217 NOTREACHED() << "Trying to (un)defer an unstarted request";
221 dispatcher_
->SetDefersLoading(request_id_
, value
);
224 void IPCResourceLoaderBridge::DidChangePriority(
225 net::RequestPriority new_priority
) {
226 if (request_id_
< 0) {
227 NOTREACHED() << "Trying to change priority of an unstarted request";
231 dispatcher_
->DidChangePriority(routing_id_
, request_id_
, new_priority
);
234 void IPCResourceLoaderBridge::SyncLoad(SyncLoadResponse
* response
) {
235 if (request_id_
!= -1) {
236 NOTREACHED() << "Starting a request twice";
237 response
->error_code
= net::ERR_FAILED
;
241 request_id_
= MakeRequestID();
242 is_synchronous_request_
= true;
244 SyncLoadResult result
;
245 IPC::SyncMessage
* msg
= new ResourceHostMsg_SyncLoad(routing_id_
, request_id_
,
247 // NOTE: This may pump events (see RenderThread::Send).
248 if (!dispatcher_
->message_sender()->Send(msg
)) {
249 response
->error_code
= net::ERR_FAILED
;
253 response
->error_code
= result
.error_code
;
254 response
->url
= result
.final_url
;
255 response
->headers
= result
.headers
;
256 response
->mime_type
= result
.mime_type
;
257 response
->charset
= result
.charset
;
258 response
->request_time
= result
.request_time
;
259 response
->response_time
= result
.response_time
;
260 response
->encoded_data_length
= result
.encoded_data_length
;
261 response
->load_timing
= result
.load_timing
;
262 response
->devtools_info
= result
.devtools_info
;
263 response
->data
.swap(result
.data
);
264 response
->download_file_path
= result
.download_file_path
;
267 // ResourceDispatcher ---------------------------------------------------------
269 ResourceDispatcher::ResourceDispatcher(IPC::Sender
* sender
)
270 : message_sender_(sender
),
273 io_timestamp_(base::TimeTicks()) {
276 ResourceDispatcher::~ResourceDispatcher() {
279 // ResourceDispatcher implementation ------------------------------------------
281 bool ResourceDispatcher::OnMessageReceived(const IPC::Message
& message
) {
282 if (!IsResourceDispatcherMessage(message
)) {
288 PickleIterator
iter(message
);
289 if (!message
.ReadInt(&iter
, &request_id
)) {
290 NOTREACHED() << "malformed resource message";
294 PendingRequestInfo
* request_info
= GetPendingRequestInfo(request_id
);
296 // Release resources in the message if it is a data message.
297 ReleaseResourcesInDataMessage(message
);
301 if (request_info
->is_deferred
) {
302 request_info
->deferred_message_queue
.push_back(new IPC::Message(message
));
305 // Make sure any deferred messages are dispatched before we dispatch more.
306 if (!request_info
->deferred_message_queue
.empty()) {
307 FlushDeferredMessages(request_id
);
308 // The request could have been deferred now. If yes then the current
309 // message has to be queued up. The request_info instance should remain
310 // valid here as there are pending messages for it.
311 DCHECK(pending_requests_
.find(request_id
) != pending_requests_
.end());
312 if (request_info
->is_deferred
) {
313 request_info
->deferred_message_queue
.push_back(new IPC::Message(message
));
318 DispatchMessage(message
);
322 ResourceDispatcher::PendingRequestInfo
*
323 ResourceDispatcher::GetPendingRequestInfo(int request_id
) {
324 PendingRequestList::iterator it
= pending_requests_
.find(request_id
);
325 if (it
== pending_requests_
.end()) {
326 // This might happen for kill()ed requests on the webkit end.
329 return &(it
->second
);
332 void ResourceDispatcher::OnUploadProgress(int request_id
, int64 position
,
334 PendingRequestInfo
* request_info
= GetPendingRequestInfo(request_id
);
338 request_info
->peer
->OnUploadProgress(position
, size
);
340 // Acknowledge receipt
341 message_sender()->Send(new ResourceHostMsg_UploadProgress_ACK(request_id
));
344 void ResourceDispatcher::OnReceivedResponse(
345 int request_id
, const ResourceResponseHead
& response_head
) {
346 TRACE_EVENT0("loader", "ResourceDispatcher::OnReceivedResponse");
347 PendingRequestInfo
* request_info
= GetPendingRequestInfo(request_id
);
350 request_info
->response_start
= ConsumeIOTimestamp();
353 ResourceLoaderBridge::Peer
* new_peer
=
354 delegate_
->OnReceivedResponse(
355 request_info
->peer
, response_head
.mime_type
, request_info
->url
);
357 request_info
->peer
= new_peer
;
360 ResourceResponseInfo renderer_response_info
;
361 ToResourceResponseInfo(*request_info
, response_head
, &renderer_response_info
);
362 SiteIsolationPolicy::OnReceivedResponse(request_id
,
363 request_info
->frame_origin
,
364 request_info
->response_url
,
365 request_info
->resource_type
,
366 request_info
->origin_pid
,
367 renderer_response_info
);
368 request_info
->peer
->OnReceivedResponse(renderer_response_info
);
371 void ResourceDispatcher::OnReceivedCachedMetadata(
372 int request_id
, const std::vector
<char>& data
) {
373 PendingRequestInfo
* request_info
= GetPendingRequestInfo(request_id
);
378 request_info
->peer
->OnReceivedCachedMetadata(&data
.front(), data
.size());
381 void ResourceDispatcher::OnSetDataBuffer(int request_id
,
382 base::SharedMemoryHandle shm_handle
,
384 base::ProcessId renderer_pid
) {
385 TRACE_EVENT0("loader", "ResourceDispatcher::OnSetDataBuffer");
386 PendingRequestInfo
* request_info
= GetPendingRequestInfo(request_id
);
390 bool shm_valid
= base::SharedMemory::IsHandleValid(shm_handle
);
391 CHECK((shm_valid
&& shm_size
> 0) || (!shm_valid
&& !shm_size
));
393 request_info
->buffer
.reset(
394 new base::SharedMemory(shm_handle
, true)); // read only
396 bool ok
= request_info
->buffer
->Map(shm_size
);
398 // Added to help debug crbug/160401.
399 base::ProcessId renderer_pid_copy
= renderer_pid
;
400 base::debug::Alias(&renderer_pid_copy
);
402 base::SharedMemoryHandle shm_handle_copy
= shm_handle
;
403 base::debug::Alias(&shm_handle_copy
);
409 request_info
->buffer_size
= shm_size
;
412 void ResourceDispatcher::OnReceivedData(int request_id
,
415 int encoded_data_length
) {
416 TRACE_EVENT0("loader", "ResourceDispatcher::OnReceivedData");
417 DCHECK_GT(data_length
, 0);
418 PendingRequestInfo
* request_info
= GetPendingRequestInfo(request_id
);
419 if (request_info
&& data_length
> 0) {
420 CHECK(base::SharedMemory::IsHandleValid(request_info
->buffer
->handle()));
421 CHECK_GE(request_info
->buffer_size
, data_offset
+ data_length
);
423 // Ensure that the SHM buffer remains valid for the duration of this scope.
424 // It is possible for CancelPendingRequest() to be called before we exit
426 linked_ptr
<base::SharedMemory
> retain_buffer(request_info
->buffer
);
428 base::TimeTicks time_start
= base::TimeTicks::Now();
430 const char* data_ptr
= static_cast<char*>(request_info
->buffer
->memory());
432 CHECK(data_ptr
+ data_offset
);
434 // Check whether this response data is compliant with our cross-site
435 // document blocking policy.
436 std::string alternative_data
;
437 bool blocked_response
= SiteIsolationPolicy::ShouldBlockResponse(
438 request_id
, data_ptr
+ data_offset
, data_length
, &alternative_data
);
440 // When the response is not blocked.
441 if (!blocked_response
) {
442 request_info
->peer
->OnReceivedData(
443 data_ptr
+ data_offset
, data_length
, encoded_data_length
);
444 } else if (alternative_data
.size() > 0) {
445 // When the response is blocked, and when we have any alternative data to
446 // send to the renderer. When |alternative_data| is zero-sized, we do not
447 // call peer's callback.
448 request_info
->peer
->OnReceivedData(alternative_data
.data(),
449 alternative_data
.size(),
450 alternative_data
.size());
453 UMA_HISTOGRAM_TIMES("ResourceDispatcher.OnReceivedDataTime",
454 base::TimeTicks::Now() - time_start
);
457 // Acknowledge the reception of this data.
458 message_sender()->Send(new ResourceHostMsg_DataReceived_ACK(request_id
));
461 void ResourceDispatcher::OnDownloadedData(int request_id
,
463 int encoded_data_length
) {
464 // Acknowledge the reception of this message.
465 message_sender()->Send(
466 new ResourceHostMsg_DataDownloaded_ACK(request_id
));
468 PendingRequestInfo
* request_info
= GetPendingRequestInfo(request_id
);
472 request_info
->peer
->OnDownloadedData(data_len
, encoded_data_length
);
475 void ResourceDispatcher::OnReceivedRedirect(
478 const ResourceResponseHead
& response_head
) {
479 TRACE_EVENT0("loader", "ResourceDispatcher::OnReceivedRedirect");
480 PendingRequestInfo
* request_info
= GetPendingRequestInfo(request_id
);
483 request_info
->response_start
= ConsumeIOTimestamp();
485 bool has_new_first_party_for_cookies
= false;
486 GURL new_first_party_for_cookies
;
487 ResourceResponseInfo renderer_response_info
;
488 ToResourceResponseInfo(*request_info
, response_head
, &renderer_response_info
);
489 if (request_info
->peer
->OnReceivedRedirect(new_url
, renderer_response_info
,
490 &has_new_first_party_for_cookies
,
491 &new_first_party_for_cookies
)) {
492 // Double-check if the request is still around. The call above could
493 // potentially remove it.
494 request_info
= GetPendingRequestInfo(request_id
);
497 // We update the response_url here so that we can send it to
498 // SiteIsolationPolicy later when OnReceivedResponse is called.
499 request_info
->response_url
= new_url
;
500 request_info
->pending_redirect_message
.reset(
501 new ResourceHostMsg_FollowRedirect(request_id
,
502 has_new_first_party_for_cookies
,
503 new_first_party_for_cookies
));
504 if (!request_info
->is_deferred
) {
505 FollowPendingRedirect(request_id
, *request_info
);
508 CancelPendingRequest(request_id
);
512 void ResourceDispatcher::FollowPendingRedirect(
514 PendingRequestInfo
& request_info
) {
515 IPC::Message
* msg
= request_info
.pending_redirect_message
.release();
517 message_sender()->Send(msg
);
520 void ResourceDispatcher::OnRequestComplete(
522 const ResourceMsg_RequestCompleteData
& request_complete_data
) {
523 TRACE_EVENT0("loader", "ResourceDispatcher::OnRequestComplete");
524 SiteIsolationPolicy::OnRequestComplete(request_id
);
526 PendingRequestInfo
* request_info
= GetPendingRequestInfo(request_id
);
529 request_info
->completion_time
= ConsumeIOTimestamp();
530 request_info
->buffer
.reset();
531 request_info
->buffer_size
= 0;
533 ResourceLoaderBridge::Peer
* peer
= request_info
->peer
;
536 ResourceLoaderBridge::Peer
* new_peer
=
537 delegate_
->OnRequestComplete(
538 request_info
->peer
, request_info
->resource_type
,
539 request_complete_data
.error_code
);
541 request_info
->peer
= new_peer
;
544 base::TimeTicks renderer_completion_time
= ToRendererCompletionTime(
545 *request_info
, request_complete_data
.completion_time
);
546 // The request ID will be removed from our pending list in the destructor.
547 // Normally, dispatching this message causes the reference-counted request to
549 peer
->OnCompletedRequest(request_complete_data
.error_code
,
550 request_complete_data
.was_ignored_by_handler
,
551 request_complete_data
.exists_in_cache
,
552 request_complete_data
.security_info
,
553 renderer_completion_time
,
554 request_complete_data
.encoded_data_length
);
557 int ResourceDispatcher::AddPendingRequest(
558 ResourceLoaderBridge::Peer
* callback
,
559 ResourceType::Type resource_type
,
561 const GURL
& frame_origin
,
562 const GURL
& request_url
) {
563 // Compute a unique request_id for this renderer process.
564 int id
= MakeRequestID();
565 pending_requests_
[id
] = PendingRequestInfo(
566 callback
, resource_type
, origin_pid
, frame_origin
, request_url
);
570 bool ResourceDispatcher::RemovePendingRequest(int request_id
) {
571 PendingRequestList::iterator it
= pending_requests_
.find(request_id
);
572 if (it
== pending_requests_
.end())
575 SiteIsolationPolicy::OnRequestComplete(request_id
);
576 PendingRequestInfo
& request_info
= it
->second
;
577 ReleaseResourcesInMessageQueue(&request_info
.deferred_message_queue
);
578 pending_requests_
.erase(it
);
583 void ResourceDispatcher::CancelPendingRequest(int request_id
) {
584 PendingRequestList::iterator it
= pending_requests_
.find(request_id
);
585 if (it
== pending_requests_
.end()) {
586 DVLOG(1) << "unknown request";
590 // |request_id| will be removed from |pending_requests_| when
591 // OnRequestComplete returns with ERR_ABORTED.
592 message_sender()->Send(new ResourceHostMsg_CancelRequest(request_id
));
595 void ResourceDispatcher::SetDefersLoading(int request_id
, bool value
) {
596 PendingRequestList::iterator it
= pending_requests_
.find(request_id
);
597 if (it
== pending_requests_
.end()) {
598 DLOG(ERROR
) << "unknown request";
601 PendingRequestInfo
& request_info
= it
->second
;
603 request_info
.is_deferred
= value
;
604 } else if (request_info
.is_deferred
) {
605 request_info
.is_deferred
= false;
607 FollowPendingRedirect(request_id
, request_info
);
609 base::MessageLoop::current()->PostTask(
611 base::Bind(&ResourceDispatcher::FlushDeferredMessages
,
612 weak_factory_
.GetWeakPtr(),
617 void ResourceDispatcher::DidChangePriority(
618 int routing_id
, int request_id
, net::RequestPriority new_priority
) {
619 DCHECK(ContainsKey(pending_requests_
, request_id
));
620 message_sender()->Send(new ResourceHostMsg_DidChangePriority(
621 request_id
, new_priority
));
624 ResourceDispatcher::PendingRequestInfo::PendingRequestInfo()
626 resource_type(ResourceType::SUB_RESOURCE
),
631 ResourceDispatcher::PendingRequestInfo::PendingRequestInfo(
632 webkit_glue::ResourceLoaderBridge::Peer
* peer
,
633 ResourceType::Type resource_type
,
635 const GURL
& frame_origin
,
636 const GURL
& request_url
)
638 resource_type(resource_type
),
639 origin_pid(origin_pid
),
642 frame_origin(frame_origin
),
643 response_url(request_url
),
644 request_start(base::TimeTicks::Now()) {
647 ResourceDispatcher::PendingRequestInfo::~PendingRequestInfo() {}
649 void ResourceDispatcher::DispatchMessage(const IPC::Message
& message
) {
650 IPC_BEGIN_MESSAGE_MAP(ResourceDispatcher
, message
)
651 IPC_MESSAGE_HANDLER(ResourceMsg_UploadProgress
, OnUploadProgress
)
652 IPC_MESSAGE_HANDLER(ResourceMsg_ReceivedResponse
, OnReceivedResponse
)
653 IPC_MESSAGE_HANDLER(ResourceMsg_ReceivedCachedMetadata
,
654 OnReceivedCachedMetadata
)
655 IPC_MESSAGE_HANDLER(ResourceMsg_ReceivedRedirect
, OnReceivedRedirect
)
656 IPC_MESSAGE_HANDLER(ResourceMsg_SetDataBuffer
, OnSetDataBuffer
)
657 IPC_MESSAGE_HANDLER(ResourceMsg_DataReceived
, OnReceivedData
)
658 IPC_MESSAGE_HANDLER(ResourceMsg_DataDownloaded
, OnDownloadedData
)
659 IPC_MESSAGE_HANDLER(ResourceMsg_RequestComplete
, OnRequestComplete
)
660 IPC_END_MESSAGE_MAP()
663 void ResourceDispatcher::FlushDeferredMessages(int request_id
) {
664 PendingRequestList::iterator it
= pending_requests_
.find(request_id
);
665 if (it
== pending_requests_
.end()) // The request could have become invalid.
667 PendingRequestInfo
& request_info
= it
->second
;
668 if (request_info
.is_deferred
)
670 // Because message handlers could result in request_info being destroyed,
671 // we need to work with a stack reference to the deferred queue.
673 q
.swap(request_info
.deferred_message_queue
);
675 IPC::Message
* m
= q
.front();
679 // If this request is deferred in the context of the above message, then
680 // we should honor the same and stop dispatching further messages.
681 // We need to find the request again in the list as it may have completed
682 // by now and the request_info instance above may be invalid.
683 PendingRequestList::iterator index
= pending_requests_
.find(request_id
);
684 if (index
!= pending_requests_
.end()) {
685 PendingRequestInfo
& pending_request
= index
->second
;
686 if (pending_request
.is_deferred
) {
687 pending_request
.deferred_message_queue
.swap(q
);
694 ResourceLoaderBridge
* ResourceDispatcher::CreateBridge(
695 const ResourceLoaderBridge::RequestInfo
& request_info
) {
696 return new IPCResourceLoaderBridge(this, request_info
);
699 void ResourceDispatcher::ToResourceResponseInfo(
700 const PendingRequestInfo
& request_info
,
701 const ResourceResponseHead
& browser_info
,
702 ResourceResponseInfo
* renderer_info
) const {
703 *renderer_info
= browser_info
;
704 if (request_info
.request_start
.is_null() ||
705 request_info
.response_start
.is_null() ||
706 browser_info
.request_start
.is_null() ||
707 browser_info
.response_start
.is_null() ||
708 browser_info
.load_timing
.request_start
.is_null()) {
711 InterProcessTimeTicksConverter
converter(
712 LocalTimeTicks::FromTimeTicks(request_info
.request_start
),
713 LocalTimeTicks::FromTimeTicks(request_info
.response_start
),
714 RemoteTimeTicks::FromTimeTicks(browser_info
.request_start
),
715 RemoteTimeTicks::FromTimeTicks(browser_info
.response_start
));
717 net::LoadTimingInfo
* load_timing
= &renderer_info
->load_timing
;
718 RemoteToLocalTimeTicks(converter
, &load_timing
->request_start
);
719 RemoteToLocalTimeTicks(converter
, &load_timing
->proxy_resolve_start
);
720 RemoteToLocalTimeTicks(converter
, &load_timing
->proxy_resolve_end
);
721 RemoteToLocalTimeTicks(converter
, &load_timing
->connect_timing
.dns_start
);
722 RemoteToLocalTimeTicks(converter
, &load_timing
->connect_timing
.dns_end
);
723 RemoteToLocalTimeTicks(converter
, &load_timing
->connect_timing
.connect_start
);
724 RemoteToLocalTimeTicks(converter
, &load_timing
->connect_timing
.connect_end
);
725 RemoteToLocalTimeTicks(converter
, &load_timing
->connect_timing
.ssl_start
);
726 RemoteToLocalTimeTicks(converter
, &load_timing
->connect_timing
.ssl_end
);
727 RemoteToLocalTimeTicks(converter
, &load_timing
->send_start
);
728 RemoteToLocalTimeTicks(converter
, &load_timing
->send_end
);
729 RemoteToLocalTimeTicks(converter
, &load_timing
->receive_headers_end
);
732 base::TimeTicks
ResourceDispatcher::ToRendererCompletionTime(
733 const PendingRequestInfo
& request_info
,
734 const base::TimeTicks
& browser_completion_time
) const {
735 if (request_info
.completion_time
.is_null()) {
736 return browser_completion_time
;
739 // TODO(simonjam): The optimal lower bound should be the most recent value of
740 // TimeTicks::Now() returned to WebKit. Is it worth trying to cache that?
741 // Until then, |response_start| is used as it is the most recent value
742 // returned for this request.
743 int64 result
= std::max(browser_completion_time
.ToInternalValue(),
744 request_info
.response_start
.ToInternalValue());
745 result
= std::min(result
, request_info
.completion_time
.ToInternalValue());
746 return base::TimeTicks::FromInternalValue(result
);
749 base::TimeTicks
ResourceDispatcher::ConsumeIOTimestamp() {
750 if (io_timestamp_
== base::TimeTicks())
751 return base::TimeTicks::Now();
752 base::TimeTicks result
= io_timestamp_
;
753 io_timestamp_
= base::TimeTicks();
758 bool ResourceDispatcher::IsResourceDispatcherMessage(
759 const IPC::Message
& message
) {
760 switch (message
.type()) {
761 case ResourceMsg_UploadProgress::ID
:
762 case ResourceMsg_ReceivedResponse::ID
:
763 case ResourceMsg_ReceivedCachedMetadata::ID
:
764 case ResourceMsg_ReceivedRedirect::ID
:
765 case ResourceMsg_SetDataBuffer::ID
:
766 case ResourceMsg_DataReceived::ID
:
767 case ResourceMsg_DataDownloaded::ID
:
768 case ResourceMsg_RequestComplete::ID
:
779 void ResourceDispatcher::ReleaseResourcesInDataMessage(
780 const IPC::Message
& message
) {
781 PickleIterator
iter(message
);
783 if (!message
.ReadInt(&iter
, &request_id
)) {
784 NOTREACHED() << "malformed resource message";
788 // If the message contains a shared memory handle, we should close the handle
789 // or there will be a memory leak.
790 if (message
.type() == ResourceMsg_SetDataBuffer::ID
) {
791 base::SharedMemoryHandle shm_handle
;
792 if (IPC::ParamTraits
<base::SharedMemoryHandle
>::Read(&message
,
795 if (base::SharedMemory::IsHandleValid(shm_handle
))
796 base::SharedMemory::CloseHandle(shm_handle
);
802 void ResourceDispatcher::ReleaseResourcesInMessageQueue(MessageQueue
* queue
) {
803 while (!queue
->empty()) {
804 IPC::Message
* message
= queue
->front();
805 ReleaseResourcesInDataMessage(*message
);
811 } // namespace content