| 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 #ifndef CONTENT_BROWSER_LOADER_ASYNC_RESOURCE_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_ASYNC_RESOURCE_HANDLER_H_ |
| 6 #define CONTENT_BROWSER_LOADER_ASYNC_RESOURCE_HANDLER_H_ | 6 #define CONTENT_BROWSER_LOADER_ASYNC_RESOURCE_HANDLER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/timer/timer.h" | 14 #include "base/timer/timer.h" |
| 15 #include "content/browser/loader/resource_handler.h" | 15 #include "content/browser/loader/resource_handler.h" |
| 16 #include "content/browser/loader/resource_message_delegate.h" | 16 #include "content/browser/loader/resource_message_delegate.h" |
| 17 #include "mojo/message_pump/handle_watcher.h" |
| 18 #include "mojo/public/cpp/system/data_pipe.h" |
| 17 #include "net/base/io_buffer.h" | 19 #include "net/base/io_buffer.h" |
| 18 #include "url/gurl.h" | 20 #include "url/gurl.h" |
| 19 | 21 |
| 20 namespace net { | 22 namespace net { |
| 21 class URLRequest; | 23 class URLRequest; |
| 22 } | 24 } |
| 23 | 25 |
| 24 namespace content { | 26 namespace content { |
| 25 class ResourceBuffer; | 27 class ResourceBuffer; |
| 26 class ResourceContext; | 28 class ResourceContext; |
| 27 class ResourceDispatcherHostImpl; | 29 class ResourceDispatcherHostImpl; |
| 28 class ResourceMessageFilter; | 30 class ResourceMessageFilter; |
| 29 class SharedIOBuffer; | 31 class SharedIOBuffer; |
| 30 | 32 |
| 31 // Used to complete an asynchronous resource request in response to resource | 33 // Used to complete an asynchronous resource request in response to resource |
| 32 // load events from the resource dispatcher host. | 34 // load events from the resource dispatcher host. |
| 33 class AsyncResourceHandler : public ResourceHandler, | 35 class AsyncResourceHandler : public ResourceHandler, |
| 34 public ResourceMessageDelegate { | 36 public ResourceMessageDelegate { |
| 35 public: | 37 public: |
| 36 AsyncResourceHandler(net::URLRequest* request, | 38 AsyncResourceHandler(net::URLRequest* request, |
| 37 ResourceDispatcherHostImpl* rdh); | 39 ResourceDispatcherHostImpl* rdh, |
| 40 bool using_mojo_data_handle); |
| 38 ~AsyncResourceHandler() override; | 41 ~AsyncResourceHandler() override; |
| 39 | 42 |
| 40 bool OnMessageReceived(const IPC::Message& message) override; | 43 bool OnMessageReceived(const IPC::Message& message) override; |
| 41 | 44 |
| 42 // ResourceHandler implementation: | 45 // ResourceHandler implementation: |
| 43 bool OnRequestRedirected(const net::RedirectInfo& redirect_info, | 46 bool OnRequestRedirected(const net::RedirectInfo& redirect_info, |
| 44 ResourceResponse* response, | 47 ResourceResponse* response, |
| 45 bool* defer) override; | 48 bool* defer) override; |
| 46 bool OnResponseStarted(ResourceResponse* response, bool* defer) override; | 49 bool OnResponseStarted(ResourceResponse* response, bool* defer) override; |
| 47 bool OnWillStart(const GURL& url, bool* defer) override; | 50 bool OnWillStart(const GURL& url, bool* defer) override; |
| 48 bool OnBeforeNetworkStart(const GURL& url, bool* defer) override; | 51 bool OnBeforeNetworkStart(const GURL& url, bool* defer) override; |
| 49 bool OnWillRead(scoped_refptr<net::IOBuffer>* buf, | 52 bool OnWillRead(scoped_refptr<net::IOBuffer>* buf, |
| 50 int* buf_size, | 53 int* buf_size, |
| 51 int min_size) override; | 54 int min_size) override; |
| 52 bool OnReadCompleted(int bytes_read, bool* defer) override; | 55 bool OnReadCompleted(int bytes_read, bool* defer) override; |
| 53 void OnResponseCompleted(const net::URLRequestStatus& status, | 56 void OnResponseCompleted(const net::URLRequestStatus& status, |
| 54 const std::string& security_info, | 57 const std::string& security_info, |
| 55 bool* defer) override; | 58 bool* defer) override; |
| 56 void OnDataDownloaded(int bytes_downloaded) override; | 59 void OnDataDownloaded(int bytes_downloaded) override; |
| 57 | 60 |
| 58 private: | 61 private: |
| 59 class InliningHelper; | 62 class InliningHelper; |
| 63 class MojoHelper; |
| 60 | 64 |
| 61 // IPC message handlers: | 65 // IPC message handlers: |
| 62 void OnFollowRedirect(int request_id); | 66 void OnFollowRedirect(int request_id); |
| 63 void OnDataReceivedACK(int request_id); | 67 void OnDataReceivedACK(int request_id); |
| 64 void OnUploadProgressACK(int request_id); | 68 void OnUploadProgressACK(int request_id); |
| 65 | 69 |
| 66 void ReportUploadProgress(); | 70 void ReportUploadProgress(); |
| 67 | 71 |
| 68 bool EnsureResourceBufferIsInitialized(); | 72 bool EnsureResourceBufferIsInitialized(); |
| 69 void ResumeIfDeferred(); | 73 void ResumeIfDeferred(); |
| 70 void OnDefer(); | 74 void OnDefer(); |
| 71 bool CheckForSufficientResource(); | 75 bool CheckForSufficientResource(); |
| 72 int CalculateEncodedDataLengthToReport(); | 76 int CalculateEncodedDataLengthToReport(); |
| 73 void RecordHistogram(); | 77 void RecordHistogram(); |
| 78 void OnWritable(MojoResult result); |
| 74 | 79 |
| 75 scoped_refptr<ResourceBuffer> buffer_; | 80 scoped_refptr<ResourceBuffer> buffer_; |
| 76 ResourceDispatcherHostImpl* rdh_; | 81 ResourceDispatcherHostImpl* rdh_; |
| 77 | 82 |
| 78 // Number of messages we've sent to the renderer that we haven't gotten an | 83 // Number of messages we've sent to the renderer that we haven't gotten an |
| 79 // ACK for. This allows us to avoid having too many messages in flight. | 84 // ACK for. This allows us to avoid having too many messages in flight. |
| 80 int pending_data_count_; | 85 int pending_data_count_; |
| 81 | 86 |
| 82 int allocation_size_; | 87 int allocation_size_; |
| 83 | 88 |
| 84 bool did_defer_; | 89 bool did_defer_; |
| 85 | 90 |
| 86 bool has_checked_for_sufficient_resources_; | 91 bool has_checked_for_sufficient_resources_; |
| 87 bool sent_received_response_msg_; | 92 bool sent_received_response_msg_; |
| 88 bool sent_data_buffer_msg_; | 93 bool sent_data_buffer_msg_; |
| 94 bool using_mojo_data_handle_; |
| 89 | 95 |
| 90 std::unique_ptr<InliningHelper> inlining_helper_; | 96 std::unique_ptr<InliningHelper> inlining_helper_; |
| 91 base::TimeTicks response_started_ticks_; | 97 base::TimeTicks response_started_ticks_; |
| 92 | 98 |
| 93 uint64_t last_upload_position_; | 99 uint64_t last_upload_position_; |
| 94 bool waiting_for_upload_progress_ack_; | 100 bool waiting_for_upload_progress_ack_; |
| 95 base::TimeTicks last_upload_ticks_; | 101 base::TimeTicks last_upload_ticks_; |
| 96 base::RepeatingTimer progress_timer_; | 102 base::RepeatingTimer progress_timer_; |
| 97 | 103 |
| 98 int64_t reported_transfer_size_; | 104 int64_t reported_transfer_size_; |
| 99 | 105 |
| 106 std::unique_ptr<MojoHelper> mojo_helper_; |
| 107 |
| 100 DISALLOW_COPY_AND_ASSIGN(AsyncResourceHandler); | 108 DISALLOW_COPY_AND_ASSIGN(AsyncResourceHandler); |
| 101 }; | 109 }; |
| 102 | 110 |
| 103 } // namespace content | 111 } // namespace content |
| 104 | 112 |
| 105 #endif // CONTENT_BROWSER_LOADER_ASYNC_RESOURCE_HANDLER_H_ | 113 #endif // CONTENT_BROWSER_LOADER_ASYNC_RESOURCE_HANDLER_H_ |
| OLD | NEW |