7 #include "list-objects.h"
9 #include "pack-bitmap.h"
10 #include "pack-revindex.h"
11 #include "pack-objects.h"
15 * An entry on the bitmap index, representing the bitmap for a given
18 struct stored_bitmap
{
19 unsigned char sha1
[20];
20 struct ewah_bitmap
*root
;
21 struct stored_bitmap
*xor;
26 * The currently active bitmap index. By design, repositories only have
27 * a single bitmap index available (the index for the biggest packfile in
28 * the repository), since bitmap indexes need full closure.
30 * If there is more than one bitmap index available (e.g. because of alternates),
31 * the active bitmap index is the largest one.
33 static struct bitmap_index
{
34 /* Packfile to which this bitmap index belongs to */
35 struct packed_git
*pack
;
38 * Mark the first `reuse_objects` in the packfile as reused:
39 * they will be sent as-is without using them for repacking
42 uint32_t reuse_objects
;
44 /* mmapped buffer of the whole bitmap index */
46 size_t map_size
; /* size of the mmaped buffer */
47 size_t map_pos
; /* current position when loading the index */
52 * Each bitmap marks which objects in the packfile are of the given
53 * type. This provides type information when yielding the objects from
54 * the packfile during a walk, which allows for better delta bases.
56 struct ewah_bitmap
*commits
;
57 struct ewah_bitmap
*trees
;
58 struct ewah_bitmap
*blobs
;
59 struct ewah_bitmap
*tags
;
61 /* Map from SHA1 -> `stored_bitmap` for all the bitmapped commits */
64 /* Number of bitmapped commits */
67 /* Name-hash cache (or NULL if not present). */
73 * When trying to perform bitmap operations with objects that are not
74 * packed in `pack`, these objects are added to this "fake index" and
75 * are assumed to appear at the end of the packfile for all operations
78 struct object
**objects
;
80 uint32_t count
, alloc
;
81 khash_sha1_pos
*positions
;
84 /* Bitmap result of the last performed walk */
85 struct bitmap
*result
;
87 /* Version of the bitmap index */
94 static struct ewah_bitmap
*lookup_stored_bitmap(struct stored_bitmap
*st
)
96 struct ewah_bitmap
*parent
;
97 struct ewah_bitmap
*composed
;
102 composed
= ewah_pool_new();
103 parent
= lookup_stored_bitmap(st
->xor);
104 ewah_xor(st
->root
, parent
, composed
);
106 ewah_pool_free(st
->root
);
114 * Read a bitmap from the current read position on the mmaped
115 * index, and increase the read position accordingly
117 static struct ewah_bitmap
*read_bitmap_1(struct bitmap_index
*index
)
119 struct ewah_bitmap
*b
= ewah_pool_new();
121 int bitmap_size
= ewah_read_mmap(b
,
122 index
->map
+ index
->map_pos
,
123 index
->map_size
- index
->map_pos
);
125 if (bitmap_size
< 0) {
126 error("Failed to load bitmap index (corrupted?)");
131 index
->map_pos
+= bitmap_size
;
135 static int load_bitmap_header(struct bitmap_index
*index
)
137 struct bitmap_disk_header
*header
= (void *)index
->map
;
139 if (index
->map_size
< sizeof(*header
) + 20)
140 return error("Corrupted bitmap index (missing header data)");
142 if (memcmp(header
->magic
, BITMAP_IDX_SIGNATURE
, sizeof(BITMAP_IDX_SIGNATURE
)) != 0)
143 return error("Corrupted bitmap index file (wrong header)");
145 index
->version
= ntohs(header
->version
);
146 if (index
->version
!= 1)
147 return error("Unsupported version for bitmap index file (%d)", index
->version
);
149 /* Parse known bitmap format options */
151 uint32_t flags
= ntohs(header
->options
);
153 if ((flags
& BITMAP_OPT_FULL_DAG
) == 0)
154 return error("Unsupported options for bitmap index file "
155 "(Git requires BITMAP_OPT_FULL_DAG)");
157 if (flags
& BITMAP_OPT_HASH_CACHE
) {
158 unsigned char *end
= index
->map
+ index
->map_size
- 20;
159 index
->hashes
= ((uint32_t *)end
) - index
->pack
->num_objects
;
163 index
->entry_count
= ntohl(header
->entry_count
);
164 index
->map_pos
+= sizeof(*header
);
168 static struct stored_bitmap
*store_bitmap(struct bitmap_index
*index
,
169 struct ewah_bitmap
*root
,
170 const unsigned char *sha1
,
171 struct stored_bitmap
*xor_with
,
174 struct stored_bitmap
*stored
;
178 stored
= xmalloc(sizeof(struct stored_bitmap
));
180 stored
->xor = xor_with
;
181 stored
->flags
= flags
;
182 hashcpy(stored
->sha1
, sha1
);
184 hash_pos
= kh_put_sha1(index
->bitmaps
, stored
->sha1
, &ret
);
186 /* a 0 return code means the insertion succeeded with no changes,
187 * because the SHA1 already existed on the map. this is bad, there
188 * shouldn't be duplicated commits in the index */
190 error("Duplicate entry in bitmap index: %s", sha1_to_hex(sha1
));
194 kh_value(index
->bitmaps
, hash_pos
) = stored
;
198 static inline uint32_t read_be32(const unsigned char *buffer
, size_t *pos
)
200 uint32_t result
= get_be32(buffer
+ *pos
);
201 (*pos
) += sizeof(result
);
205 static inline uint8_t read_u8(const unsigned char *buffer
, size_t *pos
)
207 return buffer
[(*pos
)++];
210 #define MAX_XOR_OFFSET 160
212 static int load_bitmap_entries_v1(struct bitmap_index
*index
)
215 struct stored_bitmap
*recent_bitmaps
[MAX_XOR_OFFSET
] = { NULL
};
217 for (i
= 0; i
< index
->entry_count
; ++i
) {
218 int xor_offset
, flags
;
219 struct ewah_bitmap
*bitmap
= NULL
;
220 struct stored_bitmap
*xor_bitmap
= NULL
;
221 uint32_t commit_idx_pos
;
222 const unsigned char *sha1
;
224 commit_idx_pos
= read_be32(index
->map
, &index
->map_pos
);
225 xor_offset
= read_u8(index
->map
, &index
->map_pos
);
226 flags
= read_u8(index
->map
, &index
->map_pos
);
228 sha1
= nth_packed_object_sha1(index
->pack
, commit_idx_pos
);
230 bitmap
= read_bitmap_1(index
);
234 if (xor_offset
> MAX_XOR_OFFSET
|| xor_offset
> i
)
235 return error("Corrupted bitmap pack index");
237 if (xor_offset
> 0) {
238 xor_bitmap
= recent_bitmaps
[(i
- xor_offset
) % MAX_XOR_OFFSET
];
240 if (xor_bitmap
== NULL
)
241 return error("Invalid XOR offset in bitmap pack index");
244 recent_bitmaps
[i
% MAX_XOR_OFFSET
] = store_bitmap(
245 index
, bitmap
, sha1
, xor_bitmap
, flags
);
251 static char *pack_bitmap_filename(struct packed_git
*p
)
255 if (!strip_suffix(p
->pack_name
, ".pack", &len
))
256 die("BUG: pack_name does not end in .pack");
257 return xstrfmt("%.*s.bitmap", (int)len
, p
->pack_name
);
260 static int open_pack_bitmap_1(struct packed_git
*packfile
)
266 if (open_pack_index(packfile
))
269 idx_name
= pack_bitmap_filename(packfile
);
270 fd
= git_open(idx_name
);
276 if (fstat(fd
, &st
)) {
281 if (bitmap_git
.pack
) {
282 warning("ignoring extra bitmap file: %s", packfile
->pack_name
);
287 bitmap_git
.pack
= packfile
;
288 bitmap_git
.map_size
= xsize_t(st
.st_size
);
289 bitmap_git
.map
= xmmap(NULL
, bitmap_git
.map_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
290 bitmap_git
.map_pos
= 0;
293 if (load_bitmap_header(&bitmap_git
) < 0) {
294 munmap(bitmap_git
.map
, bitmap_git
.map_size
);
295 bitmap_git
.map
= NULL
;
296 bitmap_git
.map_size
= 0;
303 static int load_pack_bitmap(void)
305 assert(bitmap_git
.map
&& !bitmap_git
.loaded
);
307 bitmap_git
.bitmaps
= kh_init_sha1();
308 bitmap_git
.ext_index
.positions
= kh_init_sha1_pos();
309 load_pack_revindex(bitmap_git
.pack
);
311 if (!(bitmap_git
.commits
= read_bitmap_1(&bitmap_git
)) ||
312 !(bitmap_git
.trees
= read_bitmap_1(&bitmap_git
)) ||
313 !(bitmap_git
.blobs
= read_bitmap_1(&bitmap_git
)) ||
314 !(bitmap_git
.tags
= read_bitmap_1(&bitmap_git
)))
317 if (load_bitmap_entries_v1(&bitmap_git
) < 0)
320 bitmap_git
.loaded
= 1;
324 munmap(bitmap_git
.map
, bitmap_git
.map_size
);
325 bitmap_git
.map
= NULL
;
326 bitmap_git
.map_size
= 0;
330 static int open_pack_bitmap(void)
332 struct packed_git
*p
;
335 assert(!bitmap_git
.map
&& !bitmap_git
.loaded
);
337 prepare_packed_git();
338 for (p
= packed_git
; p
; p
= p
->next
) {
339 if (open_pack_bitmap_1(p
) == 0)
346 int prepare_bitmap_git(void)
348 if (bitmap_git
.loaded
)
351 if (!open_pack_bitmap())
352 return load_pack_bitmap();
357 struct include_data
{
362 static inline int bitmap_position_extended(const unsigned char *sha1
)
364 khash_sha1_pos
*positions
= bitmap_git
.ext_index
.positions
;
365 khiter_t pos
= kh_get_sha1_pos(positions
, sha1
);
367 if (pos
< kh_end(positions
)) {
368 int bitmap_pos
= kh_value(positions
, pos
);
369 return bitmap_pos
+ bitmap_git
.pack
->num_objects
;
375 static inline int bitmap_position_packfile(const unsigned char *sha1
)
377 off_t offset
= find_pack_entry_one(sha1
, bitmap_git
.pack
);
381 return find_revindex_position(bitmap_git
.pack
, offset
);
384 static int bitmap_position(const unsigned char *sha1
)
386 int pos
= bitmap_position_packfile(sha1
);
387 return (pos
>= 0) ? pos
: bitmap_position_extended(sha1
);
390 static int ext_index_add_object(struct object
*object
, const char *name
)
392 struct eindex
*eindex
= &bitmap_git
.ext_index
;
398 hash_pos
= kh_put_sha1_pos(eindex
->positions
, object
->oid
.hash
, &hash_ret
);
400 if (eindex
->count
>= eindex
->alloc
) {
401 eindex
->alloc
= (eindex
->alloc
+ 16) * 3 / 2;
402 REALLOC_ARRAY(eindex
->objects
, eindex
->alloc
);
403 REALLOC_ARRAY(eindex
->hashes
, eindex
->alloc
);
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
;
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 char *name
, void *data
)
420 struct bitmap
*base
= data
;
423 bitmap_pos
= bitmap_position(object
->oid
.hash
);
426 bitmap_pos
= ext_index_add_object(object
, name
);
428 bitmap_set(base
, bitmap_pos
);
431 static void show_commit(struct commit
*commit
, void *data
)
435 static int add_to_include_set(struct include_data
*data
,
436 const unsigned char *sha1
,
441 if (data
->seen
&& bitmap_get(data
->seen
, bitmap_pos
))
444 if (bitmap_get(data
->base
, bitmap_pos
))
447 hash_pos
= kh_get_sha1(bitmap_git
.bitmaps
, sha1
);
448 if (hash_pos
< kh_end(bitmap_git
.bitmaps
)) {
449 struct stored_bitmap
*st
= kh_value(bitmap_git
.bitmaps
, hash_pos
);
450 bitmap_or_ewah(data
->base
, lookup_stored_bitmap(st
));
454 bitmap_set(data
->base
, bitmap_pos
);
458 static int should_include(struct commit
*commit
, void *_data
)
460 struct include_data
*data
= _data
;
463 bitmap_pos
= bitmap_position(commit
->object
.oid
.hash
);
465 bitmap_pos
= ext_index_add_object((struct object
*)commit
, NULL
);
467 if (!add_to_include_set(data
, commit
->object
.oid
.hash
, bitmap_pos
)) {
468 struct commit_list
*parent
= commit
->parents
;
471 parent
->item
->object
.flags
|= SEEN
;
472 parent
= parent
->next
;
481 static struct bitmap
*find_objects(struct rev_info
*revs
,
482 struct object_list
*roots
,
485 struct bitmap
*base
= NULL
;
488 struct object_list
*not_mapped
= NULL
;
491 * Go through all the roots for the walk. The ones that have bitmaps
492 * on the bitmap index will be `or`ed together to form an initial
493 * global reachability analysis.
495 * The ones without bitmaps in the index will be stored in the
496 * `not_mapped_list` for further processing.
499 struct object
*object
= roots
->item
;
502 if (object
->type
== OBJ_COMMIT
) {
503 khiter_t pos
= kh_get_sha1(bitmap_git
.bitmaps
, object
->oid
.hash
);
505 if (pos
< kh_end(bitmap_git
.bitmaps
)) {
506 struct stored_bitmap
*st
= kh_value(bitmap_git
.bitmaps
, pos
);
507 struct ewah_bitmap
*or_with
= lookup_stored_bitmap(st
);
510 base
= ewah_to_bitmap(or_with
);
512 bitmap_or_ewah(base
, or_with
);
514 object
->flags
|= SEEN
;
519 object_list_insert(object
, ¬_mapped
);
523 * Best case scenario: We found bitmaps for all the roots,
524 * so the resulting `or` bitmap has the full reachability analysis
526 if (not_mapped
== NULL
)
532 * Let's iterate through all the roots that don't have bitmaps to
533 * check if we can determine them to be reachable from the existing
536 * If we cannot find them in the existing global bitmap, we'll need
537 * to push them to an actual walk and run it until we can confirm
541 struct object
*object
= roots
->item
;
545 pos
= bitmap_position(object
->oid
.hash
);
547 if (pos
< 0 || base
== NULL
|| !bitmap_get(base
, pos
)) {
548 object
->flags
&= ~UNINTERESTING
;
549 add_pending_object(revs
, object
, "");
552 object
->flags
|= SEEN
;
557 struct include_data incdata
;
565 revs
->include_check
= should_include
;
566 revs
->include_check_data
= &incdata
;
568 if (prepare_revision_walk(revs
))
569 die("revision walk setup failed");
571 traverse_commit_list(revs
, show_commit
, show_object
, base
);
577 static void show_extended_objects(struct bitmap
*objects
,
578 show_reachable_fn show_reach
)
580 struct eindex
*eindex
= &bitmap_git
.ext_index
;
583 for (i
= 0; i
< eindex
->count
; ++i
) {
586 if (!bitmap_get(objects
, bitmap_git
.pack
->num_objects
+ i
))
589 obj
= eindex
->objects
[i
];
590 show_reach(&obj
->oid
, obj
->type
, 0, eindex
->hashes
[i
], NULL
, 0);
594 static void show_objects_for_type(
595 struct bitmap
*objects
,
596 struct ewah_bitmap
*type_filter
,
597 enum object_type object_type
,
598 show_reachable_fn show_reach
)
600 size_t pos
= 0, i
= 0;
603 struct ewah_iterator it
;
606 if (bitmap_git
.reuse_objects
== bitmap_git
.pack
->num_objects
)
609 ewah_iterator_init(&it
, type_filter
);
611 while (i
< objects
->word_alloc
&& ewah_iterator_next(&filter
, &it
)) {
612 eword_t word
= objects
->words
[i
] & filter
;
614 for (offset
= 0; offset
< BITS_IN_EWORD
; ++offset
) {
615 struct object_id oid
;
616 struct revindex_entry
*entry
;
619 if ((word
>> offset
) == 0)
622 offset
+= ewah_bit_ctz64(word
>> offset
);
624 if (pos
+ offset
< bitmap_git
.reuse_objects
)
627 entry
= &bitmap_git
.pack
->revindex
[pos
+ offset
];
628 nth_packed_object_oid(&oid
, bitmap_git
.pack
, entry
->nr
);
630 if (bitmap_git
.hashes
)
631 hash
= get_be32(bitmap_git
.hashes
+ entry
->nr
);
633 show_reach(&oid
, object_type
, 0, hash
, bitmap_git
.pack
, entry
->offset
);
636 pos
+= BITS_IN_EWORD
;
641 static int in_bitmapped_pack(struct object_list
*roots
)
644 struct object
*object
= roots
->item
;
647 if (find_pack_entry_one(object
->oid
.hash
, bitmap_git
.pack
) > 0)
654 int prepare_bitmap_walk(struct rev_info
*revs
)
658 struct object_list
*wants
= NULL
;
659 struct object_list
*haves
= NULL
;
661 struct bitmap
*wants_bitmap
= NULL
;
662 struct bitmap
*haves_bitmap
= NULL
;
664 if (!bitmap_git
.loaded
) {
665 /* try to open a bitmapped pack, but don't parse it yet
666 * because we may not need to use it */
667 if (open_pack_bitmap() < 0)
671 for (i
= 0; i
< revs
->pending
.nr
; ++i
) {
672 struct object
*object
= revs
->pending
.objects
[i
].item
;
674 if (object
->type
== OBJ_NONE
)
675 parse_object_or_die(&object
->oid
, NULL
);
677 while (object
->type
== OBJ_TAG
) {
678 struct tag
*tag
= (struct tag
*) object
;
680 if (object
->flags
& UNINTERESTING
)
681 object_list_insert(object
, &haves
);
683 object_list_insert(object
, &wants
);
687 object
= parse_object_or_die(&tag
->tagged
->oid
, NULL
);
690 if (object
->flags
& UNINTERESTING
)
691 object_list_insert(object
, &haves
);
693 object_list_insert(object
, &wants
);
697 * if we have a HAVES list, but none of those haves is contained
698 * in the packfile that has a bitmap, we don't have anything to
701 if (haves
&& !in_bitmapped_pack(haves
))
704 /* if we don't want anything, we're done here */
709 * now we're going to use bitmaps, so load the actual bitmap entries
710 * from disk. this is the point of no return; after this the rev_list
711 * becomes invalidated and we must perform the revwalk through bitmaps
713 if (!bitmap_git
.loaded
&& load_pack_bitmap() < 0)
716 object_array_clear(&revs
->pending
);
719 revs
->ignore_missing_links
= 1;
720 haves_bitmap
= find_objects(revs
, haves
, NULL
);
721 reset_revision_walk();
722 revs
->ignore_missing_links
= 0;
724 if (haves_bitmap
== NULL
)
725 die("BUG: failed to perform bitmap walk");
728 wants_bitmap
= find_objects(revs
, wants
, haves_bitmap
);
731 die("BUG: failed to perform bitmap walk");
734 bitmap_and_not(wants_bitmap
, haves_bitmap
);
736 bitmap_git
.result
= wants_bitmap
;
738 bitmap_free(haves_bitmap
);
742 int reuse_partial_packfile_from_bitmap(struct packed_git
**packfile
,
747 * Reuse the packfile content if we need more than
750 static const double REUSE_PERCENT
= 0.9;
752 struct bitmap
*result
= bitmap_git
.result
;
753 uint32_t reuse_threshold
;
754 uint32_t i
, reuse_objects
= 0;
758 for (i
= 0; i
< result
->word_alloc
; ++i
) {
759 if (result
->words
[i
] != (eword_t
)~0) {
760 reuse_objects
+= ewah_bit_ctz64(~result
->words
[i
]);
764 reuse_objects
+= BITS_IN_EWORD
;
767 #ifdef GIT_BITMAP_DEBUG
769 const unsigned char *sha1
;
770 struct revindex_entry
*entry
;
772 entry
= &bitmap_git
.reverse_index
->revindex
[reuse_objects
];
773 sha1
= nth_packed_object_sha1(bitmap_git
.pack
, entry
->nr
);
775 fprintf(stderr
, "Failed to reuse at %d (%016llx)\n",
776 reuse_objects
, result
->words
[i
]);
777 fprintf(stderr
, " %s\n", sha1_to_hex(sha1
));
784 if (reuse_objects
>= bitmap_git
.pack
->num_objects
) {
785 bitmap_git
.reuse_objects
= *entries
= bitmap_git
.pack
->num_objects
;
786 *up_to
= -1; /* reuse the full pack */
787 *packfile
= bitmap_git
.pack
;
791 reuse_threshold
= bitmap_popcount(bitmap_git
.result
) * REUSE_PERCENT
;
793 if (reuse_objects
< reuse_threshold
)
796 bitmap_git
.reuse_objects
= *entries
= reuse_objects
;
797 *up_to
= bitmap_git
.pack
->revindex
[reuse_objects
].offset
;
798 *packfile
= bitmap_git
.pack
;
803 void traverse_bitmap_commit_list(show_reachable_fn show_reachable
)
805 assert(bitmap_git
.result
);
807 show_objects_for_type(bitmap_git
.result
, bitmap_git
.commits
,
808 OBJ_COMMIT
, show_reachable
);
809 show_objects_for_type(bitmap_git
.result
, bitmap_git
.trees
,
810 OBJ_TREE
, show_reachable
);
811 show_objects_for_type(bitmap_git
.result
, bitmap_git
.blobs
,
812 OBJ_BLOB
, show_reachable
);
813 show_objects_for_type(bitmap_git
.result
, bitmap_git
.tags
,
814 OBJ_TAG
, show_reachable
);
816 show_extended_objects(bitmap_git
.result
, show_reachable
);
818 bitmap_free(bitmap_git
.result
);
819 bitmap_git
.result
= NULL
;
822 static uint32_t count_object_type(struct bitmap
*objects
,
823 enum object_type type
)
825 struct eindex
*eindex
= &bitmap_git
.ext_index
;
827 uint32_t i
= 0, count
= 0;
828 struct ewah_iterator it
;
833 ewah_iterator_init(&it
, bitmap_git
.commits
);
837 ewah_iterator_init(&it
, bitmap_git
.trees
);
841 ewah_iterator_init(&it
, bitmap_git
.blobs
);
845 ewah_iterator_init(&it
, bitmap_git
.tags
);
852 while (i
< objects
->word_alloc
&& ewah_iterator_next(&filter
, &it
)) {
853 eword_t word
= objects
->words
[i
++] & filter
;
854 count
+= ewah_bit_popcount64(word
);
857 for (i
= 0; i
< eindex
->count
; ++i
) {
858 if (eindex
->objects
[i
]->type
== type
&&
859 bitmap_get(objects
, bitmap_git
.pack
->num_objects
+ i
))
866 void count_bitmap_commit_list(uint32_t *commits
, uint32_t *trees
,
867 uint32_t *blobs
, uint32_t *tags
)
869 assert(bitmap_git
.result
);
872 *commits
= count_object_type(bitmap_git
.result
, OBJ_COMMIT
);
875 *trees
= count_object_type(bitmap_git
.result
, OBJ_TREE
);
878 *blobs
= count_object_type(bitmap_git
.result
, OBJ_BLOB
);
881 *tags
= count_object_type(bitmap_git
.result
, OBJ_TAG
);
884 struct bitmap_test_data
{
886 struct progress
*prg
;
890 static void test_show_object(struct object
*object
, const char *name
,
893 struct bitmap_test_data
*tdata
= data
;
896 bitmap_pos
= bitmap_position(object
->oid
.hash
);
898 die("Object not in bitmap: %s\n", oid_to_hex(&object
->oid
));
900 bitmap_set(tdata
->base
, bitmap_pos
);
901 display_progress(tdata
->prg
, ++tdata
->seen
);
904 static void test_show_commit(struct commit
*commit
, void *data
)
906 struct bitmap_test_data
*tdata
= data
;
909 bitmap_pos
= bitmap_position(commit
->object
.oid
.hash
);
911 die("Object not in bitmap: %s\n", oid_to_hex(&commit
->object
.oid
));
913 bitmap_set(tdata
->base
, bitmap_pos
);
914 display_progress(tdata
->prg
, ++tdata
->seen
);
917 void test_bitmap_walk(struct rev_info
*revs
)
920 struct bitmap
*result
= NULL
;
922 size_t result_popcnt
;
923 struct bitmap_test_data tdata
;
925 if (prepare_bitmap_git())
926 die("failed to load bitmap indexes");
928 if (revs
->pending
.nr
!= 1)
929 die("you must specify exactly one commit to test");
931 fprintf(stderr
, "Bitmap v%d test (%d entries loaded)\n",
932 bitmap_git
.version
, bitmap_git
.entry_count
);
934 root
= revs
->pending
.objects
[0].item
;
935 pos
= kh_get_sha1(bitmap_git
.bitmaps
, root
->oid
.hash
);
937 if (pos
< kh_end(bitmap_git
.bitmaps
)) {
938 struct stored_bitmap
*st
= kh_value(bitmap_git
.bitmaps
, pos
);
939 struct ewah_bitmap
*bm
= lookup_stored_bitmap(st
);
941 fprintf(stderr
, "Found bitmap for %s. %d bits / %08x checksum\n",
942 oid_to_hex(&root
->oid
), (int)bm
->bit_size
, ewah_checksum(bm
));
944 result
= ewah_to_bitmap(bm
);
948 die("Commit %s doesn't have an indexed bitmap", oid_to_hex(&root
->oid
));
950 revs
->tag_objects
= 1;
951 revs
->tree_objects
= 1;
952 revs
->blob_objects
= 1;
954 result_popcnt
= bitmap_popcount(result
);
956 if (prepare_revision_walk(revs
))
957 die("revision walk setup failed");
959 tdata
.base
= bitmap_new();
960 tdata
.prg
= start_progress("Verifying bitmap entries", result_popcnt
);
963 traverse_commit_list(revs
, &test_show_commit
, &test_show_object
, &tdata
);
965 stop_progress(&tdata
.prg
);
967 if (bitmap_equals(result
, tdata
.base
))
968 fprintf(stderr
, "OK!\n");
970 fprintf(stderr
, "Mismatch!\n");
975 static int rebuild_bitmap(uint32_t *reposition
,
976 struct ewah_bitmap
*source
,
980 struct ewah_iterator it
;
983 ewah_iterator_init(&it
, source
);
985 while (ewah_iterator_next(&word
, &it
)) {
986 uint32_t offset
, bit_pos
;
988 for (offset
= 0; offset
< BITS_IN_EWORD
; ++offset
) {
989 if ((word
>> offset
) == 0)
992 offset
+= ewah_bit_ctz64(word
>> offset
);
994 bit_pos
= reposition
[pos
+ offset
];
996 bitmap_set(dest
, bit_pos
- 1);
997 else /* can't reuse, we don't have the object */
1001 pos
+= BITS_IN_EWORD
;
1006 int rebuild_existing_bitmaps(struct packing_data
*mapping
,
1007 khash_sha1
*reused_bitmaps
,
1010 uint32_t i
, num_objects
;
1011 uint32_t *reposition
;
1012 struct bitmap
*rebuild
;
1013 struct stored_bitmap
*stored
;
1014 struct progress
*progress
= NULL
;
1019 if (prepare_bitmap_git() < 0)
1022 num_objects
= bitmap_git
.pack
->num_objects
;
1023 reposition
= xcalloc(num_objects
, sizeof(uint32_t));
1025 for (i
= 0; i
< num_objects
; ++i
) {
1026 const unsigned char *sha1
;
1027 struct revindex_entry
*entry
;
1028 struct object_entry
*oe
;
1030 entry
= &bitmap_git
.pack
->revindex
[i
];
1031 sha1
= nth_packed_object_sha1(bitmap_git
.pack
, entry
->nr
);
1032 oe
= packlist_find(mapping
, sha1
, NULL
);
1035 reposition
[i
] = oe
->in_pack_pos
+ 1;
1038 rebuild
= bitmap_new();
1042 progress
= start_progress("Reusing bitmaps", 0);
1044 kh_foreach_value(bitmap_git
.bitmaps
, stored
, {
1045 if (stored
->flags
& BITMAP_FLAG_REUSE
) {
1046 if (!rebuild_bitmap(reposition
,
1047 lookup_stored_bitmap(stored
),
1049 hash_pos
= kh_put_sha1(reused_bitmaps
,
1052 kh_value(reused_bitmaps
, hash_pos
) =
1053 bitmap_to_ewah(rebuild
);
1055 bitmap_reset(rebuild
);
1056 display_progress(progress
, ++i
);
1060 stop_progress(&progress
);
1063 bitmap_free(rebuild
);