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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlform - Perl formats</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perlform - Perl formats</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <UL>
  23.  
  24.         <LI><A HREF="#format variables">Format Variables</A></LI>
  25.     </UL>
  26.  
  27.     <LI><A HREF="#notes">NOTES</A></LI>
  28.     <UL>
  29.  
  30.         <LI><A HREF="#footers">Footers</A></LI>
  31.         <LI><A HREF="#accessing formatting internals">Accessing Formatting Internals</A></LI>
  32.     </UL>
  33.  
  34.     <LI><A HREF="#warnings">WARNINGS</A></LI>
  35. </UL>
  36. <!-- INDEX END -->
  37.  
  38. <HR>
  39. <P>
  40. <H1><A NAME="name">NAME</A></H1>
  41. <P>perlform - Perl formats</P>
  42. <P>
  43. <HR>
  44. <H1><A NAME="description">DESCRIPTION</A></H1>
  45. <P>Perl has a mechanism to help you generate simple reports and charts.  To
  46. facilitate this, Perl helps you code up your output page close to how it
  47. will look when it's printed.  It can keep track of things like how many
  48. lines are on a page, what page you're on, when to print page headers,
  49. etc.  Keywords are borrowed from FORTRAN: <A HREF="../../lib/Pod/perlfunc.html#item_format"><CODE>format()</CODE></A> to declare and <A HREF="../../lib/Pod/perlfunc.html#item_write"><CODE>write()</CODE></A>
  50. to execute; see their entries in <A HREF="../../lib/Pod/perlfunc.html">the perlfunc manpage</A>.  Fortunately, the layout is
  51. much more legible, more like BASIC's PRINT USING statement.  Think of it
  52. as a poor man's nroff(1).</P>
  53. <P>Formats, like packages and subroutines, are declared rather than
  54. executed, so they may occur at any point in your program.  (Usually it's
  55. best to keep them all together though.) They have their own namespace
  56. apart from all the other ``types'' in Perl.  This means that if you have a
  57. function named ``Foo'', it is not the same thing as having a format named
  58. ``Foo''.  However, the default name for the format associated with a given
  59. filehandle is the same as the name of the filehandle.  Thus, the default
  60. format for STDOUT is named ``STDOUT'', and the default format for filehandle
  61. TEMP is named ``TEMP''.  They just look the same.  They aren't.</P>
  62. <P>Output record formats are declared as follows:</P>
  63. <PRE>
  64.     format NAME =
  65.     FORMLIST
  66.     .</PRE>
  67. <P>If name is omitted, format ``STDOUT'' is defined.  FORMLIST consists of
  68. a sequence of lines, each of which may be one of three types:</P>
  69. <OL>
  70. <LI>
  71. A comment, indicated by putting a '#' in the first column.
  72. <P></P>
  73. <LI>
  74. A ``picture'' line giving the format for one output line.
  75. <P></P>
  76. <LI>
  77. An argument line supplying values to plug into the previous picture line.
  78. <P></P></OL>
  79. <P>Picture lines are printed exactly as they look, except for certain fields
  80. that substitute values into the line.  Each field in a picture line starts
  81. with either ``@'' (at) or ``^'' (caret).  These lines do not undergo any kind
  82. of variable interpolation.  The at field (not to be confused with the array
  83. marker @) is the normal kind of field; the other kind, caret fields, are used
  84. to do rudimentary multi-line text block filling.  The length of the field
  85. is supplied by padding out the field with multiple ``<'', ``>'', or ``|''
  86. characters to specify, respectively, left justification, right
  87. justification, or centering.  If the variable would exceed the width
  88. specified, it is truncated.</P>
  89. <P>As an alternate form of right justification, you may also use ``#''
  90. characters (with an optional ``.'') to specify a numeric field.  This way
  91. you can line up the decimal points.  If any value supplied for these
  92. fields contains a newline, only the text up to the newline is printed.
  93. Finally, the special field ``@*'' can be used for printing multi-line,
  94. nontruncated values; it should appear by itself on a line.</P>
  95. <P>The values are specified on the following line in the same order as
  96. the picture fields.  The expressions providing the values should be
  97. separated by commas.  The expressions are all evaluated in a list context
  98. before the line is processed, so a single list expression could produce
  99. multiple list elements.  The expressions may be spread out to more than
  100. one line if enclosed in braces.  If so, the opening brace must be the first
  101. token on the first line.  If an expression evaluates to a number with a
  102. decimal part, and if the corresponding picture specifies that the decimal
  103. part should appear in the output (that is, any picture except multiple ``#''
  104. characters <STRONG>without</STRONG> an embedded ``.''), the character used for the decimal
  105. point is <STRONG>always</STRONG> determined by the current LC_NUMERIC locale.  This
  106. means that, if, for example, the run-time environment happens to specify a
  107. German locale, ``,'' will be used instead of the default ``.''.  See
  108. <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A> and <A HREF="#warnings">WARNINGS</A> for more information.</P>
  109. <P>Picture fields that begin with ^ rather than @ are treated specially.
  110. With a # field, the field is blanked out if the value is undefined.  For
  111. other field types, the caret enables a kind of fill mode.  Instead of an
  112. arbitrary expression, the value supplied must be a scalar variable name
  113. that contains a text string.  Perl puts as much text as it can into the
  114. field, and then chops off the front of the string so that the next time
  115. the variable is referenced, more of the text can be printed.  (Yes, this
  116. means that the variable itself is altered during execution of the <A HREF="../../lib/Pod/perlfunc.html#item_write"><CODE>write()</CODE></A>
  117. call, and is not returned.)  Normally you would use a sequence of fields
  118. in a vertical stack to print out a block of text.  You might wish to end
  119. the final field with the text ``...'', which will appear in the output if
  120. the text was too long to appear in its entirety.  You can change which
  121. characters are legal to break on by changing the variable <CODE>$:</CODE> (that's
  122. $FORMAT_LINE_BREAK_CHARACTERS if you're using the English module) to a
  123. list of the desired characters.</P>
  124. <P>Using caret fields can produce variable length records.  If the text
  125. to be formatted is short, you can suppress blank lines by putting a
  126. ``~'' (tilde) character anywhere in the line.  The tilde will be translated
  127. to a space upon output.  If you put a second tilde contiguous to the
  128. first, the line will be repeated until all the fields on the line are
  129. exhausted.  (If you use a field of the at variety, the expression you
  130. supply had better not give the same value every time forever!)</P>
  131. <P>Top-of-form processing is by default handled by a format with the
  132. same name as the current filehandle with ``_TOP'' concatenated to it.
  133. It's triggered at the top of each page.  See <A HREF="../../lib/Pod/perlfunc.html#write">write in the perlfunc manpage</A>.</P>
  134. <P>Examples:</P>
  135. <PRE>
  136.  # a report on the /etc/passwd file
  137.  format STDOUT_TOP =
  138.                          Passwd File
  139.  Name                Login    Office   Uid   Gid Home
  140.  ------------------------------------------------------------------
  141.  .
  142.  format STDOUT =
  143.  @<<<<<<<<<<<<<<<<<< @||||||| @<<<<<<@>>>> @>>>> @<<<<<<<<<<<<<<<<<
  144.  $name,              $login,  $office,$uid,$gid, $home
  145.  .</PRE>
  146. <PRE>
  147.  # a report from a bug report form
  148.  format STDOUT_TOP =
  149.                          Bug Reports
  150.  @<<<<<<<<<<<<<<<<<<<<<<<     @|||         @>>>>>>>>>>>>>>>>>>>>>>>
  151.  $system,                      $%,         $date
  152.  ------------------------------------------------------------------
  153.  .
  154.  format STDOUT =
  155.  Subject: @<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  156.           $subject
  157.  Index: @<<<<<<<<<<<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  158.         $index,                       $description
  159.  Priority: @<<<<<<<<<< Date: @<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  160.            $priority,        $date,   $description
  161.  From: @<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  162.        $from,                         $description
  163.  Assigned to: @<<<<<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  164.               $programmer,            $description
  165.  ~                                    ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  166.                                       $description
  167.  ~                                    ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  168.                                       $description
  169.  ~                                    ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  170.                                       $description
  171.  ~                                    ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  172.                                       $description
  173.  ~                                    ^<<<<<<<<<<<<<<<<<<<<<<<...
  174.                                       $description
  175.  .</PRE>
  176. <P>It is possible to intermix print()s with write()s on the same output
  177. channel, but you'll have to handle <CODE>$-</CODE> (<CODE>$FORMAT_LINES_LEFT</CODE>)
  178. yourself.</P>
  179. <P>
  180. <H2><A NAME="format variables">Format Variables</A></H2>
  181. <P>The current format name is stored in the variable <CODE>$~</CODE> (<CODE>$FORMAT_NAME</CODE>),
  182. and the current top of form format name is in <CODE>$^</CODE> (<CODE>$FORMAT_TOP_NAME</CODE>).
  183. The current output page number is stored in <CODE>$%</CODE> (<CODE>$FORMAT_PAGE_NUMBER</CODE>),
  184. and the number of lines on the page is in <CODE>$=</CODE> (<CODE>$FORMAT_LINES_PER_PAGE</CODE>).
  185. Whether to autoflush output on this handle is stored in <CODE>$|</CODE>
  186. (<CODE>$OUTPUT_AUTOFLUSH</CODE>).  The string output before each top of page (except
  187. the first) is stored in <CODE>$^L</CODE> (<CODE>$FORMAT_FORMFEED</CODE>).  These variables are
  188. set on a per-filehandle basis, so you'll need to <A HREF="../../lib/Pod/perlfunc.html#item_select"><CODE>select()</CODE></A> into a different
  189. one to affect them:</P>
  190. <PRE>
  191.     select((select(OUTF),
  192.             $~ = "My_Other_Format",
  193.             $^ = "My_Top_Format"
  194.            )[0]);</PRE>
  195. <P>Pretty ugly, eh?  It's a common idiom though, so don't be too surprised
  196. when you see it.  You can at least use a temporary variable to hold
  197. the previous filehandle: (this is a much better approach in general,
  198. because not only does legibility improve, you now have intermediary
  199. stage in the expression to single-step the debugger through):</P>
  200. <PRE>
  201.     $ofh = select(OUTF);
  202.     $~ = "My_Other_Format";
  203.     $^ = "My_Top_Format";
  204.     select($ofh);</PRE>
  205. <P>If you use the English module, you can even read the variable names:</P>
  206. <PRE>
  207.     use English;
  208.     $ofh = select(OUTF);
  209.     $FORMAT_NAME     = "My_Other_Format";
  210.     $FORMAT_TOP_NAME = "My_Top_Format";
  211.     select($ofh);</PRE>
  212. <P>But you still have those funny select()s.  So just use the FileHandle
  213. module.  Now, you can access these special variables using lowercase
  214. method names instead:</P>
  215. <PRE>
  216.     use FileHandle;
  217.     format_name     OUTF "My_Other_Format";
  218.     format_top_name OUTF "My_Top_Format";</PRE>
  219. <P>Much better!</P>
  220. <P>
  221. <HR>
  222. <H1><A NAME="notes">NOTES</A></H1>
  223. <P>Because the values line may contain arbitrary expressions (for at fields,
  224. not caret fields), you can farm out more sophisticated processing
  225. to other functions, like <A HREF="../../lib/Pod/perlfunc.html#item_sprintf"><CODE>sprintf()</CODE></A> or one of your own.  For example:</P>
  226. <PRE>
  227.     format Ident =
  228.         @<<<<<<<<<<<<<<<
  229.         &commify($n)
  230.     .</PRE>
  231. <P>To get a real at or caret into the field, do this:</P>
  232. <PRE>
  233.     format Ident =
  234.     I have an @ here.
  235.             "@"
  236.     .</PRE>
  237. <P>To center a whole line of text, do something like this:</P>
  238. <PRE>
  239.     format Ident =
  240.     @|||||||||||||||||||||||||||||||||||||||||||||||
  241.             "Some text line"
  242.     .</PRE>
  243. <P>There is no builtin way to say ``float this to the right hand side
  244. of the page, however wide it is.''  You have to specify where it goes.
  245. The truly desperate can generate their own format on the fly, based
  246. on the current number of columns, and then <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A> it:</P>
  247. <PRE>
  248.     $format  = "format STDOUT = \n"
  249.              . '^' . '<' x $cols . "\n"
  250.              . '$entry' . "\n"
  251.              . "\t^" . "<" x ($cols-8) . "~~\n"
  252.              . '$entry' . "\n"
  253.              . ".\n";
  254.     print $format if $Debugging;
  255.     eval $format;
  256.     die $@ if $@;</PRE>
  257. <P>Which would generate a format looking something like this:</P>
  258. <PRE>
  259.  format STDOUT =
  260.  ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  261.  $entry
  262.          ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~
  263.  $entry
  264.  .</PRE>
  265. <P>Here's a little program that's somewhat like fmt(1):</P>
  266. <PRE>
  267.  format =
  268.  ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ~~
  269.  $_</PRE>
  270. <PRE>
  271.  .</PRE>
  272. <PRE>
  273.  $/ = '';
  274.  while (<>) {
  275.      s/\s*\n\s*/ /g;
  276.      write;
  277.  }</PRE>
  278. <P>
  279. <H2><A NAME="footers">Footers</A></H2>
  280. <P>While $FORMAT_TOP_NAME contains the name of the current header format,
  281. there is no corresponding mechanism to automatically do the same thing
  282. for a footer.  Not knowing how big a format is going to be until you
  283. evaluate it is one of the major problems.  It's on the TODO list.</P>
  284. <P>Here's one strategy:  If you have a fixed-size footer, you can get footers
  285. by checking $FORMAT_LINES_LEFT before each <A HREF="../../lib/Pod/perlfunc.html#item_write"><CODE>write()</CODE></A> and print the footer
  286. yourself if necessary.</P>
  287. <P>Here's another strategy: Open a pipe to yourself, using <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open(MYSELF, "|-")</CODE></A>
  288. (see <A HREF="../../lib/Pod/perlfunc.html#open()">open() in the perlfunc manpage</A>) and always <A HREF="../../lib/Pod/perlfunc.html#item_write"><CODE>write()</CODE></A> to MYSELF instead of STDOUT.
  289. Have your child process massage its STDIN to rearrange headers and footers
  290. however you like.  Not very convenient, but doable.</P>
  291. <P>
  292. <H2><A NAME="accessing formatting internals">Accessing Formatting Internals</A></H2>
  293. <P>For low-level access to the formatting mechanism.  you may use <A HREF="../../lib/Pod/perlfunc.html#item_formline"><CODE>formline()</CODE></A>
  294. and access <CODE>$^A</CODE> (the $ACCUMULATOR variable) directly.</P>
  295. <P>For example:</P>
  296. <PRE>
  297.     $str = formline <<'END', 1,2,3;
  298.     @<<<  @|||  @>>>
  299.     END</PRE>
  300. <PRE>
  301.     print "Wow, I just stored `$^A' in the accumulator!\n";</PRE>
  302. <P>Or to make an <CODE>swrite()</CODE> subroutine, which is to <A HREF="../../lib/Pod/perlfunc.html#item_write"><CODE>write()</CODE></A> what <A HREF="../../lib/Pod/perlfunc.html#item_sprintf"><CODE>sprintf()</CODE></A>
  303. is to printf(), do this:</P>
  304. <PRE>
  305.     use Carp;
  306.     sub swrite {
  307.         croak "usage: swrite PICTURE ARGS" unless @_;
  308.         my $format = shift;
  309.         $^A = "";
  310.         formline($format,@_);
  311.         return $^A;
  312.     }</PRE>
  313. <PRE>
  314.     $string = swrite(<<'END', 1, 2, 3);
  315.  Check me out
  316.  @<<<  @|||  @>>>
  317.  END
  318.     print $string;</PRE>
  319. <P>
  320. <HR>
  321. <H1><A NAME="warnings">WARNINGS</A></H1>
  322. <P>The lone dot that ends a format can also prematurely end a mail
  323. message passing through a misconfigured Internet mailer (and based on
  324. experience, such misconfiguration is the rule, not the exception).  So
  325. when sending format code through mail, you should indent it so that
  326. the format-ending dot is not on the left margin; this will prevent
  327. SMTP cutoff.</P>
  328. <P>Lexical variables (declared with ``my'') are not visible within a
  329. format unless the format is declared within the scope of the lexical
  330. variable.  (They weren't visible at all before version 5.001.)</P>
  331. <P>Formats are the only part of Perl that unconditionally use information
  332. from a program's locale; if a program's environment specifies an
  333. LC_NUMERIC locale, it is always used to specify the decimal point
  334. character in formatted output.  Perl ignores all other aspects of locale
  335. handling unless the <CODE>use locale</CODE> pragma is in effect.  Formatted output
  336. cannot be controlled by <CODE>use locale</CODE> because the pragma is tied to the
  337. block structure of the program, and, for historical reasons, formats
  338. exist outside that block structure.  See <A HREF="../../lib/Pod/perllocale.html">the perllocale manpage</A> for further
  339. discussion of locale handling.</P>
  340. <P>Inside of an expression, the whitespace characters \n, \t and \f are
  341. considered to be equivalent to a single space.  Thus, you could think
  342. of this filter being applied to each value in the format:</P>
  343. <PRE>
  344.  $value =~ tr/\n\t\f/ /;</PRE>
  345. <P>The remaining whitespace character, \r, forces the printing of a new
  346. line if allowed by the picture line.</P>
  347. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  348. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  349. <STRONG><P CLASS=block> perlform - Perl formats</P></STRONG>
  350. </TD></TR>
  351. </TABLE>
  352.  
  353. </BODY>
  354.  
  355. </HTML>
  356.