Re: perldelta, take 3
[p5sagit/p5-mst-13.2.git] / pod / perlsub.pod
CommitLineData
a0d0e21e 1=head1 NAME
2
3perlsub - Perl subroutines
4
5=head1 SYNOPSIS
6
7To declare subroutines:
8
cb1a09d0 9 sub NAME; # A "forward" declaration.
10 sub NAME(PROTO); # ditto, but with prototypes
11
12 sub NAME BLOCK # A declaration and a definition.
13 sub NAME(PROTO) BLOCK # ditto, but with prototypes
a0d0e21e 14
748a9306 15To define an anonymous subroutine at runtime:
16
17 $subref = sub BLOCK;
18
a0d0e21e 19To import subroutines:
20
21 use PACKAGE qw(NAME1 NAME2 NAME3);
22
23To call subroutines:
24
5f05dabc 25 NAME(LIST); # & is optional with parentheses.
26 NAME LIST; # Parentheses optional if pre-declared/imported.
cb1a09d0 27 &NAME; # Passes current @_ to subroutine.
a0d0e21e 28
29=head1 DESCRIPTION
30
cb1a09d0 31Like many languages, Perl provides for user-defined subroutines. These
32may be located anywhere in the main program, loaded in from other files
33via the C<do>, C<require>, or C<use> keywords, or even generated on the
34fly using C<eval> or anonymous subroutines (closures). You can even call
c07a80fd 35a function indirectly using a variable containing its name or a CODE reference
36to it, as in C<$var = \&function>.
cb1a09d0 37
38The Perl model for function call and return values is simple: all
39functions are passed as parameters one single flat list of scalars, and
40all functions likewise return to their caller one single flat list of
41scalars. Any arrays or hashes in these call and return lists will
42collapse, losing their identities--but you may always use
43pass-by-reference instead to avoid this. Both call and return lists may
44contain as many or as few scalar elements as you'd like. (Often a
45function without an explicit return statement is called a subroutine, but
46there's really no difference from the language's perspective.)
47
48Any arguments passed to the routine come in as the array @_. Thus if you
49called a function with two arguments, those would be stored in C<$_[0]>
50and C<$_[1]>. The array @_ is a local array, but its values are implicit
51references (predating L<perlref>) to the actual scalar parameters. The
52return value of the subroutine is the value of the last expression
53evaluated. Alternatively, a return statement may be used to specify the
54returned value and exit the subroutine. If you return one or more arrays
55and/or hashes, these will be flattened together into one large
56indistinguishable list.
57
58Perl does not have named formal parameters, but in practice all you do is
59assign to a my() list of these. Any variables you use in the function
60that aren't declared private are global variables. For the gory details
1fef88e7 61on creating private variables, see
6d28dffb 62L<"Private Variables via my()"> and L<"Temporary Values via local()">.
63To create protected environments for a set of functions in a separate
64package (and probably a separate file), see L<perlmod/"Packages">.
a0d0e21e 65
66Example:
67
cb1a09d0 68 sub max {
69 my $max = shift(@_);
a0d0e21e 70 foreach $foo (@_) {
71 $max = $foo if $max < $foo;
72 }
cb1a09d0 73 return $max;
a0d0e21e 74 }
cb1a09d0 75 $bestday = max($mon,$tue,$wed,$thu,$fri);
a0d0e21e 76
77Example:
78
79 # get a line, combining continuation lines
80 # that start with whitespace
81
82 sub get_line {
cb1a09d0 83 $thisline = $lookahead; # GLOBAL VARIABLES!!
a0d0e21e 84 LINE: while ($lookahead = <STDIN>) {
85 if ($lookahead =~ /^[ \t]/) {
86 $thisline .= $lookahead;
87 }
88 else {
89 last LINE;
90 }
91 }
92 $thisline;
93 }
94
95 $lookahead = <STDIN>; # get first line
96 while ($_ = get_line()) {
97 ...
98 }
99
100Use array assignment to a local list to name your formal arguments:
101
102 sub maybeset {
103 my($key, $value) = @_;
cb1a09d0 104 $Foo{$key} = $value unless $Foo{$key};
a0d0e21e 105 }
106
cb1a09d0 107This also has the effect of turning call-by-reference into call-by-value,
5f05dabc 108because the assignment copies the values. Otherwise a function is free to
1fef88e7 109do in-place modifications of @_ and change its caller's values.
cb1a09d0 110
111 upcase_in($v1, $v2); # this changes $v1 and $v2
112 sub upcase_in {
113 for (@_) { tr/a-z/A-Z/ }
114 }
115
116You aren't allowed to modify constants in this way, of course. If an
117argument were actually literal and you tried to change it, you'd take a
118(presumably fatal) exception. For example, this won't work:
119
120 upcase_in("frederick");
121
122It would be much safer if the upcase_in() function
123were written to return a copy of its parameters instead
124of changing them in place:
125
126 ($v3, $v4) = upcase($v1, $v2); # this doesn't
127 sub upcase {
128 my @parms = @_;
129 for (@parms) { tr/a-z/A-Z/ }
c07a80fd 130 # wantarray checks if we were called in list context
131 return wantarray ? @parms : $parms[0];
cb1a09d0 132 }
133
134Notice how this (unprototyped) function doesn't care whether it was passed
135real scalars or arrays. Perl will see everything as one big long flat @_
136parameter list. This is one of the ways where Perl's simple
137argument-passing style shines. The upcase() function would work perfectly
138well without changing the upcase() definition even if we fed it things
139like this:
140
141 @newlist = upcase(@list1, @list2);
142 @newlist = upcase( split /:/, $var );
143
144Do not, however, be tempted to do this:
145
146 (@a, @b) = upcase(@list1, @list2);
147
148Because like its flat incoming parameter list, the return list is also
149flat. So all you have managed to do here is stored everything in @a and
150made @b an empty list. See L</"Pass by Reference"> for alternatives.
151
5f05dabc 152A subroutine may be called using the "&" prefix. The "&" is optional
153in modern Perls, and so are the parentheses if the subroutine has been
154pre-declared. (Note, however, that the "&" is I<NOT> optional when
155you're just naming the subroutine, such as when it's used as an
156argument to defined() or undef(). Nor is it optional when you want to
157do an indirect subroutine call with a subroutine name or reference
158using the C<&$subref()> or C<&{$subref}()> constructs. See L<perlref>
159for more on that.)
a0d0e21e 160
161Subroutines may be called recursively. If a subroutine is called using
cb1a09d0 162the "&" form, the argument list is optional, and if omitted, no @_ array is
163set up for the subroutine: the @_ array at the time of the call is
164visible to subroutine instead. This is an efficiency mechanism that
165new users may wish to avoid.
a0d0e21e 166
167 &foo(1,2,3); # pass three arguments
168 foo(1,2,3); # the same
169
170 foo(); # pass a null list
171 &foo(); # the same
a0d0e21e 172
cb1a09d0 173 &foo; # foo() get current args, like foo(@_) !!
174 foo; # like foo() IFF sub foo pre-declared, else "foo"
175
c07a80fd 176Not only does the "&" form make the argument list optional, but it also
177disables any prototype checking on the arguments you do provide. This
178is partly for historical reasons, and partly for having a convenient way
179to cheat if you know what you're doing. See the section on Prototypes below.
180
cb1a09d0 181=head2 Private Variables via my()
182
183Synopsis:
184
185 my $foo; # declare $foo lexically local
186 my (@wid, %get); # declare list of variables local
187 my $foo = "flurp"; # declare $foo lexical, and init it
188 my @oof = @bar; # declare @oof lexical, and init it
189
190A "my" declares the listed variables to be confined (lexically) to the
55497cff 191enclosing block, conditional (C<if/unless/elsif/else>), loop
192(C<for/foreach/while/until/continue>), subroutine, C<eval>, or
193C<do/require/use>'d file. If more than one value is listed, the list
5f05dabc 194must be placed in parentheses. All listed elements must be legal lvalues.
55497cff 195Only alphanumeric identifiers may be lexically scoped--magical
196builtins like $/ must currently be localized with "local" instead.
cb1a09d0 197
198Unlike dynamic variables created by the "local" statement, lexical
199variables declared with "my" are totally hidden from the outside world,
200including any called subroutines (even if it's the same subroutine called
201from itself or elsewhere--every call gets its own copy).
202
203(An eval(), however, can see the lexical variables of the scope it is
204being evaluated in so long as the names aren't hidden by declarations within
205the eval() itself. See L<perlref>.)
206
207The parameter list to my() may be assigned to if desired, which allows you
208to initialize your variables. (If no initializer is given for a
209particular variable, it is created with the undefined value.) Commonly
210this is used to name the parameters to a subroutine. Examples:
211
212 $arg = "fred"; # "global" variable
213 $n = cube_root(27);
214 print "$arg thinks the root is $n\n";
215 fred thinks the root is 3
216
217 sub cube_root {
218 my $arg = shift; # name doesn't matter
219 $arg **= 1/3;
220 return $arg;
221 }
222
223The "my" is simply a modifier on something you might assign to. So when
224you do assign to the variables in its argument list, the "my" doesn't
225change whether those variables is viewed as a scalar or an array. So
226
227 my ($foo) = <STDIN>;
228 my @FOO = <STDIN>;
229
5f05dabc 230both supply a list context to the right-hand side, while
cb1a09d0 231
232 my $foo = <STDIN>;
233
5f05dabc 234supplies a scalar context. But the following declares only one variable:
748a9306 235
cb1a09d0 236 my $foo, $bar = 1;
748a9306 237
cb1a09d0 238That has the same effect as
748a9306 239
cb1a09d0 240 my $foo;
241 $bar = 1;
a0d0e21e 242
cb1a09d0 243The declared variable is not introduced (is not visible) until after
244the current statement. Thus,
245
246 my $x = $x;
247
248can be used to initialize the new $x with the value of the old $x, and
249the expression
250
251 my $x = 123 and $x == 123
252
253is false unless the old $x happened to have the value 123.
254
55497cff 255Lexical scopes of control structures are not bounded precisely by the
256braces that delimit their controlled blocks; control expressions are
257part of the scope, too. Thus in the loop
258
259 while (my $line = <>) {
260 $line = lc $line;
261 } continue {
262 print $line;
263 }
264
265the scope of $line extends from its declaration throughout the rest of
266the loop construct (including the C<continue> clause), but not beyond
267it. Similarly, in the conditional
268
269 if ((my $answer = <STDIN>) =~ /^yes$/i) {
270 user_agrees();
271 } elsif ($answer =~ /^no$/i) {
272 user_disagrees();
273 } else {
274 chomp $answer;
275 die "'$answer' is neither 'yes' nor 'no'";
276 }
277
278the scope of $answer extends from its declaration throughout the rest
279of the conditional (including C<elsif> and C<else> clauses, if any),
280but not beyond it.
281
282(None of the foregoing applies to C<if/unless> or C<while/until>
283modifiers appended to simple statements. Such modifiers are not
284control structures and have no effect on scoping.)
285
5f05dabc 286The C<foreach> loop defaults to scoping its index variable dynamically
55497cff 287(in the manner of C<local>; see below). However, if the index
288variable is prefixed with the keyword "my", then it is lexically
289scoped instead. Thus in the loop
290
291 for my $i (1, 2, 3) {
292 some_function();
293 }
294
295the scope of $i extends to the end of the loop, but not beyond it, and
296so the value of $i is unavailable in some_function().
297
cb1a09d0 298Some users may wish to encourage the use of lexically scoped variables.
299As an aid to catching implicit references to package variables,
300if you say
301
302 use strict 'vars';
303
304then any variable reference from there to the end of the enclosing
305block must either refer to a lexical variable, or must be fully
306qualified with the package name. A compilation error results
307otherwise. An inner block may countermand this with S<"no strict 'vars'">.
308
309A my() has both a compile-time and a run-time effect. At compile time,
310the compiler takes notice of it; the principle usefulness of this is to
311quiet C<use strict 'vars'>. The actual initialization doesn't happen
312until run time, so gets executed every time through a loop.
313
314Variables declared with "my" are not part of any package and are therefore
315never fully qualified with the package name. In particular, you're not
316allowed to try to make a package variable (or other global) lexical:
317
318 my $pack::var; # ERROR! Illegal syntax
319 my $_; # also illegal (currently)
320
321In fact, a dynamic variable (also known as package or global variables)
322are still accessible using the fully qualified :: notation even while a
323lexical of the same name is also visible:
324
325 package main;
326 local $x = 10;
327 my $x = 20;
328 print "$x and $::x\n";
329
330That will print out 20 and 10.
331
5f05dabc 332You may declare "my" variables at the outermost scope of a file to
333hide any such identifiers totally from the outside world. This is similar
6d28dffb 334to C's static variables at the file level. To do this with a subroutine
cb1a09d0 335requires the use of a closure (anonymous function). If a block (such as
336an eval(), function, or C<package>) wants to create a private subroutine
337that cannot be called from outside that block, it can declare a lexical
338variable containing an anonymous sub reference:
339
340 my $secret_version = '1.001-beta';
341 my $secret_sub = sub { print $secret_version };
342 &$secret_sub();
343
344As long as the reference is never returned by any function within the
5f05dabc 345module, no outside module can see the subroutine, because its name is not in
cb1a09d0 346any package's symbol table. Remember that it's not I<REALLY> called
347$some_pack::secret_version or anything; it's just $secret_version,
348unqualified and unqualifiable.
349
350This does not work with object methods, however; all object methods have
351to be in the symbol table of some package to be found.
352
353Just because the lexical variable is lexically (also called statically)
354scoped doesn't mean that within a function it works like a C static. It
355normally works more like a C auto. But here's a mechanism for giving a
356function private variables with both lexical scoping and a static
357lifetime. If you do want to create something like C's static variables,
358just enclose the whole function in an extra block, and put the
359static variable outside the function but in the block.
360
361 {
362 my $secret_val = 0;
363 sub gimme_another {
364 return ++$secret_val;
365 }
366 }
367 # $secret_val now becomes unreachable by the outside
368 # world, but retains its value between calls to gimme_another
369
370If this function is being sourced in from a separate file
371via C<require> or C<use>, then this is probably just fine. If it's
372all in the main program, you'll need to arrange for the my()
373to be executed early, either by putting the whole block above
5f05dabc 374your pain program, or more likely, placing merely a BEGIN
cb1a09d0 375sub around it to make sure it gets executed before your program
376starts to run:
377
378 sub BEGIN {
379 my $secret_val = 0;
380 sub gimme_another {
381 return ++$secret_val;
382 }
383 }
384
385See L<perlrun> about the BEGIN function.
386
387=head2 Temporary Values via local()
388
389B<NOTE>: In general, you should be using "my" instead of "local", because
6d28dffb 390it's faster and safer. Exceptions to this include the global punctuation
cb1a09d0 391variables, filehandles and formats, and direct manipulation of the Perl
392symbol table itself. Format variables often use "local" though, as do
393other variables whose current value must be visible to called
394subroutines.
395
396Synopsis:
397
398 local $foo; # declare $foo dynamically local
399 local (@wid, %get); # declare list of variables local
400 local $foo = "flurp"; # declare $foo dynamic, and init it
401 local @oof = @bar; # declare @oof dynamic, and init it
402
403 local *FH; # localize $FH, @FH, %FH, &FH ...
404 local *merlyn = *randal; # now $merlyn is really $randal, plus
405 # @merlyn is really @randal, etc
406 local *merlyn = 'randal'; # SAME THING: promote 'randal' to *randal
407 local *merlyn = \$randal; # just alias $merlyn, not @merlyn etc
408
409A local() modifies its listed variables to be local to the enclosing
5f05dabc 410block, (or subroutine, C<eval{}>, or C<do>) and I<any called from
cb1a09d0 411within that block>. A local() just gives temporary values to global
412(meaning package) variables. This is known as dynamic scoping. Lexical
413scoping is done with "my", which works more like C's auto declarations.
414
415If more than one variable is given to local(), they must be placed in
5f05dabc 416parentheses. All listed elements must be legal lvalues. This operator works
cb1a09d0 417by saving the current values of those variables in its argument list on a
5f05dabc 418hidden stack and restoring them upon exiting the block, subroutine, or
cb1a09d0 419eval. This means that called subroutines can also reference the local
420variable, but not the global one. The argument list may be assigned to if
421desired, which allows you to initialize your local variables. (If no
422initializer is given for a particular variable, it is created with an
423undefined value.) Commonly this is used to name the parameters to a
424subroutine. Examples:
425
426 for $i ( 0 .. 9 ) {
427 $digits{$i} = $i;
428 }
429 # assume this function uses global %digits hash
430 parse_num();
431
432 # now temporarily add to %digits hash
433 if ($base12) {
434 # (NOTE: not claiming this is efficient!)
435 local %digits = (%digits, 't' => 10, 'e' => 11);
436 parse_num(); # parse_num gets this new %digits!
437 }
438 # old %digits restored here
439
1fef88e7 440Because local() is a run-time command, it gets executed every time
cb1a09d0 441through a loop. In releases of Perl previous to 5.0, this used more stack
442storage each time until the loop was exited. Perl now reclaims the space
443each time through, but it's still more efficient to declare your variables
444outside the loop.
445
446A local is simply a modifier on an lvalue expression. When you assign to
447a localized variable, the local doesn't change whether its list is viewed
448as a scalar or an array. So
449
450 local($foo) = <STDIN>;
451 local @FOO = <STDIN>;
452
5f05dabc 453both supply a list context to the right-hand side, while
cb1a09d0 454
455 local $foo = <STDIN>;
456
457supplies a scalar context.
458
459=head2 Passing Symbol Table Entries (typeglobs)
460
461[Note: The mechanism described in this section was originally the only
462way to simulate pass-by-reference in older versions of Perl. While it
463still works fine in modern versions, the new reference mechanism is
464generally easier to work with. See below.]
a0d0e21e 465
466Sometimes you don't want to pass the value of an array to a subroutine
467but rather the name of it, so that the subroutine can modify the global
468copy of it rather than working with a local copy. In perl you can
cb1a09d0 469refer to all objects of a particular name by prefixing the name
5f05dabc 470with a star: C<*foo>. This is often known as a "typeglob", because the
a0d0e21e 471star on the front can be thought of as a wildcard match for all the
472funny prefix characters on variables and subroutines and such.
473
55497cff 474When evaluated, the typeglob produces a scalar value that represents
5f05dabc 475all the objects of that name, including any filehandle, format, or
a0d0e21e 476subroutine. When assigned to, it causes the name mentioned to refer to
477whatever "*" value was assigned to it. Example:
478
479 sub doubleary {
480 local(*someary) = @_;
481 foreach $elem (@someary) {
482 $elem *= 2;
483 }
484 }
485 doubleary(*foo);
486 doubleary(*bar);
487
488Note that scalars are already passed by reference, so you can modify
489scalar arguments without using this mechanism by referring explicitly
1fef88e7 490to C<$_[0]> etc. You can modify all the elements of an array by passing
a0d0e21e 491all the elements as scalars, but you have to use the * mechanism (or
5f05dabc 492the equivalent reference mechanism) to push, pop, or change the size of
a0d0e21e 493an array. It will certainly be faster to pass the typeglob (or reference).
494
495Even if you don't want to modify an array, this mechanism is useful for
5f05dabc 496passing multiple arrays in a single LIST, because normally the LIST
a0d0e21e 497mechanism will merge all the array values so that you can't extract out
55497cff 498the individual arrays. For more on typeglobs, see
499L<perldata/"Typeglobs and FileHandles">.
cb1a09d0 500
501=head2 Pass by Reference
502
55497cff 503If you want to pass more than one array or hash into a function--or
504return them from it--and have them maintain their integrity, then
505you're going to have to use an explicit pass-by-reference. Before you
506do that, you need to understand references as detailed in L<perlref>.
c07a80fd 507This section may not make much sense to you otherwise.
cb1a09d0 508
509Here are a few simple examples. First, let's pass in several
510arrays to a function and have it pop all of then, return a new
511list of all their former last elements:
512
513 @tailings = popmany ( \@a, \@b, \@c, \@d );
514
515 sub popmany {
516 my $aref;
517 my @retlist = ();
518 foreach $aref ( @_ ) {
519 push @retlist, pop @$aref;
520 }
521 return @retlist;
522 }
523
524Here's how you might write a function that returns a
525list of keys occurring in all the hashes passed to it:
526
527 @common = inter( \%foo, \%bar, \%joe );
528 sub inter {
529 my ($k, $href, %seen); # locals
530 foreach $href (@_) {
531 while ( $k = each %$href ) {
532 $seen{$k}++;
533 }
534 }
535 return grep { $seen{$_} == @_ } keys %seen;
536 }
537
5f05dabc 538So far, we're using just the normal list return mechanism.
cb1a09d0 539What happens if you want to pass or return a hash? Well,
5f05dabc 540if you're using only one of them, or you don't mind them
cb1a09d0 541concatenating, then the normal calling convention is ok, although
542a little expensive.
543
544Where people get into trouble is here:
545
546 (@a, @b) = func(@c, @d);
547or
548 (%a, %b) = func(%c, %d);
549
5f05dabc 550That syntax simply won't work. It sets just @a or %a and clears the @b or
cb1a09d0 551%b. Plus the function didn't get passed into two separate arrays or
552hashes: it got one long list in @_, as always.
553
554If you can arrange for everyone to deal with this through references, it's
555cleaner code, although not so nice to look at. Here's a function that
556takes two array references as arguments, returning the two array elements
557in order of how many elements they have in them:
558
559 ($aref, $bref) = func(\@c, \@d);
560 print "@$aref has more than @$bref\n";
561 sub func {
562 my ($cref, $dref) = @_;
563 if (@$cref > @$dref) {
564 return ($cref, $dref);
565 } else {
c07a80fd 566 return ($dref, $cref);
cb1a09d0 567 }
568 }
569
570It turns out that you can actually do this also:
571
572 (*a, *b) = func(\@c, \@d);
573 print "@a has more than @b\n";
574 sub func {
575 local (*c, *d) = @_;
576 if (@c > @d) {
577 return (\@c, \@d);
578 } else {
579 return (\@d, \@c);
580 }
581 }
582
583Here we're using the typeglobs to do symbol table aliasing. It's
584a tad subtle, though, and also won't work if you're using my()
5f05dabc 585variables, because only globals (well, and local()s) are in the symbol table.
586
587If you're passing around filehandles, you could usually just use the bare
588typeglob, like *STDOUT, but typeglobs references would be better because
589they'll still work properly under C<use strict 'refs'>. For example:
590
591 splutter(\*STDOUT);
592 sub splutter {
593 my $fh = shift;
594 print $fh "her um well a hmmm\n";
595 }
596
597 $rec = get_rec(\*STDIN);
598 sub get_rec {
599 my $fh = shift;
600 return scalar <$fh>;
601 }
602
603Another way to do this is using *HANDLE{IO}, see L<perlref> for usage
604and caveats.
605
606If you're planning on generating new filehandles, you could do this:
607
608 sub openit {
609 my $name = shift;
610 local *FH;
611 return open (FH, $path) ? \*FH : undef;
612 }
613
614Although that will actually produce a small memory leak. See the bottom
615of L<perlfunc/open()> for a somewhat cleaner way using the IO::Handle
616package.
cb1a09d0 617
cb1a09d0 618=head2 Prototypes
619
620As of the 5.002 release of perl, if you declare
621
622 sub mypush (\@@)
623
c07a80fd 624then mypush() takes arguments exactly like push() does. The declaration
625of the function to be called must be visible at compile time. The prototype
5f05dabc 626affects only the interpretation of new-style calls to the function, where
c07a80fd 627new-style is defined as not using the C<&> character. In other words,
628if you call it like a builtin function, then it behaves like a builtin
629function. If you call it like an old-fashioned subroutine, then it
630behaves like an old-fashioned subroutine. It naturally falls out from
631this rule that prototypes have no influence on subroutine references
632like C<\&foo> or on indirect subroutine calls like C<&{$subref}>.
633
634Method calls are not influenced by prototypes either, because the
5f05dabc 635function to be called is indeterminate at compile time, because it depends
c07a80fd 636on inheritance.
cb1a09d0 637
5f05dabc 638Because the intent is primarily to let you define subroutines that work
c07a80fd 639like builtin commands, here are the prototypes for some other functions
640that parse almost exactly like the corresponding builtins.
cb1a09d0 641
642 Declared as Called as
643
644 sub mylink ($$) mylink $old, $new
645 sub myvec ($$$) myvec $var, $offset, 1
646 sub myindex ($$;$) myindex &getstring, "substr"
647 sub mysyswrite ($$$;$) mysyswrite $buf, 0, length($buf) - $off, $off
648 sub myreverse (@) myreverse $a,$b,$c
649 sub myjoin ($@) myjoin ":",$a,$b,$c
650 sub mypop (\@) mypop @array
651 sub mysplice (\@$$@) mysplice @array,@array,0,@pushme
652 sub mykeys (\%) mykeys %{$hashref}
653 sub myopen (*;$) myopen HANDLE, $name
654 sub mypipe (**) mypipe READHANDLE, WRITEHANDLE
655 sub mygrep (&@) mygrep { /foo/ } $a,$b,$c
656 sub myrand ($) myrand 42
657 sub mytime () mytime
658
c07a80fd 659Any backslashed prototype character represents an actual argument
6e47f808 660that absolutely must start with that character. The value passed
661to the subroutine (as part of C<@_>) will be a reference to the
662actual argument given in the subroutine call, obtained by applying
663C<\> to that argument.
c07a80fd 664
665Unbackslashed prototype characters have special meanings. Any
666unbackslashed @ or % eats all the rest of the arguments, and forces
667list context. An argument represented by $ forces scalar context. An
668& requires an anonymous subroutine, which, if passed as the first
669argument, does not require the "sub" keyword or a subsequent comma. A
670* does whatever it has to do to turn the argument into a reference to a
671symbol table entry.
672
673A semicolon separates mandatory arguments from optional arguments.
674(It is redundant before @ or %.)
cb1a09d0 675
c07a80fd 676Note how the last three examples above are treated specially by the parser.
cb1a09d0 677mygrep() is parsed as a true list operator, myrand() is parsed as a
678true unary operator with unary precedence the same as rand(), and
5f05dabc 679mytime() is truly without arguments, just like time(). That is, if you
cb1a09d0 680say
681
682 mytime +2;
683
684you'll get mytime() + 2, not mytime(2), which is how it would be parsed
685without the prototype.
686
687The interesting thing about & is that you can generate new syntax with it:
688
6d28dffb 689 sub try (&@) {
cb1a09d0 690 my($try,$catch) = @_;
691 eval { &$try };
692 if ($@) {
693 local $_ = $@;
694 &$catch;
695 }
696 }
55497cff 697 sub catch (&) { $_[0] }
cb1a09d0 698
699 try {
700 die "phooey";
701 } catch {
702 /phooey/ and print "unphooey\n";
703 };
704
705That prints "unphooey". (Yes, there are still unresolved
706issues having to do with the visibility of @_. I'm ignoring that
707question for the moment. (But note that if we make @_ lexically
708scoped, those anonymous subroutines can act like closures... (Gee,
5f05dabc 709is this sounding a little Lispish? (Never mind.))))
cb1a09d0 710
711And here's a reimplementation of grep:
712
713 sub mygrep (&@) {
714 my $code = shift;
715 my @result;
716 foreach $_ (@_) {
6e47f808 717 push(@result, $_) if &$code;
cb1a09d0 718 }
719 @result;
720 }
a0d0e21e 721
cb1a09d0 722Some folks would prefer full alphanumeric prototypes. Alphanumerics have
723been intentionally left out of prototypes for the express purpose of
724someday in the future adding named, formal parameters. The current
725mechanism's main goal is to let module writers provide better diagnostics
726for module users. Larry feels the notation quite understandable to Perl
727programmers, and that it will not intrude greatly upon the meat of the
728module, nor make it harder to read. The line noise is visually
729encapsulated into a small pill that's easy to swallow.
730
731It's probably best to prototype new functions, not retrofit prototyping
732into older ones. That's because you must be especially careful about
733silent impositions of differing list versus scalar contexts. For example,
734if you decide that a function should take just one parameter, like this:
735
736 sub func ($) {
737 my $n = shift;
738 print "you gave me $n\n";
739 }
740
741and someone has been calling it with an array or expression
742returning a list:
743
744 func(@foo);
745 func( split /:/ );
746
747Then you've just supplied an automatic scalar() in front of their
748argument, which can be more than a bit surprising. The old @foo
749which used to hold one thing doesn't get passed in. Instead,
5f05dabc 750the func() now gets passed in 1, that is, the number of elements
cb1a09d0 751in @foo. And the split() gets called in a scalar context and
752starts scribbling on your @_ parameter list.
753
5f05dabc 754This is all very powerful, of course, and should be used only in moderation
cb1a09d0 755to make the world a better place.
756
757=head2 Overriding Builtin Functions
a0d0e21e 758
5f05dabc 759Many builtin functions may be overridden, though this should be tried
760only occasionally and for good reason. Typically this might be
a0d0e21e 761done by a package attempting to emulate missing builtin functionality
762on a non-Unix system.
763
5f05dabc 764Overriding may be done only by importing the name from a
a0d0e21e 765module--ordinary predeclaration isn't good enough. However, the
5f05dabc 766C<subs> pragma (compiler directive) lets you, in effect, pre-declare subs
a0d0e21e 767via the import syntax, and these names may then override the builtin ones:
768
769 use subs 'chdir', 'chroot', 'chmod', 'chown';
770 chdir $somewhere;
771 sub chdir { ... }
772
773Library modules should not in general export builtin names like "open"
5f05dabc 774or "chdir" as part of their default @EXPORT list, because these may
a0d0e21e 775sneak into someone else's namespace and change the semantics unexpectedly.
776Instead, if the module adds the name to the @EXPORT_OK list, then it's
777possible for a user to import the name explicitly, but not implicitly.
778That is, they could say
779
780 use Module 'open';
781
782and it would import the open override, but if they said
783
784 use Module;
785
786they would get the default imports without the overrides.
787
788=head2 Autoloading
789
790If you call a subroutine that is undefined, you would ordinarily get an
791immediate fatal error complaining that the subroutine doesn't exist.
792(Likewise for subroutines being used as methods, when the method
793doesn't exist in any of the base classes of the class package.) If,
794however, there is an C<AUTOLOAD> subroutine defined in the package or
795packages that were searched for the original subroutine, then that
796C<AUTOLOAD> subroutine is called with the arguments that would have been
797passed to the original subroutine. The fully qualified name of the
798original subroutine magically appears in the $AUTOLOAD variable in the
799same package as the C<AUTOLOAD> routine. The name is not passed as an
800ordinary argument because, er, well, just because, that's why...
801
802Most C<AUTOLOAD> routines will load in a definition for the subroutine in
803question using eval, and then execute that subroutine using a special
804form of "goto" that erases the stack frame of the C<AUTOLOAD> routine
805without a trace. (See the standard C<AutoLoader> module, for example.)
806But an C<AUTOLOAD> routine can also just emulate the routine and never
cb1a09d0 807define it. For example, let's pretend that a function that wasn't defined
808should just call system() with those arguments. All you'd do is this:
809
810 sub AUTOLOAD {
811 my $program = $AUTOLOAD;
812 $program =~ s/.*:://;
813 system($program, @_);
814 }
815 date();
6d28dffb 816 who('am', 'i');
cb1a09d0 817 ls('-l');
818
5f05dabc 819In fact, if you pre-declare the functions you want to call that way, you don't
cb1a09d0 820even need the parentheses:
821
822 use subs qw(date who ls);
823 date;
824 who "am", "i";
825 ls -l;
826
827A more complete example of this is the standard Shell module, which
a0d0e21e 828can treat undefined subroutine calls as calls to Unix programs.
829
cb1a09d0 830Mechanisms are available for modules writers to help split the modules
6d28dffb 831up into autoloadable files. See the standard AutoLoader module
832described in L<AutoLoader> and in L<AutoSplit>, the standard
833SelfLoader modules in L<SelfLoader>, and the document on adding C
834functions to perl code in L<perlxs>.
cb1a09d0 835
836=head1 SEE ALSO
a0d0e21e 837
cb1a09d0 838See L<perlref> for more on references. See L<perlxs> if you'd
839like to learn about calling C subroutines from perl. See
840L<perlmod> to learn about bundling up your functions in
841separate files.