Re: [PATCH 02/15] refs.c: make ref_transaction_delete a wrapper for ref_transaction_update

2014-10-23 Thread Junio C Hamano
Ronnie Sahlberg sahlb...@google.com writes:

 commit 0beeda259297c92d411ecc92fa508ec7cfd87cc5 upstream.

 Change-Id: I685291986e544a8dc14f94c73b6a7c6400acd9d2
 Signed-off-by: Ronnie Sahlberg sahlb...@google.com
 Signed-off-by: Jonathan Nieder jrnie...@gmail.com
 ---
  refs.c | 22 ++
  refs.h |  2 +-
  2 files changed, 3 insertions(+), 21 deletions(-)

Nice code reduction.


 diff --git a/refs.c b/refs.c
 index ed0485e..c607ab7 100644
 --- a/refs.c
 +++ b/refs.c
 @@ -3633,26 +3633,8 @@ int ref_transaction_delete(struct ref_transaction 
 *transaction,
  int flags, int have_old, const char *msg,
  struct strbuf *err)
  {
 - struct ref_update *update;
 -
 - assert(err);
 -
 - if (transaction-state != REF_TRANSACTION_OPEN)
 - die(BUG: delete called for transaction that is not open);
 -
 - if (have_old  !old_sha1)
 - die(BUG: have_old is true but old_sha1 is NULL);
 -
 - update = add_update(transaction, refname);
 - update-flags = flags;
 - update-have_old = have_old;
 - if (have_old) {
 - assert(!is_null_sha1(old_sha1));
 - hashcpy(update-old_sha1, old_sha1);
 - }
 - if (msg)
 - update-msg = xstrdup(msg);
 - return 0;
 + return ref_transaction_update(transaction, refname, null_sha1,
 +   old_sha1, flags, have_old, msg, err);
  }
  
  int update_ref(const char *action, const char *refname,
 diff --git a/refs.h b/refs.h
 index 2bc3556..7d675b7 100644
 --- a/refs.h
 +++ b/refs.h
 @@ -283,7 +283,7 @@ struct ref_transaction *ref_transaction_begin(struct 
 strbuf *err);
  
  /*
   * Add a reference update to transaction.  new_sha1 is the value that
 - * the reference should have after the update, or zeros if it should
 + * the reference should have after the update, or null_sha1 if it should
   * be deleted.  If have_old is true, then old_sha1 holds the value
   * that the reference should have had before the update, or zeros if
   * it must not have existed beforehand.
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 02/15] refs.c: make ref_transaction_delete a wrapper for ref_transaction_update

2014-10-21 Thread Ronnie Sahlberg
commit 0beeda259297c92d411ecc92fa508ec7cfd87cc5 upstream.

Change-Id: I685291986e544a8dc14f94c73b6a7c6400acd9d2
Signed-off-by: Ronnie Sahlberg sahlb...@google.com
Signed-off-by: Jonathan Nieder jrnie...@gmail.com
---
 refs.c | 22 ++
 refs.h |  2 +-
 2 files changed, 3 insertions(+), 21 deletions(-)

diff --git a/refs.c b/refs.c
index ed0485e..c607ab7 100644
--- a/refs.c
+++ b/refs.c
@@ -3633,26 +3633,8 @@ int ref_transaction_delete(struct ref_transaction 
*transaction,
   int flags, int have_old, const char *msg,
   struct strbuf *err)
 {
-   struct ref_update *update;
-
-   assert(err);
-
-   if (transaction-state != REF_TRANSACTION_OPEN)
-   die(BUG: delete called for transaction that is not open);
-
-   if (have_old  !old_sha1)
-   die(BUG: have_old is true but old_sha1 is NULL);
-
-   update = add_update(transaction, refname);
-   update-flags = flags;
-   update-have_old = have_old;
-   if (have_old) {
-   assert(!is_null_sha1(old_sha1));
-   hashcpy(update-old_sha1, old_sha1);
-   }
-   if (msg)
-   update-msg = xstrdup(msg);
-   return 0;
+   return ref_transaction_update(transaction, refname, null_sha1,
+ old_sha1, flags, have_old, msg, err);
 }
 
 int update_ref(const char *action, const char *refname,
diff --git a/refs.h b/refs.h
index 2bc3556..7d675b7 100644
--- a/refs.h
+++ b/refs.h
@@ -283,7 +283,7 @@ struct ref_transaction *ref_transaction_begin(struct strbuf 
*err);
 
 /*
  * Add a reference update to transaction.  new_sha1 is the value that
- * the reference should have after the update, or zeros if it should
+ * the reference should have after the update, or null_sha1 if it should
  * be deleted.  If have_old is true, then old_sha1 holds the value
  * that the reference should have had before the update, or zeros if
  * it must not have existed beforehand.
-- 
2.1.0.rc2.206.gedb03e5

--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 02/15] refs.c: make ref_transaction_delete a wrapper for ref_transaction_update

2014-07-23 Thread Ronnie Sahlberg
Signed-off-by: Ronnie Sahlberg sahlb...@google.com
---
 refs.c | 17 +
 refs.h |  2 +-
 2 files changed, 6 insertions(+), 13 deletions(-)

diff --git a/refs.c b/refs.c
index 8f2aa3a..74fb797 100644
--- a/refs.c
+++ b/refs.c
@@ -3506,24 +3506,17 @@ int ref_transaction_delete(struct ref_transaction 
*transaction,
   int flags, int have_old, const char *msg,
   struct strbuf *err)
 {
-   struct ref_update *update;
-
if (transaction-state != REF_TRANSACTION_OPEN)
die(BUG: delete called for transaction that is not open);
 
if (have_old  !old_sha1)
die(BUG: have_old is true but old_sha1 is NULL);
 
-   update = add_update(transaction, refname);
-   update-flags = flags;
-   update-have_old = have_old;
-   if (have_old) {
-   assert(!is_null_sha1(old_sha1));
-   hashcpy(update-old_sha1, old_sha1);
-   }
-   if (msg)
-   update-msg = xstrdup(msg);
-   return 0;
+   if (have_old  is_null_sha1(old_sha1))
+   die(BUG: have_old is true but old_sha1 is null_sha1);
+
+   return ref_transaction_update(transaction, refname, null_sha1,
+ old_sha1, flags, have_old, msg, err);
 }
 
 int update_ref(const char *action, const char *refname,
diff --git a/refs.h b/refs.h
index 1c08cfd..f680b19 100644
--- a/refs.h
+++ b/refs.h
@@ -275,7 +275,7 @@ struct ref_transaction *ref_transaction_begin(struct strbuf 
*err);
 
 /*
  * Add a reference update to transaction.  new_sha1 is the value that
- * the reference should have after the update, or zeros if it should
+ * the reference should have after the update, or null_sha1 if it should
  * be deleted.  If have_old is true and old_sha is not the null_sha1
  * then the previous value of the ref must match or the update will fail.
  * If have_old is true and old_sha1 is the null_sha1 then the ref must not
-- 
2.0.1.508.g763ab16

--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html