line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Data::Dumper::Concise; |
2
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
14706
|
use 5.006; |
|
3
|
|
|
|
|
14
|
|
|
3
|
|
|
|
|
294
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
$VERSION = '2.022'; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
require Exporter; |
8
|
|
|
|
|
|
|
require Data::Dumper; |
9
|
|
|
|
|
|
|
|
10
|
3
|
|
|
3
|
|
945
|
BEGIN { @ISA = qw(Exporter) } |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
@EXPORT = qw(Dumper DumperF DumperObject); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub DumperObject { |
15
|
12
|
|
|
12
|
0
|
57
|
my $dd = Data::Dumper->new([]); |
16
|
12
|
|
|
|
|
321
|
$dd->Terse(1)->Indent(1)->Useqq(1)->Deparse(1)->Quotekeys(0)->Sortkeys(1); |
17
|
|
|
|
|
|
|
} |
18
|
|
|
|
|
|
|
|
19
|
12
|
|
|
12
|
0
|
6960
|
sub Dumper { DumperObject->Values([ @_ ])->Dump } |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
sub DumperF (&@) { |
22
|
2
|
|
|
2
|
0
|
720
|
my $code = shift; |
23
|
2
|
|
|
|
|
9
|
return $code->(map Dumper($_), @_); |
24
|
|
|
|
|
|
|
} |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Data::Dumper::Concise - Less indentation and newlines plus sub deparsing |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 SYNOPSIS |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
use Data::Dumper::Concise; |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
warn Dumper($var); |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
is equivalent to: |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
use Data::Dumper; |
39
|
|
|
|
|
|
|
{ |
40
|
|
|
|
|
|
|
local $Data::Dumper::Terse = 1; |
41
|
|
|
|
|
|
|
local $Data::Dumper::Indent = 1; |
42
|
|
|
|
|
|
|
local $Data::Dumper::Useqq = 1; |
43
|
|
|
|
|
|
|
local $Data::Dumper::Deparse = 1; |
44
|
|
|
|
|
|
|
local $Data::Dumper::Quotekeys = 0; |
45
|
|
|
|
|
|
|
local $Data::Dumper::Sortkeys = 1; |
46
|
|
|
|
|
|
|
warn Dumper($var); |
47
|
|
|
|
|
|
|
} |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
So for the structure: |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
{ foo => "bar\nbaz", quux => sub { "fleem" } }; |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
Data::Dumper::Concise will give you: |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
{ |
56
|
|
|
|
|
|
|
foo => "bar\nbaz", |
57
|
|
|
|
|
|
|
quux => sub { |
58
|
|
|
|
|
|
|
use warnings; |
59
|
|
|
|
|
|
|
use strict 'refs'; |
60
|
|
|
|
|
|
|
'fleem'; |
61
|
|
|
|
|
|
|
} |
62
|
|
|
|
|
|
|
} |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
instead of the default Data::Dumper output: |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
$VAR1 = { |
67
|
|
|
|
|
|
|
'quux' => sub { "DUMMY" }, |
68
|
|
|
|
|
|
|
'foo' => 'bar |
69
|
|
|
|
|
|
|
baz' |
70
|
|
|
|
|
|
|
}; |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
(note the tab indentation, oh joy ...) |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
If you need to get the underlying L object just call C. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
Also try out C which takes a C as the first argument to |
77
|
|
|
|
|
|
|
format the output. For example: |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
use Data::Dumper::Concise; |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
warn DumperF { "result: $_[0] result2: $_[1]" } $foo, $bar; |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
Which is the same as: |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
warn 'result: ' . Dumper($foo) . ' result2: ' . Dumper($bar); |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head1 DESCRIPTION |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
This module always exports a single function, Dumper, which can be called |
90
|
|
|
|
|
|
|
with an array of values to dump those values. |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
It exists, fundamentally, as a convenient way to reproduce a set of Dumper |
93
|
|
|
|
|
|
|
options that we've found ourselves using across large numbers of applications, |
94
|
|
|
|
|
|
|
primarily for debugging output. |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
The principle guiding theme is "all the concision you can get while still |
97
|
|
|
|
|
|
|
having a useful dump and not doing anything cleverer than setting Data::Dumper |
98
|
|
|
|
|
|
|
options" - it's been pointed out to us that Data::Dump::Streamer can produce |
99
|
|
|
|
|
|
|
shorter output with less lines of code. We know. This is simpler and we've |
100
|
|
|
|
|
|
|
never seen it segfault. But for complex/weird structures, it generally rocks. |
101
|
|
|
|
|
|
|
You should use it as well, when Concise is underkill. We do. |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
Why is deparsing on when the aim is concision? Because you often want to know |
104
|
|
|
|
|
|
|
what subroutine refs you have when debugging and because if you were planning |
105
|
|
|
|
|
|
|
to eval this back in you probably wanted to remove subrefs first and add them |
106
|
|
|
|
|
|
|
back in a custom way anyway. Note that this -does- force using the pure perl |
107
|
|
|
|
|
|
|
Dumper rather than the XS one, but I've never in my life seen Data::Dumper |
108
|
|
|
|
|
|
|
show up in a profile so "who cares?". |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=head1 BUT BUT BUT ... |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
Yes, we know. Consider this module in the ::Tiny spirit and feel free to |
113
|
|
|
|
|
|
|
write a Data::Dumper::Concise::ButWithExtraTwiddlyBits if it makes you |
114
|
|
|
|
|
|
|
happy. Then tell us so we can add it to the see also section. |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=head1 SUGARY SYNTAX |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
This package also provides: |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
L - provides Dwarn and DwarnS convenience functions |
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
L - shorter form for Data::Dumper::Concise::Sugar |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
=head1 SEE ALSO |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
We use for some purposes, and dearly love, the following alternatives: |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
L - prettiness oriented but not amazingly configurable |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
L - brilliant. beautiful. insane. extensive. excessive. try it. |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
L - no, really. If it's just plain data, JSON is a great option. |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
=head1 AUTHOR |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
mst - Matt S. Trout |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
frew - Arthur Axel "fREW" Schmidt |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
=head1 COPYRIGHT |
143
|
|
|
|
|
|
|
|
144
|
|
|
|
|
|
|
Copyright (c) 2010 the Data::Dumper::Concise L and L |
145
|
|
|
|
|
|
|
as listed above. |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
=head1 LICENSE |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
This library is free software and may be distributed under the same terms |
150
|
|
|
|
|
|
|
as perl itself. |
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
=cut |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
1; |