pack-revindex: store entries directly in packed_git
[git.git] / pack-bitmap.c
blobead6de07cec6c37e7fa32cd4b0dc7d6428ca20a5
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"
14 * An entry on the bitmap index, representing the bitmap for a given
15 * commit.
17 struct stored_bitmap {
18 unsigned char sha1[20];
19 struct ewah_bitmap *root;
20 struct stored_bitmap *xor;
21 int flags;
25 * The currently active bitmap index. By design, repositories only have
26 * a single bitmap index available (the index for the biggest packfile in
27 * the repository), since bitmap indexes need full closure.
29 * If there is more than one bitmap index available (e.g. because of alternates),
30 * the active bitmap index is the largest one.
32 static struct bitmap_index {
33 /* Packfile to which this bitmap index belongs to */
34 struct packed_git *pack;
37 * Mark the first `reuse_objects` in the packfile as reused:
38 * they will be sent as-is without using them for repacking
39 * calculations
41 uint32_t reuse_objects;
43 /* mmapped buffer of the whole bitmap index */
44 unsigned char *map;
45 size_t map_size; /* size of the mmaped buffer */
46 size_t map_pos; /* current position when loading the index */
49 * Type indexes.
51 * Each bitmap marks which objects in the packfile are of the given
52 * type. This provides type information when yielding the objects from
53 * the packfile during a walk, which allows for better delta bases.
55 struct ewah_bitmap *commits;
56 struct ewah_bitmap *trees;
57 struct ewah_bitmap *blobs;
58 struct ewah_bitmap *tags;
60 /* Map from SHA1 -> `stored_bitmap` for all the bitmapped comits */
61 khash_sha1 *bitmaps;
63 /* Number of bitmapped commits */
64 uint32_t entry_count;
66 /* Name-hash cache (or NULL if not present). */
67 uint32_t *hashes;
70 * Extended index.
72 * When trying to perform bitmap operations with objects that are not
73 * packed in `pack`, these objects are added to this "fake index" and
74 * are assumed to appear at the end of the packfile for all operations
76 struct eindex {
77 struct object **objects;
78 uint32_t *hashes;
79 uint32_t count, alloc;
80 khash_sha1_pos *positions;
81 } ext_index;
83 /* Bitmap result of the last performed walk */
84 struct bitmap *result;
86 /* Version of the bitmap index */
87 unsigned int version;
89 unsigned loaded : 1;
91 } bitmap_git;
93 static struct ewah_bitmap *lookup_stored_bitmap(struct stored_bitmap *st)
95 struct ewah_bitmap *parent;
96 struct ewah_bitmap *composed;
98 if (st->xor == NULL)
99 return st->root;
101 composed = ewah_pool_new();
102 parent = lookup_stored_bitmap(st->xor);
103 ewah_xor(st->root, parent, composed);
105 ewah_pool_free(st->root);
106 st->root = composed;
107 st->xor = NULL;
109 return composed;
113 * Read a bitmap from the current read position on the mmaped
114 * index, and increase the read position accordingly
116 static struct ewah_bitmap *read_bitmap_1(struct bitmap_index *index)
118 struct ewah_bitmap *b = ewah_pool_new();
120 int bitmap_size = ewah_read_mmap(b,
121 index->map + index->map_pos,
122 index->map_size - index->map_pos);
124 if (bitmap_size < 0) {
125 error("Failed to load bitmap index (corrupted?)");
126 ewah_pool_free(b);
127 return NULL;
130 index->map_pos += bitmap_size;
131 return b;
134 static int load_bitmap_header(struct bitmap_index *index)
136 struct bitmap_disk_header *header = (void *)index->map;
138 if (index->map_size < sizeof(*header) + 20)
139 return error("Corrupted bitmap index (missing header data)");
141 if (memcmp(header->magic, BITMAP_IDX_SIGNATURE, sizeof(BITMAP_IDX_SIGNATURE)) != 0)
142 return error("Corrupted bitmap index file (wrong header)");
144 index->version = ntohs(header->version);
145 if (index->version != 1)
146 return error("Unsupported version for bitmap index file (%d)", index->version);
148 /* Parse known bitmap format options */
150 uint32_t flags = ntohs(header->options);
152 if ((flags & BITMAP_OPT_FULL_DAG) == 0)
153 return error("Unsupported options for bitmap index file "
154 "(Git requires BITMAP_OPT_FULL_DAG)");
156 if (flags & BITMAP_OPT_HASH_CACHE) {
157 unsigned char *end = index->map + index->map_size - 20;
158 index->hashes = ((uint32_t *)end) - index->pack->num_objects;
162 index->entry_count = ntohl(header->entry_count);
163 index->map_pos += sizeof(*header);
164 return 0;
167 static struct stored_bitmap *store_bitmap(struct bitmap_index *index,
168 struct ewah_bitmap *root,
169 const unsigned char *sha1,
170 struct stored_bitmap *xor_with,
171 int flags)
173 struct stored_bitmap *stored;
174 khiter_t hash_pos;
175 int ret;
177 stored = xmalloc(sizeof(struct stored_bitmap));
178 stored->root = root;
179 stored->xor = xor_with;
180 stored->flags = flags;
181 hashcpy(stored->sha1, sha1);
183 hash_pos = kh_put_sha1(index->bitmaps, stored->sha1, &ret);
185 /* a 0 return code means the insertion succeeded with no changes,
186 * because the SHA1 already existed on the map. this is bad, there
187 * shouldn't be duplicated commits in the index */
188 if (ret == 0) {
189 error("Duplicate entry in bitmap index: %s", sha1_to_hex(sha1));
190 return NULL;
193 kh_value(index->bitmaps, hash_pos) = stored;
194 return stored;
197 static int load_bitmap_entries_v1(struct bitmap_index *index)
199 static const size_t MAX_XOR_OFFSET = 160;
201 uint32_t i;
202 struct stored_bitmap **recent_bitmaps;
203 struct bitmap_disk_entry *entry;
205 recent_bitmaps = xcalloc(MAX_XOR_OFFSET, sizeof(struct stored_bitmap));
207 for (i = 0; i < index->entry_count; ++i) {
208 int xor_offset, flags;
209 struct ewah_bitmap *bitmap = NULL;
210 struct stored_bitmap *xor_bitmap = NULL;
211 uint32_t commit_idx_pos;
212 const unsigned char *sha1;
214 entry = (struct bitmap_disk_entry *)(index->map + index->map_pos);
215 index->map_pos += sizeof(struct bitmap_disk_entry);
217 commit_idx_pos = ntohl(entry->object_pos);
218 sha1 = nth_packed_object_sha1(index->pack, commit_idx_pos);
220 xor_offset = (int)entry->xor_offset;
221 flags = (int)entry->flags;
223 bitmap = read_bitmap_1(index);
224 if (!bitmap)
225 return -1;
227 if (xor_offset > MAX_XOR_OFFSET || xor_offset > i)
228 return error("Corrupted bitmap pack index");
230 if (xor_offset > 0) {
231 xor_bitmap = recent_bitmaps[(i - xor_offset) % MAX_XOR_OFFSET];
233 if (xor_bitmap == NULL)
234 return error("Invalid XOR offset in bitmap pack index");
237 recent_bitmaps[i % MAX_XOR_OFFSET] = store_bitmap(
238 index, bitmap, sha1, xor_bitmap, flags);
241 return 0;
244 static int open_pack_bitmap_1(struct packed_git *packfile)
246 int fd;
247 struct stat st;
248 char *idx_name;
250 if (open_pack_index(packfile))
251 return -1;
253 idx_name = pack_bitmap_filename(packfile);
254 fd = git_open_noatime(idx_name);
255 free(idx_name);
257 if (fd < 0)
258 return -1;
260 if (fstat(fd, &st)) {
261 close(fd);
262 return -1;
265 if (bitmap_git.pack) {
266 warning("ignoring extra bitmap file: %s", packfile->pack_name);
267 close(fd);
268 return -1;
271 bitmap_git.pack = packfile;
272 bitmap_git.map_size = xsize_t(st.st_size);
273 bitmap_git.map = xmmap(NULL, bitmap_git.map_size, PROT_READ, MAP_PRIVATE, fd, 0);
274 bitmap_git.map_pos = 0;
275 close(fd);
277 if (load_bitmap_header(&bitmap_git) < 0) {
278 munmap(bitmap_git.map, bitmap_git.map_size);
279 bitmap_git.map = NULL;
280 bitmap_git.map_size = 0;
281 return -1;
284 return 0;
287 static int load_pack_bitmap(void)
289 assert(bitmap_git.map && !bitmap_git.loaded);
291 bitmap_git.bitmaps = kh_init_sha1();
292 bitmap_git.ext_index.positions = kh_init_sha1_pos();
293 load_pack_revindex(bitmap_git.pack);
295 if (!(bitmap_git.commits = read_bitmap_1(&bitmap_git)) ||
296 !(bitmap_git.trees = read_bitmap_1(&bitmap_git)) ||
297 !(bitmap_git.blobs = read_bitmap_1(&bitmap_git)) ||
298 !(bitmap_git.tags = read_bitmap_1(&bitmap_git)))
299 goto failed;
301 if (load_bitmap_entries_v1(&bitmap_git) < 0)
302 goto failed;
304 bitmap_git.loaded = 1;
305 return 0;
307 failed:
308 munmap(bitmap_git.map, bitmap_git.map_size);
309 bitmap_git.map = NULL;
310 bitmap_git.map_size = 0;
311 return -1;
314 char *pack_bitmap_filename(struct packed_git *p)
316 char *idx_name;
317 int len;
319 len = strlen(p->pack_name) - strlen(".pack");
320 idx_name = xmalloc(len + strlen(".bitmap") + 1);
322 memcpy(idx_name, p->pack_name, len);
323 memcpy(idx_name + len, ".bitmap", strlen(".bitmap") + 1);
325 return idx_name;
328 static int open_pack_bitmap(void)
330 struct packed_git *p;
331 int ret = -1;
333 assert(!bitmap_git.map && !bitmap_git.loaded);
335 prepare_packed_git();
336 for (p = packed_git; p; p = p->next) {
337 if (open_pack_bitmap_1(p) == 0)
338 ret = 0;
341 return ret;
344 int prepare_bitmap_git(void)
346 if (bitmap_git.loaded)
347 return 0;
349 if (!open_pack_bitmap())
350 return load_pack_bitmap();
352 return -1;
355 struct include_data {
356 struct bitmap *base;
357 struct bitmap *seen;
360 static inline int bitmap_position_extended(const unsigned char *sha1)
362 khash_sha1_pos *positions = bitmap_git.ext_index.positions;
363 khiter_t pos = kh_get_sha1_pos(positions, sha1);
365 if (pos < kh_end(positions)) {
366 int bitmap_pos = kh_value(positions, pos);
367 return bitmap_pos + bitmap_git.pack->num_objects;
370 return -1;
373 static inline int bitmap_position_packfile(const unsigned char *sha1)
375 off_t offset = find_pack_entry_one(sha1, bitmap_git.pack);
376 if (!offset)
377 return -1;
379 return find_revindex_position(bitmap_git.pack, offset);
382 static int bitmap_position(const unsigned char *sha1)
384 int pos = bitmap_position_packfile(sha1);
385 return (pos >= 0) ? pos : bitmap_position_extended(sha1);
388 static int ext_index_add_object(struct object *object, const char *name)
390 struct eindex *eindex = &bitmap_git.ext_index;
392 khiter_t hash_pos;
393 int hash_ret;
394 int bitmap_pos;
396 hash_pos = kh_put_sha1_pos(eindex->positions, object->sha1, &hash_ret);
397 if (hash_ret > 0) {
398 if (eindex->count >= eindex->alloc) {
399 eindex->alloc = (eindex->alloc + 16) * 3 / 2;
400 eindex->objects = xrealloc(eindex->objects,
401 eindex->alloc * sizeof(struct object *));
402 eindex->hashes = xrealloc(eindex->hashes,
403 eindex->alloc * sizeof(uint32_t));
406 bitmap_pos = eindex->count;
407 eindex->objects[eindex->count] = object;
408 eindex->hashes[eindex->count] = pack_name_hash(name);
409 kh_value(eindex->positions, hash_pos) = bitmap_pos;
410 eindex->count++;
411 } else {
412 bitmap_pos = kh_value(eindex->positions, hash_pos);
415 return bitmap_pos + bitmap_git.pack->num_objects;
418 static void show_object(struct object *object, const struct name_path *path,
419 const char *last, void *data)
421 struct bitmap *base = data;
422 int bitmap_pos;
424 bitmap_pos = bitmap_position(object->sha1);
426 if (bitmap_pos < 0) {
427 char *name = path_name(path, last);
428 bitmap_pos = ext_index_add_object(object, name);
429 free(name);
432 bitmap_set(base, bitmap_pos);
435 static void show_commit(struct commit *commit, void *data)
439 static int add_to_include_set(struct include_data *data,
440 const unsigned char *sha1,
441 int bitmap_pos)
443 khiter_t hash_pos;
445 if (data->seen && bitmap_get(data->seen, bitmap_pos))
446 return 0;
448 if (bitmap_get(data->base, bitmap_pos))
449 return 0;
451 hash_pos = kh_get_sha1(bitmap_git.bitmaps, sha1);
452 if (hash_pos < kh_end(bitmap_git.bitmaps)) {
453 struct stored_bitmap *st = kh_value(bitmap_git.bitmaps, hash_pos);
454 bitmap_or_ewah(data->base, lookup_stored_bitmap(st));
455 return 0;
458 bitmap_set(data->base, bitmap_pos);
459 return 1;
462 static int should_include(struct commit *commit, void *_data)
464 struct include_data *data = _data;
465 int bitmap_pos;
467 bitmap_pos = bitmap_position(commit->object.sha1);
468 if (bitmap_pos < 0)
469 bitmap_pos = ext_index_add_object((struct object *)commit, NULL);
471 if (!add_to_include_set(data, commit->object.sha1, bitmap_pos)) {
472 struct commit_list *parent = commit->parents;
474 while (parent) {
475 parent->item->object.flags |= SEEN;
476 parent = parent->next;
479 return 0;
482 return 1;
485 static struct bitmap *find_objects(struct rev_info *revs,
486 struct object_list *roots,
487 struct bitmap *seen)
489 struct bitmap *base = NULL;
490 int needs_walk = 0;
492 struct object_list *not_mapped = NULL;
495 * Go through all the roots for the walk. The ones that have bitmaps
496 * on the bitmap index will be `or`ed together to form an initial
497 * global reachability analysis.
499 * The ones without bitmaps in the index will be stored in the
500 * `not_mapped_list` for further processing.
502 while (roots) {
503 struct object *object = roots->item;
504 roots = roots->next;
506 if (object->type == OBJ_COMMIT) {
507 khiter_t pos = kh_get_sha1(bitmap_git.bitmaps, object->sha1);
509 if (pos < kh_end(bitmap_git.bitmaps)) {
510 struct stored_bitmap *st = kh_value(bitmap_git.bitmaps, pos);
511 struct ewah_bitmap *or_with = lookup_stored_bitmap(st);
513 if (base == NULL)
514 base = ewah_to_bitmap(or_with);
515 else
516 bitmap_or_ewah(base, or_with);
518 object->flags |= SEEN;
519 continue;
523 object_list_insert(object, &not_mapped);
527 * Best case scenario: We found bitmaps for all the roots,
528 * so the resulting `or` bitmap has the full reachability analysis
530 if (not_mapped == NULL)
531 return base;
533 roots = not_mapped;
536 * Let's iterate through all the roots that don't have bitmaps to
537 * check if we can determine them to be reachable from the existing
538 * global bitmap.
540 * If we cannot find them in the existing global bitmap, we'll need
541 * to push them to an actual walk and run it until we can confirm
542 * they are reachable
544 while (roots) {
545 struct object *object = roots->item;
546 int pos;
548 roots = roots->next;
549 pos = bitmap_position(object->sha1);
551 if (pos < 0 || base == NULL || !bitmap_get(base, pos)) {
552 object->flags &= ~UNINTERESTING;
553 add_pending_object(revs, object, "");
554 needs_walk = 1;
555 } else {
556 object->flags |= SEEN;
560 if (needs_walk) {
561 struct include_data incdata;
563 if (base == NULL)
564 base = bitmap_new();
566 incdata.base = base;
567 incdata.seen = seen;
569 revs->include_check = should_include;
570 revs->include_check_data = &incdata;
572 if (prepare_revision_walk(revs))
573 die("revision walk setup failed");
575 traverse_commit_list(revs, show_commit, show_object, base);
578 return base;
581 static void show_extended_objects(struct bitmap *objects,
582 show_reachable_fn show_reach)
584 struct eindex *eindex = &bitmap_git.ext_index;
585 uint32_t i;
587 for (i = 0; i < eindex->count; ++i) {
588 struct object *obj;
590 if (!bitmap_get(objects, bitmap_git.pack->num_objects + i))
591 continue;
593 obj = eindex->objects[i];
594 show_reach(obj->sha1, obj->type, 0, eindex->hashes[i], NULL, 0);
598 static void show_objects_for_type(
599 struct bitmap *objects,
600 struct ewah_bitmap *type_filter,
601 enum object_type object_type,
602 show_reachable_fn show_reach)
604 size_t pos = 0, i = 0;
605 uint32_t offset;
607 struct ewah_iterator it;
608 eword_t filter;
610 if (bitmap_git.reuse_objects == bitmap_git.pack->num_objects)
611 return;
613 ewah_iterator_init(&it, type_filter);
615 while (i < objects->word_alloc && ewah_iterator_next(&filter, &it)) {
616 eword_t word = objects->words[i] & filter;
618 for (offset = 0; offset < BITS_IN_WORD; ++offset) {
619 const unsigned char *sha1;
620 struct revindex_entry *entry;
621 uint32_t hash = 0;
623 if ((word >> offset) == 0)
624 break;
626 offset += ewah_bit_ctz64(word >> offset);
628 if (pos + offset < bitmap_git.reuse_objects)
629 continue;
631 entry = &bitmap_git.pack->revindex[pos + offset];
632 sha1 = nth_packed_object_sha1(bitmap_git.pack, entry->nr);
634 if (bitmap_git.hashes)
635 hash = ntohl(bitmap_git.hashes[entry->nr]);
637 show_reach(sha1, object_type, 0, hash, bitmap_git.pack, entry->offset);
640 pos += BITS_IN_WORD;
641 i++;
645 static int in_bitmapped_pack(struct object_list *roots)
647 while (roots) {
648 struct object *object = roots->item;
649 roots = roots->next;
651 if (find_pack_entry_one(object->sha1, bitmap_git.pack) > 0)
652 return 1;
655 return 0;
658 int prepare_bitmap_walk(struct rev_info *revs)
660 unsigned int i;
661 unsigned int pending_nr = revs->pending.nr;
662 struct object_array_entry *pending_e = revs->pending.objects;
664 struct object_list *wants = NULL;
665 struct object_list *haves = NULL;
667 struct bitmap *wants_bitmap = NULL;
668 struct bitmap *haves_bitmap = NULL;
670 if (!bitmap_git.loaded) {
671 /* try to open a bitmapped pack, but don't parse it yet
672 * because we may not need to use it */
673 if (open_pack_bitmap() < 0)
674 return -1;
677 for (i = 0; i < pending_nr; ++i) {
678 struct object *object = pending_e[i].item;
680 if (object->type == OBJ_NONE)
681 parse_object_or_die(object->sha1, NULL);
683 while (object->type == OBJ_TAG) {
684 struct tag *tag = (struct tag *) object;
686 if (object->flags & UNINTERESTING)
687 object_list_insert(object, &haves);
688 else
689 object_list_insert(object, &wants);
691 if (!tag->tagged)
692 die("bad tag");
693 object = parse_object_or_die(tag->tagged->sha1, NULL);
696 if (object->flags & UNINTERESTING)
697 object_list_insert(object, &haves);
698 else
699 object_list_insert(object, &wants);
703 * if we have a HAVES list, but none of those haves is contained
704 * in the packfile that has a bitmap, we don't have anything to
705 * optimize here
707 if (haves && !in_bitmapped_pack(haves))
708 return -1;
710 /* if we don't want anything, we're done here */
711 if (!wants)
712 return -1;
715 * now we're going to use bitmaps, so load the actual bitmap entries
716 * from disk. this is the point of no return; after this the rev_list
717 * becomes invalidated and we must perform the revwalk through bitmaps
719 if (!bitmap_git.loaded && load_pack_bitmap() < 0)
720 return -1;
722 revs->pending.nr = 0;
723 revs->pending.alloc = 0;
724 revs->pending.objects = NULL;
726 if (haves) {
727 revs->ignore_missing_links = 1;
728 haves_bitmap = find_objects(revs, haves, NULL);
729 reset_revision_walk();
730 revs->ignore_missing_links = 0;
732 if (haves_bitmap == NULL)
733 die("BUG: failed to perform bitmap walk");
736 wants_bitmap = find_objects(revs, wants, haves_bitmap);
738 if (!wants_bitmap)
739 die("BUG: failed to perform bitmap walk");
741 if (haves_bitmap)
742 bitmap_and_not(wants_bitmap, haves_bitmap);
744 bitmap_git.result = wants_bitmap;
746 bitmap_free(haves_bitmap);
747 return 0;
750 int reuse_partial_packfile_from_bitmap(struct packed_git **packfile,
751 uint32_t *entries,
752 off_t *up_to)
755 * Reuse the packfile content if we need more than
756 * 90% of its objects
758 static const double REUSE_PERCENT = 0.9;
760 struct bitmap *result = bitmap_git.result;
761 uint32_t reuse_threshold;
762 uint32_t i, reuse_objects = 0;
764 assert(result);
766 for (i = 0; i < result->word_alloc; ++i) {
767 if (result->words[i] != (eword_t)~0) {
768 reuse_objects += ewah_bit_ctz64(~result->words[i]);
769 break;
772 reuse_objects += BITS_IN_WORD;
775 #ifdef GIT_BITMAP_DEBUG
777 const unsigned char *sha1;
778 struct revindex_entry *entry;
780 entry = &bitmap_git.reverse_index->revindex[reuse_objects];
781 sha1 = nth_packed_object_sha1(bitmap_git.pack, entry->nr);
783 fprintf(stderr, "Failed to reuse at %d (%016llx)\n",
784 reuse_objects, result->words[i]);
785 fprintf(stderr, " %s\n", sha1_to_hex(sha1));
787 #endif
789 if (!reuse_objects)
790 return -1;
792 if (reuse_objects >= bitmap_git.pack->num_objects) {
793 bitmap_git.reuse_objects = *entries = bitmap_git.pack->num_objects;
794 *up_to = -1; /* reuse the full pack */
795 *packfile = bitmap_git.pack;
796 return 0;
799 reuse_threshold = bitmap_popcount(bitmap_git.result) * REUSE_PERCENT;
801 if (reuse_objects < reuse_threshold)
802 return -1;
804 bitmap_git.reuse_objects = *entries = reuse_objects;
805 *up_to = bitmap_git.pack->revindex[reuse_objects].offset;
806 *packfile = bitmap_git.pack;
808 return 0;
811 void traverse_bitmap_commit_list(show_reachable_fn show_reachable)
813 assert(bitmap_git.result);
815 show_objects_for_type(bitmap_git.result, bitmap_git.commits,
816 OBJ_COMMIT, show_reachable);
817 show_objects_for_type(bitmap_git.result, bitmap_git.trees,
818 OBJ_TREE, show_reachable);
819 show_objects_for_type(bitmap_git.result, bitmap_git.blobs,
820 OBJ_BLOB, show_reachable);
821 show_objects_for_type(bitmap_git.result, bitmap_git.tags,
822 OBJ_TAG, show_reachable);
824 show_extended_objects(bitmap_git.result, show_reachable);
826 bitmap_free(bitmap_git.result);
827 bitmap_git.result = NULL;
830 static uint32_t count_object_type(struct bitmap *objects,
831 enum object_type type)
833 struct eindex *eindex = &bitmap_git.ext_index;
835 uint32_t i = 0, count = 0;
836 struct ewah_iterator it;
837 eword_t filter;
839 switch (type) {
840 case OBJ_COMMIT:
841 ewah_iterator_init(&it, bitmap_git.commits);
842 break;
844 case OBJ_TREE:
845 ewah_iterator_init(&it, bitmap_git.trees);
846 break;
848 case OBJ_BLOB:
849 ewah_iterator_init(&it, bitmap_git.blobs);
850 break;
852 case OBJ_TAG:
853 ewah_iterator_init(&it, bitmap_git.tags);
854 break;
856 default:
857 return 0;
860 while (i < objects->word_alloc && ewah_iterator_next(&filter, &it)) {
861 eword_t word = objects->words[i++] & filter;
862 count += ewah_bit_popcount64(word);
865 for (i = 0; i < eindex->count; ++i) {
866 if (eindex->objects[i]->type == type &&
867 bitmap_get(objects, bitmap_git.pack->num_objects + i))
868 count++;
871 return count;
874 void count_bitmap_commit_list(uint32_t *commits, uint32_t *trees,
875 uint32_t *blobs, uint32_t *tags)
877 assert(bitmap_git.result);
879 if (commits)
880 *commits = count_object_type(bitmap_git.result, OBJ_COMMIT);
882 if (trees)
883 *trees = count_object_type(bitmap_git.result, OBJ_TREE);
885 if (blobs)
886 *blobs = count_object_type(bitmap_git.result, OBJ_BLOB);
888 if (tags)
889 *tags = count_object_type(bitmap_git.result, OBJ_TAG);
892 struct bitmap_test_data {
893 struct bitmap *base;
894 struct progress *prg;
895 size_t seen;
898 static void test_show_object(struct object *object,
899 const struct name_path *path,
900 const char *last, void *data)
902 struct bitmap_test_data *tdata = data;
903 int bitmap_pos;
905 bitmap_pos = bitmap_position(object->sha1);
906 if (bitmap_pos < 0)
907 die("Object not in bitmap: %s\n", sha1_to_hex(object->sha1));
909 bitmap_set(tdata->base, bitmap_pos);
910 display_progress(tdata->prg, ++tdata->seen);
913 static void test_show_commit(struct commit *commit, void *data)
915 struct bitmap_test_data *tdata = data;
916 int bitmap_pos;
918 bitmap_pos = bitmap_position(commit->object.sha1);
919 if (bitmap_pos < 0)
920 die("Object not in bitmap: %s\n", sha1_to_hex(commit->object.sha1));
922 bitmap_set(tdata->base, bitmap_pos);
923 display_progress(tdata->prg, ++tdata->seen);
926 void test_bitmap_walk(struct rev_info *revs)
928 struct object *root;
929 struct bitmap *result = NULL;
930 khiter_t pos;
931 size_t result_popcnt;
932 struct bitmap_test_data tdata;
934 if (prepare_bitmap_git())
935 die("failed to load bitmap indexes");
937 if (revs->pending.nr != 1)
938 die("you must specify exactly one commit to test");
940 fprintf(stderr, "Bitmap v%d test (%d entries loaded)\n",
941 bitmap_git.version, bitmap_git.entry_count);
943 root = revs->pending.objects[0].item;
944 pos = kh_get_sha1(bitmap_git.bitmaps, root->sha1);
946 if (pos < kh_end(bitmap_git.bitmaps)) {
947 struct stored_bitmap *st = kh_value(bitmap_git.bitmaps, pos);
948 struct ewah_bitmap *bm = lookup_stored_bitmap(st);
950 fprintf(stderr, "Found bitmap for %s. %d bits / %08x checksum\n",
951 sha1_to_hex(root->sha1), (int)bm->bit_size, ewah_checksum(bm));
953 result = ewah_to_bitmap(bm);
956 if (result == NULL)
957 die("Commit %s doesn't have an indexed bitmap", sha1_to_hex(root->sha1));
959 revs->tag_objects = 1;
960 revs->tree_objects = 1;
961 revs->blob_objects = 1;
963 result_popcnt = bitmap_popcount(result);
965 if (prepare_revision_walk(revs))
966 die("revision walk setup failed");
968 tdata.base = bitmap_new();
969 tdata.prg = start_progress("Verifying bitmap entries", result_popcnt);
970 tdata.seen = 0;
972 traverse_commit_list(revs, &test_show_commit, &test_show_object, &tdata);
974 stop_progress(&tdata.prg);
976 if (bitmap_equals(result, tdata.base))
977 fprintf(stderr, "OK!\n");
978 else
979 fprintf(stderr, "Mismatch!\n");
982 static int rebuild_bitmap(uint32_t *reposition,
983 struct ewah_bitmap *source,
984 struct bitmap *dest)
986 uint32_t pos = 0;
987 struct ewah_iterator it;
988 eword_t word;
990 ewah_iterator_init(&it, source);
992 while (ewah_iterator_next(&word, &it)) {
993 uint32_t offset, bit_pos;
995 for (offset = 0; offset < BITS_IN_WORD; ++offset) {
996 if ((word >> offset) == 0)
997 break;
999 offset += ewah_bit_ctz64(word >> offset);
1001 bit_pos = reposition[pos + offset];
1002 if (bit_pos > 0)
1003 bitmap_set(dest, bit_pos - 1);
1004 else /* can't reuse, we don't have the object */
1005 return -1;
1008 pos += BITS_IN_WORD;
1010 return 0;
1013 int rebuild_existing_bitmaps(struct packing_data *mapping,
1014 khash_sha1 *reused_bitmaps,
1015 int show_progress)
1017 uint32_t i, num_objects;
1018 uint32_t *reposition;
1019 struct bitmap *rebuild;
1020 struct stored_bitmap *stored;
1021 struct progress *progress = NULL;
1023 khiter_t hash_pos;
1024 int hash_ret;
1026 if (prepare_bitmap_git() < 0)
1027 return -1;
1029 num_objects = bitmap_git.pack->num_objects;
1030 reposition = xcalloc(num_objects, sizeof(uint32_t));
1032 for (i = 0; i < num_objects; ++i) {
1033 const unsigned char *sha1;
1034 struct revindex_entry *entry;
1035 struct object_entry *oe;
1037 entry = &bitmap_git.pack->revindex[i];
1038 sha1 = nth_packed_object_sha1(bitmap_git.pack, entry->nr);
1039 oe = packlist_find(mapping, sha1, NULL);
1041 if (oe)
1042 reposition[i] = oe->in_pack_pos + 1;
1045 rebuild = bitmap_new();
1046 i = 0;
1048 if (show_progress)
1049 progress = start_progress("Reusing bitmaps", 0);
1051 kh_foreach_value(bitmap_git.bitmaps, stored, {
1052 if (stored->flags & BITMAP_FLAG_REUSE) {
1053 if (!rebuild_bitmap(reposition,
1054 lookup_stored_bitmap(stored),
1055 rebuild)) {
1056 hash_pos = kh_put_sha1(reused_bitmaps,
1057 stored->sha1,
1058 &hash_ret);
1059 kh_value(reused_bitmaps, hash_pos) =
1060 bitmap_to_ewah(rebuild);
1062 bitmap_reset(rebuild);
1063 display_progress(progress, ++i);
1067 stop_progress(&progress);
1069 free(reposition);
1070 bitmap_free(rebuild);
1071 return 0;