Cast: Skip receiver log messages with time delta that can't be encoded.
[chromium-blink-merge.git] / content / child / resource_dispatcher.cc
blobacb291a436e4fe44d63bec932a399ba73bd1727c
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;
34 namespace content {
36 namespace {
38 // Converts |time| from a remote to local TimeTicks, overwriting the original
39 // value.
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();
48 } // namespace
50 static void CrashOnMapFailure() {
51 #if defined(OS_WIN)
52 DWORD last_err = GetLastError();
53 base::debug::Alias(&last_err);
54 #endif
55 CHECK(false);
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 {
70 public:
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;
83 private:
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
91 // appending data.
92 ResourceHostMsg_Request request_;
94 // ID for the request, valid once Start()ed, -1 if not valid yet.
95 int request_id_;
97 // The routing id used when sending IPC messages.
98 int routing_id_;
100 // The security origin of the frame that initiates this request.
101 GURL frame_origin_;
103 bool is_synchronous_request_;
106 IPCResourceLoaderBridge::IPCResourceLoaderBridge(
107 ResourceDispatcher* dispatcher,
108 const ResourceLoaderBridge::RequestInfo& request_info)
109 : peer_(NULL),
110 dispatcher_(dispatcher),
111 request_id_(-1),
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();
146 } else {
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";
185 return false;
188 peer_ = peer;
190 // generate the request ID, and append it to the message
191 request_id_ = dispatcher_->AddPendingRequest(peer_,
192 request_.resource_type,
193 request_.origin_pid,
194 frame_origin_,
195 request_.url);
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";
204 return;
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";
218 return;
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";
228 return;
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;
238 return;
241 request_id_ = MakeRequestID();
242 is_synchronous_request_ = true;
244 SyncLoadResult result;
245 IPC::SyncMessage* msg = new ResourceHostMsg_SyncLoad(routing_id_, request_id_,
246 request_, &result);
247 // NOTE: This may pump events (see RenderThread::Send).
248 if (!dispatcher_->message_sender()->Send(msg)) {
249 response->error_code = net::ERR_FAILED;
250 return;
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),
271 weak_factory_(this),
272 delegate_(NULL),
273 io_timestamp_(base::TimeTicks()) {
276 ResourceDispatcher::~ResourceDispatcher() {
279 // ResourceDispatcher implementation ------------------------------------------
281 bool ResourceDispatcher::OnMessageReceived(const IPC::Message& message) {
282 if (!IsResourceDispatcherMessage(message)) {
283 return false;
286 int request_id;
288 PickleIterator iter(message);
289 if (!message.ReadInt(&iter, &request_id)) {
290 NOTREACHED() << "malformed resource message";
291 return true;
294 PendingRequestInfo* request_info = GetPendingRequestInfo(request_id);
295 if (!request_info) {
296 // Release resources in the message if it is a data message.
297 ReleaseResourcesInDataMessage(message);
298 return true;
301 if (request_info->is_deferred) {
302 request_info->deferred_message_queue.push_back(new IPC::Message(message));
303 return true;
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));
314 return true;
318 DispatchMessage(message);
319 return true;
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.
327 return NULL;
329 return &(it->second);
332 void ResourceDispatcher::OnUploadProgress(int request_id, int64 position,
333 int64 size) {
334 PendingRequestInfo* request_info = GetPendingRequestInfo(request_id);
335 if (!request_info)
336 return;
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);
348 if (!request_info)
349 return;
350 request_info->response_start = ConsumeIOTimestamp();
352 if (delegate_) {
353 ResourceLoaderBridge::Peer* new_peer =
354 delegate_->OnReceivedResponse(
355 request_info->peer, response_head.mime_type, request_info->url);
356 if (new_peer)
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);
374 if (!request_info)
375 return;
377 if (data.size())
378 request_info->peer->OnReceivedCachedMetadata(&data.front(), data.size());
381 void ResourceDispatcher::OnSetDataBuffer(int request_id,
382 base::SharedMemoryHandle shm_handle,
383 int shm_size,
384 base::ProcessId renderer_pid) {
385 TRACE_EVENT0("loader", "ResourceDispatcher::OnSetDataBuffer");
386 PendingRequestInfo* request_info = GetPendingRequestInfo(request_id);
387 if (!request_info)
388 return;
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);
397 if (!ok) {
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);
405 CrashOnMapFailure();
406 return;
409 request_info->buffer_size = shm_size;
412 void ResourceDispatcher::OnReceivedData(int request_id,
413 int data_offset,
414 int data_length,
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
425 // this scope.
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());
431 CHECK(data_ptr);
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,
462 int data_len,
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);
469 if (!request_info)
470 return;
472 request_info->peer->OnDownloadedData(data_len, encoded_data_length);
475 void ResourceDispatcher::OnReceivedRedirect(
476 int request_id,
477 const GURL& new_url,
478 const ResourceResponseHead& response_head) {
479 TRACE_EVENT0("loader", "ResourceDispatcher::OnReceivedRedirect");
480 PendingRequestInfo* request_info = GetPendingRequestInfo(request_id);
481 if (!request_info)
482 return;
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);
495 if (!request_info)
496 return;
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);
507 } else {
508 CancelPendingRequest(request_id);
512 void ResourceDispatcher::FollowPendingRedirect(
513 int request_id,
514 PendingRequestInfo& request_info) {
515 IPC::Message* msg = request_info.pending_redirect_message.release();
516 if (msg)
517 message_sender()->Send(msg);
520 void ResourceDispatcher::OnRequestComplete(
521 int request_id,
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);
527 if (!request_info)
528 return;
529 request_info->completion_time = ConsumeIOTimestamp();
530 request_info->buffer.reset();
531 request_info->buffer_size = 0;
533 ResourceLoaderBridge::Peer* peer = request_info->peer;
535 if (delegate_) {
536 ResourceLoaderBridge::Peer* new_peer =
537 delegate_->OnRequestComplete(
538 request_info->peer, request_info->resource_type,
539 request_complete_data.error_code);
540 if (new_peer)
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
548 // die immediately.
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,
560 int origin_pid,
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);
567 return id;
570 bool ResourceDispatcher::RemovePendingRequest(int request_id) {
571 PendingRequestList::iterator it = pending_requests_.find(request_id);
572 if (it == pending_requests_.end())
573 return false;
575 SiteIsolationPolicy::OnRequestComplete(request_id);
576 PendingRequestInfo& request_info = it->second;
577 ReleaseResourcesInMessageQueue(&request_info.deferred_message_queue);
578 pending_requests_.erase(it);
580 return true;
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";
587 return;
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";
599 return;
601 PendingRequestInfo& request_info = it->second;
602 if (value) {
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(
610 FROM_HERE,
611 base::Bind(&ResourceDispatcher::FlushDeferredMessages,
612 weak_factory_.GetWeakPtr(),
613 request_id));
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()
625 : peer(NULL),
626 resource_type(ResourceType::SUB_RESOURCE),
627 is_deferred(false),
628 buffer_size(0) {
631 ResourceDispatcher::PendingRequestInfo::PendingRequestInfo(
632 webkit_glue::ResourceLoaderBridge::Peer* peer,
633 ResourceType::Type resource_type,
634 int origin_pid,
635 const GURL& frame_origin,
636 const GURL& request_url)
637 : peer(peer),
638 resource_type(resource_type),
639 origin_pid(origin_pid),
640 is_deferred(false),
641 url(request_url),
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.
666 return;
667 PendingRequestInfo& request_info = it->second;
668 if (request_info.is_deferred)
669 return;
670 // Because message handlers could result in request_info being destroyed,
671 // we need to work with a stack reference to the deferred queue.
672 MessageQueue q;
673 q.swap(request_info.deferred_message_queue);
674 while (!q.empty()) {
675 IPC::Message* m = q.front();
676 q.pop_front();
677 DispatchMessage(*m);
678 delete m;
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);
688 return;
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()) {
709 return;
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();
754 return result;
757 // static
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:
769 return true;
771 default:
772 break;
775 return false;
778 // static
779 void ResourceDispatcher::ReleaseResourcesInDataMessage(
780 const IPC::Message& message) {
781 PickleIterator iter(message);
782 int request_id;
783 if (!message.ReadInt(&iter, &request_id)) {
784 NOTREACHED() << "malformed resource message";
785 return;
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,
793 &iter,
794 &shm_handle)) {
795 if (base::SharedMemory::IsHandleValid(shm_handle))
796 base::SharedMemory::CloseHandle(shm_handle);
801 // static
802 void ResourceDispatcher::ReleaseResourcesInMessageQueue(MessageQueue* queue) {
803 while (!queue->empty()) {
804 IPC::Message* message = queue->front();
805 ReleaseResourcesInDataMessage(*message);
806 queue->pop_front();
807 delete message;
811 } // namespace content