This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Benchmark displays bogus CPU stats (suggested by Cedric Auzanne
[perl5.git] / lib / attributes.pm
CommitLineData
09bef843
SB
1package attributes;
2
0120eecf 3$VERSION = 0.03;
09bef843 4
26f2972e
GS
5@EXPORT_OK = qw(get reftype);
6@EXPORT = ();
7%EXPORT_TAGS = (ALL => [@EXPORT, @EXPORT_OK]);
09bef843
SB
8
9use strict;
10
11sub croak {
12 require Carp;
13 goto &Carp::croak;
14}
15
16sub carp {
17 require Carp;
18 goto &Carp::carp;
19}
20
21## forward declaration(s) rather than wrapping the bootstrap call in BEGIN{}
22#sub reftype ($) ;
23#sub _fetch_attrs ($) ;
24#sub _guess_stash ($) ;
25#sub _modify_attrs ;
26#sub _warn_reserved () ;
27#
28# The extra trips through newATTRSUB in the interpreter wipe out any savings
29# from avoiding the BEGIN block. Just do the bootstrap now.
30BEGIN { bootstrap }
31
32sub import {
26f2972e
GS
33 @_ > 2 && ref $_[2] or do {
34 require Exporter;
35 goto &Exporter::import;
c0c5a66b 36 };
09bef843
SB
37 my (undef,$home_stash,$svref,@attrs) = @_;
38
39 my $svtype = uc reftype($svref);
40 my $pkgmeth;
41 $pkgmeth = UNIVERSAL::can($home_stash, "MODIFY_${svtype}_ATTRIBUTES")
42 if defined $home_stash && $home_stash ne '';
43 my @badattrs;
44 if ($pkgmeth) {
45 my @pkgattrs = _modify_attrs($svref, @attrs);
46 @badattrs = $pkgmeth->($home_stash, $svref, @attrs);
47 if (!@badattrs && @pkgattrs) {
48 return unless _warn_reserved;
49 @pkgattrs = grep { m/\A[[:lower:]]+(?:\z|\()/ } @pkgattrs;
50 if (@pkgattrs) {
51 for my $attr (@pkgattrs) {
52 $attr =~ s/\(.+\z//s;
53 }
54 my $s = ((@pkgattrs == 1) ? '' : 's');
55 carp "$svtype package attribute$s " .
56 "may clash with future reserved word$s: " .
0120eecf 57 join(' : ' , @pkgattrs);
09bef843
SB
58 }
59 }
60 }
61 else {
62 @badattrs = _modify_attrs($svref, @attrs);
63 }
64 if (@badattrs) {
65 croak "Invalid $svtype attribute" .
66 (( @badattrs == 1 ) ? '' : 's') .
67 ": " .
0120eecf 68 join(' : ', @badattrs);
09bef843
SB
69 }
70}
71
72sub get ($) {
73 @_ == 1 && ref $_[0] or
74 croak 'Usage: '.__PACKAGE__.'::get $ref';
75 my $svref = shift;
76 my $svtype = uc reftype $svref;
77 my $stash = _guess_stash $svref;
78 $stash = caller unless defined $stash;
79 my $pkgmeth;
80 $pkgmeth = UNIVERSAL::can($stash, "FETCH_${svtype}_ATTRIBUTES")
81 if defined $stash && $stash ne '';
82 return $pkgmeth ?
83 (_fetch_attrs($svref), $pkgmeth->($stash, $svref)) :
84 (_fetch_attrs($svref))
85 ;
86}
87
26f2972e 88sub require_version { goto &UNIVERSAL::VERSION }
09bef843
SB
89
901;
91__END__
92#The POD goes here
93
94=head1 NAME
95
96attributes - get/set subroutine or variable attributes
97
98=head1 SYNOPSIS
99
100 sub foo : method ;
101 my ($x,@y,%z) : Bent ;
102 my $s = sub : method { ... };
103
104 use attributes (); # optional, to get subroutine declarations
105 my @attrlist = attributes::get(\&foo);
106
26f2972e
GS
107 use attributes 'get'; # import the attributes::get subroutine
108 my @attrlist = get \&foo;
109
09bef843
SB
110=head1 DESCRIPTION
111
112Subroutine declarations and definitions may optionally have attribute lists
113associated with them. (Variable C<my> declarations also may, but see the
114warning below.) Perl handles these declarations by passing some information
115about the call site and the thing being declared along with the attribute
26f2972e 116list to this module. In particular, the first example above is equivalent to
09bef843
SB
117the following:
118
119 use attributes __PACKAGE__, \&foo, 'method';
120
121The second example in the synopsis does something equivalent to this:
122
123 use attributes __PACKAGE__, \$x, 'Bent';
124 use attributes __PACKAGE__, \@y, 'Bent';
125 use attributes __PACKAGE__, \%z, 'Bent';
126
127Yes, that's three invocations.
128
129B<WARNING>: attribute declarations for variables are an I<experimental>
130feature. The semantics of such declarations could change or be removed
131in future versions. They are present for purposes of experimentation
132with what the semantics ought to be. Do not rely on the current
133implementation of this feature.
134
135There are only a few attributes currently handled by Perl itself (or
136directly by this module, depending on how you look at it.) However,
137package-specific attributes are allowed by an extension mechanism.
138(See L<"Package-specific Attribute Handling"> below.)
139
140The setting of attributes happens at compile time. An attempt to set
141an unrecognized attribute is a fatal error. (The error is trappable, but
142it still stops the compilation within that C<eval>.) Setting an attribute
143with a name that's all lowercase letters that's not a built-in attribute
144(such as "foo")
145will result in a warning with B<-w> or C<use warnings 'reserved'>.
146
147=head2 Built-in Attributes
148
149The following are the built-in attributes for subroutines:
150
151=over 4
152
153=item locked
154
155Setting this attribute is only meaningful when the subroutine or
156method is to be called by multiple threads. When set on a method
157subroutine (i.e., one marked with the B<method> attribute below),
158Perl ensures that any invocation of it implicitly locks its first
159argument before execution. When set on a non-method subroutine,
160Perl ensures that a lock is taken on the subroutine itself before
161execution. The semantics of the lock are exactly those of one
162explicitly taken with the C<lock> operator immediately after the
163subroutine is entered.
164
165=item method
166
167Indicates that the referenced subroutine is a method.
168This has a meaning when taken together with the B<locked> attribute,
169as described there. It also means that a subroutine so marked
170will not trigger the "Ambiguous call resolved as CORE::%s" warning.
171
172=back
173
174There are no built-in attributes for anything other than subroutines.
175
176=head2 Available Subroutines
177
178The following subroutines are available for general use once this module
179has been loaded:
180
181=over 4
182
183=item get
184
185This routine expects a single parameter--a reference to a
186subroutine or variable. It returns a list of attributes, which may be
187empty. If passed invalid arguments, it uses die() (via L<Carp::croak|Carp>)
188to raise a fatal exception. If it can find an appropriate package name
189for a class method lookup, it will include the results from a
190C<FETCH_I<type>_ATTRIBUTES> call in its return list, as described in
26f2972e 191L<"Package-specific Attribute Handling"> below.
09bef843
SB
192Otherwise, only L<built-in attributes|"Built-in Attributes"> will be returned.
193
194=item reftype
195
196This routine expects a single parameter--a reference to a subroutine or
197variable. It returns the built-in type of the referenced variable,
198ignoring any package into which it might have been blessed.
199This can be useful for determining the I<type> value which forms part of
26f2972e 200the method names described in L<"Package-specific Attribute Handling"> below.
09bef843
SB
201
202=back
203
26f2972e 204Note that these routines are I<not> exported by default.
09bef843
SB
205
206=head2 Package-specific Attribute Handling
207
208B<WARNING>: the mechanisms described here are still experimental. Do not
209rely on the current implementation. In particular, there is no provision
210for applying package attributes to 'cloned' copies of subroutines used as
211closures. (See L<perlref/"Making References"> for information on closures.)
212Package-specific attribute handling may change incompatibly in a future
213release.
214
215When an attribute list is present in a declaration, a check is made to see
216whether an attribute 'modify' handler is present in the appropriate package
217(or its @ISA inheritance tree). Similarly, when C<attributes::get> is
218called on a valid reference, a check is made for an appropriate attribute
219'fetch' handler. See L<"EXAMPLES"> to see how the "appropriate package"
220determination works.
221
222The handler names are based on the underlying type of the variable being
223declared or of the reference passed. Because these attributes are
224associated with subroutine or variable declarations, this deliberately
225ignores any possibility of being blessed into some package. Thus, a
226subroutine declaration uses "CODE" as its I<type>, and even a blessed
227hash reference uses "HASH" as its I<type>.
228
229The class methods invoked for modifying and fetching are these:
230
231=over 4
232
233=item FETCH_I<type>_ATTRIBUTES
234
235This method receives a single argument, which is a reference to the
236variable or subroutine for which package-defined attributes are desired.
237The expected return value is a list of associated attributes.
238This list may be empty.
239
240=item MODIFY_I<type>_ATTRIBUTES
241
242This method is called with two fixed arguments, followed by the list of
243attributes from the relevant declaration. The two fixed arguments are
244the relevant package name and a reference to the declared subroutine or
245variable. The expected return value as a list of attributes which were
246not recognized by this handler. Note that this allows for a derived class
247to delegate a call to its base class, and then only examine the attributes
248which the base class didn't already handle for it.
249
250The call to this method is currently made I<during> the processing of the
251declaration. In particular, this means that a subroutine reference will
252probably be for an undefined subroutine, even if this declaration is
253actually part of the definition.
254
255=back
256
257Calling C<attributes::get()> from within the scope of a null package
258declaration C<package ;> for an unblessed variable reference will
259not provide any starting package name for the 'fetch' method lookup.
260Thus, this circumstance will not result in a method call for package-defined
261attributes. A named subroutine knows to which symbol table entry it belongs
262(or originally belonged), and it will use the corresponding package.
263An anonymous subroutine knows the package name into which it was compiled
264(unless it was also compiled with a null package declaration), and so it
265will use that package name.
266
267=head2 Syntax of Attribute Lists
268
269An attribute list is a sequence of attribute specifications, separated by
0120eecf
GS
270whitespace or a colon (with optional whitespace).
271Each attribute specification is a simple
09bef843
SB
272name, optionally followed by a parenthesised parameter list.
273If such a parameter list is present, it is scanned past as for the rules
274for the C<q()> operator. (See L<perlop/"Quote and Quote-like Operators">.)
275The parameter list is passed as it was found, however, and not as per C<q()>.
276
277Some examples of syntactically valid attribute lists:
278
0120eecf
GS
279 switch(10,foo(7,3)) : expensive
280 Ugly('\(") :Bad
09bef843
SB
281 _5x5
282 locked method
283
284Some examples of syntactically invalid attribute lists (with annotation):
285
286 switch(10,foo() # ()-string not balanced
287 Ugly('(') # ()-string not balanced
288 5x5 # "5x5" not a valid identifier
289 Y2::north # "Y2::north" not a simple identifier
0120eecf 290 foo + bar # "+" neither a colon nor whitespace
09bef843 291
26f2972e
GS
292=head1 EXPORTS
293
294=head2 Default exports
295
296None.
297
298=head2 Available exports
299
300The routines C<get> and C<reftype> are exportable.
301
302=head2 Export tags defined
303
304The C<:ALL> tag will get all of the above exports.
305
09bef843
SB
306=head1 EXAMPLES
307
308Here are some samples of syntactically valid declarations, with annotation
309as to how they resolve internally into C<use attributes> invocations by
310perl. These examples are primarily useful to see how the "appropriate
311package" is found for the possible method lookups for package-defined
312attributes.
313
314=over 4
315
316=item 1.
317
318Code:
319
320 package Canine;
321 package Dog;
322 my Canine $spot : Watchful ;
323
324Effect:
325
326 use attributes Canine => \$spot, "Watchful";
327
328=item 2.
329
330Code:
331
332 package Felis;
333 my $cat : Nervous;
334
335Effect:
336
337 use attributes Felis => \$cat, "Nervous";
338
339=item 3.
340
341Code:
342
343 package X;
344 sub foo : locked ;
345
346Effect:
347
348 use attributes X => \&foo, "locked";
349
350=item 4.
351
352Code:
353
354 package X;
355 sub Y::x : locked { 1 }
356
357Effect:
358
359 use attributes Y => \&Y::x, "locked";
360
361=item 5.
362
363Code:
364
365 package X;
366 sub foo { 1 }
367
368 package Y;
369 BEGIN { *bar = \&X::foo; }
370
371 package Z;
372 sub Y::bar : locked ;
373
374Effect:
375
376 use attributes X => \&X::foo, "locked";
377
378=back
379
380This last example is purely for purposes of completeness. You should not
381be trying to mess with the attributes of something in a package that's
382not your own.
383
384=head1 SEE ALSO
385
386L<perlsub/"Private Variables via my()"> and
387L<perlsub/"Subroutine Attributes"> for details on the basic declarations;
388L<attrs> for the obsolescent form of subroutine attribute specification
389which this module replaces;
390L<perlfunc/use> for details on the normal invocation mechanism.
391
392=cut
393