* [PATCH] rev-list: use hdr_termination instead of a always using a newline
@ 2016-10-20 18:19 Jacob Keller
2016-10-20 18:49 ` Dennis Kaarsemaker
2016-10-20 18:54 ` Junio C Hamano
0 siblings, 2 replies; 4+ messages in thread
From: Jacob Keller @ 2016-10-20 18:19 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano, Dennis Kaarsemaker, Jacob Keller
From: Jacob Keller <jacob.keller@gmail.com>
When adding support for prefixing output of log and other commands using
--line-prefix, commit 660e113ce118 ("graph: add support for
--line-prefix on all graph-aware output", 2016-08-31) accidentally
broke rev-list --header output.
In order to make the output appear with a line-prefix, the flow was
changed to always use the graph subsystem for display. Unfortunately
the graph flow in rev-list did not use info->hdr_termination as it was
assumed that graph output would never need to putput NULs.
Since we now always use the graph code in order to handle the case of
line-prefix, simply replace putchar('\n') with
putchar(info->hdr_termination) which will correct this issue.
Add a test for the --header case to make sure we don't break it in the
future. Implement a helper function test_ends_with_nul() to make it more
obvious what sort of check we are looking for.
Reported-by: Dennis Kaarsemaker <dennis@kaarsemaker.net>
Signed-off-by: Jacob Keller <jacob.keller@gmail.com>
---
Here's my solution, with an updated test using a helper function based
on using sed (which I think is more portable than tail -n1 ?). The
change actually is very simple. I ran the test suite and it appears to
be not breaking anyone else since the normal case is
hdr_termination="\n" except in the cases where it needs to be NUL.
Thanks for the bug report!
builtin/rev-list.c | 2 +-
t/t6000-rev-list-misc.sh | 11 +++++++++++
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/builtin/rev-list.c b/builtin/rev-list.c
index 8479f6ed28aa..c43decda7011 100644
--- a/builtin/rev-list.c
+++ b/builtin/rev-list.c
@@ -145,7 +145,7 @@ static void show_commit(struct commit *commit, void *data)
*/
if (buf.len && buf.buf[buf.len - 1] == '\n')
graph_show_padding(revs->graph);
- putchar('\n');
+ putchar(info->hdr_termination);
} else {
/*
* If the message buffer is empty, just show
diff --git a/t/t6000-rev-list-misc.sh b/t/t6000-rev-list-misc.sh
index 3e752ce03280..e8c6979baf59 100755
--- a/t/t6000-rev-list-misc.sh
+++ b/t/t6000-rev-list-misc.sh
@@ -4,6 +4,12 @@ test_description='miscellaneous rev-list tests'
. ./test-lib.sh
+test_ends_with_nul() {
+ printf "\0" >nul
+ sed '$!d' "$@" >contents
+ test_cmp_bin nul contents
+}
+
test_expect_success setup '
echo content1 >wanted_file &&
echo content2 >unwanted_file &&
@@ -100,4 +106,9 @@ test_expect_success '--bisect and --first-parent can not be combined' '
test_must_fail git rev-list --bisect --first-parent HEAD
'
+test_expect_success '--header shows a NUL after each commit' '
+ git rev-list --header --max-count=1 HEAD | sed \$!d >actual &&
+ test_ends_with_nul actual
+'
+
test_done
--
2.10.0.560.g867c144
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] rev-list: use hdr_termination instead of a always using a newline
2016-10-20 18:19 [PATCH] rev-list: use hdr_termination instead of a always using a newline Jacob Keller
@ 2016-10-20 18:49 ` Dennis Kaarsemaker
2016-10-20 18:54 ` Junio C Hamano
1 sibling, 0 replies; 4+ messages in thread
From: Dennis Kaarsemaker @ 2016-10-20 18:49 UTC (permalink / raw)
To: Jacob Keller, git; +Cc: Junio C Hamano, Jacob Keller
On Thu, 2016-10-20 at 11:19 -0700, Jacob Keller wrote:
> Here's my solution, with an updated test using a helper function based
> on using sed (which I think is more portable than tail -n1 ?). The
> change actually is very simple. I ran the test suite and it appears to
> be not breaking anyone else since the normal case is
> hdr_termination="\n" except in the cases where it needs to be NUL.
>
> Thanks for the bug report!
I like both improvements, and both 'make test' and gitweb are happy
with this version. Thanks for the quick fix.
D.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] rev-list: use hdr_termination instead of a always using a newline
2016-10-20 18:19 [PATCH] rev-list: use hdr_termination instead of a always using a newline Jacob Keller
2016-10-20 18:49 ` Dennis Kaarsemaker
@ 2016-10-20 18:54 ` Junio C Hamano
2016-10-20 20:05 ` Jacob Keller
1 sibling, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2016-10-20 18:54 UTC (permalink / raw)
To: Jacob Keller; +Cc: git, Dennis Kaarsemaker, Jacob Keller
Jacob Keller <jacob.e.keller@intel.com> writes:
> diff --git a/t/t6000-rev-list-misc.sh b/t/t6000-rev-list-misc.sh
> index 3e752ce03280..e8c6979baf59 100755
> --- a/t/t6000-rev-list-misc.sh
> +++ b/t/t6000-rev-list-misc.sh
> @@ -4,6 +4,12 @@ test_description='miscellaneous rev-list tests'
>
> . ./test-lib.sh
>
> +test_ends_with_nul() {
> + printf "\0" >nul
> + sed '$!d' "$@" >contents
> + test_cmp_bin nul contents
> +}
> +
> test_expect_success setup '
> echo content1 >wanted_file &&
> echo content2 >unwanted_file &&
> @@ -100,4 +106,9 @@ test_expect_success '--bisect and --first-parent can not be combined' '
> test_must_fail git rev-list --bisect --first-parent HEAD
> '
>
> +test_expect_success '--header shows a NUL after each commit' '
> + git rev-list --header --max-count=1 HEAD | sed \$!d >actual &&
> + test_ends_with_nul actual
> +'
> +
> test_done
Thanks.
The main part of the patch looks good. For "passing NUL to sed",
I'd probably work it around like so:
t/t6000-rev-list-misc.sh | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/t/t6000-rev-list-misc.sh b/t/t6000-rev-list-misc.sh
index e8c6979baf..737026c34f 100755
--- a/t/t6000-rev-list-misc.sh
+++ b/t/t6000-rev-list-misc.sh
@@ -4,12 +4,6 @@ test_description='miscellaneous rev-list tests'
. ./test-lib.sh
-test_ends_with_nul() {
- printf "\0" >nul
- sed '$!d' "$@" >contents
- test_cmp_bin nul contents
-}
-
test_expect_success setup '
echo content1 >wanted_file &&
echo content2 >unwanted_file &&
@@ -107,8 +101,17 @@ test_expect_success '--bisect and --first-parent can not be combined' '
'
test_expect_success '--header shows a NUL after each commit' '
- git rev-list --header --max-count=1 HEAD | sed \$!d >actual &&
- test_ends_with_nul actual
+ # We know there is no Q in the true payload; names and
+ # addresses of the authors and the committers do not have
+ # any, and object names or header names do not, either.
+ git rev-list --header --max-count=2 HEAD |
+ nul_to_q |
+ grep "^Q" >actual &&
+ cat >expect <<-EOF &&
+ Q$(git rev-parse HEAD~1)
+ Q
+ EOF
+ test_cmp expect actual
'
test_done
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] rev-list: use hdr_termination instead of a always using a newline
2016-10-20 18:54 ` Junio C Hamano
@ 2016-10-20 20:05 ` Jacob Keller
0 siblings, 0 replies; 4+ messages in thread
From: Jacob Keller @ 2016-10-20 20:05 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Jacob Keller, Git mailing list, Dennis Kaarsemaker
On Thu, Oct 20, 2016 at 11:54 AM, Junio C Hamano <gitster@pobox.com> wrote:
>
> The main part of the patch looks good. For "passing NUL to sed",
> I'd probably work it around like so:
>
Yep. I wasn't sure on the test as it was, because of the portability concern.
> t/t6000-rev-list-misc.sh | 19 +++++++++++--------
> 1 file changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/t/t6000-rev-list-misc.sh b/t/t6000-rev-list-misc.sh
> index e8c6979baf..737026c34f 100755
> --- a/t/t6000-rev-list-misc.sh
> +++ b/t/t6000-rev-list-misc.sh
> @@ -4,12 +4,6 @@ test_description='miscellaneous rev-list tests'
>
> . ./test-lib.sh
>
> -test_ends_with_nul() {
> - printf "\0" >nul
> - sed '$!d' "$@" >contents
> - test_cmp_bin nul contents
> -}
> -
> test_expect_success setup '
> echo content1 >wanted_file &&
> echo content2 >unwanted_file &&
> @@ -107,8 +101,17 @@ test_expect_success '--bisect and --first-parent can not be combined' '
> '
>
> test_expect_success '--header shows a NUL after each commit' '
> - git rev-list --header --max-count=1 HEAD | sed \$!d >actual &&
> - test_ends_with_nul actual
> + # We know there is no Q in the true payload; names and
> + # addresses of the authors and the committers do not have
> + # any, and object names or header names do not, either.
> + git rev-list --header --max-count=2 HEAD |
> + nul_to_q |
> + grep "^Q" >actual &&
> + cat >expect <<-EOF &&
> + Q$(git rev-parse HEAD~1)
> + Q
> + EOF
> + test_cmp expect actual
> '
>
> test_done
I will squash this in and re-send.
Thanks,
Jake
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-10-20 20:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-20 18:19 [PATCH] rev-list: use hdr_termination instead of a always using a newline Jacob Keller
2016-10-20 18:49 ` Dennis Kaarsemaker
2016-10-20 18:54 ` Junio C Hamano
2016-10-20 20:05 ` Jacob Keller
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).