source: trunk/third/perl/lib/SelfLoader.pm @ 14545

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