From: Patrick Steinhardt <ps@pks.im>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org, Jeff King <peff@peff.net>,
Han Jiang <jhcarl0814@gmail.com>
Subject: Re: [PATCH 3/4] builtin/remote: rework how remote refs get renamed
Date: Tue, 29 Jul 2025 10:43:29 +0200 [thread overview]
Message-ID: <aIiJsdPrGrhZYis5@pks.im> (raw)
In-Reply-To: <xmqqbjp4w7uu.fsf@gitster.g>
On Mon, Jul 28, 2025 at 10:19:53AM -0700, Junio C Hamano wrote:
> Patrick Steinhardt <ps@pks.im> writes:
>
> > But more importantly it is also extremely inperformant. The number of
>
> Is "inperformant" a real word? "it performs extremely poorly"?
Well, in my head it is :) But it doesn't seem to exist anywhere else, so
I'll reword this.
> > +static void renamed_refname(struct rename_info *rename,
> > + const char *refname,
> > + struct strbuf *out)
> > +{
> > + strbuf_reset(out);
> > + strbuf_addstr(out, refname);
> > + strbuf_splice(out, strlen("refs/remotes/"), strlen(rename->old_name),
> > + rename->new_name, strlen(rename->new_name));
> > +}
> > +
>
> The function name felt somewhat iffy (sounded as if you are letting
> a third-party know that you have renamed a ref), but I cannot come
> up with a better alternative X-<.
We could name it `compute_renamed_refname()` to make it a bit more
verb-y.
> > +static int rename_one_reflog_entry(const char *old_refname UNUSED,
> > + struct object_id *old_oid,
> > + struct object_id *new_oid,
> > + const char *committer,
> > + timestamp_t timestamp, int tz,
> > + const char *msg, void *cb_data)
> > {
> > struct rename_info *rename = cb_data;
>
> Using a name of a system call for an unrelated variable, even if a
> local one in a function scope, makes me nauseous. Not a new problem
> introduced by this change, though.
Yeah, I don't love it, either.
> > +static int rename_one_reflog(const char *old_refname,
> > + const struct object_id *old_oid,
> > + struct rename_info *rename)
> > +{
> > + struct strbuf *message = rename->buf1;
>
> As these temporary strbuf's passed around as part of the rename_info
> structure are never released or recreated during the run, this is
> safe, but feels dirty, because we saw rename_one_reflog_entry() uses
> this exact one for totally different purpose. Perhaps it would make
> it easier to follow if you left "message" uninitialized here, before
> refs_for_each_reflog_ent() returns. And then ...
>
> > + int error;
> > +
> > + if (!refs_reflog_exists(get_main_ref_store(the_repository), old_refname))
> > + return 0;
> > +
> > + error = refs_for_each_reflog_ent(get_main_ref_store(the_repository),
> > + old_refname, rename_one_reflog_entry, rename);
> > + if (error < 0)
> > + return error;
> > +
> > + /*
> > + * Manually write the reflog entry for the now-renamed ref. We cannot
> > + * rely on `rename_one_ref()` to do this for us as that would screw
> > + * over order in which reflog entries are being written.
> > + *
> > + * Furthermore, we only append the entry in case the reference
> > + * resolves. Missing references shouldn't have reflogs anyway.
> > + */
>
> ... give the "message" synonym to rename->buf1 here.
I was quite on the edge whether these buffers are really worth it in the
first place as an optimization -- I mostly adopted it from the migration
code. But I've benchmarked it now and couldn't really make out much of a
difference at all. So let's just drop all of this buffer reusing infra.
> > +static int rename_one_ref(const char *old_refname, const char *referent,
> > + const struct object_id *oid,
> > + int flags, void *cb_data)
> > +{
> > + struct rename_info *rename = cb_data;
> > + struct strbuf *new_referent = rename->buf1;
> > + const char *ptr = old_refname;
> > + int error;
> > +
> > + if (!skip_prefix(ptr, "refs/remotes/", &ptr) ||
> > + !skip_prefix(ptr, rename->old_name, &ptr) ||
> > + !skip_prefix(ptr, "/", &ptr)) {
> > + error = 0;
> > + goto out;
> > }
> > - strbuf_release(&buf);
> >
> > - return 0;
> > + renamed_refname(rename, old_refname, rename->new_refname);
> > +
> > + if (flags & REF_ISSYMREF) {
> > + /*
> > + * Stupidly enough `referent` is not pointing to the immediate
> > + * target of a symref, but it's the recursively resolved value.
> > + * So symrefs pointing to symrefs would be misresolved, and
> > + * unborn symrefs don't have any value for the `referent` at all.
> > + */
> > + referent = refs_resolve_ref_unsafe(get_main_ref_store(the_repository),
> > + old_refname, RESOLVE_REF_NO_RECURSE,
> > + NULL, NULL);
> > + renamed_refname(rename, referent, new_referent);
> > + oid = NULL;
>
> Yuck, but this cannot be helped, I guess X-<.
I dunno. I feel like this is something we should eventually fix.
Currently this is misleading and basically useless.
#leftoverbits
Patrick
next prev parent reply other threads:[~2025-07-29 8:43 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-28 13:08 [PATCH 0/4] builtin/remote: rework how remote refs get renamed Patrick Steinhardt
2025-07-28 13:08 ` [PATCH 1/4] refs: pass refname when invoking reflog entry callback Patrick Steinhardt
2025-07-28 15:59 ` Justin Tobler
2025-07-28 16:07 ` Junio C Hamano
2025-07-29 20:30 ` Karthik Nayak
2025-07-31 8:28 ` Patrick Steinhardt
2025-07-28 13:08 ` [PATCH 2/4] refs: simplify logic when migrating reflog entries Patrick Steinhardt
2025-07-28 16:08 ` Justin Tobler
2025-07-28 16:21 ` Junio C Hamano
2025-07-28 13:08 ` [PATCH 3/4] builtin/remote: rework how remote refs get renamed Patrick Steinhardt
2025-07-28 17:19 ` Junio C Hamano
2025-07-29 8:43 ` Patrick Steinhardt [this message]
2025-07-28 18:47 ` Justin Tobler
2025-07-28 18:57 ` Junio C Hamano
2025-07-29 8:43 ` Patrick Steinhardt
2025-07-29 8:16 ` Jeff King
2025-07-29 12:24 ` Patrick Steinhardt
2025-08-02 10:48 ` Jeff King
2025-07-28 13:08 ` [PATCH 4/4] builtin/remote: only iterate through refs that are to be renamed Patrick Steinhardt
2025-07-28 17:43 ` Junio C Hamano
2025-07-30 7:53 ` Karthik Nayak
2025-07-31 8:28 ` Patrick Steinhardt
2025-07-28 15:43 ` [PATCH 0/4] builtin/remote: rework how remote refs get renamed Junio C Hamano
2025-07-31 14:56 ` [PATCH v2 0/6] " Patrick Steinhardt
2025-07-31 14:56 ` [PATCH v2 1/6] refs: pass refname when invoking reflog entry callback Patrick Steinhardt
2025-07-31 14:56 ` [PATCH v2 2/6] refs: simplify logic when migrating reflog entries Patrick Steinhardt
2025-07-31 14:56 ` [PATCH v2 3/6] builtin/remote: fix sign comparison warnings Patrick Steinhardt
2025-07-31 14:56 ` [PATCH v2 4/6] builtin/remote: determine whether refs need renaming early on Patrick Steinhardt
2025-07-31 14:56 ` [PATCH v2 5/6] builtin/remote: rework how remote refs get renamed Patrick Steinhardt
2025-08-02 10:45 ` Jeff King
2025-08-04 6:54 ` Patrick Steinhardt
2025-07-31 14:56 ` [PATCH v2 6/6] builtin/remote: only iterate through refs that are to be renamed Patrick Steinhardt
2025-07-31 19:15 ` [PATCH v2 0/6] builtin/remote: rework how remote refs get renamed Junio C Hamano
2025-08-01 4:59 ` Patrick Steinhardt
2025-08-01 16:43 ` Junio C Hamano
2025-08-04 6:51 ` Patrick Steinhardt
2025-08-04 18:24 ` Junio C Hamano
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=aIiJsdPrGrhZYis5@pks.im \
--to=ps@pks.im \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jhcarl0814@gmail.com \
--cc=peff@peff.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).