| 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 // For loading files, we make use of overlapped i/o to ensure that reading from | 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 | 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 | 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 | 8 // of threads, but it seems better to leverage the operating system's ability |
| 9 // to do background file reads for us. | 9 // to do background file reads for us. |
| 10 // | 10 // |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "base/strings/string_util.h" | 26 #include "base/strings/string_util.h" |
| 27 #include "base/synchronization/lock.h" | 27 #include "base/synchronization/lock.h" |
| 28 #include "base/task_runner.h" | 28 #include "base/task_runner.h" |
| 29 #include "base/threading/thread_restrictions.h" | 29 #include "base/threading/thread_restrictions.h" |
| 30 #include "build/build_config.h" | 30 #include "build/build_config.h" |
| 31 #include "net/base/file_stream.h" | 31 #include "net/base/file_stream.h" |
| 32 #include "net/base/filename_util.h" | 32 #include "net/base/filename_util.h" |
| 33 #include "net/base/io_buffer.h" | 33 #include "net/base/io_buffer.h" |
| 34 #include "net/base/load_flags.h" | 34 #include "net/base/load_flags.h" |
| 35 #include "net/base/mime_util.h" | 35 #include "net/base/mime_util.h" |
| 36 #include "net/filter/filter.h" | |
| 37 #include "net/http/http_util.h" | 36 #include "net/http/http_util.h" |
| 38 #include "net/url_request/url_request_error_job.h" | 37 #include "net/url_request/url_request_error_job.h" |
| 39 #include "net/url_request/url_request_file_dir_job.h" | 38 #include "net/url_request/url_request_file_dir_job.h" |
| 40 #include "url/gurl.h" | 39 #include "url/gurl.h" |
| 41 | 40 |
| 42 #if defined(OS_WIN) | 41 #if defined(OS_WIN) |
| 43 #include "base/win/shortcut.h" | 42 #include "base/win/shortcut.h" |
| 44 #endif | 43 #endif |
| 45 | 44 |
| 46 namespace net { | 45 namespace net { |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 return false; | 137 return false; |
| 139 | 138 |
| 140 *location = FilePathToFileURL(new_path); | 139 *location = FilePathToFileURL(new_path); |
| 141 *http_status_code = 301; | 140 *http_status_code = 301; |
| 142 return true; | 141 return true; |
| 143 #else | 142 #else |
| 144 return false; | 143 return false; |
| 145 #endif | 144 #endif |
| 146 } | 145 } |
| 147 | 146 |
| 148 Filter* URLRequestFileJob::SetupFilter() const { | |
| 149 // Bug 9936 - .svgz files needs to be decompressed. | |
| 150 return base::LowerCaseEqualsASCII(file_path_.Extension(), ".svgz") | |
| 151 ? Filter::GZipFactory() | |
| 152 : NULL; | |
| 153 } | |
| 154 | |
| 155 bool URLRequestFileJob::GetMimeType(std::string* mime_type) const { | 147 bool URLRequestFileJob::GetMimeType(std::string* mime_type) const { |
| 156 DCHECK(request_); | 148 DCHECK(request_); |
| 157 if (meta_info_.mime_type_result) { | 149 if (meta_info_.mime_type_result) { |
| 158 *mime_type = meta_info_.mime_type; | 150 *mime_type = meta_info_.mime_type; |
| 159 return true; | 151 return true; |
| 160 } | 152 } |
| 161 return false; | 153 return false; |
| 162 } | 154 } |
| 163 | 155 |
| 164 void URLRequestFileJob::SetExtraRequestHeaders( | 156 void URLRequestFileJob::SetExtraRequestHeaders( |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 DCHECK_GE(remaining_bytes_, 0); | 285 DCHECK_GE(remaining_bytes_, 0); |
| 294 } | 286 } |
| 295 | 287 |
| 296 OnReadComplete(buf.get(), result); | 288 OnReadComplete(buf.get(), result); |
| 297 buf = NULL; | 289 buf = NULL; |
| 298 | 290 |
| 299 ReadRawDataComplete(result); | 291 ReadRawDataComplete(result); |
| 300 } | 292 } |
| 301 | 293 |
| 302 } // namespace net | 294 } // namespace net |
| OLD | NEW |