Re: [PATCH] Re: Speeding up method lookups
[p5sagit/p5-mst-13.2.git] / lib / Exporter.pm
CommitLineData
8990e307 1package Exporter;
2
748a9306 3require 5.001;
8990e307 4
a0d0e21e 5$ExportLevel = 0;
4af1b167 6$Verbose ||= 0;
90564d98 7$VERSION = '5.562';
2b5b2650 8
4af1b167 9sub export_to_level {
10 require Exporter::Heavy;
11 goto &heavy_export_to_level;
84902520 12}
13
4af1b167 14sub export {
15 require Exporter::Heavy;
16 goto &heavy_export;
748a9306 17}
18
4af1b167 19sub export_tags {
20 require Exporter::Heavy;
21 _push_tags((caller)[0], "EXPORT", \@_);
2b5b2650 22}
23
4af1b167 24sub export_ok_tags {
25 require Exporter::Heavy;
26 _push_tags((caller)[0], "EXPORT_OK", \@_);
a0d0e21e 27}
28
4af1b167 29sub import {
30 my $pkg = shift;
31 my $callpkg = caller($ExportLevel);
32 *exports = *{"$pkg\::EXPORT"};
33 # We *need* to treat @{"$pkg\::EXPORT_FAIL"} since Carp uses it :-(
34 *fail = *{"$pkg\::EXPORT_FAIL"};
35 return export $pkg, $callpkg, @_
36 if $Verbose or $Debug or @fail > 1;
37 my $args = @_ or @_ = @exports;
38
39 if ($args and not %exports) {
40 foreach my $sym (@exports, @{"$pkg\::EXPORT_OK"}) {
41 $sym =~ s/^&//;
42 $exports{$sym} = 1;
3221d3b0 43 }
4af1b167 44 }
f896c484 45 for (@_) {
46 #need to match first to avoid "Modification of a read-only value attempted"
47 if (/^\+/ and s/^\+//) {
48 (\&{"$pkg\::$_"})->(); #try AUTOLOAD now so calls are inlined
49 }
50 }
4af1b167 51 if ($Verbose or $Debug
52 or grep {/\W/ or $args and not exists $exports{$_}
53 or @fail and $_ eq $fail[0]
54 or (@{"$pkg\::EXPORT_OK"}
55 and $_ eq ${"$pkg\::EXPORT_OK"}[0])} @_) {
56 return export $pkg, $callpkg, ($args ? @_ : ());
57 }
58 #local $SIG{__WARN__} = sub {require Carp; goto &Carp::carp};
59 local $SIG{__WARN__} =
60 sub {require Carp; local $Carp::CarpLevel = 1; &Carp::carp};
61 foreach $sym (@_) {
62 # shortcut for the common case of no type character
63 *{"$callpkg\::$sym"} = \&{"$pkg\::$sym"};
64 }
e50aee73 65}
66
8990e307 671;
2b5b2650 68
69# A simple self test harness. Change 'require Carp' to 'use Carp ()' for testing.
70# package main; eval(join('',<DATA>)) or die $@ unless caller;
71__END__
72package Test;
73$INC{'Exporter.pm'} = 1;
74@ISA = qw(Exporter);
75@EXPORT = qw(A1 A2 A3 A4 A5);
76@EXPORT_OK = qw(B1 B2 B3 B4 B5);
77%EXPORT_TAGS = (T1=>[qw(A1 A2 B1 B2)], T2=>[qw(A1 A2 B3 B4)], T3=>[qw(X3)]);
78@EXPORT_FAIL = qw(B4);
79Exporter::export_ok_tags('T3', 'unknown_tag');
80sub export_fail {
81 map { "Test::$_" } @_ # edit symbols just as an example
82}
83
84package main;
85$Exporter::Verbose = 1;
86#import Test;
87#import Test qw(X3); # export ok via export_ok_tags()
88#import Test qw(:T1 !A2 /5/ !/3/ B5);
89import Test qw(:T2 !B4);
90import Test qw(:T2); # should fail
911;
92
93=head1 NAME
94
95Exporter - Implements default import method for modules
96
97=head1 SYNOPSIS
98
99In module ModuleName.pm:
100
101 package ModuleName;
102 require Exporter;
103 @ISA = qw(Exporter);
104
105 @EXPORT = qw(...); # symbols to export by default
106 @EXPORT_OK = qw(...); # symbols to export on request
107 %EXPORT_TAGS = tag => [...]; # define names for sets of symbols
108
109In other files which wish to use ModuleName:
110
111 use ModuleName; # import default symbols into my package
112
113 use ModuleName qw(...); # import listed symbols into my package
114
115 use ModuleName (); # do not import any symbols
116
117=head1 DESCRIPTION
118
119The Exporter module implements a default C<import> method which
68dc0745 120many modules choose to inherit rather than implement their own.
2b5b2650 121
122Perl automatically calls the C<import> method when processing a
123C<use> statement for a module. Modules and C<use> are documented
124in L<perlfunc> and L<perlmod>. Understanding the concept of
125modules and how the C<use> statement operates is important to
126understanding the Exporter.
127
4fddf32b 128=head2 How to Export
129
130The arrays C<@EXPORT> and C<@EXPORT_OK> in a module hold lists of
131symbols that are going to be exported into the users name space by
132default, or which they can request to be exported, respectively. The
133symbols can represent functions, scalars, arrays, hashes, or typeglobs.
134The symbols must be given by full name with the exception that the
135ampersand in front of a function is optional, e.g.
136
137 @EXPORT = qw(afunc $scalar @array); # afunc is a function
138 @EXPORT_OK = qw(&bfunc %hash *typeglob); # explicit prefix on &bfunc
139
2b5b2650 140=head2 Selecting What To Export
141
142Do B<not> export method names!
143
144Do B<not> export anything else by default without a good reason!
145
146Exports pollute the namespace of the module user. If you must export
147try to use @EXPORT_OK in preference to @EXPORT and avoid short or
148common symbol names to reduce the risk of name clashes.
149
150Generally anything not exported is still accessible from outside the
1fef88e7 151module using the ModuleName::item_name (or $blessed_ref-E<gt>method)
2b5b2650 152syntax. By convention you can use a leading underscore on names to
153informally indicate that they are 'internal' and not for public use.
154
155(It is actually possible to get private functions by saying:
156
157 my $subref = sub { ... };
158 &$subref;
159
160But there's no way to call that directly as a method, since a method
161must have a name in the symbol table.)
162
163As a general rule, if the module is trying to be object oriented
164then export nothing. If it's just a collection of functions then
165@EXPORT_OK anything but use @EXPORT with caution.
166
167Other module design guidelines can be found in L<perlmod>.
168
169=head2 Specialised Import Lists
170
171If the first entry in an import list begins with !, : or / then the
172list is treated as a series of specifications which either add to or
173delete from the list of names to import. They are processed left to
174right. Specifications are in the form:
175
176 [!]name This name only
177 [!]:DEFAULT All names in @EXPORT
178 [!]:tag All names in $EXPORT_TAGS{tag} anonymous list
179 [!]/pattern/ All names in @EXPORT and @EXPORT_OK which match
180
181A leading ! indicates that matching names should be deleted from the
182list of names to import. If the first specification is a deletion it
183is treated as though preceded by :DEFAULT. If you just want to import
184extra names in addition to the default set you will still need to
185include :DEFAULT explicitly.
186
187e.g., Module.pm defines:
188
189 @EXPORT = qw(A1 A2 A3 A4 A5);
190 @EXPORT_OK = qw(B1 B2 B3 B4 B5);
191 %EXPORT_TAGS = (T1 => [qw(A1 A2 B1 B2)], T2 => [qw(A1 A2 B3 B4)]);
192
193 Note that you cannot use tags in @EXPORT or @EXPORT_OK.
194 Names in EXPORT_TAGS must also appear in @EXPORT or @EXPORT_OK.
195
196An application using Module can say something like:
197
198 use Module qw(:DEFAULT :T2 !B3 A3);
199
200Other examples include:
201
202 use Socket qw(!/^[AP]F_/ !SOMAXCONN !SOL_SOCKET);
203 use POSIX qw(:errno_h :termios_h !TCSADRAIN !/^EXIT/);
204
205Remember that most patterns (using //) will need to be anchored
206with a leading ^, e.g., C</^EXIT/> rather than C</EXIT/>.
207
208You can say C<BEGIN { $Exporter::Verbose=1 }> to see how the
209specifications are being processed and what is actually being imported
210into modules.
211
0e4dedf1 212=head2 Constants can be inlined
213
214AUTOLOADed constants can be inlined by prefixing them with a C<+>:
215
216 use Socket qw(+AF_INET);
217
218Thusly prefixed constants are defined during the symbol import phase of
219compilation, which means that by runtime they are true inlined constants.
220
84902520 221=head2 Exporting without using Export's import method
222
223Exporter has a special method, 'export_to_level' which is used in situations
224where you can't directly call Export's import method. The export_to_level
225method looks like:
226
ba5725f8 227MyPackage->export_to_level($where_to_export, $package, @what_to_export);
84902520 228
229where $where_to_export is an integer telling how far up the calling stack
230to export your symbols, and @what_to_export is an array telling what
ba5725f8 231symbols *to* export (usually this is @_). The $package argument is
232currently unused.
84902520 233
234For example, suppose that you have a module, A, which already has an
235import function:
236
237package A;
238
239@ISA = qw(Exporter);
240@EXPORT_OK = qw ($b);
241
242sub import
243{
244 $A::b = 1; # not a very useful import method
245}
246
247and you want to Export symbol $A::b back to the module that called
248package A. Since Exporter relies on the import method to work, via
249inheritance, as it stands Exporter::import() will never get called.
250Instead, say the following:
251
252package A;
253@ISA = qw(Exporter);
254@EXPORT_OK = qw ($b);
255
256sub import
257{
258 $A::b = 1;
259 A->export_to_level(1, @_);
260}
261
262This will export the symbols one level 'above' the current package - ie: to
263the program or module that used package A.
264
265Note: Be careful not to modify '@_' at all before you call export_to_level
266- or people using your package will get very unexplained results!
267
268
2b5b2650 269=head2 Module Version Checking
270
271The Exporter module will convert an attempt to import a number from a
1fef88e7 272module into a call to $module_name-E<gt>require_version($value). This can
2b5b2650 273be used to validate that the version of the module being used is
274greater than or equal to the required version.
275
276The Exporter module supplies a default require_version method which
277checks the value of $VERSION in the exporting module.
278
279Since the default require_version method treats the $VERSION number as
d5e40bcc 280a simple numeric value it will regard version 1.10 as lower than
2811.9. For this reason it is strongly recommended that you use numbers
282with at least two decimal places, e.g., 1.09.
2b5b2650 283
284=head2 Managing Unknown Symbols
285
286In some situations you may want to prevent certain symbols from being
287exported. Typically this applies to extensions which have functions
288or constants that may not exist on some systems.
289
290The names of any symbols that cannot be exported should be listed
291in the C<@EXPORT_FAIL> array.
292
7a2e2cd6 293If a module attempts to import any of these symbols the Exporter
2b5b2650 294will give the module an opportunity to handle the situation before
295generating an error. The Exporter will call an export_fail method
296with a list of the failed symbols:
297
298 @failed_symbols = $module_name->export_fail(@failed_symbols);
299
300If the export_fail method returns an empty list then no error is
301recorded and all the requested symbols are exported. If the returned
302list is not empty then an error is generated for each symbol and the
303export fails. The Exporter provides a default export_fail method which
304simply returns the list unchanged.
305
306Uses for the export_fail method include giving better error messages
307for some symbols and performing lazy architectural checks (put more
308symbols into @EXPORT_FAIL by default and then take them out if someone
309actually tries to use them and an expensive check shows that they are
310usable on that platform).
311
312=head2 Tag Handling Utility Functions
313
314Since the symbols listed within %EXPORT_TAGS must also appear in either
315@EXPORT or @EXPORT_OK, two utility functions are provided which allow
316you to easily add tagged sets of symbols to @EXPORT or @EXPORT_OK:
317
318 %EXPORT_TAGS = (foo => [qw(aa bb cc)], bar => [qw(aa cc dd)]);
319
320 Exporter::export_tags('foo'); # add aa, bb and cc to @EXPORT
321 Exporter::export_ok_tags('bar'); # add aa, cc and dd to @EXPORT_OK
322
323Any names which are not tags are added to @EXPORT or @EXPORT_OK
d5e40bcc 324unchanged but will trigger a warning (with C<-w>) to avoid misspelt tags
2b5b2650 325names being silently added to @EXPORT or @EXPORT_OK. Future versions
326may make this a fatal error.
327
328=cut