Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

295 lines
9.7 KiB

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