/usr/share/perl5/Paranoid/Data.pm is in libparanoid-perl 0.34-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 | # Paranoid::Data -- Misc. Data Manipulation Functions
#
# (c) 2007, Arthur Corliss <corliss@digitalmages.com>
#
# $Id: Data.pm,v 0.02 2010/04/15 23:23:28 acorliss Exp $
#
# This software is licensed under the same terms as Perl, itself.
# Please see http://dev.perl.org/licenses/ for more information.
#
#####################################################################
#####################################################################
#
# Environment definitions
#
#####################################################################
package Paranoid::Data;
use 5.006;
use strict;
use warnings;
use vars qw($VERSION @EXPORT @EXPORT_OK %EXPORT_TAGS);
use base qw(Exporter);
use Paranoid::Debug qw(:all);
use Carp;
($VERSION) = ( q$Revision: 0.02 $ =~ /(\d+(?:\.(\d+))+)/sm );
@EXPORT = qw(deepCopy);
@EXPORT_OK = qw(deepCopy);
%EXPORT_TAGS = ( all => [qw(deepCopy)], );
#####################################################################
#
# Module code follows
#
#####################################################################
sub deepCopy ($$) {
# Purpose: Attempts to safely copy an arbitrarily deep data
# structure from the source to the target
# Returns: True or False
# Usage: $rv = deepCopy($sourceRef, $targetRef);
my $source = shift;
my $target = shift;
my $rv = 1;
my $counter = 0;
my $sref = defined $source ? ref $source : 'undef';
my $tref = defined $target ? ref $target : 'undef';
my ( @refs, $recurseSub );
croak 'Mandatory first argument must be a scalar, array, or hash '
. 'reference'
unless defined $source
and ( $sref eq 'SCALAR' or $sref eq 'ARRAY' or $sref eq 'HASH' );
croak 'Mandatory second argument must be a scalar, array, or hash '
. 'reference'
unless defined $target
and ( $tref eq 'SCALAR' or $tref eq 'ARRAY' or $tref eq 'HASH' );
croak 'First and second arguments must be identical types of '
. 'references'
unless $sref eq $tref;
pdebug( "entering w/($sref)($tref)", PDLEVEL1 );
pIn();
$recurseSub = sub {
my $s = shift;
my $t = shift;
my $type = ref $s;
my $irv = 1;
my ( $key, $value );
# We'll grep the @refs list to make sure there's no
# circular references going on
if ( grep { $_ eq $s } @refs ) {
Paranoid::ERROR = pdebug(
'Found a circular reference in data structure: '
. "@refs ($s)",
PDLEVEL1
);
return 0;
}
# Push the reference onto the list
push @refs, $s;
# Copy data over
if ( $type eq 'ARRAY' ) {
# Copy over array elements
foreach my $element (@$s) {
$type = ref $element;
$counter++;
if ( $type eq 'ARRAY' or $type eq 'HASH' ) {
# Copy over sub arrays or hashes
push @$t, $type eq 'ARRAY' ? [] : {};
return 0 unless &$recurseSub( $element, $$t[-1] );
} else {
# Copy over everything else as-is
push @$t, $element;
}
}
} elsif ( $type eq 'HASH' ) {
while ( ( $key, $value ) = each %$s ) {
$type = ref $value;
$counter++;
if ( $type eq 'ARRAY' or $type eq 'HASH' ) {
# Copy over sub arrays or hashes
$$t{$key} = $type eq 'ARRAY' ? [] : {};
return 0 unless &$recurseSub( $value, $$t{$key} );
} else {
# Copy over everything else as-is
$$t{$key} = $value;
}
}
}
# We're done, so let's remove the reference we were working on
pop @refs;
return 1;
};
# Start the copy
if ( $sref eq 'ARRAY' or $sref eq 'HASH' ) {
# Copy over arrays & hashes
if ( $sref eq 'ARRAY' ) {
@$target = ();
} else {
%$target = ();
}
$rv = &$recurseSub( $source, $target );
} else {
# Copy over everything else directly
$$target = $$source;
$counter++;
}
$rv = $counter if $rv;
pOut();
pdebug( "leaving w/rv: $rv", PDLEVEL1 );
return $rv;
}
1;
__END__
=head1 NAME
Paranoid::Data - Misc. Data Manipulation Functions
=head1 VERSION
$Id: Data.pm,v 0.02 2010/04/15 23:23:28 acorliss Exp $
=head1 SYNOPSIS
$rv = deepCopy($sourceRef, $targetRef);
=head1 DESCRIPTION
This module provides data manipulation functions, which at this time only
consists of B<deepCopy>.
=head1 SUBROUTINES/METHODS
=head2 deepCopy
$rv = deepCopy($sourceRef, $targetRef);
This function performs a deep and safe copy of arbitrary data structures,
checking for circular references along the way. Hashes and lists are safely
duplicated while all other data types are just copied. This means that any
embedded object references, etc., are identical in both the source and the
target, which is probably not what you want.
In short, this should only be used on pure hash/list/scalar value data
structures. Both the source and the target reference must be of an identical
type.
This function returns the number of elements copied unless it runs into a
problem (such as a circular reference), in which case it returns a zero.
=head1 DEPENDENCIES
=over
=item o
L<Paranoid::Debug>
=back
=head1 BUGS AND LIMITATIONS
=head1 AUTHOR
Arthur Corliss (corliss@digitalmages.com)
=head1 LICENSE AND COPYRIGHT
This software is licensed under the same terms as Perl, itself.
Please see http://dev.perl.org/licenses/ for more information.
(c) 2009, Arthur Corliss (corliss@digitalmages.com)
|