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 WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ | 5 #ifndef WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ |
6 #define WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ | 6 #define WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 namespace fileapi { | 29 namespace fileapi { |
30 class FileSystemContext; | 30 class FileSystemContext; |
31 | 31 |
32 // A request job that handles reading filesystem: URLs | 32 // A request job that handles reading filesystem: URLs |
33 class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE FileSystemURLRequestJob | 33 class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE FileSystemURLRequestJob |
34 : public net::URLRequestJob { | 34 : public net::URLRequestJob { |
35 public: | 35 public: |
36 FileSystemURLRequestJob( | 36 FileSystemURLRequestJob( |
37 net::URLRequest* request, | 37 net::URLRequest* request, |
38 net::NetworkDelegate* network_delegate, | 38 net::NetworkDelegate* network_delegate, |
39 const std::string& storage_domain, | |
40 FileSystemContext* file_system_context); | 39 FileSystemContext* file_system_context); |
41 | 40 |
42 // URLRequestJob methods: | 41 // URLRequestJob methods: |
43 virtual void Start() OVERRIDE; | 42 virtual void Start() OVERRIDE; |
44 virtual void Kill() OVERRIDE; | 43 virtual void Kill() OVERRIDE; |
45 virtual bool ReadRawData(net::IOBuffer* buf, | 44 virtual bool ReadRawData(net::IOBuffer* buf, |
46 int buf_size, | 45 int buf_size, |
47 int* bytes_read) OVERRIDE; | 46 int* bytes_read) OVERRIDE; |
48 virtual bool IsRedirectResponse(GURL* location, | 47 virtual bool IsRedirectResponse(GURL* location, |
49 int* http_status_code) OVERRIDE; | 48 int* http_status_code) OVERRIDE; |
50 virtual void SetExtraRequestHeaders( | 49 virtual void SetExtraRequestHeaders( |
51 const net::HttpRequestHeaders& headers) OVERRIDE; | 50 const net::HttpRequestHeaders& headers) OVERRIDE; |
52 virtual void GetResponseInfo(net::HttpResponseInfo* info) OVERRIDE; | 51 virtual void GetResponseInfo(net::HttpResponseInfo* info) OVERRIDE; |
53 virtual int GetResponseCode() const OVERRIDE; | 52 virtual int GetResponseCode() const OVERRIDE; |
54 | 53 |
55 // FilterContext methods (via URLRequestJob): | 54 // FilterContext methods (via URLRequestJob): |
56 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; | 55 virtual bool GetMimeType(std::string* mime_type) const OVERRIDE; |
57 | 56 |
58 private: | 57 private: |
59 class CallbackDispatcher; | 58 class CallbackDispatcher; |
60 | 59 |
61 virtual ~FileSystemURLRequestJob(); | 60 virtual ~FileSystemURLRequestJob(); |
62 | 61 |
63 void StartAsync(); | 62 void StartAsync(); |
64 void DidAttemptAutoMount(base::File::Error result); | 63 void DidGetMetadata( |
65 void DidGetMetadata(base::File::Error error_code, | 64 base::File::Error error_code, |
66 const base::File::Info& file_info); | 65 const base::File::Info& file_info); |
67 void DidRead(int result); | 66 void DidRead(int result); |
68 void NotifyFailed(int rv); | 67 void NotifyFailed(int rv); |
69 | 68 |
70 const std::string storage_domain_; | |
71 FileSystemContext* file_system_context_; | 69 FileSystemContext* file_system_context_; |
72 scoped_ptr<webkit_blob::FileStreamReader> reader_; | 70 scoped_ptr<webkit_blob::FileStreamReader> reader_; |
73 FileSystemURL url_; | 71 FileSystemURL url_; |
74 bool is_directory_; | 72 bool is_directory_; |
75 scoped_ptr<net::HttpResponseInfo> response_info_; | 73 scoped_ptr<net::HttpResponseInfo> response_info_; |
76 int64 remaining_bytes_; | 74 int64 remaining_bytes_; |
77 net::HttpByteRange byte_range_; | 75 net::HttpByteRange byte_range_; |
78 base::WeakPtrFactory<FileSystemURLRequestJob> weak_factory_; | 76 base::WeakPtrFactory<FileSystemURLRequestJob> weak_factory_; |
79 | 77 |
80 DISALLOW_COPY_AND_ASSIGN(FileSystemURLRequestJob); | 78 DISALLOW_COPY_AND_ASSIGN(FileSystemURLRequestJob); |
81 }; | 79 }; |
82 | 80 |
83 } // namespace fileapi | 81 } // namespace fileapi |
84 | 82 |
85 #endif // WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ | 83 #endif // WEBKIT_BROWSER_FILEAPI_FILE_SYSTEM_URL_REQUEST_JOB_H_ |
OLD | NEW |