This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
more perldiag grammar/punctuation tweaks
[perl5.git] / pod / perlmod.pod
CommitLineData
a0d0e21e
LW
1=head1 NAME
2
f102b883 3perlmod - Perl modules (packages and symbol tables)
a0d0e21e
LW
4
5=head1 DESCRIPTION
6
7=head2 Packages
d74e8afc 8X<package> X<namespace> X<variable, global> X<global variable> X<global>
a0d0e21e 9
19799a22
GS
10Perl provides a mechanism for alternative namespaces to protect
11packages from stomping on each other's variables. In fact, there's
bc8df162 12really no such thing as a global variable in Perl. The package
19799a22
GS
13statement declares the compilation unit as being in the given
14namespace. The scope of the package declaration is from the
15declaration itself through the end of the enclosing block, C<eval>,
16or file, whichever comes first (the same scope as the my() and
17local() operators). Unqualified dynamic identifiers will be in
18this namespace, except for those few identifiers that if unqualified,
19default to the main package instead of the current one as described
20below. A package statement affects only dynamic variables--including
21those you've used local() on--but I<not> lexical variables created
22with my(). Typically it would be the first declaration in a file
23included by the C<do>, C<require>, or C<use> operators. You can
24switch into a package in more than one place; it merely influences
25which symbol table is used by the compiler for the rest of that
26block. You can refer to variables and filehandles in other packages
27by prefixing the identifier with the package name and a double
28colon: C<$Package::Variable>. If the package name is null, the
29C<main> package is assumed. That is, C<$::sail> is equivalent to
30C<$main::sail>.
a0d0e21e 31
d3ebb66b
GS
32The old package delimiter was a single quote, but double colon is now the
33preferred delimiter, in part because it's more readable to humans, and
34in part because it's more readable to B<emacs> macros. It also makes C++
35programmers feel like they know what's going on--as opposed to using the
36single quote as separator, which was there to make Ada programmers feel
14c715f4 37like they knew what was going on. Because the old-fashioned syntax is still
d3ebb66b
GS
38supported for backwards compatibility, if you try to use a string like
39C<"This is $owner's house">, you'll be accessing C<$owner::s>; that is,
40the $s variable in package C<owner>, which is probably not what you meant.
41Use braces to disambiguate, as in C<"This is ${owner}'s house">.
d74e8afc 42X<::> X<'>
a0d0e21e 43
19799a22
GS
44Packages may themselves contain package separators, as in
45C<$OUTER::INNER::var>. This implies nothing about the order of
46name lookups, however. There are no relative packages: all symbols
a0d0e21e
LW
47are either local to the current package, or must be fully qualified
48from the outer package name down. For instance, there is nowhere
19799a22 49within package C<OUTER> that C<$INNER::var> refers to
14c715f4 50C<$OUTER::INNER::var>. C<INNER> refers to a totally
19799a22
GS
51separate global package.
52
53Only identifiers starting with letters (or underscore) are stored
54in a package's symbol table. All other symbols are kept in package
55C<main>, including all punctuation variables, like $_. In addition,
56when unqualified, the identifiers STDIN, STDOUT, STDERR, ARGV,
57ARGVOUT, ENV, INC, and SIG are forced to be in package C<main>,
14c715f4 58even when used for other purposes than their built-in ones. If you
19799a22
GS
59have a package called C<m>, C<s>, or C<y>, then you can't use the
60qualified form of an identifier because it would be instead interpreted
61as a pattern match, a substitution, or a transliteration.
d74e8afc 62X<variable, punctuation>
19799a22
GS
63
64Variables beginning with underscore used to be forced into package
a0d0e21e 65main, but we decided it was more useful for package writers to be able
cb1a09d0 66to use leading underscore to indicate private variables and method names.
b58b0d99
AT
67However, variables and functions named with a single C<_>, such as
68$_ and C<sub _>, are still forced into the package C<main>. See also
cea6626f 69L<perlvar/"Technical Note on the Syntax of Variable Names">.
a0d0e21e 70
19799a22 71C<eval>ed strings are compiled in the package in which the eval() was
a0d0e21e 72compiled. (Assignments to C<$SIG{}>, however, assume the signal
748a9306 73handler specified is in the C<main> package. Qualify the signal handler
a0d0e21e
LW
74name if you wish to have a signal handler in a package.) For an
75example, examine F<perldb.pl> in the Perl library. It initially switches
76to the C<DB> package so that the debugger doesn't interfere with variables
19799a22 77in the program you are trying to debug. At various points, however, it
a0d0e21e
LW
78temporarily switches back to the C<main> package to evaluate various
79expressions in the context of the C<main> package (or wherever you came
80from). See L<perldebug>.
81
f102b883 82The special symbol C<__PACKAGE__> contains the current package, but cannot
14c715f4 83(easily) be used to construct variable names.
f102b883 84
5f05dabc 85See L<perlsub> for other scoping issues related to my() and local(),
f102b883 86and L<perlref> regarding closures.
cb1a09d0 87
a0d0e21e 88=head2 Symbol Tables
d74e8afc 89X<symbol table> X<stash> X<%::> X<%main::> X<typeglob> X<glob> X<alias>
a0d0e21e 90
aa689395 91The symbol table for a package happens to be stored in the hash of that
92name with two colons appended. The main symbol table's name is thus
5803be0d 93C<%main::>, or C<%::> for short. Likewise the symbol table for the nested
aa689395 94package mentioned earlier is named C<%OUTER::INNER::>.
95
96The value in each entry of the hash is what you are referring to when you
8c44bff1 97use the C<*name> typeglob notation.
a0d0e21e 98
f102b883 99 local *main::foo = *main::bar;
bc8df162 100
a0d0e21e 101You can use this to print out all the variables in a package, for
4375e838 102instance. The standard but antiquated F<dumpvar.pl> library and
19799a22 103the CPAN module Devel::Symdump make use of this.
a0d0e21e 104
cb1a09d0 105Assignment to a typeglob performs an aliasing operation, i.e.,
a0d0e21e
LW
106
107 *dick = *richard;
108
5a964f20
TC
109causes variables, subroutines, formats, and file and directory handles
110accessible via the identifier C<richard> also to be accessible via the
111identifier C<dick>. If you want to alias only a particular variable or
19799a22 112subroutine, assign a reference instead:
a0d0e21e
LW
113
114 *dick = \$richard;
115
5a964f20 116Which makes $richard and $dick the same variable, but leaves
a0d0e21e
LW
117@richard and @dick as separate arrays. Tricky, eh?
118
5e76a0e2
MC
119There is one subtle difference between the following statements:
120
121 *foo = *bar;
122 *foo = \$bar;
123
124C<*foo = *bar> makes the typeglobs themselves synonymous while
125C<*foo = \$bar> makes the SCALAR portions of two distinct typeglobs
126refer to the same scalar value. This means that the following code:
127
128 $bar = 1;
129 *foo = \$bar; # Make $foo an alias for $bar
130
131 {
132 local $bar = 2; # Restrict changes to block
133 print $foo; # Prints '1'!
134 }
135
136Would print '1', because C<$foo> holds a reference to the I<original>
ac036724 137C<$bar>. The one that was stuffed away by C<local()> and which will be
5e76a0e2
MC
138restored when the block ends. Because variables are accessed through the
139typeglob, you can use C<*foo = *bar> to create an alias which can be
140localized. (But be aware that this means you can't have a separate
141C<@foo> and C<@bar>, etc.)
142
143What makes all of this important is that the Exporter module uses glob
144aliasing as the import/export mechanism. Whether or not you can properly
145localize a variable that has been exported from a module depends on how
146it was exported:
147
148 @EXPORT = qw($FOO); # Usual form, can't be localized
149 @EXPORT = qw(*FOO); # Can be localized
150
14c715f4 151You can work around the first case by using the fully qualified name
5e76a0e2
MC
152(C<$Package::FOO>) where you need a local value, or by overriding it
153by saying C<*FOO = *Package::FOO> in your script.
154
155The C<*x = \$y> mechanism may be used to pass and return cheap references
5803be0d 156into or from subroutines if you don't want to copy the whole
5a964f20
TC
157thing. It only works when assigning to dynamic variables, not
158lexicals.
cb1a09d0 159
5a964f20 160 %some_hash = (); # can't be my()
cb1a09d0
AD
161 *some_hash = fn( \%another_hash );
162 sub fn {
163 local *hashsym = shift;
164 # now use %hashsym normally, and you
165 # will affect the caller's %another_hash
166 my %nhash = (); # do what you want
5f05dabc 167 return \%nhash;
cb1a09d0
AD
168 }
169
5f05dabc 170On return, the reference will overwrite the hash slot in the
cb1a09d0 171symbol table specified by the *some_hash typeglob. This
c36e9b62 172is a somewhat tricky way of passing around references cheaply
5803be0d 173when you don't want to have to remember to dereference variables
cb1a09d0
AD
174explicitly.
175
19799a22 176Another use of symbol tables is for making "constant" scalars.
d74e8afc 177X<constant> X<scalar, constant>
cb1a09d0
AD
178
179 *PI = \3.14159265358979;
180
bc8df162 181Now you cannot alter C<$PI>, which is probably a good thing all in all.
5a964f20 182This isn't the same as a constant subroutine, which is subject to
5803be0d 183optimization at compile-time. A constant subroutine is one prototyped
14c715f4 184to take no arguments and to return a constant expression. See
5803be0d 185L<perlsub> for details on these. The C<use constant> pragma is a
5a964f20 186convenient shorthand for these.
cb1a09d0 187
55497cff 188You can say C<*foo{PACKAGE}> and C<*foo{NAME}> to find out what name and
189package the *foo symbol table entry comes from. This may be useful
5a964f20 190in a subroutine that gets passed typeglobs as arguments:
55497cff 191
192 sub identify_typeglob {
193 my $glob = shift;
194 print 'You gave me ', *{$glob}{PACKAGE}, '::', *{$glob}{NAME}, "\n";
195 }
196 identify_typeglob *foo;
197 identify_typeglob *bar::baz;
198
199This prints
200
201 You gave me main::foo
202 You gave me bar::baz
203
19799a22 204The C<*foo{THING}> notation can also be used to obtain references to the
5803be0d 205individual elements of *foo. See L<perlref>.
55497cff 206
9263d47b
GS
207Subroutine definitions (and declarations, for that matter) need
208not necessarily be situated in the package whose symbol table they
209occupy. You can define a subroutine outside its package by
210explicitly qualifying the name of the subroutine:
211
212 package main;
213 sub Some_package::foo { ... } # &foo defined in Some_package
214
215This is just a shorthand for a typeglob assignment at compile time:
216
217 BEGIN { *Some_package::foo = sub { ... } }
218
219and is I<not> the same as writing:
220
221 {
222 package Some_package;
223 sub foo { ... }
224 }
225
226In the first two versions, the body of the subroutine is
227lexically in the main package, I<not> in Some_package. So
228something like this:
229
230 package main;
231
232 $Some_package::name = "fred";
233 $main::name = "barney";
234
235 sub Some_package::foo {
236 print "in ", __PACKAGE__, ": \$name is '$name'\n";
237 }
238
239 Some_package::foo();
240
241prints:
242
243 in main: $name is 'barney'
244
245rather than:
246
247 in Some_package: $name is 'fred'
248
249This also has implications for the use of the SUPER:: qualifier
250(see L<perlobj>).
251
3c10abe3
AG
252=head2 BEGIN, UNITCHECK, CHECK, INIT and END
253X<BEGIN> X<UNITCHECK> X<CHECK> X<INIT> X<END>
ac90fb77 254
3c10abe3
AG
255Five specially named code blocks are executed at the beginning and at
256the end of a running Perl program. These are the C<BEGIN>,
257C<UNITCHECK>, C<CHECK>, C<INIT>, and C<END> blocks.
ac90fb77
EM
258
259These code blocks can be prefixed with C<sub> to give the appearance of a
260subroutine (although this is not considered good style). One should note
261that these code blocks don't really exist as named subroutines (despite
262their appearance). The thing that gives this away is the fact that you can
263have B<more than one> of these code blocks in a program, and they will get
264B<all> executed at the appropriate moment. So you can't execute any of
265these code blocks by name.
266
267A C<BEGIN> code block is executed as soon as possible, that is, the moment
268it is completely defined, even before the rest of the containing file (or
269string) is parsed. You may have multiple C<BEGIN> blocks within a file (or
ac036724 270eval'ed string); they will execute in order of definition. Because a C<BEGIN>
ac90fb77
EM
271code block executes immediately, it can pull in definitions of subroutines
272and such from other files in time to be visible to the rest of the compile
273and run time. Once a C<BEGIN> has run, it is immediately undefined and any
274code it used is returned to Perl's memory pool.
275
ac90fb77 276An C<END> code block is executed as late as possible, that is, after
4f25aa18
GS
277perl has finished running the program and just before the interpreter
278is being exited, even if it is exiting as a result of a die() function.
3bf5301d 279(But not if it's morphing into another program via C<exec>, or
4f25aa18
GS
280being blown out of the water by a signal--you have to trap that yourself
281(if you can).) You may have multiple C<END> blocks within a file--they
282will execute in reverse order of definition; that is: last in, first
283out (LIFO). C<END> blocks are not executed when you run perl with the
db517d64 284C<-c> switch, or if compilation fails.
a0d0e21e 285
ac90fb77
EM
286Note that C<END> code blocks are B<not> executed at the end of a string
287C<eval()>: if any C<END> code blocks are created in a string C<eval()>,
288they will be executed just as any other C<END> code block of that package
289in LIFO order just before the interpreter is being exited.
290
291Inside an C<END> code block, C<$?> contains the value that the program is
c36e9b62 292going to pass to C<exit()>. You can modify C<$?> to change the exit
19799a22 293value of the program. Beware of changing C<$?> by accident (e.g. by
c36e9b62 294running something via C<system>).
d74e8afc 295X<$?>
c36e9b62 296
191f4b8c
CO
297Inside of a C<END> block, the value of C<${^GLOBAL_PHASE}> will be
298C<"END">.
299
3c10abe3
AG
300C<UNITCHECK>, C<CHECK> and C<INIT> code blocks are useful to catch the
301transition between the compilation phase and the execution phase of
302the main program.
303
304C<UNITCHECK> blocks are run just after the unit which defined them has
305been compiled. The main program file and each module it loads are
306compilation units, as are string C<eval>s, code compiled using the
307C<(?{ })> construct in a regex, calls to C<do FILE>, C<require FILE>,
308and code after the C<-e> switch on the command line.
ca62f0fc 309
191f4b8c
CO
310C<BEGIN> and C<UNITCHECK> blocks are not directly related to the phase of
311the interpreter. They can be created and executed during any phase.
312
ac90fb77
EM
313C<CHECK> code blocks are run just after the B<initial> Perl compile phase ends
314and before the run time begins, in LIFO order. C<CHECK> code blocks are used
315in the Perl compiler suite to save the compiled state of the program.
ca62f0fc 316
191f4b8c
CO
317Inside of a C<CHECK> block, the value of C<${^GLOBAL_PHASE}> will be
318C<"CHECK">.
319
ca62f0fc 320C<INIT> blocks are run just before the Perl runtime begins execution, in
59f521f4 321"first in, first out" (FIFO) order.
4f25aa18 322
191f4b8c
CO
323Inside of an C<INIT> block, the value of C<${^GLOBAL_PHASE}> will be C<"INIT">.
324
9e923162
CO
325The C<CHECK> and C<INIT> blocks in code compiled by C<require>, string C<do>,
326or string C<eval> will not be executed if they occur after the end of the
327main compilation phase; that can be a problem in mod_perl and other persistent
328environments which use those functions to load code at runtime.
98107fc7 329
19799a22 330When you use the B<-n> and B<-p> switches to Perl, C<BEGIN> and
4375e838
GS
331C<END> work just as they do in B<awk>, as a degenerate case.
332Both C<BEGIN> and C<CHECK> blocks are run when you use the B<-c>
333switch for a compile-only syntax check, although your main code
334is not.
a0d0e21e 335
055634da
TP
336The B<begincheck> program makes it all clear, eventually:
337
338 #!/usr/bin/perl
339
340 # begincheck
341
3c10abe3 342 print "10. Ordinary code runs at runtime.\n";
055634da 343
3c10abe3
AG
344 END { print "16. So this is the end of the tale.\n" }
345 INIT { print " 7. INIT blocks run FIFO just before runtime.\n" }
346 UNITCHECK {
347 print " 4. And therefore before any CHECK blocks.\n"
348 }
349 CHECK { print " 6. So this is the sixth line.\n" }
055634da 350
3c10abe3 351 print "11. It runs in order, of course.\n";
055634da
TP
352
353 BEGIN { print " 1. BEGIN blocks run FIFO during compilation.\n" }
3c10abe3
AG
354 END { print "15. Read perlmod for the rest of the story.\n" }
355 CHECK { print " 5. CHECK blocks run LIFO after all compilation.\n" }
356 INIT { print " 8. Run this again, using Perl's -c switch.\n" }
055634da 357
3c10abe3 358 print "12. This is anti-obfuscated code.\n";
055634da 359
3c10abe3 360 END { print "14. END blocks run LIFO at quitting time.\n" }
055634da 361 BEGIN { print " 2. So this line comes out second.\n" }
3c10abe3
AG
362 UNITCHECK {
363 print " 3. UNITCHECK blocks run LIFO after each file is compiled.\n"
364 }
365 INIT { print " 9. You'll see the difference right away.\n" }
055634da 366
3c10abe3 367 print "13. It merely _looks_ like it should be confusing.\n";
055634da
TP
368
369 __END__
370
a0d0e21e 371=head2 Perl Classes
d74e8afc 372X<class> X<@ISA>
a0d0e21e 373
19799a22 374There is no special class syntax in Perl, but a package may act
5a964f20
TC
375as a class if it provides subroutines to act as methods. Such a
376package may also derive some of its methods from another class (package)
14c715f4 377by listing the other package name(s) in its global @ISA array (which
5a964f20 378must be a package global, not a lexical).
4633a7c4 379
f102b883 380For more on this, see L<perltoot> and L<perlobj>.
a0d0e21e
LW
381
382=head2 Perl Modules
d74e8afc 383X<module>
a0d0e21e 384
5803be0d 385A module is just a set of related functions in a library file, i.e.,
14c715f4 386a Perl package with the same name as the file. It is specifically
5803be0d
GS
387designed to be reusable by other modules or programs. It may do this
388by providing a mechanism for exporting some of its symbols into the
14c715f4 389symbol table of any package using it, or it may function as a class
19799a22
GS
390definition and make its semantics available implicitly through
391method calls on the class and its objects, without explicitly
4375e838 392exporting anything. Or it can do a little of both.
a0d0e21e 393
19799a22
GS
394For example, to start a traditional, non-OO module called Some::Module,
395create a file called F<Some/Module.pm> and start with this template:
9607fc9c 396
397 package Some::Module; # assumes Some/Module.pm
398
399 use strict;
9f1b1f2d 400 use warnings;
9607fc9c 401
402 BEGIN {
403 use Exporter ();
77ca0c92 404 our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
9607fc9c 405
406 # set the version for version checking
407 $VERSION = 1.00;
408 # if using RCS/CVS, this may be preferred
328fc025 409 $VERSION = sprintf "%d.%03d", q$Revision: 1.1 $ =~ /(\d+)/g;
9607fc9c 410
411 @ISA = qw(Exporter);
412 @EXPORT = qw(&func1 &func2 &func4);
413 %EXPORT_TAGS = ( ); # eg: TAG => [ qw!name1 name2! ],
414
415 # your exported package globals go here,
416 # as well as any optionally exported functions
417 @EXPORT_OK = qw($Var1 %Hashit &func3);
418 }
77ca0c92 419 our @EXPORT_OK;
9607fc9c 420
3da4c8f2
DB
421 # exported package globals go here
422 our $Var1;
423 our %Hashit;
424
9607fc9c 425 # non-exported package globals go here
77ca0c92
LW
426 our @more;
427 our $stuff;
9607fc9c 428
c2611fb3 429 # initialize package globals, first exported ones
9607fc9c 430 $Var1 = '';
431 %Hashit = ();
432
433 # then the others (which are still accessible as $Some::Module::stuff)
434 $stuff = '';
435 @more = ();
436
437 # all file-scoped lexicals must be created before
438 # the functions below that use them.
439
440 # file-private lexicals go here
441 my $priv_var = '';
442 my %secret_hash = ();
443
444 # here's a file-private function as a closure,
445 # callable as &$priv_func; it cannot be prototyped.
446 my $priv_func = sub {
447 # stuff goes here.
448 };
449
450 # make all your functions, whether exported or not;
451 # remember to put something interesting in the {} stubs
452 sub func1 {} # no prototype
453 sub func2() {} # proto'd void
454 sub func3($$) {} # proto'd to 2 scalars
455
456 # this one isn't exported, but could be called!
457 sub func4(\%) {} # proto'd to 1 hash ref
458
459 END { } # module clean-up code here (global destructor)
4633a7c4 460
19799a22
GS
461 ## YOUR CODE GOES HERE
462
463 1; # don't forget to return a true value from the file
464
465Then go on to declare and use your variables in functions without
466any qualifications. See L<Exporter> and the L<perlmodlib> for
467details on mechanics and style issues in module creation.
4633a7c4
LW
468
469Perl modules are included into your program by saying
a0d0e21e
LW
470
471 use Module;
472
473or
474
475 use Module LIST;
476
477This is exactly equivalent to
478
5a964f20 479 BEGIN { require Module; import Module; }
a0d0e21e
LW
480
481or
482
5a964f20 483 BEGIN { require Module; import Module LIST; }
a0d0e21e 484
cb1a09d0
AD
485As a special case
486
487 use Module ();
488
489is exactly equivalent to
490
5a964f20 491 BEGIN { require Module; }
cb1a09d0 492
19799a22
GS
493All Perl module files have the extension F<.pm>. The C<use> operator
494assumes this so you don't have to spell out "F<Module.pm>" in quotes.
495This also helps to differentiate new modules from old F<.pl> and
496F<.ph> files. Module names are also capitalized unless they're
497functioning as pragmas; pragmas are in effect compiler directives,
498and are sometimes called "pragmatic modules" (or even "pragmata"
499if you're a classicist).
a0d0e21e 500
5a964f20
TC
501The two statements:
502
503 require SomeModule;
14c715f4 504 require "SomeModule.pm";
5a964f20
TC
505
506differ from each other in two ways. In the first case, any double
507colons in the module name, such as C<Some::Module>, are translated
508into your system's directory separator, usually "/". The second
19799a22
GS
509case does not, and would have to be specified literally. The other
510difference is that seeing the first C<require> clues in the compiler
511that uses of indirect object notation involving "SomeModule", as
512in C<$ob = purge SomeModule>, are method calls, not function calls.
513(Yes, this really can make a difference.)
514
515Because the C<use> statement implies a C<BEGIN> block, the importing
516of semantics happens as soon as the C<use> statement is compiled,
a0d0e21e
LW
517before the rest of the file is compiled. This is how it is able
518to function as a pragma mechanism, and also how modules are able to
19799a22 519declare subroutines that are then visible as list or unary operators for
a0d0e21e 520the rest of the current file. This will not work if you use C<require>
19799a22 521instead of C<use>. With C<require> you can get into this problem:
a0d0e21e
LW
522
523 require Cwd; # make Cwd:: accessible
54310121 524 $here = Cwd::getcwd();
a0d0e21e 525
5f05dabc 526 use Cwd; # import names from Cwd::
a0d0e21e
LW
527 $here = getcwd();
528
529 require Cwd; # make Cwd:: accessible
530 $here = getcwd(); # oops! no main::getcwd()
531
5a964f20
TC
532In general, C<use Module ()> is recommended over C<require Module>,
533because it determines module availability at compile time, not in the
534middle of your program's execution. An exception would be if two modules
535each tried to C<use> each other, and each also called a function from
14c715f4 536that other module. In that case, it's easy to use C<require> instead.
cb1a09d0 537
a0d0e21e
LW
538Perl packages may be nested inside other package names, so we can have
539package names containing C<::>. But if we used that package name
5803be0d 540directly as a filename it would make for unwieldy or impossible
a0d0e21e
LW
541filenames on some systems. Therefore, if a module's name is, say,
542C<Text::Soundex>, then its definition is actually found in the library
543file F<Text/Soundex.pm>.
544
19799a22
GS
545Perl modules always have a F<.pm> file, but there may also be
546dynamically linked executables (often ending in F<.so>) or autoloaded
5803be0d 547subroutine definitions (often ending in F<.al>) associated with the
19799a22
GS
548module. If so, these will be entirely transparent to the user of
549the module. It is the responsibility of the F<.pm> file to load
550(or arrange to autoload) any additional functionality. For example,
551although the POSIX module happens to do both dynamic loading and
5803be0d 552autoloading, the user can say just C<use POSIX> to get it all.
a0d0e21e 553
f2fc0a40 554=head2 Making your module threadsafe
d74e8afc
ITB
555X<threadsafe> X<thread safe>
556X<module, threadsafe> X<module, thread safe>
557X<CLONE> X<CLONE_SKIP> X<thread> X<threads> X<ithread>
f2fc0a40 558
14c715f4
CP
559Since 5.6.0, Perl has had support for a new type of threads called
560interpreter threads (ithreads). These threads can be used explicitly
561and implicitly.
f2fc0a40
AB
562
563Ithreads work by cloning the data tree so that no data is shared
14c715f4 564between different threads. These threads can be used by using the C<threads>
4ebc451b
JH
565module or by doing fork() on win32 (fake fork() support). When a
566thread is cloned all Perl data is cloned, however non-Perl data cannot
14c715f4 567be cloned automatically. Perl after 5.7.2 has support for the C<CLONE>
4d5ff0dd 568special subroutine. In C<CLONE> you can do whatever
9660f481 569you need to do,
4ebc451b 570like for example handle the cloning of non-Perl data, if necessary.
38e4e52d
NC
571C<CLONE> will be called once as a class method for every package that has it
572defined (or inherits it). It will be called in the context of the new thread,
573so all modifications are made in the new area. Currently CLONE is called with
c69ca1d4 574no parameters other than the invocand package name, but code should not assume
38e4e52d
NC
575that this will remain unchanged, as it is likely that in future extra parameters
576will be passed in to give more information about the state of cloning.
f2fc0a40
AB
577
578If you want to CLONE all objects you will need to keep track of them per
579package. This is simply done using a hash and Scalar::Util::weaken().
580
4d5ff0dd 581Perl after 5.8.7 has support for the C<CLONE_SKIP> special subroutine.
9660f481
DM
582Like C<CLONE>, C<CLONE_SKIP> is called once per package; however, it is
583called just before cloning starts, and in the context of the parent
584thread. If it returns a true value, then no objects of that class will
585be cloned; or rather, they will be copied as unblessed, undef values.
33de8e4a
DM
586For example: if in the parent there are two references to a single blessed
587hash, then in the child there will be two references to a single undefined
588scalar value instead.
9660f481 589This provides a simple mechanism for making a module threadsafe; just add
bca52ca1 590C<sub CLONE_SKIP { 1 }> at the top of the class, and C<DESTROY()> will
9660f481
DM
591now only be called once per object. Of course, if the child thread needs
592to make use of the objects, then a more sophisticated approach is
593needed.
594
595Like C<CLONE>, C<CLONE_SKIP> is currently called with no parameters other
c69ca1d4 596than the invocand package name, although that may change. Similarly, to
9660f481
DM
597allow for future expansion, the return value should be a single C<0> or
598C<1> value.
599
f102b883 600=head1 SEE ALSO
cb1a09d0 601
f102b883 602See L<perlmodlib> for general style issues related to building Perl
19799a22
GS
603modules and classes, as well as descriptions of the standard library
604and CPAN, L<Exporter> for how Perl's standard import/export mechanism
890a53b9 605works, L<perltoot> and L<perltooc> for an in-depth tutorial on
19799a22
GS
606creating classes, L<perlobj> for a hard-core reference document on
607objects, L<perlsub> for an explanation of functions and scoping,
608and L<perlxstut> and L<perlguts> for more information on writing
609extension modules.