3 use warnings FATAL
=> 'all';
6 # Highlight by reversing foreground and background. You could do
7 # other things like bold or underline if you prefer.
8 my $HIGHLIGHT = "\x1b[7m";
9 my $UNHIGHLIGHT = "\x1b[27m";
10 my $COLOR = qr/\x1b\[[0-9;]*m/;
11 my $BORING = qr/$COLOR|\s/;
20 $in_hunk = /^$COLOR*\@/;
25 elsif (/^$COLOR*\+/) {
29 show_hunk
(\
@removed, \
@added);
34 $in_hunk = /^$COLOR*[\@ ]/;
37 # Most of the time there is enough output to keep things streaming,
38 # but for something like "git log -Sfoo", you can get one early
39 # commit and then many seconds of nothing. We want to show
40 # that one commit as soon as possible.
42 # Since we can receive arbitrary input, there's no optimal
43 # place to flush. Flushing on a blank line is a heuristic that
44 # happens to match git-log output.
50 # Flush any queued hunk (this can happen when there is no trailing context in
51 # the final diff of the input).
52 show_hunk
(\
@removed, \
@added);
59 # If one side is empty, then there is nothing to compare or highlight.
65 # If we have mismatched numbers of lines on each side, we could try to
66 # be clever and match up similar lines. But for now we are simple and
67 # stupid, and only handle multi-line hunks that remove and add the same
75 for (my $i = 0; $i < @
$a; $i++) {
76 my ($rm, $add) = highlight_pair
($a->[$i], $b->[$i]);
84 my @a = split_line
(shift);
85 my @b = split_line
(shift);
87 # Find common prefix, taking care to skip any ansi
90 my ($pa, $pb) = (0, 0);
91 while ($pa < @a && $pb < @b) {
92 if ($a[$pa] =~ /$COLOR/) {
95 elsif ($b[$pb] =~ /$COLOR/) {
98 elsif ($a[$pa] eq $b[$pb]) {
102 elsif (!$seen_plusminus && $a[$pa] eq '-' && $b[$pb] eq '+') {
112 # Find common suffix, ignoring colors.
113 my ($sa, $sb) = ($#a, $#b);
114 while ($sa >= $pa && $sb >= $pb) {
115 if ($a[$sa] =~ /$COLOR/) {
118 elsif ($b[$sb] =~ /$COLOR/) {
121 elsif ($a[$sa] eq $b[$sb]) {
130 if (is_pair_interesting
(\
@a, $pa, $sa, \
@b, $pb, $sb)) {
131 return highlight_line
(\
@a, $pa, $sa),
132 highlight_line
(\
@b, $pb, $sb);
142 return map { /$COLOR/ ?
$_ : (split //) }
147 my ($line, $prefix, $suffix) = @_;
150 @
{$line}[0..($prefix-1)],
152 @
{$line}[$prefix..$suffix],
154 @
{$line}[($suffix+1)..$#$line]
158 # Pairs are interesting to highlight only if we are going to end up
159 # highlighting a subset (i.e., not the whole line). Otherwise, the highlighting
160 # is just useless noise. We can detect this by finding either a matching prefix
161 # or suffix (disregarding boring bits like whitespace and colorization).
162 sub is_pair_interesting
{
163 my ($a, $pa, $sa, $b, $pb, $sb) = @_;
164 my $prefix_a = join('', @
$a[0..($pa-1)]);
165 my $prefix_b = join('', @
$b[0..($pb-1)]);
166 my $suffix_a = join('', @
$a[($sa+1)..$#$a]);
167 my $suffix_b = join('', @
$b[($sb+1)..$#$b]);
169 return $prefix_a !~ /^$COLOR*-$BORING*$/ ||
170 $prefix_b !~ /^$COLOR*\+$BORING*$/ ||
171 $suffix_a !~ /^$BORING*$/ ||
172 $suffix_b !~ /^$BORING*$/;