]> git.ipfire.org Git - thirdparty/git.git/commitdiff
refs: extract packed_refs_delete_refs() to allow control of transaction
authorPatrick Steinhardt <ps@pks.im>
Mon, 17 Jan 2022 08:12:31 +0000 (09:12 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 17 Jan 2022 19:01:44 +0000 (11:01 -0800)
When deleting loose refs, then we also have to delete the refs in the
packed backend. This is done by calling `refs_delete_refs()`, which
then uses the packed-backend's logic to delete refs. This doesn't allow
us to exercise any control over the reference transaction which is being
created in the packed backend, which is required in a subsequent commit.

Extract a new function `packed_refs_delete_refs()`, which hosts most of
the logic to delete refs except for creating the transaction itself.
Like this, we can easily create the transaction in the files backend
and thus exert more control over it.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
refs/files-backend.c
refs/packed-backend.c
refs/packed-backend.h

index 90b671025a742d743cfeac118348de516c0425f9..459f18dbc1cfbcdf6afcc6c9bcbff12672efdb94 100644 (file)
@@ -1249,6 +1249,7 @@ static int files_delete_refs(struct ref_store *ref_store, const char *msg,
 {
        struct files_ref_store *refs =
                files_downcast(ref_store, REF_STORE_WRITE, "delete_refs");
+       struct ref_transaction *transaction = NULL;
        struct strbuf err = STRBUF_INIT;
        int i, result = 0;
 
@@ -1258,10 +1259,14 @@ static int files_delete_refs(struct ref_store *ref_store, const char *msg,
        if (packed_refs_lock(refs->packed_ref_store, 0, &err))
                goto error;
 
-       if (refs_delete_refs(refs->packed_ref_store, msg, refnames, flags)) {
-               packed_refs_unlock(refs->packed_ref_store);
+       transaction = ref_store_transaction_begin(refs->packed_ref_store, &err);
+       if (!transaction)
+               goto error;
+
+       result = packed_refs_delete_refs(refs->packed_ref_store,
+                                        transaction, msg, refnames, flags);
+       if (result)
                goto error;
-       }
 
        packed_refs_unlock(refs->packed_ref_store);
 
@@ -1272,6 +1277,7 @@ static int files_delete_refs(struct ref_store *ref_store, const char *msg,
                        result |= error(_("could not remove reference %s"), refname);
        }
 
+       ref_transaction_free(transaction);
        strbuf_release(&err);
        return result;
 
@@ -1288,6 +1294,7 @@ error:
        else
                error(_("could not delete references: %s"), err.buf);
 
+       ref_transaction_free(transaction);
        strbuf_release(&err);
        return -1;
 }
index 67152c664e2e4bb0ee92d3f2ebc19cdd9840c895..c964dd1617621019619c2a46a813d1d11b59280a 100644 (file)
@@ -1522,15 +1522,10 @@ static int packed_initial_transaction_commit(struct ref_store *ref_store,
 static int packed_delete_refs(struct ref_store *ref_store, const char *msg,
                             struct string_list *refnames, unsigned int flags)
 {
-       struct packed_ref_store *refs =
-               packed_downcast(ref_store, REF_STORE_WRITE, "delete_refs");
        struct strbuf err = STRBUF_INIT;
        struct ref_transaction *transaction;
-       struct string_list_item *item;
        int ret;
 
-       (void)refs; /* We need the check above, but don't use the variable */
-
        if (!refnames->nr)
                return 0;
 
@@ -1544,6 +1539,26 @@ static int packed_delete_refs(struct ref_store *ref_store, const char *msg,
        if (!transaction)
                return -1;
 
+       ret = packed_refs_delete_refs(ref_store, transaction,
+                                     msg, refnames, flags);
+
+       ref_transaction_free(transaction);
+       return ret;
+}
+
+int packed_refs_delete_refs(struct ref_store *ref_store,
+                           struct ref_transaction *transaction,
+                           const char *msg,
+                           struct string_list *refnames,
+                           unsigned int flags)
+{
+       struct strbuf err = STRBUF_INIT;
+       struct string_list_item *item;
+       int ret;
+
+       /* Assert that the ref store refers to a packed backend. */
+       packed_downcast(ref_store, REF_STORE_WRITE, "delete_refs");
+
        for_each_string_list_item(item, refnames) {
                if (ref_transaction_delete(transaction, item->string, NULL,
                                           flags, msg, &err)) {
@@ -1563,7 +1578,6 @@ static int packed_delete_refs(struct ref_store *ref_store, const char *msg,
                        error(_("could not delete references: %s"), err.buf);
        }
 
-       ref_transaction_free(transaction);
        strbuf_release(&err);
        return ret;
 }
index f61a73ec25b4cb55d96bac23ada11a53e2781f95..a2cca5d9a38323d1b6fcffcbd8c0d4f53745452e 100644 (file)
@@ -3,6 +3,7 @@
 
 struct repository;
 struct ref_transaction;
+struct string_list;
 
 /*
  * Support for storing references in a `packed-refs` file.
@@ -27,6 +28,12 @@ int packed_refs_lock(struct ref_store *ref_store, int flags, struct strbuf *err)
 void packed_refs_unlock(struct ref_store *ref_store);
 int packed_refs_is_locked(struct ref_store *ref_store);
 
+int packed_refs_delete_refs(struct ref_store *ref_store,
+                           struct ref_transaction *transaction,
+                           const char *msg,
+                           struct string_list *refnames,
+                           unsigned int flags);
+
 /*
  * Return true if `transaction` really needs to be carried out against
  * the specified packed_ref_store, or false if it can be skipped