2018-04-02 22:34:19 +02:00
|
|
|
#ifndef COMMIT_GRAPH_H
|
|
|
|
#define COMMIT_GRAPH_H
|
|
|
|
|
2018-04-10 14:56:02 +02:00
|
|
|
#include "git-compat-util.h"
|
2018-06-27 15:24:32 +02:00
|
|
|
#include "repository.h"
|
2018-06-27 15:24:44 +02:00
|
|
|
#include "string-list.h"
|
2018-08-15 19:54:05 +02:00
|
|
|
#include "cache.h"
|
2018-04-10 14:56:02 +02:00
|
|
|
|
2018-07-12 00:42:39 +02:00
|
|
|
struct commit;
|
|
|
|
|
2018-04-10 14:56:02 +02:00
|
|
|
char *get_commit_graph_filename(const char *obj_dir);
|
|
|
|
|
2018-04-10 14:56:05 +02:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2018-07-12 00:42:42 +02:00
|
|
|
int parse_commit_in_graph(struct repository *r, struct commit *item);
|
2018-04-10 14:56:05 +02:00
|
|
|
|
2018-05-01 14:47:13 +02:00
|
|
|
/*
|
|
|
|
* It is possible that we loaded commit contents from the commit buffer,
|
|
|
|
* but we also want to ensure the commit-graph content is correctly
|
|
|
|
* checked and filled. Fill the graph_pos and generation members of
|
|
|
|
* the given commit.
|
|
|
|
*/
|
2018-07-12 00:42:42 +02:00
|
|
|
void load_commit_graph_info(struct repository *r, struct commit *item);
|
2018-05-01 14:47:13 +02:00
|
|
|
|
2018-07-12 00:42:42 +02:00
|
|
|
struct tree *get_commit_tree_in_graph(struct repository *r,
|
|
|
|
const struct commit *c);
|
2018-04-06 21:09:46 +02:00
|
|
|
|
2018-04-10 14:56:02 +02:00
|
|
|
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);
|
|
|
|
|
2018-06-27 15:24:45 +02:00
|
|
|
void write_commit_graph_reachable(const char *obj_dir, int append);
|
2018-04-10 14:56:06 +02:00
|
|
|
void write_commit_graph(const char *obj_dir,
|
2018-06-27 15:24:44 +02:00
|
|
|
struct string_list *pack_indexes,
|
|
|
|
struct string_list *commit_hex,
|
2018-04-10 14:56:08 +02:00
|
|
|
int append);
|
2018-04-02 22:34:19 +02:00
|
|
|
|
2018-06-27 15:24:32 +02:00
|
|
|
int verify_commit_graph(struct repository *r, struct commit_graph *g);
|
|
|
|
|
2018-07-12 00:42:40 +02:00
|
|
|
void free_commit_graph(struct commit_graph *);
|
|
|
|
|
2018-04-02 22:34:19 +02:00
|
|
|
#endif
|