]>
git.ipfire.org Git - thirdparty/git.git/blob - midx.h
4 #include "repository.h"
5 #include "string-list.h"
11 #define GIT_TEST_MULTI_PACK_INDEX "GIT_TEST_MULTI_PACK_INDEX"
12 #define GIT_TEST_MULTI_PACK_INDEX_WRITE_BITMAP \
13 "GIT_TEST_MULTI_PACK_INDEX_WRITE_BITMAP"
15 struct multi_pack_index
{
16 struct multi_pack_index
*next
;
18 const unsigned char *data
;
21 const uint32_t *revindex_data
;
22 const uint32_t *revindex_map
;
26 unsigned char version
;
27 unsigned char hash_len
;
28 unsigned char num_chunks
;
34 const unsigned char *chunk_pack_names
;
35 const uint32_t *chunk_oid_fanout
;
36 const unsigned char *chunk_oid_lookup
;
37 const unsigned char *chunk_object_offsets
;
38 const unsigned char *chunk_large_offsets
;
39 const unsigned char *chunk_revindex
;
41 const char **pack_names
;
42 struct packed_git
**packs
;
43 char object_dir
[FLEX_ARRAY
];
46 #define MIDX_PROGRESS (1 << 0)
47 #define MIDX_WRITE_REV_INDEX (1 << 1)
48 #define MIDX_WRITE_BITMAP (1 << 2)
49 #define MIDX_WRITE_BITMAP_HASH_CACHE (1 << 3)
50 #define MIDX_WRITE_BITMAP_LOOKUP_TABLE (1 << 4)
52 const unsigned char *get_midx_checksum(struct multi_pack_index
*m
);
53 void get_midx_filename(struct strbuf
*out
, const char *object_dir
);
54 void get_midx_rev_filename(struct strbuf
*out
, struct multi_pack_index
*m
);
56 struct multi_pack_index
*load_multi_pack_index(const char *object_dir
, int local
);
57 int prepare_midx_pack(struct repository
*r
, struct multi_pack_index
*m
, uint32_t pack_int_id
);
58 int bsearch_midx(const struct object_id
*oid
, struct multi_pack_index
*m
, uint32_t *result
);
59 off_t
nth_midxed_offset(struct multi_pack_index
*m
, uint32_t pos
);
60 uint32_t nth_midxed_pack_int_id(struct multi_pack_index
*m
, uint32_t pos
);
61 struct object_id
*nth_midxed_object_oid(struct object_id
*oid
,
62 struct multi_pack_index
*m
,
64 int fill_midx_entry(struct repository
*r
, const struct object_id
*oid
, struct pack_entry
*e
, struct multi_pack_index
*m
);
65 int midx_contains_pack(struct multi_pack_index
*m
, const char *idx_or_pack_name
);
66 int prepare_multi_pack_index_one(struct repository
*r
, const char *object_dir
, int local
);
69 * Variant of write_midx_file which writes a MIDX containing only the packs
70 * specified in packs_to_include.
72 int write_midx_file(const char *object_dir
,
73 const char *preferred_pack_name
,
74 const char *refs_snapshot
,
76 int write_midx_file_only(const char *object_dir
,
77 struct string_list
*packs_to_include
,
78 const char *preferred_pack_name
,
79 const char *refs_snapshot
,
81 void clear_midx_file(struct repository
*r
);
82 int verify_midx_file(struct repository
*r
, const char *object_dir
, unsigned flags
);
83 int expire_midx_packs(struct repository
*r
, const char *object_dir
, unsigned flags
);
84 int midx_repack(struct repository
*r
, const char *object_dir
, size_t batch_size
, unsigned flags
);
86 void close_midx(struct multi_pack_index
*m
);