Dumper.pm 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463
  1. #
  2. # Data/Dumper.pm
  3. #
  4. # convert perl data structures into perl syntax suitable for both printing
  5. # and eval
  6. #
  7. # Documentation at the __END__
  8. #
  9. package Data::Dumper;
  10. BEGIN {
  11. $VERSION = '2.158'; # Don't forget to set version and release
  12. } # date in POD below!
  13. #$| = 1;
  14. use 5.006_001;
  15. require Exporter;
  16. require overload;
  17. use Carp;
  18. BEGIN {
  19. @ISA = qw(Exporter);
  20. @EXPORT = qw(Dumper);
  21. @EXPORT_OK = qw(DumperX);
  22. # if run under miniperl, or otherwise lacking dynamic loading,
  23. # XSLoader should be attempted to load, or the pure perl flag
  24. # toggled on load failure.
  25. eval {
  26. require XSLoader;
  27. XSLoader::load( 'Data::Dumper' );
  28. 1
  29. }
  30. or $Useperl = 1;
  31. }
  32. my $IS_ASCII = ord 'A' == 65;
  33. # module vars and their defaults
  34. $Indent = 2 unless defined $Indent;
  35. $Purity = 0 unless defined $Purity;
  36. $Pad = "" unless defined $Pad;
  37. $Varname = "VAR" unless defined $Varname;
  38. $Useqq = 0 unless defined $Useqq;
  39. $Terse = 0 unless defined $Terse;
  40. $Freezer = "" unless defined $Freezer;
  41. $Toaster = "" unless defined $Toaster;
  42. $Deepcopy = 0 unless defined $Deepcopy;
  43. $Quotekeys = 1 unless defined $Quotekeys;
  44. $Bless = "bless" unless defined $Bless;
  45. #$Expdepth = 0 unless defined $Expdepth;
  46. $Maxdepth = 0 unless defined $Maxdepth;
  47. $Pair = ' => ' unless defined $Pair;
  48. $Useperl = 0 unless defined $Useperl;
  49. $Sortkeys = 0 unless defined $Sortkeys;
  50. $Deparse = 0 unless defined $Deparse;
  51. $Sparseseen = 0 unless defined $Sparseseen;
  52. $Maxrecurse = 1000 unless defined $Maxrecurse;
  53. #
  54. # expects an arrayref of values to be dumped.
  55. # can optionally pass an arrayref of names for the values.
  56. # names must have leading $ sign stripped. begin the name with *
  57. # to cause output of arrays and hashes rather than refs.
  58. #
  59. sub new {
  60. my($c, $v, $n) = @_;
  61. croak "Usage: PACKAGE->new(ARRAYREF, [ARRAYREF])"
  62. unless (defined($v) && (ref($v) eq 'ARRAY'));
  63. $n = [] unless (defined($n) && (ref($n) eq 'ARRAY'));
  64. my($s) = {
  65. level => 0, # current recursive depth
  66. indent => $Indent, # various styles of indenting
  67. pad => $Pad, # all lines prefixed by this string
  68. xpad => "", # padding-per-level
  69. apad => "", # added padding for hash keys n such
  70. sep => "", # list separator
  71. pair => $Pair, # hash key/value separator: defaults to ' => '
  72. seen => {}, # local (nested) refs (id => [name, val])
  73. todump => $v, # values to dump []
  74. names => $n, # optional names for values []
  75. varname => $Varname, # prefix to use for tagging nameless ones
  76. purity => $Purity, # degree to which output is evalable
  77. useqq => $Useqq, # use "" for strings (backslashitis ensues)
  78. terse => $Terse, # avoid name output (where feasible)
  79. freezer => $Freezer, # name of Freezer method for objects
  80. toaster => $Toaster, # name of method to revive objects
  81. deepcopy => $Deepcopy, # do not cross-ref, except to stop recursion
  82. quotekeys => $Quotekeys, # quote hash keys
  83. 'bless' => $Bless, # keyword to use for "bless"
  84. # expdepth => $Expdepth, # cutoff depth for explicit dumping
  85. maxdepth => $Maxdepth, # depth beyond which we give up
  86. maxrecurse => $Maxrecurse, # depth beyond which we abort
  87. useperl => $Useperl, # use the pure Perl implementation
  88. sortkeys => $Sortkeys, # flag or filter for sorting hash keys
  89. deparse => $Deparse, # use B::Deparse for coderefs
  90. noseen => $Sparseseen, # do not populate the seen hash unless necessary
  91. };
  92. if ($Indent > 0) {
  93. $s->{xpad} = " ";
  94. $s->{sep} = "\n";
  95. }
  96. return bless($s, $c);
  97. }
  98. # Packed numeric addresses take less memory. Plus pack is faster than sprintf
  99. # Most users of current versions of Data::Dumper will be 5.008 or later.
  100. # Anyone on 5.6.1 and 5.6.2 upgrading will be rare (particularly judging by
  101. # the bug reports from users on those platforms), so for the common case avoid
  102. # complexity, and avoid even compiling the unneeded code.
  103. sub init_refaddr_format {
  104. }
  105. sub format_refaddr {
  106. require Scalar::Util;
  107. pack "J", Scalar::Util::refaddr(shift);
  108. };
  109. if ($] < 5.008) {
  110. eval <<'EOC' or die;
  111. no warnings 'redefine';
  112. my $refaddr_format;
  113. sub init_refaddr_format {
  114. require Config;
  115. my $f = $Config::Config{uvxformat};
  116. $f =~ tr/"//d;
  117. $refaddr_format = "0x%" . $f;
  118. }
  119. sub format_refaddr {
  120. require Scalar::Util;
  121. sprintf $refaddr_format, Scalar::Util::refaddr(shift);
  122. }
  123. 1
  124. EOC
  125. }
  126. #
  127. # add-to or query the table of already seen references
  128. #
  129. sub Seen {
  130. my($s, $g) = @_;
  131. if (defined($g) && (ref($g) eq 'HASH')) {
  132. init_refaddr_format();
  133. my($k, $v, $id);
  134. while (($k, $v) = each %$g) {
  135. if (defined $v) {
  136. if (ref $v) {
  137. $id = format_refaddr($v);
  138. if ($k =~ /^[*](.*)$/) {
  139. $k = (ref $v eq 'ARRAY') ? ( "\\\@" . $1 ) :
  140. (ref $v eq 'HASH') ? ( "\\\%" . $1 ) :
  141. (ref $v eq 'CODE') ? ( "\\\&" . $1 ) :
  142. ( "\$" . $1 ) ;
  143. }
  144. elsif ($k !~ /^\$/) {
  145. $k = "\$" . $k;
  146. }
  147. $s->{seen}{$id} = [$k, $v];
  148. }
  149. else {
  150. carp "Only refs supported, ignoring non-ref item \$$k";
  151. }
  152. }
  153. else {
  154. carp "Value of ref must be defined; ignoring undefined item \$$k";
  155. }
  156. }
  157. return $s;
  158. }
  159. else {
  160. return map { @$_ } values %{$s->{seen}};
  161. }
  162. }
  163. #
  164. # set or query the values to be dumped
  165. #
  166. sub Values {
  167. my($s, $v) = @_;
  168. if (defined($v)) {
  169. if (ref($v) eq 'ARRAY') {
  170. $s->{todump} = [@$v]; # make a copy
  171. return $s;
  172. }
  173. else {
  174. croak "Argument to Values, if provided, must be array ref";
  175. }
  176. }
  177. else {
  178. return @{$s->{todump}};
  179. }
  180. }
  181. #
  182. # set or query the names of the values to be dumped
  183. #
  184. sub Names {
  185. my($s, $n) = @_;
  186. if (defined($n)) {
  187. if (ref($n) eq 'ARRAY') {
  188. $s->{names} = [@$n]; # make a copy
  189. return $s;
  190. }
  191. else {
  192. croak "Argument to Names, if provided, must be array ref";
  193. }
  194. }
  195. else {
  196. return @{$s->{names}};
  197. }
  198. }
  199. sub DESTROY {}
  200. sub Dump {
  201. return &Dumpxs
  202. unless $Data::Dumper::Useperl || (ref($_[0]) && $_[0]->{useperl})
  203. || $Data::Dumper::Deparse || (ref($_[0]) && $_[0]->{deparse})
  204. # Use pure perl version on earlier releases on EBCDIC platforms
  205. || (! $IS_ASCII && $] lt 5.021_010);
  206. return &Dumpperl;
  207. }
  208. #
  209. # dump the refs in the current dumper object.
  210. # expects same args as new() if called via package name.
  211. #
  212. sub Dumpperl {
  213. my($s) = shift;
  214. my(@out, $val, $name);
  215. my($i) = 0;
  216. local(@post);
  217. init_refaddr_format();
  218. $s = $s->new(@_) unless ref $s;
  219. for $val (@{$s->{todump}}) {
  220. @post = ();
  221. $name = $s->{names}[$i++];
  222. $name = $s->_refine_name($name, $val, $i);
  223. my $valstr;
  224. {
  225. local($s->{apad}) = $s->{apad};
  226. $s->{apad} .= ' ' x (length($name) + 3) if $s->{indent} >= 2 and !$s->{terse};
  227. $valstr = $s->_dump($val, $name);
  228. }
  229. $valstr = "$name = " . $valstr . ';' if @post or !$s->{terse};
  230. my $out = $s->_compose_out($valstr, \@post);
  231. push @out, $out;
  232. }
  233. return wantarray ? @out : join('', @out);
  234. }
  235. # wrap string in single quotes (escaping if needed)
  236. sub _quote {
  237. my $val = shift;
  238. $val =~ s/([\\\'])/\\$1/g;
  239. return "'" . $val . "'";
  240. }
  241. # Old Perls (5.14-) have trouble resetting vstring magic when it is no
  242. # longer valid.
  243. use constant _bad_vsmg => defined &_vstring && (_vstring(~v0)||'') eq "v0";
  244. #
  245. # twist, toil and turn;
  246. # and recurse, of course.
  247. # sometimes sordidly;
  248. # and curse if no recourse.
  249. #
  250. sub _dump {
  251. my($s, $val, $name) = @_;
  252. my($out, $type, $id, $sname);
  253. $type = ref $val;
  254. $out = "";
  255. if ($type) {
  256. # Call the freezer method if it's specified and the object has the
  257. # method. Trap errors and warn() instead of die()ing, like the XS
  258. # implementation.
  259. my $freezer = $s->{freezer};
  260. if ($freezer and UNIVERSAL::can($val, $freezer)) {
  261. eval { $val->$freezer() };
  262. warn "WARNING(Freezer method call failed): $@" if $@;
  263. }
  264. require Scalar::Util;
  265. my $realpack = Scalar::Util::blessed($val);
  266. my $realtype = $realpack ? Scalar::Util::reftype($val) : ref $val;
  267. $id = format_refaddr($val);
  268. # Note: By this point $name is always defined and of non-zero length.
  269. # Keep a tab on it so that we do not fall into recursive pit.
  270. if (exists $s->{seen}{$id}) {
  271. if ($s->{purity} and $s->{level} > 0) {
  272. $out = ($realtype eq 'HASH') ? '{}' :
  273. ($realtype eq 'ARRAY') ? '[]' :
  274. 'do{my $o}' ;
  275. push @post, $name . " = " . $s->{seen}{$id}[0];
  276. }
  277. else {
  278. $out = $s->{seen}{$id}[0];
  279. if ($name =~ /^([\@\%])/) {
  280. my $start = $1;
  281. if ($out =~ /^\\$start/) {
  282. $out = substr($out, 1);
  283. }
  284. else {
  285. $out = $start . '{' . $out . '}';
  286. }
  287. }
  288. }
  289. return $out;
  290. }
  291. else {
  292. # store our name
  293. $s->{seen}{$id} = [ (
  294. ($name =~ /^[@%]/)
  295. ? ('\\' . $name )
  296. : ($realtype eq 'CODE' and $name =~ /^[*](.*)$/)
  297. ? ('\\&' . $1 )
  298. : $name
  299. ), $val ];
  300. }
  301. my $no_bless = 0;
  302. my $is_regex = 0;
  303. if ( $realpack and ($] >= 5.009005 ? re::is_regexp($val) : $realpack eq 'Regexp') ) {
  304. $is_regex = 1;
  305. $no_bless = $realpack eq 'Regexp';
  306. }
  307. # If purity is not set and maxdepth is set, then check depth:
  308. # if we have reached maximum depth, return the string
  309. # representation of the thing we are currently examining
  310. # at this depth (i.e., 'Foo=ARRAY(0xdeadbeef)').
  311. if (!$s->{purity}
  312. and defined($s->{maxdepth})
  313. and $s->{maxdepth} > 0
  314. and $s->{level} >= $s->{maxdepth})
  315. {
  316. return qq['$val'];
  317. }
  318. # avoid recursing infinitely [perl #122111]
  319. if ($s->{maxrecurse} > 0
  320. and $s->{level} >= $s->{maxrecurse}) {
  321. die "Recursion limit of $s->{maxrecurse} exceeded";
  322. }
  323. # we have a blessed ref
  324. my ($blesspad);
  325. if ($realpack and !$no_bless) {
  326. $out = $s->{'bless'} . '( ';
  327. $blesspad = $s->{apad};
  328. $s->{apad} .= ' ' if ($s->{indent} >= 2);
  329. }
  330. $s->{level}++;
  331. my $ipad = $s->{xpad} x $s->{level};
  332. if ($is_regex) {
  333. my $pat;
  334. my $flags = "";
  335. if (defined(*re::regexp_pattern{CODE})) {
  336. ($pat, $flags) = re::regexp_pattern($val);
  337. }
  338. else {
  339. $pat = "$val";
  340. }
  341. $pat =~ s <(\\.)|/> { $1 || '\\/' }ge;
  342. $out .= "qr/$pat/$flags";
  343. }
  344. elsif ($realtype eq 'SCALAR' || $realtype eq 'REF'
  345. || $realtype eq 'VSTRING') {
  346. if ($realpack) {
  347. $out .= 'do{\\(my $o = ' . $s->_dump($$val, "\${$name}") . ')}';
  348. }
  349. else {
  350. $out .= '\\' . $s->_dump($$val, "\${$name}");
  351. }
  352. }
  353. elsif ($realtype eq 'GLOB') {
  354. $out .= '\\' . $s->_dump($$val, "*{$name}");
  355. }
  356. elsif ($realtype eq 'ARRAY') {
  357. my($pad, $mname);
  358. my($i) = 0;
  359. $out .= ($name =~ /^\@/) ? '(' : '[';
  360. $pad = $s->{sep} . $s->{pad} . $s->{apad};
  361. ($name =~ /^\@(.*)$/) ? ($mname = "\$" . $1) :
  362. # omit -> if $foo->[0]->{bar}, but not ${$foo->[0]}->{bar}
  363. ($name =~ /^\\?[\%\@\*\$][^{].*[]}]$/) ? ($mname = $name) :
  364. ($mname = $name . '->');
  365. $mname .= '->' if $mname =~ /^\*.+\{[A-Z]+\}$/;
  366. for my $v (@$val) {
  367. $sname = $mname . '[' . $i . ']';
  368. $out .= $pad . $ipad . '#' . $i
  369. if $s->{indent} >= 3;
  370. $out .= $pad . $ipad . $s->_dump($v, $sname);
  371. $out .= "," if $i++ < $#$val;
  372. }
  373. $out .= $pad . ($s->{xpad} x ($s->{level} - 1)) if $i;
  374. $out .= ($name =~ /^\@/) ? ')' : ']';
  375. }
  376. elsif ($realtype eq 'HASH') {
  377. my ($k, $v, $pad, $lpad, $mname, $pair);
  378. $out .= ($name =~ /^\%/) ? '(' : '{';
  379. $pad = $s->{sep} . $s->{pad} . $s->{apad};
  380. $lpad = $s->{apad};
  381. $pair = $s->{pair};
  382. ($name =~ /^\%(.*)$/) ? ($mname = "\$" . $1) :
  383. # omit -> if $foo->[0]->{bar}, but not ${$foo->[0]}->{bar}
  384. ($name =~ /^\\?[\%\@\*\$][^{].*[]}]$/) ? ($mname = $name) :
  385. ($mname = $name . '->');
  386. $mname .= '->' if $mname =~ /^\*.+\{[A-Z]+\}$/;
  387. my $sortkeys = defined($s->{sortkeys}) ? $s->{sortkeys} : '';
  388. my $keys = [];
  389. if ($sortkeys) {
  390. if (ref($s->{sortkeys}) eq 'CODE') {
  391. $keys = $s->{sortkeys}($val);
  392. unless (ref($keys) eq 'ARRAY') {
  393. carp "Sortkeys subroutine did not return ARRAYREF";
  394. $keys = [];
  395. }
  396. }
  397. else {
  398. $keys = [ sort keys %$val ];
  399. }
  400. }
  401. # Ensure hash iterator is reset
  402. keys(%$val);
  403. my $key;
  404. while (($k, $v) = ! $sortkeys ? (each %$val) :
  405. @$keys ? ($key = shift(@$keys), $val->{$key}) :
  406. () )
  407. {
  408. my $nk = $s->_dump($k, "");
  409. # _dump doesn't quote numbers of this form
  410. if ($s->{quotekeys} && $nk =~ /^(?:0|-?[1-9][0-9]{0,8})\z/) {
  411. $nk = $s->{useqq} ? qq("$nk") : qq('$nk');
  412. }
  413. elsif (!$s->{quotekeys} and $nk =~ /^[\"\']([A-Za-z_]\w*)[\"\']$/) {
  414. $nk = $1
  415. }
  416. $sname = $mname . '{' . $nk . '}';
  417. $out .= $pad . $ipad . $nk . $pair;
  418. # temporarily alter apad
  419. $s->{apad} .= (" " x (length($nk) + 4))
  420. if $s->{indent} >= 2;
  421. $out .= $s->_dump($val->{$k}, $sname) . ",";
  422. $s->{apad} = $lpad
  423. if $s->{indent} >= 2;
  424. }
  425. if (substr($out, -1) eq ',') {
  426. chop $out;
  427. $out .= $pad . ($s->{xpad} x ($s->{level} - 1));
  428. }
  429. $out .= ($name =~ /^\%/) ? ')' : '}';
  430. }
  431. elsif ($realtype eq 'CODE') {
  432. if ($s->{deparse}) {
  433. require B::Deparse;
  434. my $sub = 'sub ' . (B::Deparse->new)->coderef2text($val);
  435. $pad = $s->{sep} . $s->{pad} . $s->{apad} . $s->{xpad} x ($s->{level} - 1);
  436. $sub =~ s/\n/$pad/gse;
  437. $out .= $sub;
  438. }
  439. else {
  440. $out .= 'sub { "DUMMY" }';
  441. carp "Encountered CODE ref, using dummy placeholder" if $s->{purity};
  442. }
  443. }
  444. else {
  445. croak "Can't handle '$realtype' type";
  446. }
  447. if ($realpack and !$no_bless) { # we have a blessed ref
  448. $out .= ', ' . _quote($realpack) . ' )';
  449. $out .= '->' . $s->{toaster} . '()'
  450. if $s->{toaster} ne '';
  451. $s->{apad} = $blesspad;
  452. }
  453. $s->{level}--;
  454. }
  455. else { # simple scalar
  456. my $ref = \$_[1];
  457. my $v;
  458. # first, catalog the scalar
  459. if ($name ne '') {
  460. $id = format_refaddr($ref);
  461. if (exists $s->{seen}{$id}) {
  462. if ($s->{seen}{$id}[2]) {
  463. $out = $s->{seen}{$id}[0];
  464. #warn "[<$out]\n";
  465. return "\${$out}";
  466. }
  467. }
  468. else {
  469. #warn "[>\\$name]\n";
  470. $s->{seen}{$id} = ["\\$name", $ref];
  471. }
  472. }
  473. $ref = \$val;
  474. if (ref($ref) eq 'GLOB') { # glob
  475. my $name = substr($val, 1);
  476. if ($name =~ /^[A-Za-z_][\w:]*$/ && $name ne 'main::') {
  477. $name =~ s/^main::/::/;
  478. $sname = $name;
  479. }
  480. else {
  481. $sname = $s->_dump(
  482. $name eq 'main::' || $] < 5.007 && $name eq "main::\0"
  483. ? ''
  484. : $name,
  485. "",
  486. );
  487. $sname = '{' . $sname . '}';
  488. }
  489. if ($s->{purity}) {
  490. my $k;
  491. local ($s->{level}) = 0;
  492. for $k (qw(SCALAR ARRAY HASH)) {
  493. my $gval = *$val{$k};
  494. next unless defined $gval;
  495. next if $k eq "SCALAR" && ! defined $$gval; # always there
  496. # _dump can push into @post, so we hold our place using $postlen
  497. my $postlen = scalar @post;
  498. $post[$postlen] = "\*$sname = ";
  499. local ($s->{apad}) = " " x length($post[$postlen]) if $s->{indent} >= 2;
  500. $post[$postlen] .= $s->_dump($gval, "\*$sname\{$k\}");
  501. }
  502. }
  503. $out .= '*' . $sname;
  504. }
  505. elsif (!defined($val)) {
  506. $out .= "undef";
  507. }
  508. elsif (defined &_vstring and $v = _vstring($val)
  509. and !_bad_vsmg || eval $v eq $val) {
  510. $out .= $v;
  511. }
  512. elsif (!defined &_vstring
  513. and ref $ref eq 'VSTRING' || eval{Scalar::Util::isvstring($val)}) {
  514. $out .= sprintf "%vd", $val;
  515. }
  516. # \d here would treat "1\x{660}" as a safe decimal number
  517. elsif ($val =~ /^(?:0|-?[1-9][0-9]{0,8})\z/) { # safe decimal number
  518. $out .= $val;
  519. }
  520. else { # string
  521. if ($s->{useqq} or $val =~ tr/\0-\377//c) {
  522. # Fall back to qq if there's Unicode
  523. $out .= qquote($val, $s->{useqq});
  524. }
  525. else {
  526. $out .= _quote($val);
  527. }
  528. }
  529. }
  530. if ($id) {
  531. # if we made it this far, $id was added to seen list at current
  532. # level, so remove it to get deep copies
  533. if ($s->{deepcopy}) {
  534. delete($s->{seen}{$id});
  535. }
  536. elsif ($name) {
  537. $s->{seen}{$id}[2] = 1;
  538. }
  539. }
  540. return $out;
  541. }
  542. #
  543. # non-OO style of earlier version
  544. #
  545. sub Dumper {
  546. return Data::Dumper->Dump([@_]);
  547. }
  548. # compat stub
  549. sub DumperX {
  550. return Data::Dumper->Dumpxs([@_], []);
  551. }
  552. #
  553. # reset the "seen" cache
  554. #
  555. sub Reset {
  556. my($s) = shift;
  557. $s->{seen} = {};
  558. return $s;
  559. }
  560. sub Indent {
  561. my($s, $v) = @_;
  562. if (defined($v)) {
  563. if ($v == 0) {
  564. $s->{xpad} = "";
  565. $s->{sep} = "";
  566. }
  567. else {
  568. $s->{xpad} = " ";
  569. $s->{sep} = "\n";
  570. }
  571. $s->{indent} = $v;
  572. return $s;
  573. }
  574. else {
  575. return $s->{indent};
  576. }
  577. }
  578. sub Pair {
  579. my($s, $v) = @_;
  580. defined($v) ? (($s->{pair} = $v), return $s) : $s->{pair};
  581. }
  582. sub Pad {
  583. my($s, $v) = @_;
  584. defined($v) ? (($s->{pad} = $v), return $s) : $s->{pad};
  585. }
  586. sub Varname {
  587. my($s, $v) = @_;
  588. defined($v) ? (($s->{varname} = $v), return $s) : $s->{varname};
  589. }
  590. sub Purity {
  591. my($s, $v) = @_;
  592. defined($v) ? (($s->{purity} = $v), return $s) : $s->{purity};
  593. }
  594. sub Useqq {
  595. my($s, $v) = @_;
  596. defined($v) ? (($s->{useqq} = $v), return $s) : $s->{useqq};
  597. }
  598. sub Terse {
  599. my($s, $v) = @_;
  600. defined($v) ? (($s->{terse} = $v), return $s) : $s->{terse};
  601. }
  602. sub Freezer {
  603. my($s, $v) = @_;
  604. defined($v) ? (($s->{freezer} = $v), return $s) : $s->{freezer};
  605. }
  606. sub Toaster {
  607. my($s, $v) = @_;
  608. defined($v) ? (($s->{toaster} = $v), return $s) : $s->{toaster};
  609. }
  610. sub Deepcopy {
  611. my($s, $v) = @_;
  612. defined($v) ? (($s->{deepcopy} = $v), return $s) : $s->{deepcopy};
  613. }
  614. sub Quotekeys {
  615. my($s, $v) = @_;
  616. defined($v) ? (($s->{quotekeys} = $v), return $s) : $s->{quotekeys};
  617. }
  618. sub Bless {
  619. my($s, $v) = @_;
  620. defined($v) ? (($s->{'bless'} = $v), return $s) : $s->{'bless'};
  621. }
  622. sub Maxdepth {
  623. my($s, $v) = @_;
  624. defined($v) ? (($s->{'maxdepth'} = $v), return $s) : $s->{'maxdepth'};
  625. }
  626. sub Maxrecurse {
  627. my($s, $v) = @_;
  628. defined($v) ? (($s->{'maxrecurse'} = $v), return $s) : $s->{'maxrecurse'};
  629. }
  630. sub Useperl {
  631. my($s, $v) = @_;
  632. defined($v) ? (($s->{'useperl'} = $v), return $s) : $s->{'useperl'};
  633. }
  634. sub Sortkeys {
  635. my($s, $v) = @_;
  636. defined($v) ? (($s->{'sortkeys'} = $v), return $s) : $s->{'sortkeys'};
  637. }
  638. sub Deparse {
  639. my($s, $v) = @_;
  640. defined($v) ? (($s->{'deparse'} = $v), return $s) : $s->{'deparse'};
  641. }
  642. sub Sparseseen {
  643. my($s, $v) = @_;
  644. defined($v) ? (($s->{'noseen'} = $v), return $s) : $s->{'noseen'};
  645. }
  646. # used by qquote below
  647. my %esc = (
  648. "\a" => "\\a",
  649. "\b" => "\\b",
  650. "\t" => "\\t",
  651. "\n" => "\\n",
  652. "\f" => "\\f",
  653. "\r" => "\\r",
  654. "\e" => "\\e",
  655. );
  656. my $low_controls = ($IS_ASCII)
  657. # This includes \177, because traditionally it has been
  658. # output as octal, even though it isn't really a "low"
  659. # control
  660. ? qr/[\0-\x1f\177]/
  661. # EBCDIC low controls.
  662. : qr/[\0-\x3f]/;
  663. # put a string value in double quotes
  664. sub qquote {
  665. local($_) = shift;
  666. s/([\\\"\@\$])/\\$1/g;
  667. # This efficiently changes the high ordinal characters to \x{} if the utf8
  668. # flag is on. On ASCII platforms, the high ordinals are all the
  669. # non-ASCII's. On EBCDIC platforms, we don't include in these the non-ASCII
  670. # controls whose ordinals are less than SPACE, excluded below by the range
  671. # \0-\x3f. On ASCII platforms this range just compiles as part of :ascii:.
  672. # On EBCDIC platforms, there is just one outlier high ordinal control, and
  673. # it gets output as \x{}.
  674. my $bytes; { use bytes; $bytes = length }
  675. s/([^[:ascii:]\0-\x3f])/sprintf("\\x{%x}",ord($1))/ge
  676. if $bytes > length
  677. # The above doesn't get the EBCDIC outlier high ordinal control when
  678. # the string is UTF-8 but there are no UTF-8 variant characters in it.
  679. # We want that to come out as \x{} anyway. We need is_utf8() to do
  680. # this.
  681. || (! $IS_ASCII && $] ge 5.008_001 && utf8::is_utf8($_));
  682. return qq("$_") unless /[[:^print:]]/; # fast exit if only printables
  683. # Here, there is at least one non-printable to output. First, translate the
  684. # escapes.
  685. s/([\a\b\t\n\f\r\e])/$esc{$1}/g;
  686. # no need for 3 digits in escape for octals not followed by a digit.
  687. s/($low_controls)(?!\d)/'\\'.sprintf('%o',ord($1))/eg;
  688. # But otherwise use 3 digits
  689. s/($low_controls)/'\\'.sprintf('%03o',ord($1))/eg;
  690. # all but last branch below not supported --BEHAVIOR SUBJECT TO CHANGE--
  691. my $high = shift || "";
  692. if ($high eq "iso8859") { # Doesn't escape the Latin1 printables
  693. if ($IS_ASCII) {
  694. s/([\200-\240])/'\\'.sprintf('%o',ord($1))/eg;
  695. }
  696. elsif ($] ge 5.007_003) {
  697. my $high_control = utf8::unicode_to_native(0x9F);
  698. s/$high_control/sprintf('\\%o',ord($1))/eg;
  699. }
  700. } elsif ($high eq "utf8") {
  701. # Some discussion of what to do here is in
  702. # https://rt.perl.org/Ticket/Display.html?id=113088
  703. # use utf8;
  704. # $str =~ s/([^\040-\176])/sprintf "\\x{%04x}", ord($1)/ge;
  705. } elsif ($high eq "8bit") {
  706. # leave it as it is
  707. } else {
  708. s/([[:^ascii:]])/'\\'.sprintf('%03o',ord($1))/eg;
  709. #s/([^\040-\176])/sprintf "\\x{%04x}", ord($1)/ge;
  710. }
  711. return qq("$_");
  712. }
  713. # helper sub to sort hash keys in Perl < 5.8.0 where we don't have
  714. # access to sortsv() from XS
  715. sub _sortkeys { [ sort keys %{$_[0]} ] }
  716. sub _refine_name {
  717. my $s = shift;
  718. my ($name, $val, $i) = @_;
  719. if (defined $name) {
  720. if ($name =~ /^[*](.*)$/) {
  721. if (defined $val) {
  722. $name = (ref $val eq 'ARRAY') ? ( "\@" . $1 ) :
  723. (ref $val eq 'HASH') ? ( "\%" . $1 ) :
  724. (ref $val eq 'CODE') ? ( "\*" . $1 ) :
  725. ( "\$" . $1 ) ;
  726. }
  727. else {
  728. $name = "\$" . $1;
  729. }
  730. }
  731. elsif ($name !~ /^\$/) {
  732. $name = "\$" . $name;
  733. }
  734. }
  735. else { # no names provided
  736. $name = "\$" . $s->{varname} . $i;
  737. }
  738. return $name;
  739. }
  740. sub _compose_out {
  741. my $s = shift;
  742. my ($valstr, $postref) = @_;
  743. my $out = "";
  744. $out .= $s->{pad} . $valstr . $s->{sep};
  745. if (@{$postref}) {
  746. $out .= $s->{pad} .
  747. join(';' . $s->{sep} . $s->{pad}, @{$postref}) .
  748. ';' .
  749. $s->{sep};
  750. }
  751. return $out;
  752. }
  753. 1;
  754. __END__
  755. =head1 NAME
  756. Data::Dumper - stringified perl data structures, suitable for both printing and C<eval>
  757. =head1 SYNOPSIS
  758. use Data::Dumper;
  759. # simple procedural interface
  760. print Dumper($foo, $bar);
  761. # extended usage with names
  762. print Data::Dumper->Dump([$foo, $bar], [qw(foo *ary)]);
  763. # configuration variables
  764. {
  765. local $Data::Dumper::Purity = 1;
  766. eval Data::Dumper->Dump([$foo, $bar], [qw(foo *ary)]);
  767. }
  768. # OO usage
  769. $d = Data::Dumper->new([$foo, $bar], [qw(foo *ary)]);
  770. ...
  771. print $d->Dump;
  772. ...
  773. $d->Purity(1)->Terse(1)->Deepcopy(1);
  774. eval $d->Dump;
  775. =head1 DESCRIPTION
  776. Given a list of scalars or reference variables, writes out their contents in
  777. perl syntax. The references can also be objects. The content of each
  778. variable is output in a single Perl statement. Handles self-referential
  779. structures correctly.
  780. The return value can be C<eval>ed to get back an identical copy of the
  781. original reference structure. (Please do consider the security implications
  782. of eval'ing code from untrusted sources!)
  783. Any references that are the same as one of those passed in will be named
  784. C<$VAR>I<n> (where I<n> is a numeric suffix), and other duplicate references
  785. to substructures within C<$VAR>I<n> will be appropriately labeled using arrow
  786. notation. You can specify names for individual values to be dumped if you
  787. use the C<Dump()> method, or you can change the default C<$VAR> prefix to
  788. something else. See C<$Data::Dumper::Varname> and C<$Data::Dumper::Terse>
  789. below.
  790. The default output of self-referential structures can be C<eval>ed, but the
  791. nested references to C<$VAR>I<n> will be undefined, since a recursive
  792. structure cannot be constructed using one Perl statement. You should set the
  793. C<Purity> flag to 1 to get additional statements that will correctly fill in
  794. these references. Moreover, if C<eval>ed when strictures are in effect,
  795. you need to ensure that any variables it accesses are previously declared.
  796. In the extended usage form, the references to be dumped can be given
  797. user-specified names. If a name begins with a C<*>, the output will
  798. describe the dereferenced type of the supplied reference for hashes and
  799. arrays, and coderefs. Output of names will be avoided where possible if
  800. the C<Terse> flag is set.
  801. In many cases, methods that are used to set the internal state of the
  802. object will return the object itself, so method calls can be conveniently
  803. chained together.
  804. Several styles of output are possible, all controlled by setting
  805. the C<Indent> flag. See L<Configuration Variables or Methods> below
  806. for details.
  807. =head2 Methods
  808. =over 4
  809. =item I<PACKAGE>->new(I<ARRAYREF [>, I<ARRAYREF]>)
  810. Returns a newly created C<Data::Dumper> object. The first argument is an
  811. anonymous array of values to be dumped. The optional second argument is an
  812. anonymous array of names for the values. The names need not have a leading
  813. C<$> sign, and must be comprised of alphanumeric characters. You can begin
  814. a name with a C<*> to specify that the dereferenced type must be dumped
  815. instead of the reference itself, for ARRAY and HASH references.
  816. The prefix specified by C<$Data::Dumper::Varname> will be used with a
  817. numeric suffix if the name for a value is undefined.
  818. Data::Dumper will catalog all references encountered while dumping the
  819. values. Cross-references (in the form of names of substructures in perl
  820. syntax) will be inserted at all possible points, preserving any structural
  821. interdependencies in the original set of values. Structure traversal is
  822. depth-first, and proceeds in order from the first supplied value to
  823. the last.
  824. =item I<$OBJ>->Dump I<or> I<PACKAGE>->Dump(I<ARRAYREF [>, I<ARRAYREF]>)
  825. Returns the stringified form of the values stored in the object (preserving
  826. the order in which they were supplied to C<new>), subject to the
  827. configuration options below. In a list context, it returns a list
  828. of strings corresponding to the supplied values.
  829. The second form, for convenience, simply calls the C<new> method on its
  830. arguments before dumping the object immediately.
  831. =item I<$OBJ>->Seen(I<[HASHREF]>)
  832. Queries or adds to the internal table of already encountered references.
  833. You must use C<Reset> to explicitly clear the table if needed. Such
  834. references are not dumped; instead, their names are inserted wherever they
  835. are encountered subsequently. This is useful especially for properly
  836. dumping subroutine references.
  837. Expects an anonymous hash of name => value pairs. Same rules apply for names
  838. as in C<new>. If no argument is supplied, will return the "seen" list of
  839. name => value pairs, in a list context. Otherwise, returns the object
  840. itself.
  841. =item I<$OBJ>->Values(I<[ARRAYREF]>)
  842. Queries or replaces the internal array of values that will be dumped. When
  843. called without arguments, returns the values as a list. When called with a
  844. reference to an array of replacement values, returns the object itself. When
  845. called with any other type of argument, dies.
  846. =item I<$OBJ>->Names(I<[ARRAYREF]>)
  847. Queries or replaces the internal array of user supplied names for the values
  848. that will be dumped. When called without arguments, returns the names. When
  849. called with an array of replacement names, returns the object itself. If the
  850. number of replacement names exceeds the number of values to be named, the
  851. excess names will not be used. If the number of replacement names falls short
  852. of the number of values to be named, the list of replacement names will be
  853. exhausted and remaining values will not be renamed. When
  854. called with any other type of argument, dies.
  855. =item I<$OBJ>->Reset
  856. Clears the internal table of "seen" references and returns the object
  857. itself.
  858. =back
  859. =head2 Functions
  860. =over 4
  861. =item Dumper(I<LIST>)
  862. Returns the stringified form of the values in the list, subject to the
  863. configuration options below. The values will be named C<$VAR>I<n> in the
  864. output, where I<n> is a numeric suffix. Will return a list of strings
  865. in a list context.
  866. =back
  867. =head2 Configuration Variables or Methods
  868. Several configuration variables can be used to control the kind of output
  869. generated when using the procedural interface. These variables are usually
  870. C<local>ized in a block so that other parts of the code are not affected by
  871. the change.
  872. These variables determine the default state of the object created by calling
  873. the C<new> method, but cannot be used to alter the state of the object
  874. thereafter. The equivalent method names should be used instead to query
  875. or set the internal state of the object.
  876. The method forms return the object itself when called with arguments,
  877. so that they can be chained together nicely.
  878. =over 4
  879. =item *
  880. $Data::Dumper::Indent I<or> I<$OBJ>->Indent(I<[NEWVAL]>)
  881. Controls the style of indentation. It can be set to 0, 1, 2 or 3. Style 0
  882. spews output without any newlines, indentation, or spaces between list
  883. items. It is the most compact format possible that can still be called
  884. valid perl. Style 1 outputs a readable form with newlines but no fancy
  885. indentation (each level in the structure is simply indented by a fixed
  886. amount of whitespace). Style 2 (the default) outputs a very readable form
  887. which takes into account the length of hash keys (so the hash value lines
  888. up). Style 3 is like style 2, but also annotates the elements of arrays
  889. with their index (but the comment is on its own line, so array output
  890. consumes twice the number of lines). Style 2 is the default.
  891. =item *
  892. $Data::Dumper::Purity I<or> I<$OBJ>->Purity(I<[NEWVAL]>)
  893. Controls the degree to which the output can be C<eval>ed to recreate the
  894. supplied reference structures. Setting it to 1 will output additional perl
  895. statements that will correctly recreate nested references. The default is
  896. 0.
  897. =item *
  898. $Data::Dumper::Pad I<or> I<$OBJ>->Pad(I<[NEWVAL]>)
  899. Specifies the string that will be prefixed to every line of the output.
  900. Empty string by default.
  901. =item *
  902. $Data::Dumper::Varname I<or> I<$OBJ>->Varname(I<[NEWVAL]>)
  903. Contains the prefix to use for tagging variable names in the output. The
  904. default is "VAR".
  905. =item *
  906. $Data::Dumper::Useqq I<or> I<$OBJ>->Useqq(I<[NEWVAL]>)
  907. When set, enables the use of double quotes for representing string values.
  908. Whitespace other than space will be represented as C<[\n\t\r]>, "unsafe"
  909. characters will be backslashed, and unprintable characters will be output as
  910. quoted octal integers. The default is 0.
  911. =item *
  912. $Data::Dumper::Terse I<or> I<$OBJ>->Terse(I<[NEWVAL]>)
  913. When set, Data::Dumper will emit single, non-self-referential values as
  914. atoms/terms rather than statements. This means that the C<$VAR>I<n> names
  915. will be avoided where possible, but be advised that such output may not
  916. always be parseable by C<eval>.
  917. =item *
  918. $Data::Dumper::Freezer I<or> $I<OBJ>->Freezer(I<[NEWVAL]>)
  919. Can be set to a method name, or to an empty string to disable the feature.
  920. Data::Dumper will invoke that method via the object before attempting to
  921. stringify it. This method can alter the contents of the object (if, for
  922. instance, it contains data allocated from C), and even rebless it in a
  923. different package. The client is responsible for making sure the specified
  924. method can be called via the object, and that the object ends up containing
  925. only perl data types after the method has been called. Defaults to an empty
  926. string.
  927. If an object does not support the method specified (determined using
  928. UNIVERSAL::can()) then the call will be skipped. If the method dies a
  929. warning will be generated.
  930. =item *
  931. $Data::Dumper::Toaster I<or> $I<OBJ>->Toaster(I<[NEWVAL]>)
  932. Can be set to a method name, or to an empty string to disable the feature.
  933. Data::Dumper will emit a method call for any objects that are to be dumped
  934. using the syntax C<bless(DATA, CLASS)-E<gt>METHOD()>. Note that this means that
  935. the method specified will have to perform any modifications required on the
  936. object (like creating new state within it, and/or reblessing it in a
  937. different package) and then return it. The client is responsible for making
  938. sure the method can be called via the object, and that it returns a valid
  939. object. Defaults to an empty string.
  940. =item *
  941. $Data::Dumper::Deepcopy I<or> $I<OBJ>->Deepcopy(I<[NEWVAL]>)
  942. Can be set to a boolean value to enable deep copies of structures.
  943. Cross-referencing will then only be done when absolutely essential
  944. (i.e., to break reference cycles). Default is 0.
  945. =item *
  946. $Data::Dumper::Quotekeys I<or> $I<OBJ>->Quotekeys(I<[NEWVAL]>)
  947. Can be set to a boolean value to control whether hash keys are quoted.
  948. A defined false value will avoid quoting hash keys when it looks like a simple
  949. string. Default is 1, which will always enclose hash keys in quotes.
  950. =item *
  951. $Data::Dumper::Bless I<or> $I<OBJ>->Bless(I<[NEWVAL]>)
  952. Can be set to a string that specifies an alternative to the C<bless>
  953. builtin operator used to create objects. A function with the specified
  954. name should exist, and should accept the same arguments as the builtin.
  955. Default is C<bless>.
  956. =item *
  957. $Data::Dumper::Pair I<or> $I<OBJ>->Pair(I<[NEWVAL]>)
  958. Can be set to a string that specifies the separator between hash keys
  959. and values. To dump nested hash, array and scalar values to JavaScript,
  960. use: C<$Data::Dumper::Pair = ' : ';>. Implementing C<bless> in JavaScript
  961. is left as an exercise for the reader.
  962. A function with the specified name exists, and accepts the same arguments
  963. as the builtin.
  964. Default is: C< =E<gt> >.
  965. =item *
  966. $Data::Dumper::Maxdepth I<or> $I<OBJ>->Maxdepth(I<[NEWVAL]>)
  967. Can be set to a positive integer that specifies the depth beyond which
  968. we don't venture into a structure. Has no effect when
  969. C<Data::Dumper::Purity> is set. (Useful in debugger when we often don't
  970. want to see more than enough). Default is 0, which means there is
  971. no maximum depth.
  972. =item *
  973. $Data::Dumper::Maxrecurse I<or> $I<OBJ>->Maxrecurse(I<[NEWVAL]>)
  974. Can be set to a positive integer that specifies the depth beyond which
  975. recursion into a structure will throw an exception. This is intended
  976. as a security measure to prevent perl running out of stack space when
  977. dumping an excessively deep structure. Can be set to 0 to remove the
  978. limit. Default is 1000.
  979. =item *
  980. $Data::Dumper::Useperl I<or> $I<OBJ>->Useperl(I<[NEWVAL]>)
  981. Can be set to a boolean value which controls whether the pure Perl
  982. implementation of C<Data::Dumper> is used. The C<Data::Dumper> module is
  983. a dual implementation, with almost all functionality written in both
  984. pure Perl and also in XS ('C'). Since the XS version is much faster, it
  985. will always be used if possible. This option lets you override the
  986. default behavior, usually for testing purposes only. Default is 0, which
  987. means the XS implementation will be used if possible.
  988. =item *
  989. $Data::Dumper::Sortkeys I<or> $I<OBJ>->Sortkeys(I<[NEWVAL]>)
  990. Can be set to a boolean value to control whether hash keys are dumped in
  991. sorted order. A true value will cause the keys of all hashes to be
  992. dumped in Perl's default sort order. Can also be set to a subroutine
  993. reference which will be called for each hash that is dumped. In this
  994. case C<Data::Dumper> will call the subroutine once for each hash,
  995. passing it the reference of the hash. The purpose of the subroutine is
  996. to return a reference to an array of the keys that will be dumped, in
  997. the order that they should be dumped. Using this feature, you can
  998. control both the order of the keys, and which keys are actually used. In
  999. other words, this subroutine acts as a filter by which you can exclude
  1000. certain keys from being dumped. Default is 0, which means that hash keys
  1001. are not sorted.
  1002. =item *
  1003. $Data::Dumper::Deparse I<or> $I<OBJ>->Deparse(I<[NEWVAL]>)
  1004. Can be set to a boolean value to control whether code references are
  1005. turned into perl source code. If set to a true value, C<B::Deparse>
  1006. will be used to get the source of the code reference. Using this option
  1007. will force using the Perl implementation of the dumper, since the fast
  1008. XSUB implementation doesn't support it.
  1009. Caution : use this option only if you know that your coderefs will be
  1010. properly reconstructed by C<B::Deparse>.
  1011. =item *
  1012. $Data::Dumper::Sparseseen I<or> $I<OBJ>->Sparseseen(I<[NEWVAL]>)
  1013. By default, Data::Dumper builds up the "seen" hash of scalars that
  1014. it has encountered during serialization. This is very expensive.
  1015. This seen hash is necessary to support and even just detect circular
  1016. references. It is exposed to the user via the C<Seen()> call both
  1017. for writing and reading.
  1018. If you, as a user, do not need explicit access to the "seen" hash,
  1019. then you can set the C<Sparseseen> option to allow Data::Dumper
  1020. to eschew building the "seen" hash for scalars that are known not
  1021. to possess more than one reference. This speeds up serialization
  1022. considerably if you use the XS implementation.
  1023. Note: If you turn on C<Sparseseen>, then you must not rely on the
  1024. content of the seen hash since its contents will be an
  1025. implementation detail!
  1026. =back
  1027. =head2 Exports
  1028. =over 4
  1029. =item Dumper
  1030. =back
  1031. =head1 EXAMPLES
  1032. Run these code snippets to get a quick feel for the behavior of this
  1033. module. When you are through with these examples, you may want to
  1034. add or change the various configuration variables described above,
  1035. to see their behavior. (See the testsuite in the Data::Dumper
  1036. distribution for more examples.)
  1037. use Data::Dumper;
  1038. package Foo;
  1039. sub new {bless {'a' => 1, 'b' => sub { return "foo" }}, $_[0]};
  1040. package Fuz; # a weird REF-REF-SCALAR object
  1041. sub new {bless \($_ = \ 'fu\'z'), $_[0]};
  1042. package main;
  1043. $foo = Foo->new;
  1044. $fuz = Fuz->new;
  1045. $boo = [ 1, [], "abcd", \*foo,
  1046. {1 => 'a', 023 => 'b', 0x45 => 'c'},
  1047. \\"p\q\'r", $foo, $fuz];
  1048. ########
  1049. # simple usage
  1050. ########
  1051. $bar = eval(Dumper($boo));
  1052. print($@) if $@;
  1053. print Dumper($boo), Dumper($bar); # pretty print (no array indices)
  1054. $Data::Dumper::Terse = 1; # don't output names where feasible
  1055. $Data::Dumper::Indent = 0; # turn off all pretty print
  1056. print Dumper($boo), "\n";
  1057. $Data::Dumper::Indent = 1; # mild pretty print
  1058. print Dumper($boo);
  1059. $Data::Dumper::Indent = 3; # pretty print with array indices
  1060. print Dumper($boo);
  1061. $Data::Dumper::Useqq = 1; # print strings in double quotes
  1062. print Dumper($boo);
  1063. $Data::Dumper::Pair = " : "; # specify hash key/value separator
  1064. print Dumper($boo);
  1065. ########
  1066. # recursive structures
  1067. ########
  1068. @c = ('c');
  1069. $c = \@c;
  1070. $b = {};
  1071. $a = [1, $b, $c];
  1072. $b->{a} = $a;
  1073. $b->{b} = $a->[1];
  1074. $b->{c} = $a->[2];
  1075. print Data::Dumper->Dump([$a,$b,$c], [qw(a b c)]);
  1076. $Data::Dumper::Purity = 1; # fill in the holes for eval
  1077. print Data::Dumper->Dump([$a, $b], [qw(*a b)]); # print as @a
  1078. print Data::Dumper->Dump([$b, $a], [qw(*b a)]); # print as %b
  1079. $Data::Dumper::Deepcopy = 1; # avoid cross-refs
  1080. print Data::Dumper->Dump([$b, $a], [qw(*b a)]);
  1081. $Data::Dumper::Purity = 0; # avoid cross-refs
  1082. print Data::Dumper->Dump([$b, $a], [qw(*b a)]);
  1083. ########
  1084. # deep structures
  1085. ########
  1086. $a = "pearl";
  1087. $b = [ $a ];
  1088. $c = { 'b' => $b };
  1089. $d = [ $c ];
  1090. $e = { 'd' => $d };
  1091. $f = { 'e' => $e };
  1092. print Data::Dumper->Dump([$f], [qw(f)]);
  1093. $Data::Dumper::Maxdepth = 3; # no deeper than 3 refs down
  1094. print Data::Dumper->Dump([$f], [qw(f)]);
  1095. ########
  1096. # object-oriented usage
  1097. ########
  1098. $d = Data::Dumper->new([$a,$b], [qw(a b)]);
  1099. $d->Seen({'*c' => $c}); # stash a ref without printing it
  1100. $d->Indent(3);
  1101. print $d->Dump;
  1102. $d->Reset->Purity(0); # empty the seen cache
  1103. print join "----\n", $d->Dump;
  1104. ########
  1105. # persistence
  1106. ########
  1107. package Foo;
  1108. sub new { bless { state => 'awake' }, shift }
  1109. sub Freeze {
  1110. my $s = shift;
  1111. print STDERR "preparing to sleep\n";
  1112. $s->{state} = 'asleep';
  1113. return bless $s, 'Foo::ZZZ';
  1114. }
  1115. package Foo::ZZZ;
  1116. sub Thaw {
  1117. my $s = shift;
  1118. print STDERR "waking up\n";
  1119. $s->{state} = 'awake';
  1120. return bless $s, 'Foo';
  1121. }
  1122. package main;
  1123. use Data::Dumper;
  1124. $a = Foo->new;
  1125. $b = Data::Dumper->new([$a], ['c']);
  1126. $b->Freezer('Freeze');
  1127. $b->Toaster('Thaw');
  1128. $c = $b->Dump;
  1129. print $c;
  1130. $d = eval $c;
  1131. print Data::Dumper->Dump([$d], ['d']);
  1132. ########
  1133. # symbol substitution (useful for recreating CODE refs)
  1134. ########
  1135. sub foo { print "foo speaking\n" }
  1136. *other = \&foo;
  1137. $bar = [ \&other ];
  1138. $d = Data::Dumper->new([\&other,$bar],['*other','bar']);
  1139. $d->Seen({ '*foo' => \&foo });
  1140. print $d->Dump;
  1141. ########
  1142. # sorting and filtering hash keys
  1143. ########
  1144. $Data::Dumper::Sortkeys = \&my_filter;
  1145. my $foo = { map { (ord, "$_$_$_") } 'I'..'Q' };
  1146. my $bar = { %$foo };
  1147. my $baz = { reverse %$foo };
  1148. print Dumper [ $foo, $bar, $baz ];
  1149. sub my_filter {
  1150. my ($hash) = @_;
  1151. # return an array ref containing the hash keys to dump
  1152. # in the order that you want them to be dumped
  1153. return [
  1154. # Sort the keys of %$foo in reverse numeric order
  1155. $hash eq $foo ? (sort {$b <=> $a} keys %$hash) :
  1156. # Only dump the odd number keys of %$bar
  1157. $hash eq $bar ? (grep {$_ % 2} keys %$hash) :
  1158. # Sort keys in default order for all other hashes
  1159. (sort keys %$hash)
  1160. ];
  1161. }
  1162. =head1 BUGS
  1163. Due to limitations of Perl subroutine call semantics, you cannot pass an
  1164. array or hash. Prepend it with a C<\> to pass its reference instead. This
  1165. will be remedied in time, now that Perl has subroutine prototypes.
  1166. For now, you need to use the extended usage form, and prepend the
  1167. name with a C<*> to output it as a hash or array.
  1168. C<Data::Dumper> cheats with CODE references. If a code reference is
  1169. encountered in the structure being processed (and if you haven't set
  1170. the C<Deparse> flag), an anonymous subroutine that
  1171. contains the string '"DUMMY"' will be inserted in its place, and a warning
  1172. will be printed if C<Purity> is set. You can C<eval> the result, but bear
  1173. in mind that the anonymous sub that gets created is just a placeholder.
  1174. Someday, perl will have a switch to cache-on-demand the string
  1175. representation of a compiled piece of code, I hope. If you have prior
  1176. knowledge of all the code refs that your data structures are likely
  1177. to have, you can use the C<Seen> method to pre-seed the internal reference
  1178. table and make the dumped output point to them, instead. See L</EXAMPLES>
  1179. above.
  1180. The C<Deparse> flag makes Dump() run slower, since the XSUB
  1181. implementation does not support it.
  1182. SCALAR objects have the weirdest looking C<bless> workaround.
  1183. Pure Perl version of C<Data::Dumper> escapes UTF-8 strings correctly
  1184. only in Perl 5.8.0 and later.
  1185. =head2 NOTE
  1186. Starting from Perl 5.8.1 different runs of Perl will have different
  1187. ordering of hash keys. The change was done for greater security,
  1188. see L<perlsec/"Algorithmic Complexity Attacks">. This means that
  1189. different runs of Perl will have different Data::Dumper outputs if
  1190. the data contains hashes. If you need to have identical Data::Dumper
  1191. outputs from different runs of Perl, use the environment variable
  1192. PERL_HASH_SEED, see L<perlrun/PERL_HASH_SEED>. Using this restores
  1193. the old (platform-specific) ordering: an even prettier solution might
  1194. be to use the C<Sortkeys> filter of Data::Dumper.
  1195. =head1 AUTHOR
  1196. Gurusamy Sarathy gsar@activestate.com
  1197. Copyright (c) 1996-2014 Gurusamy Sarathy. All rights reserved.
  1198. This program is free software; you can redistribute it and/or
  1199. modify it under the same terms as Perl itself.
  1200. =head1 VERSION
  1201. Version 2.158 (March 13 2015)
  1202. =head1 SEE ALSO
  1203. perl(1)
  1204. =cut