odb: adopt logic to close object databases

The logic to close an object database is currently contained in the
packfile subsystem. That choice is somewhat relatable, as most of the
logic really is to close resources associated with the packfile store
itself. But we also end up handling object sources and commit graphs,
which certainly is not related to packfiles.

Move the function into the object database subsystem and rename it to
`odb_close()`.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Patrick Steinhardt
2025-11-19 08:50:51 +01:00
committed by Junio C Hamano
parent 7c188a9e45
commit 9aaba57993
10 changed files with 30 additions and 23 deletions

View File

@@ -1617,7 +1617,7 @@ int cmd_clone(int argc,
transport_disconnect(transport);
if (option_dissociate) {
close_object_store(the_repository->objects);
odb_close(the_repository->objects);
dissociate_from_references();
}

View File

@@ -1048,7 +1048,7 @@ int cmd_gc(int argc,
report_garbage = report_pack_garbage;
odb_reprepare(the_repository->objects);
if (pack_garbage.nr > 0) {
close_object_store(the_repository->objects);
odb_close(the_repository->objects);
clean_pack_garbage();
}

View File

@@ -488,7 +488,7 @@ int cmd_repack(int argc,
string_list_sort(&names);
close_object_store(repo->objects);
odb_close(repo->objects);
/*
* Ok we have prepared all new packfiles.

View File

@@ -1459,7 +1459,7 @@ static int write_midx_internal(struct odb_source *source,
}
if (ctx.m || ctx.base_midx)
close_object_store(ctx.repo->objects);
odb_close(ctx.repo->objects);
if (commit_lock_file(&lk) < 0)
die_errno(_("could not write multi-pack-index"));

18
odb.c
View File

@@ -9,6 +9,7 @@
#include "khash.h"
#include "lockfile.h"
#include "loose.h"
#include "midx.h"
#include "object-file-convert.h"
#include "object-file.h"
#include "odb.h"
@@ -1044,6 +1045,21 @@ struct object_database *odb_new(struct repository *repo)
return o;
}
void odb_close(struct object_database *o)
{
struct odb_source *source;
packfile_store_close(o->packfiles);
for (source = o->sources; source; source = source->next) {
if (source->midx)
close_midx(source->midx);
source->midx = NULL;
}
close_commit_graph(o);
}
static void odb_free_sources(struct object_database *o)
{
while (o->sources) {
@@ -1076,7 +1092,7 @@ void odb_clear(struct object_database *o)
free((char *) o->cached_objects[i].value.buf);
FREE_AND_NULL(o->cached_objects);
close_object_store(o);
odb_close(o);
packfile_store_free(o->packfiles);
o->packfiles = NULL;

7
odb.h
View File

@@ -169,6 +169,13 @@ struct object_database {
struct object_database *odb_new(struct repository *repo);
void odb_clear(struct object_database *o);
/*
* Close the object database and all of its sources so that any held resources
* will be released. The database can still be used after closing it, in which
* case these resources may be reallocated.
*/
void odb_close(struct object_database *o);
/*
* Clear caches, reload alternates and then reload object sources so that new
* objects may become accessible.

View File

@@ -359,21 +359,6 @@ void close_pack(struct packed_git *p)
oidset_clear(&p->bad_objects);
}
void close_object_store(struct object_database *o)
{
struct odb_source *source;
packfile_store_close(o->packfiles);
for (source = o->sources; source; source = source->next) {
if (source->midx)
close_midx(source->midx);
source->midx = NULL;
}
close_commit_graph(o);
}
void unlink_pack_path(const char *pack_name, int force_delete)
{
static const char *exts[] = {".idx", ".pack", ".rev", ".keep", ".bitmap", ".promisor", ".mtimes"};

View File

@@ -279,7 +279,6 @@ struct object_database;
unsigned char *use_pack(struct packed_git *, struct pack_window **, off_t, unsigned long *);
void close_pack_windows(struct packed_git *);
void close_pack(struct packed_git *);
void close_object_store(struct object_database *o);
void unuse_pack(struct pack_window **);
void clear_delta_base_cache(void);
struct packed_git *add_packed_git(struct repository *r, const char *path,

View File

@@ -743,7 +743,7 @@ fail_pipe:
fflush(NULL);
if (cmd->close_object_store)
close_object_store(the_repository->objects);
odb_close(the_repository->objects);
#ifndef GIT_WINDOWS_NATIVE
{

View File

@@ -931,7 +931,7 @@ static int cmd_delete(int argc, const char **argv)
if (dir_inside_of(cwd, enlistment.buf) >= 0)
res = error(_("refusing to delete current working directory"));
else {
close_object_store(the_repository->objects);
odb_close(the_repository->objects);
res = delete_enlistment(&enlistment);
}
strbuf_release(&enlistment);