home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _275e06a3894350ab2f9618f88d787536 < prev    next >
Text File  |  2000-03-23  |  22KB  |  473 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Data::Dumper - stringified perl data structures, suitable for both printing and C<eval></TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Data::Dumper - stringified perl data structures, suitable for both printing and C<eval></P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#methods">Methods</A></LI>
  28.         <LI><A HREF="#functions">Functions</A></LI>
  29.         <LI><A HREF="#configuration variables or methods">Configuration Variables or Methods</A></LI>
  30.         <LI><A HREF="#exports">Exports</A></LI>
  31.     </UL>
  32.  
  33.     <LI><A HREF="#examples">EXAMPLES</A></LI>
  34.     <LI><A HREF="#bugs">BUGS</A></LI>
  35.     <LI><A HREF="#author">AUTHOR</A></LI>
  36.     <LI><A HREF="#version">VERSION</A></LI>
  37.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  38. </UL>
  39. <!-- INDEX END -->
  40.  
  41. <HR>
  42. <P>
  43. <H1><A NAME="name">NAME</A></H1>
  44. <P>Data::Dumper - stringified perl data structures, suitable for both printing and <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A></P>
  45. <P>
  46. <HR>
  47. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  48. <UL>
  49. <LI>Linux</LI>
  50. <LI>Solaris</LI>
  51. <LI>Windows</LI>
  52. </UL>
  53. <HR>
  54. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  55. <PRE>
  56.     use Data::Dumper;</PRE>
  57. <PRE>
  58.     # simple procedural interface
  59.     print Dumper($foo, $bar);</PRE>
  60. <PRE>
  61.     # extended usage with names
  62.     print Data::Dumper->Dump([$foo, $bar], [qw(foo *ary)]);</PRE>
  63. <PRE>
  64.     # configuration variables
  65.     {
  66.       local $Data::Dump::Purity = 1;
  67.       eval Data::Dumper->Dump([$foo, $bar], [qw(foo *ary)]);
  68.     }</PRE>
  69. <PRE>
  70.     # OO usage
  71.     $d = Data::Dumper->new([$foo, $bar], [qw(foo *ary)]);
  72.        ...
  73.     print $d->Dump;
  74.        ...
  75.     $d->Purity(1)->Terse(1)->Deepcopy(1);
  76.     eval $d->Dump;</PRE>
  77. <P>
  78. <HR>
  79. <H1><A NAME="description">DESCRIPTION</A></H1>
  80. <P>Given a list of scalars or reference variables, writes out their contents in
  81. perl syntax. The references can also be objects.  The contents of each
  82. variable is output in a single Perl statement.  Handles self-referential
  83. structures correctly.</P>
  84. <P>The return value can be <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>ed to get back an identical copy of the
  85. original reference structure.</P>
  86. <P>Any references that are the same as one of those passed in will be named
  87. <CODE>$VAR</CODE><EM>n</EM> (where <EM>n</EM> is a numeric suffix), and other duplicate references
  88. to substructures within <CODE>$VAR</CODE><EM>n</EM> will be appropriately labeled using arrow
  89. notation.  You can specify names for individual values to be dumped if you
  90. use the <A HREF="#item_Dump"><CODE>Dump()</CODE></A> method, or you can change the default <CODE>$VAR</CODE> prefix to
  91. something else.  See <CODE>$Data::Dumper::Varname</CODE> and <CODE>$Data::Dumper::Terse</CODE>
  92. below.</P>
  93. <P>The default output of self-referential structures can be <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>ed, but the
  94. nested references to <CODE>$VAR</CODE><EM>n</EM> will be undefined, since a recursive
  95. structure cannot be constructed using one Perl statement.  You should set the
  96. <A HREF="#item_Purity"><CODE>Purity</CODE></A> flag to 1 to get additional statements that will correctly fill in
  97. these references.</P>
  98. <P>In the extended usage form, the references to be dumped can be given
  99. user-specified names.  If a name begins with a <CODE>*</CODE>, the output will 
  100. describe the dereferenced type of the supplied reference for hashes and
  101. arrays, and coderefs.  Output of names will be avoided where possible if
  102. the <A HREF="#item_Terse"><CODE>Terse</CODE></A> flag is set.</P>
  103. <P>In many cases, methods that are used to set the internal state of the
  104. object will return the object itself, so method calls can be conveniently
  105. chained together.</P>
  106. <P>Several styles of output are possible, all controlled by setting
  107. the <A HREF="#item_Indent"><CODE>Indent</CODE></A> flag.  See <A HREF="#configuration variables or methods">Configuration Variables or Methods</A> below 
  108. for details.</P>
  109. <P>
  110. <H2><A NAME="methods">Methods</A></H2>
  111. <DL>
  112. <DT><STRONG><A NAME="item_new"><EM>PACKAGE</EM>->new(<EM>ARRAYREF [</EM>, <EM>ARRAYREF]</EM>)</A></STRONG><BR>
  113. <DD>
  114. Returns a newly created <CODE>Data::Dumper</CODE> object.  The first argument is an
  115. anonymous array of values to be dumped.  The optional second argument is an
  116. anonymous array of names for the values.  The names need not have a leading
  117. <CODE>$</CODE> sign, and must be comprised of alphanumeric characters.  You can begin
  118. a name with a <CODE>*</CODE> to specify that the dereferenced type must be dumped
  119. instead of the reference itself, for ARRAY and HASH references.
  120. <P>The prefix specified by <CODE>$Data::Dumper::Varname</CODE> will be used with a
  121. numeric suffix if the name for a value is undefined.</P>
  122. <P>Data::Dumper will catalog all references encountered while dumping the
  123. values. Cross-references (in the form of names of substructures in perl
  124. syntax) will be inserted at all possible points, preserving any structural
  125. interdependencies in the original set of values.  Structure traversal is
  126. depth-first,  and proceeds in order from the first supplied value to
  127. the last.</P>
  128. <P></P>
  129. <DT><STRONG><A NAME="item_Dump"><EM>$OBJ</EM>->Dump  <EM>or</EM>  <EM>PACKAGE</EM>->Dump(<EM>ARRAYREF [</EM>, <EM>ARRAYREF]</EM>)</A></STRONG><BR>
  130. <DD>
  131. Returns the stringified form of the values stored in the object (preserving
  132. the order in which they were supplied to <A HREF="#item_new"><CODE>new</CODE></A>), subject to the
  133. configuration options below.  In an array context, it returns a list
  134. of strings corresponding to the supplied values.
  135. <P>The second form, for convenience, simply calls the <A HREF="#item_new"><CODE>new</CODE></A> method on its
  136. arguments before dumping the object immediately.</P>
  137. <P></P>
  138. <DT><STRONG><A NAME="item_Seen"><EM>$OBJ</EM>->Seen(<EM>[HASHREF]</EM>)</A></STRONG><BR>
  139. <DD>
  140. Queries or adds to the internal table of already encountered references.
  141. You must use <A HREF="#item_Reset"><CODE>Reset</CODE></A> to explicitly clear the table if needed.  Such
  142. references are not dumped; instead, their names are inserted wherever they
  143. are encountered subsequently.  This is useful especially for properly
  144. dumping subroutine references.
  145. <P>Expects a anonymous hash of name => value pairs.  Same rules apply for names
  146. as in <A HREF="#item_new"><CODE>new</CODE></A>.  If no argument is supplied, will return the ``seen'' list of
  147. name => value pairs, in an array context.  Otherwise, returns the object
  148. itself.</P>
  149. <P></P>
  150. <DT><STRONG><A NAME="item_Values"><EM>$OBJ</EM>->Values(<EM>[ARRAYREF]</EM>)</A></STRONG><BR>
  151. <DD>
  152. Queries or replaces the internal array of values that will be dumped.
  153. When called without arguments, returns the values.  Otherwise, returns the
  154. object itself.
  155. <P></P>
  156. <DT><STRONG><A NAME="item_Names"><EM>$OBJ</EM>->Names(<EM>[ARRAYREF]</EM>)</A></STRONG><BR>
  157. <DD>
  158. Queries or replaces the internal array of user supplied names for the values
  159. that will be dumped.  When called without arguments, returns the names.
  160. Otherwise, returns the object itself.
  161. <P></P>
  162. <DT><STRONG><A NAME="item_Reset"><EM>$OBJ</EM>->Reset</A></STRONG><BR>
  163. <DD>
  164. Clears the internal table of ``seen'' references and returns the object
  165. itself.
  166. <P></P></DL>
  167. <P>
  168. <H2><A NAME="functions">Functions</A></H2>
  169. <DL>
  170. <DT><STRONG><A NAME="item_Dumper">Dumper(<EM>LIST</EM>)</A></STRONG><BR>
  171. <DD>
  172. Returns the stringified form of the values in the list, subject to the
  173. configuration options below.  The values will be named <CODE>$VAR</CODE><EM>n</EM> in the
  174. output, where <EM>n</EM> is a numeric suffix.  Will return a list of strings
  175. in an array context.
  176. <P></P></DL>
  177. <P>
  178. <H2><A NAME="configuration variables or methods">Configuration Variables or Methods</A></H2>
  179. <P>Several configuration variables can be used to control the kind of output
  180. generated when using the procedural interface.  These variables are usually
  181. <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>ized in a block so that other parts of the code are not affected by
  182. the change.</P>
  183. <P>These variables determine the default state of the object created by calling
  184. the <A HREF="#item_new"><CODE>new</CODE></A> method, but cannot be used to alter the state of the object
  185. thereafter.  The equivalent method names should be used instead to query
  186. or set the internal state of the object.</P>
  187. <P>The method forms return the object itself when called with arguments,
  188. so that they can be chained together nicely.</P>
  189. <DL>
  190. <DT><STRONG><A NAME="item_Indent">$Data::Dumper::Indent  <EM>or</EM>  <EM>$OBJ</EM>->Indent(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  191. <DD>
  192. Controls the style of indentation.  It can be set to 0, 1, 2 or 3.  Style 0
  193. spews output without any newlines, indentation, or spaces between list
  194. items.  It is the most compact format possible that can still be called
  195. valid perl.  Style 1 outputs a readable form with newlines but no fancy
  196. indentation (each level in the structure is simply indented by a fixed
  197. amount of whitespace).  Style 2 (the default) outputs a very readable form
  198. which takes into account the length of hash keys (so the hash value lines
  199. up).  Style 3 is like style 2, but also annotates the elements of arrays
  200. with their index (but the comment is on its own line, so array output
  201. consumes twice the number of lines).  Style 2 is the default.
  202. <P></P>
  203. <DT><STRONG><A NAME="item_Purity">$Data::Dumper::Purity  <EM>or</EM>  <EM>$OBJ</EM>->Purity(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  204. <DD>
  205. Controls the degree to which the output can be <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>ed to recreate the
  206. supplied reference structures.  Setting it to 1 will output additional perl
  207. statements that will correctly recreate nested references.  The default is
  208. 0.
  209. <P></P>
  210. <DT><STRONG><A NAME="item_Pad">$Data::Dumper::Pad  <EM>or</EM>  <EM>$OBJ</EM>->Pad(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  211. <DD>
  212. Specifies the string that will be prefixed to every line of the output.
  213. Empty string by default.
  214. <P></P>
  215. <DT><STRONG><A NAME="item_Varname">$Data::Dumper::Varname  <EM>or</EM>  <EM>$OBJ</EM>->Varname(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  216. <DD>
  217. Contains the prefix to use for tagging variable names in the output. The
  218. default is ``VAR''.
  219. <P></P>
  220. <DT><STRONG><A NAME="item_Useqq">$Data::Dumper::Useqq  <EM>or</EM>  <EM>$OBJ</EM>->Useqq(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  221. <DD>
  222. When set, enables the use of double quotes for representing string values.
  223. Whitespace other than space will be represented as <CODE>[\n\t\r]</CODE>, ``unsafe''
  224. characters will be backslashed, and unprintable characters will be output as
  225. quoted octal integers.  Since setting this variable imposes a performance
  226. penalty, the default is 0.  <A HREF="#item_Dump"><CODE>Dump()</CODE></A> will run slower if this flag is set,
  227. since the fast XSUB implementation doesn't support it yet.
  228. <P></P>
  229. <DT><STRONG><A NAME="item_Terse">$Data::Dumper::Terse  <EM>or</EM>  <EM>$OBJ</EM>->Terse(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  230. <DD>
  231. When set, Data::Dumper will emit single, non-self-referential values as
  232. atoms/terms rather than statements.  This means that the <CODE>$VAR</CODE><EM>n</EM> names
  233. will be avoided where possible, but be advised that such output may not
  234. always be parseable by <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>.
  235. <P></P>
  236. <DT><STRONG><A NAME="item_Freezer">$Data::Dumper::Freezer  <EM>or</EM>  $<EM>OBJ</EM>->Freezer(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  237. <DD>
  238. Can be set to a method name, or to an empty string to disable the feature.
  239. Data::Dumper will invoke that method via the object before attempting to
  240. stringify it.  This method can alter the contents of the object (if, for
  241. instance, it contains data allocated from C), and even rebless it in a
  242. different package.  The client is responsible for making sure the specified
  243. method can be called via the object, and that the object ends up containing
  244. only perl data types after the method has been called.  Defaults to an empty
  245. string.
  246. <P></P>
  247. <DT><STRONG><A NAME="item_Toaster">$Data::Dumper::Toaster  <EM>or</EM>  $<EM>OBJ</EM>->Toaster(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  248. <DD>
  249. Can be set to a method name, or to an empty string to disable the feature.
  250. Data::Dumper will emit a method call for any objects that are to be dumped
  251. using the syntax <A HREF="../../lib/Pod/perlfunc.html#item_bless"><CODE>bless(DATA, CLASS)-</CODE></A>METHOD()>.  Note that this means that
  252. the method specified will have to perform any modifications required on the
  253. object (like creating new state within it, and/or reblessing it in a
  254. different package) and then return it.  The client is responsible for making
  255. sure the method can be called via the object, and that it returns a valid
  256. object.  Defaults to an empty string.
  257. <P></P>
  258. <DT><STRONG><A NAME="item_Deepcopy">$Data::Dumper::Deepcopy  <EM>or</EM>  $<EM>OBJ</EM>->Deepcopy(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  259. <DD>
  260. Can be set to a boolean value to enable deep copies of structures.
  261. Cross-referencing will then only be done when absolutely essential
  262. (i.e., to break reference cycles).  Default is 0.
  263. <P></P>
  264. <DT><STRONG><A NAME="item_Quotekeys">$Data::Dumper::Quotekeys  <EM>or</EM>  $<EM>OBJ</EM>->Quotekeys(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  265. <DD>
  266. Can be set to a boolean value to control whether hash keys are quoted.
  267. A false value will avoid quoting hash keys when it looks like a simple
  268. string.  Default is 1, which will always enclose hash keys in quotes.
  269. <P></P>
  270. <DT><STRONG><A NAME="item_Bless">$Data::Dumper::Bless  <EM>or</EM>  $<EM>OBJ</EM>->Bless(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  271. <DD>
  272. Can be set to a string that specifies an alternative to the <A HREF="../../lib/Pod/perlfunc.html#item_bless"><CODE>bless</CODE></A>
  273. builtin operator used to create objects.  A function with the specified
  274. name should exist, and should accept the same arguments as the builtin.
  275. Default is <A HREF="../../lib/Pod/perlfunc.html#item_bless"><CODE>bless</CODE></A>.
  276. <P></P>
  277. <DT><STRONG><A NAME="item_Maxdepth">$Data::Dumper::Maxdepth  <EM>or</EM>  $<EM>OBJ</EM>->Maxdepth(<EM>[NEWVAL]</EM>)</A></STRONG><BR>
  278. <DD>
  279. Can be set to a positive integer that specifies the depth beyond which
  280. which we don't venture into a structure.  Has no effect when
  281. <CODE>Data::Dumper::Purity</CODE> is set.  (Useful in debugger when we often don't
  282. want to see more than enough).  Default is 0, which means there is 
  283. no maximum depth.
  284. <P></P></DL>
  285. <P>
  286. <H2><A NAME="exports">Exports</A></H2>
  287. <DL>
  288. <DT><STRONG>Dumper</STRONG><BR>
  289. <DD>
  290. </DL>
  291. <P>
  292. <HR>
  293. <H1><A NAME="examples">EXAMPLES</A></H1>
  294. <P>Run these code snippets to get a quick feel for the behavior of this
  295. module.  When you are through with these examples, you may want to
  296. add or change the various configuration variables described above,
  297. to see their behavior.  (See the testsuite in the Data::Dumper
  298. distribution for more examples.)</P>
  299. <PRE>
  300.     use Data::Dumper;</PRE>
  301. <PRE>
  302.     package Foo;
  303.     sub new {bless {'a' => 1, 'b' => sub { return "foo" }}, $_[0]};</PRE>
  304. <PRE>
  305.     package Fuz;                       # a weird REF-REF-SCALAR object
  306.     sub new {bless \($_ = \ 'fu\'z'), $_[0]};</PRE>
  307. <PRE>
  308.     package main;
  309.     $foo = Foo->new;
  310.     $fuz = Fuz->new;
  311.     $boo = [ 1, [], "abcd", \*foo,
  312.              {1 => 'a', 023 => 'b', 0x45 => 'c'}, 
  313.              \\"p\q\'r", $foo, $fuz];</PRE>
  314. <PRE>
  315.     ########
  316.     # simple usage
  317.     ########</PRE>
  318. <PRE>
  319.     $bar = eval(Dumper($boo));
  320.     print($@) if $@;
  321.     print Dumper($boo), Dumper($bar);  # pretty print (no array indices)</PRE>
  322. <PRE>
  323.     $Data::Dumper::Terse = 1;          # don't output names where feasible
  324.     $Data::Dumper::Indent = 0;         # turn off all pretty print
  325.     print Dumper($boo), "\n";</PRE>
  326. <PRE>
  327.     $Data::Dumper::Indent = 1;         # mild pretty print
  328.     print Dumper($boo);</PRE>
  329. <PRE>
  330.     $Data::Dumper::Indent = 3;         # pretty print with array indices
  331.     print Dumper($boo);</PRE>
  332. <PRE>
  333.     $Data::Dumper::Useqq = 1;          # print strings in double quotes
  334.     print Dumper($boo);</PRE>
  335. <PRE>
  336.     ########
  337.     # recursive structures
  338.     ########</PRE>
  339. <PRE>
  340.     @c = ('c');
  341.     $c = \@c;
  342.     $b = {};
  343.     $a = [1, $b, $c];
  344.     $b->{a} = $a;
  345.     $b->{b} = $a->[1];
  346.     $b->{c} = $a->[2];
  347.     print Data::Dumper->Dump([$a,$b,$c], [qw(a b c)]);</PRE>
  348. <PRE>
  349.     $Data::Dumper::Purity = 1;         # fill in the holes for eval
  350.     print Data::Dumper->Dump([$a, $b], [qw(*a b)]); # print as @a
  351.     print Data::Dumper->Dump([$b, $a], [qw(*b a)]); # print as %b</PRE>
  352. <PRE>
  353.     $Data::Dumper::Deepcopy = 1;       # avoid cross-refs
  354.     print Data::Dumper->Dump([$b, $a], [qw(*b a)]);</PRE>
  355. <PRE>
  356.     $Data::Dumper::Purity = 0;         # avoid cross-refs
  357.     print Data::Dumper->Dump([$b, $a], [qw(*b a)]);</PRE>
  358. <PRE>
  359.     ########
  360.     # deep structures
  361.     ########</PRE>
  362. <PRE>
  363.     $a = "pearl";
  364.     $b = [ $a ];
  365.     $c = { 'b' => $b };
  366.     $d = [ $c ];
  367.     $e = { 'd' => $d };
  368.     $f = { 'e' => $e };
  369.     print Data::Dumper->Dump([$f], [qw(f)]);</PRE>
  370. <PRE>
  371.     $Data::Dumper::Maxdepth = 3;       # no deeper than 3 refs down
  372.     print Data::Dumper->Dump([$f], [qw(f)]);</PRE>
  373. <PRE>
  374.     ########
  375.     # object-oriented usage
  376.     ########</PRE>
  377. <PRE>
  378.     $d = Data::Dumper->new([$a,$b], [qw(a b)]);
  379.     $d->Seen({'*c' => $c});            # stash a ref without printing it
  380.     $d->Indent(3);
  381.     print $d->Dump;
  382.     $d->Reset->Purity(0);              # empty the seen cache
  383.     print join "----\n", $d->Dump;</PRE>
  384. <PRE>
  385.     ########
  386.     # persistence
  387.     ########</PRE>
  388. <PRE>
  389.     package Foo;
  390.     sub new { bless { state => 'awake' }, shift }
  391.     sub Freeze {
  392.         my $s = shift;
  393.         print STDERR "preparing to sleep\n";
  394.         $s->{state} = 'asleep';
  395.         return bless $s, 'Foo::ZZZ';
  396.     }</PRE>
  397. <PRE>
  398.     package Foo::ZZZ;
  399.     sub Thaw {
  400.         my $s = shift;
  401.         print STDERR "waking up\n";
  402.         $s->{state} = 'awake';
  403.         return bless $s, 'Foo';
  404.     }</PRE>
  405. <PRE>
  406.     package Foo;
  407.     use Data::Dumper;
  408.     $a = Foo->new;
  409.     $b = Data::Dumper->new([$a], ['c']);
  410.     $b->Freezer('Freeze');
  411.     $b->Toaster('Thaw');
  412.     $c = $b->Dump;
  413.     print $c;
  414.     $d = eval $c;
  415.     print Data::Dumper->Dump([$d], ['d']);</PRE>
  416. <PRE>
  417.     ########
  418.     # symbol substitution (useful for recreating CODE refs)
  419.     ########</PRE>
  420. <PRE>
  421.     sub foo { print "foo speaking\n" }
  422.     *other = \&foo;
  423.     $bar = [ \&other ];
  424.     $d = Data::Dumper->new([\&other,$bar],['*other','bar']);
  425.     $d->Seen({ '*foo' => \&foo });
  426.     print $d->Dump;</PRE>
  427. <P>
  428. <HR>
  429. <H1><A NAME="bugs">BUGS</A></H1>
  430. <P>Due to limitations of Perl subroutine call semantics, you cannot pass an
  431. array or hash.  Prepend it with a <CODE>\</CODE> to pass its reference instead.  This
  432. will be remedied in time, with the arrival of prototypes in later versions
  433. of Perl.  For now, you need to use the extended usage form, and prepend the
  434. name with a <CODE>*</CODE> to output it as a hash or array.</P>
  435. <P><CODE>Data::Dumper</CODE> cheats with CODE references.  If a code reference is
  436. encountered in the structure being processed, an anonymous subroutine that
  437. contains the string '``DUMMY''' will be inserted in its place, and a warning
  438. will be printed if <A HREF="#item_Purity"><CODE>Purity</CODE></A> is set.  You can <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A> the result, but bear
  439. in mind that the anonymous sub that gets created is just a placeholder.
  440. Someday, perl will have a switch to cache-on-demand the string
  441. representation of a compiled piece of code, I hope.  If you have prior
  442. knowledge of all the code refs that your data structures are likely
  443. to have, you can use the <A HREF="#item_Seen"><CODE>Seen</CODE></A> method to pre-seed the internal reference
  444. table and make the dumped output point to them, instead.  See <EM>EXAMPLES</EM>
  445. above.</P>
  446. <P>The <A HREF="#item_Useqq"><CODE>Useqq</CODE></A> flag makes <A HREF="#item_Dump"><CODE>Dump()</CODE></A> run slower, since the XSUB implementation
  447. does not support it.</P>
  448. <P>SCALAR objects have the weirdest looking <A HREF="../../lib/Pod/perlfunc.html#item_bless"><CODE>bless</CODE></A> workaround.</P>
  449. <P>
  450. <HR>
  451. <H1><A NAME="author">AUTHOR</A></H1>
  452. <P>Gurusamy Sarathy        <A HREF="mailto:gsar@activestate.com">gsar@activestate.com</A></P>
  453. <P>Copyright (c) 1996-98 Gurusamy Sarathy. All rights reserved.
  454. This program is free software; you can redistribute it and/or
  455. modify it under the same terms as Perl itself.</P>
  456. <P>
  457. <HR>
  458. <H1><A NAME="version">VERSION</A></H1>
  459. <P>Version 2.11   (unreleased)</P>
  460. <P>
  461. <HR>
  462. <H1><A NAME="see also">SEE ALSO</A></H1>
  463. <P><CODE>perl(1)</CODE></P>
  464. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  465. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  466. <STRONG><P CLASS=block> Data::Dumper - stringified perl data structures, suitable for both printing and C<eval></P></STRONG>
  467. </TD></TR>
  468. </TABLE>
  469.  
  470. </BODY>
  471.  
  472. </HTML>
  473.