mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
revindex: export new APIs
Allow users to efficiently lookup consecutive entries that are expected to be found on the same revindex by exporting `find_revindex_position`: this function takes a pointer to revindex itself, instead of looking up the proper revindex for a given packfile on each call. Signed-off-by: Vicent Marti <tanoku@gmail.com> Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
e74435a516
commit
92e5c77c37
@@ -6,6 +6,14 @@ struct revindex_entry {
|
||||
unsigned int nr;
|
||||
};
|
||||
|
||||
struct pack_revindex {
|
||||
struct packed_git *p;
|
||||
struct revindex_entry *revindex;
|
||||
};
|
||||
|
||||
struct pack_revindex *revindex_for_pack(struct packed_git *p);
|
||||
int find_revindex_position(struct pack_revindex *pridx, off_t ofs);
|
||||
|
||||
struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
|
||||
void discard_revindex(void);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user