X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FViewDiff.pm;h=d22c80b97b4871a00dba47f3e8b055bd1659ab06;hb=7ff686e90a4f26fb7c0ab29fa461329086dd28e5;hp=b2dcbf8fedd3f599a71473e446ef962e02b2729e;hpb=95bdac7f09c69036efed537a4d03d5bdd2ae4eb6;p=public-inbox.git diff --git a/lib/PublicInbox/ViewDiff.pm b/lib/PublicInbox/ViewDiff.pm index b2dcbf8f..d22c80b9 100644 --- a/lib/PublicInbox/ViewDiff.pm +++ b/lib/PublicInbox/ViewDiff.pm @@ -20,9 +20,28 @@ sub UNSAFE () { "^A-Za-z0-9\-\._~/" } my $OID_NULL = '0{7,40}'; my $OID_BLOB = '[a-f0-9]{7,40}'; +my $LF = qr!\n!; +my $ANY = qr![^\n]!; +my $FN = qr!(?:"?[^/\n]+/[^\n]+|/dev/null)!; # cf. git diff.c :: get_compact_summary -my $DIFFSTAT_COMMENT = qr/\((?:new|gone|(?:(?:new|mode) [\+\-][lx]))\)/; +my $DIFFSTAT_COMMENT = + qr/(?: *\((?:new|gone|(?:(?:new|mode) [\+\-][lx]))\))? *\z/s; +my $NULL_TO_BLOB = qr/^(index $OID_NULL\.\.)($OID_BLOB)\b/ms; +my $BLOB_TO_NULL = qr/^index ($OID_BLOB)(\.\.$OID_NULL)\b/ms; +my $BLOB_TO_BLOB = qr/^index ($OID_BLOB)\.\.($OID_BLOB)/ms; +my $EXTRACT_DIFFS = qr/( + (?: # begin header stuff, don't capture filenames, here, + # but instead wait for the --- and +++ lines. + (?:^diff\x20--git\x20$FN\x20$FN$LF) + + # old mode || new mode || copy|rename|deleted|... + (?:^[a-z]$ANY+$LF)* + )? # end of optional stuff, everything below is required + ^index\x20($OID_BLOB)\.\.($OID_BLOB)$ANY*$LF + ^---\x20($FN)$LF + ^\+{3}\x20($FN)$LF)/msx; +my $IS_OID = qr/\A$OID_BLOB\z/s; # link to line numbers in blobs sub diff_hunk ($$$$) { @@ -59,7 +78,7 @@ sub anchor0 ($$$$) { # So only do best-effort handling of renames for common cases; # which works well in practice. If projects put "=>", or trailing # spaces in filenames, oh well :P - $fn =~ s/(?: *$DIFFSTAT_COMMENT)? *\z//so; + $fn =~ s/$DIFFSTAT_COMMENT//; $fn =~ s/{(?:.+) => (.+)}/$1/ or $fn =~ s/.* => (.+)/$1/; $fn = git_unquote($fn); @@ -106,17 +125,18 @@ sub diff_header ($$$$) { my (undef, undef, $pa, $pb) = splice(@$top, 0, 4); # ignore oid_{a,b} my $spfx = $ctx->{-spfx}; my $dctx = { spfx => $spfx }; + + # get rid of leading "a/" or "b/" (or whatever --{src,dst}-prefix are) + $pa = (split('/', git_unquote($pa), 2))[1] if $pa ne '/dev/null'; + $pb = (split('/', git_unquote($pb), 2))[1] if $pb ne '/dev/null'; if ($pa eq $pb && $pb ne '/dev/null') { - $pa = $pb = (split('/', git_unquote($pb), 2))[1]; $dctx->{Q} = "?b=".uri_escape_utf8($pb, UNSAFE); } else { my @q; if ($pb ne '/dev/null') { - $pb = (split('/', git_unquote($pb), 2))[1]; push @q, 'b='.uri_escape_utf8($pb, UNSAFE); } if ($pa ne '/dev/null') { - $pa = (split('/', git_unquote($pa), 2))[1]; push @q, 'a='.uri_escape_utf8($pa, UNSAFE); } $dctx->{Q} = '?'.join('&', @q); @@ -128,18 +148,17 @@ sub diff_header ($$$$) { # no need to capture oid_a and oid_b on add/delete, # we just linkify OIDs directly via s///e in conditional - if (($$x =~ s/^(index $OID_NULL\.\.)($OID_BLOB)\b/ - $1 . oid($dctx, $spfx, $2)/emos) || - ($$x =~ s/^index ($OID_BLOB)(\.\.$OID_NULL)\b/ - 'index ' . oid($dctx, $spfx, $1) . $2/emos)) { - } elsif ($$x =~ /^index ($OID_BLOB)\.\.($OID_BLOB)/mos) { + if (($$x =~ s/$NULL_TO_BLOB/$1 . oid($dctx, $spfx, $2)/e) || + ($$x =~ s/$BLOB_TO_NULL/ + 'index ' . oid($dctx, $spfx, $1) . $2/e)) { + } elsif ($$x =~ $BLOB_TO_BLOB) { # modification-only, not add/delete: # linkify hunk headers later using oid_a and oid_b @$dctx{qw(oid_a oid_b)} = ($1, $2); } else { warn "BUG? <$$x> had no ^index line"; } - $$x =~ s!^diff --git!anchor1($ctx, $pb) // 'diff --git'!emos; + $$x =~ s!^diff --git!anchor1($ctx, $pb) // 'diff --git'!ems; $$dst .= qq(); $$dst .= $$x; $$dst .= ''; @@ -149,8 +168,8 @@ sub diff_header ($$$$) { sub diff_before_or_after ($$$) { my ($dst, $ctx, $x) = @_; my $linkify = $ctx->{-linkify}; - for my $y (split(/(^---\r?\n)/sm, $$x)) { - if ($y =~ /\A---\r?\n\z/s) { + for my $y (split(/(^---\n)/sm, $$x)) { + if ($y =~ /\A---\n\z/s) { $$dst .= "---\n"; # all HTML is "\r\n" => "\n" } elsif ($y =~ /^ [0-9]+ files? changed, /sm) { # ok, looks like a diffstat, go line-by-line: @@ -166,23 +185,11 @@ sub diff_before_or_after ($$$) { } } +# callers must do CRLF => LF conversion before calling this sub flush_diff ($$$) { my ($dst, $ctx, $cur) = @_; - state $LF = qr!\r?\n!; - state $ANY = qr![^\r\n]!; - state $FN = qr!(?:"?[^/\n]+/[^\r\n]+|/dev/null)!; - my @top = split(/( - (?: # begin header stuff, don't capture filenames, here, - # but instead wait for the --- and +++ lines. - (?:^diff\x20--git\x20$FN\x20$FN$LF) - - # old mode || new mode || copy|rename|deleted|... - (?:^[a-z]$ANY+$LF)* - )? # end of optional stuff, everything below is required - ^index\x20($OID_BLOB)\.\.($OID_BLOB)$ANY*$LF - ^---\x20($FN)$LF - ^\+{3}\x20($FN)$LF)/smxo, $$cur); + my @top = split($EXTRACT_DIFFS, $$cur); $$cur = undef; my $linkify = $ctx->{-linkify}; @@ -190,8 +197,8 @@ sub flush_diff ($$$) { while (defined(my $x = shift @top)) { if (scalar(@top) >= 4 && - $top[1] =~ /\A$OID_BLOB\z/os && - $top[0] =~ /\A$OID_BLOB\z/os) { + $top[1] =~ $IS_OID && + $top[0] =~ $IS_OID) { $dctx = diff_header($dst, \$x, $ctx, \@top); } elsif ($dctx) { my $after = '';