Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Side by Side Diff: net/disk_cache/simple/simple_index.cc

Issue 14263005: Refactor our SimpleIndex file format and serialization to use Pickle instead of the previously bugg… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: egors comments Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 "net/disk_cache/simple/simple_index.h" 5 #include "net/disk_cache/simple/simple_index.h"
6 6
7 #include <utility>
8
7 #include "base/bind.h" 9 #include "base/bind.h"
8 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "base/file_util.h"
12 #include "base/logging.h"
9 #include "base/message_loop.h" 13 #include "base/message_loop.h"
10 #include "base/task_runner.h" 14 #include "base/task_runner.h"
11 #include "base/threading/worker_pool.h" 15 #include "base/threading/worker_pool.h"
12 #include "net/base/io_buffer.h"
13 #include "net/base/net_errors.h" 16 #include "net/base/net_errors.h"
14 #include "net/disk_cache/simple/simple_disk_format.h" 17 #include "net/disk_cache/simple/simple_disk_format.h"
15 #include "third_party/zlib/zlib.h" 18 #include "net/disk_cache/simple/simple_index_file.h"
16 19 #include "net/disk_cache/simple/simple_index_util.h"
17 namespace {
18
19 const uint64 kMaxEntiresInIndex = 100000000;
20
21 bool CheckHeader(disk_cache::SimpleIndexFile::Header header) {
22 return header.number_of_entries <= kMaxEntiresInIndex &&
23 header.initial_magic_number ==
24 disk_cache::kSimpleIndexInitialMagicNumber &&
25 header.version == disk_cache::kSimpleVersion;
26 }
27
28 class FileAutoCloser {
29 public:
30 explicit FileAutoCloser(const base::PlatformFile& file) : file_(file) { }
31 ~FileAutoCloser() {
32 base::ClosePlatformFile(file_);
33 }
34 private:
35 base::PlatformFile file_;
36 DISALLOW_COPY_AND_ASSIGN(FileAutoCloser);
37 };
38
39 } // namespace
40 20
41 namespace disk_cache { 21 namespace disk_cache {
42 22
23 EntryMetadata::EntryMetadata() :
24 hash_key_(0),
25 last_used_time_(0),
26 entry_size_(0)
27 {}
28
29
30 EntryMetadata::EntryMetadata(uint64 hash_key,
31 base::Time last_used_time,
32 uint64 entry_size) :
33 hash_key_(hash_key),
34 last_used_time_(last_used_time.ToInternalValue()),
35 entry_size_(entry_size)
36 {}
37
38 base::Time EntryMetadata::GetLastUsedTime() const {
39 return base::Time::FromInternalValue(last_used_time_);
40 }
41
42 void EntryMetadata::SetLastUsedTime(const base::Time& last_used_time) {
43 last_used_time_ = last_used_time.ToInternalValue();
44 }
45
46 void EntryMetadata::Serialize(Pickle* pickle) const {
47 DCHECK(pickle);
48 COMPILE_ASSERT(sizeof(EntryMetadata) ==
49 (sizeof(uint64) + sizeof(int64) + sizeof(uint64)),
50 EntryMetadata_has_three_member_variables);
51 pickle->WriteUInt64(hash_key_);
52 pickle->WriteInt64(last_used_time_);
53 pickle->WriteUInt64(entry_size_);
54 }
55
56 bool EntryMetadata::DeSerialize(PickleIterator* it) {
57 DCHECK(it);
58 return it->ReadUInt64(&hash_key_) &&
59 it->ReadInt64(&last_used_time_) &&
60 it->ReadUInt64(&entry_size_);
61 }
62
63 void EntryMetadata::MergeWith(const EntryMetadata& from) {
64 DCHECK_EQ(hash_key_, from.hash_key_);
65 if (last_used_time_ == 0)
66 last_used_time_ = from.last_used_time_;
67 if (entry_size_ == 0)
68 entry_size_ = from.entry_size_;
69 }
70
71 void InsertInEntrySet(const disk_cache::EntryMetadata& entry_metadata,
72 disk_cache::EntrySet* entry_set) {
73 DCHECK(entry_set);
74 entry_set->insert(
75 std::make_pair(entry_metadata.GetHashKey(), entry_metadata));
76 }
77
43 SimpleIndex::SimpleIndex( 78 SimpleIndex::SimpleIndex(
44 const scoped_refptr<base::TaskRunner>& cache_thread, 79 const scoped_refptr<base::TaskRunner>& cache_thread,
45 const scoped_refptr<base::TaskRunner>& io_thread, 80 const scoped_refptr<base::TaskRunner>& io_thread,
46 const base::FilePath& path) 81 const base::FilePath& path)
47 : cache_size_(0), 82 : cache_size_(0),
48 initialized_(false), 83 initialized_(false),
49 index_filename_(path.AppendASCII("simple-index")), 84 index_filename_(path.AppendASCII("simple-index")),
50 cache_thread_(cache_thread), 85 cache_thread_(cache_thread),
51 io_thread_(io_thread) {} 86 io_thread_(io_thread) {}
52 87
53 SimpleIndex::~SimpleIndex() { 88 SimpleIndex::~SimpleIndex() {
54 DCHECK(io_thread_checker_.CalledOnValidThread()); 89 DCHECK(io_thread_checker_.CalledOnValidThread());
55 90
56 } 91 }
57 92
58 void SimpleIndex::Initialize() { 93 void SimpleIndex::Initialize() {
59 DCHECK(io_thread_checker_.CalledOnValidThread()); 94 DCHECK(io_thread_checker_.CalledOnValidThread());
60 MergeCallback merge_callback = base::Bind(&SimpleIndex::MergeInitializingSet, 95 IndexCompletionCallback merge_callback =
61 this->AsWeakPtr()); 96 base::Bind(&SimpleIndex::MergeInitializingSet,
97 this->AsWeakPtr());
62 base::WorkerPool::PostTask(FROM_HERE, 98 base::WorkerPool::PostTask(FROM_HERE,
63 base::Bind(&SimpleIndex::LoadFromDisk, 99 base::Bind(&SimpleIndex::LoadFromDisk,
64 index_filename_, 100 index_filename_,
65 io_thread_, 101 io_thread_,
66 merge_callback), 102 merge_callback),
67 true); 103 true);
68 } 104 }
69 105
70 // static
71 void SimpleIndex::LoadFromDisk(
72 const base::FilePath& index_filename,
73 const scoped_refptr<base::TaskRunner>& io_thread,
74 const MergeCallback& merge_callback) {
75 // Open the index file.
76 base::PlatformFileError error;
77 base::PlatformFile index_file = base::CreatePlatformFile(
78 index_filename,
79 base::PLATFORM_FILE_OPEN_ALWAYS |
80 base::PLATFORM_FILE_READ |
81 base::PLATFORM_FILE_WRITE,
82 NULL,
83 &error);
84 FileAutoCloser auto_close_index_file(index_file);
85 if (error != base::PLATFORM_FILE_OK) {
86 LOG(ERROR) << "Error opening file " << index_filename.value();
87 return RestoreFromDisk(index_filename, io_thread, merge_callback);
88 }
89
90 uLong incremental_crc = crc32(0L, Z_NULL, 0);
91 int64 index_file_offset = 0;
92 SimpleIndexFile::Header header;
93 if (base::ReadPlatformFile(index_file,
94 index_file_offset,
95 reinterpret_cast<char*>(&header),
96 sizeof(header)) != sizeof(header)) {
97 return RestoreFromDisk(index_filename, io_thread, merge_callback);
98 }
99 index_file_offset += sizeof(header);
100 incremental_crc = crc32(incremental_crc,
101 reinterpret_cast<const Bytef*>(&header),
102 implicit_cast<uInt>(sizeof(header)));
103
104 if (!CheckHeader(header)) {
105 LOG(ERROR) << "Invalid header on Simple Cache Index.";
106 return RestoreFromDisk(index_filename, io_thread, merge_callback);
107 }
108
109 const int entries_buffer_size =
110 header.number_of_entries * SimpleIndexFile::kEntryMetadataSize;
111
112 scoped_ptr<char[]> entries_buffer(new char[entries_buffer_size]);
113 if (base::ReadPlatformFile(index_file,
114 index_file_offset,
115 entries_buffer.get(),
116 entries_buffer_size) != entries_buffer_size) {
117 return RestoreFromDisk(index_filename, io_thread, merge_callback);
118 }
119 index_file_offset += entries_buffer_size;
120 incremental_crc = crc32(incremental_crc,
121 reinterpret_cast<const Bytef*>(entries_buffer.get()),
122 implicit_cast<uInt>(entries_buffer_size));
123
124 SimpleIndexFile::Footer footer;
125 if (base::ReadPlatformFile(index_file,
126 index_file_offset,
127 reinterpret_cast<char*>(&footer),
128 sizeof(footer)) != sizeof(footer)) {
129 return RestoreFromDisk(index_filename, io_thread, merge_callback);
130 }
131 const uint32 crc_read = footer.crc;
132 const uint32 crc_calculated = incremental_crc;
133 if (crc_read != crc_calculated)
134 return RestoreFromDisk(index_filename, io_thread, merge_callback);
135
136 scoped_ptr<EntrySet> index_file_entries(new EntrySet());
137 int entries_buffer_offset = 0;
138 while(entries_buffer_offset < entries_buffer_size) {
139 SimpleIndexFile::EntryMetadata entry_metadata;
140 SimpleIndexFile::EntryMetadata::DeSerialize(
141 &entries_buffer.get()[entries_buffer_offset], &entry_metadata);
142 InsertInternal(index_file_entries.get(), entry_metadata);
143 entries_buffer_offset += SimpleIndexFile::kEntryMetadataSize;
144 }
145 DCHECK_EQ(header.number_of_entries, index_file_entries->size());
146
147 io_thread->PostTask(FROM_HERE,
148 base::Bind(merge_callback,
149 base::Passed(&index_file_entries)));
150 }
151
152 void SimpleIndex::Insert(const std::string& key) { 106 void SimpleIndex::Insert(const std::string& key) {
153 DCHECK(io_thread_checker_.CalledOnValidThread()); 107 DCHECK(io_thread_checker_.CalledOnValidThread());
154 // Upon insert we don't know yet the size of the entry. 108 // Upon insert we don't know yet the size of the entry.
155 // It will be updated later when the SimpleEntryImpl finishes opening or 109 // It will be updated later when the SimpleEntryImpl finishes opening or
156 // creating the new entry, and then UpdateEntrySize will be called. 110 // creating the new entry, and then UpdateEntrySize will be called.
157 const uint64 hash_key = GetEntryHashKey(key); 111 const uint64 hash_key = GetEntryHashKey(key);
158 InsertInternal(&entries_set_, SimpleIndexFile::EntryMetadata( 112 InsertInEntrySet(EntryMetadata(hash_key, base::Time::Now(), 0),
159 hash_key, 113 &entries_set_);
160 base::Time::Now(), 0));
161 if (!initialized_) 114 if (!initialized_)
162 removed_entries_.erase(hash_key); 115 removed_entries_.erase(hash_key);
163 } 116 }
164 117
165 void SimpleIndex::Remove(const std::string& key) { 118 void SimpleIndex::Remove(const std::string& key) {
166 DCHECK(io_thread_checker_.CalledOnValidThread()); 119 DCHECK(io_thread_checker_.CalledOnValidThread());
167 UpdateEntrySize(key, 0); 120 UpdateEntrySize(key, 0);
168 const uint64 hash_key = GetEntryHashKey(key); 121 const uint64 hash_key = GetEntryHashKey(key);
169 entries_set_.erase(hash_key); 122 entries_set_.erase(hash_key);
170 123
(...skipping 19 matching lines...) Expand all
190 return true; 143 return true;
191 } 144 }
192 145
193 bool SimpleIndex::UpdateEntrySize(const std::string& key, uint64 entry_size) { 146 bool SimpleIndex::UpdateEntrySize(const std::string& key, uint64 entry_size) {
194 DCHECK(io_thread_checker_.CalledOnValidThread()); 147 DCHECK(io_thread_checker_.CalledOnValidThread());
195 EntrySet::iterator it = entries_set_.find(GetEntryHashKey(key)); 148 EntrySet::iterator it = entries_set_.find(GetEntryHashKey(key));
196 if (it == entries_set_.end()) 149 if (it == entries_set_.end())
197 return false; 150 return false;
198 151
199 // Update the total cache size with the new entry size. 152 // Update the total cache size with the new entry size.
200 cache_size_ -= it->second.entry_size; 153 cache_size_ -= it->second.GetEntrySize();
201 cache_size_ += entry_size; 154 cache_size_ += entry_size;
202 it->second.entry_size = entry_size; 155 it->second.SetEntrySize(entry_size);
203 156
204 return true; 157 return true;
205 } 158 }
206 159
207 // static 160 // static
208 void SimpleIndex::InsertInternal( 161 void SimpleIndex::LoadFromDisk(
209 EntrySet* entry_set, 162 const base::FilePath& index_filename,
210 const SimpleIndexFile::EntryMetadata& entry_metadata) { 163 const scoped_refptr<base::TaskRunner>& io_thread,
211 // TODO(felipeg): Use a hash_set instead of a hash_map. 164 const IndexCompletionCallback& completion_callback) {
212 DCHECK(entry_set); 165 scoped_ptr<EntrySet> index_file_entries =
213 entry_set->insert( 166 SimpleIndexFile::LoadFromDisk(index_filename);
214 std::make_pair(entry_metadata.GetHashKey(), entry_metadata)); 167
168 if (!index_file_entries.get())
169 index_file_entries = SimpleIndex::RestoreFromDisk(index_filename);
170
171 io_thread->PostTask(FROM_HERE,
172 base::Bind(completion_callback,
173 base::Passed(&index_file_entries)));
215 } 174 }
216 175
217 // static 176 // static
218 void SimpleIndex::RestoreFromDisk( 177 scoped_ptr<EntrySet> SimpleIndex::RestoreFromDisk(
219 const base::FilePath& index_filename, 178 const base::FilePath& index_filename) {
220 const scoped_refptr<base::TaskRunner>& io_thread,
221 const MergeCallback& merge_callback) {
222 using file_util::FileEnumerator; 179 using file_util::FileEnumerator;
223 LOG(INFO) << "Simple Cache Index is being restored from disk."; 180 LOG(INFO) << "Simple Cache Index is being restored from disk.";
224 181
225 file_util::Delete(index_filename, /* recursive = */ false); 182 file_util::Delete(index_filename, /* recursive = */ false);
226 scoped_ptr<EntrySet> index_file_entries(new EntrySet()); 183 scoped_ptr<EntrySet> index_file_entries(new EntrySet());
227 184
228 // TODO(felipeg,gavinp): Fix this once we have a one-file per entry format. 185 // TODO(felipeg,gavinp): Fix this once we have a one-file per entry format.
229 COMPILE_ASSERT(kSimpleEntryFileCount == 3, 186 COMPILE_ASSERT(kSimpleEntryFileCount == 3,
230 file_pattern_must_match_file_count); 187 file_pattern_must_match_file_count);
188
189 const int kFileSuffixLenght = std::string("_0").size();
231 const base::FilePath::StringType file_pattern = FILE_PATH_LITERAL("*_[0-2]"); 190 const base::FilePath::StringType file_pattern = FILE_PATH_LITERAL("*_[0-2]");
232 FileEnumerator enumerator(index_filename.DirName(), 191 FileEnumerator enumerator(index_filename.DirName(),
233 false /* recursive */, 192 false /* recursive */,
234 FileEnumerator::FILES, 193 FileEnumerator::FILES,
235 file_pattern); 194 file_pattern);
236 for (base::FilePath file_path = enumerator.Next(); !file_path.empty(); 195 for (base::FilePath file_path = enumerator.Next(); !file_path.empty();
237 file_path = enumerator.Next()) { 196 file_path = enumerator.Next()) {
238 const base::FilePath::StringType base_name = file_path.BaseName().value(); 197 const base::FilePath::StringType base_name = file_path.BaseName().value();
239 // Converting to std::string is OK since we never use UTF8 wide chars in our 198 // Converting to std::string is OK since we never use UTF8 wide chars in our
240 // file names. 199 // file names.
241 const std::string hash_name(base_name.begin(), base_name.end()); 200 const std::string hash_name(base_name.begin(), base_name.end());
242 const std::string hash_key_string = 201 const std::string hash_key_string =
243 hash_name.substr(0, kEntryHashKeyAsHexStringSize); 202 hash_name.substr(0, hash_name.size() - kFileSuffixLenght);
244 uint64 hash_key = 0; 203 uint64 hash_key = 0;
245 if (!GetEntryHashKeyFromHexString(hash_key_string, &hash_key)) { 204 if (!GetEntryHashKeyFromHexString(hash_key_string, &hash_key)) {
246 LOG(WARNING) << "Invalid Entry Hash Key filename while restoring " 205 LOG(WARNING) << "Invalid Entry Hash Key filename while restoring "
247 << "Simple Index from disk: " << hash_name; 206 << "Simple Index from disk: " << hash_name;
248 // TODO(felipeg): Should we delete the invalid file here ? 207 // TODO(felipeg): Should we delete the invalid file here ?
249 continue; 208 continue;
250 } 209 }
251 210
252 FileEnumerator::FindInfo find_info = {}; 211 FileEnumerator::FindInfo find_info = {};
253 enumerator.GetFindInfo(&find_info); 212 enumerator.GetFindInfo(&find_info);
254 base::Time last_used_time; 213 base::Time last_used_time;
255 #if defined(OS_POSIX) 214 #if defined(OS_POSIX)
256 // For POSIX systems, a last access time is available. However, it's not 215 // For POSIX systems, a last access time is available. However, it's not
257 // guaranteed to be more accurate than mtime. It is no worse though. 216 // guaranteed to be more accurate than mtime. It is no worse though.
258 last_used_time = base::Time::FromTimeT(find_info.stat.st_atime); 217 last_used_time = base::Time::FromTimeT(find_info.stat.st_atime);
259 #endif 218 #endif
260 if (last_used_time.is_null()) 219 if (last_used_time.is_null())
261 last_used_time = FileEnumerator::GetLastModifiedTime(find_info); 220 last_used_time = FileEnumerator::GetLastModifiedTime(find_info);
262 221
263 int64 file_size = FileEnumerator::GetFilesize(find_info); 222 int64 file_size = FileEnumerator::GetFilesize(find_info);
264 EntrySet::iterator it = index_file_entries->find(hash_key); 223 EntrySet::iterator it = index_file_entries->find(hash_key);
265 if (it == index_file_entries->end()) { 224 if (it == index_file_entries->end()) {
266 InsertInternal(index_file_entries.get(), SimpleIndexFile::EntryMetadata( 225 InsertInEntrySet(EntryMetadata(hash_key, last_used_time, file_size),
267 hash_key, last_used_time, file_size)); 226 index_file_entries.get());
268 } else { 227 } else {
269 // Summing up the total size of the entry through all the *_[0-2] files 228 // Summing up the total size of the entry through all the *_[0-2] files
270 it->second.entry_size += file_size; 229 it->second.SetEntrySize(it->second.GetEntrySize() + file_size);
271 } 230 }
272 } 231 }
232 return index_file_entries.Pass();
233 }
273 234
274 io_thread->PostTask(FROM_HERE, 235
275 base::Bind(merge_callback, 236 // static
276 base::Passed(&index_file_entries))); 237 void SimpleIndex::WriteToDiskInternal(const base::FilePath& index_filename,
238 scoped_ptr<Pickle> pickle) {
239 SimpleIndexFile::WriteToDisk(index_filename, *pickle);
277 } 240 }
278 241
279 void SimpleIndex::MergeInitializingSet( 242 void SimpleIndex::MergeInitializingSet(
280 scoped_ptr<EntrySet> index_file_entries) { 243 scoped_ptr<EntrySet> index_file_entries) {
281 DCHECK(io_thread_checker_.CalledOnValidThread()); 244 DCHECK(io_thread_checker_.CalledOnValidThread());
282 // First, remove the entries that are in the |removed_entries_| from both 245 // First, remove the entries that are in the |removed_entries_| from both
283 // sets. 246 // sets.
284 for (base::hash_set<uint64>::const_iterator it = 247 for (base::hash_set<uint64>::const_iterator it =
285 removed_entries_.begin(); it != removed_entries_.end(); ++it) { 248 removed_entries_.begin(); it != removed_entries_.end(); ++it) {
286 entries_set_.erase(*it); 249 entries_set_.erase(*it);
287 index_file_entries->erase(*it); 250 index_file_entries->erase(*it);
288 } 251 }
289 252
290 // Recalculate the cache size while merging the two sets. 253 // Recalculate the cache size while merging the two sets.
291 cache_size_ = 0; 254 cache_size_ = 0;
292 for (EntrySet::const_iterator it = index_file_entries->begin(); 255 for (EntrySet::const_iterator it = index_file_entries->begin();
293 it != index_file_entries->end(); ++it) { 256 it != index_file_entries->end(); ++it) {
294 // If there is already an entry in the current entries_set_, we need to 257 // If there is already an entry in the current entries_set_, we need to
295 // merge the new data there with the data loaded in the initialization. 258 // merge the new data there with the data loaded in the initialization.
296 EntrySet::iterator current_entry = entries_set_.find(it->first); 259 EntrySet::iterator current_entry = entries_set_.find(it->first);
297 if (current_entry != entries_set_.end()) { 260 if (current_entry != entries_set_.end()) {
298 // When Merging, existing valid data in the |current_entry| will prevail. 261 // When Merging, existing valid data in the |current_entry| will prevail.
299 SimpleIndexFile::EntryMetadata::Merge( 262 current_entry->second.MergeWith(it->second);
300 it->second, &(current_entry->second)); 263 cache_size_ += current_entry->second.GetEntrySize();
301 cache_size_ += current_entry->second.entry_size;
302 } else { 264 } else {
303 InsertInternal(&entries_set_, it->second); 265 InsertInEntrySet(it->second, &entries_set_);
304 cache_size_ += it->second.entry_size; 266 cache_size_ += it->second.GetEntrySize();
305 } 267 }
306 } 268 }
307 269
308 initialized_ = true; 270 initialized_ = true;
309 } 271 }
310 272
311 void SimpleIndex::Serialize(std::string* out_buffer) {
312 DCHECK(io_thread_checker_.CalledOnValidThread());
313 DCHECK(out_buffer);
314 SimpleIndexFile::Header header;
315 SimpleIndexFile::Footer footer;
316
317 header.initial_magic_number = kSimpleIndexInitialMagicNumber;
318 header.version = kSimpleVersion;
319 header.number_of_entries = entries_set_.size();
320
321 out_buffer->reserve(
322 sizeof(header) +
323 sizeof(SimpleIndexFile::EntryMetadata) * entries_set_.size() +
324 sizeof(footer));
325
326 // The Header goes first.
327 out_buffer->append(reinterpret_cast<const char*>(&header),
328 sizeof(header));
329
330 // Then all the entries from |entries_set_|.
331 for (EntrySet::const_iterator it = entries_set_.begin();
332 it != entries_set_.end(); ++it) {
333 SimpleIndexFile::EntryMetadata::Serialize(it->second, out_buffer);
334 }
335
336 // Then, CRC.
337 footer.crc = crc32(crc32(0, Z_NULL, 0),
338 reinterpret_cast<const Bytef*>(out_buffer->data()),
339 implicit_cast<uInt>(out_buffer->size()));
340
341 out_buffer->append(reinterpret_cast<const char*>(&footer), sizeof(footer));
342 }
343
344 void SimpleIndex::WriteToDisk() { 273 void SimpleIndex::WriteToDisk() {
345 DCHECK(io_thread_checker_.CalledOnValidThread()); 274 DCHECK(io_thread_checker_.CalledOnValidThread());
346 scoped_ptr<std::string> buffer(new std::string()); 275 SimpleIndexFile::IndexMetadata index_metadata(entries_set_.size(),
347 Serialize(buffer.get()); 276 cache_size_);
277 scoped_ptr<Pickle> pickle = SimpleIndexFile::Serialize(index_metadata,
278 entries_set_);
348 cache_thread_->PostTask(FROM_HERE, base::Bind( 279 cache_thread_->PostTask(FROM_HERE, base::Bind(
349 &SimpleIndex::UpdateFile, 280 &SimpleIndex::WriteToDiskInternal,
350 index_filename_, 281 index_filename_,
351 index_filename_.DirName().AppendASCII("index_temp"), 282 base::Passed(&pickle)));
352 base::Passed(&buffer)));
353 }
354
355 // static
356 void SimpleIndex::UpdateFile(const base::FilePath& index_filename,
357 const base::FilePath& temp_filename,
358 scoped_ptr<std::string> buffer) {
359 int bytes_written = file_util::WriteFile(
360 temp_filename, buffer->data(), buffer->size());
361 DCHECK_EQ(bytes_written, implicit_cast<int>(buffer->size()));
362 if (bytes_written != static_cast<int>(buffer->size())) {
363 // TODO(felipeg): Add better error handling.
364 LOG(ERROR) << "Could not write Simple Cache index to temporary file: "
365 << temp_filename.value();
366 file_util::Delete(temp_filename, /* recursive = */ false);
367 return;
368 }
369 // Swap temp and index_file.
370 bool result = file_util::ReplaceFile(temp_filename, index_filename);
371 DCHECK(result);
372 } 283 }
373 284
374 } // namespace disk_cache 285 } // namespace disk_cache
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698