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 "content/common/content_export.h" |
17 #include "net/base/io_buffer.h" | 18 #include "net/base/io_buffer.h" |
18 #include "url/gurl.h" | 19 #include "url/gurl.h" |
19 | 20 |
20 namespace net { | 21 namespace net { |
21 class URLRequest; | 22 class URLRequest; |
22 } | 23 } |
23 | 24 |
24 namespace content { | 25 namespace content { |
25 class ResourceBuffer; | 26 class ResourceBuffer; |
26 class ResourceContext; | 27 class ResourceContext; |
27 class ResourceDispatcherHostImpl; | 28 class ResourceDispatcherHostImpl; |
28 class ResourceMessageFilter; | 29 class ResourceMessageFilter; |
29 class SharedIOBuffer; | 30 class SharedIOBuffer; |
30 | 31 |
31 // Used to complete an asynchronous resource request in response to resource | 32 // Used to complete an asynchronous resource request in response to resource |
32 // load events from the resource dispatcher host. | 33 // load events from the resource dispatcher host. |
33 class AsyncResourceHandler : public ResourceHandler, | 34 class CONTENT_EXPORT AsyncResourceHandler : public ResourceHandler, |
34 public ResourceMessageDelegate { | 35 public ResourceMessageDelegate { |
35 public: | 36 public: |
36 AsyncResourceHandler(net::URLRequest* request, | 37 AsyncResourceHandler(net::URLRequest* request, |
37 ResourceDispatcherHostImpl* rdh); | 38 ResourceDispatcherHostImpl* rdh); |
38 ~AsyncResourceHandler() override; | 39 ~AsyncResourceHandler() override; |
39 | 40 |
40 bool OnMessageReceived(const IPC::Message& message) override; | 41 bool OnMessageReceived(const IPC::Message& message) override; |
41 | 42 |
42 // ResourceHandler implementation: | 43 // ResourceHandler implementation: |
43 bool OnRequestRedirected(const net::RedirectInfo& redirect_info, | 44 bool OnRequestRedirected(const net::RedirectInfo& redirect_info, |
44 ResourceResponse* response, | 45 ResourceResponse* response, |
(...skipping 18 matching lines...) Expand all Loading... |
63 void OnDataReceivedACK(int request_id); | 64 void OnDataReceivedACK(int request_id); |
64 void OnUploadProgressACK(int request_id); | 65 void OnUploadProgressACK(int request_id); |
65 | 66 |
66 void ReportUploadProgress(); | 67 void ReportUploadProgress(); |
67 | 68 |
68 bool EnsureResourceBufferIsInitialized(); | 69 bool EnsureResourceBufferIsInitialized(); |
69 void ResumeIfDeferred(); | 70 void ResumeIfDeferred(); |
70 void OnDefer(); | 71 void OnDefer(); |
71 bool CheckForSufficientResource(); | 72 bool CheckForSufficientResource(); |
72 int CalculateEncodedDataLengthToReport(); | 73 int CalculateEncodedDataLengthToReport(); |
| 74 int CalculateEncodedBodyLengthToReport(); |
73 void RecordHistogram(); | 75 void RecordHistogram(); |
74 | 76 |
75 scoped_refptr<ResourceBuffer> buffer_; | 77 scoped_refptr<ResourceBuffer> buffer_; |
76 ResourceDispatcherHostImpl* rdh_; | 78 ResourceDispatcherHostImpl* rdh_; |
77 | 79 |
78 // Number of messages we've sent to the renderer that we haven't gotten an | 80 // 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. | 81 // ACK for. This allows us to avoid having too many messages in flight. |
80 int pending_data_count_; | 82 int pending_data_count_; |
81 | 83 |
82 int allocation_size_; | 84 int allocation_size_; |
83 | 85 |
84 bool did_defer_; | 86 bool did_defer_; |
85 | 87 |
86 bool has_checked_for_sufficient_resources_; | 88 bool has_checked_for_sufficient_resources_; |
87 bool sent_received_response_msg_; | 89 bool sent_received_response_msg_; |
88 bool sent_data_buffer_msg_; | 90 bool sent_data_buffer_msg_; |
89 | 91 |
90 std::unique_ptr<InliningHelper> inlining_helper_; | 92 std::unique_ptr<InliningHelper> inlining_helper_; |
91 base::TimeTicks response_started_ticks_; | 93 base::TimeTicks response_started_ticks_; |
92 | 94 |
93 uint64_t last_upload_position_; | 95 uint64_t last_upload_position_; |
94 bool waiting_for_upload_progress_ack_; | 96 bool waiting_for_upload_progress_ack_; |
95 base::TimeTicks last_upload_ticks_; | 97 base::TimeTicks last_upload_ticks_; |
96 base::RepeatingTimer progress_timer_; | 98 base::RepeatingTimer progress_timer_; |
97 | 99 |
98 int64_t reported_transfer_size_; | 100 int64_t reported_transfer_size_; |
| 101 int64_t reported_encoded_body_length_; |
99 | 102 |
100 DISALLOW_COPY_AND_ASSIGN(AsyncResourceHandler); | 103 DISALLOW_COPY_AND_ASSIGN(AsyncResourceHandler); |
101 }; | 104 }; |
102 | 105 |
103 } // namespace content | 106 } // namespace content |
104 | 107 |
105 #endif // CONTENT_BROWSER_LOADER_ASYNC_RESOURCE_HANDLER_H_ | 108 #endif // CONTENT_BROWSER_LOADER_ASYNC_RESOURCE_HANDLER_H_ |
OLD | NEW |