This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Externalization from Jatan Shah <jshah@broadcom.com>.
[perl5.git] / pod / perllexwarn.pod
... / ...
CommitLineData
1=head1 NAME
2
3perllexwarn - Perl Lexical Warnings
4
5=head1 DESCRIPTION
6
7The C<use warnings> pragma is a replacement for both the command line
8flag B<-w> and the equivalent Perl variable, C<$^W>.
9
10The pragma works just like the existing "strict" pragma.
11This means that the scope of the warning pragma is limited to the
12enclosing block. It also means that the pragma setting will not
13leak across files (via C<use>, C<require> or C<do>). This allows
14authors to independently define the degree of warning checks that will
15be applied to their module.
16
17By default, optional warnings are disabled, so any legacy code that
18doesn't attempt to control the warnings will work unchanged.
19
20All warnings are enabled in a block by either of these:
21
22 use warnings ;
23 use warnings 'all' ;
24
25Similarly all warnings are disabled in a block by either of these:
26
27 no warnings ;
28 no warnings 'all' ;
29
30For example, consider the code below:
31
32 use warnings ;
33 my @a ;
34 {
35 no warnings ;
36 my $b = @a[0] ;
37 }
38 my $c = @a[0];
39
40The code in the enclosing block has warnings enabled, but the inner
41block has them disabled. In this case that means the assignment to the
42scalar C<$c> will trip the C<"Scalar value @a[0] better written as $a[0]">
43warning, but the assignment to the scalar C<$b> will not.
44
45=head2 Default Warnings and Optional Warnings
46
47Before the introduction of lexical warnings, Perl had two classes of
48warnings: mandatory and optional.
49
50As its name suggests, if your code tripped a mandatory warning, you
51would get a warning whether you wanted it or not.
52For example, the code below would always produce an C<"isn't numeric">
53warning about the "2:".
54
55 my $a = "2:" + 3;
56
57With the introduction of lexical warnings, mandatory warnings now become
58I<default> warnings. The difference is that although the previously
59mandatory warnings are still enabled by default, they can then be
60subsequently enabled or disabled with the lexical warning pragma. For
61example, in the code below, an C<"isn't numeric"> warning will only
62be reported for the C<$a> variable.
63
64 my $a = "2:" + 3;
65 no warnings ;
66 my $b = "2:" + 3;
67
68Note that neither the B<-w> flag or the C<$^W> can be used to
69disable/enable default warnings. They are still mandatory in this case.
70
71=head2 What's wrong with B<-w> and C<$^W>
72
73Although very useful, the big problem with using B<-w> on the command
74line to enable warnings is that it is all or nothing. Take the typical
75scenario when you are writing a Perl program. Parts of the code you
76will write yourself, but it's very likely that you will make use of
77pre-written Perl modules. If you use the B<-w> flag in this case, you
78end up enabling warnings in pieces of code that you haven't written.
79
80Similarly, using C<$^W> to either disable or enable blocks of code is
81fundamentally flawed. For a start, say you want to disable warnings in
82a block of code. You might expect this to be enough to do the trick:
83
84 {
85 local ($^W) = 0 ;
86 my $a =+ 2 ;
87 my $b ; chop $b ;
88 }
89
90When this code is run with the B<-w> flag, a warning will be produced
91for the C<$a> line -- C<"Reversed += operator">.
92
93The problem is that Perl has both compile-time and run-time warnings. To
94disable compile-time warnings you need to rewrite the code like this:
95
96 {
97 BEGIN { $^W = 0 }
98 my $a =+ 2 ;
99 my $b ; chop $b ;
100 }
101
102The other big problem with C<$^W> is the way you can inadvertently
103change the warning setting in unexpected places in your code. For example,
104when the code below is run (without the B<-w> flag), the second call
105to C<doit> will trip a C<"Use of uninitialized value"> warning, whereas
106the first will not.
107
108 sub doit
109 {
110 my $b ; chop $b ;
111 }
112
113 doit() ;
114
115 {
116 local ($^W) = 1 ;
117 doit()
118 }
119
120This is a side-effect of C<$^W> being dynamically scoped.
121
122Lexical warnings get around these limitations by allowing finer control
123over where warnings can or can't be tripped.
124
125=head2 Controlling Warnings from the Command Line
126
127There are three Command Line flags that can be used to control when
128warnings are (or aren't) produced:
129
130=over 5
131
132=item B<-w>
133
134This is the existing flag. If the lexical warnings pragma is B<not>
135used in any of you code, or any of the modules that you use, this flag
136will enable warnings everywhere. See L<Backward Compatibility> for
137details of how this flag interacts with lexical warnings.
138
139=item B<-W>
140
141If the B<-W> flag is used on the command line, it will enable all warnings
142throughout the program regardless of whether warnings were disabled
143locally using C<no warnings> or C<$^W =0>. This includes all files that get
144included via C<use>, C<require> or C<do>.
145Think of it as the Perl equivalent of the "lint" command.
146
147=item B<-X>
148
149Does the exact opposite to the B<-W> flag, i.e. it disables all warnings.
150
151=back
152
153=head2 Backward Compatibility
154
155If you are used with working with a version of Perl prior to the
156introduction of lexically scoped warnings, or have code that uses both
157lexical warnings and C<$^W>, this section will describe how they interact.
158
159How Lexical Warnings interact with B<-w>/C<$^W>:
160
161=over 5
162
163=item 1.
164
165If none of the three command line flags (B<-w>, B<-W> or B<-X>) that
166control warnings is used and neither C<$^W> or the C<warnings> pragma
167are used, then default warnings will be enabled and optional warnings
168disabled.
169This means that legacy code that doesn't attempt to control the warnings
170will work unchanged.
171
172=item 2.
173
174The B<-w> flag just sets the global C<$^W> variable as in 5.005 -- this
175means that any legacy code that currently relies on manipulating C<$^W>
176to control warning behavior will still work as is.
177
178=item 3.
179
180Apart from now being a boolean, the C<$^W> variable operates in exactly
181the same horrible uncontrolled global way, except that it cannot
182disable/enable default warnings.
183
184=item 4.
185
186If a piece of code is under the control of the C<warnings> pragma,
187both the C<$^W> variable and the B<-w> flag will be ignored for the
188scope of the lexical warning.
189
190=item 5.
191
192The only way to override a lexical warnings setting is with the B<-W>
193or B<-X> command line flags.
194
195=back
196
197The combined effect of 3 & 4 is that it will allow code which uses
198the C<warnings> pragma to control the warning behavior of $^W-type
199code (using a C<local $^W=0>) if it really wants to, but not vice-versa.
200
201=head2 Category Hierarchy
202
203A hierarchy of "categories" have been defined to allow groups of warnings
204to be enabled/disabled in isolation.
205
206The current hierarchy is:
207
208 all -+
209 |
210 +- closure
211 |
212 +- exiting
213 |
214 +- glob
215 |
216 +- io -----------+
217 | |
218 | +- closed
219 | |
220 | +- exec
221 | |
222 | +- newline
223 | |
224 | +- pipe
225 | |
226 | +- unopened
227 |
228 +- misc
229 |
230 +- numeric
231 |
232 +- once
233 |
234 +- overflow
235 |
236 +- pack
237 |
238 +- portable
239 |
240 +- recursion
241 |
242 +- redefine
243 |
244 +- regexp
245 |
246 +- severe -------+
247 | |
248 | +- debugging
249 | |
250 | +- inplace
251 | |
252 | +- internal
253 | |
254 | +- malloc
255 |
256 +- signal
257 |
258 +- substr
259 |
260 +- syntax -------+
261 | |
262 | +- ambiguous
263 | |
264 | +- bareword
265 | |
266 | +- deprecated
267 | |
268 | +- digit
269 | |
270 | +- parenthesis
271 | |
272 | +- precedence
273 | |
274 | +- printf
275 | |
276 | +- prototype
277 | |
278 | +- qw
279 | |
280 | +- reserved
281 | |
282 | +- semicolon
283 |
284 +- taint
285 |
286 +- uninitialized
287 |
288 +- unpack
289 |
290 +- untie
291 |
292 +- utf8
293 |
294 +- void
295 |
296 +- y2k
297
298Just like the "strict" pragma any of these categories can be combined
299
300 use warnings qw(void redefine) ;
301 no warnings qw(io syntax untie) ;
302
303Also like the "strict" pragma, if there is more than one instance of the
304C<warnings> pragma in a given scope the cumulative effect is additive.
305
306 use warnings qw(void) ; # only "void" warnings enabled
307 ...
308 use warnings qw(io) ; # only "void" & "io" warnings enabled
309 ...
310 no warnings qw(void) ; # only "io" warnings enabled
311
312To determine which category a specific warning has been assigned to see
313L<perldiag>.
314
315=head2 Fatal Warnings
316
317The presence of the word "FATAL" in the category list will escalate any
318warnings detected from the categories specified in the lexical scope
319into fatal errors. In the code below, the use of C<time>, C<length>
320and C<join> can all produce a C<"Useless use of xxx in void context">
321warning.
322
323 use warnings ;
324
325 time ;
326
327 {
328 use warnings FATAL => qw(void) ;
329 length "abc" ;
330 }
331
332 join "", 1,2,3 ;
333
334 print "done\n" ;
335
336When run it produces this output
337
338 Useless use of time in void context at fatal line 3.
339 Useless use of length in void context at fatal line 7.
340
341The scope where C<length> is used has escalated the C<void> warnings
342category into a fatal error, so the program terminates immediately it
343encounters the warning.
344
345To explicitly disable a "FATAL" warning you just disable the warning it is
346associated with. So, for example, to disable the "void" warning in the
347example above, either of these will do the trick:
348
349 no warnings qw(void);
350 no warnings FATAL => qw(void);
351
352=head2 Reporting Warnings from a Module
353
354The C<warnings> pragma provides a number of functions that are useful for
355module authors. These are used when you want to report a module-specific
356warning to a calling module has enabled warnings via the C<warnings>
357pragma.
358
359Consider the module C<MyMod::Abc> below.
360
361 package MyMod::Abc;
362
363 use warnings::register;
364
365 sub open {
366 my $path = shift ;
367 if (warnings::enabled() && $path !~ m#^/#) {
368 warnings::warn("changing relative path to /tmp/");
369 $path = "/tmp/$path" ;
370 }
371 }
372
373 1 ;
374
375The call to C<warnings::register> will create a new warnings category
376called "MyMod::abc", i.e. the new category name matches the current
377package name. The C<open> function in the module will display a warning
378message if it gets given a relative path as a parameter. This warnings
379will only be displayed if the code that uses C<MyMod::Abc> has actually
380enabled them with the C<warnings> pragma like below.
381
382 use MyMod::Abc;
383 use warnings 'MyMod::Abc';
384 ...
385 abc::open("../fred.txt");
386
387It is also possible to test whether the pre-defined warnings categories are
388set in the calling module with the C<warnings::enabled> function. Consider
389this snippet of code:
390
391 package MyMod::Abc;
392
393 sub open {
394 warnings::warnif("deprecated",
395 "open is deprecated, use new instead") ;
396 new(@_) ;
397 }
398
399 sub new
400 ...
401 1 ;
402
403The function C<open> has been deprecated, so code has been included to
404display a warning message whenever the calling module has (at least) the
405"deprecated" warnings category enabled. Something like this, say.
406
407 use warnings 'deprecated';
408 use MyMod::Abc;
409 ...
410 MyMod::Abc::open($filename) ;
411
412Either the C<warnings::warn> or C<warnings::warnif> function should be
413used to actually display the warnings message. This is because they can
414make use of the feature that allows warnings to be escalated into fatal
415errors. So in this case
416
417 use MyMod::Abc;
418 use warnings FATAL => 'MyMod::Abc';
419 ...
420 MyMod::Abc::open('../fred.txt');
421
422the C<warnings::warnif> function will detect this and die after
423displaying the warning message.
424
425The three warnings functions, C<warnings::warn>, C<warnings::warnif>
426and C<warnings::enabled> can optionally take an object reference in place
427of a category name. In this case the functions will use the class name
428of the object as the warnings category.
429
430Consider this example:
431
432 package Original ;
433
434 no warnings ;
435 use warnings::register ;
436
437 sub new
438 {
439 my $class = shift ;
440 bless [], $class ;
441 }
442
443 sub check
444 {
445 my $self = shift ;
446 my $value = shift ;
447
448 if ($value % 2 && warnings::enabled($self))
449 { warnings::warn($self, "Odd numbers are unsafe") }
450 }
451
452 sub doit
453 {
454 my $self = shift ;
455 my $value = shift ;
456 $self->check($value) ;
457 # ...
458 }
459
460 1 ;
461
462 package Derived ;
463
464 use warnings::register ;
465 use Original ;
466 our @ISA = qw( Original ) ;
467 sub new
468 {
469 my $class = shift ;
470 bless [], $class ;
471 }
472
473
474 1 ;
475
476The code below makes use of both modules, but it only enables warnings from
477C<Derived>.
478
479 use Original ;
480 use Derived ;
481 use warnings 'Derived';
482 my $a = new Original ;
483 $a->doit(1) ;
484 my $b = new Derived ;
485 $a->doit(1) ;
486
487When this code is run only the C<Derived> object, C<$b>, will generate
488a warning.
489
490 Odd numbers are unsafe at main.pl line 7
491
492Notice also that the warning is reported at the line where the object is first
493used.
494
495=head1 TODO
496
497 perl5db.pl
498 The debugger saves and restores C<$^W> at runtime. I haven't checked
499 whether the debugger will still work with the lexical warnings
500 patch applied.
501
502 diagnostics.pm
503 I *think* I've got diagnostics to work with the lexical warnings
504 patch, but there were design decisions made in diagnostics to work
505 around the limitations of C<$^W>. Now that those limitations are gone,
506 the module should be revisited.
507
508 document calling the warnings::* functions from XS
509
510=head1 SEE ALSO
511
512L<warnings>, L<perldiag>.
513
514=head1 AUTHOR
515
516Paul Marquess