Re: [PATCH] readable assertion names, now the rest
[p5sagit/p5-mst-13.2.git] / lib / SelfLoader.pm
CommitLineData
f8881bd9 1package SelfLoader;
0a8174e1 2use 5.008;
5e1aa25c 3use strict;
b75eac34 4our $VERSION = "1.15";
0a8174e1 5
6# The following bit of eval-magic is necessary to make this work on
7# perls < 5.009005.
8use vars qw/$AttrList/;
9BEGIN {
10 if ($] > 5.009004) {
11 eval <<'NEWERPERL';
12use 5.009005; # due to new regexp features
09bef843 13# allow checking for valid ': attrlist' attachments
5e1aa25c 14# see also AutoSplit
0a8174e1 15$AttrList = qr{
5e1aa25c 16 \s* : \s*
17 (?:
18 # one attribute
19 (?> # no backtrack
20 (?! \d) \w+
21 (?<nested> \( (?: [^()]++ | (?&nested)++ )*+ \) ) ?
22 )
23 (?: \s* : \s* | \s+ (?! :) )
24 )*
25}x;
09bef843 26
0a8174e1 27NEWERPERL
28 }
29 else {
30 eval <<'OLDERPERL';
31# allow checking for valid ': attrlist' attachments
32# (we use 'our' rather than 'my' here, due to the rather complex and buggy
33# behaviour of lexicals with qr// and (??{$lex}) )
34our $nested;
35$nested = qr{ \( (?: (?> [^()]+ ) | (??{ $nested }) )* \) }x;
36our $one_attr = qr{ (?> (?! \d) \w+ (?:$nested)? ) (?:\s*\:\s*|\s+(?!\:)) }x;
37$AttrList = qr{ \s* : \s* (?: $one_attr )* }x;
38OLDERPERL
39 }
40}
41use Exporter;
42our @ISA = qw(Exporter);
43our @EXPORT = qw(AUTOLOAD);
44sub Version {$VERSION}
45sub DEBUG () { 0 }
46
47my %Cache; # private cache for all SelfLoader's client packages
48
cca8f13b 49# in croak and carp, protect $@ from "require Carp;" RT #40216
50
51sub croak { { local $@; require Carp; } goto &Carp::croak }
52sub carp { { local $@; require Carp; } goto &Carp::carp }
e3d0cac0 53
f8881bd9 54AUTOLOAD {
5e1aa25c 55 our $AUTOLOAD;
56 print STDERR "SelfLoader::AUTOLOAD for $AUTOLOAD\n" if DEBUG;
c7675058 57 my $SL_code = $Cache{$AUTOLOAD};
bfdd1499 58 my $save = $@; # evals in both AUTOLOAD and _load_stubs can corrupt $@
c7675058 59 unless ($SL_code) {
f8881bd9 60 # Maybe this pack had stubs before __DATA__, and never initialized.
61 # Or, this maybe an automatic DESTROY method call when none exists.
62 $AUTOLOAD =~ m/^(.*)::/;
63 SelfLoader->_load_stubs($1) unless exists $Cache{"${1}::<DATA"};
c7675058 64 $SL_code = $Cache{$AUTOLOAD};
65 $SL_code = "sub $AUTOLOAD { }"
66 if (!$SL_code and $AUTOLOAD =~ m/::DESTROY$/);
67 croak "Undefined subroutine $AUTOLOAD" unless $SL_code;
f8881bd9 68 }
5e1aa25c 69 print STDERR "SelfLoader::AUTOLOAD eval: $SL_code\n" if DEBUG;
bfdd1499 70
5ef97ff3 71 {
72 no strict;
73 eval $SL_code;
74 }
f8881bd9 75 if ($@) {
76 $@ =~ s/ at .*\n//;
77 croak $@;
78 }
bfdd1499 79 $@ = $save;
f8881bd9 80 defined(&$AUTOLOAD) || die "SelfLoader inconsistency error";
81 delete $Cache{$AUTOLOAD};
82 goto &$AUTOLOAD
83}
84
85sub load_stubs { shift->_load_stubs((caller)[0]) }
86
87sub _load_stubs {
33235a50 88 # $endlines is used by Devel::SelfStubber to capture lines after __END__
89 my($self, $callpack, $endlines) = @_;
5e1aa25c 90 no strict "refs";
f8881bd9 91 my $fh = \*{"${callpack}::DATA"};
5e1aa25c 92 use strict;
f8881bd9 93 my $currpack = $callpack;
94 my($line,$name,@lines, @stubs, $protoype);
95
5e1aa25c 96 print STDERR "SelfLoader::load_stubs($callpack)\n" if DEBUG;
f8881bd9 97 croak("$callpack doesn't contain an __DATA__ token")
2ef89038 98 unless defined fileno($fh);
add1a1a3 99 # Protect: fork() shares the file pointer between the parent and the kid
054149a8 100 if(sysseek($fh, tell($fh), 0)) {
101 open my $nfh, '<&', $fh or croak "reopen: $!";# dup() the fd
102 close $fh or die "close: $1"; # autocloses, but be paranoid
103 open $fh, '<&', $nfh or croak "reopen2: $!"; # dup() the fd "back"
104 close $nfh or die "close after reopen: $1"; # autocloses, but be paranoid
105 }
f8881bd9 106 $Cache{"${currpack}::<DATA"} = 1; # indicate package is cached
107
52128c7b 108 local($/) = "\n";
40da2db3 109 while(defined($line = <$fh>) and $line !~ m/^__END__/) {
0a8174e1 110 if ($line =~ m/^\s*sub\s+([\w:]+)\s*((?:\([\\\$\@\%\&\*\;]*\))?(?:$AttrList)?)/) {
f8881bd9 111 push(@stubs, $self->_add_to_cache($name, $currpack, \@lines, $protoype));
112 $protoype = $2;
113 @lines = ($line);
114 if (index($1,'::') == -1) { # simple sub name
115 $name = "${currpack}::$1";
116 } else { # sub name with package
117 $name = $1;
118 $name =~ m/^(.*)::/;
119 if (defined(&{"${1}::AUTOLOAD"})) {
120 \&{"${1}::AUTOLOAD"} == \&SelfLoader::AUTOLOAD ||
121 die 'SelfLoader Error: attempt to specify Selfloading',
122 " sub $name in non-selfloading module $1";
123 } else {
124 $self->export($1,'AUTOLOAD');
125 }
126 }
127 } elsif ($line =~ m/^package\s+([\w:]+)/) { # A package declared
128 push(@stubs, $self->_add_to_cache($name, $currpack, \@lines, $protoype));
129 $self->_package_defined($line);
130 $name = '';
131 @lines = ();
132 $currpack = $1;
133 $Cache{"${currpack}::<DATA"} = 1; # indicate package is cached
134 if (defined(&{"${1}::AUTOLOAD"})) {
135 \&{"${1}::AUTOLOAD"} == \&SelfLoader::AUTOLOAD ||
136 die 'SelfLoader Error: attempt to specify Selfloading',
137 " package $currpack which already has AUTOLOAD";
138 } else {
139 $self->export($currpack,'AUTOLOAD');
140 }
141 } else {
142 push(@lines,$line);
143 }
144 }
33235a50 145 if (defined($line) && $line =~ /^__END__/) { # __END__
146 unless ($line =~ /^__END__\s*DATA/) {
147 if ($endlines) {
148 # Devel::SelfStubber would like us to capture the lines after
149 # __END__ so it can write out the entire file
150 @$endlines = <$fh>;
151 }
152 close($fh);
153 }
154 }
f8881bd9 155 push(@stubs, $self->_add_to_cache($name, $currpack, \@lines, $protoype));
5ef97ff3 156 no strict;
f8881bd9 157 eval join('', @stubs) if @stubs;
158}
159
160
161sub _add_to_cache {
162 my($self,$fullname,$pack,$lines, $protoype) = @_;
163 return () unless $fullname;
8878f897 164 carp("Redefining sub $fullname")
e3d0cac0 165 if exists $Cache{$fullname};
f8881bd9 166 $Cache{$fullname} = join('', "package $pack; ",@$lines);
5e1aa25c 167 print STDERR "SelfLoader cached $fullname: $Cache{$fullname}" if DEBUG;
f8881bd9 168 # return stub to be eval'd
169 defined($protoype) ? "sub $fullname $protoype;" : "sub $fullname;"
170}
171
172sub _package_defined {}
173
1741;
175__END__
cb1a09d0 176
f8881bd9 177=head1 NAME
178
179SelfLoader - load functions only on demand
180
181=head1 SYNOPSIS
182
183 package FOOBAR;
184 use SelfLoader;
3cb6de81 185
f8881bd9 186 ... (initializing code)
3cb6de81 187
f8881bd9 188 __DATA__
189 sub {....
190
191
192=head1 DESCRIPTION
193
194This module tells its users that functions in the FOOBAR package are to be
463e8aa9 195autoloaded from after the C<__DATA__> token. See also
196L<perlsub/"Autoloading">.
f8881bd9 197
198=head2 The __DATA__ token
199
463e8aa9 200The C<__DATA__> token tells the perl compiler that the perl code
201for compilation is finished. Everything after the C<__DATA__> token
f8881bd9 202is available for reading via the filehandle FOOBAR::DATA,
463e8aa9 203where FOOBAR is the name of the current package when the C<__DATA__>
204token is reached. This works just the same as C<__END__> does in
205package 'main', but for other modules data after C<__END__> is not
f610777f 206automatically retrievable, whereas data after C<__DATA__> is.
463e8aa9 207The C<__DATA__> token is not recognized in versions of perl prior to
f8881bd9 2085.001m.
209
463e8aa9 210Note that it is possible to have C<__DATA__> tokens in the same package
211in multiple files, and that the last C<__DATA__> token in a given
f8881bd9 212package that is encountered by the compiler is the one accessible
463e8aa9 213by the filehandle. This also applies to C<__END__> and main, i.e. if
214the 'main' program has an C<__END__>, but a module 'require'd (_not_ 'use'd)
215by that program has a 'package main;' declaration followed by an 'C<__DATA__>',
216then the C<DATA> filehandle is set to access the data after the C<__DATA__>
217in the module, _not_ the data after the C<__END__> token in the 'main'
f8881bd9 218program, since the compiler encounters the 'require'd file later.
219
220=head2 SelfLoader autoloading
221
463e8aa9 222The B<SelfLoader> works by the user placing the C<__DATA__>
223token I<after> perl code which needs to be compiled and
224run at 'require' time, but I<before> subroutine declarations
f8881bd9 225that can be loaded in later - usually because they may never
226be called.
227
463e8aa9 228The B<SelfLoader> will read from the FOOBAR::DATA filehandle to
229load in the data after C<__DATA__>, and load in any subroutine
f8881bd9 230when it is called. The costs are the one-time parsing of the
463e8aa9 231data after C<__DATA__>, and a load delay for the _first_
f8881bd9 232call of any autoloaded function. The benefits (hopefully)
233are a speeded up compilation phase, with no need to load
234functions which are never used.
235
463e8aa9 236The B<SelfLoader> will stop reading from C<__DATA__> if
237it encounters the C<__END__> token - just as you would expect.
238If the C<__END__> token is present, and is followed by the
239token DATA, then the B<SelfLoader> leaves the FOOBAR::DATA
f8881bd9 240filehandle open on the line after that token.
241
463e8aa9 242The B<SelfLoader> exports the C<AUTOLOAD> subroutine to the
243package using the B<SelfLoader>, and this loads the called
f8881bd9 244subroutine when it is first called.
245
246There is no advantage to putting subroutines which will _always_
463e8aa9 247be called after the C<__DATA__> token.
f8881bd9 248
249=head2 Autoloading and package lexicals
250
251A 'my $pack_lexical' statement makes the variable $pack_lexical
463e8aa9 252local _only_ to the file up to the C<__DATA__> token. Subroutines
f8881bd9 253declared elsewhere _cannot_ see these types of variables,
254just as if you declared subroutines in the package but in another
255file, they cannot see these variables.
256
257So specifically, autoloaded functions cannot see package
463e8aa9 258lexicals (this applies to both the B<SelfLoader> and the Autoloader).
259The C<vars> pragma provides an alternative to defining package-level
260globals that will be visible to autoloaded routines. See the documentation
261on B<vars> in the pragma section of L<perlmod>.
f8881bd9 262
263=head2 SelfLoader and AutoLoader
264
463e8aa9 265The B<SelfLoader> can replace the AutoLoader - just change 'use AutoLoader'
266to 'use SelfLoader' (though note that the B<SelfLoader> exports
f8881bd9 267the AUTOLOAD function - but if you have your own AUTOLOAD and
268are using the AutoLoader too, you probably know what you're doing),
463e8aa9 269and the C<__END__> token to C<__DATA__>. You will need perl version 5.001m
f8881bd9 270or later to use this (version 5.001 with all patches up to patch m).
271
463e8aa9 272There is no need to inherit from the B<SelfLoader>.
f8881bd9 273
463e8aa9 274The B<SelfLoader> works similarly to the AutoLoader, but picks up the
275subs from after the C<__DATA__> instead of in the 'lib/auto' directory.
f610777f 276There is a maintenance gain in not needing to run AutoSplit on the module
f8881bd9 277at installation, and a runtime gain in not needing to keep opening and
278closing files to load subs. There is a runtime loss in needing
463e8aa9 279to parse the code after the C<__DATA__>. Details of the B<AutoLoader> and
280another view of these distinctions can be found in that module's
281documentation.
f8881bd9 282
283=head2 __DATA__, __END__, and the FOOBAR::DATA filehandle.
284
285This section is only relevant if you want to use
463e8aa9 286the C<FOOBAR::DATA> together with the B<SelfLoader>.
287
288Data after the C<__DATA__> token in a module is read using the
289FOOBAR::DATA filehandle. C<__END__> can still be used to denote the end
290of the C<__DATA__> section if followed by the token DATA - this is supported
291by the B<SelfLoader>. The C<FOOBAR::DATA> filehandle is left open if an
292C<__END__> followed by a DATA is found, with the filehandle positioned at
293the start of the line after the C<__END__> token. If no C<__END__> token is
294present, or an C<__END__> token with no DATA token on the same line, then
295the filehandle is closed.
296
297The B<SelfLoader> reads from wherever the current
298position of the C<FOOBAR::DATA> filehandle is, until the
299EOF or C<__END__>. This means that if you want to use
f8881bd9 300that filehandle (and ONLY if you want to), you should either
301
3021. Put all your subroutine declarations immediately after
463e8aa9 303the C<__DATA__> token and put your own data after those
304declarations, using the C<__END__> token to mark the end
305of subroutine declarations. You must also ensure that the B<SelfLoader>
1fef88e7 306reads first by calling 'SelfLoader-E<gt>load_stubs();', or by using a
f8881bd9 307function which is selfloaded;
308
309or
310
463e8aa9 3112. You should read the C<FOOBAR::DATA> filehandle first, leaving
f8881bd9 312the handle open and positioned at the first line of subroutine
313declarations.
314
315You could conceivably do both.
316
317=head2 Classes and inherited methods.
318
319For modules which are not classes, this section is not relevant.
320This section is only relevant if you have methods which could
321be inherited.
322
323A subroutine stub (or forward declaration) looks like
324
325 sub stub;
326
327i.e. it is a subroutine declaration without the body of the
328subroutine. For modules which are not classes, there is no real
329need for stubs as far as autoloading is concerned.
330
331For modules which ARE classes, and need to handle inherited methods,
332stubs are needed to ensure that the method inheritance mechanism works
333properly. You can load the stubs into the module at 'require' time, by
1fef88e7 334adding the statement 'SelfLoader-E<gt>load_stubs();' to the module to do
f8881bd9 335this.
336
463e8aa9 337The alternative is to put the stubs in before the C<__DATA__> token BEFORE
338releasing the module, and for this purpose the C<Devel::SelfStubber>
f8881bd9 339module is available. However this does require the extra step of ensuring
340that the stubs are in the module. If this is done I strongly recommend
341that this is done BEFORE releasing the module - it should NOT be done
342at install time in general.
343
344=head1 Multiple packages and fully qualified subroutine names
345
346Subroutines in multiple packages within the same file are supported - but you
463e8aa9 347should note that this requires exporting the C<SelfLoader::AUTOLOAD> to
f8881bd9 348every package which requires it. This is done automatically by the
463e8aa9 349B<SelfLoader> when it first loads the subs into the cache, but you should
350really specify it in the initialization before the C<__DATA__> by putting
f8881bd9 351a 'use SelfLoader' statement in each package.
352
353Fully qualified subroutine names are also supported. For example,
354
355 __DATA__
356 sub foo::bar {23}
357 package baz;
358 sub dob {32}
359
463e8aa9 360will all be loaded correctly by the B<SelfLoader>, and the B<SelfLoader>
f8881bd9 361will ensure that the packages 'foo' and 'baz' correctly have the
463e8aa9 362B<SelfLoader> C<AUTOLOAD> method when the data after C<__DATA__> is first
363parsed.
f8881bd9 364
0a8174e1 365=head1 AUTHOR
366
367C<SelfLoader> is maintained by the perl5-porters. Please direct
368any questions to the canonical mailing list. Anything that
369is applicable to the CPAN release can be sent to its maintainer,
370though.
371
372Author and Maintainer: The Perl5-Porters <perl5-porters@perl.org>
373
374Maintainer of the CPAN release: Steffen Mueller <smueller@cpan.org>
375
376=head1 COPYRIGHT AND LICENSE
377
378This package has been part of the perl core since the first release
379of perl5. It has been released separately to CPAN so older installations
380can benefit from bug fixes.
381
382This package has the same copyright and license as the perl core:
383
384 Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
385 2000, 2001, 2002, 2003, 2004, 2005, 2006 by Larry Wall and others
386
387 All rights reserved.
388
389 This program is free software; you can redistribute it and/or modify
390 it under the terms of either:
391
392 a) the GNU General Public License as published by the Free
393 Software Foundation; either version 1, or (at your option) any
394 later version, or
395
396 b) the "Artistic License" which comes with this Kit.
397
398 This program is distributed in the hope that it will be useful,
399 but WITHOUT ANY WARRANTY; without even the implied warranty of
400 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either
401 the GNU General Public License or the Artistic License for more details.
402
403 You should have received a copy of the Artistic License with this
404 Kit, in the file named "Artistic". If not, I'll be glad to provide one.
405
406 You should also have received a copy of the GNU General Public License
407 along with this program in the file named "Copying". If not, write to the
408 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
409 02111-1307, USA or visit their web page on the internet at
410 http://www.gnu.org/copyleft/gpl.html.
411
412 For those of you that choose to use the GNU General Public License,
413 my interpretation of the GNU General Public License is that no Perl
414 script falls under the terms of the GPL unless you explicitly put
415 said script under the terms of the GPL yourself. Furthermore, any
416 object code linked with perl does not automatically fall under the
417 terms of the GPL, provided such object code only adds definitions
418 of subroutines and variables, and does not otherwise impair the
419 resulting interpreter from executing any standard Perl script. I
420 consider linking in C subroutines in this manner to be the moral
421 equivalent of defining subroutines in the Perl language itself. You
422 may sell such an object file as proprietary provided that you provide
423 or offer to provide the Perl source, as specified by the GNU General
424 Public License. (This is merely an alternate way of specifying input
425 to the program.) You may also sell a binary produced by the dumping of
426 a running Perl script that belongs to you, provided that you provide or
427 offer to provide the Perl source as specified by the GPL. (The
428 fact that a Perl interpreter and your code are in the same binary file
429 is, in this case, a form of mere aggregation.) This is my interpretation
430 of the GPL. If you still have concerns or difficulties understanding
431 my intent, feel free to contact me. Of course, the Artistic License
432 spells all this out for your protection, so you may prefer to use that.
433
f8881bd9 434=cut