From: Junio C Hamano <gitster@pobox.com>
To: "阿德烈 via GitGitGadget" <gitgitgadget@gmail.com>
Cc: git@vger.kernel.org, 阿德烈 <adlternative@gmail.com>
Subject: Re: [PATCH] git-difftool-helper.sh: learn a new way skip to save point
Date: Sun, 07 Feb 2021 11:04:47 -0800 [thread overview]
Message-ID: <xmqq8s7z8zsg.fsf@gitster.c.googlers.com> (raw)
In-Reply-To: <pull.870.git.1612711153591.gitgitgadget@gmail.com> (=?utf-8?B?IumYv+W+t+eDiA==?= via GitGitGadget"'s message of "Sun, 07 Feb 2021 15:19:13 +0000")
Sorry, but a not-yet-written reply went out by accident; please
discard it.
> `git difftool` only allow us to select file to view In turn.
Funny capitalization "In"?
> If there is a commit with many files and we exit in search,
> We will have to traverse list again to get the file diff which
> we want to see.Therefore,here is a new method:every time before
It makes it hard to lack SP after punctuation like '.', ',', and
':'.
> we view the file diff,the current coordinates will be stored in
> `GIT_DIR/difftool_skip_to`,this file will be deleted after
> successful traversing.But if an unexpected exit occurred midway,
> git will view the coordinates in the save point,ask user if they
> want continue from the last saved point.This will improve the
> user experience.
I think the idea sounds good. Admittedly I do not use difftool
myself, so I do not even know if and how the current end user
experience is so bad to require a patch like this (e.g. I do not
know how "unexpected exit" is "unexpected"---isn't it the end user
initiated action to "quit", or does the tool crash or something?).
So I won't be the best qualified person to judge if the solution
presented is the best one for the problem.
$ git shortlog --no-merges git-diff-helper.sh
might be a good way to find whom to ask for review and help.
Having said that, I do have one opinion on the "skip-to" filename.
I do not think it is wise to call it after the purpose you want to
use it for (i.e. "I want to use it to skip to the recorded
position"). Instead, if the file records "the last visited
position", it is better to name it after that
(e.g. "difftool-last-position". If it records "the next file to be
visited", then "difftool-next-file" may be a good name).
The reason is because your first design may be to visit the file the
user was visiting before the "crash" happened, but you may later
want to revise the design to allow the user to say "start at one
file before the file I was visiting" etc. The location recorded in
the file may still be used to decide where the code skips to when
restarting, but no longer exactly where the code "skips to". If you
name it after what it is, not what it is (currently) used for, the
design would become clearer.
> diff --git a/git-difftool--helper.sh b/git-difftool--helper.sh
> index 46af3e60b718..56ec1d38a7a1 100755
> --- a/git-difftool--helper.sh
> +++ b/git-difftool--helper.sh
> @@ -6,6 +6,7 @@
> # Copyright (c) 2009, 2010 David Aguilar
>
> TOOL_MODE=diff
> +GIT_DIFFTOOL_SKIP_TO_FILE="$GIT_DIR/difftool-skip-to"
> . git-mergetool--lib
>
> # difftool.prompt controls the default prompt/no-prompt behavior
> @@ -40,6 +41,31 @@ launch_merge_tool () {
> # the user with the real $MERGED name before launching $merge_tool.
> if should_prompt
> then
> + if test -f "$GIT_DIFFTOOL_SKIP_TO_FILE"
> + then
> + SAVE_POINT_NUM=$(cat "$GIT_DIFFTOOL_SKIP_TO_FILE")
You can avoid the TOCTTOU race by
if SAVE_POINT=$(cat 2>/dev/null "$GIT_DIFFTOOL_SKIP_TO_FILE")
then
but that wouldn't probably matter in this application.
> + if test $SAVE_POINT_NUM -le $GIT_DIFF_PATH_TOTAL &&
> + test $SAVE_POINT_NUM -gt $GIT_DIFF_PATH_COUNTER
Think what happens if the file is corrupt and SAVE_POINT_NUM has (1)
an empty string, (2) garbage that has $IFS whitespace, (3) non
number, in it. At least, quoting the variable inside double-quotes,
i.e. "$SAVE_POINT_NUM", would help an error condition reported
correctly at the runtime.
> + then
> + # choice skip or not skip when check first file.
A bit funny language. Isn't the code clear enough without this comment?
> + if test $GIT_DIFF_PATH_COUNTER -eq "1"
No need to quote the constant "1"; quoting the variable side may be
a good practice, even though I think in this codepath we know
GIT_DIFF_PATH_COUNTER is a well-formatted number.
> + then
> + printf "do you want to skip to last time difftool save point($SAVE_POINT_NUM) [Y/n]?"
"Skip" is probably an implementation detail that the user does not
have to know. "Do you want to start from the last file you were
viewing?", perhaps?
> + read skip_ans || return
> + if test "$skip_ans" = y
> + then
> + return
> + fi
> + else
> + return
> + fi
> + fi
> + fi
> + # write the current coordinates to .git/difftool-skip-to
> + if test !$SAVE_POINT_NUM || $SAVE_POINT_NUM -ne $GIT_DIFF_PATH_COUNTER
Have this code been tested? I think "test" is missing after the
"||", and I am not quite sure what you are trying to check with
"test !$SAVE_POINT_NUM", either. The "test" utility, when given a
non-operator string (like "!23" this one is checking when the last
visited path was the 23rd one), returns true if the string is not an
empty string, and by definition a string made by appending anything
after "!" would not be empty, so the entire "|| $SAVE_POINT_NUM ..."
have been skipped in your test, I think.
Is writing the current position to the file unconditionally good
enough? After all, we are about to go interactive with the user, so
the body of this "if" statement won't be performance critical in any
sense, no? Or is there something more subtle going on and
correctness of the code depends on this condition? I cannot quite
tell.
> + then
> + echo $GIT_DIFF_PATH_COUNTER > $GIT_DIFFTOOL_SKIP_TO_FILE
echo "$GIT_DIFF_PATH_COUNTER" >"$GIT_DIFFTOOL_SKIP_TO_FILE"
cf. Documentation/CodingGuidelines
- Redirection operators should be written with space before, but no
space after them. In other words, write 'echo test >"$file"'
instead of 'echo test> $file' or 'echo test > $file'. Note that
even though it is not required by POSIX to double-quote the
redirection target in a variable (as shown above), our code does so
because some versions of bash issue a warning without the quotes.
(incorrect)
cat hello > world < universe
echo hello >$world
(correct)
cat hello >world <universe
echo hello >"$world"
> + fi
> printf "\nViewing (%s/%s): '%s'\n" "$GIT_DIFF_PATH_COUNTER" \
> "$GIT_DIFF_PATH_TOTAL" "$MERGED"
> if use_ext_cmd
> @@ -102,4 +128,10 @@ else
> done
> fi
>
> +if test -f $GIT_DIFFTOOL_SKIP_TO_FILE &&
> + test $GIT_DIFF_PATH_COUNTER -eq $GIT_DIFF_PATH_TOTAL
> +then
> + rm $GIT_DIFFTOOL_SKIP_TO_FILE
> +
> +fi
> exit 0
Wouldn't it be simpler to clear when we have reached at the end, i.e.
if test "$GIT_DIFF_PATH_COUNTER" -eq "$GIT_DIFF_PATH_TOTAL"
then
rm -f "$GIT_DIFFTOOL_SKIP_TO_FILE"
fi
Thanks.
next prev parent reply other threads:[~2021-02-07 19:06 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-07 15:19 [PATCH] git-difftool-helper.sh: learn a new way skip to save point 阿德烈 via GitGitGadget
2021-02-07 18:29 ` Junio C Hamano
2021-02-07 19:04 ` Junio C Hamano [this message]
2021-02-08 8:06 ` 胡哲宁
2021-02-08 17:02 ` [PATCH v2] git-difftool-helper.sh: learn a new way go back to last " ZheNing Hu via GitGitGadget
2021-02-08 20:13 ` Junio C Hamano
2021-02-08 22:15 ` David Aguilar
2021-02-08 23:34 ` Junio C Hamano
2021-02-09 6:19 ` 胡哲宁
2021-02-09 6:04 ` 胡哲宁
2021-02-09 15:30 ` [PATCH v3] difftool.c: learn a new way start from specified file ZheNing Hu via GitGitGadget
2021-02-09 18:17 ` Junio C Hamano
2021-02-10 17:00 ` 胡哲宁
2021-02-10 18:16 ` Junio C Hamano
2021-02-10 20:05 ` Junio C Hamano
2021-02-14 7:53 ` ZheNing Hu
2021-02-14 13:09 ` [PATCH v4] difftool.c: learn a new way start at " ZheNing Hu via GitGitGadget
2021-02-16 1:46 ` Junio C Hamano
2021-02-16 12:56 ` [PATCH v5 0/2] " ZheNing Hu via GitGitGadget
2021-02-16 12:56 ` [PATCH v5 1/2] diff: --{rotate,skip}-to=<path> Junio C Hamano via GitGitGadget
2021-02-16 12:56 ` [PATCH v5 2/2] difftool.c: learn a new way start at specified file ZheNing Hu via GitGitGadget
2021-02-17 10:31 ` Junio C Hamano
2021-02-17 16:18 ` ZheNing Hu
2021-02-16 18:45 ` [PATCH v5 0/2] " Junio C Hamano
2021-02-17 4:12 ` ZheNing Hu
2021-02-17 11:14 ` Denton Liu
2021-02-17 11:40 ` ZheNing Hu
2021-02-17 18:56 ` Junio C Hamano
2021-02-18 5:20 ` ZheNing Hu
2021-02-18 15:04 ` ZheNing Hu
2021-02-18 19:11 ` Junio C Hamano
2021-02-19 10:59 ` ZheNing Hu
2021-02-25 11:08 ` Johannes Schindelin
2021-02-25 19:01 ` Junio C Hamano
2021-02-19 12:53 ` [PATCH v6] " ZheNing Hu via GitGitGadget
2021-02-22 15:11 ` ZheNing Hu
2021-02-22 21:40 ` 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
List information: http://vger.kernel.org/majordomo-info.html
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=xmqq8s7z8zsg.fsf@gitster.c.googlers.com \
--to=gitster@pobox.com \
--cc=adlternative@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitgitgadget@gmail.com \
/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.
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).