]> git.ipfire.org Git - thirdparty/git.git/commitdiff
object-file: rename transaction functions
authorJustin Tobler <jltobler@gmail.com>
Tue, 3 Feb 2026 00:10:00 +0000 (18:10 -0600)
committerJunio C Hamano <gitster@pobox.com>
Tue, 3 Feb 2026 01:14:03 +0000 (17:14 -0800)
In a subsequent commit, ODB transactions are made more generic to
facilitate each ODB source providing its own transaction handling.
Rename `object_file_transaction_{begin,commit}()` to
`odb_transaction_files_{begin,commit}()` to better match the future
source specific transaction implementation.

Signed-off-by: Justin Tobler <jltobler@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
object-file.c
object-file.h
odb.c

index 196509b252e4700572ae51917f40e79dd0ea2794..7b34a2b274c8ce32902ca151d1ee0d19829243cb 100644 (file)
@@ -723,7 +723,7 @@ static void prepare_loose_object_transaction(struct odb_transaction *transaction
         * We lazily create the temporary object directory
         * the first time an object might be added, since
         * callers may not know whether any objects will be
-        * added at the time they call object_file_transaction_begin.
+        * added at the time they call odb_transaction_files_begin.
         */
        if (!transaction || transaction->objdir)
                return;
@@ -1985,7 +1985,7 @@ out:
        return ret;
 }
 
-struct odb_transaction *object_file_transaction_begin(struct odb_source *source)
+struct odb_transaction *odb_transaction_files_begin(struct odb_source *source)
 {
        struct object_database *odb = source->odb;
 
@@ -1998,7 +1998,7 @@ struct odb_transaction *object_file_transaction_begin(struct odb_source *source)
        return odb->transaction;
 }
 
-void object_file_transaction_commit(struct odb_transaction *transaction)
+void odb_transaction_files_commit(struct odb_transaction *transaction)
 {
        if (!transaction)
                return;
index 1229d5f675b44aa002cb49d9cdafe6842405cf2c..b4a3341a890dc4b7d3d7fe49cecead9add4cfdc7 100644 (file)
@@ -202,16 +202,16 @@ struct odb_transaction;
 
 /*
  * Tell the object database to optimize for adding
- * multiple objects. object_file_transaction_commit must be called
+ * multiple objects. odb_transaction_files_commit must be called
  * to make new objects visible. If a transaction is already
  * pending, NULL is returned.
  */
-struct odb_transaction *object_file_transaction_begin(struct odb_source *source);
+struct odb_transaction *odb_transaction_files_begin(struct odb_source *source);
 
 /*
  * Tell the object database to make any objects from the
  * current transaction visible.
  */
-void object_file_transaction_commit(struct odb_transaction *transaction);
+void odb_transaction_files_commit(struct odb_transaction *transaction);
 
 #endif /* OBJECT_FILE_H */
diff --git a/odb.c b/odb.c
index ac70b6a099f5882862f55e0650f7f502a65cc1aa..a5e6fd01a930aff3c6c3f640cf5bc7a60dc2ec94 100644 (file)
--- a/odb.c
+++ b/odb.c
@@ -1153,10 +1153,10 @@ void odb_reprepare(struct object_database *o)
 
 struct odb_transaction *odb_transaction_begin(struct object_database *odb)
 {
-       return object_file_transaction_begin(odb->sources);
+       return odb_transaction_files_begin(odb->sources);
 }
 
 void odb_transaction_commit(struct odb_transaction *transaction)
 {
-       object_file_transaction_commit(transaction);
+       odb_transaction_files_commit(transaction);
 }