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 #include "content/browser/download/base_file.h" | 5 #include "content/browser/download/base_file.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/format_macros.h" | 8 #include "base/format_macros.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 | 48 |
49 bool BaseFile::Initialize(bool calculate_hash) { | 49 bool BaseFile::Initialize(bool calculate_hash) { |
50 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); | 50 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
51 DCHECK(!detached_); | 51 DCHECK(!detached_); |
52 | 52 |
53 calculate_hash_ = calculate_hash; | 53 calculate_hash_ = calculate_hash; |
54 | 54 |
55 if (calculate_hash_) | 55 if (calculate_hash_) |
56 secure_hash_.reset(crypto::SecureHash::Create(crypto::SecureHash::SHA256)); | 56 secure_hash_.reset(crypto::SecureHash::Create(crypto::SecureHash::SHA256)); |
57 | 57 |
58 if (!full_path_.empty() || | 58 FilePath save_path = |
59 download_util::CreateTemporaryFileForDownload(&full_path_)) | 59 download_util::GetDefaultDownloadDirectoryFromPathService(); |
60 return Open(); | 60 if (full_path_.empty() && |
61 return false; | 61 !file_util::CreateTemporaryFileInDir(save_path, &full_path_)) |
| 62 return false; |
| 63 return Open(); |
62 } | 64 } |
63 | 65 |
64 bool BaseFile::AppendDataToFile(const char* data, size_t data_len) { | 66 bool BaseFile::AppendDataToFile(const char* data, size_t data_len) { |
65 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); | 67 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); |
66 DCHECK(!detached_); | 68 DCHECK(!detached_); |
67 | 69 |
68 if (!file_stream_.get()) | 70 if (!file_stream_.get()) |
69 return false; | 71 return false; |
70 | 72 |
71 // TODO(phajdan.jr): get rid of this check. | 73 // TODO(phajdan.jr): get rid of this check. |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 | 241 |
240 std::string BaseFile::DebugString() const { | 242 std::string BaseFile::DebugString() const { |
241 return base::StringPrintf("{ source_url_ = \"%s\"" | 243 return base::StringPrintf("{ source_url_ = \"%s\"" |
242 " full_path_ = \"%" PRFilePath "\"" | 244 " full_path_ = \"%" PRFilePath "\"" |
243 " bytes_so_far_ = %" PRId64 " detached_ = %c }", | 245 " bytes_so_far_ = %" PRId64 " detached_ = %c }", |
244 source_url_.spec().c_str(), | 246 source_url_.spec().c_str(), |
245 full_path_.value().c_str(), | 247 full_path_.value().c_str(), |
246 bytes_so_far_, | 248 bytes_so_far_, |
247 detached_ ? 'T' : 'F'); | 249 detached_ ? 'T' : 'F'); |
248 } | 250 } |
OLD | NEW |