From: Taylor Blau <me@ttaylorr.com>
To: Patrick Steinhardt <ps@pks.im>
Cc: git@vger.kernel.org
Subject: Re: [PATCH 5/6] packfile: introduce macro to iterate through packs
Date: Wed, 8 Oct 2025 17:15:54 -0400 [thread overview]
Message-ID: <aObUivWiMdtprQSu@nand.local> (raw)
In-Reply-To: <20251007-pks-packfiles-convert-get-all-v1-5-428227657a89@pks.im>
On Tue, Oct 07, 2025 at 02:41:11PM +0200, Patrick Steinhardt wrote:
> We have a bunch of different sites that want to iterate through all
> packs of a given `struct packfile_store`. This pattern is somewhat
> verbose and repetitive, which makes it somewhat cumbersome.
>
> Introduce a new macro `packfile_store_for_each_pack()` that removes some
> of the boilerplate.
Makes sense.
Since we're talking about adding a convenience macro, I wonder if it
might make sense to name/treat this one slightly differently. I would
imagine something like:
repo_for_each_pack(the_repository, p) { ... }
I understand that packfile_store_for_each_pack() is trying to operate on
a single packfile_source. In practice, would someone ever want to
iterate over the packfiles in some source but not another one? It's hard
to know the answer to that question right now without any other
implementations.
Perhaps in the meantime you could imagine doing something similar to
your macro, but instead of reading from the store directly, it could
read from the repository's store _and_ BUG() if there is more than one
store to choose from.
I get that that may be counterproductive to your goal here of getting
the tree prepared to handle multiple object sources. Another approach
might be to keep the proposed semantics, but call it "for_each_pack()"
instead of "packfile_store_for_each_pack()".
I know that the latter is our preferred convention, but I am not sure
that the rule makes total sense in this case. It is obvious from
"for_each_pack()" alone that we are iterating over packs, and the only
way to obtain a collection of packs is from the a packfile_store. So
here I think that the "packfile_store_" prefix is doing more harm than
good by making the code overly verbose.
> diff --git a/builtin/fsck.c b/builtin/fsck.c
> index 8ee95e0d67..5462c442dc 100644
> --- a/builtin/fsck.c
> +++ b/builtin/fsck.c
> @@ -869,18 +869,19 @@ static int check_pack_rev_indexes(struct repository *r, int show_progress)
> {
> struct packfile_store *packs = r->objects->packfiles;
> struct progress *progress = NULL;
> + struct packed_git *p;
I wondered if this needed to be in scope for the whole function, and
looking just at the first portion of this hunk it seems like it does
not. But continuing to read further down shows other spots where it is
beneficial to have "p" defined at the scope of the whole function.
> uint32_t pack_count = 0;
> int res = 0;
>
> if (show_progress) {
> - for (struct packed_git *p = packfile_store_get_all_packs(packs); p; p = p->next)
> + packfile_store_for_each_pack(packs, p)
> pack_count++;
This conversion looks obviously correct. Though I wonder, as an aside,
do you think it makes sense to have a packfile_store_num_packs()
function or similar that does this for us?
Thanks,
Taylor
next prev parent reply other threads:[~2025-10-08 21:15 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-07 12:41 [PATCH 0/6] packfile: remove `packfile_store_get_packs()` Patrick Steinhardt
2025-10-07 12:41 ` [PATCH 1/6] object-name: convert to use `packfile_store_get_all_packs()` Patrick Steinhardt
2025-10-08 20:21 ` Taylor Blau
2025-10-07 12:41 ` [PATCH 2/6] builtin/gc: " Patrick Steinhardt
2025-10-08 20:25 ` Taylor Blau
2025-10-09 6:36 ` Patrick Steinhardt
2025-10-07 12:41 ` [PATCH 3/6] builtin/grep: simplify how we preload packs Patrick Steinhardt
2025-10-08 20:43 ` Taylor Blau
2025-10-07 12:41 ` [PATCH 4/6] packfile: drop `packfile_store_get_packs()` Patrick Steinhardt
2025-10-08 20:44 ` Taylor Blau
2025-10-07 12:41 ` [PATCH 5/6] packfile: introduce macro to iterate through packs Patrick Steinhardt
2025-10-08 21:15 ` Taylor Blau [this message]
2025-10-09 6:36 ` Patrick Steinhardt
2025-10-07 12:41 ` [PATCH 6/6] packfile: rename `packfile_store_get_all_packs()` Patrick Steinhardt
2025-10-08 20:48 ` Taylor Blau
2025-10-09 6:36 ` Patrick Steinhardt
2025-10-09 8:01 ` [PATCH v2 0/6] packfile: remove `packfile_store_get_packs()` Patrick Steinhardt
2025-10-09 8:01 ` [PATCH v2 1/6] object-name: convert to use `packfile_store_get_all_packs()` Patrick Steinhardt
2025-10-14 19:07 ` Justin Tobler
2025-10-09 8:01 ` [PATCH v2 2/6] builtin/gc: " Patrick Steinhardt
2025-10-09 8:01 ` [PATCH v2 3/6] builtin/grep: simplify how we preload packs Patrick Steinhardt
2025-10-09 8:01 ` [PATCH v2 4/6] packfile: drop `packfile_store_get_packs()` Patrick Steinhardt
2025-10-14 19:11 ` Justin Tobler
2025-10-09 8:01 ` [PATCH v2 5/6] packfile: introduce macro to iterate through packs Patrick Steinhardt
2025-10-14 19:17 ` Justin Tobler
2025-10-09 8:01 ` [PATCH v2 6/6] packfile: rename `packfile_store_get_all_packs()` Patrick Steinhardt
2025-10-14 19:19 ` [PATCH v2 0/6] packfile: remove `packfile_store_get_packs()` Justin Tobler
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=aObUivWiMdtprQSu@nand.local \
--to=me@ttaylorr.com \
--cc=git@vger.kernel.org \
--cc=ps@pks.im \
/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).