Chromium Code Reviews| OLD | NEW |
|---|---|
| 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_util.h" | 5 #include "net/disk_cache/simple/simple_util.h" |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/format_macros.h" | 10 #include "base/format_macros.h" |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 key.size(), u.sha_hash); | 76 key.size(), u.sha_hash); |
| 77 return u.key_hash; | 77 return u.key_hash; |
| 78 } | 78 } |
| 79 | 79 |
| 80 std::string GetFilenameFromEntryHashAndIndex(uint64 entry_hash, | 80 std::string GetFilenameFromEntryHashAndIndex(uint64 entry_hash, |
| 81 int index) { | 81 int index) { |
| 82 return base::StringPrintf("%016" PRIx64 "_%1d", entry_hash, index); | 82 return base::StringPrintf("%016" PRIx64 "_%1d", entry_hash, index); |
| 83 } | 83 } |
| 84 | 84 |
| 85 std::string GetFilenameFromKeyAndIndex(const std::string& key, int index) { | 85 std::string GetFilenameFromKeyAndIndex(const std::string& key, int index) { |
| 86 return GetEntryHashKeyAsHexString(key) + base::StringPrintf("_%1d", index); | 86 return GetEntryHashKeyAsHexString(key) + base::StringPrintf("_%1d", index); |
|
pasko
2013/09/13 19:09:21
it seems natural to replace "index" to "GetFileInd
clamy
2013/09/16 15:01:17
When creating the platform files, we are iterating
pasko
2013/09/17 11:29:01
makes sense
just discovered: this function is use
clamy
2013/09/17 13:59:42
Done.
| |
| 87 } | 87 } |
| 88 | 88 |
| 89 int32 GetDataSizeFromKeyAndFileSize(const std::string& key, int64 file_size) { | 89 int32 GetDataSizeFromKeyAndFileSize(const std::string& key, int64 file_size) { |
| 90 int64 data_size = file_size - key.size() - sizeof(SimpleFileHeader) - | 90 int64 data_size = file_size - key.size() - sizeof(SimpleFileHeader) - |
| 91 sizeof(SimpleFileEOF); | 91 sizeof(SimpleFileEOF); |
| 92 DCHECK_GE(implicit_cast<int64>(std::numeric_limits<int32>::max()), data_size); | 92 DCHECK_GE(implicit_cast<int64>(std::numeric_limits<int32>::max()), data_size); |
| 93 return data_size; | 93 return data_size; |
| 94 } | 94 } |
| 95 | 95 |
| 96 int64 GetFileSizeFromKeyAndDataSize(const std::string& key, int32 data_size) { | 96 int64 GetFileSizeFromKeyAndDataSize(const std::string& key, int32 data_size) { |
| 97 return data_size + key.size() + sizeof(SimpleFileHeader) + | 97 return data_size + key.size() + sizeof(SimpleFileHeader) + |
| 98 sizeof(SimpleFileEOF); | 98 sizeof(SimpleFileEOF); |
| 99 } | 99 } |
| 100 | 100 |
| 101 int64 GetFileOffsetFromKeyAndDataOffset(const std::string& key, | 101 int GetFileIndexFromStreamIndex(int stream_index) { |
| 102 int data_offset) { | 102 return (stream_index == 2) ? 1 : 0; |
|
pasko
2013/09/13 19:09:21
I would prefer to leave stream 2 with the "_2" suf
clamy
2013/09/16 15:01:17
File index is being used as an offset in an array
pasko
2013/09/17 11:29:01
Agreed.
| |
| 103 } | |
| 104 | |
| 105 int GetMaximumDataOffset(int file_index, const int data_size[]) { | |
|
pasko
2013/09/13 19:09:21
Naming is fun. This name suggests (at least to me)
clamy
2013/09/16 15:01:17
Done.
| |
| 106 if (file_index == 0) | |
| 107 return data_size[0] + data_size[1] + sizeof(SimpleFileEOF); | |
| 108 return data_size[2]; | |
| 109 } | |
| 110 | |
| 111 int64 GetFileOffsetFromDataOffset(const std::string& key, | |
| 112 int data_offset, | |
| 113 int index, | |
| 114 int stream_1_size) { | |
| 103 const int64 headers_size = sizeof(disk_cache::SimpleFileHeader) + key.size(); | 115 const int64 headers_size = sizeof(disk_cache::SimpleFileHeader) + key.size(); |
| 104 return headers_size + data_offset; | 116 const int64 additional_offset = |
| 117 index == 0 ? stream_1_size + sizeof(SimpleFileEOF) : 0; | |
| 118 return headers_size + data_offset + additional_offset; | |
| 105 } | 119 } |
| 106 | 120 |
| 107 // TODO(clamy, gavinp): this should go in base | 121 // TODO(clamy, gavinp): this should go in base |
| 108 bool GetMTime(const base::FilePath& path, base::Time* out_mtime) { | 122 bool GetMTime(const base::FilePath& path, base::Time* out_mtime) { |
| 109 DCHECK(out_mtime); | 123 DCHECK(out_mtime); |
| 110 #if defined(OS_POSIX) | 124 #if defined(OS_POSIX) |
| 111 base::ThreadRestrictions::AssertIOAllowed(); | 125 base::ThreadRestrictions::AssertIOAllowed(); |
| 112 struct stat file_stat; | 126 struct stat file_stat; |
| 113 if (stat(path.value().c_str(), &file_stat) != 0) | 127 if (stat(path.value().c_str(), &file_stat) != 0) |
| 114 return false; | 128 return false; |
| 115 time_t sec; | 129 time_t sec; |
| 116 long nsec; | 130 long nsec; |
| 117 if (GetNanoSecsFromStat(file_stat, &sec, &nsec)) { | 131 if (GetNanoSecsFromStat(file_stat, &sec, &nsec)) { |
| 118 int64 usec = (nsec / base::Time::kNanosecondsPerMicrosecond); | 132 int64 usec = (nsec / base::Time::kNanosecondsPerMicrosecond); |
| 119 *out_mtime = base::Time::FromTimeT(sec) | 133 *out_mtime = base::Time::FromTimeT(sec) |
| 120 + base::TimeDelta::FromMicroseconds(usec); | 134 + base::TimeDelta::FromMicroseconds(usec); |
| 121 return true; | 135 return true; |
| 122 } | 136 } |
| 123 #endif | 137 #endif |
| 124 base::PlatformFileInfo file_info; | 138 base::PlatformFileInfo file_info; |
| 125 if (!file_util::GetFileInfo(path, &file_info)) | 139 if (!file_util::GetFileInfo(path, &file_info)) |
| 126 return false; | 140 return false; |
| 127 *out_mtime = file_info.last_modified; | 141 *out_mtime = file_info.last_modified; |
| 128 return true; | 142 return true; |
| 129 } | 143 } |
| 130 | 144 |
| 131 } // namespace simple_backend | 145 } // namespace simple_backend |
| 132 | 146 |
| 133 } // namespace disk_cache | 147 } // namespace disk_cache |
| OLD | NEW |