| 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 // For a general description of the files used by the cache see file_format.h. | 5 // For a general description of the files used by the cache see file_format.h. |
| 6 // | 6 // |
| 7 // A block file is a file designed to store blocks of data of a given size. It | 7 // A block file is a file designed to store blocks of data of a given size. It |
| 8 // is able to store data that spans from one to four consecutive "blocks", and | 8 // is able to store data that spans from one to four consecutive "blocks", and |
| 9 // it grows as needed to store up to approximately 65000 blocks. It has a fixed | 9 // it grows as needed to store up to approximately 65000 blocks. It has a fixed |
| 10 // size header used for book keeping such as tracking free of blocks on the | 10 // size header used for book keeping such as tracking free of blocks on the |
| 11 // file. For example, a block-file for 1KB blocks will grow from 8KB when | 11 // file. For example, a block-file for 1KB blocks will grow from 8KB when |
| 12 // totally empty to about 64MB when completely full. At that point, data blocks | 12 // totally empty to about 64MB when completely full. At that point, data blocks |
| 13 // of 1KB will be stored on a second block file that will store the next set of | 13 // of 1KB will be stored on a second block file that will store the next set of |
| 14 // 65000 blocks. The first file contains the number of the second file, and the | 14 // 65000 blocks. The first file contains the number of the second file, and the |
| 15 // second file contains the number of a third file, created when the second file | 15 // second file contains the number of a third file, created when the second file |
| 16 // reaches its limit. It is important to remember that no matter how long the | 16 // reaches its limit. It is important to remember that no matter how long the |
| 17 // chain of files is, any given block can be located directly by its address, | 17 // chain of files is, any given block can be located directly by its address, |
| 18 // which contains the file number and starting block inside the file. | 18 // which contains the file number and starting block inside the file. |
| 19 | 19 |
| 20 #ifndef NET_DISK_CACHE_DISK_FORMAT_BASE_H_ | 20 #ifndef NET_DISK_CACHE_BLOCKFILE_DISK_FORMAT_BASE_H_ |
| 21 #define NET_DISK_CACHE_DISK_FORMAT_BASE_H_ | 21 #define NET_DISK_CACHE_BLOCKFILE_DISK_FORMAT_BASE_H_ |
| 22 | 22 |
| 23 #include "base/basictypes.h" | 23 #include "base/basictypes.h" |
| 24 #include "net/base/net_export.h" | 24 #include "net/base/net_export.h" |
| 25 | 25 |
| 26 namespace disk_cache { | 26 namespace disk_cache { |
| 27 | 27 |
| 28 typedef uint32 CacheAddr; | 28 typedef uint32 CacheAddr; |
| 29 | 29 |
| 30 const uint32 kBlockVersion2 = 0x20000; // Version 2.0. | 30 const uint32 kBlockVersion2 = 0x20000; // Version 2.0. |
| 31 const uint32 kBlockCurrentVersion = 0x30000; // Version 3.0. | 31 const uint32 kBlockCurrentVersion = 0x30000; // Version 3.0. |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 // and as large as 8 KB. | 122 // and as large as 8 KB. |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 // The number of blocks stored by a child entry. | 125 // The number of blocks stored by a child entry. |
| 126 const int kNumSparseBits = 1024; | 126 const int kNumSparseBits = 1024; |
| 127 COMPILE_ASSERT(sizeof(SparseData) == sizeof(SparseHeader) + kNumSparseBits / 8, | 127 COMPILE_ASSERT(sizeof(SparseData) == sizeof(SparseHeader) + kNumSparseBits / 8, |
| 128 Invalid_SparseData_bitmap); | 128 Invalid_SparseData_bitmap); |
| 129 | 129 |
| 130 } // namespace disk_cache | 130 } // namespace disk_cache |
| 131 | 131 |
| 132 #endif // NET_DISK_CACHE_DISK_FORMAT_BASE_H_ | 132 #endif // NET_DISK_CACHE_BLOCKFILE_DISK_FORMAT_BASE_H_ |
| OLD | NEW |