aboutsummaryrefslogtreecommitdiff
path: root/odb
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2026-03-05 15:19:46 +0100
committerJunio C Hamano <gitster@pobox.com>2026-03-05 11:45:15 -0800
commit47b965079ddd9ced04810d0a8738a1ca94f02268 (patch)
treeaf9780d489930b0d5fc12a28cbb493144e71a45b /odb
parent87842f68352040858f581b64509932fb91c64f0f (diff)
downloadgit-47b965079ddd9ced04810d0a8738a1ca94f02268.tar.xz
odb/source: make `free()` function pluggable
Introduce a new callback function in `struct odb_source` to make the function pluggable. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'odb')
-rw-r--r--odb/source-files.c7
-rw-r--r--odb/source-files.h3
-rw-r--r--odb/source.c4
-rw-r--r--odb/source.h6
4 files changed, 11 insertions, 9 deletions
diff --git a/odb/source-files.c b/odb/source-files.c
index 7496e1d9f8..65d7805c5a 100644
--- a/odb/source-files.c
+++ b/odb/source-files.c
@@ -18,10 +18,9 @@ static void odb_source_files_reparent(const char *name UNUSED,
files->base.path = path;
}
-void odb_source_files_free(struct odb_source_files *files)
+static void odb_source_files_free(struct odb_source *source)
{
- if (!files)
- return;
+ struct odb_source_files *files = odb_source_files_downcast(source);
chdir_notify_unregister(NULL, odb_source_files_reparent, files);
odb_source_loose_free(files->loose);
packfile_store_free(files->packed);
@@ -40,6 +39,8 @@ struct odb_source_files *odb_source_files_new(struct object_database *odb,
files->loose = odb_source_loose_new(&files->base);
files->packed = packfile_store_new(&files->base);
+ files->base.free = odb_source_files_free;
+
/*
* Ideally, we would only ever store absolute paths in the source. This
* is not (yet) possible though because we access and assume relative
diff --git a/odb/source-files.h b/odb/source-files.h
index 803fa995fb..23a3b4e04b 100644
--- a/odb/source-files.h
+++ b/odb/source-files.h
@@ -21,9 +21,6 @@ struct odb_source_files *odb_source_files_new(struct object_database *odb,
const char *path,
bool local);
-/* Free the object source and release all associated resources. */
-void odb_source_files_free(struct odb_source_files *files);
-
/*
* Cast the given object database source to the files backend. This will cause
* a BUG in case the source doesn't use this backend.
diff --git a/odb/source.c b/odb/source.c
index c7dcc528f6..7993dcbd65 100644
--- a/odb/source.c
+++ b/odb/source.c
@@ -25,11 +25,9 @@ void odb_source_init(struct odb_source *source,
void odb_source_free(struct odb_source *source)
{
- struct odb_source_files *files;
if (!source)
return;
- files = odb_source_files_downcast(source);
- odb_source_files_free(files);
+ source->free(source);
}
void odb_source_release(struct odb_source *source)
diff --git a/odb/source.h b/odb/source.h
index 45b72b81a0..4973fb4251 100644
--- a/odb/source.h
+++ b/odb/source.h
@@ -51,6 +51,12 @@ struct odb_source {
* the current working directory.
*/
char *path;
+
+ /*
+ * This callback is expected to free the underlying object database source and
+ * all associated resources. The function will never be called with a NULL pointer.
+ */
+ void (*free)(struct odb_source *source);
};
/*