OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_DOWNLOAD_DOWNLOAD_RESOURCE_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_HANDLER_H_ |
6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_HANDLER_H_ | 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_HANDLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/timer.h" | 12 #include "base/timer.h" |
13 #include "content/browser/download/download_file.h" | 13 #include "content/browser/download/download_file.h" |
| 14 #include "content/browser/download/download_id.h" |
14 #include "content/browser/renderer_host/global_request_id.h" | 15 #include "content/browser/renderer_host/global_request_id.h" |
15 #include "content/browser/renderer_host/resource_handler.h" | 16 #include "content/browser/renderer_host/resource_handler.h" |
16 | 17 |
17 class DownloadFileManager; | 18 class DownloadFileManager; |
18 class ResourceDispatcherHost; | 19 class ResourceDispatcherHost; |
19 struct DownloadBuffer; | 20 struct DownloadBuffer; |
20 | 21 |
21 namespace net { | 22 namespace net { |
22 class URLRequest; | 23 class URLRequest; |
23 } // namespace net | 24 } // namespace net |
24 | 25 |
25 // Forwards data to the download thread. | 26 // Forwards data to the download thread. |
26 class DownloadResourceHandler : public ResourceHandler { | 27 class DownloadResourceHandler : public ResourceHandler { |
27 public: | 28 public: |
28 DownloadResourceHandler(ResourceDispatcherHost* rdh, | 29 DownloadResourceHandler( |
29 int render_process_host_id, | 30 ResourceDispatcherHost* rdh, |
30 int render_view_id, | 31 int render_process_host_id, |
31 int request_id, | 32 int render_view_id, |
32 const GURL& url, | 33 int request_id, |
33 DownloadFileManager* download_file_manager, | 34 const GURL& url, |
34 net::URLRequest* request, | 35 DownloadId dl_id, |
35 bool save_as, | 36 DownloadFileManager* download_file_manager, |
36 const DownloadSaveInfo& save_info); | 37 net::URLRequest* request, |
| 38 bool save_as, |
| 39 const DownloadSaveInfo& save_info); |
37 | 40 |
38 virtual bool OnUploadProgress(int request_id, uint64 position, uint64 size); | 41 virtual bool OnUploadProgress(int request_id, uint64 position, uint64 size); |
39 | 42 |
40 // Not needed, as this event handler ought to be the final resource. | 43 // Not needed, as this event handler ought to be the final resource. |
41 virtual bool OnRequestRedirected(int request_id, const GURL& url, | 44 virtual bool OnRequestRedirected(int request_id, const GURL& url, |
42 ResourceResponse* response, bool* defer); | 45 ResourceResponse* response, bool* defer); |
43 | 46 |
44 // Send the download creation information to the download thread. | 47 // Send the download creation information to the download thread. |
45 virtual bool OnResponseStarted(int request_id, ResourceResponse* response); | 48 virtual bool OnResponseStarted(int request_id, ResourceResponse* response); |
46 | 49 |
(...skipping 21 matching lines...) Expand all Loading... |
68 | 71 |
69 void CheckWriteProgress(); | 72 void CheckWriteProgress(); |
70 | 73 |
71 std::string DebugString() const; | 74 std::string DebugString() const; |
72 | 75 |
73 private: | 76 private: |
74 virtual ~DownloadResourceHandler(); | 77 virtual ~DownloadResourceHandler(); |
75 | 78 |
76 void StartPauseTimer(); | 79 void StartPauseTimer(); |
77 | 80 |
78 int download_id_; | 81 DownloadId download_id_; |
79 GlobalRequestID global_id_; | 82 GlobalRequestID global_id_; |
80 int render_view_id_; | 83 int render_view_id_; |
81 scoped_refptr<net::IOBuffer> read_buffer_; | 84 scoped_refptr<net::IOBuffer> read_buffer_; |
82 std::string content_disposition_; | 85 std::string content_disposition_; |
83 int64 content_length_; | 86 int64 content_length_; |
84 DownloadFileManager* download_file_manager_; | 87 DownloadFileManager* download_file_manager_; |
85 net::URLRequest* request_; | 88 net::URLRequest* request_; |
86 bool save_as_; // Request was initiated via "Save As" by the user. | 89 bool save_as_; // Request was initiated via "Save As" by the user. |
87 DownloadSaveInfo save_info_; | 90 DownloadSaveInfo save_info_; |
88 scoped_ptr<DownloadBuffer> buffer_; | 91 scoped_ptr<DownloadBuffer> buffer_; |
89 ResourceDispatcherHost* rdh_; | 92 ResourceDispatcherHost* rdh_; |
90 bool is_paused_; | 93 bool is_paused_; |
91 base::OneShotTimer<DownloadResourceHandler> pause_timer_; | 94 base::OneShotTimer<DownloadResourceHandler> pause_timer_; |
92 base::TimeTicks download_start_time_; // used to collect stats. | 95 base::TimeTicks download_start_time_; // used to collect stats. |
93 static const int kReadBufSize = 32768; // bytes | 96 static const int kReadBufSize = 32768; // bytes |
94 static const size_t kLoadsToWrite = 100; // number of data buffers queued | 97 static const size_t kLoadsToWrite = 100; // number of data buffers queued |
95 static const int kThrottleTimeMs = 200; // milliseconds | 98 static const int kThrottleTimeMs = 200; // milliseconds |
96 | 99 |
97 DISALLOW_COPY_AND_ASSIGN(DownloadResourceHandler); | 100 DISALLOW_COPY_AND_ASSIGN(DownloadResourceHandler); |
98 }; | 101 }; |
99 | 102 |
100 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_HANDLER_H_ | 103 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_RESOURCE_HANDLER_H_ |
OLD | NEW |