From: Junio C Hamano <gitster@pobox.com>
To: Patrick Steinhardt <ps@pks.im>
Cc: Johannes Schindelin via GitGitGadget <gitgitgadget@gmail.com>,
git@vger.kernel.org,
Johannes Schindelin <johannes.schindelin@gmx.de>
Subject: Re: [PATCH] ci(win+Meson): build in Release mode, avoiding t7001-mv hangs
Date: Tue, 29 Apr 2025 13:48:18 -0700 [thread overview]
Message-ID: <xmqqplgu4ru5.fsf@gitster.g> (raw)
In-Reply-To: <aBDD-NeN2YoQbU9S@pks.im> (Patrick Steinhardt's message of "Tue, 29 Apr 2025 14:20:08 +0200")
Patrick Steinhardt <ps@pks.im> writes:
> @@ -213,6 +228,8 @@ int cmd_mv(int argc,
> struct cache_entry *ce;
> struct string_list only_match_skip_worktree = STRING_LIST_INIT_DUP;
> struct string_list dirty_paths = STRING_LIST_INIT_DUP;
> + struct hashmap moved_dirs = HASHMAP_INIT(pathmap_cmp, NULL);
> + struct strbuf pathbuf = STRBUF_INIT;
> int ret;
>
> git_config(git_default_config, NULL);
> @@ -331,11 +348,17 @@ int cmd_mv(int argc,
>
> dir_check:
> if (S_ISDIR(st.st_mode)) {
> + struct pathmap_entry *entry;
> char *dst_with_slash;
> size_t dst_with_slash_len;
> int j, n;
> int first = index_name_pos(the_repository->index, src, length), last;
>
> + entry = xmalloc(sizeof(*entry));
> + entry->path = src;
> + hashmap_entry_init(&entry->ent, fspathhash(src));
> + hashmap_add(&moved_dirs, &entry->ent);
> +
OK, this collects in moved_dirs the directories that will get moved.
And then a separate loop, ...
> + for (i = 0; i < argc; i++) {
> + const char *slash_pos;
> +
> + strbuf_addstr(&pathbuf, sources.v[i]);
Shouldn't there be a call to strbuf_reset(&pathbuf) before doing
this?
> + slash_pos = strrchr(pathbuf.buf, '/');
And start from the deepest directory, going one level up per
iteration, ...
> + while (slash_pos > pathbuf.buf) {
> + struct pathmap_entry needle;
> +
> + strbuf_setlen(&pathbuf, slash_pos - pathbuf.buf);
> +
> + needle.path = pathbuf.buf;
> + hashmap_entry_init(&needle.ent, fspathhash(pathbuf.buf));
... see if the path being moved falls within that subdirectory.
> + if (!hashmap_get_entry(&moved_dirs, &needle, ent, NULL))
> + continue;
If there is no overlap, we need to do anything special.
> + if (!ignore_errors)
> + die(_("cannot move both parent directory '%s' and its child '%s'"),
> + pathbuf.buf, sources.v[i]);
Otherwise we are in trouble.
> + if (--argc > 0) {
> + int n = argc - i;
> + strvec_remove(&sources, i);
> + strvec_remove(&destinations, i);
> + MOVE_ARRAY(modes + i, modes + i + 1, n);
> + MOVE_ARRAY(submodule_gitfiles + i,
> + submodule_gitfiles + i + 1, n);
> + i--;
> + break;
> + }
So with
$ git mv a/ a/b x y z/
then a/ is left in the argv[]/sources[]/destinations[] arrays, and
upon inspecting a/b, we come here and in order to ignore a/b, we
shift it out; the resulting arrays would have a/, x, and y being
moved to z/.
It somehow feels troubling that it would lead to a different result
if I give a morally equivalent arguments, i.e.
$ git mv a/b a/ x y z/
where a/b survives and a/ gets omitted.
One thing that came to my mind (without concrete "here is the right
way to solve it" that I am myself convinced) is this.
* Should this code path even have its own ignore-errors handling?
"git mv a b z/", when 'a' does not exist, may ignore 'a' and move
only 'b', which may make sense. But the original command line in
that case is a plausibly correct one if there weren't missing or
unmovable paths. The command line "git mv a/ a/b z/" seems to
fall into a different category (aka "total nonsense"); no matter
how you fix the items in your working tree files, you cannot make
it plausibly correct.
a totally unrelated tangent that made me scratch my head while
reading the original ocde is the dest_paths variable. It is never
used as a collection to hold potentially multiple paths; it is a
strvec only to be able to call internel_prefix_pathspec() with, and
used only once with only one element in the vector. At least it
should lose the plural 's' suffix to unconfuse its readers, I would
think.
next prev parent reply other threads:[~2025-04-29 20:48 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-25 15:05 [PATCH] ci(win+Meson): build in Release mode, avoiding t7001-mv hangs Johannes Schindelin via GitGitGadget
2025-04-25 15:18 ` Junio C Hamano
2025-04-28 7:47 ` Patrick Steinhardt
2025-04-28 17:01 ` Junio C Hamano
2025-04-29 12:20 ` Patrick Steinhardt
2025-04-29 20:48 ` Junio C Hamano [this message]
2025-04-30 8:58 ` Patrick Steinhardt
2025-04-30 12:46 ` Patrick Steinhardt
2025-04-29 20:57 ` Kristoffer Haugsbakk
2025-05-03 14:25 ` [PATCH v2] ci(win+Meson): build in Release mode Johannes Schindelin via GitGitGadget
2025-05-05 6:06 ` Patrick Steinhardt
2025-05-05 7:27 ` Johannes Schindelin
2025-05-05 9:43 ` Patrick Steinhardt
2025-05-05 15:54 ` Junio C Hamano
2025-05-06 7:57 ` Patrick Steinhardt
2025-05-06 8:32 ` Johannes Schindelin
2025-05-08 18:19 ` 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=xmqqplgu4ru5.fsf@gitster.g \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=gitgitgadget@gmail.com \
--cc=johannes.schindelin@gmx.de \
--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).