Use vendorprefixlib.
[p5sagit/p5-mst-13.2.git] / lib / AutoLoader.pm
CommitLineData
8990e307 1package AutoLoader;
21c92a1d 2
9451cbc9 3use vars qw(@EXPORT @EXPORT_OK $VERSION);
f06db76b 4
adaafad2 5my $is_dosish;
6my $is_vms;
7
1be0b951 8BEGIN {
9 require Exporter;
10 @EXPORT = ();
11 @EXPORT_OK = qw(AUTOLOAD);
adaafad2 12 $is_dosish = $^O eq 'dos' || $^O eq 'os2' || $^O eq 'MSWin32';
13 $is_vms = $^O eq 'VMS';
7d4fbd98 14 $VERSION = '5.56';
1be0b951 15}
f06db76b 16
8990e307 17AUTOLOAD {
7d4fbd98 18 my $sub = $AUTOLOAD;
19 my $filename;
5a556d17 20 # Braces used to preserve $1 et al.
21 {
adaafad2 22 # Try to find the autoloaded file from the package-qualified
23 # name of the sub. e.g., if the sub needed is
24 # Getopt::Long::GetOptions(), then $INC{Getopt/Long.pm} is
25 # something like '/usr/lib/perl5/Getopt/Long.pm', and the
26 # autoload file is '/usr/lib/perl5/auto/Getopt/Long/GetOptions.al'.
27 #
28 # However, if @INC is a relative path, this might not work. If,
29 # for example, @INC = ('lib'), then $INC{Getopt/Long.pm} is
30 # 'lib/Getopt/Long.pm', and we want to require
31 # 'auto/Getopt/Long/GetOptions.al' (without the leading 'lib').
32 # In this case, we simple prepend the 'auto/' and let the
33 # C<require> take care of the searching for us.
34
7d4fbd98 35 my ($pkg,$func) = ($sub =~ /(.*)::([^:]+)$/);
adaafad2 36 $pkg =~ s#::#/#g;
7d4fbd98 37 if (defined($filename = $INC{"$pkg.pm"})) {
38 $filename =~ s#^(.*)$pkg\.pm$#$1auto/$pkg/$func.al#;
adaafad2 39
40 # if the file exists, then make sure that it is a
41 # a fully anchored path (i.e either '/usr/lib/auto/foo/bar.al',
42 # or './lib/auto/foo/bar.al'. This avoids C<require> searching
43 # (and failing) to find the 'lib/auto/foo/bar.al' because it
44 # looked for 'lib/lib/auto/foo/bar.al', given @INC = ('lib').
45
7d4fbd98 46 if (-r $filename) {
47 unless ($filename =~ m|^/|) {
adaafad2 48 if ($is_dosish) {
7d4fbd98 49 unless ($filename =~ m{^([a-z]:)?[\\/]}i) {
50 $filename = "./$filename";
adaafad2 51 }
52 }
53 elsif ($is_vms) {
7d4fbd98 54 # XXX todo by VMSmiths
55 $filename = "./$filename";
adaafad2 56 }
57 else {
7d4fbd98 58 $filename = "./$filename";
adaafad2 59 }
60 }
61 }
62 else {
7d4fbd98 63 $filename = undef;
adaafad2 64 }
65 }
7d4fbd98 66 unless (defined $filename) {
adaafad2 67 # let C<require> do the searching
7d4fbd98 68 $filename = "auto/$sub.al";
69 $filename =~ s#::#/#g;
adaafad2 70 }
5a556d17 71 }
e14baed2 72 my $save = $@;
7d4fbd98 73 eval { local $SIG{__DIE__}; require $filename };
8990e307 74 if ($@) {
7d4fbd98 75 if (substr($sub,-9) eq '::DESTROY') {
76 *$sub = sub {};
e14baed2 77 } else {
78 # The load might just have failed because the filename was too
79 # long for some old SVR3 systems which treat long names as errors.
80 # If we can succesfully truncate a long name then it's worth a go.
81 # There is a slight risk that we could pick up the wrong file here
82 # but autosplit should have warned about that when splitting.
7d4fbd98 83 if ($filename =~ s/(\w{12,})\.al$/substr($1,0,11).".al"/e){
84 eval { local $SIG{__DIE__}; require $filename };
e14baed2 85 }
86 if ($@){
87 $@ =~ s/ at .*\n//;
fb73857a 88 my $error = $@;
89 require Carp;
90 Carp::croak($error);
e14baed2 91 }
a0d0e21e 92 }
8990e307 93 }
e14baed2 94 $@ = $save;
7d4fbd98 95 goto &$sub;
8990e307 96}
1be0b951 97
c2960299 98sub import {
1be0b951 99 my $pkg = shift;
100 my $callpkg = caller;
101
102 #
103 # Export symbols, but not by accident of inheritance.
104 #
105
106 Exporter::export $pkg, $callpkg, @_ if $pkg eq 'AutoLoader';
107
108 #
c2960299 109 # Try to find the autosplit index file. Eg., if the call package
110 # is POSIX, then $INC{POSIX.pm} is something like
111 # '/usr/local/lib/perl5/POSIX.pm', and the autosplit index file is in
112 # '/usr/local/lib/perl5/auto/POSIX/autosplit.ix', so we require that.
113 #
114 # However, if @INC is a relative path, this might not work. If,
115 # for example, @INC = ('lib'), then
116 # $INC{POSIX.pm} is 'lib/POSIX.pm', and we want to require
117 # 'auto/POSIX/autosplit.ix' (without the leading 'lib').
118 #
1be0b951 119
1c1c7f20 120 (my $calldir = $callpkg) =~ s#::#/#g;
1be0b951 121 my $path = $INC{$calldir . '.pm'};
122 if (defined($path)) {
c2960299 123 # Try absolute path name.
1be0b951 124 $path =~ s#^(.*)$calldir\.pm$#$1auto/$calldir/autosplit.ix#;
c2960299 125 eval { require $path; };
126 # If that failed, try relative path with normal @INC searching.
127 if ($@) {
1be0b951 128 $path ="auto/$calldir/autosplit.ix";
c2960299 129 eval { require $path; };
130 }
fb73857a 131 if ($@) {
132 my $error = $@;
133 require Carp;
134 Carp::carp($error);
135 }
f06db76b 136 }
f06db76b 137}
8990e307 138
1391;
1be0b951 140
141__END__
142
143=head1 NAME
144
145AutoLoader - load subroutines only on demand
146
147=head1 SYNOPSIS
148
149 package Foo;
150 use AutoLoader 'AUTOLOAD'; # import the default AUTOLOAD subroutine
151
152 package Bar;
153 use AutoLoader; # don't import AUTOLOAD, define our own
154 sub AUTOLOAD {
155 ...
156 $AutoLoader::AUTOLOAD = "...";
157 goto &AutoLoader::AUTOLOAD;
158 }
159
160=head1 DESCRIPTION
161
162The B<AutoLoader> module works with the B<AutoSplit> module and the
163C<__END__> token to defer the loading of some subroutines until they are
164used rather than loading them all at once.
165
166To use B<AutoLoader>, the author of a module has to place the
167definitions of subroutines to be autoloaded after an C<__END__> token.
168(See L<perldata>.) The B<AutoSplit> module can then be run manually to
169extract the definitions into individual files F<auto/funcname.al>.
170
171B<AutoLoader> implements an AUTOLOAD subroutine. When an undefined
172subroutine in is called in a client module of B<AutoLoader>,
173B<AutoLoader>'s AUTOLOAD subroutine attempts to locate the subroutine in a
174file with a name related to the location of the file from which the
175client module was read. As an example, if F<POSIX.pm> is located in
176F</usr/local/lib/perl5/POSIX.pm>, B<AutoLoader> will look for perl
177subroutines B<POSIX> in F</usr/local/lib/perl5/auto/POSIX/*.al>, where
178the C<.al> file has the same name as the subroutine, sans package. If
179such a file exists, AUTOLOAD will read and evaluate it,
180thus (presumably) defining the needed subroutine. AUTOLOAD will then
181C<goto> the newly defined subroutine.
182
f610777f 183Once this process completes for a given function, it is defined, so
1be0b951 184future calls to the subroutine will bypass the AUTOLOAD mechanism.
185
186=head2 Subroutine Stubs
187
188In order for object method lookup and/or prototype checking to operate
189correctly even when methods have not yet been defined it is necessary to
190"forward declare" each subroutine (as in C<sub NAME;>). See
191L<perlsub/"SYNOPSIS">. Such forward declaration creates "subroutine
192stubs", which are place holders with no code.
193
194The AutoSplit and B<AutoLoader> modules automate the creation of forward
195declarations. The AutoSplit module creates an 'index' file containing
196forward declarations of all the AutoSplit subroutines. When the
197AutoLoader module is 'use'd it loads these declarations into its callers
198package.
199
200Because of this mechanism it is important that B<AutoLoader> is always
201C<use>d and not C<require>d.
202
203=head2 Using B<AutoLoader>'s AUTOLOAD Subroutine
204
205In order to use B<AutoLoader>'s AUTOLOAD subroutine you I<must>
206explicitly import it:
207
208 use AutoLoader 'AUTOLOAD';
209
210=head2 Overriding B<AutoLoader>'s AUTOLOAD Subroutine
211
212Some modules, mainly extensions, provide their own AUTOLOAD subroutines.
213They typically need to check for some special cases (such as constants)
214and then fallback to B<AutoLoader>'s AUTOLOAD for the rest.
215
216Such modules should I<not> import B<AutoLoader>'s AUTOLOAD subroutine.
217Instead, they should define their own AUTOLOAD subroutines along these
218lines:
219
220 use AutoLoader;
fb73857a 221 use Carp;
98a6f11e 222 use Errno;
1be0b951 223
224 sub AUTOLOAD {
7d4fbd98 225 my $sub = $AUTOLOAD;
226 (my $constname = $sub) =~ s/.*:://;
1be0b951 227 my $val = constant($constname, @_ ? $_[0] : 0);
228 if ($! != 0) {
98a6f11e 229 if ($!{EINVAL} || $! =~ /Invalid/) {
7d4fbd98 230 $AutoLoader::AUTOLOAD = $sub;
1be0b951 231 goto &AutoLoader::AUTOLOAD;
232 }
233 else {
234 croak "Your vendor has not defined constant $constname";
235 }
236 }
7d4fbd98 237 *$sub = sub { $val }; # same as: eval "sub $sub { $val }";
238 goto &$sub;
1be0b951 239 }
240
241If any module's own AUTOLOAD subroutine has no need to fallback to the
242AutoLoader's AUTOLOAD subroutine (because it doesn't have any AutoSplit
243subroutines), then that module should not use B<AutoLoader> at all.
244
245=head2 Package Lexicals
246
247Package lexicals declared with C<my> in the main block of a package
248using B<AutoLoader> will not be visible to auto-loaded subroutines, due to
249the fact that the given scope ends at the C<__END__> marker. A module
250using such variables as package globals will not work properly under the
251B<AutoLoader>.
252
253The C<vars> pragma (see L<perlmod/"vars">) may be used in such
254situations as an alternative to explicitly qualifying all globals with
255the package namespace. Variables pre-declared with this pragma will be
256visible to any autoloaded routines (but will not be invisible outside
257the package, unfortunately).
258
259=head2 B<AutoLoader> vs. B<SelfLoader>
260
261The B<AutoLoader> is similar in purpose to B<SelfLoader>: both delay the
262loading of subroutines.
263
264B<SelfLoader> uses the C<__DATA__> marker rather than C<__END__>.
265While this avoids the use of a hierarchy of disk files and the
266associated open/close for each routine loaded, B<SelfLoader> suffers a
267startup speed disadvantage in the one-time parsing of the lines after
268C<__DATA__>, after which routines are cached. B<SelfLoader> can also
269handle multiple packages in a file.
270
271B<AutoLoader> only reads code as it is requested, and in many cases
f610777f 272should be faster, but requires a mechanism like B<AutoSplit> be used to
1be0b951 273create the individual files. L<ExtUtils::MakeMaker> will invoke
274B<AutoSplit> automatically if B<AutoLoader> is used in a module source
275file.
276
277=head1 CAVEATS
278
279AutoLoaders prior to Perl 5.002 had a slightly different interface. Any
280old modules which use B<AutoLoader> should be changed to the new calling
281style. Typically this just means changing a require to a use, adding
282the explicit C<'AUTOLOAD'> import if needed, and removing B<AutoLoader>
283from C<@ISA>.
284
285On systems with restrictions on file name length, the file corresponding
286to a subroutine may have a shorter name that the routine itself. This
287can lead to conflicting file names. The I<AutoSplit> package warns of
288these potential conflicts when used to split a module.
289
adaafad2 290AutoLoader may fail to find the autosplit files (or even find the wrong
291ones) in cases where C<@INC> contains relative paths, B<and> the program
292does C<chdir>.
293
1be0b951 294=head1 SEE ALSO
295
296L<SelfLoader> - an autoloader that doesn't use external files.
297
298=cut