1 # Copyright (C) 2019 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # used by PublicInbox::View
5 # This adds CSS spans for diff highlighting.
6 # It also generates links for ViewVCS + SolverGit to show
7 # (or reconstruct) blobs.
9 package PublicInbox::ViewDiff;
12 use base qw(Exporter);
13 our @EXPORT_OK = qw(flush_diff);
14 use URI::Escape qw(uri_escape_utf8);
15 use PublicInbox::Hval qw(ascii_html to_attr from_attr);
16 use PublicInbox::Git qw(git_unquote);
18 # keep track of state so we can avoid redundant HTML tags for
19 # identically-classed lines
20 sub DSTATE_INIT () { 0 }
21 sub DSTATE_STAT () { 1 }
22 sub DSTATE_HEAD () { 2 } # /^diff --git /, /^index /, /^--- /, /^\+\+\+ /
23 sub DSTATE_CTX () { 3 } # /^ /
24 sub DSTATE_ADD () { 4 } # /^\+/
25 sub DSTATE_DEL () { 5 } # /^\-/
27 # maps the DSTATE_* to CSS class names compatible with what cgit uses:
37 sub UNSAFE () { "^A-Za-z0-9\-\._~/" }
39 my $OID_NULL = '0{7,40}';
40 my $OID_BLOB = '[a-f0-9]{7,40}';
41 my $PATH_A = '"?a/.+|/dev/null';
42 my $PATH_B = '"?b/.+|/dev/null';
44 # cf. git diff.c :: get_compact_summary
45 my $DIFFSTAT_COMMENT = qr/\((?:new|gone|(?:(?:new|mode) [\+\-][lx]))\)/;
48 $_[0]->linkify_1($_[1]);
49 $_[0]->linkify_2(ascii_html($_[1]));
52 # link to line numbers in blobs
53 sub diff_hunk ($$$$) {
54 my ($dctx, $spfx, $ca, $cb) = @_;
55 my $oid_a = $dctx->{oid_a};
56 my $oid_b = $dctx->{oid_b};
58 (defined($spfx) && defined($oid_a) && defined($oid_b)) or
59 return "@@ $ca $cb @@";
61 my ($n) = ($ca =~ /^-([0-9]+)/);
62 $n = defined($n) ? do { ++$n; "#n$n" } : '';
64 my $rv = qq(@@ <a\nhref="$spfx$oid_a/s/$dctx->{Q}$n">$ca</a>);
66 ($n) = ($cb =~ /^\+([0-9]+)/);
67 $n = defined($n) ? do { ++$n; "#n$n" } : '';
69 $rv .= qq( <a\nhref="$spfx$oid_b/s/$dctx->{Q}$n">$cb</a> @@);
73 my ($dctx, $spfx, $oid) = @_;
74 defined($spfx) ? qq(<a\nhref="$spfx$oid/s/$dctx->{Q}">$oid</a>) : $oid;
78 my ($dst, $state, $new_state) = @_;
79 $$dst .= '</span>' if $state2class[$state];
81 my $class = $state2class[$new_state] or return;
82 $$dst .= qq(<span\nclass="$class">);
86 my ($dst, $ctx, $linkify, $fn, $rest) = @_;
90 # normal git diffstat output is impossible to parse reliably
91 # without --numstat, and that isn't the default for format-patch.
92 # So only do best-effort handling of renames for common cases;
93 # which works well in practice. If projects put "=>", or trailing
94 # spaces in filenames, oh well :P
95 $fn =~ s/(?: *$DIFFSTAT_COMMENT)? *\z//so;
96 $fn =~ s/{(?:.+) => (.+)}/$1/ or $fn =~ s/.* => (.+)/$1/;
97 $fn = git_unquote($fn);
99 # long filenames will require us to walk backwards in anchor1
100 if ($fn =~ s!\A\.\.\./?!!) {
101 my $lp = $ctx->{-long_path} ||= {};
102 $lp->{$fn} = qr/\Q$fn\E\z/s;
105 if (my $attr = to_attr($ctx->{-apfx}.$fn)) {
106 $ctx->{-anchors}->{$attr} = 1;
107 $$dst .= " <a\nid=i$attr\nhref=#$attr>" .
108 ascii_html($orig) . '</a>'.
109 to_html($linkify, $rest);
115 sub anchor1 ($$$$$) {
116 my ($dst, $ctx, $linkify, $pb, $s) = @_;
117 my $attr = to_attr($ctx->{-apfx}.$pb) or return;
118 my $line = to_html($linkify, $s);
120 my $ok = delete $ctx->{-anchors}->{$attr};
122 # unlikely, check the end of all long path names we captured:
124 my $lp = $ctx->{-long_path} or return;
125 foreach my $fn (keys %$lp) {
126 $pb =~ $lp->{$fn} or next;
129 $attr = to_attr($ctx->{-apfx}.$fn) or return;
130 $ok = delete $ctx->{-anchors}->{$attr} or return;
134 if ($ok && $line =~ s/^diff //) {
135 $$dst .= "<a\nhref=#i$attr\nid=$attr>diff</a> ".$line;
141 sub flush_diff ($$$) {
142 my ($dst, $ctx, $linkify) = @_;
143 my $diff = $ctx->{-diff};
144 my $spfx = $ctx->{-spfx};
145 my $state = DSTATE_INIT;
146 my $dctx = { Q => '' }; # {}, keys: oid_a, oid_b, path_a, path_b
148 foreach my $s (@$diff) {
150 to_state($dst, $state, DSTATE_STAT);
152 } elsif ($s =~ /^ / || ($s =~ /^$/ && $state >= DSTATE_CTX)) {
153 # works for common cases, but not weird/long filenames
154 if ($state == DSTATE_STAT &&
155 $s =~ /^ (.+)( +\| .*\z)/s) {
156 anchor0($dst, $ctx, $linkify, $1, $2) and next;
157 } elsif ($state2class[$state]) {
158 to_state($dst, $state, DSTATE_CTX);
160 $$dst .= to_html($linkify, $s);
161 } elsif ($s =~ /^-- $/) { # email signature begins
162 $state == DSTATE_INIT or
163 to_state($dst, $state, DSTATE_INIT);
165 } elsif ($s =~ m!^diff --git ($PATH_A) ($PATH_B)$!o) {
166 my ($pa, $pb) = ($1, $2);
167 if ($state != DSTATE_HEAD) {
168 to_state($dst, $state, DSTATE_HEAD);
170 $pa = (split('/', git_unquote($pa), 2))[1];
171 $pb = (split('/', git_unquote($pb), 2))[1];
173 Q => "?b=".uri_escape_utf8($pb, UNSAFE),
176 $dctx->{Q} .= '&a='.
177 uri_escape_utf8($pa, UNSAFE);
179 anchor1($dst, $ctx, $linkify, $pb, $s) and next;
180 $$dst .= to_html($linkify, $s);
181 } elsif ($s =~ s/^(index $OID_NULL\.\.)($OID_BLOB)\b//o) {
182 $$dst .= $1 . oid($dctx, $spfx, $2);
184 $$dst .= to_html($linkify, $s) ;
185 } elsif ($s =~ s/^index ($OID_BLOB)(\.\.$OID_NULL)\b//o) {
186 $$dst .= 'index ' . oid($dctx, $spfx, $1) . $2;
188 $$dst .= to_html($linkify, $s);
189 } elsif ($s =~ /^index ($OID_BLOB)\.\.($OID_BLOB)/o) {
192 $$dst .= to_html($linkify, $s);
193 } elsif ($s =~ s/^@@ (\S+) (\S+) @@//) {
194 $$dst .= '</span>' if $state2class[$state];
195 $$dst .= qq(<span\nclass="hunk">);
196 $$dst .= diff_hunk($dctx, $spfx, $1, $2);
199 $$dst .= to_html($linkify, $s);
200 } elsif ($s =~ m!^--- (?:$PATH_A)!o ||
201 $s =~ m!^\+{3} (?:$PATH_B)!o) {
202 # color only (no oid link) if missing dctx->{oid_*}
203 $state <= DSTATE_STAT and
204 to_state($dst, $state, DSTATE_HEAD);
205 $$dst .= to_html($linkify, $s);
206 } elsif ($s =~ /^\+/) {
207 if ($state != DSTATE_ADD && $state > DSTATE_STAT) {
208 to_state($dst, $state, DSTATE_ADD);
210 $$dst .= to_html($linkify, $s);
211 } elsif ($s =~ /^-/) {
212 if ($state != DSTATE_DEL && $state > DSTATE_STAT) {
213 to_state($dst, $state, DSTATE_DEL);
215 $$dst .= to_html($linkify, $s);
216 # ignore the following lines in headers:
217 } elsif ($s =~ /^(?:dis)similarity index/ ||
218 $s =~ /^(?:old|new) mode/ ||
219 $s =~ /^(?:deleted|new) file mode/ ||
220 $s =~ /^(?:copy|rename) (?:from|to) / ||
221 $s =~ /^(?:dis)?similarity index /) {
222 $$dst .= to_html($linkify, $s);
224 $state <= DSTATE_STAT or
225 to_state($dst, $state, DSTATE_INIT);
226 $$dst .= to_html($linkify, $s);
230 $$dst .= '</span>' if $state2class[$state];