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

Unified Diff: net/disk_cache/simple/simple_index_file.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: Philippe's 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 side-by-side diff with in-line comments
Download patch
Index: net/disk_cache/simple/simple_index_file.cc
diff --git a/net/disk_cache/simple/simple_index_file.cc b/net/disk_cache/simple/simple_index_file.cc
new file mode 100644
index 0000000000000000000000000000000000000000..9d9b575574b180a62eb7ea86d7f8b84c3eb68a39
--- /dev/null
+++ b/net/disk_cache/simple/simple_index_file.cc
@@ -0,0 +1,224 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "net/disk_cache/simple/simple_index_file.h"
+
+#include "base/bind.h"
+#include "base/bind_helpers.h"
+#include "base/file_util.h"
+#include "base/hash.h"
+#include "base/logging.h"
+#include "base/message_loop.h"
+#include "base/pickle.h"
+#include "base/task_runner.h"
+#include "net/disk_cache/simple/simple_disk_format.h"
+#include "net/disk_cache/simple/simple_index_util.h"
+#include "third_party/zlib/zlib.h"
+
+namespace {
+
+const uint64 kMaxEntiresInIndex = 100000000;
+
+uint32 CalculatePickleCRC(const Pickle& pickle) {
+ return crc32(crc32(0, Z_NULL, 0),
+ reinterpret_cast<const Bytef*>(pickle.payload()),
+ implicit_cast<uInt>(pickle.payload_size()));
gavinp 2013/04/15 15:40:54 You can lose this cast. Yes, I'm aware you cut and
felipeg 2013/04/15 15:56:09 Done.
+}
+
+} // namespace
+
+namespace disk_cache {
+
+SimpleIndexFile::IndexMetadata::IndexMetadata() :
+ initial_magic_number_(kSimpleIndexInitialMagicNumber),
+ version_(kSimpleVersion),
+ number_of_entries_(0),
+ cache_size_(0) {}
+
+SimpleIndexFile::IndexMetadata::IndexMetadata(
+ uint64 number_of_entries, uint64 cache_size) :
+ initial_magic_number_(kSimpleIndexInitialMagicNumber),
+ version_(kSimpleVersion),
+ number_of_entries_(number_of_entries),
+ cache_size_(cache_size) {}
+
+void SimpleIndexFile::IndexMetadata::Serialize(Pickle* pickle) const {
+ DCHECK(pickle);
+ pickle->WriteUInt64(initial_magic_number_);
+ pickle->WriteUInt32(version_);
+ pickle->WriteUInt64(number_of_entries_);
+ pickle->WriteUInt64(cache_size_);
+}
+
+bool SimpleIndexFile::IndexMetadata::DeSerialize(PickleIterator* it) {
+ DCHECK(it);
+ return it->ReadUInt64(&initial_magic_number_) &&
+ it->ReadUInt32(&version_) &&
+ it->ReadUInt64(&number_of_entries_)&&
+ it->ReadUInt64(&cache_size_);
+}
+
+bool SimpleIndexFile::IndexMetadata::CheckIndexMetadata() {
+ return number_of_entries_ <= kMaxEntiresInIndex &&
+ initial_magic_number_ == disk_cache::kSimpleIndexInitialMagicNumber &&
+ version_ == disk_cache::kSimpleVersion;
+}
+
+// static
+void SimpleIndexFile::LoadFromDisk(
+ const base::FilePath& index_filename,
+ const scoped_refptr<base::TaskRunner>& callback_runner,
+ const IndexCompletionCallback& completion_callback) {
+ std::string contents;
+ if(!file_util::ReadFileToString(index_filename, &contents)) {
+ LOG(WARNING) << "Could not read Simple Index file.";
+ return RestoreFromDisk(
+ index_filename, callback_runner, completion_callback);
+ }
+
+ Pickle pickle(contents.data(), contents.size());
+ PickleIterator pickle_it(pickle);
+
+ SimpleIndexFile::PickleHeader* header_p =
+ pickle.headerT<SimpleIndexFile::PickleHeader>();
+ const uint32 crc_read = header_p->crc;
+ const uint32 crc_calculated = CalculatePickleCRC(pickle);
+
+ if (crc_read != crc_calculated) {
+ LOG(WARNING) << "Invalid CRC in Simple Index file.";
+ return RestoreFromDisk(
+ index_filename, callback_runner, completion_callback);
+ }
+
+ SimpleIndexFile::IndexMetadata index_metadata;
+ if (!index_metadata.DeSerialize(&pickle_it)) {
+ LOG(ERROR) << "Invalid index_metadata on Simple Cache Index.";
+ return RestoreFromDisk(
+ index_filename, callback_runner, completion_callback);
+ }
+
+ if (!index_metadata.CheckIndexMetadata()) {
+ LOG(ERROR) << "Invalid index_metadata on Simple Cache Index.";
+ return RestoreFromDisk(
+ index_filename, callback_runner, completion_callback);
+ }
+
+ scoped_ptr<EntrySet> index_file_entries(new EntrySet());
+ while (index_file_entries->size() < index_metadata.GetNumberOfEntries()) {
+ EntryMetadata entry_metadata;
+ if (!entry_metadata.DeSerialize(&pickle_it)) {
+ LOG(WARNING) << "Invalid EntryMetadata in Simple Index file.";
+ return RestoreFromDisk(
+ index_filename, callback_runner, completion_callback);
+ }
+ InsertInEntrySet(entry_metadata,
+ index_file_entries.get());
+ }
+ callback_runner->PostTask(FROM_HERE,
+ base::Bind(completion_callback,
+ base::Passed(&index_file_entries)));
+}
+
+// static
+void SimpleIndexFile::RestoreFromDisk(
+ const base::FilePath& index_filename,
+ const scoped_refptr<base::TaskRunner>& callback_runner,
+ const IndexCompletionCallback& completion_callback) {
+ using file_util::FileEnumerator;
+ LOG(INFO) << "Simple Cache Index is being restored from disk.";
+
+ file_util::Delete(index_filename, /* recursive = */ false);
+ scoped_ptr<EntrySet> index_file_entries(new EntrySet());
+
+ // TODO(felipeg,gavinp): Fix this once we have a one-file per entry format.
+ COMPILE_ASSERT(kSimpleEntryFileCount == 3,
+ file_pattern_must_match_file_count);
+ const base::FilePath::StringType file_pattern = FILE_PATH_LITERAL("*_[0-2]");
+ FileEnumerator enumerator(index_filename.DirName(),
+ false /* recursive */,
+ FileEnumerator::FILES,
+ file_pattern);
+ for (base::FilePath file_path = enumerator.Next(); !file_path.empty();
+ file_path = enumerator.Next()) {
+ const base::FilePath::StringType base_name = file_path.BaseName().value();
+ // Converting to std::string is OK since we never use UTF8 wide chars in our
+ // file names.
+ const std::string hash_name(base_name.begin(), base_name.end());
+ const std::string hash_key_string =
+ hash_name.substr(0, kEntryHashKeyAsHexStringSize);
+ uint64 hash_key = 0;
+ if (!GetEntryHashKeyFromHexString(hash_key_string, &hash_key)) {
+ LOG(WARNING) << "Invalid Entry Hash Key filename while restoring "
+ << "Simple Index from disk: " << hash_name;
+ // TODO(felipeg): Should we delete the invalid file here ?
+ continue;
+ }
+
+ FileEnumerator::FindInfo find_info = {};
+ enumerator.GetFindInfo(&find_info);
+ base::Time last_used_time;
+#if defined(OS_POSIX)
+ // For POSIX systems, a last access time is available. However, it's not
+ // guaranteed to be more accurate than mtime. It is no worse though.
+ last_used_time = base::Time::FromTimeT(find_info.stat.st_atime);
+#endif
+ if (last_used_time.is_null())
+ last_used_time = FileEnumerator::GetLastModifiedTime(find_info);
+
+ int64 file_size = FileEnumerator::GetFilesize(find_info);
+ EntrySet::iterator it = index_file_entries->find(hash_key);
+ if (it == index_file_entries->end()) {
+ InsertInEntrySet(EntryMetadata(hash_key, last_used_time, file_size),
+ index_file_entries.get());
+ } else {
+ // Summing up the total size of the entry through all the *_[0-2] files
+ it->second.SetEntrySize(it->second.GetEntrySize() + file_size);
+ }
+ }
+
+ callback_runner->PostTask(FROM_HERE,
+ base::Bind(completion_callback,
+ base::Passed(&index_file_entries)));
+}
+
+// static
+scoped_ptr<Pickle> SimpleIndexFile::Serialize(
+ const SimpleIndexFile::IndexMetadata& index_metadata,
+ const EntrySet& entries) {
+ scoped_ptr<Pickle> pickle(new Pickle(sizeof(SimpleIndexFile::PickleHeader)));
+
+ index_metadata.Serialize(pickle.get());
+ for (EntrySet::const_iterator it = entries.begin();
+ it != entries.end(); ++it) {
+ it->second.Serialize(pickle.get());
+ }
+ SimpleIndexFile::PickleHeader* header_p =
+ pickle->headerT<SimpleIndexFile::PickleHeader>();
+ header_p->crc = CalculatePickleCRC(*pickle);
+ return pickle.Pass();
+}
+
+// static
+void SimpleIndexFile::WriteToDisk(const base::FilePath& index_filename,
+ scoped_ptr<Pickle> pickle) {
+ const base::FilePath temp_filename =
+ index_filename.DirName().AppendASCII("index_temp");
+ int bytes_written = file_util::WriteFile(
+ temp_filename,
+ reinterpret_cast<const char*>(pickle->data()),
+ pickle->size());
+ DCHECK_EQ(bytes_written, implicit_cast<int>(pickle->size()));
+ if (bytes_written != static_cast<int>(pickle->size())) {
+ // TODO(felipeg): Add better error handling.
+ LOG(ERROR) << "Could not write Simple Cache index to temporary file: "
+ << temp_filename.value();
+ file_util::Delete(temp_filename, /* recursive = */ false);
+ return;
+ }
+ // Swap temp and index_file.
+ bool result = file_util::ReplaceFile(temp_filename, index_filename);
+ DCHECK(result);
+}
+
+} // namespace disk_cache

Powered by Google App Engine
This is Rietveld 408576698