git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Michael Haggerty <mhagger@alum.mit.edu>
To: "brian m. carlson" <sandals@crustytoothpaste.net>, git@vger.kernel.org
Cc: Jeff King <peff@peff.net>
Subject: Re: [PATCH 13/17] refs: convert each_reflog_ent_fn to struct object_id
Date: Mon, 2 Jan 2017 16:07:16 +0100	[thread overview]
Message-ID: <49fcccfa-df28-c01b-0e51-1451ecf8e784@alum.mit.edu> (raw)
In-Reply-To: <20170101191847.564741-14-sandals@crustytoothpaste.net>

On 01/01/2017 08:18 PM, brian m. carlson wrote:
> Make each_reflog_ent_fn take two struct object_id pointers instead of
> two pointers to unsigned char.  Convert the various callbacks to use
> struct object_id as well.  Also, rename fsck_handle_reflog_sha1 to
> fsck_handle_reflog_oid.
> 
> Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
> ---
>  builtin/fsck.c       | 16 ++++++++--------
>  builtin/merge-base.c |  6 +++---
>  builtin/reflog.c     |  2 +-
>  reflog-walk.c        |  6 +++---
>  refs.c               | 24 ++++++++++++------------
>  refs.h               |  2 +-
>  refs/files-backend.c | 24 ++++++++++++------------
>  revision.c           | 12 ++++++------
>  sha1_name.c          |  2 +-
>  wt-status.c          |  6 +++---
>  10 files changed, 50 insertions(+), 50 deletions(-)
> 
> [...]
> diff --git a/refs/files-backend.c b/refs/files-backend.c
> index f9023939d..3da3141ee 100644
> --- a/refs/files-backend.c
> +++ b/refs/files-backend.c
> @@ -3113,15 +3113,15 @@ static int files_delete_reflog(struct ref_store *ref_store,
>  
>  static int show_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn, void *cb_data)
>  {
> -	unsigned char osha1[20], nsha1[20];
> +	struct object_id ooid, noid;
>  	char *email_end, *message;
>  	unsigned long timestamp;
>  	int tz;
>  
>  	/* old SP new SP name <email> SP time TAB msg LF */
>  	if (sb->len < 83 || sb->buf[sb->len - 1] != '\n' ||
> -	    get_sha1_hex(sb->buf, osha1) || sb->buf[40] != ' ' ||
> -	    get_sha1_hex(sb->buf + 41, nsha1) || sb->buf[81] != ' ' ||
> +	    get_oid_hex(sb->buf, &ooid) || sb->buf[40] != ' ' ||
> +	    get_oid_hex(sb->buf + 41, &noid) || sb->buf[81] != ' ' ||

Some magic numbers above could be converted to use constants.

>  	    !(email_end = strchr(sb->buf + 82, '>')) ||
>  	    email_end[1] != ' ' ||
>  	    !(timestamp = strtoul(email_end + 2, &message, 10)) ||
> @@ -3136,7 +3136,7 @@ static int show_one_reflog_ent(struct strbuf *sb, each_reflog_ent_fn fn, void *c
>  		message += 6;
>  	else
>  		message += 7;
> -	return fn(osha1, nsha1, sb->buf + 82, timestamp, tz, message, cb_data);
> +	return fn(&ooid, &noid, sb->buf + 82, timestamp, tz, message, cb_data);

Here, too.

>  }
>  
>  static char *find_beginning_of_line(char *bob, char *scan)
> [...]
> @@ -4047,14 +4047,14 @@ static int files_reflog_expire(struct ref_store *ref_store,
>  		 */
>  		int update = (flags & EXPIRE_REFLOGS_UPDATE_REF) &&
>  			!(type & REF_ISSYMREF) &&
> -			!is_null_sha1(cb.last_kept_sha1);
> +			!is_null_oid(&cb.last_kept_oid);
>  
>  		if (close_lock_file(&reflog_lock)) {
>  			status |= error("couldn't write %s: %s", log_file,
>  					strerror(errno));
>  		} else if (update &&
>  			   (write_in_full(get_lock_file_fd(lock->lk),
> -				sha1_to_hex(cb.last_kept_sha1), 40) != 40 ||
> +				oid_to_hex(&cb.last_kept_oid), 40) != 40 ||

More magic numbers above.

>  			    write_str_in_full(get_lock_file_fd(lock->lk), "\n") != 1 ||
>  			    close_ref(lock) < 0)) {
>  			status |= error("couldn't write %s",
> [...]

I thought it would make sense to convert `struct read_ref_at_cb` in
`refs.c` to use `struct object_id` at the same time, but I see that
would require the interface to `read_ref_at()` to change. I guess it's
important to pick your battles in this campaign :-)

Michael


  reply	other threads:[~2017-01-02 15:07 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-01 19:18 [PATCH 00/17] object_id part 6 brian m. carlson
2017-01-01 19:18 ` [PATCH 01/17] builtin/commit: convert to struct object_id brian m. carlson
2017-01-01 19:18 ` [PATCH 02/17] builtin/diff-tree: " brian m. carlson
2017-01-01 19:18 ` [PATCH 03/17] builtin/describe: " brian m. carlson
2017-01-01 19:18 ` [PATCH 04/17] builtin/fast-export: " brian m. carlson
2017-01-01 19:18 ` [PATCH 05/17] builtin/fmt-merge-message: " brian m. carlson
2017-01-01 19:18 ` [PATCH 06/17] builtin/grep: " brian m. carlson
2017-01-01 19:18 ` [PATCH 07/17] builtin/branch: " brian m. carlson
2017-01-01 19:18 ` [PATCH 08/17] builtin/clone: " brian m. carlson
2017-01-01 19:18 ` [PATCH 09/17] builtin/merge: " brian m. carlson
2017-01-02 14:34   ` Michael Haggerty
2017-01-01 19:18 ` [PATCH 10/17] Convert remaining callers of resolve_refdup to object_id brian m. carlson
2017-01-01 19:18 ` [PATCH 11/17] builtin/replace: convert to struct object_id brian m. carlson
2017-01-01 19:18 ` [PATCH 12/17] reflog-walk: convert struct reflog_info " brian m. carlson
2017-01-01 19:18 ` [PATCH 13/17] refs: convert each_reflog_ent_fn " brian m. carlson
2017-01-02 15:07   ` Michael Haggerty [this message]
     [not found]     ` <20170102191256.fjqsns3rgjyehzgp@genre.crustytoothpaste.net>
2017-01-02 23:30       ` Michael Haggerty
2017-01-03  1:32         ` Jeff King
2017-01-01 19:18 ` [PATCH 14/17] sha1_file: introduce an nth_packed_object_oid function brian m. carlson
2017-01-02 15:30   ` Michael Haggerty
2017-01-02 17:09     ` Jeff King
2017-01-02 18:18       ` Michael Haggerty
2017-01-02 18:22         ` Jeff King
2017-01-01 19:18 ` [PATCH 15/17] Convert object iteration callbacks to struct object_id brian m. carlson
2017-01-01 19:18 ` [PATCH 16/17] builtin/merge-base: convert " brian m. carlson
2017-01-01 19:18 ` [PATCH 17/17] wt-status: " brian m. carlson
2017-01-02 15:37 ` [PATCH 00/17] object_id part 6 Michael Haggerty

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=49fcccfa-df28-c01b-0e51-1451ecf8e784@alum.mit.edu \
    --to=mhagger@alum.mit.edu \
    --cc=git@vger.kernel.org \
    --cc=peff@peff.net \
    --cc=sandals@crustytoothpaste.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).