This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Symbian port: add Series 90 support
[perl5.git] / lib / SelfLoader.pm
CommitLineData
f8881bd9 1package SelfLoader;
f8881bd9
AD
2require Exporter;
3@ISA = qw(Exporter);
4@EXPORT = qw(AUTOLOAD);
2ef89038 5$VERSION = "1.10";
52128c7b 6sub Version {$VERSION}
f8881bd9
AD
7$DEBUG = 0;
8
9my %Cache; # private cache for all SelfLoader's client packages
10
09bef843 11# allow checking for valid ': attrlist' attachments
2611e30b
JH
12# (we use 'our' rather than 'my' here, due to the rather complex and buggy
13# behaviour of lexicals with qr// and (??{$lex}) )
14our $nested;
14455d6c 15$nested = qr{ \( (?: (?> [^()]+ ) | (??{ $nested }) )* \) }x;
2611e30b
JH
16our $one_attr = qr{ (?> (?! \d) \w+ (?:$nested)? ) (?:\s*\:\s*|\s+(?!\:)) }x;
17our $attr_list = qr{ \s* : \s* (?: $one_attr )* }x;
09bef843 18
cca8f13b
AF
19# in croak and carp, protect $@ from "require Carp;" RT #40216
20
21sub croak { { local $@; require Carp; } goto &Carp::croak }
22sub carp { { local $@; require Carp; } goto &Carp::carp }
e3d0cac0 23
f8881bd9
AD
24AUTOLOAD {
25 print STDERR "SelfLoader::AUTOLOAD for $AUTOLOAD\n" if $DEBUG;
c7675058 26 my $SL_code = $Cache{$AUTOLOAD};
bfdd1499 27 my $save = $@; # evals in both AUTOLOAD and _load_stubs can corrupt $@
c7675058 28 unless ($SL_code) {
f8881bd9
AD
29 # Maybe this pack had stubs before __DATA__, and never initialized.
30 # Or, this maybe an automatic DESTROY method call when none exists.
31 $AUTOLOAD =~ m/^(.*)::/;
32 SelfLoader->_load_stubs($1) unless exists $Cache{"${1}::<DATA"};
c7675058
JG
33 $SL_code = $Cache{$AUTOLOAD};
34 $SL_code = "sub $AUTOLOAD { }"
35 if (!$SL_code and $AUTOLOAD =~ m/::DESTROY$/);
36 croak "Undefined subroutine $AUTOLOAD" unless $SL_code;
f8881bd9 37 }
c7675058 38 print STDERR "SelfLoader::AUTOLOAD eval: $SL_code\n" if $DEBUG;
bfdd1499 39
c7675058 40 eval $SL_code;
f8881bd9
AD
41 if ($@) {
42 $@ =~ s/ at .*\n//;
43 croak $@;
44 }
bfdd1499 45 $@ = $save;
f8881bd9
AD
46 defined(&$AUTOLOAD) || die "SelfLoader inconsistency error";
47 delete $Cache{$AUTOLOAD};
48 goto &$AUTOLOAD
49}
50
51sub load_stubs { shift->_load_stubs((caller)[0]) }
52
53sub _load_stubs {
33235a50
NC
54 # $endlines is used by Devel::SelfStubber to capture lines after __END__
55 my($self, $callpack, $endlines) = @_;
f8881bd9
AD
56 my $fh = \*{"${callpack}::DATA"};
57 my $currpack = $callpack;
58 my($line,$name,@lines, @stubs, $protoype);
59
60 print STDERR "SelfLoader::load_stubs($callpack)\n" if $DEBUG;
61 croak("$callpack doesn't contain an __DATA__ token")
2ef89038 62 unless defined fileno($fh);
add1a1a3 63 # Protect: fork() shares the file pointer between the parent and the kid
054149a8
SP
64 if(sysseek($fh, tell($fh), 0)) {
65 open my $nfh, '<&', $fh or croak "reopen: $!";# dup() the fd
66 close $fh or die "close: $1"; # autocloses, but be paranoid
67 open $fh, '<&', $nfh or croak "reopen2: $!"; # dup() the fd "back"
68 close $nfh or die "close after reopen: $1"; # autocloses, but be paranoid
69 }
f8881bd9
AD
70 $Cache{"${currpack}::<DATA"} = 1; # indicate package is cached
71
52128c7b 72 local($/) = "\n";
40da2db3 73 while(defined($line = <$fh>) and $line !~ m/^__END__/) {
09bef843 74 if ($line =~ m/^sub\s+([\w:]+)\s*((?:\([\\\$\@\%\&\*\;]*\))?(?:$attr_list)?)/) {
f8881bd9
AD
75 push(@stubs, $self->_add_to_cache($name, $currpack, \@lines, $protoype));
76 $protoype = $2;
77 @lines = ($line);
78 if (index($1,'::') == -1) { # simple sub name
79 $name = "${currpack}::$1";
80 } else { # sub name with package
81 $name = $1;
82 $name =~ m/^(.*)::/;
83 if (defined(&{"${1}::AUTOLOAD"})) {
84 \&{"${1}::AUTOLOAD"} == \&SelfLoader::AUTOLOAD ||
85 die 'SelfLoader Error: attempt to specify Selfloading',
86 " sub $name in non-selfloading module $1";
87 } else {
88 $self->export($1,'AUTOLOAD');
89 }
90 }
91 } elsif ($line =~ m/^package\s+([\w:]+)/) { # A package declared
92 push(@stubs, $self->_add_to_cache($name, $currpack, \@lines, $protoype));
93 $self->_package_defined($line);
94 $name = '';
95 @lines = ();
96 $currpack = $1;
97 $Cache{"${currpack}::<DATA"} = 1; # indicate package is cached
98 if (defined(&{"${1}::AUTOLOAD"})) {
99 \&{"${1}::AUTOLOAD"} == \&SelfLoader::AUTOLOAD ||
100 die 'SelfLoader Error: attempt to specify Selfloading',
101 " package $currpack which already has AUTOLOAD";
102 } else {
103 $self->export($currpack,'AUTOLOAD');
104 }
105 } else {
106 push(@lines,$line);
107 }
108 }
33235a50
NC
109 if (defined($line) && $line =~ /^__END__/) { # __END__
110 unless ($line =~ /^__END__\s*DATA/) {
111 if ($endlines) {
112 # Devel::SelfStubber would like us to capture the lines after
113 # __END__ so it can write out the entire file
114 @$endlines = <$fh>;
115 }
116 close($fh);
117 }
118 }
f8881bd9
AD
119 push(@stubs, $self->_add_to_cache($name, $currpack, \@lines, $protoype));
120 eval join('', @stubs) if @stubs;
121}
122
123
124sub _add_to_cache {
125 my($self,$fullname,$pack,$lines, $protoype) = @_;
126 return () unless $fullname;
8878f897 127 carp("Redefining sub $fullname")
e3d0cac0 128 if exists $Cache{$fullname};
f8881bd9
AD
129 $Cache{$fullname} = join('', "package $pack; ",@$lines);
130 print STDERR "SelfLoader cached $fullname: $Cache{$fullname}" if $DEBUG;
131 # return stub to be eval'd
132 defined($protoype) ? "sub $fullname $protoype;" : "sub $fullname;"
133}
134
135sub _package_defined {}
136
1371;
138__END__
cb1a09d0 139
f8881bd9
AD
140=head1 NAME
141
142SelfLoader - load functions only on demand
143
144=head1 SYNOPSIS
145
146 package FOOBAR;
147 use SelfLoader;
3cb6de81 148
f8881bd9 149 ... (initializing code)
3cb6de81 150
f8881bd9
AD
151 __DATA__
152 sub {....
153
154
155=head1 DESCRIPTION
156
157This module tells its users that functions in the FOOBAR package are to be
463e8aa9 158autoloaded from after the C<__DATA__> token. See also
159L<perlsub/"Autoloading">.
f8881bd9
AD
160
161=head2 The __DATA__ token
162
463e8aa9 163The C<__DATA__> token tells the perl compiler that the perl code
164for compilation is finished. Everything after the C<__DATA__> token
f8881bd9 165is available for reading via the filehandle FOOBAR::DATA,
463e8aa9 166where FOOBAR is the name of the current package when the C<__DATA__>
167token is reached. This works just the same as C<__END__> does in
168package 'main', but for other modules data after C<__END__> is not
f610777f 169automatically retrievable, whereas data after C<__DATA__> is.
463e8aa9 170The C<__DATA__> token is not recognized in versions of perl prior to
f8881bd9
AD
1715.001m.
172
463e8aa9 173Note that it is possible to have C<__DATA__> tokens in the same package
174in multiple files, and that the last C<__DATA__> token in a given
f8881bd9 175package that is encountered by the compiler is the one accessible
463e8aa9 176by the filehandle. This also applies to C<__END__> and main, i.e. if
177the 'main' program has an C<__END__>, but a module 'require'd (_not_ 'use'd)
178by that program has a 'package main;' declaration followed by an 'C<__DATA__>',
179then the C<DATA> filehandle is set to access the data after the C<__DATA__>
180in the module, _not_ the data after the C<__END__> token in the 'main'
f8881bd9
AD
181program, since the compiler encounters the 'require'd file later.
182
183=head2 SelfLoader autoloading
184
463e8aa9 185The B<SelfLoader> works by the user placing the C<__DATA__>
186token I<after> perl code which needs to be compiled and
187run at 'require' time, but I<before> subroutine declarations
f8881bd9
AD
188that can be loaded in later - usually because they may never
189be called.
190
463e8aa9 191The B<SelfLoader> will read from the FOOBAR::DATA filehandle to
192load in the data after C<__DATA__>, and load in any subroutine
f8881bd9 193when it is called. The costs are the one-time parsing of the
463e8aa9 194data after C<__DATA__>, and a load delay for the _first_
f8881bd9
AD
195call of any autoloaded function. The benefits (hopefully)
196are a speeded up compilation phase, with no need to load
197functions which are never used.
198
463e8aa9 199The B<SelfLoader> will stop reading from C<__DATA__> if
200it encounters the C<__END__> token - just as you would expect.
201If the C<__END__> token is present, and is followed by the
202token DATA, then the B<SelfLoader> leaves the FOOBAR::DATA
f8881bd9
AD
203filehandle open on the line after that token.
204
463e8aa9 205The B<SelfLoader> exports the C<AUTOLOAD> subroutine to the
206package using the B<SelfLoader>, and this loads the called
f8881bd9
AD
207subroutine when it is first called.
208
209There is no advantage to putting subroutines which will _always_
463e8aa9 210be called after the C<__DATA__> token.
f8881bd9
AD
211
212=head2 Autoloading and package lexicals
213
214A 'my $pack_lexical' statement makes the variable $pack_lexical
463e8aa9 215local _only_ to the file up to the C<__DATA__> token. Subroutines
f8881bd9
AD
216declared elsewhere _cannot_ see these types of variables,
217just as if you declared subroutines in the package but in another
218file, they cannot see these variables.
219
220So specifically, autoloaded functions cannot see package
463e8aa9 221lexicals (this applies to both the B<SelfLoader> and the Autoloader).
222The C<vars> pragma provides an alternative to defining package-level
223globals that will be visible to autoloaded routines. See the documentation
224on B<vars> in the pragma section of L<perlmod>.
f8881bd9
AD
225
226=head2 SelfLoader and AutoLoader
227
463e8aa9 228The B<SelfLoader> can replace the AutoLoader - just change 'use AutoLoader'
229to 'use SelfLoader' (though note that the B<SelfLoader> exports
f8881bd9
AD
230the AUTOLOAD function - but if you have your own AUTOLOAD and
231are using the AutoLoader too, you probably know what you're doing),
463e8aa9 232and the C<__END__> token to C<__DATA__>. You will need perl version 5.001m
f8881bd9
AD
233or later to use this (version 5.001 with all patches up to patch m).
234
463e8aa9 235There is no need to inherit from the B<SelfLoader>.
f8881bd9 236
463e8aa9 237The B<SelfLoader> works similarly to the AutoLoader, but picks up the
238subs from after the C<__DATA__> instead of in the 'lib/auto' directory.
f610777f 239There is a maintenance gain in not needing to run AutoSplit on the module
f8881bd9
AD
240at installation, and a runtime gain in not needing to keep opening and
241closing files to load subs. There is a runtime loss in needing
463e8aa9 242to parse the code after the C<__DATA__>. Details of the B<AutoLoader> and
243another view of these distinctions can be found in that module's
244documentation.
f8881bd9
AD
245
246=head2 __DATA__, __END__, and the FOOBAR::DATA filehandle.
247
248This section is only relevant if you want to use
463e8aa9 249the C<FOOBAR::DATA> together with the B<SelfLoader>.
250
251Data after the C<__DATA__> token in a module is read using the
252FOOBAR::DATA filehandle. C<__END__> can still be used to denote the end
253of the C<__DATA__> section if followed by the token DATA - this is supported
254by the B<SelfLoader>. The C<FOOBAR::DATA> filehandle is left open if an
255C<__END__> followed by a DATA is found, with the filehandle positioned at
256the start of the line after the C<__END__> token. If no C<__END__> token is
257present, or an C<__END__> token with no DATA token on the same line, then
258the filehandle is closed.
259
260The B<SelfLoader> reads from wherever the current
261position of the C<FOOBAR::DATA> filehandle is, until the
262EOF or C<__END__>. This means that if you want to use
f8881bd9
AD
263that filehandle (and ONLY if you want to), you should either
264
2651. Put all your subroutine declarations immediately after
463e8aa9 266the C<__DATA__> token and put your own data after those
267declarations, using the C<__END__> token to mark the end
268of subroutine declarations. You must also ensure that the B<SelfLoader>
1fef88e7 269reads first by calling 'SelfLoader-E<gt>load_stubs();', or by using a
f8881bd9
AD
270function which is selfloaded;
271
272or
273
463e8aa9 2742. You should read the C<FOOBAR::DATA> filehandle first, leaving
f8881bd9
AD
275the handle open and positioned at the first line of subroutine
276declarations.
277
278You could conceivably do both.
279
280=head2 Classes and inherited methods.
281
282For modules which are not classes, this section is not relevant.
283This section is only relevant if you have methods which could
284be inherited.
285
286A subroutine stub (or forward declaration) looks like
287
288 sub stub;
289
290i.e. it is a subroutine declaration without the body of the
291subroutine. For modules which are not classes, there is no real
292need for stubs as far as autoloading is concerned.
293
294For modules which ARE classes, and need to handle inherited methods,
295stubs are needed to ensure that the method inheritance mechanism works
296properly. You can load the stubs into the module at 'require' time, by
1fef88e7 297adding the statement 'SelfLoader-E<gt>load_stubs();' to the module to do
f8881bd9
AD
298this.
299
463e8aa9 300The alternative is to put the stubs in before the C<__DATA__> token BEFORE
301releasing the module, and for this purpose the C<Devel::SelfStubber>
f8881bd9
AD
302module is available. However this does require the extra step of ensuring
303that the stubs are in the module. If this is done I strongly recommend
304that this is done BEFORE releasing the module - it should NOT be done
305at install time in general.
306
307=head1 Multiple packages and fully qualified subroutine names
308
309Subroutines in multiple packages within the same file are supported - but you
463e8aa9 310should note that this requires exporting the C<SelfLoader::AUTOLOAD> to
f8881bd9 311every package which requires it. This is done automatically by the
463e8aa9 312B<SelfLoader> when it first loads the subs into the cache, but you should
313really specify it in the initialization before the C<__DATA__> by putting
f8881bd9
AD
314a 'use SelfLoader' statement in each package.
315
316Fully qualified subroutine names are also supported. For example,
317
318 __DATA__
319 sub foo::bar {23}
320 package baz;
321 sub dob {32}
322
463e8aa9 323will all be loaded correctly by the B<SelfLoader>, and the B<SelfLoader>
f8881bd9 324will ensure that the packages 'foo' and 'baz' correctly have the
463e8aa9 325B<SelfLoader> C<AUTOLOAD> method when the data after C<__DATA__> is first
326parsed.
f8881bd9
AD
327
328=cut