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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perllexwarn - Perl Lexical Warnings</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> perllexwarn - Perl Lexical Warnings</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="#default warnings and optional warnings">Default Warnings and Optional Warnings</A></LI>
  25.         <LI><A HREF="#what's wrong with w and $^w">What's wrong with <STRONG>-w</STRONG> and <CODE>$^W</CODE></A></LI>
  26.         <LI><A HREF="#controlling warnings from the command line">Controlling Warnings from the Command Line</A></LI>
  27.         <LI><A HREF="#backward compatibility">Backward Compatibility</A></LI>
  28.         <LI><A HREF="#category hierarchy">Category Hierarchy</A></LI>
  29.         <LI><A HREF="#fatal warnings">Fatal Warnings</A></LI>
  30.         <LI><A HREF="#reporting warnings from a module">Reporting Warnings from a Module</A></LI>
  31.     </UL>
  32.  
  33.     <LI><A HREF="#todo">TODO</A></LI>
  34.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  35.     <LI><A HREF="#author">AUTHOR</A></LI>
  36. </UL>
  37. <!-- INDEX END -->
  38.  
  39. <HR>
  40. <P>
  41. <H1><A NAME="name">NAME</A></H1>
  42. <P>perllexwarn - Perl Lexical Warnings</P>
  43. <P>
  44. <HR>
  45. <H1><A NAME="description">DESCRIPTION</A></H1>
  46. <P>The <CODE>use warnings</CODE> pragma is a replacement for both the command line
  47. flag <STRONG>-w</STRONG> and the equivalent Perl variable, <CODE>$^W</CODE>.</P>
  48. <P>The pragma works just like the existing ``strict'' pragma.
  49. This means that the scope of the warning pragma is limited to the
  50. enclosing block. It also means that that the pragma setting will not
  51. leak across files (via <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A>). This allows
  52. authors to independently define the degree of warning checks that will
  53. be applied to their module.</P>
  54. <P>By default, optional warnings are disabled, so any legacy code that
  55. doesn't attempt to control the warnings will work unchanged.</P>
  56. <P>All warnings are enabled in a block by either of these:</P>
  57. <PRE>
  58.     use warnings ;
  59.     use warnings 'all' ;</PRE>
  60. <P>Similarly all warnings are disabled in a block by either of these:</P>
  61. <PRE>
  62.     no warnings ;
  63.     no warnings 'all' ;</PRE>
  64. <P>For example, consider the code below:</P>
  65. <PRE>
  66.     use warnings ;
  67.     my $a ;
  68.     my $b ;
  69.     {
  70.         no warnings ;
  71.         $b = 2 if $a EQ 3 ;
  72.     }
  73.     $b = 1 if $a NE 3 ;</PRE>
  74. <P>The code in the enclosing block has warnings enabled, but the inner
  75. block has them disabled. In this case that means that the use of the <CODE>EQ</CODE>
  76. operator won't trip a <CODE>"Use of EQ is deprecated"</CODE> warning, but the use of
  77. <CODE>NE</CODE> will produce a <CODE>"Use of NE is deprecated"</CODE> warning.</P>
  78. <P>
  79. <H2><A NAME="default warnings and optional warnings">Default Warnings and Optional Warnings</A></H2>
  80. <P>Before the introduction of lexical warnings, Perl had two classes of
  81. warnings: mandatory and optional.</P>
  82. <P>As its name suggests, if your code tripped a mandatory warning, you
  83. would get a warning whether you wanted it or not.
  84. For example, the code below would always produce an <CODE>"isn't numeric"</CODE>
  85. warning about the ``2:''.</P>
  86. <PRE>
  87.     my $a = "2:" + 3;</PRE>
  88. <P>With the introduction of lexical warnings, mandatory warnings now become
  89. <EM>default</EM> warnings. The difference is that although the previously
  90. mandatory warnings are still enabled by default, they can then be
  91. subsequently enabled or disabled with the lexical warning pragma. For
  92. example, in the code below, an <CODE>"isn't numeric"</CODE> warning will only
  93. be reported for the <CODE>$a</CODE> variable.</P>
  94. <PRE>
  95.     my $a = "2:" + 3;
  96.     no warnings ;
  97.     my $b = "2:" + 3;</PRE>
  98. <P>Note that neither the <STRONG>-w</STRONG> flag or the <CODE>$^W</CODE> can be used to
  99. disable/enable default warnings. They are still mandatory in this case.</P>
  100. <P>
  101. <H2><A NAME="what's wrong with w and $^w">What's wrong with <STRONG>-w</STRONG> and <CODE>$^W</CODE></A></H2>
  102. <P>Although very useful, the big problem with using <STRONG>-w</STRONG> on the command
  103. line to enable warnings is that it is all or nothing. Take the typical
  104. scenario when you are writing a Perl program. Parts of the code you
  105. will write yourself, but it's very likely that you will make use of
  106. pre-written Perl modules. If you use the <STRONG>-w</STRONG> flag in this case, you
  107. end up enabling warnings in pieces of code that you haven't written.</P>
  108. <P>Similarly, using <CODE>$^W</CODE> to either disable or enable blocks of code is
  109. fundamentally flawed. For a start, say you want to disable warnings in
  110. a block of code. You might expect this to be enough to do the trick:</P>
  111. <PRE>
  112.      {
  113.          local ($^W) = 0 ;
  114.          my $a =+ 2 ;
  115.          my $b ; chop $b ;
  116.      }</PRE>
  117. <P>When this code is run with the <STRONG>-w</STRONG> flag, a warning will be produced
  118. for the <CODE>$a</CODE> line -- <CODE>"Reversed += operator"</CODE>.</P>
  119. <P>The problem is that Perl has both compile-time and run-time warnings. To
  120. disable compile-time warnings you need to rewrite the code like this:</P>
  121. <PRE>
  122.      {
  123.          BEGIN { $^W = 0 }
  124.          my $a =+ 2 ;
  125.          my $b ; chop $b ;
  126.      }</PRE>
  127. <P>The other big problem with <CODE>$^W</CODE> is that way you can inadvertently
  128. change the warning setting in unexpected places in your code. For example,
  129. when the code below is run (without the <STRONG>-w</STRONG> flag), the second call
  130. to <CODE>doit</CODE> will trip a <CODE>"Use of uninitialized value"</CODE> warning, whereas
  131. the first will not.</P>
  132. <PRE>
  133.     sub doit
  134.     {
  135.         my $b ; chop $b ;
  136.     }</PRE>
  137. <PRE>
  138.     doit() ;</PRE>
  139. <PRE>
  140.     {
  141.         local ($^W) = 1 ;
  142.         doit()
  143.     }</PRE>
  144. <P>This is a side-effect of <CODE>$^W</CODE> being dynamically scoped.</P>
  145. <P>Lexical warnings get around these limitations by allowing finer control
  146. over where warnings can or can't be tripped.</P>
  147. <P>
  148. <H2><A NAME="controlling warnings from the command line">Controlling Warnings from the Command Line</A></H2>
  149. <P>There are three Command Line flags that can be used to control when
  150. warnings are (or aren't) produced:</P>
  151. <DL>
  152. <DT><STRONG><A NAME="item_%2Dw"><STRONG>-w</STRONG></A></STRONG><BR>
  153. <DD>
  154. This is  the existing flag. If the lexical warnings pragma is <STRONG>not</STRONG>
  155. used in any of you code, or any of the modules that you use, this flag
  156. will enable warnings everywhere. See <A HREF="#backward compatibility">Backward Compatibility</A> for
  157. details of how this flag interacts with lexical warnings.
  158. <P></P>
  159. <DT><STRONG><A NAME="item_%2DW"><STRONG>-W</STRONG></A></STRONG><BR>
  160. <DD>
  161. If the <STRONG>-W</STRONG> flag is used on the command line, it will enable all warnings
  162. throughout the program regardless of whether warnings were disabled
  163. locally using <CODE>no warnings</CODE> or <CODE>$^W =0</CODE>. This includes all files that get
  164. included via <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A>.
  165. Think of it as the Perl equivalent of the ``lint'' command.
  166. <P></P>
  167. <DT><STRONG><A NAME="item_%2DX"><STRONG>-X</STRONG></A></STRONG><BR>
  168. <DD>
  169. Does the exact opposite to the <STRONG>-W</STRONG> flag, i.e. it disables all warnings.
  170. <P></P></DL>
  171. <P>
  172. <H2><A NAME="backward compatibility">Backward Compatibility</A></H2>
  173. <P>If you are used with working with a version of Perl prior to the
  174. introduction of lexically scoped warnings, or have code that uses both
  175. lexical warnings and <CODE>$^W</CODE>, this section will describe how they interact.</P>
  176. <P>How Lexical Warnings interact with <STRONG>-w</STRONG>/<CODE>$^W</CODE>:</P>
  177. <OL>
  178. <LI>
  179. If none of the three command line flags (<STRONG>-w</STRONG>, <STRONG>-W</STRONG> or <STRONG>-X</STRONG>) that
  180. control warnings is used and neither <CODE>$^W</CODE> or the <CODE>warnings</CODE> pragma
  181. are used, then default warnings will be enabled and optional warnings
  182. disabled.
  183. This means that legacy code that doesn't attempt to control the warnings
  184. will work unchanged.
  185. <P></P>
  186. <LI>
  187. The <STRONG>-w</STRONG> flag just sets the global <CODE>$^W</CODE> variable as in 5.005 -- this
  188. means that any legacy code that currently relies on manipulating <CODE>$^W</CODE>
  189. to control warning behavior will still work as is.
  190. <P></P>
  191. <LI>
  192. Apart from now being a boolean, the <CODE>$^W</CODE> variable operates in exactly
  193. the same horrible uncontrolled global way, except that it cannot
  194. disable/enable default warnings.
  195. <P></P>
  196. <LI>
  197. If a piece of code is under the control of the <CODE>warnings</CODE> pragma,
  198. both the <CODE>$^W</CODE> variable and the <STRONG>-w</STRONG> flag will be ignored for the
  199. scope of the lexical warning.
  200. <P></P>
  201. <LI>
  202. The only way to override a lexical warnings setting is with the <STRONG>-W</STRONG>
  203. or <STRONG>-X</STRONG> command line flags.
  204. <P></P></OL>
  205. <P>The combined effect of 3 & 4 is that it will will allow code which uses
  206. the <CODE>warnings</CODE> pragma to control the warning behavior of $^W-type
  207. code (using a <CODE>local $^W=0</CODE>) if it really wants to, but not vice-versa.</P>
  208. <P>
  209. <H2><A NAME="category hierarchy">Category Hierarchy</A></H2>
  210. <P>A hierarchy of ``categories'' have been defined to allow groups of warnings
  211. to be enabled/disabled in isolation.</P>
  212. <P>The current hierarchy is:</P>
  213. <PRE>
  214.   all -+
  215.        |
  216.        +- chmod
  217.        |
  218.        +- closure
  219.        |
  220.        +- exiting
  221.        |
  222.        +- glob
  223.        |
  224.        +- io -----------+
  225.        |                |
  226.        |                +- closed
  227.        |                |
  228.        |                +- exec
  229.        |                |
  230.        |                +- newline
  231.        |                |
  232.        |                +- pipe
  233.        |                |
  234.        |                +- unopened
  235.        |
  236.        +- misc
  237.        |
  238.        +- numeric
  239.        |
  240.        +- once
  241.        |
  242.        +- overflow
  243.        |
  244.        +- pack
  245.        |
  246.        +- portable
  247.        |
  248.        +- recursion
  249.        |
  250.        +- redefine
  251.        |
  252.        +- regexp
  253.        |
  254.        +- severe -------+
  255.        |                |
  256.        |                +- debugging
  257.        |                |
  258.        |                +- inplace
  259.        |                |
  260.        |                +- internal
  261.        |                |
  262.        |                +- malloc
  263.        |
  264.        +- signal
  265.        |
  266.        +- substr
  267.        |
  268.        +- syntax -------+
  269.        |                |
  270.        |                +- ambiguous
  271.        |                |
  272.        |                +- bareword
  273.        |                |
  274.        |                +- deprecated
  275.        |                |
  276.        |                +- digit
  277.        |                |
  278.        |                +- parenthesis
  279.        |                |
  280.        |                +- precedence
  281.        |                |
  282.        |                +- printf
  283.        |                |
  284.        |                +- prototype
  285.        |                |
  286.        |                +- qw
  287.        |                |
  288.        |                +- reserved
  289.        |                |
  290.        |                +- semicolon
  291.        |
  292.        +- taint
  293.        |
  294.        +- umask
  295.        |
  296.        +- uninitialized
  297.        |
  298.        +- unpack
  299.        |
  300.        +- untie
  301.        |
  302.        +- utf8
  303.        |
  304.        +- void
  305.        |
  306.        +- y2k</PRE>
  307. <P>Just like the ``strict'' pragma any of these categories can be combined</P>
  308. <PRE>
  309.     use warnings qw(void redefine) ;
  310.     no warnings qw(io syntax untie) ;</PRE>
  311. <P>Also like the ``strict'' pragma, if there is more than one instance of the
  312. <CODE>warnings</CODE> pragma in a given scope the cumulative effect is additive.</P>
  313. <PRE>
  314.     use warnings qw(void) ; # only "void" warnings enabled
  315.     ...
  316.     use warnings qw(io) ;   # only "void" & "io" warnings enabled
  317.     ...
  318.     no warnings qw(void) ;  # only "io" warnings enabled</PRE>
  319. <P>To determine which category a specific warning has been assigned to see
  320. <A HREF="../../lib/Pod/perldiag.html">the perldiag manpage</A>.</P>
  321. <P>
  322. <H2><A NAME="fatal warnings">Fatal Warnings</A></H2>
  323. <P>The presence of the word ``FATAL'' in the category list will escalate any
  324. warnings detected from the categories specified in the lexical scope
  325. into fatal errors. In the code below, there are 3 places where a
  326. deprecated warning will be detected, the middle one will produce a
  327. fatal error.</P>
  328. <PRE>
  329.     use warnings ;</PRE>
  330. <PRE>
  331.     $a = 1 if $a EQ $b ;</PRE>
  332. <PRE>
  333.     {
  334.         use warnings FATAL => qw(deprecated) ;
  335.         $a = 1 if $a EQ $b ;
  336.     }</PRE>
  337. <PRE>
  338.     $a = 1 if $a EQ $b ;</PRE>
  339. <P>
  340. <H2><A NAME="reporting warnings from a module">Reporting Warnings from a Module</A></H2>
  341. <P>The <CODE>warnings</CODE> pragma provides a number of functions that are useful for
  342. module authors. These are used when you want to report a module-specific
  343. warning when the calling module has enabled warnings via the <CODE>warnings</CODE>
  344. pragma.</P>
  345. <P>Consider the module <CODE>MyMod::Abc</CODE> below.</P>
  346. <PRE>
  347.     package MyMod::Abc;</PRE>
  348. <PRE>
  349.     use warnings::register;</PRE>
  350. <PRE>
  351.     sub open {
  352.         my $path = shift ;
  353.         if (warnings::enabled() && $path !~ m#^/#) {
  354.             warnings::warn("changing relative path to /tmp/");
  355.             $path = "/tmp/$path" ; 
  356.         }
  357.     }</PRE>
  358. <PRE>
  359.     1 ;</PRE>
  360. <P>The call to <CODE>warnings::register</CODE> will create a new warnings category
  361. called ``MyMod::abc'', i.e. the new category name matches the module
  362. name. The <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> function in the module will display a warning message
  363. if it gets given a relative path as a parameter. This warnings will only
  364. be displayed if the code that uses <CODE>MyMod::Abc</CODE> has actually enabled
  365. them with the <CODE>warnings</CODE> pragma like below.</P>
  366. <PRE>
  367.     use MyMod::Abc;
  368.     use warnings 'MyMod::Abc';
  369.     ...
  370.     abc::open("../fred.txt");</PRE>
  371. <P>It is also possible to test whether the pre-defined warnings categories are
  372. set in the calling module with the <CODE>warnings::enabled</CODE> function. Consider
  373. this snippet of code:</P>
  374. <PRE>
  375.     package MyMod::Abc;</PRE>
  376. <PRE>
  377.     sub open {
  378.         if (warnings::enabled("deprecated")) {
  379.             warnings::warn("deprecated", 
  380.                            "open is deprecated, use new instead") ;
  381.         }
  382.         new(@_) ;
  383.     }</PRE>
  384. <PRE>
  385.     sub new
  386.     ...
  387.     1 ;</PRE>
  388. <P>The function <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> has been deprecated, so code has been included to
  389. display a warning message whenever the calling module has (at least) the
  390. ``deprecated'' warnings category enabled. Something like this, say.</P>
  391. <PRE>
  392.     use warnings 'deprecated';
  393.     use MyMod::Abc;
  394.     ...
  395.     MyMod::Abc::open($filename) ;</PRE>
  396. <P>The <CODE>warnings::warn</CODE> function should be used to actually display the
  397. warnings message. This is because they can make use of the feature that
  398. allows warnings to be escalated into fatal errors. So in this case</P>
  399. <PRE>
  400.     use MyMod::Abc;
  401.     use warnings FATAL => 'MyMod::Abc';
  402.     ...
  403.     MyMod::Abc::open('../fred.txt');</PRE>
  404. <P>the <CODE>warnings::warn</CODE> function will detect this and die after
  405. displaying the warning message.</P>
  406. <P>
  407. <HR>
  408. <H1><A NAME="todo">TODO</A></H1>
  409. <PRE>
  410.   perl5db.pl
  411.     The debugger saves and restores C<$^W> at runtime. I haven't checked
  412.     whether the debugger will still work with the lexical warnings
  413.     patch applied.</PRE>
  414. <PRE>
  415.   diagnostics.pm
  416.     I *think* I've got diagnostics to work with the lexical warnings
  417.     patch, but there were design decisions made in diagnostics to work
  418.     around the limitations of C<$^W>. Now that those limitations are gone,
  419.     the module should be revisited.</PRE>
  420. <P>
  421. <HR>
  422. <H1><A NAME="see also">SEE ALSO</A></H1>
  423. <P><A HREF="../../lib/warnings.html">the warnings manpage</A>, <A HREF="../../lib/Pod/perldiag.html">the perldiag manpage</A>.</P>
  424. <P>
  425. <HR>
  426. <H1><A NAME="author">AUTHOR</A></H1>
  427. <P>Paul Marquess</P>
  428. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  429. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  430. <STRONG><P CLASS=block> perllexwarn - Perl Lexical Warnings</P></STRONG>
  431. </TD></TR>
  432. </TABLE>
  433.  
  434. </BODY>
  435.  
  436. </HTML>
  437.