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

Side by Side Diff: net/disk_cache/blockfile/disk_format_base.h

Issue 1477533002: Remove kint16max. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kint8max
Patch Set: includes Created 5 years 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
« no previous file with comments | « net/disk_cache/blockfile/block_files.cc ('k') | net/disk_cache/blockfile/file_lock.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_BLOCKFILE_DISK_FORMAT_BASE_H_ 20 #ifndef NET_DISK_CACHE_BLOCKFILE_DISK_FORMAT_BASE_H_
21 #define NET_DISK_CACHE_BLOCKFILE_DISK_FORMAT_BASE_H_ 21 #define NET_DISK_CACHE_BLOCKFILE_DISK_FORMAT_BASE_H_
22 22
23 #include "base/basictypes.h" 23 #include <stdint.h>
24
24 #include "net/base/net_export.h" 25 #include "net/base/net_export.h"
25 26
26 namespace disk_cache { 27 namespace disk_cache {
27 28
28 typedef uint32 CacheAddr; 29 typedef uint32_t CacheAddr;
29 30
30 const uint32 kBlockVersion2 = 0x20000; // Version 2.0. 31 const uint32_t kBlockVersion2 = 0x20000; // Version 2.0.
31 const uint32 kBlockCurrentVersion = 0x30000; // Version 3.0. 32 const uint32_t kBlockCurrentVersion = 0x30000; // Version 3.0.
32 33
33 const uint32 kBlockMagic = 0xC104CAC3; 34 const uint32_t kBlockMagic = 0xC104CAC3;
34 const int kBlockHeaderSize = 8192; // Two pages: almost 64k entries 35 const int kBlockHeaderSize = 8192; // Two pages: almost 64k entries
35 const int kMaxBlocks = (kBlockHeaderSize - 80) * 8; 36 const int kMaxBlocks = (kBlockHeaderSize - 80) * 8;
36 const int kNumExtraBlocks = 1024; // How fast files grow. 37 const int kNumExtraBlocks = 1024; // How fast files grow.
37 38
38 // Bitmap to track used blocks on a block-file. 39 // Bitmap to track used blocks on a block-file.
39 typedef uint32 AllocBitmap[kMaxBlocks / 32]; 40 typedef uint32_t AllocBitmap[kMaxBlocks / 32];
40 41
41 // A block-file is the file used to store information in blocks (could be 42 // A block-file is the file used to store information in blocks (could be
42 // EntryStore blocks, RankingsNode blocks or user-data blocks). 43 // EntryStore blocks, RankingsNode blocks or user-data blocks).
43 // We store entries that can expand for up to 4 consecutive blocks, and keep 44 // We store entries that can expand for up to 4 consecutive blocks, and keep
44 // counters of the number of blocks available for each type of entry. For 45 // counters of the number of blocks available for each type of entry. For
45 // instance, an entry of 3 blocks is an entry of type 3. We also keep track of 46 // instance, an entry of 3 blocks is an entry of type 3. We also keep track of
46 // where did we find the last entry of that type (to avoid searching the bitmap 47 // where did we find the last entry of that type (to avoid searching the bitmap
47 // from the beginning every time). 48 // from the beginning every time).
48 // This Structure is the header of a block-file: 49 // This Structure is the header of a block-file:
49 struct BlockFileHeader { 50 struct BlockFileHeader {
50 uint32 magic; 51 uint32_t magic;
51 uint32 version; 52 uint32_t version;
52 int16 this_file; // Index of this file. 53 int16_t this_file; // Index of this file.
53 int16 next_file; // Next file when this one is full. 54 int16_t next_file; // Next file when this one is full.
54 int32 entry_size; // Size of the blocks of this file. 55 int32_t entry_size; // Size of the blocks of this file.
55 int32 num_entries; // Number of stored entries. 56 int32_t num_entries; // Number of stored entries.
56 int32 max_entries; // Current maximum number of entries. 57 int32_t max_entries; // Current maximum number of entries.
57 int32 empty[4]; // Counters of empty entries for each type. 58 int32_t empty[4]; // Counters of empty entries for each type.
58 int32 hints[4]; // Last used position for each entry type. 59 int32_t hints[4]; // Last used position for each entry type.
59 volatile int32 updating; // Keep track of updates to the header. 60 volatile int32_t updating; // Keep track of updates to the header.
60 int32 user[5]; 61 int32_t user[5];
61 AllocBitmap allocation_map; 62 AllocBitmap allocation_map;
62 }; 63 };
63 64
64 static_assert(sizeof(BlockFileHeader) == kBlockHeaderSize, "bad header"); 65 static_assert(sizeof(BlockFileHeader) == kBlockHeaderSize, "bad header");
65 66
66 // Sparse data support: 67 // Sparse data support:
67 // We keep a two level hierarchy to enable sparse data for an entry: the first 68 // We keep a two level hierarchy to enable sparse data for an entry: the first
68 // level consists of using separate "child" entries to store ranges of 1 MB, 69 // level consists of using separate "child" entries to store ranges of 1 MB,
69 // and the second level stores blocks of 1 KB inside each child entry. 70 // and the second level stores blocks of 1 KB inside each child entry.
70 // 71 //
(...skipping 25 matching lines...) Expand all
96 // one of the data streams of the child entry (at index 1), while the control 97 // one of the data streams of the child entry (at index 1), while the control
97 // information is stored in another stream (at index 2), both by parents and 98 // information is stored in another stream (at index 2), both by parents and
98 // the children. 99 // the children.
99 100
100 // This structure contains the control information for parent and child entries. 101 // This structure contains the control information for parent and child entries.
101 // It is stored at offset 0 of the data stream with index 2. 102 // It is stored at offset 0 of the data stream with index 2.
102 // It is possible to write to a child entry in a way that causes the last block 103 // It is possible to write to a child entry in a way that causes the last block
103 // to be only partialy filled. In that case, last_block and last_block_len will 104 // to be only partialy filled. In that case, last_block and last_block_len will
104 // keep track of that block. 105 // keep track of that block.
105 struct SparseHeader { 106 struct SparseHeader {
106 int64 signature; // The parent and children signature. 107 int64_t signature; // The parent and children signature.
107 uint32 magic; // Structure identifier (equal to kIndexMagic). 108 uint32_t magic; // Structure identifier (equal to kIndexMagic).
108 int32 parent_key_len; // Key length for the parent entry. 109 int32_t parent_key_len; // Key length for the parent entry.
109 int32 last_block; // Index of the last written block. 110 int32_t last_block; // Index of the last written block.
110 int32 last_block_len; // Lenght of the last written block. 111 int32_t last_block_len; // Lenght of the last written block.
111 int32 dummy[10]; 112 int32_t dummy[10];
112 }; 113 };
113 114
114 // The SparseHeader will be followed by a bitmap, as described by this 115 // The SparseHeader will be followed by a bitmap, as described by this
115 // structure. 116 // structure.
116 struct SparseData { 117 struct SparseData {
117 SparseHeader header; 118 SparseHeader header;
118 uint32 bitmap[32]; // Bitmap representation of known children (if this 119 uint32_t bitmap[32]; // Bitmap representation of known children (if this
119 // is a parent entry), or used blocks (for child 120 // is a parent entry), or used blocks (for child
120 // entries. The size is fixed for child entries but 121 // entries. The size is fixed for child entries but
121 // not for parents; it can be as small as 4 bytes 122 // not for parents; it can be as small as 4 bytes
122 // and as large as 8 KB. 123 // and as large as 8 KB.
123 }; 124 };
124 125
125 // The number of blocks stored by a child entry. 126 // The number of blocks stored by a child entry.
126 const int kNumSparseBits = 1024; 127 const int kNumSparseBits = 1024;
127 static_assert(sizeof(SparseData) == sizeof(SparseHeader) + kNumSparseBits / 8, 128 static_assert(sizeof(SparseData) == sizeof(SparseHeader) + kNumSparseBits / 8,
128 "invalid SparseData bitmap"); 129 "invalid SparseData bitmap");
129 130
130 } // namespace disk_cache 131 } // namespace disk_cache
131 132
132 #endif // NET_DISK_CACHE_BLOCKFILE_DISK_FORMAT_BASE_H_ 133 #endif // NET_DISK_CACHE_BLOCKFILE_DISK_FORMAT_BASE_H_
OLDNEW
« no previous file with comments | « net/disk_cache/blockfile/block_files.cc ('k') | net/disk_cache/blockfile/file_lock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698