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