/usr/share/perl5/Array/Compare.pm is in libarray-compare-perl 3.0.0-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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 | #
# $Id$
#
=head1 NAME
Array::Compare - Perl extension for comparing arrays.
=head1 SYNOPSIS
use Array::Compare;
my $comp1 = Array::Compare->new;
$comp->Sep('|');
$comp->Skip({3 => 1, 4 => 1});
$comp->WhiteSpace(0);
$comp->Case(1);
my $comp2 = Array::Compare->new(Sep => '|',
WhiteSpace => 0,
Case => 1,
Skip => {3 => 1, 4 => 1});
my @arr1 = 0 .. 10;
my @arr2 = 0 .. 10;
$comp1->compare(\@arr1, \@arr2);
$comp2->compare(\@arr1, \@arr2);
=head1 DESCRIPTION
If you have two arrays and you want to know if they are the same or
different, then Array::Compare will be useful to you.
All comparisons are carried out via a comparator object. In the
simplest usage, you can create and use a comparator object like
this:
my @arr1 = 0 .. 10;
my @arr2 = 0 .. 10;
my $comp = Array::Compare->new;
if ($comp->compare(\@arr1, \@arr2)) {
print "Arrays are the same\n";
} else {
print "Arrays are different\n";
}
Notice that you pass references to the two arrays to the comparison
method.
Internally the comparator compares the two arrays by using C<join>
to turn both arrays into strings and comparing the strings using
C<eq>. In the joined strings, the elements of the original arrays
are separated with the C<^G> character. This can cause problems if
your array data contains C<^G> characters as it is possible that
two different arrays can be converted to the same string.
To avoid this, it is possible to override the default separator
character, either by passing and alternative to the C<new> function
my $comp = Array::Compare->new(Sep => '|');
or by changing the separator for an existing comparator object
$comp->Sep('|');
In general you should choose a separator character that won't appear
in your data.
You can also control whether or not whitespace within the elements of
the arrays should be considered significant when making the comparison.
The default is that all whitespace is significant. The alternative is
for all consecutive white space characters to be converted to a single
space for the pruposes of the comparison. Again, this can be turned on
when creating a comparator object:
my $comp = Array::Compare->new(WhiteSpace => 0);
or by altering an existing object:
$comp->WhiteSpace(0);
You can also control whether or not the case of the data is significant
in the comparison. The default is that the case of data is taken into
account. This can be changed in the standard ways when creating a new
comparator object:
my $comp = Array::Compare->new(Case => 0);
or by altering an existing object:
$comp->Case(0);
In addition to the simple comparison described above (which returns true
if the arrays are the same and false if they're different) there is also
a full comparison which returns a list containing the indexes of elements
which differ between the two arrays. If the arrays are the same it returns
an empty list. In scalar context the full comparison returns the length of
this list (i.e. the number of elements that differ). You can access the full
comparison in two ways. Firstly, there is a C<DefFull> attribute. If this
is C<true> then a full comparison if carried out whenever the C<compare>
method is called.
my $comp = Array::Compare->new(DefFull => 1);
$comp->compare(\@arr1, \@arr2); # Full comparison
$comp->DefFull(0);
$comp->compare(\@arr1, \@arr2); # Simple comparison
$comp->DefFull(1);
$comp->compare(\@arr1, \@arr2); # Full comparison again
Secondly, you can access the full comparison method directly
$comp->full_compare(\@arr1, \@arr2);
For symmetry, there is also a direct method to use to call the simple
comparison.
$comp->simple_compare(\@arr1, \@arr2);
The final complication is the ability to skip elements in the comparison.
If you know that two arrays will always differ in a particular element
but want to compare the arrays I<ignoring> this element, you can do it
with Array::Compare without taking array slices. To do this, a
comparator object has an optional attribute called C<Skip> which is a
reference to a hash. The keys in this hash are the indexes of the array
elements and the values should be any true value for elements that should
be skipped.
For example, if you want to compare two arrays, ignoring the values in
elements two and four, you can do something like this:
my %skip = (2 => 1, 4 => 1);
my @a = (0, 1, 2, 3, 4, 5);
my @b = (0, 1, X, 3, X, 5);
my $comp = Array::Compare->new(Skip => \%skip);
$comp->compare(\@a, \@b);
This should return I<true>, as we are explicitly ignoring the columns
which differ.
Of course, having created a comparator object with no skip hash, it is
possible to add one later:
$comp->Skip({1 => 1, 2 => 1});
or:
my %skip = (1 => 1, 2 => 2);
$comp->Skip(\%skip);
To reset the comparator so that no longer skips elements, set the skip
hash to an empty hash.
$comp->Skip({});
You can also check to see if one array is a permutation of another, i.e.
they contain the same elements but in a different order.
if ($comp->perm(\@a, \@b) {
print "Arrays are perms\n";
else {
print "Nope. Arrays are completely different\n";
}
In this case the values of C<WhiteSpace> and C<Case> are still used,
but C<Skip> is ignored for, hopefully, obvious reasons.
=head1 METHODS
=cut
package Array::Compare;
require 5.006_000;
use strict;
use warnings;
our ($VERSION, $AUTOLOAD);
use Moo;
use Types::Standard qw(Str Bool HashRef);
use Carp;
$VERSION = '3.0.0';
has Sep => ( is => 'rw', isa => Str, default => '^G' );
has WhiteSpace => ( is => 'rw', isa => Bool, default => 1 );
has Case => ( is => 'rw', isa => Bool, default => 1 );
has DefFull => ( is => 'rw', isa => Bool, default => 0 );
has Skip => ( is => 'rw', isa => HashRef, default => sub { {} } );
=head2 new [ %OPTIONS ]
Constructs a new comparison object.
Takes an optional hash containing various options that control how
comparisons are carried out. Any omitted options take useful defaults.
=over 4
=item Sep
This is the value that is used to separate fields when the array is joined
into a string. It should be a value which doesn't appear in your data.
Default is '^G'.
=item WhiteSpace
Flag that indicates whether or not whitespace is significant in the
comparison. If this value is false then all multiple whitespace characters
are changed into a single space before the comparison takes place. Default
is 1 (whitespace is significant).
=item Case
Flag that indicates whther or not the case of the data should be significant
in the comparison. Default is 1 (case is significant).
=item Skip
a reference to a hash which contains the numbers of any columns that should
be skipped in the comparison. Default is an empty hash (all columns are
significant).
=item DefFull
Flag which indicates whether the default comparison is simple (just returns
true if the arrays are the same or false if they're not) or full (returns an
array containing the indexes of the columns that differ). Default is 0 (simple
comparison).
=back
=cut
#
# Utility function to check the arguments to any of the comparison
# function. Ensures that there are two arguments and that they are
# both arrays.
#
sub _check_args {
my $self = shift;
croak('Must compare two arrays.') unless @_ == 2;
croak('Argument 1 is not an array') unless ref($_[0]) eq 'ARRAY';
croak('Argument 2 is not an array') unless ref($_[1]) eq 'ARRAY';
return;
}
=head2 compare_len \@ARR1, \@ARR2
Very simple comparison. Just checks the lengths of the arrays are
the same.
=cut
sub compare_len {
my $self = shift;
$self->_check_args(@_);
return @{$_[0]} == @{$_[1]};
}
=head2 compare \@ARR1, \@ARR2
Compare the values in two arrays and return a data indicating whether
the arrays are the same. The exact return values differ depending on
the comparison method used. See the descriptions of L<simple_compare>
and L<full_compare> for details.
Uses the value of DefFull to determine which comparison routine
to use.
=cut
sub compare {
my $self = shift;
if ($self->DefFull) {
return $self->full_compare(@_);
} else {
return $self->simple_compare(@_);
}
}
=head2 simple_compare \@ARR1, \@ARR2
Compare the values in two arrays and return a flag indicating whether or
not the arrays are the same.
Returns true if the arrays are the same or false if they differ.
Uses the values of 'Sep', 'WhiteSpace' and 'Skip' to influence
the comparison.
=cut
sub simple_compare {
my $self = shift;
$self->_check_args(@_);
my ($row1, $row2) = @_;
# No point in continuing if the number of elements is different.
return unless $self->compare_len(@_);
# @check contains the indexes into the two arrays, i.e. the numbers
# from 0 to one less than the number of elements.
my @check = 0 .. $#$row1;
my ($pkg, $caller) = (caller(1))[0, 3];
$caller = '' unless defined $caller;
my $perm = $caller eq __PACKAGE__ . "::perm";
# Filter @check so it only contains indexes that should be compared.
# N.B. Makes no sense to do this if we are called from 'perm'.
unless ($perm) {
@check = grep {!(exists $self->Skip->{$_}
&& $self->Skip->{$_}) } @check
if keys %{$self->Skip};
}
# Build two strings by taking array slices containing only the columns
# that we shouldn't skip and joining those array slices using the Sep
# character. Hopefully we can then just do a string comparison.
# Note: this makes the function liable to errors if your arrays
# contain the separator character.
my $str1 = join($self->Sep, map { defined $_ ? $_ : '' } @{$row1}[@check]);
my $str2 = join($self->Sep, map { defined $_ ? $_ : '' } @{$row2}[@check]);
# If whitespace isn't significant, collapse it
unless ($self->WhiteSpace) {
$str1 =~ s/\s+/ /g;
$str2 =~ s/\s+/ /g;
}
# If case isn't significant, change to lower case
unless ($self->Case) {
$str1 = lc $str1;
$str2 = lc $str2;
}
return $str1 eq $str2;
}
=head2 full_compare \@ARR1, \@ARR2
Do a full comparison between two arrays.
Checks each individual column. In scalar context returns the number
of columns that differ (zero if the arrays are the same). In list
context returns an list containing the indexes of the columns that
differ (an empty list if the arrays are the same).
Uses the values of 'Sep' and 'WhiteSpace' to influence the comparison.
B<Note:> If the two arrays are of different lengths then this method
just returns the indexes of the elements that appear in one array but
not the other (i.e. the indexes from the longer array that are beyond
the end of the shorter array). This might be a little
counter-intuitive.
=cut
sub full_compare {
my $self = shift;
$self->_check_args(@_);
my ($row1, $row2) = @_;
# No point in continuing if the number of elements is different.
# Because of the expected return value from this function we can't
# just say 'the arrays are different'. We need to do some work to
# calculate a meaningful return value.
# If we've been called in array context we return a list containing
# the number of the columns that appear in the longer list and aren't
# in the shorter list. If we've been called in scalar context we
# return the difference in the lengths of the two lists.
unless ($self->compare_len(@_)) {
if (wantarray) {
my ($max, $min);
if ($#{$row1} > $#{$row2}) {
($max, $min) = ($#{$row1}, $#{$row2} + 1);
} else {
($max, $min) = ($#{$row2}, $#{$row1} + 1);
}
return ($min .. $max);
} else {
return abs(@{$row1} - @{$row2});
}
}
my ($arr1, $arr2) = @_;
my @diffs = ();
foreach (0 .. $#{$arr1}) {
next if keys %{$self->Skip} && $self->Skip->{$_};
my ($val1, $val2) = ($arr1->[$_], $arr2->[$_]);
next unless defined $val1 or defined $val2;
if ((defined $val1 and not defined $val2)
or (defined $val2 and not defined $val1)) {
push @diffs, $_;
next;
}
unless ($self->WhiteSpace) {
$val1 =~ s/\s+/ /g;
$val2 =~ s/\s+/ /g;
}
unless ($self->Case) {
$val1 = lc $val1;
$val2 = lc $val2;
}
push @diffs, $_ unless $val1 eq $val2;
}
return wantarray ? @diffs : scalar @diffs;
}
=head2 perm \@ARR1, \@ARR2
Check to see if one array is a permutation of the other (i.e. contains
the same set of elements, but in a different order).
We do this by sorting the arrays and passing references to the assorted
versions to simple_compare. There are also some small changes to
simple_compare as it should ignore the Skip hash if we are called from
perm.
=cut
sub perm {
my $self = shift;
return $self->simple_compare([sort @{$_[0]}], [sort @{$_[1]}]);
}
1;
__END__
=head1 AUTHOR
Dave Cross <dave@mag-sol.com>
=head1 SEE ALSO
perl(1).
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2000-2005, Magnum Solutions Ltd. All Rights Reserved.
This script is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|