refs.c: change ref_transaction_update() to do error checking and return status
Update ref_transaction_update() do some basic error checking and return non-zero on error. Update all callers to check ref_transaction_update() for error. There are currently no conditions in _update that will return error but there will be in the future. Add an err argument that will be updated on failure. In future patches we will start doing both locking and checking for name conflicts in _update instead of _commit at which time this function will start returning errors for these conditions. Also check for BUGs during update and die(BUG:...) if we are calling _update with have_old but the old_sha1 pointer is NULL. Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Ronnie Sahlberg <sahlberg@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com> Acked-by: Michael Haggerty <mhagger@alum.mit.edu>
This commit is contained in:
parent
01319837c5
commit
8e34800e5b
@ -16,6 +16,7 @@ static struct ref_transaction *transaction;
|
|||||||
|
|
||||||
static char line_termination = '\n';
|
static char line_termination = '\n';
|
||||||
static int update_flags;
|
static int update_flags;
|
||||||
|
static struct strbuf err = STRBUF_INIT;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Parse one whitespace- or NUL-terminated, possibly C-quoted argument
|
* Parse one whitespace- or NUL-terminated, possibly C-quoted argument
|
||||||
@ -197,8 +198,9 @@ static const char *parse_cmd_update(struct strbuf *input, const char *next)
|
|||||||
if (*next != line_termination)
|
if (*next != line_termination)
|
||||||
die("update %s: extra input: %s", refname, next);
|
die("update %s: extra input: %s", refname, next);
|
||||||
|
|
||||||
ref_transaction_update(transaction, refname, new_sha1, old_sha1,
|
if (ref_transaction_update(transaction, refname, new_sha1, old_sha1,
|
||||||
update_flags, have_old);
|
update_flags, have_old, &err))
|
||||||
|
die("%s", err.buf);
|
||||||
|
|
||||||
update_flags = 0;
|
update_flags = 0;
|
||||||
free(refname);
|
free(refname);
|
||||||
@ -286,8 +288,9 @@ static const char *parse_cmd_verify(struct strbuf *input, const char *next)
|
|||||||
if (*next != line_termination)
|
if (*next != line_termination)
|
||||||
die("verify %s: extra input: %s", refname, next);
|
die("verify %s: extra input: %s", refname, next);
|
||||||
|
|
||||||
ref_transaction_update(transaction, refname, new_sha1, old_sha1,
|
if (ref_transaction_update(transaction, refname, new_sha1, old_sha1,
|
||||||
update_flags, have_old);
|
update_flags, have_old, &err))
|
||||||
|
die("%s", err.buf);
|
||||||
|
|
||||||
update_flags = 0;
|
update_flags = 0;
|
||||||
free(refname);
|
free(refname);
|
||||||
@ -342,7 +345,6 @@ int cmd_update_ref(int argc, const char **argv, const char *prefix)
|
|||||||
const char *refname, *oldval, *msg = NULL;
|
const char *refname, *oldval, *msg = NULL;
|
||||||
unsigned char sha1[20], oldsha1[20];
|
unsigned char sha1[20], oldsha1[20];
|
||||||
int delete = 0, no_deref = 0, read_stdin = 0, end_null = 0, flags = 0;
|
int delete = 0, no_deref = 0, read_stdin = 0, end_null = 0, flags = 0;
|
||||||
struct strbuf err = STRBUF_INIT;
|
|
||||||
struct option options[] = {
|
struct option options[] = {
|
||||||
OPT_STRING( 'm', NULL, &msg, N_("reason"), N_("reason of the update")),
|
OPT_STRING( 'm', NULL, &msg, N_("reason"), N_("reason of the update")),
|
||||||
OPT_BOOL('d', NULL, &delete, N_("delete the reference")),
|
OPT_BOOL('d', NULL, &delete, N_("delete the reference")),
|
||||||
|
12
refs.c
12
refs.c
@ -3428,19 +3428,25 @@ static struct ref_update *add_update(struct ref_transaction *transaction,
|
|||||||
return update;
|
return update;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ref_transaction_update(struct ref_transaction *transaction,
|
int ref_transaction_update(struct ref_transaction *transaction,
|
||||||
const char *refname,
|
const char *refname,
|
||||||
const unsigned char *new_sha1,
|
const unsigned char *new_sha1,
|
||||||
const unsigned char *old_sha1,
|
const unsigned char *old_sha1,
|
||||||
int flags, int have_old)
|
int flags, int have_old,
|
||||||
|
struct strbuf *err)
|
||||||
{
|
{
|
||||||
struct ref_update *update = add_update(transaction, refname);
|
struct ref_update *update;
|
||||||
|
|
||||||
|
if (have_old && !old_sha1)
|
||||||
|
die("BUG: have_old is true but old_sha1 is NULL");
|
||||||
|
|
||||||
|
update = add_update(transaction, refname);
|
||||||
hashcpy(update->new_sha1, new_sha1);
|
hashcpy(update->new_sha1, new_sha1);
|
||||||
update->flags = flags;
|
update->flags = flags;
|
||||||
update->have_old = have_old;
|
update->have_old = have_old;
|
||||||
if (have_old)
|
if (have_old)
|
||||||
hashcpy(update->old_sha1, old_sha1);
|
hashcpy(update->old_sha1, old_sha1);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ref_transaction_create(struct ref_transaction *transaction,
|
void ref_transaction_create(struct ref_transaction *transaction,
|
||||||
|
8
refs.h
8
refs.h
@ -246,12 +246,16 @@ struct ref_transaction *ref_transaction_begin(void);
|
|||||||
* be deleted. If have_old is true, then old_sha1 holds the value
|
* 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
|
* that the reference should have had before the update, or zeros if
|
||||||
* it must not have existed beforehand.
|
* it must not have existed beforehand.
|
||||||
|
* Function returns 0 on success and non-zero on failure. A failure to update
|
||||||
|
* means that the transaction as a whole has failed and will need to be
|
||||||
|
* rolled back. On failure the err buffer will be updated.
|
||||||
*/
|
*/
|
||||||
void ref_transaction_update(struct ref_transaction *transaction,
|
int ref_transaction_update(struct ref_transaction *transaction,
|
||||||
const char *refname,
|
const char *refname,
|
||||||
const unsigned char *new_sha1,
|
const unsigned char *new_sha1,
|
||||||
const unsigned char *old_sha1,
|
const unsigned char *old_sha1,
|
||||||
int flags, int have_old);
|
int flags, int have_old,
|
||||||
|
struct strbuf *err);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Add a reference creation to transaction. new_sha1 is the value
|
* Add a reference creation to transaction. new_sha1 is the value
|
||||||
|
Loading…
Reference in New Issue
Block a user