When we do a bitmap walk, we save the result, which represents (WANTs & ~HAVEs); i.e., every object we care about visiting in our walk. However, we throw away the haves bitmap, which can sometimes be useful, too. Save it and provide an access function so code which has performed a walk can query it. Signed-off-by: Jeff King <peff@xxxxxxxx> --- pack-bitmap.c | 21 ++++++++++++++++++++- pack-bitmap.h | 2 ++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/pack-bitmap.c b/pack-bitmap.c index a31e529..f7d417b 100644 --- a/pack-bitmap.c +++ b/pack-bitmap.c @@ -86,6 +86,9 @@ static struct bitmap_index { /* Bitmap result of the last performed walk */ struct bitmap *result; + /* "have" bitmap from the last performed walk */ + struct bitmap *haves; + /* Version of the bitmap index */ unsigned int version; @@ -769,8 +772,8 @@ int prepare_bitmap_walk(struct rev_info *revs) bitmap_and_not(wants_bitmap, haves_bitmap); bitmap_git.result = wants_bitmap; + bitmap_git.haves = haves_bitmap; - bitmap_free(haves_bitmap); return 0; } @@ -1097,3 +1100,19 @@ int rebuild_existing_bitmaps(struct packing_data *mapping, bitmap_free(rebuild); return 0; } + +int bitmap_have(const unsigned char *sha1) +{ + int pos; + + if (!bitmap_git.loaded) + return 0; /* no bitmap loaded */ + if (!bitmap_git.haves) + return 0; /* walk had no "haves" */ + + pos = bitmap_position_packfile(sha1); + if (pos < 0) + return 0; + + return bitmap_get(bitmap_git.haves, pos); +} diff --git a/pack-bitmap.h b/pack-bitmap.h index 8b7f4e9..a63ee6b 100644 --- a/pack-bitmap.h +++ b/pack-bitmap.h @@ -49,6 +49,8 @@ int prepare_bitmap_walk(struct rev_info *revs); int reuse_partial_packfile_from_bitmap(struct packed_git **packfile, uint32_t *entries, off_t *up_to); int rebuild_existing_bitmaps(struct packing_data *mapping, khash_sha1 *reused_bitmaps, int show_progress); +int bitmap_have(const unsigned char *sha1); + void bitmap_writer_show_progress(int show); void bitmap_writer_set_checksum(unsigned char *sha1); void bitmap_writer_build_type_index(struct pack_idx_entry **index, uint32_t index_nr); -- 1.9.1.601.g7ec968e -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html