]> git.ipfire.org Git - thirdparty/git.git/blob - pack-bitmap.c
Merge branch 'jt/send-email-validate-errors-fix'
[thirdparty/git.git] / pack-bitmap.c
1 #include "cache.h"
2 #include "commit.h"
3 #include "tag.h"
4 #include "diff.h"
5 #include "revision.h"
6 #include "progress.h"
7 #include "list-objects.h"
8 #include "pack.h"
9 #include "pack-bitmap.h"
10 #include "pack-revindex.h"
11 #include "pack-objects.h"
12 #include "packfile.h"
13 #include "repository.h"
14 #include "object-store.h"
15 #include "list-objects-filter-options.h"
16 #include "config.h"
17
18 /*
19 * An entry on the bitmap index, representing the bitmap for a given
20 * commit.
21 */
22 struct stored_bitmap {
23 struct object_id oid;
24 struct ewah_bitmap *root;
25 struct stored_bitmap *xor;
26 int flags;
27 };
28
29 /*
30 * The active bitmap index for a repository. By design, repositories only have
31 * a single bitmap index available (the index for the biggest packfile in
32 * the repository), since bitmap indexes need full closure.
33 *
34 * If there is more than one bitmap index available (e.g. because of alternates),
35 * the active bitmap index is the largest one.
36 */
37 struct bitmap_index {
38 /* Packfile to which this bitmap index belongs to */
39 struct packed_git *pack;
40
41 /*
42 * Mark the first `reuse_objects` in the packfile as reused:
43 * they will be sent as-is without using them for repacking
44 * calculations
45 */
46 uint32_t reuse_objects;
47
48 /* mmapped buffer of the whole bitmap index */
49 unsigned char *map;
50 size_t map_size; /* size of the mmaped buffer */
51 size_t map_pos; /* current position when loading the index */
52
53 /*
54 * Type indexes.
55 *
56 * Each bitmap marks which objects in the packfile are of the given
57 * type. This provides type information when yielding the objects from
58 * the packfile during a walk, which allows for better delta bases.
59 */
60 struct ewah_bitmap *commits;
61 struct ewah_bitmap *trees;
62 struct ewah_bitmap *blobs;
63 struct ewah_bitmap *tags;
64
65 /* Map from object ID -> `stored_bitmap` for all the bitmapped commits */
66 kh_oid_map_t *bitmaps;
67
68 /* Number of bitmapped commits */
69 uint32_t entry_count;
70
71 /* If not NULL, this is a name-hash cache pointing into map. */
72 uint32_t *hashes;
73
74 /*
75 * Extended index.
76 *
77 * When trying to perform bitmap operations with objects that are not
78 * packed in `pack`, these objects are added to this "fake index" and
79 * are assumed to appear at the end of the packfile for all operations
80 */
81 struct eindex {
82 struct object **objects;
83 uint32_t *hashes;
84 uint32_t count, alloc;
85 kh_oid_pos_t *positions;
86 } ext_index;
87
88 /* Bitmap result of the last performed walk */
89 struct bitmap *result;
90
91 /* "have" bitmap from the last performed walk */
92 struct bitmap *haves;
93
94 /* Version of the bitmap index */
95 unsigned int version;
96 };
97
98 static struct ewah_bitmap *lookup_stored_bitmap(struct stored_bitmap *st)
99 {
100 struct ewah_bitmap *parent;
101 struct ewah_bitmap *composed;
102
103 if (st->xor == NULL)
104 return st->root;
105
106 composed = ewah_pool_new();
107 parent = lookup_stored_bitmap(st->xor);
108 ewah_xor(st->root, parent, composed);
109
110 ewah_pool_free(st->root);
111 st->root = composed;
112 st->xor = NULL;
113
114 return composed;
115 }
116
117 /*
118 * Read a bitmap from the current read position on the mmaped
119 * index, and increase the read position accordingly
120 */
121 static struct ewah_bitmap *read_bitmap_1(struct bitmap_index *index)
122 {
123 struct ewah_bitmap *b = ewah_pool_new();
124
125 ssize_t bitmap_size = ewah_read_mmap(b,
126 index->map + index->map_pos,
127 index->map_size - index->map_pos);
128
129 if (bitmap_size < 0) {
130 error("Failed to load bitmap index (corrupted?)");
131 ewah_pool_free(b);
132 return NULL;
133 }
134
135 index->map_pos += bitmap_size;
136 return b;
137 }
138
139 static int load_bitmap_header(struct bitmap_index *index)
140 {
141 struct bitmap_disk_header *header = (void *)index->map;
142 size_t header_size = sizeof(*header) - GIT_MAX_RAWSZ + the_hash_algo->rawsz;
143
144 if (index->map_size < header_size + the_hash_algo->rawsz)
145 return error("Corrupted bitmap index (too small)");
146
147 if (memcmp(header->magic, BITMAP_IDX_SIGNATURE, sizeof(BITMAP_IDX_SIGNATURE)) != 0)
148 return error("Corrupted bitmap index file (wrong header)");
149
150 index->version = ntohs(header->version);
151 if (index->version != 1)
152 return error("Unsupported version for bitmap index file (%d)", index->version);
153
154 /* Parse known bitmap format options */
155 {
156 uint32_t flags = ntohs(header->options);
157 size_t cache_size = st_mult(index->pack->num_objects, sizeof(uint32_t));
158 unsigned char *index_end = index->map + index->map_size - the_hash_algo->rawsz;
159
160 if ((flags & BITMAP_OPT_FULL_DAG) == 0)
161 return error("Unsupported options for bitmap index file "
162 "(Git requires BITMAP_OPT_FULL_DAG)");
163
164 if (flags & BITMAP_OPT_HASH_CACHE) {
165 if (cache_size > index_end - index->map - header_size)
166 return error("corrupted bitmap index file (too short to fit hash cache)");
167 index->hashes = (void *)(index_end - cache_size);
168 index_end -= cache_size;
169 }
170 }
171
172 index->entry_count = ntohl(header->entry_count);
173 index->map_pos += header_size;
174 return 0;
175 }
176
177 static struct stored_bitmap *store_bitmap(struct bitmap_index *index,
178 struct ewah_bitmap *root,
179 const struct object_id *oid,
180 struct stored_bitmap *xor_with,
181 int flags)
182 {
183 struct stored_bitmap *stored;
184 khiter_t hash_pos;
185 int ret;
186
187 stored = xmalloc(sizeof(struct stored_bitmap));
188 stored->root = root;
189 stored->xor = xor_with;
190 stored->flags = flags;
191 oidcpy(&stored->oid, oid);
192
193 hash_pos = kh_put_oid_map(index->bitmaps, stored->oid, &ret);
194
195 /* a 0 return code means the insertion succeeded with no changes,
196 * because the SHA1 already existed on the map. this is bad, there
197 * shouldn't be duplicated commits in the index */
198 if (ret == 0) {
199 error("Duplicate entry in bitmap index: %s", oid_to_hex(oid));
200 return NULL;
201 }
202
203 kh_value(index->bitmaps, hash_pos) = stored;
204 return stored;
205 }
206
207 static inline uint32_t read_be32(const unsigned char *buffer, size_t *pos)
208 {
209 uint32_t result = get_be32(buffer + *pos);
210 (*pos) += sizeof(result);
211 return result;
212 }
213
214 static inline uint8_t read_u8(const unsigned char *buffer, size_t *pos)
215 {
216 return buffer[(*pos)++];
217 }
218
219 #define MAX_XOR_OFFSET 160
220
221 static int load_bitmap_entries_v1(struct bitmap_index *index)
222 {
223 uint32_t i;
224 struct stored_bitmap *recent_bitmaps[MAX_XOR_OFFSET] = { NULL };
225
226 for (i = 0; i < index->entry_count; ++i) {
227 int xor_offset, flags;
228 struct ewah_bitmap *bitmap = NULL;
229 struct stored_bitmap *xor_bitmap = NULL;
230 uint32_t commit_idx_pos;
231 struct object_id oid;
232
233 if (index->map_size - index->map_pos < 6)
234 return error("corrupt ewah bitmap: truncated header for entry %d", i);
235
236 commit_idx_pos = read_be32(index->map, &index->map_pos);
237 xor_offset = read_u8(index->map, &index->map_pos);
238 flags = read_u8(index->map, &index->map_pos);
239
240 if (nth_packed_object_id(&oid, index->pack, commit_idx_pos) < 0)
241 return error("corrupt ewah bitmap: commit index %u out of range",
242 (unsigned)commit_idx_pos);
243
244 bitmap = read_bitmap_1(index);
245 if (!bitmap)
246 return -1;
247
248 if (xor_offset > MAX_XOR_OFFSET || xor_offset > i)
249 return error("Corrupted bitmap pack index");
250
251 if (xor_offset > 0) {
252 xor_bitmap = recent_bitmaps[(i - xor_offset) % MAX_XOR_OFFSET];
253
254 if (xor_bitmap == NULL)
255 return error("Invalid XOR offset in bitmap pack index");
256 }
257
258 recent_bitmaps[i % MAX_XOR_OFFSET] = store_bitmap(
259 index, bitmap, &oid, xor_bitmap, flags);
260 }
261
262 return 0;
263 }
264
265 static char *pack_bitmap_filename(struct packed_git *p)
266 {
267 size_t len;
268
269 if (!strip_suffix(p->pack_name, ".pack", &len))
270 BUG("pack_name does not end in .pack");
271 return xstrfmt("%.*s.bitmap", (int)len, p->pack_name);
272 }
273
274 static int open_pack_bitmap_1(struct bitmap_index *bitmap_git, struct packed_git *packfile)
275 {
276 int fd;
277 struct stat st;
278 char *idx_name;
279
280 if (open_pack_index(packfile))
281 return -1;
282
283 idx_name = pack_bitmap_filename(packfile);
284 fd = git_open(idx_name);
285 free(idx_name);
286
287 if (fd < 0)
288 return -1;
289
290 if (fstat(fd, &st)) {
291 close(fd);
292 return -1;
293 }
294
295 if (bitmap_git->pack) {
296 warning("ignoring extra bitmap file: %s", packfile->pack_name);
297 close(fd);
298 return -1;
299 }
300
301 bitmap_git->pack = packfile;
302 bitmap_git->map_size = xsize_t(st.st_size);
303 bitmap_git->map = xmmap(NULL, bitmap_git->map_size, PROT_READ, MAP_PRIVATE, fd, 0);
304 bitmap_git->map_pos = 0;
305 close(fd);
306
307 if (load_bitmap_header(bitmap_git) < 0) {
308 munmap(bitmap_git->map, bitmap_git->map_size);
309 bitmap_git->map = NULL;
310 bitmap_git->map_size = 0;
311 return -1;
312 }
313
314 return 0;
315 }
316
317 static int load_pack_bitmap(struct bitmap_index *bitmap_git)
318 {
319 assert(bitmap_git->map);
320
321 bitmap_git->bitmaps = kh_init_oid_map();
322 bitmap_git->ext_index.positions = kh_init_oid_pos();
323 if (load_pack_revindex(bitmap_git->pack))
324 goto failed;
325
326 if (!(bitmap_git->commits = read_bitmap_1(bitmap_git)) ||
327 !(bitmap_git->trees = read_bitmap_1(bitmap_git)) ||
328 !(bitmap_git->blobs = read_bitmap_1(bitmap_git)) ||
329 !(bitmap_git->tags = read_bitmap_1(bitmap_git)))
330 goto failed;
331
332 if (load_bitmap_entries_v1(bitmap_git) < 0)
333 goto failed;
334
335 return 0;
336
337 failed:
338 munmap(bitmap_git->map, bitmap_git->map_size);
339 bitmap_git->map = NULL;
340 bitmap_git->map_size = 0;
341
342 kh_destroy_oid_map(bitmap_git->bitmaps);
343 bitmap_git->bitmaps = NULL;
344
345 kh_destroy_oid_pos(bitmap_git->ext_index.positions);
346 bitmap_git->ext_index.positions = NULL;
347
348 return -1;
349 }
350
351 static int open_pack_bitmap(struct repository *r,
352 struct bitmap_index *bitmap_git)
353 {
354 struct packed_git *p;
355 int ret = -1;
356
357 assert(!bitmap_git->map);
358
359 for (p = get_all_packs(r); p; p = p->next) {
360 if (open_pack_bitmap_1(bitmap_git, p) == 0)
361 ret = 0;
362 }
363
364 return ret;
365 }
366
367 struct bitmap_index *prepare_bitmap_git(struct repository *r)
368 {
369 struct bitmap_index *bitmap_git = xcalloc(1, sizeof(*bitmap_git));
370
371 if (!open_pack_bitmap(r, bitmap_git) && !load_pack_bitmap(bitmap_git))
372 return bitmap_git;
373
374 free_bitmap_index(bitmap_git);
375 return NULL;
376 }
377
378 struct include_data {
379 struct bitmap_index *bitmap_git;
380 struct bitmap *base;
381 struct bitmap *seen;
382 };
383
384 struct ewah_bitmap *bitmap_for_commit(struct bitmap_index *bitmap_git,
385 struct commit *commit)
386 {
387 khiter_t hash_pos = kh_get_oid_map(bitmap_git->bitmaps,
388 commit->object.oid);
389 if (hash_pos >= kh_end(bitmap_git->bitmaps))
390 return NULL;
391 return lookup_stored_bitmap(kh_value(bitmap_git->bitmaps, hash_pos));
392 }
393
394 static inline int bitmap_position_extended(struct bitmap_index *bitmap_git,
395 const struct object_id *oid)
396 {
397 kh_oid_pos_t *positions = bitmap_git->ext_index.positions;
398 khiter_t pos = kh_get_oid_pos(positions, *oid);
399
400 if (pos < kh_end(positions)) {
401 int bitmap_pos = kh_value(positions, pos);
402 return bitmap_pos + bitmap_git->pack->num_objects;
403 }
404
405 return -1;
406 }
407
408 static inline int bitmap_position_packfile(struct bitmap_index *bitmap_git,
409 const struct object_id *oid)
410 {
411 uint32_t pos;
412 off_t offset = find_pack_entry_one(oid->hash, bitmap_git->pack);
413 if (!offset)
414 return -1;
415
416 if (offset_to_pack_pos(bitmap_git->pack, offset, &pos) < 0)
417 return -1;
418 return pos;
419 }
420
421 static int bitmap_position(struct bitmap_index *bitmap_git,
422 const struct object_id *oid)
423 {
424 int pos = bitmap_position_packfile(bitmap_git, oid);
425 return (pos >= 0) ? pos : bitmap_position_extended(bitmap_git, oid);
426 }
427
428 static int ext_index_add_object(struct bitmap_index *bitmap_git,
429 struct object *object, const char *name)
430 {
431 struct eindex *eindex = &bitmap_git->ext_index;
432
433 khiter_t hash_pos;
434 int hash_ret;
435 int bitmap_pos;
436
437 hash_pos = kh_put_oid_pos(eindex->positions, object->oid, &hash_ret);
438 if (hash_ret > 0) {
439 if (eindex->count >= eindex->alloc) {
440 eindex->alloc = (eindex->alloc + 16) * 3 / 2;
441 REALLOC_ARRAY(eindex->objects, eindex->alloc);
442 REALLOC_ARRAY(eindex->hashes, eindex->alloc);
443 }
444
445 bitmap_pos = eindex->count;
446 eindex->objects[eindex->count] = object;
447 eindex->hashes[eindex->count] = pack_name_hash(name);
448 kh_value(eindex->positions, hash_pos) = bitmap_pos;
449 eindex->count++;
450 } else {
451 bitmap_pos = kh_value(eindex->positions, hash_pos);
452 }
453
454 return bitmap_pos + bitmap_git->pack->num_objects;
455 }
456
457 struct bitmap_show_data {
458 struct bitmap_index *bitmap_git;
459 struct bitmap *base;
460 };
461
462 static void show_object(struct object *object, const char *name, void *data_)
463 {
464 struct bitmap_show_data *data = data_;
465 int bitmap_pos;
466
467 bitmap_pos = bitmap_position(data->bitmap_git, &object->oid);
468
469 if (bitmap_pos < 0)
470 bitmap_pos = ext_index_add_object(data->bitmap_git, object,
471 name);
472
473 bitmap_set(data->base, bitmap_pos);
474 }
475
476 static void show_commit(struct commit *commit, void *data)
477 {
478 }
479
480 static int add_to_include_set(struct bitmap_index *bitmap_git,
481 struct include_data *data,
482 struct commit *commit,
483 int bitmap_pos)
484 {
485 struct ewah_bitmap *partial;
486
487 if (data->seen && bitmap_get(data->seen, bitmap_pos))
488 return 0;
489
490 if (bitmap_get(data->base, bitmap_pos))
491 return 0;
492
493 partial = bitmap_for_commit(bitmap_git, commit);
494 if (partial) {
495 bitmap_or_ewah(data->base, partial);
496 return 0;
497 }
498
499 bitmap_set(data->base, bitmap_pos);
500 return 1;
501 }
502
503 static int should_include(struct commit *commit, void *_data)
504 {
505 struct include_data *data = _data;
506 int bitmap_pos;
507
508 bitmap_pos = bitmap_position(data->bitmap_git, &commit->object.oid);
509 if (bitmap_pos < 0)
510 bitmap_pos = ext_index_add_object(data->bitmap_git,
511 (struct object *)commit,
512 NULL);
513
514 if (!add_to_include_set(data->bitmap_git, data, commit, bitmap_pos)) {
515 struct commit_list *parent = commit->parents;
516
517 while (parent) {
518 parent->item->object.flags |= SEEN;
519 parent = parent->next;
520 }
521
522 return 0;
523 }
524
525 return 1;
526 }
527
528 static int add_commit_to_bitmap(struct bitmap_index *bitmap_git,
529 struct bitmap **base,
530 struct commit *commit)
531 {
532 struct ewah_bitmap *or_with = bitmap_for_commit(bitmap_git, commit);
533
534 if (!or_with)
535 return 0;
536
537 if (*base == NULL)
538 *base = ewah_to_bitmap(or_with);
539 else
540 bitmap_or_ewah(*base, or_with);
541
542 return 1;
543 }
544
545 static struct bitmap *find_objects(struct bitmap_index *bitmap_git,
546 struct rev_info *revs,
547 struct object_list *roots,
548 struct bitmap *seen,
549 struct list_objects_filter_options *filter)
550 {
551 struct bitmap *base = NULL;
552 int needs_walk = 0;
553
554 struct object_list *not_mapped = NULL;
555
556 /*
557 * Go through all the roots for the walk. The ones that have bitmaps
558 * on the bitmap index will be `or`ed together to form an initial
559 * global reachability analysis.
560 *
561 * The ones without bitmaps in the index will be stored in the
562 * `not_mapped_list` for further processing.
563 */
564 while (roots) {
565 struct object *object = roots->item;
566 roots = roots->next;
567
568 if (object->type == OBJ_COMMIT &&
569 add_commit_to_bitmap(bitmap_git, &base, (struct commit *)object)) {
570 object->flags |= SEEN;
571 continue;
572 }
573
574 object_list_insert(object, &not_mapped);
575 }
576
577 /*
578 * Best case scenario: We found bitmaps for all the roots,
579 * so the resulting `or` bitmap has the full reachability analysis
580 */
581 if (not_mapped == NULL)
582 return base;
583
584 roots = not_mapped;
585
586 /*
587 * Let's iterate through all the roots that don't have bitmaps to
588 * check if we can determine them to be reachable from the existing
589 * global bitmap.
590 *
591 * If we cannot find them in the existing global bitmap, we'll need
592 * to push them to an actual walk and run it until we can confirm
593 * they are reachable
594 */
595 while (roots) {
596 struct object *object = roots->item;
597 int pos;
598
599 roots = roots->next;
600 pos = bitmap_position(bitmap_git, &object->oid);
601
602 if (pos < 0 || base == NULL || !bitmap_get(base, pos)) {
603 object->flags &= ~UNINTERESTING;
604 add_pending_object(revs, object, "");
605 needs_walk = 1;
606 } else {
607 object->flags |= SEEN;
608 }
609 }
610
611 if (needs_walk) {
612 struct include_data incdata;
613 struct bitmap_show_data show_data;
614
615 if (base == NULL)
616 base = bitmap_new();
617
618 incdata.bitmap_git = bitmap_git;
619 incdata.base = base;
620 incdata.seen = seen;
621
622 revs->include_check = should_include;
623 revs->include_check_data = &incdata;
624
625 if (prepare_revision_walk(revs))
626 die("revision walk setup failed");
627
628 show_data.bitmap_git = bitmap_git;
629 show_data.base = base;
630
631 traverse_commit_list_filtered(filter, revs,
632 show_commit, show_object,
633 &show_data, NULL);
634
635 revs->include_check = NULL;
636 revs->include_check_data = NULL;
637 }
638
639 return base;
640 }
641
642 static void show_extended_objects(struct bitmap_index *bitmap_git,
643 struct rev_info *revs,
644 show_reachable_fn show_reach)
645 {
646 struct bitmap *objects = bitmap_git->result;
647 struct eindex *eindex = &bitmap_git->ext_index;
648 uint32_t i;
649
650 for (i = 0; i < eindex->count; ++i) {
651 struct object *obj;
652
653 if (!bitmap_get(objects, bitmap_git->pack->num_objects + i))
654 continue;
655
656 obj = eindex->objects[i];
657 if ((obj->type == OBJ_BLOB && !revs->blob_objects) ||
658 (obj->type == OBJ_TREE && !revs->tree_objects) ||
659 (obj->type == OBJ_TAG && !revs->tag_objects))
660 continue;
661
662 show_reach(&obj->oid, obj->type, 0, eindex->hashes[i], NULL, 0);
663 }
664 }
665
666 static void init_type_iterator(struct ewah_iterator *it,
667 struct bitmap_index *bitmap_git,
668 enum object_type type)
669 {
670 switch (type) {
671 case OBJ_COMMIT:
672 ewah_iterator_init(it, bitmap_git->commits);
673 break;
674
675 case OBJ_TREE:
676 ewah_iterator_init(it, bitmap_git->trees);
677 break;
678
679 case OBJ_BLOB:
680 ewah_iterator_init(it, bitmap_git->blobs);
681 break;
682
683 case OBJ_TAG:
684 ewah_iterator_init(it, bitmap_git->tags);
685 break;
686
687 default:
688 BUG("object type %d not stored by bitmap type index", type);
689 break;
690 }
691 }
692
693 static void show_objects_for_type(
694 struct bitmap_index *bitmap_git,
695 enum object_type object_type,
696 show_reachable_fn show_reach)
697 {
698 size_t i = 0;
699 uint32_t offset;
700
701 struct ewah_iterator it;
702 eword_t filter;
703
704 struct bitmap *objects = bitmap_git->result;
705
706 init_type_iterator(&it, bitmap_git, object_type);
707
708 for (i = 0; i < objects->word_alloc &&
709 ewah_iterator_next(&filter, &it); i++) {
710 eword_t word = objects->words[i] & filter;
711 size_t pos = (i * BITS_IN_EWORD);
712
713 if (!word)
714 continue;
715
716 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
717 struct object_id oid;
718 uint32_t hash = 0, index_pos;
719 off_t ofs;
720
721 if ((word >> offset) == 0)
722 break;
723
724 offset += ewah_bit_ctz64(word >> offset);
725
726 index_pos = pack_pos_to_index(bitmap_git->pack, pos + offset);
727 ofs = pack_pos_to_offset(bitmap_git->pack, pos + offset);
728 nth_packed_object_id(&oid, bitmap_git->pack, index_pos);
729
730 if (bitmap_git->hashes)
731 hash = get_be32(bitmap_git->hashes + index_pos);
732
733 show_reach(&oid, object_type, 0, hash, bitmap_git->pack, ofs);
734 }
735 }
736 }
737
738 static int in_bitmapped_pack(struct bitmap_index *bitmap_git,
739 struct object_list *roots)
740 {
741 while (roots) {
742 struct object *object = roots->item;
743 roots = roots->next;
744
745 if (find_pack_entry_one(object->oid.hash, bitmap_git->pack) > 0)
746 return 1;
747 }
748
749 return 0;
750 }
751
752 static struct bitmap *find_tip_objects(struct bitmap_index *bitmap_git,
753 struct object_list *tip_objects,
754 enum object_type type)
755 {
756 struct bitmap *result = bitmap_new();
757 struct object_list *p;
758
759 for (p = tip_objects; p; p = p->next) {
760 int pos;
761
762 if (p->item->type != type)
763 continue;
764
765 pos = bitmap_position(bitmap_git, &p->item->oid);
766 if (pos < 0)
767 continue;
768
769 bitmap_set(result, pos);
770 }
771
772 return result;
773 }
774
775 static void filter_bitmap_exclude_type(struct bitmap_index *bitmap_git,
776 struct object_list *tip_objects,
777 struct bitmap *to_filter,
778 enum object_type type)
779 {
780 struct eindex *eindex = &bitmap_git->ext_index;
781 struct bitmap *tips;
782 struct ewah_iterator it;
783 eword_t mask;
784 uint32_t i;
785
786 /*
787 * The non-bitmap version of this filter never removes
788 * objects which the other side specifically asked for,
789 * so we must match that behavior.
790 */
791 tips = find_tip_objects(bitmap_git, tip_objects, type);
792
793 /*
794 * We can use the blob type-bitmap to work in whole words
795 * for the objects that are actually in the bitmapped packfile.
796 */
797 for (i = 0, init_type_iterator(&it, bitmap_git, type);
798 i < to_filter->word_alloc && ewah_iterator_next(&mask, &it);
799 i++) {
800 if (i < tips->word_alloc)
801 mask &= ~tips->words[i];
802 to_filter->words[i] &= ~mask;
803 }
804
805 /*
806 * Clear any blobs that weren't in the packfile (and so would not have
807 * been caught by the loop above. We'll have to check them
808 * individually.
809 */
810 for (i = 0; i < eindex->count; i++) {
811 uint32_t pos = i + bitmap_git->pack->num_objects;
812 if (eindex->objects[i]->type == type &&
813 bitmap_get(to_filter, pos) &&
814 !bitmap_get(tips, pos))
815 bitmap_unset(to_filter, pos);
816 }
817
818 bitmap_free(tips);
819 }
820
821 static void filter_bitmap_blob_none(struct bitmap_index *bitmap_git,
822 struct object_list *tip_objects,
823 struct bitmap *to_filter)
824 {
825 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter,
826 OBJ_BLOB);
827 }
828
829 static unsigned long get_size_by_pos(struct bitmap_index *bitmap_git,
830 uint32_t pos)
831 {
832 struct packed_git *pack = bitmap_git->pack;
833 unsigned long size;
834 struct object_info oi = OBJECT_INFO_INIT;
835
836 oi.sizep = &size;
837
838 if (pos < pack->num_objects) {
839 off_t ofs = pack_pos_to_offset(pack, pos);
840 if (packed_object_info(the_repository, pack, ofs, &oi) < 0) {
841 struct object_id oid;
842 nth_packed_object_id(&oid, pack,
843 pack_pos_to_index(pack, pos));
844 die(_("unable to get size of %s"), oid_to_hex(&oid));
845 }
846 } else {
847 struct eindex *eindex = &bitmap_git->ext_index;
848 struct object *obj = eindex->objects[pos - pack->num_objects];
849 if (oid_object_info_extended(the_repository, &obj->oid, &oi, 0) < 0)
850 die(_("unable to get size of %s"), oid_to_hex(&obj->oid));
851 }
852
853 return size;
854 }
855
856 static void filter_bitmap_blob_limit(struct bitmap_index *bitmap_git,
857 struct object_list *tip_objects,
858 struct bitmap *to_filter,
859 unsigned long limit)
860 {
861 struct eindex *eindex = &bitmap_git->ext_index;
862 struct bitmap *tips;
863 struct ewah_iterator it;
864 eword_t mask;
865 uint32_t i;
866
867 tips = find_tip_objects(bitmap_git, tip_objects, OBJ_BLOB);
868
869 for (i = 0, init_type_iterator(&it, bitmap_git, OBJ_BLOB);
870 i < to_filter->word_alloc && ewah_iterator_next(&mask, &it);
871 i++) {
872 eword_t word = to_filter->words[i] & mask;
873 unsigned offset;
874
875 for (offset = 0; offset < BITS_IN_EWORD; offset++) {
876 uint32_t pos;
877
878 if ((word >> offset) == 0)
879 break;
880 offset += ewah_bit_ctz64(word >> offset);
881 pos = i * BITS_IN_EWORD + offset;
882
883 if (!bitmap_get(tips, pos) &&
884 get_size_by_pos(bitmap_git, pos) >= limit)
885 bitmap_unset(to_filter, pos);
886 }
887 }
888
889 for (i = 0; i < eindex->count; i++) {
890 uint32_t pos = i + bitmap_git->pack->num_objects;
891 if (eindex->objects[i]->type == OBJ_BLOB &&
892 bitmap_get(to_filter, pos) &&
893 !bitmap_get(tips, pos) &&
894 get_size_by_pos(bitmap_git, pos) >= limit)
895 bitmap_unset(to_filter, pos);
896 }
897
898 bitmap_free(tips);
899 }
900
901 static void filter_bitmap_tree_depth(struct bitmap_index *bitmap_git,
902 struct object_list *tip_objects,
903 struct bitmap *to_filter,
904 unsigned long limit)
905 {
906 if (limit)
907 BUG("filter_bitmap_tree_depth given non-zero limit");
908
909 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter,
910 OBJ_TREE);
911 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter,
912 OBJ_BLOB);
913 }
914
915 static void filter_bitmap_object_type(struct bitmap_index *bitmap_git,
916 struct object_list *tip_objects,
917 struct bitmap *to_filter,
918 enum object_type object_type)
919 {
920 if (object_type < OBJ_COMMIT || object_type > OBJ_TAG)
921 BUG("filter_bitmap_object_type given invalid object");
922
923 if (object_type != OBJ_TAG)
924 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter, OBJ_TAG);
925 if (object_type != OBJ_COMMIT)
926 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter, OBJ_COMMIT);
927 if (object_type != OBJ_TREE)
928 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter, OBJ_TREE);
929 if (object_type != OBJ_BLOB)
930 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter, OBJ_BLOB);
931 }
932
933 static int filter_bitmap(struct bitmap_index *bitmap_git,
934 struct object_list *tip_objects,
935 struct bitmap *to_filter,
936 struct list_objects_filter_options *filter)
937 {
938 if (!filter || filter->choice == LOFC_DISABLED)
939 return 0;
940
941 if (filter->choice == LOFC_BLOB_NONE) {
942 if (bitmap_git)
943 filter_bitmap_blob_none(bitmap_git, tip_objects,
944 to_filter);
945 return 0;
946 }
947
948 if (filter->choice == LOFC_BLOB_LIMIT) {
949 if (bitmap_git)
950 filter_bitmap_blob_limit(bitmap_git, tip_objects,
951 to_filter,
952 filter->blob_limit_value);
953 return 0;
954 }
955
956 if (filter->choice == LOFC_TREE_DEPTH &&
957 filter->tree_exclude_depth == 0) {
958 if (bitmap_git)
959 filter_bitmap_tree_depth(bitmap_git, tip_objects,
960 to_filter,
961 filter->tree_exclude_depth);
962 return 0;
963 }
964
965 if (filter->choice == LOFC_OBJECT_TYPE) {
966 if (bitmap_git)
967 filter_bitmap_object_type(bitmap_git, tip_objects,
968 to_filter,
969 filter->object_type);
970 return 0;
971 }
972
973 if (filter->choice == LOFC_COMBINE) {
974 int i;
975 for (i = 0; i < filter->sub_nr; i++) {
976 if (filter_bitmap(bitmap_git, tip_objects, to_filter,
977 &filter->sub[i]) < 0)
978 return -1;
979 }
980 return 0;
981 }
982
983 /* filter choice not handled */
984 return -1;
985 }
986
987 static int can_filter_bitmap(struct list_objects_filter_options *filter)
988 {
989 return !filter_bitmap(NULL, NULL, NULL, filter);
990 }
991
992 struct bitmap_index *prepare_bitmap_walk(struct rev_info *revs,
993 struct list_objects_filter_options *filter,
994 int filter_provided_objects)
995 {
996 unsigned int i;
997
998 struct object_list *wants = NULL;
999 struct object_list *haves = NULL;
1000
1001 struct bitmap *wants_bitmap = NULL;
1002 struct bitmap *haves_bitmap = NULL;
1003
1004 struct bitmap_index *bitmap_git;
1005
1006 /*
1007 * We can't do pathspec limiting with bitmaps, because we don't know
1008 * which commits are associated with which object changes (let alone
1009 * even which objects are associated with which paths).
1010 */
1011 if (revs->prune)
1012 return NULL;
1013
1014 if (!can_filter_bitmap(filter))
1015 return NULL;
1016
1017 /* try to open a bitmapped pack, but don't parse it yet
1018 * because we may not need to use it */
1019 CALLOC_ARRAY(bitmap_git, 1);
1020 if (open_pack_bitmap(revs->repo, bitmap_git) < 0)
1021 goto cleanup;
1022
1023 for (i = 0; i < revs->pending.nr; ++i) {
1024 struct object *object = revs->pending.objects[i].item;
1025
1026 if (object->type == OBJ_NONE)
1027 parse_object_or_die(&object->oid, NULL);
1028
1029 while (object->type == OBJ_TAG) {
1030 struct tag *tag = (struct tag *) object;
1031
1032 if (object->flags & UNINTERESTING)
1033 object_list_insert(object, &haves);
1034 else
1035 object_list_insert(object, &wants);
1036
1037 object = parse_object_or_die(get_tagged_oid(tag), NULL);
1038 object->flags |= (tag->object.flags & UNINTERESTING);
1039 }
1040
1041 if (object->flags & UNINTERESTING)
1042 object_list_insert(object, &haves);
1043 else
1044 object_list_insert(object, &wants);
1045 }
1046
1047 /*
1048 * if we have a HAVES list, but none of those haves is contained
1049 * in the packfile that has a bitmap, we don't have anything to
1050 * optimize here
1051 */
1052 if (haves && !in_bitmapped_pack(bitmap_git, haves))
1053 goto cleanup;
1054
1055 /* if we don't want anything, we're done here */
1056 if (!wants)
1057 goto cleanup;
1058
1059 /*
1060 * now we're going to use bitmaps, so load the actual bitmap entries
1061 * from disk. this is the point of no return; after this the rev_list
1062 * becomes invalidated and we must perform the revwalk through bitmaps
1063 */
1064 if (load_pack_bitmap(bitmap_git) < 0)
1065 goto cleanup;
1066
1067 object_array_clear(&revs->pending);
1068
1069 if (haves) {
1070 revs->ignore_missing_links = 1;
1071 haves_bitmap = find_objects(bitmap_git, revs, haves, NULL,
1072 filter);
1073 reset_revision_walk();
1074 revs->ignore_missing_links = 0;
1075
1076 if (haves_bitmap == NULL)
1077 BUG("failed to perform bitmap walk");
1078 }
1079
1080 wants_bitmap = find_objects(bitmap_git, revs, wants, haves_bitmap,
1081 filter);
1082
1083 if (!wants_bitmap)
1084 BUG("failed to perform bitmap walk");
1085
1086 if (haves_bitmap)
1087 bitmap_and_not(wants_bitmap, haves_bitmap);
1088
1089 filter_bitmap(bitmap_git, (filter && filter_provided_objects) ? NULL : wants,
1090 wants_bitmap, filter);
1091
1092 bitmap_git->result = wants_bitmap;
1093 bitmap_git->haves = haves_bitmap;
1094
1095 object_list_free(&wants);
1096 object_list_free(&haves);
1097
1098 return bitmap_git;
1099
1100 cleanup:
1101 free_bitmap_index(bitmap_git);
1102 object_list_free(&wants);
1103 object_list_free(&haves);
1104 return NULL;
1105 }
1106
1107 static void try_partial_reuse(struct bitmap_index *bitmap_git,
1108 size_t pos,
1109 struct bitmap *reuse,
1110 struct pack_window **w_curs)
1111 {
1112 off_t offset, header;
1113 enum object_type type;
1114 unsigned long size;
1115
1116 if (pos >= bitmap_git->pack->num_objects)
1117 return; /* not actually in the pack */
1118
1119 offset = header = pack_pos_to_offset(bitmap_git->pack, pos);
1120 type = unpack_object_header(bitmap_git->pack, w_curs, &offset, &size);
1121 if (type < 0)
1122 return; /* broken packfile, punt */
1123
1124 if (type == OBJ_REF_DELTA || type == OBJ_OFS_DELTA) {
1125 off_t base_offset;
1126 uint32_t base_pos;
1127
1128 /*
1129 * Find the position of the base object so we can look it up
1130 * in our bitmaps. If we can't come up with an offset, or if
1131 * that offset is not in the revidx, the pack is corrupt.
1132 * There's nothing we can do, so just punt on this object,
1133 * and the normal slow path will complain about it in
1134 * more detail.
1135 */
1136 base_offset = get_delta_base(bitmap_git->pack, w_curs,
1137 &offset, type, header);
1138 if (!base_offset)
1139 return;
1140 if (offset_to_pack_pos(bitmap_git->pack, base_offset, &base_pos) < 0)
1141 return;
1142
1143 /*
1144 * We assume delta dependencies always point backwards. This
1145 * lets us do a single pass, and is basically always true
1146 * due to the way OFS_DELTAs work. You would not typically
1147 * find REF_DELTA in a bitmapped pack, since we only bitmap
1148 * packs we write fresh, and OFS_DELTA is the default). But
1149 * let's double check to make sure the pack wasn't written with
1150 * odd parameters.
1151 */
1152 if (base_pos >= pos)
1153 return;
1154
1155 /*
1156 * And finally, if we're not sending the base as part of our
1157 * reuse chunk, then don't send this object either. The base
1158 * would come after us, along with other objects not
1159 * necessarily in the pack, which means we'd need to convert
1160 * to REF_DELTA on the fly. Better to just let the normal
1161 * object_entry code path handle it.
1162 */
1163 if (!bitmap_get(reuse, base_pos))
1164 return;
1165 }
1166
1167 /*
1168 * If we got here, then the object is OK to reuse. Mark it.
1169 */
1170 bitmap_set(reuse, pos);
1171 }
1172
1173 int reuse_partial_packfile_from_bitmap(struct bitmap_index *bitmap_git,
1174 struct packed_git **packfile_out,
1175 uint32_t *entries,
1176 struct bitmap **reuse_out)
1177 {
1178 struct bitmap *result = bitmap_git->result;
1179 struct bitmap *reuse;
1180 struct pack_window *w_curs = NULL;
1181 size_t i = 0;
1182 uint32_t offset;
1183
1184 assert(result);
1185
1186 while (i < result->word_alloc && result->words[i] == (eword_t)~0)
1187 i++;
1188
1189 /* Don't mark objects not in the packfile */
1190 if (i > bitmap_git->pack->num_objects / BITS_IN_EWORD)
1191 i = bitmap_git->pack->num_objects / BITS_IN_EWORD;
1192
1193 reuse = bitmap_word_alloc(i);
1194 memset(reuse->words, 0xFF, i * sizeof(eword_t));
1195
1196 for (; i < result->word_alloc; ++i) {
1197 eword_t word = result->words[i];
1198 size_t pos = (i * BITS_IN_EWORD);
1199
1200 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
1201 if ((word >> offset) == 0)
1202 break;
1203
1204 offset += ewah_bit_ctz64(word >> offset);
1205 try_partial_reuse(bitmap_git, pos + offset, reuse, &w_curs);
1206 }
1207 }
1208
1209 unuse_pack(&w_curs);
1210
1211 *entries = bitmap_popcount(reuse);
1212 if (!*entries) {
1213 bitmap_free(reuse);
1214 return -1;
1215 }
1216
1217 /*
1218 * Drop any reused objects from the result, since they will not
1219 * need to be handled separately.
1220 */
1221 bitmap_and_not(result, reuse);
1222 *packfile_out = bitmap_git->pack;
1223 *reuse_out = reuse;
1224 return 0;
1225 }
1226
1227 int bitmap_walk_contains(struct bitmap_index *bitmap_git,
1228 struct bitmap *bitmap, const struct object_id *oid)
1229 {
1230 int idx;
1231
1232 if (!bitmap)
1233 return 0;
1234
1235 idx = bitmap_position(bitmap_git, oid);
1236 return idx >= 0 && bitmap_get(bitmap, idx);
1237 }
1238
1239 void traverse_bitmap_commit_list(struct bitmap_index *bitmap_git,
1240 struct rev_info *revs,
1241 show_reachable_fn show_reachable)
1242 {
1243 assert(bitmap_git->result);
1244
1245 show_objects_for_type(bitmap_git, OBJ_COMMIT, show_reachable);
1246 if (revs->tree_objects)
1247 show_objects_for_type(bitmap_git, OBJ_TREE, show_reachable);
1248 if (revs->blob_objects)
1249 show_objects_for_type(bitmap_git, OBJ_BLOB, show_reachable);
1250 if (revs->tag_objects)
1251 show_objects_for_type(bitmap_git, OBJ_TAG, show_reachable);
1252
1253 show_extended_objects(bitmap_git, revs, show_reachable);
1254 }
1255
1256 static uint32_t count_object_type(struct bitmap_index *bitmap_git,
1257 enum object_type type)
1258 {
1259 struct bitmap *objects = bitmap_git->result;
1260 struct eindex *eindex = &bitmap_git->ext_index;
1261
1262 uint32_t i = 0, count = 0;
1263 struct ewah_iterator it;
1264 eword_t filter;
1265
1266 init_type_iterator(&it, bitmap_git, type);
1267
1268 while (i < objects->word_alloc && ewah_iterator_next(&filter, &it)) {
1269 eword_t word = objects->words[i++] & filter;
1270 count += ewah_bit_popcount64(word);
1271 }
1272
1273 for (i = 0; i < eindex->count; ++i) {
1274 if (eindex->objects[i]->type == type &&
1275 bitmap_get(objects, bitmap_git->pack->num_objects + i))
1276 count++;
1277 }
1278
1279 return count;
1280 }
1281
1282 void count_bitmap_commit_list(struct bitmap_index *bitmap_git,
1283 uint32_t *commits, uint32_t *trees,
1284 uint32_t *blobs, uint32_t *tags)
1285 {
1286 assert(bitmap_git->result);
1287
1288 if (commits)
1289 *commits = count_object_type(bitmap_git, OBJ_COMMIT);
1290
1291 if (trees)
1292 *trees = count_object_type(bitmap_git, OBJ_TREE);
1293
1294 if (blobs)
1295 *blobs = count_object_type(bitmap_git, OBJ_BLOB);
1296
1297 if (tags)
1298 *tags = count_object_type(bitmap_git, OBJ_TAG);
1299 }
1300
1301 struct bitmap_test_data {
1302 struct bitmap_index *bitmap_git;
1303 struct bitmap *base;
1304 struct progress *prg;
1305 size_t seen;
1306 };
1307
1308 static void test_show_object(struct object *object, const char *name,
1309 void *data)
1310 {
1311 struct bitmap_test_data *tdata = data;
1312 int bitmap_pos;
1313
1314 bitmap_pos = bitmap_position(tdata->bitmap_git, &object->oid);
1315 if (bitmap_pos < 0)
1316 die("Object not in bitmap: %s\n", oid_to_hex(&object->oid));
1317
1318 bitmap_set(tdata->base, bitmap_pos);
1319 display_progress(tdata->prg, ++tdata->seen);
1320 }
1321
1322 static void test_show_commit(struct commit *commit, void *data)
1323 {
1324 struct bitmap_test_data *tdata = data;
1325 int bitmap_pos;
1326
1327 bitmap_pos = bitmap_position(tdata->bitmap_git,
1328 &commit->object.oid);
1329 if (bitmap_pos < 0)
1330 die("Object not in bitmap: %s\n", oid_to_hex(&commit->object.oid));
1331
1332 bitmap_set(tdata->base, bitmap_pos);
1333 display_progress(tdata->prg, ++tdata->seen);
1334 }
1335
1336 void test_bitmap_walk(struct rev_info *revs)
1337 {
1338 struct object *root;
1339 struct bitmap *result = NULL;
1340 size_t result_popcnt;
1341 struct bitmap_test_data tdata;
1342 struct bitmap_index *bitmap_git;
1343 struct ewah_bitmap *bm;
1344
1345 if (!(bitmap_git = prepare_bitmap_git(revs->repo)))
1346 die("failed to load bitmap indexes");
1347
1348 if (revs->pending.nr != 1)
1349 die("you must specify exactly one commit to test");
1350
1351 fprintf(stderr, "Bitmap v%d test (%d entries loaded)\n",
1352 bitmap_git->version, bitmap_git->entry_count);
1353
1354 root = revs->pending.objects[0].item;
1355 bm = bitmap_for_commit(bitmap_git, (struct commit *)root);
1356
1357 if (bm) {
1358 fprintf(stderr, "Found bitmap for %s. %d bits / %08x checksum\n",
1359 oid_to_hex(&root->oid), (int)bm->bit_size, ewah_checksum(bm));
1360
1361 result = ewah_to_bitmap(bm);
1362 }
1363
1364 if (result == NULL)
1365 die("Commit %s doesn't have an indexed bitmap", oid_to_hex(&root->oid));
1366
1367 revs->tag_objects = 1;
1368 revs->tree_objects = 1;
1369 revs->blob_objects = 1;
1370
1371 result_popcnt = bitmap_popcount(result);
1372
1373 if (prepare_revision_walk(revs))
1374 die("revision walk setup failed");
1375
1376 tdata.bitmap_git = bitmap_git;
1377 tdata.base = bitmap_new();
1378 tdata.prg = start_progress("Verifying bitmap entries", result_popcnt);
1379 tdata.seen = 0;
1380
1381 traverse_commit_list(revs, &test_show_commit, &test_show_object, &tdata);
1382
1383 stop_progress(&tdata.prg);
1384
1385 if (bitmap_equals(result, tdata.base))
1386 fprintf(stderr, "OK!\n");
1387 else
1388 die("mismatch in bitmap results");
1389
1390 free_bitmap_index(bitmap_git);
1391 }
1392
1393 int test_bitmap_commits(struct repository *r)
1394 {
1395 struct bitmap_index *bitmap_git = prepare_bitmap_git(r);
1396 struct object_id oid;
1397 MAYBE_UNUSED void *value;
1398
1399 if (!bitmap_git)
1400 die("failed to load bitmap indexes");
1401
1402 kh_foreach(bitmap_git->bitmaps, oid, value, {
1403 printf("%s\n", oid_to_hex(&oid));
1404 });
1405
1406 free_bitmap_index(bitmap_git);
1407
1408 return 0;
1409 }
1410
1411 int rebuild_bitmap(const uint32_t *reposition,
1412 struct ewah_bitmap *source,
1413 struct bitmap *dest)
1414 {
1415 uint32_t pos = 0;
1416 struct ewah_iterator it;
1417 eword_t word;
1418
1419 ewah_iterator_init(&it, source);
1420
1421 while (ewah_iterator_next(&word, &it)) {
1422 uint32_t offset, bit_pos;
1423
1424 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
1425 if ((word >> offset) == 0)
1426 break;
1427
1428 offset += ewah_bit_ctz64(word >> offset);
1429
1430 bit_pos = reposition[pos + offset];
1431 if (bit_pos > 0)
1432 bitmap_set(dest, bit_pos - 1);
1433 else /* can't reuse, we don't have the object */
1434 return -1;
1435 }
1436
1437 pos += BITS_IN_EWORD;
1438 }
1439 return 0;
1440 }
1441
1442 uint32_t *create_bitmap_mapping(struct bitmap_index *bitmap_git,
1443 struct packing_data *mapping)
1444 {
1445 uint32_t i, num_objects;
1446 uint32_t *reposition;
1447
1448 num_objects = bitmap_git->pack->num_objects;
1449 CALLOC_ARRAY(reposition, num_objects);
1450
1451 for (i = 0; i < num_objects; ++i) {
1452 struct object_id oid;
1453 struct object_entry *oe;
1454
1455 nth_packed_object_id(&oid, bitmap_git->pack,
1456 pack_pos_to_index(bitmap_git->pack, i));
1457 oe = packlist_find(mapping, &oid);
1458
1459 if (oe)
1460 reposition[i] = oe_in_pack_pos(mapping, oe) + 1;
1461 }
1462
1463 return reposition;
1464 }
1465
1466 void free_bitmap_index(struct bitmap_index *b)
1467 {
1468 if (!b)
1469 return;
1470
1471 if (b->map)
1472 munmap(b->map, b->map_size);
1473 ewah_pool_free(b->commits);
1474 ewah_pool_free(b->trees);
1475 ewah_pool_free(b->blobs);
1476 ewah_pool_free(b->tags);
1477 kh_destroy_oid_map(b->bitmaps);
1478 free(b->ext_index.objects);
1479 free(b->ext_index.hashes);
1480 bitmap_free(b->result);
1481 bitmap_free(b->haves);
1482 free(b);
1483 }
1484
1485 int bitmap_has_oid_in_uninteresting(struct bitmap_index *bitmap_git,
1486 const struct object_id *oid)
1487 {
1488 return bitmap_git &&
1489 bitmap_walk_contains(bitmap_git, bitmap_git->haves, oid);
1490 }
1491
1492 static off_t get_disk_usage_for_type(struct bitmap_index *bitmap_git,
1493 enum object_type object_type)
1494 {
1495 struct bitmap *result = bitmap_git->result;
1496 struct packed_git *pack = bitmap_git->pack;
1497 off_t total = 0;
1498 struct ewah_iterator it;
1499 eword_t filter;
1500 size_t i;
1501
1502 init_type_iterator(&it, bitmap_git, object_type);
1503 for (i = 0; i < result->word_alloc &&
1504 ewah_iterator_next(&filter, &it); i++) {
1505 eword_t word = result->words[i] & filter;
1506 size_t base = (i * BITS_IN_EWORD);
1507 unsigned offset;
1508
1509 if (!word)
1510 continue;
1511
1512 for (offset = 0; offset < BITS_IN_EWORD; offset++) {
1513 size_t pos;
1514
1515 if ((word >> offset) == 0)
1516 break;
1517
1518 offset += ewah_bit_ctz64(word >> offset);
1519 pos = base + offset;
1520 total += pack_pos_to_offset(pack, pos + 1) -
1521 pack_pos_to_offset(pack, pos);
1522 }
1523 }
1524
1525 return total;
1526 }
1527
1528 static off_t get_disk_usage_for_extended(struct bitmap_index *bitmap_git)
1529 {
1530 struct bitmap *result = bitmap_git->result;
1531 struct packed_git *pack = bitmap_git->pack;
1532 struct eindex *eindex = &bitmap_git->ext_index;
1533 off_t total = 0;
1534 struct object_info oi = OBJECT_INFO_INIT;
1535 off_t object_size;
1536 size_t i;
1537
1538 oi.disk_sizep = &object_size;
1539
1540 for (i = 0; i < eindex->count; i++) {
1541 struct object *obj = eindex->objects[i];
1542
1543 if (!bitmap_get(result, pack->num_objects + i))
1544 continue;
1545
1546 if (oid_object_info_extended(the_repository, &obj->oid, &oi, 0) < 0)
1547 die(_("unable to get disk usage of %s"),
1548 oid_to_hex(&obj->oid));
1549
1550 total += object_size;
1551 }
1552 return total;
1553 }
1554
1555 off_t get_disk_usage_from_bitmap(struct bitmap_index *bitmap_git,
1556 struct rev_info *revs)
1557 {
1558 off_t total = 0;
1559
1560 total += get_disk_usage_for_type(bitmap_git, OBJ_COMMIT);
1561 if (revs->tree_objects)
1562 total += get_disk_usage_for_type(bitmap_git, OBJ_TREE);
1563 if (revs->blob_objects)
1564 total += get_disk_usage_for_type(bitmap_git, OBJ_BLOB);
1565 if (revs->tag_objects)
1566 total += get_disk_usage_for_type(bitmap_git, OBJ_TAG);
1567
1568 total += get_disk_usage_for_extended(bitmap_git);
1569
1570 return total;
1571 }
1572
1573 const struct string_list *bitmap_preferred_tips(struct repository *r)
1574 {
1575 return repo_config_get_value_multi(r, "pack.preferbitmaptips");
1576 }