diff options
| author | Junio C Hamano <gitster@pobox.com> | 2018-05-08 15:59:20 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-05-08 15:59:20 +0900 |
| commit | b10edb2df55241b2e042b3d5473537904d09d193 (patch) | |
| tree | 0e456f3d65f1268c364a8d6d2b463456f23e222a /commit-graph.h | |
| parent | Merge branch 'js/empty-config-section-fix' (diff) | |
| parent | commit-graph: implement "--append" option (diff) | |
| download | git-b10edb2df55241b2e042b3d5473537904d09d193.tar.gz git-b10edb2df55241b2e042b3d5473537904d09d193.zip | |
Merge branch 'ds/commit-graph'
Precompute and store information necessary for ancestry traversal
in a separate file to optimize graph walking.
* ds/commit-graph:
commit-graph: implement "--append" option
commit-graph: build graph from starting commits
commit-graph: read only from specific pack-indexes
commit: integrate commit graph with commit parsing
commit-graph: close under reachability
commit-graph: add core.commitGraph setting
commit-graph: implement git commit-graph read
commit-graph: implement git-commit-graph write
commit-graph: implement write_commit_graph()
commit-graph: create git-commit-graph builtin
graph: add commit graph design document
commit-graph: add format document
csum-file: refactor finalize_hashfile() method
csum-file: rename hashclose() to finalize_hashfile()
Diffstat (limited to 'commit-graph.h')
| -rw-r--r-- | commit-graph.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/commit-graph.h b/commit-graph.h new file mode 100644 index 0000000000..e1d8580c98 --- /dev/null +++ b/commit-graph.h @@ -0,0 +1,46 @@ +#ifndef COMMIT_GRAPH_H +#define COMMIT_GRAPH_H + +#include "git-compat-util.h" + +char *get_commit_graph_filename(const char *obj_dir); + +/* + * Given a commit struct, try to fill the commit struct info, including: + * 1. tree object + * 2. date + * 3. parents. + * + * Returns 1 if and only if the commit was found in the packed graph. + * + * See parse_commit_buffer() for the fallback after this call. + */ +int parse_commit_in_graph(struct commit *item); + +struct commit_graph { + int graph_fd; + + const unsigned char *data; + size_t data_len; + + unsigned char hash_len; + unsigned char num_chunks; + uint32_t num_commits; + struct object_id oid; + + const uint32_t *chunk_oid_fanout; + const unsigned char *chunk_oid_lookup; + const unsigned char *chunk_commit_data; + const unsigned char *chunk_large_edges; +}; + +struct commit_graph *load_commit_graph_one(const char *graph_file); + +void write_commit_graph(const char *obj_dir, + const char **pack_indexes, + int nr_packs, + const char **commit_hex, + int nr_commits, + int append); + +#endif |
