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 #include "net/disk_cache/addr.h" | 5 #include "net/disk_cache/addr.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 | 8 |
9 namespace disk_cache { | 9 namespace disk_cache { |
10 | 10 |
11 int Addr::start_block() const { | 11 int Addr::start_block() const { |
12 DCHECK(is_block_file()); | 12 DCHECK(is_block_file()); |
13 return value_ & kStartBlockMask; | 13 return value_ & kStartBlockMask; |
14 } | 14 } |
15 | 15 |
16 int Addr::num_blocks() const { | 16 int Addr::num_blocks() const { |
17 DCHECK(is_block_file() || !value_); | 17 DCHECK(is_block_file() || !value_); |
18 return ((value_ & kNumBlocksMask) >> kNumBlocksOffset) + 1; | 18 return ((value_ & kNumBlocksMask) >> kNumBlocksOffset) + 1; |
19 } | 19 } |
20 | 20 |
21 bool Addr::SetFileNumber(int file_number) { | 21 bool Addr::SetFileNumber(int file_number) { |
22 DCHECK(is_separate_file()); | 22 DCHECK(is_separate_file()); |
23 if (file_number & ~kFileNameMask) | 23 if (file_number & ~kFileNameMask) |
24 return false; | 24 return false; |
25 value_ = kInitializedMask | file_number; | 25 value_ = kInitializedMask | file_number; |
26 return true; | 26 return true; |
27 } | 27 } |
28 | 28 |
29 bool Addr::SanityCheck() const { | 29 bool Addr::SanityCheckV2() const { |
30 if (!is_initialized()) | 30 if (!is_initialized()) |
31 return !value_; | 31 return !value_; |
32 | 32 |
33 if (((value_ & kFileTypeMask) >> kFileTypeOffset) > 4) | 33 if (file_type() > BLOCK_4K) |
34 return false; | 34 return false; |
35 | 35 |
36 if (is_separate_file()) | 36 if (is_separate_file()) |
37 return true; | 37 return true; |
38 | 38 |
39 const uint32 kReservedBitsMask = 0x0c000000; | 39 return !reserved_bits(); |
40 return !(value_ & kReservedBitsMask); | 40 } |
| 41 |
| 42 bool Addr::SanityCheckV3() const { |
| 43 if (!is_initialized()) |
| 44 return !value_; |
| 45 |
| 46 // For actual entries, SanityCheckForEntryV3 should be used. |
| 47 if (file_type() > BLOCK_FILES) |
| 48 return false; |
| 49 |
| 50 if (is_separate_file()) |
| 51 return true; |
| 52 |
| 53 return !reserved_bits(); |
41 } | 54 } |
42 | 55 |
43 bool Addr::SanityCheckForEntryV2() const { | 56 bool Addr::SanityCheckForEntryV2() const { |
44 if (!SanityCheck() || !is_initialized()) | 57 if (!SanityCheckV2() || !is_initialized()) |
45 return false; | 58 return false; |
46 | 59 |
47 if (is_separate_file() || file_type() != BLOCK_256) | 60 if (is_separate_file() || file_type() != BLOCK_256) |
48 return false; | 61 return false; |
49 | 62 |
50 return true; | 63 return true; |
51 } | 64 } |
52 | 65 |
| 66 bool Addr::SanityCheckForEntryV3() const { |
| 67 if (!is_initialized()) |
| 68 return false; |
| 69 |
| 70 if (reserved_bits()) |
| 71 return false; |
| 72 |
| 73 if (file_type() != BLOCK_ENTRIES && file_type() != BLOCK_EVICTED) |
| 74 return false; |
| 75 |
| 76 if (num_blocks() != 1) |
| 77 return false; |
| 78 |
| 79 return true; |
| 80 } |
| 81 |
53 bool Addr::SanityCheckForRankings() const { | 82 bool Addr::SanityCheckForRankings() const { |
54 if (!SanityCheck() || !is_initialized()) | 83 if (!SanityCheckV2() || !is_initialized()) |
55 return false; | 84 return false; |
56 | 85 |
57 if (is_separate_file() || file_type() != RANKINGS || num_blocks() != 1) | 86 if (is_separate_file() || file_type() != RANKINGS || num_blocks() != 1) |
58 return false; | 87 return false; |
59 | 88 |
60 return true; | 89 return true; |
61 } | 90 } |
62 | 91 |
63 } // namespace disk_cache | 92 } // namespace disk_cache |
OLD | NEW |