1#ifndef PACK_OBJECTS_H 2#define PACK_OBJECTS_H 3 4#include"object-store.h" 5 6#define DEFAULT_DELTA_CACHE_SIZE (256 * 1024 * 1024) 7 8#define OE_DFS_STATE_BITS 2 9#define OE_DEPTH_BITS 12 10#define OE_IN_PACK_BITS 10 11#define OE_Z_DELTA_BITS 20 12/* 13 * Note that oe_set_size() becomes expensive when the given size is 14 * above this limit. Don't lower it too much. 15 */ 16#define OE_SIZE_BITS 31 17#define OE_DELTA_SIZE_BITS 20 18 19/* 20 * State flags for depth-first search used for analyzing delta cycles. 21 * 22 * The depth is measured in delta-links to the base (so if A is a delta 23 * against B, then A has a depth of 1, and B a depth of 0). 24 */ 25enum dfs_state { 26 DFS_NONE =0, 27 DFS_ACTIVE, 28 DFS_DONE, 29 DFS_NUM_STATES 30}; 31 32/* 33 * The size of struct nearly determines pack-objects's memory 34 * consumption. This struct is packed tight for that reason. When you 35 * add or reorder something in this struct, think a bit about this. 36 * 37 * basic object info 38 * ----------------- 39 * idx.oid is filled up before delta searching starts. idx.crc32 is 40 * only valid after the object is written out and will be used for 41 * generating the index. idx.offset will be both gradually set and 42 * used in writing phase (base objects get offset first, then deltas 43 * refer to them) 44 * 45 * "size" is the uncompressed object size. Compressed size of the raw 46 * data for an object in a pack is not stored anywhere but is computed 47 * and made available when reverse .idx is made. Note that when a 48 * delta is reused, "size" is the uncompressed _delta_ size, not the 49 * canonical one after the delta has been applied. 50 * 51 * "hash" contains a path name hash which is used for sorting the 52 * delta list and also during delta searching. Once prepare_pack() 53 * returns it's no longer needed. 54 * 55 * source pack info 56 * ---------------- 57 * The (in_pack, in_pack_offset) tuple contains the location of the 58 * object in the source pack. in_pack_header_size allows quickly 59 * skipping the header and going straight to the zlib stream. 60 * 61 * "type" and "in_pack_type" both describe object type. in_pack_type 62 * may contain a delta type, while type is always the canonical type. 63 * 64 * deltas 65 * ------ 66 * Delta links (delta, delta_child and delta_sibling) are created to 67 * reflect that delta graph from the source pack then updated or added 68 * during delta searching phase when we find better deltas. 69 * 70 * delta_child and delta_sibling are last needed in 71 * compute_write_order(). "delta" and "delta_size" must remain valid 72 * at object writing phase in case the delta is not cached. 73 * 74 * If a delta is cached in memory and is compressed, delta_data points 75 * to the data and z_delta_size contains the compressed size. If it's 76 * uncompressed [1], z_delta_size must be zero. delta_size is always 77 * the uncompressed size and must be valid even if the delta is not 78 * cached. 79 * 80 * [1] during try_delta phase we don't bother with compressing because 81 * the delta could be quickly replaced with a better one. 82 */ 83struct object_entry { 84struct pack_idx_entry idx; 85void*delta_data;/* cached delta (uncompressed) */ 86 off_t in_pack_offset; 87uint32_t hash;/* name hint hash */ 88unsigned size_:OE_SIZE_BITS; 89unsigned size_valid:1; 90uint32_t delta_idx;/* delta base object */ 91uint32_t delta_child_idx;/* deltified objects who bases me */ 92uint32_t delta_sibling_idx;/* other deltified objects who 93 * uses the same base as me 94 */ 95unsigned delta_size_:OE_DELTA_SIZE_BITS;/* delta data size (uncompressed) */ 96unsigned delta_size_valid:1; 97unsigned in_pack_idx:OE_IN_PACK_BITS;/* already in pack */ 98unsigned z_delta_size:OE_Z_DELTA_BITS; 99unsigned type_valid:1; 100unsigned type_:TYPE_BITS; 101unsigned no_try_delta:1; 102unsigned in_pack_type:TYPE_BITS;/* could be delta */ 103 104unsigned char layer; 105 106unsigned preferred_base:1;/* 107 * we do not pack this, but is available 108 * to be used as the base object to delta 109 * objects against. 110 */ 111unsigned tagged:1;/* near the very tip of refs */ 112unsigned filled:1;/* assigned write-order */ 113unsigned dfs_state:OE_DFS_STATE_BITS; 114unsigned char in_pack_header_size; 115unsigned depth:OE_DEPTH_BITS; 116 117/* 118 * pahole results on 64-bit linux (gcc and clang) 119 * 120 * size: 80, bit_padding: 20 bits, holes: 8 bits 121 * 122 * and on 32-bit (gcc) 123 * 124 * size: 76, bit_padding: 20 bits, holes: 8 bits 125 */ 126}; 127 128struct packing_data { 129struct object_entry *objects; 130uint32_t nr_objects, nr_alloc; 131 132int32_t*index; 133uint32_t index_size; 134 135unsigned int*in_pack_pos; 136 137/* 138 * Only one of these can be non-NULL and they have different 139 * sizes. if in_pack_by_idx is allocated, oe_in_pack() returns 140 * the pack of an object using in_pack_idx field. If not, 141 * in_pack[] array is used the same way as in_pack_pos[] 142 */ 143struct packed_git **in_pack_by_idx; 144struct packed_git **in_pack; 145 146uintmax_t oe_size_limit; 147 148/* delta islands */ 149unsigned int*tree_depth; 150}; 151 152voidprepare_packing_data(struct packing_data *pdata); 153struct object_entry *packlist_alloc(struct packing_data *pdata, 154const unsigned char*sha1, 155uint32_t index_pos); 156 157struct object_entry *packlist_find(struct packing_data *pdata, 158const unsigned char*sha1, 159uint32_t*index_pos); 160 161staticinlineuint32_tpack_name_hash(const char*name) 162{ 163uint32_t c, hash =0; 164 165if(!name) 166return0; 167 168/* 169 * This effectively just creates a sortable number from the 170 * last sixteen non-whitespace characters. Last characters 171 * count "most", so things that end in ".c" sort together. 172 */ 173while((c = *name++) !=0) { 174if(isspace(c)) 175continue; 176 hash = (hash >>2) + (c <<24); 177} 178return hash; 179} 180 181staticinlineenum object_type oe_type(const struct object_entry *e) 182{ 183return e->type_valid ? e->type_ : OBJ_BAD; 184} 185 186staticinlinevoidoe_set_type(struct object_entry *e, 187enum object_type type) 188{ 189if(type >= OBJ_ANY) 190BUG("OBJ_ANY cannot be set in pack-objects code"); 191 192 e->type_valid = type >= OBJ_NONE; 193 e->type_ = (unsigned)type; 194} 195 196staticinlineunsigned intoe_in_pack_pos(const struct packing_data *pack, 197const struct object_entry *e) 198{ 199return pack->in_pack_pos[e - pack->objects]; 200} 201 202staticinlinevoidoe_set_in_pack_pos(const struct packing_data *pack, 203const struct object_entry *e, 204unsigned int pos) 205{ 206 pack->in_pack_pos[e - pack->objects] = pos; 207} 208 209staticinlinestruct packed_git *oe_in_pack(const struct packing_data *pack, 210const struct object_entry *e) 211{ 212if(pack->in_pack_by_idx) 213return pack->in_pack_by_idx[e->in_pack_idx]; 214else 215return pack->in_pack[e - pack->objects]; 216} 217 218voidoe_map_new_pack(struct packing_data *pack, 219struct packed_git *p); 220staticinlinevoidoe_set_in_pack(struct packing_data *pack, 221struct object_entry *e, 222struct packed_git *p) 223{ 224if(!p->index) 225oe_map_new_pack(pack, p); 226if(pack->in_pack_by_idx) 227 e->in_pack_idx = p->index; 228else 229 pack->in_pack[e - pack->objects] = p; 230} 231 232staticinlinestruct object_entry *oe_delta( 233const struct packing_data *pack, 234const struct object_entry *e) 235{ 236if(e->delta_idx) 237return&pack->objects[e->delta_idx -1]; 238return NULL; 239} 240 241staticinlinevoidoe_set_delta(struct packing_data *pack, 242struct object_entry *e, 243struct object_entry *delta) 244{ 245if(delta) 246 e->delta_idx = (delta - pack->objects) +1; 247else 248 e->delta_idx =0; 249} 250 251staticinlinestruct object_entry *oe_delta_child( 252const struct packing_data *pack, 253const struct object_entry *e) 254{ 255if(e->delta_child_idx) 256return&pack->objects[e->delta_child_idx -1]; 257return NULL; 258} 259 260staticinlinevoidoe_set_delta_child(struct packing_data *pack, 261struct object_entry *e, 262struct object_entry *delta) 263{ 264if(delta) 265 e->delta_child_idx = (delta - pack->objects) +1; 266else 267 e->delta_child_idx =0; 268} 269 270staticinlinestruct object_entry *oe_delta_sibling( 271const struct packing_data *pack, 272const struct object_entry *e) 273{ 274if(e->delta_sibling_idx) 275return&pack->objects[e->delta_sibling_idx -1]; 276return NULL; 277} 278 279staticinlinevoidoe_set_delta_sibling(struct packing_data *pack, 280struct object_entry *e, 281struct object_entry *delta) 282{ 283if(delta) 284 e->delta_sibling_idx = (delta - pack->objects) +1; 285else 286 e->delta_sibling_idx =0; 287} 288 289unsigned longoe_get_size_slow(struct packing_data *pack, 290const struct object_entry *e); 291staticinlineunsigned longoe_size(struct packing_data *pack, 292const struct object_entry *e) 293{ 294if(e->size_valid) 295return e->size_; 296 297returnoe_get_size_slow(pack, e); 298} 299 300staticinlineintoe_size_less_than(struct packing_data *pack, 301const struct object_entry *lhs, 302unsigned long rhs) 303{ 304if(lhs->size_valid) 305return lhs->size_ < rhs; 306if(rhs < pack->oe_size_limit)/* rhs < 2^x <= lhs ? */ 307return0; 308returnoe_get_size_slow(pack, lhs) < rhs; 309} 310 311staticinlineintoe_size_greater_than(struct packing_data *pack, 312const struct object_entry *lhs, 313unsigned long rhs) 314{ 315if(lhs->size_valid) 316return lhs->size_ > rhs; 317if(rhs < pack->oe_size_limit)/* rhs < 2^x <= lhs ? */ 318return1; 319returnoe_get_size_slow(pack, lhs) > rhs; 320} 321 322staticinlinevoidoe_set_size(struct packing_data *pack, 323struct object_entry *e, 324unsigned long size) 325{ 326if(size < pack->oe_size_limit) { 327 e->size_ = size; 328 e->size_valid =1; 329}else{ 330 e->size_valid =0; 331if(oe_get_size_slow(pack, e) != size) 332BUG("'size' is supposed to be the object size!"); 333} 334} 335 336staticinlineunsigned longoe_delta_size(struct packing_data *pack, 337const struct object_entry *e) 338{ 339if(e->delta_size_valid) 340return e->delta_size_; 341returnoe_size(pack, e); 342} 343 344staticinlinevoidoe_set_delta_size(struct packing_data *pack, 345struct object_entry *e, 346unsigned long size) 347{ 348 e->delta_size_ = size; 349 e->delta_size_valid = e->delta_size_ == size; 350if(!e->delta_size_valid && size !=oe_size(pack, e)) 351BUG("this can only happen in check_object() " 352"where delta size is the same as entry size"); 353} 354 355staticinlineunsigned intoe_tree_depth(struct packing_data *pack, 356struct object_entry *e) 357{ 358if(!pack->tree_depth) 359return0; 360return pack->tree_depth[e - pack->objects]; 361} 362 363staticinlinevoidoe_set_tree_depth(struct packing_data *pack, 364struct object_entry *e, 365unsigned int tree_depth) 366{ 367if(!pack->tree_depth) 368ALLOC_ARRAY(pack->tree_depth, pack->nr_objects); 369 pack->tree_depth[e - pack->objects] = tree_depth; 370} 371 372#endif