OS/2 socket fixes.
[p5sagit/p5-mst-13.2.git] / pod / perlfaq7.pod
CommitLineData
68dc0745 1=head1 NAME
2
d92eb7b0 3perlfaq7 - Perl Language Issues ($Revision: 1.28 $, $Date: 1999/05/23 20:36:18 $)
68dc0745 4
5=head1 DESCRIPTION
6
7This section deals with general Perl language issues that don't
8clearly fit into any of the other sections.
9
10=head2 Can I get a BNF/yacc/RE for the Perl language?
11
c8db1d39 12There is no BNF, but you can paw your way through the yacc grammar in
13perly.y in the source distribution if you're particularly brave. The
14grammar relies on very smart tokenizing code, so be prepared to
15venture into toke.c as well.
16
17In the words of Chaim Frenkel: "Perl's grammar can not be reduced to BNF.
18The work of parsing perl is distributed between yacc, the lexer, smoke
19and mirrors."
68dc0745 20
d92eb7b0 21=head2 What are all these $@%&* punctuation signs, and how do I know when to use them?
68dc0745 22
23They are type specifiers, as detailed in L<perldata>:
24
25 $ for scalar values (number, string or reference)
26 @ for arrays
27 % for hashes (associative arrays)
d92eb7b0 28 & for subroutines (aka functions, procedures, methods)
68dc0745 29 * for all types of that symbol name. In version 4 you used them like
30 pointers, but in modern perls you can just use references.
31
68dc0745 32A couple of others that you're likely to encounter that aren't
33really type specifiers are:
34
35 <> are used for inputting a record from a filehandle.
36 \ takes a reference to something.
37
38Note that E<lt>FILEE<gt> is I<neither> the type specifier for files
39nor the name of the handle. It is the C<E<lt>E<gt>> operator applied
40to the handle FILE. It reads one line (well, record - see
41L<perlvar/$/>) from the handle FILE in scalar context, or I<all> lines
42in list context. When performing open, close, or any other operation
43besides C<E<lt>E<gt>> on files, or even talking about the handle, do
44I<not> use the brackets. These are correct: C<eof(FH)>, C<seek(FH, 0,
452)> and "copying from STDIN to FILE".
46
47=head2 Do I always/never have to quote my strings or use semicolons and commas?
48
49Normally, a bareword doesn't need to be quoted, but in most cases
50probably should be (and must be under C<use strict>). But a hash key
51consisting of a simple word (that isn't the name of a defined
52subroutine) and the left-hand operand to the C<=E<gt>> operator both
53count as though they were quoted:
54
55 This is like this
56 ------------ ---------------
57 $foo{line} $foo{"line"}
58 bar => stuff "bar" => stuff
59
60The final semicolon in a block is optional, as is the final comma in a
61list. Good style (see L<perlstyle>) says to put them in except for
62one-liners:
63
64 if ($whoops) { exit 1 }
65 @nums = (1, 2, 3);
66
67 if ($whoops) {
68 exit 1;
69 }
70 @lines = (
71 "There Beren came from mountains cold",
72 "And lost he wandered under leaves",
73 );
74
75=head2 How do I skip some return values?
76
77One way is to treat the return values as a list and index into it:
78
79 $dir = (getpwnam($user))[7];
80
81Another way is to use undef as an element on the left-hand-side:
82
83 ($dev, $ino, undef, undef, $uid, $gid) = stat($file);
84
85=head2 How do I temporarily block warnings?
86
87The C<$^W> variable (documented in L<perlvar>) controls
88runtime warnings for a block:
89
90 {
91 local $^W = 0; # temporarily turn off warnings
92 $a = $b + $c; # I know these might be undef
93 }
94
95Note that like all the punctuation variables, you cannot currently
96use my() on C<$^W>, only local().
97
98A new C<use warnings> pragma is in the works to provide finer control
99over all this. The curious should check the perl5-porters mailing list
100archives for details.
101
102=head2 What's an extension?
103
104A way of calling compiled C code from Perl. Reading L<perlxstut>
105is a good place to learn more about extensions.
106
107=head2 Why do Perl operators have different precedence than C operators?
108
109Actually, they don't. All C operators that Perl copies have the same
110precedence in Perl as they do in C. The problem is with operators that C
111doesn't have, especially functions that give a list context to everything
112on their right, eg print, chmod, exec, and so on. Such functions are
113called "list operators" and appear as such in the precedence table in
114L<perlop>.
115
116A common mistake is to write:
117
118 unlink $file || die "snafu";
119
120This gets interpreted as:
121
122 unlink ($file || die "snafu");
123
124To avoid this problem, either put in extra parentheses or use the
125super low precedence C<or> operator:
126
127 (unlink $file) || die "snafu";
128 unlink $file or die "snafu";
129
130The "English" operators (C<and>, C<or>, C<xor>, and C<not>)
131deliberately have precedence lower than that of list operators for
132just such situations as the one above.
133
134Another operator with surprising precedence is exponentiation. It
135binds more tightly even than unary minus, making C<-2**2> product a
136negative not a positive four. It is also right-associating, meaning
137that C<2**3**2> is two raised to the ninth power, not eight squared.
138
c8db1d39 139Although it has the same precedence as in C, Perl's C<?:> operator
140produces an lvalue. This assigns $x to either $a or $b, depending
141on the trueness of $maybe:
142
143 ($maybe ? $a : $b) = $x;
144
68dc0745 145=head2 How do I declare/create a structure?
146
147In general, you don't "declare" a structure. Just use a (probably
148anonymous) hash reference. See L<perlref> and L<perldsc> for details.
149Here's an example:
150
151 $person = {}; # new anonymous hash
152 $person->{AGE} = 24; # set field AGE to 24
153 $person->{NAME} = "Nat"; # set field NAME to "Nat"
154
155If you're looking for something a bit more rigorous, try L<perltoot>.
156
157=head2 How do I create a module?
158
159A module is a package that lives in a file of the same name. For
160example, the Hello::There module would live in Hello/There.pm. For
161details, read L<perlmod>. You'll also find L<Exporter> helpful. If
162you're writing a C or mixed-language module with both C and Perl, then
163you should study L<perlxstut>.
164
165Here's a convenient template you might wish you use when starting your
166own module. Make sure to change the names appropriately.
167
168 package Some::Module; # assumes Some/Module.pm
169
170 use strict;
171
172 BEGIN {
173 use Exporter ();
174 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
175
176 ## set the version for version checking; uncomment to use
177 ## $VERSION = 1.00;
178
179 # if using RCS/CVS, this next line may be preferred,
180 # but beware two-digit versions.
d92eb7b0 181 $VERSION = do{my@r=q$Revision: 1.28 $=~/\d+/g;sprintf '%d.'.'%02d'x$#r,@r};
68dc0745 182
183 @ISA = qw(Exporter);
184 @EXPORT = qw(&func1 &func2 &func3);
185 %EXPORT_TAGS = ( ); # eg: TAG => [ qw!name1 name2! ],
186
187 # your exported package globals go here,
188 # as well as any optionally exported functions
189 @EXPORT_OK = qw($Var1 %Hashit);
190 }
191 use vars @EXPORT_OK;
192
193 # non-exported package globals go here
194 use vars qw( @more $stuff );
195
196 # initialize package globals, first exported ones
197 $Var1 = '';
198 %Hashit = ();
199
200 # then the others (which are still accessible as $Some::Module::stuff)
201 $stuff = '';
202 @more = ();
203
204 # all file-scoped lexicals must be created before
205 # the functions below that use them.
206
207 # file-private lexicals go here
208 my $priv_var = '';
209 my %secret_hash = ();
210
211 # here's a file-private function as a closure,
212 # callable as &$priv_func; it cannot be prototyped.
213 my $priv_func = sub {
214 # stuff goes here.
215 };
216
217 # make all your functions, whether exported or not;
218 # remember to put something interesting in the {} stubs
219 sub func1 {} # no prototype
220 sub func2() {} # proto'd void
221 sub func3($$) {} # proto'd to 2 scalars
222
223 # this one isn't exported, but could be called!
224 sub func4(\%) {} # proto'd to 1 hash ref
225
226 END { } # module clean-up code here (global destructor)
227
228 1; # modules must return true
229
65acb1b1 230The h2xs program will create stubs for all the important stuff for you:
231
232 % h2xs -XA -n My::Module
233
68dc0745 234=head2 How do I create a class?
235
236See L<perltoot> for an introduction to classes and objects, as well as
237L<perlobj> and L<perlbot>.
238
239=head2 How can I tell if a variable is tainted?
240
241See L<perlsec/"Laundering and Detecting Tainted Data">. Here's an
242example (which doesn't use any system calls, because the kill()
243is given no processes to signal):
244
245 sub is_tainted {
246 return ! eval { join('',@_), kill 0; 1; };
247 }
248
249This is not C<-w> clean, however. There is no C<-w> clean way to
250detect taintedness - take this as a hint that you should untaint
251all possibly-tainted data.
252
253=head2 What's a closure?
254
255Closures are documented in L<perlref>.
256
257I<Closure> is a computer science term with a precise but
258hard-to-explain meaning. Closures are implemented in Perl as anonymous
259subroutines with lasting references to lexical variables outside their
260own scopes. These lexicals magically refer to the variables that were
261around when the subroutine was defined (deep binding).
262
263Closures make sense in any programming language where you can have the
264return value of a function be itself a function, as you can in Perl.
265Note that some languages provide anonymous functions but are not
266capable of providing proper closures; the Python language, for
267example. For more information on closures, check out any textbook on
268functional programming. Scheme is a language that not only supports
269but encourages closures.
270
271Here's a classic function-generating function:
272
273 sub add_function_generator {
274 return sub { shift + shift };
275 }
276
277 $add_sub = add_function_generator();
c8db1d39 278 $sum = $add_sub->(4,5); # $sum is 9 now.
68dc0745 279
280The closure works as a I<function template> with some customization
281slots left out to be filled later. The anonymous subroutine returned
282by add_function_generator() isn't technically a closure because it
283refers to no lexicals outside its own scope.
284
285Contrast this with the following make_adder() function, in which the
286returned anonymous function contains a reference to a lexical variable
287outside the scope of that function itself. Such a reference requires
288that Perl return a proper closure, thus locking in for all time the
289value that the lexical had when the function was created.
290
291 sub make_adder {
292 my $addpiece = shift;
293 return sub { shift + $addpiece };
294 }
295
296 $f1 = make_adder(20);
297 $f2 = make_adder(555);
298
299Now C<&$f1($n)> is always 20 plus whatever $n you pass in, whereas
300C<&$f2($n)> is always 555 plus whatever $n you pass in. The $addpiece
301in the closure sticks around.
302
303Closures are often used for less esoteric purposes. For example, when
304you want to pass in a bit of code into a function:
305
306 my $line;
307 timeout( 30, sub { $line = <STDIN> } );
308
309If the code to execute had been passed in as a string, C<'$line =
310E<lt>STDINE<gt>'>, there would have been no way for the hypothetical
311timeout() function to access the lexical variable $line back in its
312caller's scope.
313
46fc3d4c 314=head2 What is variable suicide and how can I prevent it?
315
316Variable suicide is when you (temporarily or permanently) lose the
317value of a variable. It is caused by scoping through my() and local()
368c9434 318interacting with either closures or aliased foreach() iterator
46fc3d4c 319variables and subroutine arguments. It used to be easy to
320inadvertently lose a variable's value this way, but now it's much
321harder. Take this code:
322
323 my $f = "foo";
324 sub T {
325 while ($i++ < 3) { my $f = $f; $f .= "bar"; print $f, "\n" }
326 }
327 T;
328 print "Finally $f\n";
329
330The $f that has "bar" added to it three times should be a new C<$f>
d92eb7b0 331(C<my $f> should create a new local variable each time through the loop).
332It isn't, however. This was a bug, now fixed in the latest releases
333(tested against 5.004_05, 5.005_03, and 5.005_56).
46fc3d4c 334
d92eb7b0 335=head2 How can I pass/return a {Function, FileHandle, Array, Hash, Method, Regex}?
68dc0745 336
d92eb7b0 337With the exception of regexes, you need to pass references to these
68dc0745 338objects. See L<perlsub/"Pass by Reference"> for this particular
339question, and L<perlref> for information on references.
340
341=over 4
342
343=item Passing Variables and Functions
344
345Regular variables and functions are quite easy: just pass in a
346reference to an existing or anonymous variable or function:
347
348 func( \$some_scalar );
349
65acb1b1 350 func( \@some_array );
68dc0745 351 func( [ 1 .. 10 ] );
352
353 func( \%some_hash );
354 func( { this => 10, that => 20 } );
355
356 func( \&some_func );
357 func( sub { $_[0] ** $_[1] } );
358
359=item Passing Filehandles
360
c8db1d39 361To pass filehandles to subroutines, use the C<*FH> or C<\*FH> notations.
362These are "typeglobs" - see L<perldata/"Typeglobs and Filehandles">
363and especially L<perlsub/"Pass by Reference"> for more information.
364
365Here's an excerpt:
366
367If you're passing around filehandles, you could usually just use the bare
368typeglob, like *STDOUT, but typeglobs references would be better because
369they'll still work properly under C<use strict 'refs'>. For example:
68dc0745 370
c8db1d39 371 splutter(\*STDOUT);
372 sub splutter {
373 my $fh = shift;
374 print $fh "her um well a hmmm\n";
375 }
376
377 $rec = get_rec(\*STDIN);
378 sub get_rec {
379 my $fh = shift;
380 return scalar <$fh>;
381 }
382
383If you're planning on generating new filehandles, you could do this:
384
385 sub openit {
386 my $name = shift;
387 local *FH;
388 return open (FH, $path) ? *FH : undef;
389 }
390 $fh = openit('< /etc/motd');
391 print <$fh>;
68dc0745 392
d92eb7b0 393=item Passing Regexes
394
395To pass regexes around, you'll need to be using a release of Perl
396sufficiently recent as to support the C<qr//> construct, pass around
397strings and use an exception-trapping eval, or else be very, very clever.
68dc0745 398
d92eb7b0 399Here's an example of how to pass in a string to be regex compared
400using C<qr//>:
68dc0745 401
402 sub compare($$) {
d92eb7b0 403 my ($val1, $regex) = @_;
404 my $retval = $val1 =~ /$regex/;
405 return $retval;
406 }
407 $match = compare("old McDonald", qr/d.*D/i);
408
409Notice how C<qr//> allows flags at the end. That pattern was compiled
410at compile time, although it was executed later. The nifty C<qr//>
411notation wasn't introduced until the 5.005 release. Before that, you
412had to approach this problem much less intuitively. For example, here
413it is again if you don't have C<qr//>:
414
415 sub compare($$) {
416 my ($val1, $regex) = @_;
417 my $retval = eval { $val1 =~ /$regex/ };
68dc0745 418 die if $@;
419 return $retval;
420 }
421
d92eb7b0 422 $match = compare("old McDonald", q/($?i)d.*D/);
68dc0745 423
424Make sure you never say something like this:
425
d92eb7b0 426 return eval "\$val =~ /$regex/"; # WRONG
68dc0745 427
d92eb7b0 428or someone can sneak shell escapes into the regex due to the double
68dc0745 429interpolation of the eval and the double-quoted string. For example:
430
431 $pattern_of_evil = 'danger ${ system("rm -rf * &") } danger';
432
433 eval "\$string =~ /$pattern_of_evil/";
434
435Those preferring to be very, very clever might see the O'Reilly book,
436I<Mastering Regular Expressions>, by Jeffrey Friedl. Page 273's
437Build_MatchMany_Function() is particularly interesting. A complete
438citation of this book is given in L<perlfaq2>.
439
440=item Passing Methods
441
442To pass an object method into a subroutine, you can do this:
443
444 call_a_lot(10, $some_obj, "methname")
445 sub call_a_lot {
446 my ($count, $widget, $trick) = @_;
447 for (my $i = 0; $i < $count; $i++) {
448 $widget->$trick();
449 }
450 }
451
c8db1d39 452Or you can use a closure to bundle up the object and its method call
68dc0745 453and arguments:
454
455 my $whatnot = sub { $some_obj->obfuscate(@args) };
456 func($whatnot);
457 sub func {
458 my $code = shift;
459 &$code();
460 }
461
462You could also investigate the can() method in the UNIVERSAL class
463(part of the standard perl distribution).
464
465=back
466
467=head2 How do I create a static variable?
468
469As with most things in Perl, TMTOWTDI. What is a "static variable" in
470other languages could be either a function-private variable (visible
471only within a single function, retaining its value between calls to
472that function), or a file-private variable (visible only to functions
473within the file it was declared in) in Perl.
474
475Here's code to implement a function-private variable:
476
477 BEGIN {
478 my $counter = 42;
479 sub prev_counter { return --$counter }
480 sub next_counter { return $counter++ }
481 }
482
483Now prev_counter() and next_counter() share a private variable $counter
484that was initialized at compile time.
485
486To declare a file-private variable, you'll still use a my(), putting
487it at the outer scope level at the top of the file. Assume this is in
488file Pax.pm:
489
490 package Pax;
491 my $started = scalar(localtime(time()));
492
493 sub begun { return $started }
494
495When C<use Pax> or C<require Pax> loads this module, the variable will
496be initialized. It won't get garbage-collected the way most variables
497going out of scope do, because the begun() function cares about it,
498but no one else can get it. It is not called $Pax::started because
499its scope is unrelated to the package. It's scoped to the file. You
500could conceivably have several packages in that same file all
501accessing the same private variable, but another file with the same
502package couldn't get to it.
503
c2611fb3 504See L<perlsub/"Persistent Private Variables"> for details.
c8db1d39 505
68dc0745 506=head2 What's the difference between dynamic and lexical (static) scoping? Between local() and my()?
507
508C<local($x)> saves away the old value of the global variable C<$x>,
509and assigns a new value for the duration of the subroutine, I<which is
510visible in other functions called from that subroutine>. This is done
511at run-time, so is called dynamic scoping. local() always affects global
512variables, also called package variables or dynamic variables.
513
514C<my($x)> creates a new variable that is only visible in the current
515subroutine. This is done at compile-time, so is called lexical or
516static scoping. my() always affects private variables, also called
517lexical variables or (improperly) static(ly scoped) variables.
518
519For instance:
520
521 sub visible {
522 print "var has value $var\n";
523 }
524
525 sub dynamic {
526 local $var = 'local'; # new temporary value for the still-global
527 visible(); # variable called $var
528 }
529
530 sub lexical {
531 my $var = 'private'; # new private variable, $var
532 visible(); # (invisible outside of sub scope)
533 }
534
535 $var = 'global';
536
537 visible(); # prints global
538 dynamic(); # prints local
539 lexical(); # prints global
540
541Notice how at no point does the value "private" get printed. That's
542because $var only has that value within the block of the lexical()
543function, and it is hidden from called subroutine.
544
545In summary, local() doesn't make what you think of as private, local
546variables. It gives a global variable a temporary value. my() is
547what you're looking for if you want private variables.
548
c8db1d39 549See L<perlsub/"Private Variables via my()"> and L<perlsub/"Temporary
550Values via local()"> for excruciating details.
68dc0745 551
552=head2 How can I access a dynamic variable while a similarly named lexical is in scope?
553
554You can do this via symbolic references, provided you haven't set
555C<use strict "refs">. So instead of $var, use C<${'var'}>.
556
557 local $var = "global";
558 my $var = "lexical";
559
560 print "lexical is $var\n";
561
562 no strict 'refs';
563 print "global is ${'var'}\n";
564
565If you know your package, you can just mention it explicitly, as in
566$Some_Pack::var. Note that the notation $::var is I<not> the dynamic
567$var in the current package, but rather the one in the C<main>
568package, as though you had written $main::var. Specifying the package
569directly makes you hard-code its name, but it executes faster and
570avoids running afoul of C<use strict "refs">.
571
572=head2 What's the difference between deep and shallow binding?
573
574In deep binding, lexical variables mentioned in anonymous subroutines
575are the same ones that were in scope when the subroutine was created.
576In shallow binding, they are whichever variables with the same names
577happen to be in scope when the subroutine is called. Perl always uses
578deep binding of lexical variables (i.e., those created with my()).
579However, dynamic variables (aka global, local, or package variables)
580are effectively shallowly bound. Consider this just one more reason
581not to use them. See the answer to L<"What's a closure?">.
582
65acb1b1 583=head2 Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right?
68dc0745 584
c8db1d39 585C<my()> and C<local()> give list context to the right hand side
586of C<=>. The E<lt>FHE<gt> read operation, like so many of Perl's
587functions and operators, can tell which context it was called in and
588behaves appropriately. In general, the scalar() function can help.
589This function does nothing to the data itself (contrary to popular myth)
590but rather tells its argument to behave in whatever its scalar fashion is.
591If that function doesn't have a defined scalar behavior, this of course
592doesn't help you (such as with sort()).
68dc0745 593
594To enforce scalar context in this particular case, however, you need
595merely omit the parentheses:
596
597 local($foo) = <FILE>; # WRONG
598 local($foo) = scalar(<FILE>); # ok
599 local $foo = <FILE>; # right
600
601You should probably be using lexical variables anyway, although the
602issue is the same here:
603
604 my($foo) = <FILE>; # WRONG
605 my $foo = <FILE>; # right
606
54310121 607=head2 How do I redefine a builtin function, operator, or method?
68dc0745 608
609Why do you want to do that? :-)
610
611If you want to override a predefined function, such as open(),
612then you'll have to import the new definition from a different
613module. See L<perlsub/"Overriding Builtin Functions">. There's
65acb1b1 614also an example in L<perltoot/"Class::Template">.
68dc0745 615
616If you want to overload a Perl operator, such as C<+> or C<**>,
617then you'll want to use the C<use overload> pragma, documented
618in L<overload>.
619
620If you're talking about obscuring method calls in parent classes,
621see L<perltoot/"Overridden Methods">.
622
623=head2 What's the difference between calling a function as &foo and foo()?
624
625When you call a function as C<&foo>, you allow that function access to
626your current @_ values, and you by-pass prototypes. That means that
627the function doesn't get an empty @_, it gets yours! While not
628strictly speaking a bug (it's documented that way in L<perlsub>), it
629would be hard to consider this a feature in most cases.
630
c8db1d39 631When you call your function as C<&foo()>, then you I<do> get a new @_,
68dc0745 632but prototyping is still circumvented.
633
634Normally, you want to call a function using C<foo()>. You may only
635omit the parentheses if the function is already known to the compiler
636because it already saw the definition (C<use> but not C<require>),
637or via a forward reference or C<use subs> declaration. Even in this
638case, you get a clean @_ without any of the old values leaking through
639where they don't belong.
640
641=head2 How do I create a switch or case statement?
642
643This is explained in more depth in the L<perlsyn>. Briefly, there's
644no official case statement, because of the variety of tests possible
645in Perl (numeric comparison, string comparison, glob comparison,
d92eb7b0 646regex matching, overloaded comparisons, ...). Larry couldn't decide
68dc0745 647how best to do this, so he left it out, even though it's been on the
648wish list since perl1.
649
c8db1d39 650The general answer is to write a construct like this:
651
652 for ($variable_to_test) {
653 if (/pat1/) { } # do something
654 elsif (/pat2/) { } # do something else
655 elsif (/pat3/) { } # do something else
656 else { } # default
657 }
68dc0745 658
c8db1d39 659Here's a simple example of a switch based on pattern matching, this
660time lined up in a way to make it look more like a switch statement.
661We'll do a multi-way conditional based on the type of reference stored
662in $whatchamacallit:
663
664 SWITCH: for (ref $whatchamacallit) {
68dc0745 665
666 /^$/ && die "not a reference";
667
668 /SCALAR/ && do {
669 print_scalar($$ref);
670 last SWITCH;
671 };
672
673 /ARRAY/ && do {
674 print_array(@$ref);
675 last SWITCH;
676 };
677
678 /HASH/ && do {
679 print_hash(%$ref);
680 last SWITCH;
681 };
682
683 /CODE/ && do {
684 warn "can't print function ref";
685 last SWITCH;
686 };
687
688 # DEFAULT
689
690 warn "User defined type skipped";
691
692 }
693
c8db1d39 694See C<perlsyn/"Basic BLOCKs and Switch Statements"> for many other
695examples in this style.
696
697Sometimes you should change the positions of the constant and the variable.
698For example, let's say you wanted to test which of many answers you were
699given, but in a case-insensitive way that also allows abbreviations.
700You can use the following technique if the strings all start with
701different characters, or if you want to arrange the matches so that
702one takes precedence over another, as C<"SEND"> has precedence over
703C<"STOP"> here:
704
705 chomp($answer = <>);
706 if ("SEND" =~ /^\Q$answer/i) { print "Action is send\n" }
707 elsif ("STOP" =~ /^\Q$answer/i) { print "Action is stop\n" }
708 elsif ("ABORT" =~ /^\Q$answer/i) { print "Action is abort\n" }
709 elsif ("LIST" =~ /^\Q$answer/i) { print "Action is list\n" }
710 elsif ("EDIT" =~ /^\Q$answer/i) { print "Action is edit\n" }
711
712A totally different approach is to create a hash of function references.
713
714 my %commands = (
715 "happy" => \&joy,
716 "sad", => \&sullen,
717 "done" => sub { die "See ya!" },
718 "mad" => \&angry,
719 );
720
721 print "How are you? ";
722 chomp($string = <STDIN>);
723 if ($commands{$string}) {
724 $commands{$string}->();
725 } else {
726 print "No such command: $string\n";
727 }
728
68dc0745 729=head2 How can I catch accesses to undefined variables/functions/methods?
730
731The AUTOLOAD method, discussed in L<perlsub/"Autoloading"> and
732L<perltoot/"AUTOLOAD: Proxy Methods">, lets you capture calls to
733undefined functions and methods.
734
735When it comes to undefined variables that would trigger a warning
736under C<-w>, you can use a handler to trap the pseudo-signal
737C<__WARN__> like this:
738
739 $SIG{__WARN__} = sub {
740
c8db1d39 741 for ( $_[0] ) { # voici un switch statement
68dc0745 742
743 /Use of uninitialized value/ && do {
744 # promote warning to a fatal
745 die $_;
746 };
747
748 # other warning cases to catch could go here;
749
750 warn $_;
751 }
752
753 };
754
755=head2 Why can't a method included in this same file be found?
756
757Some possible reasons: your inheritance is getting confused, you've
758misspelled the method name, or the object is of the wrong type. Check
759out L<perltoot> for details on these. You may also use C<print
760ref($object)> to find out the class C<$object> was blessed into.
761
762Another possible reason for problems is because you've used the
763indirect object syntax (eg, C<find Guru "Samy">) on a class name
764before Perl has seen that such a package exists. It's wisest to make
765sure your packages are all defined before you start using them, which
766will be taken care of if you use the C<use> statement instead of
767C<require>. If not, make sure to use arrow notation (eg,
7b8d334a 768C<Guru-E<gt>find("Samy")>) instead. Object notation is explained in
68dc0745 769L<perlobj>.
770
c8db1d39 771Make sure to read about creating modules in L<perlmod> and
772the perils of indirect objects in L<perlobj/"WARNING">.
773
68dc0745 774=head2 How can I find out my current package?
775
776If you're just a random program, you can do this to find
777out what the currently compiled package is:
778
c8db1d39 779 my $packname = __PACKAGE__;
68dc0745 780
781But if you're a method and you want to print an error message
782that includes the kind of object you were called on (which is
783not necessarily the same as the one in which you were compiled):
784
785 sub amethod {
92c2ed05 786 my $self = shift;
68dc0745 787 my $class = ref($self) || $self;
788 warn "called me from a $class object";
789 }
790
46fc3d4c 791=head2 How can I comment out a large block of perl code?
792
793Use embedded POD to discard it:
794
795 # program is here
796
797 =for nobody
798 This paragraph is commented out
799
800 # program continues
801
802 =begin comment text
803
804 all of this stuff
805
806 here will be ignored
807 by everyone
808
809 =end comment text
810
fc36a67e 811 =cut
812
c8db1d39 813This can't go just anywhere. You have to put a pod directive where
814the parser is expecting a new statement, not just in the middle
815of an expression or some other arbitrary yacc grammar production.
816
65acb1b1 817=head2 How do I clear a package?
818
819Use this code, provided by Mark-Jason Dominus:
820
821 sub scrub_package {
822 no strict 'refs';
823 my $pack = shift;
824 die "Shouldn't delete main package"
825 if $pack eq "" || $pack eq "main";
826 my $stash = *{$pack . '::'}{HASH};
827 my $name;
828 foreach $name (keys %$stash) {
829 my $fullname = $pack . '::' . $name;
830 # Get rid of everything with that name.
831 undef $$fullname;
832 undef @$fullname;
833 undef %$fullname;
834 undef &$fullname;
835 undef *$fullname;
836 }
837 }
838
839Or, if you're using a recent release of Perl, you can
840just use the Symbol::delete_package() function instead.
841
d92eb7b0 842=head2 How can I use a variable as a variable name?
843
844Beginners often think they want to have a variable contain the name
845of a variable.
846
847 $fred = 23;
848 $varname = "fred";
849 ++$$varname; # $fred now 24
850
851This works I<sometimes>, but it is a very bad idea for two reasons.
852
853The first reason is that they I<only work on global variables>.
854That means above that if $fred is a lexical variable created with my(),
855that the code won't work at all: you'll accidentally access the global
856and skip right over the private lexical altogether. Global variables
857are bad because they can easily collide accidentally and in general make
858for non-scalable and confusing code.
859
860Symbolic references are forbidden under the C<use strict> pragma.
861They are not true references and consequently are not reference counted
862or garbage collected.
863
864The other reason why using a variable to hold the name of another
865variable a bad idea is that the question often stems from a lack of
866understanding of Perl data structures, particularly hashes. By using
867symbolic references, you are just using the package's symbol-table hash
868(like C<%main::>) instead of a user-defined hash. The solution is to
869use your own hash or a real reference instead.
870
871 $fred = 23;
872 $varname = "fred";
873 $USER_VARS{$varname}++; # not $$varname++
874
875There we're using the %USER_VARS hash instead of symbolic references.
876Sometimes this comes up in reading strings from the user with variable
877references and wanting to expand them to the values of your perl
878program's variables. This is also a bad idea because it conflates the
879program-addressable namespace and the user-addressable one. Instead of
880reading a string and expanding it to the actual contents of your program's
881own variables:
882
883 $str = 'this has a $fred and $barney in it';
884 $str =~ s/(\$\w+)/$1/eeg; # need double eval
885
886Instead, it would be better to keep a hash around like %USER_VARS and have
887variable references actually refer to entries in that hash:
888
889 $str =~ s/\$(\w+)/$USER_VARS{$1}/g; # no /e here at all
890
891That's faster, cleaner, and safer than the previous approach. Of course,
892you don't need to use a dollar sign. You could use your own scheme to
893make it less confusing, like bracketed percent symbols, etc.
894
895 $str = 'this has a %fred% and %barney% in it';
896 $str =~ s/%(\w+)%/$USER_VARS{$1}/g; # no /e here at all
897
898Another reason that folks sometimes think they want a variable to contain
899the name of a variable is because they don't know how to build proper
900data structures using hashes. For example, let's say they wanted two
901hashes in their program: %fred and %barney, and to use another scalar
902variable to refer to those by name.
903
904 $name = "fred";
905 $$name{WIFE} = "wilma"; # set %fred
906
907 $name = "barney";
908 $$name{WIFE} = "betty"; # set %barney
909
910This is still a symbolic reference, and is still saddled with the
911problems enumerated above. It would be far better to write:
912
913 $folks{"fred"}{WIFE} = "wilma";
914 $folks{"barney"}{WIFE} = "betty";
915
916And just use a multilevel hash to start with.
917
918The only times that you absolutely I<must> use symbolic references are
919when you really must refer to the symbol table. This may be because it's
920something that can't take a real reference to, such as a format name.
921Doing so may also be important for method calls, since these always go
922through the symbol table for resolution.
923
924In those cases, you would turn off C<strict 'refs'> temporarily so you
925can play around with the symbol table. For example:
926
927 @colors = qw(red blue green yellow orange purple violet);
928 for my $name (@colors) {
929 no strict 'refs'; # renege for the block
930 *$name = sub { "<FONT COLOR='$name'>@_</FONT>" };
931 }
932
933All those functions (red(), blue(), green(), etc.) appear to be separate,
934but the real code in the closure actually was compiled only once.
935
936So, sometimes you might want to use symbolic references to directly
937manipulate the symbol table. This doesn't matter for formats, handles, and
938subroutines, because they are always global -- you can't use my() on them.
939But for scalars, arrays, and hashes -- and usually for subroutines --
940you probably want to use hard references only.
941
68dc0745 942=head1 AUTHOR AND COPYRIGHT
943
65acb1b1 944Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.
5a964f20 945All rights reserved.
946
947When included as part of the Standard Version of Perl, or as part of
948its complete documentation whether printed or otherwise, this work
d92eb7b0 949may be distributed only under the terms of Perl's Artistic License.
5a964f20 950Any distribution of this file or derivatives thereof I<outside>
951of that package require that special arrangements be made with
952copyright holder.
953
954Irrespective of its distribution, all code examples in this file
955are hereby placed into the public domain. You are permitted and
956encouraged to use this code in your own programs for fun
957or for profit as you see fit. A simple comment in the code giving
958credit would be courteous but is not required.