]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - pack-bitmap.h
The sixth batch
[thirdparty/git.git] / pack-bitmap.h
... / ...
CommitLineData
1#ifndef PACK_BITMAP_H
2#define PACK_BITMAP_H
3
4#include "ewah/ewok.h"
5#include "khash.h"
6#include "pack.h"
7#include "pack-objects.h"
8#include "string-list.h"
9
10struct commit;
11struct repository;
12struct rev_info;
13
14static const char BITMAP_IDX_SIGNATURE[] = {'B', 'I', 'T', 'M'};
15
16struct bitmap_disk_header {
17 char magic[ARRAY_SIZE(BITMAP_IDX_SIGNATURE)];
18 uint16_t version;
19 uint16_t options;
20 uint32_t entry_count;
21 unsigned char checksum[GIT_MAX_RAWSZ];
22};
23
24#define BITMAP_PSEUDO_MERGE (1u<<21)
25#define NEEDS_BITMAP (1u<<22)
26
27/*
28 * The width in bytes of a single triplet in the lookup table
29 * extension:
30 * (commit_pos, offset, xor_row)
31 *
32 * whose fields ar 32-, 64-, 32- bits wide, respectively.
33 */
34#define BITMAP_LOOKUP_TABLE_TRIPLET_WIDTH (16)
35
36enum pack_bitmap_opts {
37 BITMAP_OPT_FULL_DAG = 0x1,
38 BITMAP_OPT_HASH_CACHE = 0x4,
39 BITMAP_OPT_LOOKUP_TABLE = 0x10,
40 BITMAP_OPT_PSEUDO_MERGES = 0x20,
41};
42
43enum pack_bitmap_flags {
44 BITMAP_FLAG_REUSE = 0x1
45};
46
47typedef int (*show_reachable_fn)(
48 const struct object_id *oid,
49 enum object_type type,
50 int flags,
51 uint32_t hash,
52 struct packed_git *found_pack,
53 off_t found_offset,
54 void *payload);
55
56struct bitmap_index;
57
58struct bitmapped_pack {
59 struct packed_git *p;
60
61 uint32_t bitmap_pos;
62 uint32_t bitmap_nr;
63
64 struct multi_pack_index *from_midx; /* MIDX only */
65 uint32_t pack_int_id; /* MIDX only */
66};
67
68struct bitmap_index *prepare_bitmap_git(struct repository *r);
69struct bitmap_index *prepare_midx_bitmap_git(struct multi_pack_index *midx);
70
71/*
72 * Given a bitmap index, determine whether it contains the pack either directly
73 * or via the multi-pack-index.
74 */
75int bitmap_index_contains_pack(struct bitmap_index *bitmap, struct packed_git *pack);
76
77void count_bitmap_commit_list(struct bitmap_index *, uint32_t *commits,
78 uint32_t *trees, uint32_t *blobs, uint32_t *tags);
79void traverse_bitmap_commit_list(struct bitmap_index *,
80 struct rev_info *revs,
81 show_reachable_fn show_reachable);
82void test_bitmap_walk(struct rev_info *revs);
83int test_bitmap_commits(struct repository *r);
84int test_bitmap_hashes(struct repository *r);
85int test_bitmap_pseudo_merges(struct repository *r);
86int test_bitmap_pseudo_merge_commits(struct repository *r, uint32_t n);
87int test_bitmap_pseudo_merge_objects(struct repository *r, uint32_t n);
88
89struct list_objects_filter_options;
90
91/*
92 * Filter bitmapped objects and iterate through all resulting objects,
93 * executing `show_reach` for each of them. Returns `-1` in case the filter is
94 * not supported, `0` otherwise.
95 */
96int for_each_bitmapped_object(struct bitmap_index *bitmap_git,
97 struct list_objects_filter_options *filter,
98 show_reachable_fn show_reach,
99 void *payload);
100
101#define GIT_TEST_PACK_USE_BITMAP_BOUNDARY_TRAVERSAL \
102 "GIT_TEST_PACK_USE_BITMAP_BOUNDARY_TRAVERSAL"
103
104struct bitmap_index *prepare_bitmap_walk(struct rev_info *revs,
105 int filter_provided_objects);
106void reuse_partial_packfile_from_bitmap(struct bitmap_index *bitmap_git,
107 struct bitmapped_pack **packs_out,
108 size_t *packs_nr_out,
109 struct bitmap **reuse_out,
110 int multi_pack_reuse);
111int rebuild_existing_bitmaps(struct bitmap_index *, struct packing_data *mapping,
112 kh_oid_map_t *reused_bitmaps, int show_progress);
113void free_bitmap_index(struct bitmap_index *);
114int bitmap_walk_contains(struct bitmap_index *,
115 struct bitmap *bitmap, const struct object_id *oid);
116
117/*
118 * After a traversal has been performed by prepare_bitmap_walk(), this can be
119 * queried to see if a particular object was reachable from any of the
120 * objects flagged as UNINTERESTING.
121 */
122int bitmap_has_oid_in_uninteresting(struct bitmap_index *, const struct object_id *oid);
123
124off_t get_disk_usage_from_bitmap(struct bitmap_index *, struct rev_info *);
125
126struct bitmap_writer {
127 struct repository *repo;
128 struct ewah_bitmap *commits;
129 struct ewah_bitmap *trees;
130 struct ewah_bitmap *blobs;
131 struct ewah_bitmap *tags;
132
133 kh_oid_map_t *bitmaps;
134 struct packing_data *to_pack;
135 struct multi_pack_index *midx; /* if appending to a MIDX chain */
136
137 struct bitmapped_commit *selected;
138 unsigned int selected_nr, selected_alloc;
139
140 struct string_list pseudo_merge_groups;
141 kh_oid_map_t *pseudo_merge_commits; /* oid -> pseudo merge(s) */
142 uint32_t pseudo_merges_nr;
143
144 struct progress *progress;
145 int show_progress;
146 unsigned char pack_checksum[GIT_MAX_RAWSZ];
147};
148
149void bitmap_writer_init(struct bitmap_writer *writer, struct repository *r,
150 struct packing_data *pdata,
151 struct multi_pack_index *midx);
152void bitmap_writer_show_progress(struct bitmap_writer *writer, int show);
153void bitmap_writer_set_checksum(struct bitmap_writer *writer,
154 const unsigned char *sha1);
155void bitmap_writer_build_type_index(struct bitmap_writer *writer,
156 struct pack_idx_entry **index);
157int bitmap_writer_has_bitmapped_object_id(struct bitmap_writer *writer,
158 const struct object_id *oid);
159void bitmap_writer_push_commit(struct bitmap_writer *writer,
160 struct commit *commit, unsigned pseudo_merge);
161uint32_t *create_bitmap_mapping(struct bitmap_index *bitmap_git,
162 struct packing_data *mapping);
163int rebuild_bitmap(const uint32_t *reposition,
164 struct ewah_bitmap *source,
165 struct bitmap *dest);
166struct ewah_bitmap *bitmap_for_commit(struct bitmap_index *bitmap_git,
167 struct commit *commit);
168struct ewah_bitmap *pseudo_merge_bitmap_for_commit(struct bitmap_index *bitmap_git,
169 struct commit *commit);
170void bitmap_writer_select_commits(struct bitmap_writer *writer,
171 struct commit **indexed_commits,
172 unsigned int indexed_commits_nr);
173int bitmap_writer_build(struct bitmap_writer *writer);
174void bitmap_writer_finish(struct bitmap_writer *writer,
175 struct pack_idx_entry **index,
176 const char *filename,
177 uint16_t options);
178void bitmap_writer_free(struct bitmap_writer *writer);
179char *midx_bitmap_filename(struct multi_pack_index *midx);
180char *pack_bitmap_filename(struct packed_git *p);
181
182int bitmap_is_midx(struct bitmap_index *bitmap_git);
183
184const struct string_list *bitmap_preferred_tips(struct repository *r);
185int bitmap_is_preferred_refname(struct repository *r, const char *refname);
186
187int verify_bitmap_files(struct repository *r);
188
189struct ewah_bitmap *read_bitmap(const unsigned char *map,
190 size_t map_size, size_t *map_pos);
191#endif