#
# Copyright (c) 1995-2000, Raphael Manfredi
#
# You may redistribute only under the same terms as Perl 5, as specified
# in the README file that comes with the distribution.
#
# NOTE THAT THIS FILE IS COPIED FROM ext/Storable/t/st-dump.pl
# TO t/lib/st-dump.pl. One could also play games with
# File::Spec->updir and catdir to get the st-dump.pl in
sub ok {
$ok;
}
sub num_equal {
print "# Expected $right\n";
if (!defined $left) {
print "# Got undef\n";
print "# Got $left\n";
} else {
print "# Got \"$left\"\n";
}
}
$ok;
}
package dump;
use Carp;
%dump = (
'SCALAR' => 'dump_scalar',
'LVALUE' => 'dump_scalar',
'ARRAY' => 'dump_array',
'HASH' => 'dump_hash',
'REF' => 'dump_ref',
);
# Given an object, dump its transitive data closure
my ($object) = @_;
croak "Not a reference!" unless ref($object);
local %dumped;
local %object;
local $count = 0;
local $dumped = '';
return $dumped;
}
# This is the root recursive dumping routine that may indirectly be
# called by one of the routine it calls...
# The link parameter is set to false when the reference passed to
# the routine is an internal temporay variable, implying the object's
# address is not to be dumped in the %dumped table since it's not a
# user-visible object.
sub recursive_dump {
# Get something like SCALAR(0x...) or TYPE=SCALAR(0x...).
# Then extract the bless, ref and address parts of that string.
# Special case for references to references. When stringified,
# they appear as being scalars. However, ref() correctly pinpoints
# them as being references indirections. And that's it.
# Make sure the object has not been already dumped before.
# We don't want to duplicate data. Retrieval will know how to
# relink from the previously seen object.
$dumped .= "OBJECT #$num seen\n";
return;
}
# Call the appropriate dumping routine based on the reference type.
# If the referenced was blessed, we bless it once the object is dumped.
# The retrieval code will perform the same on the last object retrieved.
$dumped .= "OBJECT $objcount\n";
}
# Indicate that current object is blessed
sub bless {
my ($class) = @_;
$dumped .= "BLESS $class\n";
}
# Dump single scalar
sub dump_scalar {
my ($sref) = @_;
unless (defined $scalar) {
$dumped .= "UNDEF\n";
return;
}
$dumped .= "SCALAR len=$len $scalar\n";
}
# Dump array
sub dump_array {
my ($aref) = @_;
$dumped .= "ARRAY items=$items\n";
unless (defined $item) {
next;
}
$dumped .= 'ITEM ';
}
}
# Dump hash table
sub dump_hash {
my ($href) = @_;
$dumped .= "HASH items=$items\n";
$dumped .= 'KEY ';
&recursive_dump(\$key, undef);
next;
}
$dumped .= 'VALUE ';
}
}
# Dump reference to reference
sub dump_ref {
my ($rref) = @_;
$dumped .= 'REF ';
}
1;