* [PATCH] gitweb: reset input record separator in parse_commit even on error
@ 2006-09-09 15:12 Sven Verdoolaege
2006-09-09 20:51 ` Jeff King
0 siblings, 1 reply; 3+ messages in thread
From: Sven Verdoolaege @ 2006-09-09 15:12 UTC (permalink / raw)
To: Jakub Narebski; +Cc: git
---
This probably never happens, but just in case...
gitweb/gitweb.perl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 7afdf33..60dd598 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -897,8 +897,8 @@ sub parse_commit {
my $fd = git_pipe("rev-list", "--header", "--parents", "--max-count=1", $commit_id)
or return;
@commit_lines = split '\n', <$fd>;
- close $fd or return;
$/ = "\n";
+ close $fd or return;
pop @commit_lines;
}
my $header = shift @commit_lines;
--
0.99.8c.g64e8-dirty
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] gitweb: reset input record separator in parse_commit even on error
2006-09-09 15:12 [PATCH] gitweb: reset input record separator in parse_commit even on error Sven Verdoolaege
@ 2006-09-09 20:51 ` Jeff King
2006-09-09 22:00 ` Jakub Narebski
0 siblings, 1 reply; 3+ messages in thread
From: Jeff King @ 2006-09-09 20:51 UTC (permalink / raw)
To: Sven Verdoolaege; +Cc: Jakub Narebski, git
On Sat, Sep 09, 2006 at 05:12:36PM +0200, Sven Verdoolaege wrote:
> diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
> index 7afdf33..60dd598 100755
> --- a/gitweb/gitweb.perl
> +++ b/gitweb/gitweb.perl
> @@ -897,8 +897,8 @@ sub parse_commit {
> my $fd = git_pipe("rev-list", "--header", "--parents", "--max-count=1", $commit_id)
> or return;
> @commit_lines = split '\n', <$fd>;
> - close $fd or return;
> $/ = "\n";
> + close $fd or return;
> pop @commit_lines;
> }
> my $header = shift @commit_lines;
You missed the other early return from git_pipe. However, I think the
approach is wrong; this is a great opportunity to use the dynamic
scoping offered by 'local':
else {
local $/ = "\0";
# do stuff with $/ as "\0"
}
# $/ has automatically been reset at the end of the block
Looking further at this bit of code, it seems even more confusing,
though. We split the output of rev-list on NUL, grab presumably the
entire thing (since there shouldn't be any NULs in the output, right?)
and then split it on newline into a list. Why aren't we doing this:
else {
open my $fd, ...;
@commit_lines = map { chomp; $_ } <$fd>;
...
-Peff
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] gitweb: reset input record separator in parse_commit even on error
2006-09-09 20:51 ` Jeff King
@ 2006-09-09 22:00 ` Jakub Narebski
0 siblings, 0 replies; 3+ messages in thread
From: Jakub Narebski @ 2006-09-09 22:00 UTC (permalink / raw)
To: git
Jeff King wrote:
> On Sat, Sep 09, 2006 at 05:12:36PM +0200, Sven Verdoolaege wrote:
>
>> diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
>> index 7afdf33..60dd598 100755
>> --- a/gitweb/gitweb.perl
>> +++ b/gitweb/gitweb.perl
>> @@ -897,8 +897,8 @@ sub parse_commit {
>> my $fd = git_pipe("rev-list", "--header", "--parents", "--max-count=1", $commit_id)
>> or return;
>> @commit_lines = split '\n', <$fd>;
>> - close $fd or return;
>> $/ = "\n";
>> + close $fd or return;
>> pop @commit_lines;
>> }
>> my $header = shift @commit_lines;
>
> You missed the other early return from git_pipe. However, I think the
> approach is wrong; this is a great opportunity to use the dynamic
> scoping offered by 'local':
>
> else {
> local $/ = "\0";
> # do stuff with $/ as "\0"
> }
> # $/ has automatically been reset at the end of the block
And this should be done consistently, for all plain formats
(blob_plain, blobdiff_plain, commitdiff_plain), and some other
places.
Sometimes it is
local $/ = "\0";
more often
local $/ = undef;
(or equivalently but slightly less human friendly, just 'local $/');
> Looking further at this bit of code, it seems even more confusing,
> though. We split the output of rev-list on NUL, grab presumably the
> entire thing (since there shouldn't be any NULs in the output, right?)
> and then split it on newline into a list. Why aren't we doing this:
> else {
> open my $fd, ...;
> @commit_lines = map { chomp; $_ } <$fd>;
> ...
That is because by default git-rev-list separates output for different
commits (when --header option is used) bu NULL... only because of
"--max-count=1" there is only _one_ record... nevertheless it ends with
"\0" (NULL) character.
--
Jakub Narebski
Warsaw, Poland
ShadeHawk on #git
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-09-09 22:00 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-09 15:12 [PATCH] gitweb: reset input record separator in parse_commit even on error Sven Verdoolaege
2006-09-09 20:51 ` Jeff King
2006-09-09 22:00 ` Jakub Narebski
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).