Commit 25b75cd9 by lhchavez

commit-graph: Create `git_commit_graph` as an abstraction for the file

This change does a medium-size refactor of the git_commit_graph_file and
the interaction with the ODB. Now instead of the ODB owning a direct
reference to the git_commit_graph_file, there will be an intermediate
git_commit_graph. The main advantage of that is that now end users can
explicitly set a git_commit_graph that is eagerly checked for errors,
while still being able to lazily use the commit-graph in a regular ODB,
if the file is present.
parent 248606eb
...@@ -31,7 +31,7 @@ int LLVMFuzzerInitialize(int *argc, char ***argv) ...@@ -31,7 +31,7 @@ int LLVMFuzzerInitialize(int *argc, char ***argv)
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{ {
git_commit_graph_file cgraph = {{0}}; git_commit_graph_file file = {{0}};
git_commit_graph_entry e; git_commit_graph_entry e;
git_buf commit_graph_buf = GIT_BUF_INIT; git_buf commit_graph_buf = GIT_BUF_INIT;
git_oid oid = {{0}}; git_oid oid = {{0}};
...@@ -62,19 +62,19 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) ...@@ -62,19 +62,19 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
git_buf_attach_notowned(&commit_graph_buf, (char *)data, size); git_buf_attach_notowned(&commit_graph_buf, (char *)data, size);
} }
if (git_commit_graph_parse( if (git_commit_graph_file_parse(
&cgraph, &file,
(const unsigned char *)git_buf_cstr(&commit_graph_buf), (const unsigned char *)git_buf_cstr(&commit_graph_buf),
git_buf_len(&commit_graph_buf)) git_buf_len(&commit_graph_buf))
< 0) < 0)
goto cleanup; goto cleanup;
/* Search for any oid, just to exercise that codepath. */ /* Search for any oid, just to exercise that codepath. */
if (git_commit_graph_entry_find(&e, &cgraph, &oid, GIT_OID_HEXSZ) < 0) if (git_commit_graph_entry_find(&e, &file, &oid, GIT_OID_HEXSZ) < 0)
goto cleanup; goto cleanup;
cleanup: cleanup:
git_commit_graph_close(&cgraph); git_commit_graph_file_close(&file);
git_buf_dispose(&commit_graph_buf); git_buf_dispose(&commit_graph_buf);
return 0; return 0;
} }
...@@ -544,6 +544,21 @@ GIT_EXTERN(size_t) git_odb_num_backends(git_odb *odb); ...@@ -544,6 +544,21 @@ GIT_EXTERN(size_t) git_odb_num_backends(git_odb *odb);
*/ */
GIT_EXTERN(int) git_odb_get_backend(git_odb_backend **out, git_odb *odb, size_t pos); GIT_EXTERN(int) git_odb_get_backend(git_odb_backend **out, git_odb *odb, size_t pos);
/**
* Set the git commit-graph for the ODB.
*
* After a successfull call, the ownership of the cgraph parameter will be
* transferred to libgit2, and the caller should not free it.
*
* The commit-graph can also be unset by explicitly passing NULL as the cgraph
* parameter.
*
* @param odb object database
* @param cgraph the git commit-graph
* @return 0 on success; error code otherwise
*/
GIT_EXTERN(int) git_odb_set_commit_graph(git_odb *odb, git_commit_graph *cgraph);
/** @} */ /** @} */
GIT_END_DECL GIT_END_DECL
#endif #endif
/*
* Copyright (C) the libgit2 contributors. All rights reserved.
*
* This file is part of libgit2, distributed under the GNU GPL v2 with
* a Linking Exception. For full terms see the included COPYING file.
*/
#ifndef INCLUDE_sys_git_commit_graph_h__
#define INCLUDE_sys_git_commit_graph_h__
#include "git2/common.h"
#include "git2/types.h"
/**
* @file git2/sys/commit_graph.h
* @brief Git commit-graph
* @defgroup git_commit_graph Git commit-graph APIs
* @ingroup Git
* @{
*/
GIT_BEGIN_DECL
/**
* Opens a `git_commit_graph` from a path to an objects directory.
*
* This finds, opens, and validates the `commit-graph` file.
*
* @param cgraph_out the `git_commit_graph` struct to initialize.
* @param objects_dir the path to a git objects directory.
* @return Zero on success; -1 on failure.
*/
GIT_EXTERN(int) git_commit_graph_open(git_commit_graph **cgraph_out, const char *objects_dir);
/**
* Frees commit-graph data. This should only be called when memory allocated
* using `git_commit_graph_open` is not returned to libgit2 because it was not
* associated with the ODB through a successful call to
* `git_odb_set_commit_graph`.
*
* @param cgraph the commit-graph object to free. If NULL, no action is taken.
*/
GIT_EXTERN(void) git_commit_graph_free(git_commit_graph *cgraph);
GIT_END_DECL
#endif
...@@ -102,6 +102,9 @@ typedef struct git_refdb git_refdb; ...@@ -102,6 +102,9 @@ typedef struct git_refdb git_refdb;
/** A custom backend for refs */ /** A custom backend for refs */
typedef struct git_refdb_backend git_refdb_backend; typedef struct git_refdb_backend git_refdb_backend;
/** A git commit-graph */
typedef struct git_commit_graph git_commit_graph;
/** /**
* Representation of an existing git repository, * Representation of an existing git repository,
* including all its object contents * including all its object contents
......
...@@ -10,6 +10,9 @@ ...@@ -10,6 +10,9 @@
#include "common.h" #include "common.h"
#include "git2/types.h"
#include "git2/sys/commit_graph.h"
#include "map.h" #include "map.h"
/** /**
...@@ -52,9 +55,6 @@ typedef struct git_commit_graph_file { ...@@ -52,9 +55,6 @@ typedef struct git_commit_graph_file {
/* The trailer of the file. Contains the SHA1-checksum of the whole file. */ /* The trailer of the file. Contains the SHA1-checksum of the whole file. */
git_oid checksum; git_oid checksum;
/* something like ".git/objects/info/commit-graph". */
git_buf filename;
} git_commit_graph_file; } git_commit_graph_file;
/** /**
...@@ -88,29 +88,60 @@ typedef struct git_commit_graph_entry { ...@@ -88,29 +88,60 @@ typedef struct git_commit_graph_entry {
git_oid sha1; git_oid sha1;
} git_commit_graph_entry; } git_commit_graph_entry;
int git_commit_graph_open(git_commit_graph_file **cgraph_out, const char *path); /* A wrapper for git_commit_graph_file to enable lazy loading in the ODB. */
struct git_commit_graph {
/* The path to the commit-graph file. Something like ".git/objects/info/commit-graph". */
git_buf filename;
/* The underlying commit-graph file. */
git_commit_graph_file *file;
/* Whether the commit-graph file was already checked for validity. */
bool checked;
};
/** Create a new commit-graph, optionally opening the underlying file. */
int git_commit_graph_new(git_commit_graph **cgraph_out, const char *objects_dir, bool open_file);
/** Open and validate a commit-graph file. */
int git_commit_graph_file_open(git_commit_graph_file **file_out, const char *path);
/*
* Attempt to get the git_commit_graph's commit-graph file. This object is
* still owned by the git_commit_graph. If the repository does not contain a commit graph,
* it will return GIT_ENOTFOUND.
*
* This function is not thread-safe.
*/
int git_commit_graph_get_file(git_commit_graph_file **file_out, git_commit_graph *cgraph);
/* Marks the commit-graph file as needing a refresh. */
void git_commit_graph_refresh(git_commit_graph *cgraph);
/* /*
* Returns whether the commit_graph_file needs to be reloaded since the * Returns whether the git_commit_graph_file needs to be reloaded since the
* contents of the commit-graph file have changed on disk. If `path` is NULL, * contents of the commit-graph file have changed on disk.
* the filename stored in `cgraph` will be used.
*/ */
bool git_commit_graph_needs_refresh(const git_commit_graph_file *cgraph, const char *path); bool git_commit_graph_file_needs_refresh(
const git_commit_graph_file *file, const char *path);
int git_commit_graph_entry_find( int git_commit_graph_entry_find(
git_commit_graph_entry *e, git_commit_graph_entry *e,
const git_commit_graph_file *cgraph, const git_commit_graph_file *file,
const git_oid *short_oid, const git_oid *short_oid,
size_t len); size_t len);
int git_commit_graph_entry_parent( int git_commit_graph_entry_parent(
git_commit_graph_entry *parent, git_commit_graph_entry *parent,
const git_commit_graph_file *cgraph, const git_commit_graph_file *file,
const git_commit_graph_entry *entry, const git_commit_graph_entry *entry,
size_t n); size_t n);
int git_commit_graph_close(git_commit_graph_file *cgraph); int git_commit_graph_file_close(git_commit_graph_file *cgraph);
void git_commit_graph_free(git_commit_graph_file *cgraph); void git_commit_graph_file_free(git_commit_graph_file *cgraph);
/* This is exposed for use in the fuzzers. */ /* This is exposed for use in the fuzzers. */
int git_commit_graph_parse(git_commit_graph_file *cgraph, const unsigned char *data, size_t size); int git_commit_graph_file_parse(
git_commit_graph_file *file,
const unsigned char *data,
size_t size);
#endif #endif
...@@ -144,18 +144,18 @@ static int commit_quick_parse( ...@@ -144,18 +144,18 @@ static int commit_quick_parse(
int git_commit_list_parse(git_revwalk *walk, git_commit_list_node *commit) int git_commit_list_parse(git_revwalk *walk, git_commit_list_node *commit)
{ {
git_odb_object *obj; git_odb_object *obj;
git_commit_graph_file *cgraph = NULL; git_commit_graph_file *cgraph_file = NULL;
int error; int error;
if (commit->parsed) if (commit->parsed)
return 0; return 0;
/* Let's try to use the commit graph first. */ /* Let's try to use the commit graph first. */
git_odb__get_commit_graph(&cgraph, walk->odb); git_odb__get_commit_graph_file(&cgraph_file, walk->odb);
if (cgraph) { if (cgraph_file) {
git_commit_graph_entry e; git_commit_graph_entry e;
error = git_commit_graph_entry_find(&e, cgraph, &commit->oid, GIT_OID_RAWSZ); error = git_commit_graph_entry_find(&e, cgraph_file, &commit->oid, GIT_OID_RAWSZ);
if (error == 0 && git__is_uint16(e.parent_count)) { if (error == 0 && git__is_uint16(e.parent_count)) {
size_t i; size_t i;
commit->generation = (uint32_t)e.generation; commit->generation = (uint32_t)e.generation;
...@@ -166,7 +166,7 @@ int git_commit_list_parse(git_revwalk *walk, git_commit_list_node *commit) ...@@ -166,7 +166,7 @@ int git_commit_list_parse(git_revwalk *walk, git_commit_list_node *commit)
for (i = 0; i < commit->out_degree; ++i) { for (i = 0; i < commit->out_degree; ++i) {
git_commit_graph_entry parent; git_commit_graph_entry parent;
error = git_commit_graph_entry_parent(&parent, cgraph, &e, i); error = git_commit_graph_entry_parent(&parent, cgraph_file, &e, i);
if (error < 0) if (error < 0)
return error; return error;
commit->parents[i] = git_revwalk__commit_lookup(walk, &parent.sha1); commit->parents[i] = git_revwalk__commit_lookup(walk, &parent.sha1);
......
...@@ -465,13 +465,6 @@ int git_odb_new(git_odb **out) ...@@ -465,13 +465,6 @@ int git_odb_new(git_odb **out)
git__free(db); git__free(db);
return -1; return -1;
} }
if (git_buf_init(&db->objects_dir, 0) < 0) {
git_vector_free(&db->backends);
git_cache_dispose(&db->own_cache);
git_mutex_free(&db->lock);
git__free(db);
return -1;
}
*out = db; *out = db;
GIT_REFCOUNT_INC(db); GIT_REFCOUNT_INC(db);
...@@ -619,17 +612,6 @@ int git_odb__add_default_backends( ...@@ -619,17 +612,6 @@ int git_odb__add_default_backends(
git_mutex_unlock(&db->lock); git_mutex_unlock(&db->lock);
#endif #endif
if (git_mutex_lock(&db->lock) < 0) {
git_error_set(GIT_ERROR_ODB, "failed to acquire the odb lock");
return -1;
}
if (git_buf_len(&db->objects_dir) == 0 && git_buf_sets(&db->objects_dir, objects_dir) < 0) {
git_mutex_unlock(&db->lock);
git_odb_free(db);
return -1;
}
git_mutex_unlock(&db->lock);
/* add the loose object backend */ /* add the loose object backend */
if (git_odb_backend_loose(&loose, objects_dir, -1, db->do_fsync, 0, 0) < 0 || if (git_odb_backend_loose(&loose, objects_dir, -1, db->do_fsync, 0, 0) < 0 ||
add_backend_internal(db, loose, GIT_LOOSE_PRIORITY, as_alternates, inode) < 0) add_backend_internal(db, loose, GIT_LOOSE_PRIORITY, as_alternates, inode) < 0)
...@@ -640,6 +622,16 @@ int git_odb__add_default_backends( ...@@ -640,6 +622,16 @@ int git_odb__add_default_backends(
add_backend_internal(db, packed, GIT_PACKED_PRIORITY, as_alternates, inode) < 0) add_backend_internal(db, packed, GIT_PACKED_PRIORITY, as_alternates, inode) < 0)
return -1; return -1;
if (git_mutex_lock(&db->lock) < 0) {
git_error_set(GIT_ERROR_ODB, "failed to acquire the odb lock");
return -1;
}
if (!db->cgraph && git_commit_graph_new(&db->cgraph, objects_dir, false) < 0) {
git_mutex_unlock(&db->lock);
return -1;
}
git_mutex_unlock(&db->lock);
return load_alternates(db, objects_dir, alternate_depth); return load_alternates(db, objects_dir, alternate_depth);
} }
...@@ -701,6 +693,23 @@ int git_odb_add_disk_alternate(git_odb *odb, const char *path) ...@@ -701,6 +693,23 @@ int git_odb_add_disk_alternate(git_odb *odb, const char *path)
return git_odb__add_default_backends(odb, path, true, 0); return git_odb__add_default_backends(odb, path, true, 0);
} }
int git_odb_set_commit_graph(git_odb *odb, git_commit_graph *cgraph)
{
int error = 0;
GIT_ASSERT_ARG(odb);
if ((error = git_mutex_lock(&odb->lock)) < 0) {
git_error_set(GIT_ERROR_ODB, "failed to acquire the db lock");
return error;
}
git_commit_graph_free(odb->cgraph);
odb->cgraph = cgraph;
git_mutex_unlock(&odb->lock);
return error;
}
int git_odb_open(git_odb **out, const char *objects_dir) int git_odb_open(git_odb **out, const char *objects_dir)
{ {
git_odb *db; git_odb *db;
...@@ -760,7 +769,6 @@ static void odb_free(git_odb *db) ...@@ -760,7 +769,6 @@ static void odb_free(git_odb *db)
if (locked) if (locked)
git_mutex_unlock(&db->lock); git_mutex_unlock(&db->lock);
git_buf_dispose(&db->objects_dir);
git_commit_graph_free(db->cgraph); git_commit_graph_free(db->cgraph);
git_vector_free(&db->backends); git_vector_free(&db->backends);
git_cache_dispose(&db->own_cache); git_cache_dispose(&db->own_cache);
...@@ -806,51 +814,27 @@ static int odb_exists_1( ...@@ -806,51 +814,27 @@ static int odb_exists_1(
return (int)found; return (int)found;
} }
int git_odb__get_commit_graph(git_commit_graph_file **out, git_odb *db) int git_odb__get_commit_graph_file(git_commit_graph_file **out, git_odb *db)
{ {
int error = 0; int error = 0;
git_commit_graph_file *result = NULL;
if ((error = git_mutex_lock(&db->lock)) < 0) { if ((error = git_mutex_lock(&db->lock)) < 0) {
git_error_set(GIT_ERROR_ODB, "failed to acquire the db lock"); git_error_set(GIT_ERROR_ODB, "failed to acquire the db lock");
return error; return error;
} }
if (!db->cgraph_checked) { if (!db->cgraph) {
git_buf commit_graph_path = GIT_BUF_INIT; error = GIT_ENOTFOUND;
git_commit_graph_file *cgraph = NULL;
/* We only check once, no matter the result. */
db->cgraph_checked = 1;
if (git_buf_len(&db->objects_dir) == 0) {
/*
* This odb was not opened with an objects directory
* associated. Skip opening the commit graph.
*/
goto done;
}
if ((error = git_buf_joinpath(
&commit_graph_path,
git_buf_cstr(&db->objects_dir),
"info/commit-graph"))
< 0) {
git_buf_dispose(&commit_graph_path);
goto done; goto done;
} }
/* Best effort */ error = git_commit_graph_get_file(&result, db->cgraph);
error = git_commit_graph_open(&cgraph, git_buf_cstr(&commit_graph_path)); if (error)
git_buf_dispose(&commit_graph_path);
if (error < 0)
goto done; goto done;
*out = result;
db->cgraph = cgraph;
}
done: done:
*out = db->cgraph;
git_mutex_unlock(&db->lock); git_mutex_unlock(&db->lock);
return 0; return error;
} }
static int odb_freshen_1( static int odb_freshen_1(
...@@ -1762,13 +1746,8 @@ int git_odb_refresh(struct git_odb *db) ...@@ -1762,13 +1746,8 @@ int git_odb_refresh(struct git_odb *db)
} }
} }
} }
if (db->cgraph && git_commit_graph_needs_refresh(db->cgraph, NULL)) { if (db->cgraph)
/* We just free the commit graph. The next time it is requested, it will be re-loaded. */ git_commit_graph_refresh(db->cgraph);
git_commit_graph_free(db->cgraph);
db->cgraph = NULL;
}
/* Force a lazy re-check next time it is needed. */
db->cgraph_checked = 0;
git_mutex_unlock(&db->lock); git_mutex_unlock(&db->lock);
return 0; return 0;
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include "git2/odb.h" #include "git2/odb.h"
#include "git2/oid.h" #include "git2/oid.h"
#include "git2/types.h" #include "git2/types.h"
#include "git2/sys/commit_graph.h"
#include "cache.h" #include "cache.h"
#include "commit_graph.h" #include "commit_graph.h"
...@@ -44,10 +45,8 @@ struct git_odb { ...@@ -44,10 +45,8 @@ struct git_odb {
git_mutex lock; /* protects backends */ git_mutex lock; /* protects backends */
git_vector backends; git_vector backends;
git_cache own_cache; git_cache own_cache;
git_buf objects_dir; git_commit_graph *cgraph;
git_commit_graph_file *cgraph;
unsigned int do_fsync :1; unsigned int do_fsync :1;
unsigned int cgraph_checked :1;
}; };
typedef enum { typedef enum {
...@@ -132,11 +131,11 @@ int git_odb__read_header_or_object( ...@@ -132,11 +131,11 @@ int git_odb__read_header_or_object(
git_odb *db, const git_oid *id); git_odb *db, const git_oid *id);
/* /*
* Attempt to get the ODB's commit graph. This object is still owned by the * Attempt to get the ODB's commit-graph file. This object is still owned by
* ODB. If the repository does not contain a commit graph, it will return zero * the ODB. If the repository does not contain a commit-graph, it will return
* and `*out` will be set to NULL. * GIT_ENOTFOUND.
*/ */
int git_odb__get_commit_graph(git_commit_graph_file **out, git_odb *odb); int git_odb__get_commit_graph_file(git_commit_graph_file **out, git_odb *odb);
/* freshen an entry in the object database */ /* freshen an entry in the object database */
int git_odb__freshen(git_odb *db, const git_oid *id); int git_odb__freshen(git_odb *db, const git_oid *id);
......
...@@ -7,18 +7,18 @@ ...@@ -7,18 +7,18 @@
void test_graph_commit_graph__parse(void) void test_graph_commit_graph__parse(void)
{ {
git_repository *repo; git_repository *repo;
struct git_commit_graph_file *cgraph; struct git_commit_graph_file *file;
struct git_commit_graph_entry e, parent; struct git_commit_graph_entry e, parent;
git_oid id; git_oid id;
git_buf commit_graph_path = GIT_BUF_INIT; git_buf commit_graph_path = GIT_BUF_INIT;
cl_git_pass(git_repository_open(&repo, cl_fixture("testrepo.git"))); cl_git_pass(git_repository_open(&repo, cl_fixture("testrepo.git")));
cl_git_pass(git_buf_joinpath(&commit_graph_path, git_repository_path(repo), "objects/info/commit-graph")); cl_git_pass(git_buf_joinpath(&commit_graph_path, git_repository_path(repo), "objects/info/commit-graph"));
cl_git_pass(git_commit_graph_open(&cgraph, git_buf_cstr(&commit_graph_path))); cl_git_pass(git_commit_graph_file_open(&file, git_buf_cstr(&commit_graph_path)));
cl_assert_equal_i(git_commit_graph_needs_refresh(cgraph, git_buf_cstr(&commit_graph_path)), 0); cl_assert_equal_i(git_commit_graph_file_needs_refresh(file, git_buf_cstr(&commit_graph_path)), 0);
cl_git_pass(git_oid_fromstr(&id, "5001298e0c09ad9c34e4249bc5801c75e9754fa5")); cl_git_pass(git_oid_fromstr(&id, "5001298e0c09ad9c34e4249bc5801c75e9754fa5"));
cl_git_pass(git_commit_graph_entry_find(&e, cgraph, &id, GIT_OID_HEXSZ)); cl_git_pass(git_commit_graph_entry_find(&e, file, &id, GIT_OID_HEXSZ));
cl_assert_equal_oid(&e.sha1, &id); cl_assert_equal_oid(&e.sha1, &id);
cl_git_pass(git_oid_fromstr(&id, "418382dff1ffb8bdfba833f4d8bbcde58b1e7f47")); cl_git_pass(git_oid_fromstr(&id, "418382dff1ffb8bdfba833f4d8bbcde58b1e7f47"));
cl_assert_equal_oid(&e.tree_oid, &id); cl_assert_equal_oid(&e.tree_oid, &id);
...@@ -27,23 +27,23 @@ void test_graph_commit_graph__parse(void) ...@@ -27,23 +27,23 @@ void test_graph_commit_graph__parse(void)
cl_assert_equal_i(e.parent_count, 0); cl_assert_equal_i(e.parent_count, 0);
cl_git_pass(git_oid_fromstr(&id, "be3563ae3f795b2b4353bcce3a527ad0a4f7f644")); cl_git_pass(git_oid_fromstr(&id, "be3563ae3f795b2b4353bcce3a527ad0a4f7f644"));
cl_git_pass(git_commit_graph_entry_find(&e, cgraph, &id, GIT_OID_HEXSZ)); cl_git_pass(git_commit_graph_entry_find(&e, file, &id, GIT_OID_HEXSZ));
cl_assert_equal_oid(&e.sha1, &id); cl_assert_equal_oid(&e.sha1, &id);
cl_assert_equal_i(e.generation, 5); cl_assert_equal_i(e.generation, 5);
cl_assert_equal_i(e.commit_time, 1274813907ull); cl_assert_equal_i(e.commit_time, 1274813907ull);
cl_assert_equal_i(e.parent_count, 2); cl_assert_equal_i(e.parent_count, 2);
cl_git_pass(git_oid_fromstr(&id, "9fd738e8f7967c078dceed8190330fc8648ee56a")); cl_git_pass(git_oid_fromstr(&id, "9fd738e8f7967c078dceed8190330fc8648ee56a"));
cl_git_pass(git_commit_graph_entry_parent(&parent, cgraph, &e, 0)); cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 0));
cl_assert_equal_oid(&parent.sha1, &id); cl_assert_equal_oid(&parent.sha1, &id);
cl_assert_equal_i(parent.generation, 4); cl_assert_equal_i(parent.generation, 4);
cl_git_pass(git_oid_fromstr(&id, "c47800c7266a2be04c571c04d5a6614691ea99bd")); cl_git_pass(git_oid_fromstr(&id, "c47800c7266a2be04c571c04d5a6614691ea99bd"));
cl_git_pass(git_commit_graph_entry_parent(&parent, cgraph, &e, 1)); cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 1));
cl_assert_equal_oid(&parent.sha1, &id); cl_assert_equal_oid(&parent.sha1, &id);
cl_assert_equal_i(parent.generation, 3); cl_assert_equal_i(parent.generation, 3);
git_commit_graph_free(cgraph); git_commit_graph_file_free(file);
git_repository_free(repo); git_repository_free(repo);
git_buf_dispose(&commit_graph_path); git_buf_dispose(&commit_graph_path);
} }
...@@ -51,17 +51,17 @@ void test_graph_commit_graph__parse(void) ...@@ -51,17 +51,17 @@ void test_graph_commit_graph__parse(void)
void test_graph_commit_graph__parse_octopus_merge(void) void test_graph_commit_graph__parse_octopus_merge(void)
{ {
git_repository *repo; git_repository *repo;
struct git_commit_graph_file *cgraph; struct git_commit_graph_file *file;
struct git_commit_graph_entry e, parent; struct git_commit_graph_entry e, parent;
git_oid id; git_oid id;
git_buf commit_graph_path = GIT_BUF_INIT; git_buf commit_graph_path = GIT_BUF_INIT;
cl_git_pass(git_repository_open(&repo, cl_fixture("merge-recursive/.gitted"))); cl_git_pass(git_repository_open(&repo, cl_fixture("merge-recursive/.gitted")));
cl_git_pass(git_buf_joinpath(&commit_graph_path, git_repository_path(repo), "objects/info/commit-graph")); cl_git_pass(git_buf_joinpath(&commit_graph_path, git_repository_path(repo), "objects/info/commit-graph"));
cl_git_pass(git_commit_graph_open(&cgraph, git_buf_cstr(&commit_graph_path))); cl_git_pass(git_commit_graph_file_open(&file, git_buf_cstr(&commit_graph_path)));
cl_git_pass(git_oid_fromstr(&id, "d71c24b3b113fd1d1909998c5bfe33b86a65ee03")); cl_git_pass(git_oid_fromstr(&id, "d71c24b3b113fd1d1909998c5bfe33b86a65ee03"));
cl_git_pass(git_commit_graph_entry_find(&e, cgraph, &id, GIT_OID_HEXSZ)); cl_git_pass(git_commit_graph_entry_find(&e, file, &id, GIT_OID_HEXSZ));
cl_assert_equal_oid(&e.sha1, &id); cl_assert_equal_oid(&e.sha1, &id);
cl_git_pass(git_oid_fromstr(&id, "348f16ffaeb73f319a75cec5b16a0a47d2d5e27c")); cl_git_pass(git_oid_fromstr(&id, "348f16ffaeb73f319a75cec5b16a0a47d2d5e27c"));
cl_assert_equal_oid(&e.tree_oid, &id); cl_assert_equal_oid(&e.tree_oid, &id);
...@@ -70,21 +70,21 @@ void test_graph_commit_graph__parse_octopus_merge(void) ...@@ -70,21 +70,21 @@ void test_graph_commit_graph__parse_octopus_merge(void)
cl_assert_equal_i(e.parent_count, 3); cl_assert_equal_i(e.parent_count, 3);
cl_git_pass(git_oid_fromstr(&id, "ad2ace9e15f66b3d1138922e6ffdc3ea3f967fa6")); cl_git_pass(git_oid_fromstr(&id, "ad2ace9e15f66b3d1138922e6ffdc3ea3f967fa6"));
cl_git_pass(git_commit_graph_entry_parent(&parent, cgraph, &e, 0)); cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 0));
cl_assert_equal_oid(&parent.sha1, &id); cl_assert_equal_oid(&parent.sha1, &id);
cl_assert_equal_i(parent.generation, 6); cl_assert_equal_i(parent.generation, 6);
cl_git_pass(git_oid_fromstr(&id, "483065df53c0f4a02cdc6b2910b05d388fc17ffb")); cl_git_pass(git_oid_fromstr(&id, "483065df53c0f4a02cdc6b2910b05d388fc17ffb"));
cl_git_pass(git_commit_graph_entry_parent(&parent, cgraph, &e, 1)); cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 1));
cl_assert_equal_oid(&parent.sha1, &id); cl_assert_equal_oid(&parent.sha1, &id);
cl_assert_equal_i(parent.generation, 2); cl_assert_equal_i(parent.generation, 2);
cl_git_pass(git_oid_fromstr(&id, "815b5a1c80ca749d705c7aa0cb294a00cbedd340")); cl_git_pass(git_oid_fromstr(&id, "815b5a1c80ca749d705c7aa0cb294a00cbedd340"));
cl_git_pass(git_commit_graph_entry_parent(&parent, cgraph, &e, 2)); cl_git_pass(git_commit_graph_entry_parent(&parent, file, &e, 2));
cl_assert_equal_oid(&parent.sha1, &id); cl_assert_equal_oid(&parent.sha1, &id);
cl_assert_equal_i(parent.generation, 6); cl_assert_equal_i(parent.generation, 6);
git_commit_graph_free(cgraph); git_commit_graph_file_free(file);
git_repository_free(repo); git_repository_free(repo);
git_buf_dispose(&commit_graph_path); git_buf_dispose(&commit_graph_path);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment