8 use vars
qw( $VERSION @ISA @EXPORT @EXPORT_OK );
10 @ISA = qw( DynaLoader Exporter );
11 @EXPORT = qw( DDumper DPeek DDisplay DDump DDual );
12 @EXPORT_OK = qw( triplevar );
13 $] >= 5.007003 and push @EXPORT, "DDump_IO";
15 bootstrap Data
::Peek
$VERSION;
17 ### ############# DDumper () ##################################################
23 local $Data::Dumper
::Sortkeys
= 1;
24 local $Data::Dumper
::Indent
= 1;
26 my $s = Data
::Dumper
::Dumper
@_;
27 $s =~ s!^(\s*)'([^']*)'\s*=>!sprintf "%s%-16s =>", $1, $2!gme; # Align => '
28 $s =~ s!^(?= *[]}](?:[;,]|$))! !gm;
29 $s =~ s!^(\s+)!$1$1!gm;
31 defined wantarray or print STDERR
$s;
35 ### ############# DDump () ####################################################
41 $has_perlio = ($Config{useperlio
} || "undef") eq "define";
46 my ($var, $down) = (@_, 0);
49 if ($ref eq "SCALAR" || $ref eq "REF") {
50 my %hash = DDump
($$var, $down);
53 if ($ref eq "ARRAY") {
55 foreach my $list (@
$var) {
56 my %hash = DDump
($list, $down);
57 push @list, { %hash };
63 foreach my $key (sort keys %$var) {
64 $hash{DPeek
($key)} = { DDump
($var->{$key}, $down) };
73 my ($var, $down, $dump, $fh) = (@_, "");
75 if ($has_perlio and open $fh, ">", \
$dump) {
76 #print STDERR "Using DDump_IO\n";
77 DDump_IO
($fh, $var, $down);
81 #print STDERR "Using DDump_XS\n";
82 $dump = DDump_XS
($var);
90 my ($var, $down) = (@_, 0);
91 my @dump = split m/[\r\n]+/, _DDump
($var, wantarray || $down) or return;
95 ($hash{sv
} = $dump[0]) =~ s/^SV\s*=\s*//;
96 m/^\s+(\w+)\s*=\s*(.*)/ and $hash{$1} = $2 for @dump;
98 if (exists $hash{FLAGS
}) {
99 $hash{FLAGS
} =~ tr/()//d;
100 $hash{FLAGS
} = { map { $_ => 1 } split m/,/ => $hash{FLAGS
} };
103 $down && ref $var and
104 $hash{RV
} = _DDump_ref
($var, $down - 1) || $var;
108 my $dump = join "\n", @dump, "";
110 defined wantarray and return $dump;
121 Data::Peek - A collection of low-level debug facilities
127 print DDumper \%hash; # Same syntax as Data::Dumper
130 my ($pv, $iv, $nv, $rv, $magic) = DDual ($var [, 1]);
131 print DPeek for DDual ($!, 1);
132 print DDisplay ("ab\nc\x{20ac}\rdef\n");
134 my $dump = DDump $var;
135 my %hash = DDump \@list;
138 my %hash = DDump (\%hash, 5); # dig 5 levels deep
141 open my $fh, ">", \$dump;
142 DDump_IO ($fh, \%hash, 6);
146 use Data::Peek qw( triplevar );
147 my $tv = triplevar ("\N{GREEK SMALL LETTER PI}", 3, "3.1415");
151 Data::Peek started off as C<DDumper> being a wrapper module over
152 L<Data::Dumper>, but grew out to be a set of low-level data
153 introspection utilities that no other module provided yet, using the
154 lowest level of the perl internals API as possible.
156 =head2 DDumper ($var, ...)
158 Not liking the default output of Data::Dumper, and always feeling the need
159 to set C<$Data::Dumper::Sortkeys = 1;>, and not liking any of the default
160 layouts, this function is just a wrapper around Data::Dumper::Dumper with
161 everything set as I like it.
163 $Data::Dumper::Sortkeys = 1;
164 $Data::Dumper::Indent = 1;
166 And the result is further beautified to meet my needs:
168 * quotation of hash keys has been removed (with the disadvantage
169 that the output might not be parseable again).
170 * arrows for hashes are aligned at 16 (longer keys don't align)
171 * closing braces and brackets are now correctly aligned
173 In void context, C<DDumper ()> prints to STDERR.
177 print DDumper { ape => 1, foo => "egg", bar => [ 2, "baz", undef ]};
193 Playing with C<sv_dump ()>, I found C<Perl_sv_peek ()>, and it might be
194 very useful for simple checks. If C<$var> is omitted, uses $_.
198 print DPeek "abc\x{0a}de\x{20ac}fg";
200 PV("abc\nde\342\202\254fg"\0) [UTF8 "abc\nde\x{20ac}fg"]
204 =head2 DDisplay ($var)
206 Show the PV content of a scalar the way perl debugging would have done.
207 UTF-8 detection is on, so this is effectively the same as returning the
208 first part the C<DPeek ()> returns for non-UTF8 PV's or the second part
209 for UTF-8 PV's. C<DDisplay ()> returns the empty string for scalars that
214 print DDisplay "abc\x{0a}de\x{20ac}fg";
218 =head2 DDual ($var [, $getmagic])
220 DDual will return the basic elements in a variable, guaranteeing that no
221 conversion takes place. This is very useful for dual-var variables, or
222 when checking is a variable has defined entries for a certain type of
223 scalar. For each Integer (IV), Double (NV), String (PV), and Reference (RV),
224 the current value of C<$var> is returned or undef if it is not set (yet).
225 The 5th element is an indicator if C<$var> has magic, which is B<not> invoked
226 in the returned values, unless explicitly asked for with a true optional
231 print DPeek for DDual ($!, 1);
233 =head2 triplevar ($pv, $iv, $nv)
235 When making C<DDual ()> I wondered if it were possible to create triple-val
236 scalar variables. L<Scalar::Util> already gives us C<dualvar ()>, that creates
237 you a scalar with different numeric and string values that return different
238 values in different context. Not that C<triplevar ()> would be very useful,
239 compared to C<dualvar ()>, but at least this shows that it is possible.
241 C<triplevar ()> is not exported by default.
245 print DPeek for DDual
246 Data::Peek::triplevar ("\N{GREEK SMALL LETTER PI}", 3, 3.1415)'
248 PV("\317\200"\0) [UTF8 "\x{3c0}"]
254 =head3 DDump ($var [, $dig_level])
256 A very useful module when debugging is C<Devel::Peek>, but is has one big
257 disadvantage: it only prints to STDERR, which is not very handy when your
258 code wants to inspect variables al a low level.
260 Perl itself has C<sv_dump ()>, which does something similar, but still
261 prints to STDERR, and only one level deep.
263 C<DDump ()> is an attempt to make the innards available to the script level
264 with a reasonable level of compatibility. C<DDump ()> is context sensitive.
266 In void context, it behaves exactly like C<Perl_sv_dump ()>.
268 In scalar context, it returns what C<Perl_sv_dump ()> would have printed.
270 In list context, it returns a hash of the variable's properties. In this mode
271 you can pass an optional second argument that determines the depth of digging.
275 print scalar DDump "abc\x{0a}de\x{20ac}fg"
277 SV = PV(0x723250) at 0x8432b0
279 FLAGS = (PADBUSY,PADMY,POK,pPOK,UTF8)
280 PV = 0x731ac0 "abc\nde\342\202\254fg"\0 [UTF8 "abc\nde\x{20ac}fg"]
284 my %h = DDump "abc\x{0a}de\x{20ac}fg";
297 PV => '0x731ac0 "abc\\nde\\342\\202\\254fg"\\0 [UTF8 "abc\\nde\\x{20ac}fg"]',
299 sv => 'PV(0x723250) at 0x8432c0'
305 bar => [ 2, "baz", undef ],
326 sv => 'IV(0x747020) at 0x843a10'
340 sv => 'PVIV(0x7223e0) at 0x843a10'
352 PV => '0x7496c0 "egg"\\0',
354 sv => 'PVIV(0x7223e0) at 0x843a10'
357 sv => 'RV(0x79d058) at 0x843310'
360 =head2 DDump_IO ($io, $var [, $dig_level])
362 A wrapper function around perl's internal C<Perl_do_sv_dump ()>, which
363 makes C<Devel::Peek> completely superfluous. As PerlIO is only available
364 perl version 5.7.3 and up, this function is not available in older perls.
369 open my $eh, ">", \$dump;
370 DDump_IO ($eh, { 3 => 4, ape => [5..8]}, 6);
374 SV = RV(0x79d9e0) at 0x843f00
378 SV = PVHV(0x79c948) at 0x741090
383 ARRAY = 0x748ff0 (0:7, 2:1)
390 Elt "ape" HASH = 0x97623e03
391 SV = RV(0x79d9d8) at 0x8440e0
395 SV = PVAV(0x7264b0) at 0x741470
406 SV = IV(0x7467c8) at 0x7c1aa0
411 SV = IV(0x7467b0) at 0x8440f0
416 SV = IV(0x746810) at 0x75be00
421 SV = IV(0x746d38) at 0x7799d0
425 Elt "3" HASH = 0xa400c7f3
426 SV = IV(0x746fd0) at 0x7200e0
433 C<DDump ()> uses an XS wrapper around C<Perl_sv_dump ()> where the
434 STDERR is temporarily caught to a pipe. The internal XS helper functions
435 are not meant for user space
437 =head2 DDump_XS (SV *sv)
439 Base interface to internals for C<DDump ()>.
443 Not all types of references are supported.
447 No idea how far back this goes in perl support.
451 L<Devel::Peek(3)>, L<Data::Dumper(3)>, L<Data::Dump(3)>,
452 L<Data::Dump::Streamer(3)>
456 H.Merijn Brand <h.m.brand@xs4all.nl>
458 =head1 COPYRIGHT AND LICENSE
460 Copyright (C) 2008-2009 H.Merijn Brand
462 This library is free software; you can redistribute it and/or modify
463 it under the same terms as Perl itself.