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 // For loading files, we make use of overlapped i/o to ensure that reading from
6 // the filesystem (e.g., a network filesystem) does not block the calling
7 // thread. An alternative approach would be to use a background thread or pool
8 // of threads, but it seems better to leverage the operating system's ability
9 // to do background file reads for us.
11 // Since overlapped reads require a 'static' buffer for the duration of the
12 // asynchronous read, the URLRequestFileJob keeps a buffer as a member var. In
13 // URLRequestFileJob::Read, data is simply copied from the object's buffer into
14 // the given buffer. If there is no data to copy, the URLRequestFileJob
15 // attempts to read more from the file to fill its buffer. If reading from the
16 // file does not complete synchronously, then the URLRequestFileJob waits for a
17 // signal from the OS that the overlapped read has completed. It does so by
18 // leveraging the MessageLoop::WatchObject API.
20 #include "net/url_request/url_request_file_job.h"
22 #include "base/bind.h"
23 #include "base/compiler_specific.h"
24 #include "base/file_util.h"
25 #include "base/message_loop/message_loop.h"
26 #include "base/strings/string_util.h"
27 #include "base/synchronization/lock.h"
28 #include "base/task_runner.h"
29 #include "base/threading/thread_restrictions.h"
30 #include "build/build_config.h"
31 #include "net/base/file_stream.h"
32 #include "net/base/io_buffer.h"
33 #include "net/base/load_flags.h"
34 #include "net/base/mime_util.h"
35 #include "net/base/net_errors.h"
36 #include "net/base/net_util.h"
37 #include "net/http/http_util.h"
38 #include "net/url_request/url_request_error_job.h"
39 #include "net/url_request/url_request_file_dir_job.h"
43 #include "base/win/shortcut.h"
48 URLRequestFileJob::FileMetaInfo::FileMetaInfo()
50 mime_type_result(false),
55 URLRequestFileJob::URLRequestFileJob(
57 NetworkDelegate
* network_delegate
,
58 const base::FilePath
& file_path
,
59 const scoped_refptr
<base::TaskRunner
>& file_task_runner
)
60 : URLRequestJob(request
, network_delegate
),
61 file_path_(file_path
),
62 stream_(new FileStream(NULL
, file_task_runner
)),
63 file_task_runner_(file_task_runner
),
65 weak_ptr_factory_(this) {}
67 void URLRequestFileJob::Start() {
68 FileMetaInfo
* meta_info
= new FileMetaInfo();
69 file_task_runner_
->PostTaskAndReply(
71 base::Bind(&URLRequestFileJob::FetchMetaInfo
, file_path_
,
72 base::Unretained(meta_info
)),
73 base::Bind(&URLRequestFileJob::DidFetchMetaInfo
,
74 weak_ptr_factory_
.GetWeakPtr(),
75 base::Owned(meta_info
)));
78 void URLRequestFileJob::Kill() {
80 weak_ptr_factory_
.InvalidateWeakPtrs();
82 URLRequestJob::Kill();
85 bool URLRequestFileJob::ReadRawData(IOBuffer
* dest
, int dest_size
,
87 DCHECK_NE(dest_size
, 0);
89 DCHECK_GE(remaining_bytes_
, 0);
91 if (remaining_bytes_
< dest_size
)
92 dest_size
= static_cast<int>(remaining_bytes_
);
94 // If we should copy zero bytes because |remaining_bytes_| is zero, short
101 int rv
= stream_
->Read(dest
, dest_size
,
102 base::Bind(&URLRequestFileJob::DidRead
,
103 weak_ptr_factory_
.GetWeakPtr()));
105 // Data is immediately available.
107 remaining_bytes_
-= rv
;
108 DCHECK_GE(remaining_bytes_
, 0);
112 // Otherwise, a read error occured. We may just need to wait...
113 if (rv
== ERR_IO_PENDING
) {
114 SetStatus(URLRequestStatus(URLRequestStatus::IO_PENDING
, 0));
116 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED
, rv
));
121 bool URLRequestFileJob::IsRedirectResponse(GURL
* location
,
122 int* http_status_code
) {
123 if (meta_info_
.is_directory
) {
124 // This happens when we discovered the file is a directory, so needs a
125 // slash at the end of the path.
126 std::string new_path
= request_
->url().path();
127 new_path
.push_back('/');
128 GURL::Replacements replacements
;
129 replacements
.SetPathStr(new_path
);
131 *location
= request_
->url().ReplaceComponents(replacements
);
132 *http_status_code
= 301; // simulate a permanent redirect
137 // Follow a Windows shortcut.
138 // We just resolve .lnk file, ignore others.
139 if (!LowerCaseEqualsASCII(file_path_
.Extension(), ".lnk"))
142 base::FilePath new_path
= file_path_
;
144 resolved
= base::win::ResolveShortcut(new_path
, &new_path
, NULL
);
146 // If shortcut is not resolved succesfully, do not redirect.
150 *location
= FilePathToFileURL(new_path
);
151 *http_status_code
= 301;
158 Filter
* URLRequestFileJob::SetupFilter() const {
159 // Bug 9936 - .svgz files needs to be decompressed.
160 return LowerCaseEqualsASCII(file_path_
.Extension(), ".svgz")
161 ? Filter::GZipFactory() : NULL
;
164 bool URLRequestFileJob::GetMimeType(std::string
* mime_type
) const {
166 if (meta_info_
.mime_type_result
) {
167 *mime_type
= meta_info_
.mime_type
;
173 void URLRequestFileJob::SetExtraRequestHeaders(
174 const HttpRequestHeaders
& headers
) {
175 std::string range_header
;
176 if (headers
.GetHeader(HttpRequestHeaders::kRange
, &range_header
)) {
177 // We only care about "Range" header here.
178 std::vector
<HttpByteRange
> ranges
;
179 if (HttpUtil::ParseRangeHeader(range_header
, &ranges
)) {
180 if (ranges
.size() == 1) {
181 byte_range_
= ranges
[0];
183 // We don't support multiple range requests in one single URL request,
184 // because we need to do multipart encoding here.
185 // TODO(hclam): decide whether we want to support multiple range
187 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED
,
188 ERR_REQUEST_RANGE_NOT_SATISFIABLE
));
194 URLRequestFileJob::~URLRequestFileJob() {
197 void URLRequestFileJob::FetchMetaInfo(const base::FilePath
& file_path
,
198 FileMetaInfo
* meta_info
) {
199 base::File::Info file_info
;
200 meta_info
->file_exists
= base::GetFileInfo(file_path
, &file_info
);
201 if (meta_info
->file_exists
) {
202 meta_info
->file_size
= file_info
.size
;
203 meta_info
->is_directory
= file_info
.is_directory
;
205 // On Windows GetMimeTypeFromFile() goes to the registry. Thus it should be
206 // done in WorkerPool.
207 meta_info
->mime_type_result
= GetMimeTypeFromFile(file_path
,
208 &meta_info
->mime_type
);
211 void URLRequestFileJob::DidFetchMetaInfo(const FileMetaInfo
* meta_info
) {
212 meta_info_
= *meta_info
;
214 // We use URLRequestFileJob to handle files as well as directories without
216 // If a directory does not exist, we return ERR_FILE_NOT_FOUND. Otherwise,
217 // we will append trailing slash and redirect to FileDirJob.
218 // A special case is "\" on Windows. We should resolve as invalid.
219 // However, Windows resolves "\" to "C:\", thus reports it as existent.
220 // So what happens is we append it with trailing slash and redirect it to
221 // FileDirJob where it is resolved as invalid.
222 if (!meta_info_
.file_exists
) {
223 DidOpen(ERR_FILE_NOT_FOUND
);
226 if (meta_info_
.is_directory
) {
231 int flags
= base::PLATFORM_FILE_OPEN
|
232 base::PLATFORM_FILE_READ
|
233 base::PLATFORM_FILE_ASYNC
;
234 int rv
= stream_
->Open(file_path_
, flags
,
235 base::Bind(&URLRequestFileJob::DidOpen
,
236 weak_ptr_factory_
.GetWeakPtr()));
237 if (rv
!= ERR_IO_PENDING
)
241 void URLRequestFileJob::DidOpen(int result
) {
243 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED
, result
));
247 if (!byte_range_
.ComputeBounds(meta_info_
.file_size
)) {
248 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED
,
249 ERR_REQUEST_RANGE_NOT_SATISFIABLE
));
253 remaining_bytes_
= byte_range_
.last_byte_position() -
254 byte_range_
.first_byte_position() + 1;
255 DCHECK_GE(remaining_bytes_
, 0);
257 if (remaining_bytes_
> 0 && byte_range_
.first_byte_position() != 0) {
258 int rv
= stream_
->Seek(FROM_BEGIN
, byte_range_
.first_byte_position(),
259 base::Bind(&URLRequestFileJob::DidSeek
,
260 weak_ptr_factory_
.GetWeakPtr()));
261 if (rv
!= ERR_IO_PENDING
) {
262 // stream_->Seek() failed, so pass an intentionally erroneous value
267 // We didn't need to call stream_->Seek() at all, so we pass to DidSeek()
268 // the value that would mean seek success. This way we skip the code
269 // handling seek failure.
270 DidSeek(byte_range_
.first_byte_position());
274 void URLRequestFileJob::DidSeek(int64 result
) {
275 if (result
!= byte_range_
.first_byte_position()) {
276 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED
,
277 ERR_REQUEST_RANGE_NOT_SATISFIABLE
));
281 set_expected_content_size(remaining_bytes_
);
282 NotifyHeadersComplete();
285 void URLRequestFileJob::DidRead(int result
) {
287 SetStatus(URLRequestStatus()); // Clear the IO_PENDING status
288 } else if (result
== 0) {
289 NotifyDone(URLRequestStatus());
291 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED
, result
));
294 remaining_bytes_
-= result
;
295 DCHECK_GE(remaining_bytes_
, 0);
297 NotifyReadComplete(result
);