/usr/share/perl5/HTML/Diff.pm is in libhtml-diff-perl 0.600-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | package HTML::Diff;
our $VERSION = '0.60';
use 5.006;
use strict;
use warnings;
use Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(line_diff word_diff html_word_diff);
# This list of tags is taken from the XHTML spec and includes
# all those for which no closing tag is expected. In addition
# the pattern below matches any tag which ends with a slash /
our @UNBALANCED_TAGS = qw(br hr p li base basefont meta link
col colgroup frame input isindex area
embed img bgsound marquee);
use Algorithm::Diff 'sdiff';
sub member {
my ($item, @list) = @_;
return scalar(grep {$_ eq $item} @list);
}
sub html_word_diff {
my ($left, $right) = @_;
# Split the two texts into words and tags.
my (@leftchks) = $left =~ m/(<[^>]*>\s*|[^<]+)/gm;
my (@rightchks) = $right =~ m/(<[^>]*>\s*|[^<]+)/gm;
@leftchks = map { $_ =~ /^<[^>]*>$/ ? $_ : ($_ =~ m/(\S+\s*)/gm) }
@leftchks;
@rightchks = map { $_ =~ /^<[^>]*>$/ ? $_ : ($_ =~ m/(\S+\s*)/gm) }
@rightchks;
# Remove blanks; maybe the above regexes could handle this?
@leftchks = grep { $_ ne '' } @leftchks;
@rightchks = grep { $_ ne '' } @rightchks;
# Now we process each segment by turning it into a pair. The first element
# is the text as we want it to read in the result. The second element is
# the value we will to use in comparisons. It contains an identifier
# for each of the balanced tags that it lies within.
# This subroutine holds state in the tagstack variable
my $tagstack = [];
my $smear_tags = sub {
if ($_ =~ /^<.*>/) {
if ($_ =~ m|^</|) {
my ($tag) = m|^</\s*([^ \t\n\r>]*)|;
$tag = lc $tag;
# print STDERR "Found closer of $tag with " . (scalar @$tagstack) . " stack items\n";
# If we found the closer for the tag on top
# of the stack, pop it off.
if ((scalar @$tagstack) > 0 && $$tagstack[-1] eq $tag) {
my $stacktag = pop @$tagstack;
}
return [$_, $tag];
} else {
my ($tag) = m|^<\s*([^\s>]*)|;
$tag = lc $tag;
# print STDERR "Found opener of $tag with " . (scalar @$tagstack) . " stack items\n";
if (member($tag, @UNBALANCED_TAGS) || $tag =~ m#/\s*>$#)
{ # (tags without correspond closer tags)
return [$_, $tag];
} else {
push @$tagstack, $tag;
}
return [$_, $_];
}
} else {
my $result = [$_, (join "!!!", (@$tagstack, $_)) ];
return $result;
}
};
# Now do the "smear tags" operation across each of the chunk-lists
$tagstack = [];
@leftchks = map { &$smear_tags } @leftchks;
# TBD: better modularity would preclude having to reset the stack
$tagstack = [];
@rightchks = map { &$smear_tags } @rightchks;
# print STDERR Data::Dumper::Dumper(\@leftchks);
# print STDERR Data::Dumper::Dumper(\@rightchks);
# Now do the diff, using the "comparison" half of the pair to
# compare two chuncks.
my $chunks = sdiff(\@leftchks, \@rightchks,
sub { $_ = elem_cmprsn(shift); $_ =~ s/\s+$/ /g; $_ });
# print STDERR Data::Dumper::Dumper($chunks);
# Finally, process the output of sdiff by concatenating
# consecutive chunks that were "unchanged."
my $lastsignal = '';
my $lbuf = "";
my $rbuf = "";
my @result;
my $ch;
foreach $ch (@$chunks) {
my ($signal, $left, $right) = @$ch;
if ($signal ne $lastsignal && $lastsignal ne '') {
if ($signal ne 'u' && $lastsignal ne 'u') {
$signal = 'c';
} else {
push @result, [$lastsignal, $lbuf, $rbuf];
$lbuf = "";
$rbuf = "";
}
}
# if ($signal eq 'u' && $lastsignal ne 'u') {
# push @result, [$lastsignal, $lbuf, $rbuf]
# unless $lastsignal eq '';
# $lbuf = "";
# $rbuf = "";
# } elsif ($signal ne 'u' && $lastsignal eq 'u') {
# push @result, [$lastsignal, $lbuf, $rbuf];
# $lbuf = "";
# $rbuf = "";
# }
my $lelem = elem_mkp($left);
my $relem = elem_mkp($right);
$lbuf .= (defined $lelem ? $lelem : '');
$rbuf .= (defined $relem ? $relem : '');
$lastsignal = $signal;
}
push @result, [$lastsignal, $lbuf, $rbuf];
return \@result;
}
# these are like "accessors" for the two halves of the diff-chunk pairs
sub elem_mkp {
my ($e) = @_;
return undef unless ref $e eq 'ARRAY';
my ($mkp, $cmp) = @$e;
return $mkp;
}
sub elem_cmprsn {
my ($e) = @_;
return undef unless ref $e eq 'ARRAY';
my ($mkp, $cmp) = @$e;
return $cmp;
}
# Finally a couple of non-HTML diff routines
sub line_diff {
my ($left, $right) = @_;
my (@leftchks) = $left =~ m/(.*\n?)/gm;
my (@rightchks) = $right =~ m/(.*\n?)/gm;
my $result = sdiff(\@leftchks, \@rightchks);
# my @result = map { [ $_->[1], $_->[2] ] } @$result;
return $result;
}
sub word_diff {
my ($left, $right) = @_;
my (@leftchks) = $left =~ m/([^\s]*\s?)/gm;
my (@rightchks) = $right =~ m/([^\s]*\s?)/gm;
my $result = sdiff(\@leftchks, \@rightchks);
my @result = (map { [ $_->[1], $_->[2] ] } @$result);
return $result;
}
1;
=head1 NAME
HTML::Diff - compare two HTML strings and return a list of differences
=head1 SYNOPSIS
use HTML::Diff;
$result = html_word_diff($left_text, $right_text);
=head1 DESCRIPTION
This module compares two strings of HTML and returns a list of a
chunks which indicate the diff between the two input strings, where
changes in formatting are considered changes.
HTML::Diff does not strictly parse the HTML. Instead, it uses regular
expressions to make a decent effort at understanding the given HTML.
As a result, there are many valid HTML documents for which it will not
produce the correct answer. But there may be some invalid HTML
documents for which it gives you the answer you're looking for. Your
mileage may vary; test it on lots of inputs from your domain before
relying on it.
Returns a reference to a list of triples [<flag>, <left>, <right>].
Each triple represents a check of the input texts. The flag tells you
whether it represents a deletion, insertion, a modification, or an
unchanged chunk.
Every character of each input text is accounted for by some triple in
the output. Specifically, Concatenating all the <left> members from
the return value should produce C<$left_text>, and likewise the
<right> members concatenate together to produce C<$right_text>.
The <flag> is either C<'u'>, C<'+'>, C<'-'>, or C<'c'>, indicating
whether the two chunks are the same, the $right_text contained this
chunk and the left chunk didn't, or vice versa, or the two chunks are
simply different. This follows the usage of Algorithm::Diff.
The difference is computed on a word-by-word basis, "breaking" on
visible words in the HTML text. If a tag only is changed, it will not
be returned as an independent chunk but will be shown as a change to
one of the neighboring words. For balanced tags, such as <b> </b>, it
is intended that a change to the tag will be treated as a change to
all words in between.
=head1 SEE ALSO
L<Algorithm::Diff> provides the diff algorithm used in this module.
L<XML::Diff> can generate a diff between two XML files, and also
patch an XML file, given a diff.
=head1 REPOSITORY
L<https://github.com/neilb/html-diff>
=head1 AUTHOR
Whipped up by Ezra elias kilty Cooper, E<lt>ezra@ezrakilty.netE<gt>.
Patch contributed by Adam E<lt>asjo@koldfront.dkE<gt>.
=head1 COPYRIGHT AND LICENSE
Copyright 2003-2014 by Ezra elias kilty Cooper, E<lt>ezra@ezrakilty.netE<gt>
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut
|