8 use vars
qw( $VERSION @ISA @EXPORT );
10 @ISA = qw( DynaLoader Exporter );
11 @EXPORT = qw( DDumper DPeek DDump DDual );
12 $] >= 5.007003 and push @EXPORT, "DDump_IO";
14 bootstrap DDumper
$VERSION;
16 ### ############# DDumper () ##################################################
22 local $Data::Dumper
::Sortkeys
= 1;
23 local $Data::Dumper
::Indent
= 1;
25 my $s = Data
::Dumper
::Dumper
@_;
26 $s =~ s!^(\s*)'([^']*)'\s*=>!sprintf "%s%-16s =>", $1, $2!gme; # Align => '
27 $s =~ s!^(?= *[]}](?:[;,]|$))! !gm;
28 $s =~ s!^(\s+)!$1$1!gm;
30 defined wantarray or print STDERR
$s;
34 ### ############# DDump () ####################################################
40 $has_perlio = ($Config{useperlio
} || "undef") eq "define";
45 my ($var, $down) = (@_, 0);
48 if ($ref eq "SCALAR" || $ref eq "REF") {
49 my %hash = DDump
($$var, $down);
52 if ($ref eq "ARRAY") {
54 foreach my $list (@
$var) {
55 my %hash = DDump
($list, $down);
56 push @list, { %hash };
62 foreach my $key (sort keys %$var) {
63 $hash{DPeek
($key)} = { DDump
($var->{$key}, $down) };
72 my ($var, $down, $dump, $fh) = (@_, "");
74 if ($has_perlio and open $fh, ">", \
$dump) {
75 #print STDERR "Using DDump_IO\n";
76 DDump_IO
($fh, $var, $down);
80 #print STDERR "Using DDump_XS\n";
81 $dump = DDump_XS
($var);
89 my ($var, $down) = (@_, 0);
90 my @dump = split "\n", _DDump
($var, wantarray || $down) or return;
94 ($hash{sv
} = $dump[0]) =~ s/^SV\s*=\s*//;
95 m/^\s+(\w+)\s*=\s*(.*)/ and $hash{$1} = $2 for @dump;
97 if (exists $hash{FLAGS
}) {
98 $hash{FLAGS
} =~ tr/()//d;
99 $hash{FLAGS
} = { map { $_ => 1 } split m/,/ => $hash{FLAGS
} };
102 $down && ref $var and
103 $hash{RV
} = _DDump_ref
($var, $down - 1) || $var;
107 my $dump = join "\n", @dump, "";
109 defined wantarray and return $dump;
120 DDumper - Modified and extended debugging facilities
126 print DDumper \%hash; # Same syntax as Data::Dumper
128 my ($pv, $iv, $nv, $rv, $magic) = DDual ($var [, 1]);
132 my $dump = DDump $var;
133 my %hash = DDump \@list;
136 my %hash = DDump (\%hash, 5); # dig 5 levels deep
139 open my $fh, ">", \$dump;
140 DDump_IO ($fh, \%hash, 6);
146 =head2 DDumper ($var, ...)
148 Not liking the default output of Data::Dumper, and always feeling the need
149 to set C<$Data::Dumper::Sortkeys = 1;>, and not liking any of the default
150 layouts, this function is just a wrapper around Data::Dumper::Dumper with
151 everything set as I like it.
153 $Data::Dumper::Sortkeys = 1;
154 $Data::Dumper::Indent = 1;
156 And the result is further beautified to meet my needs:
158 * quotation of hash keys has been removed
159 * arrows for hashes are aligned at 16 (longer keys don't align)
160 * closing braces and brackets are now correctly aligned
162 In void context, C<DDumper ()> prints to STDERR.
166 print DDumper { ape => 1, foo => "egg", bar => [ 2, "baz", undef ]};
178 =head2 DDual ($var [, $getmagic])
180 DDual will return the basic elements in a variable, guaranteeing that no
181 conversion takes place. This is very useful for dual-var variables, or
182 when checking is a variable has defined entries for a certain type of
183 scalar. For each Integer (IV), Double (NV), String (PV), and Reference (RV),
184 the current value of C<$var> is returned or undef if it is not set (yet).
185 The 5th element is an indicator if C<$var> has magic, which is B<not> invoked
186 in the returned values, unless explicitly asked for with a true optional
191 Playing with C<sv_dump ()>, I found C<Perl_sv_peek ()>, and it might be
192 very useful for simple checks.
196 print DPeek "abc\x{0a}de\x{20ac}fg";
198 PV("abc\nde\342\202\254fg"\0) [UTF8 "abc\nde\x{20ac}fg"]
200 =head3 DDump ($var [, $dig_level])
202 A very useful module when debugging is C<Devel::Peek>, but is has one big
203 disadvantage: it only prints to STDERR, which is not very handy when your
204 code wants to inspect variables al a low level.
206 Perl itself has C<sv_dump ()>, which does something similar, but still
207 prints to STDERR, and only one level deep.
209 C<DDump ()> is an attempt to make the innards available to the script level
210 with a reasonable level of compatibility. C<DDump ()> is context sensitive.
212 In void context, it behaves exactly like C<Perl_sv_dump ()>.
214 In scalar context, it returns what C<Perl_sv_dump ()> would have printed.
216 In list context, it returns a hash of the variable's properties. In this mode
217 you can pass an optional second argument that determines the depth of digging.
221 print scalar DDump "abc\x{0a}de\x{20ac}fg"
223 SV = PV(0x723250) at 0x8432b0
225 FLAGS = (PADBUSY,PADMY,POK,pPOK,UTF8)
226 PV = 0x731ac0 "abc\nde\342\202\254fg"\0 [UTF8 "abc\nde\x{20ac}fg"]
230 my %h = DDump "abc\x{0a}de\x{20ac}fg";
243 PV => '0x731ac0 "abc\\nde\\342\\202\\254fg"\\0 [UTF8 "abc\\nde\\x{20ac}fg"]',
245 sv => 'PV(0x723250) at 0x8432c0'
251 bar => [ 2, "baz", undef ],
272 sv => 'IV(0x747020) at 0x843a10'
286 sv => 'PVIV(0x7223e0) at 0x843a10'
298 PV => '0x7496c0 "egg"\\0',
300 sv => 'PVIV(0x7223e0) at 0x843a10'
303 sv => 'RV(0x79d058) at 0x843310'
306 =head2 DDump_IO ($io, $var [, $dig_level])
308 A wrapper function around perl's internal C<Perl_do_sv_dump ()>, which
309 makes C<Devel::Peek> completely superfluous. As PerlIO is only available
310 perl version 5.7.3 and up, this function is not available in older perls.
315 open my $eh, ">", \$dump;
316 DDump_IO ($eh, { 3 => 4, ape => [5..8]}, 6);
320 SV = RV(0x79d9e0) at 0x843f00
324 SV = PVHV(0x79c948) at 0x741090
329 ARRAY = 0x748ff0 (0:7, 2:1)
336 Elt "ape" HASH = 0x97623e03
337 SV = RV(0x79d9d8) at 0x8440e0
341 SV = PVAV(0x7264b0) at 0x741470
352 SV = IV(0x7467c8) at 0x7c1aa0
357 SV = IV(0x7467b0) at 0x8440f0
362 SV = IV(0x746810) at 0x75be00
367 SV = IV(0x746d38) at 0x7799d0
371 Elt "3" HASH = 0xa400c7f3
372 SV = IV(0x746fd0) at 0x7200e0
379 C<DDump ()> uses an XS wrapper around C<Perl_sv_dump ()> where the
380 STDERR is temporarily caught to a pipe. The internal XS helper functions
381 are not meant for user space
383 =head2 DDump_XS (SV *sv)
385 Base interface to internals for C<DDump ()>.
389 Not all types of references are supported.
393 No idea how far back this goes in perl support.
403 H.Merijn Brand <h.m.brand@xs4all.nl>
405 =head1 COPYRIGHT AND LICENSE
407 Copyright (C) 2008-2008 H.Merijn Brand
409 This library is free software; you can redistribute it and/or modify
410 it under the same terms as Perl itself.