[ PATCH ] mymalloc on HP-UX
[p5sagit/p5-mst-13.2.git] / lib / attributes.pm
CommitLineData
09bef843 1package attributes;
2
105cd853 3our $VERSION = 0.05;
09bef843 4
26f2972e 5@EXPORT_OK = qw(get reftype);
6@EXPORT = ();
7%EXPORT_TAGS = (ALL => [@EXPORT, @EXPORT_OK]);
09bef843 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.
592f5969 30BEGIN { bootstrap attributes }
09bef843 31
32sub import {
26f2972e 33 @_ > 2 && ref $_[2] or do {
34 require Exporter;
35 goto &Exporter::import;
c0c5a66b 36 };
09bef843 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 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 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 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 ;
95f0a2f1 101 my ($x,@y,%z) : Bent = 1;
09bef843 102 my $s = sub : method { ... };
103
104 use attributes (); # optional, to get subroutine declarations
105 my @attrlist = attributes::get(\&foo);
106
26f2972e 107 use attributes 'get'; # import the attributes::get subroutine
108 my @attrlist = get \&foo;
109
09bef843 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 117the following:
118
119 use attributes __PACKAGE__, \&foo, 'method';
120
121The second example in the synopsis does something equivalent to this:
122
95f0a2f1 123 use attributes ();
124 my ($x,@y,%z);
125 attributes::->import(__PACKAGE__, \$x, 'Bent');
126 attributes::->import(__PACKAGE__, \@y, 'Bent');
127 attributes::->import(__PACKAGE__, \%z, 'Bent');
128 ($x,@y,%z) = 1;
09bef843 129
95f0a2f1 130Yes, that's a lot of expansion.
09bef843 131
132B<WARNING>: attribute declarations for variables are an I<experimental>
133feature. The semantics of such declarations could change or be removed
134in future versions. They are present for purposes of experimentation
135with what the semantics ought to be. Do not rely on the current
95f0a2f1 136implementation of this feature.
09bef843 137
138There are only a few attributes currently handled by Perl itself (or
139directly by this module, depending on how you look at it.) However,
140package-specific attributes are allowed by an extension mechanism.
141(See L<"Package-specific Attribute Handling"> below.)
142
95f0a2f1 143The setting of subroutine attributes happens at compile time.
144Variable attributes in C<our> declarations are also applied at compile time.
145However, C<my> variables get their attributes applied at run-time.
146This means that you have to I<reach> the run-time component of the C<my>
147before those attributes will get applied. For example:
148
149 my $x : Bent = 42 if 0;
150
151will neither assign 42 to $x I<nor> will it apply the C<Bent> attribute
152to the variable.
153
154An attempt to set
09bef843 155an unrecognized attribute is a fatal error. (The error is trappable, but
156it still stops the compilation within that C<eval>.) Setting an attribute
157with a name that's all lowercase letters that's not a built-in attribute
158(such as "foo")
159will result in a warning with B<-w> or C<use warnings 'reserved'>.
160
161=head2 Built-in Attributes
162
163The following are the built-in attributes for subroutines:
164
165=over 4
166
167=item locked
168
169Setting this attribute is only meaningful when the subroutine or
170method is to be called by multiple threads. When set on a method
171subroutine (i.e., one marked with the B<method> attribute below),
172Perl ensures that any invocation of it implicitly locks its first
173argument before execution. When set on a non-method subroutine,
174Perl ensures that a lock is taken on the subroutine itself before
175execution. The semantics of the lock are exactly those of one
176explicitly taken with the C<lock> operator immediately after the
177subroutine is entered.
178
179=item method
180
181Indicates that the referenced subroutine is a method.
182This has a meaning when taken together with the B<locked> attribute,
183as described there. It also means that a subroutine so marked
184will not trigger the "Ambiguous call resolved as CORE::%s" warning.
185
89752b9c 186=item lvalue
187
188Indicates that the referenced subroutine is a valid lvalue and can
189be assigned to. The subroutine must return a modifiable value such
190as a scalar variable, as described in L<perlsub>.
191
09bef843 192=back
193
307ea6df 194For global variables there is C<unique> attribute: see L<perlfunc/our>.
95f0a2f1 195
09bef843 196=head2 Available Subroutines
197
198The following subroutines are available for general use once this module
199has been loaded:
200
201=over 4
202
203=item get
204
205This routine expects a single parameter--a reference to a
206subroutine or variable. It returns a list of attributes, which may be
207empty. If passed invalid arguments, it uses die() (via L<Carp::croak|Carp>)
208to raise a fatal exception. If it can find an appropriate package name
209for a class method lookup, it will include the results from a
210C<FETCH_I<type>_ATTRIBUTES> call in its return list, as described in
26f2972e 211L<"Package-specific Attribute Handling"> below.
09bef843 212Otherwise, only L<built-in attributes|"Built-in Attributes"> will be returned.
213
214=item reftype
215
216This routine expects a single parameter--a reference to a subroutine or
217variable. It returns the built-in type of the referenced variable,
218ignoring any package into which it might have been blessed.
219This can be useful for determining the I<type> value which forms part of
26f2972e 220the method names described in L<"Package-specific Attribute Handling"> below.
09bef843 221
222=back
223
26f2972e 224Note that these routines are I<not> exported by default.
09bef843 225
226=head2 Package-specific Attribute Handling
227
228B<WARNING>: the mechanisms described here are still experimental. Do not
229rely on the current implementation. In particular, there is no provision
230for applying package attributes to 'cloned' copies of subroutines used as
231closures. (See L<perlref/"Making References"> for information on closures.)
232Package-specific attribute handling may change incompatibly in a future
233release.
234
235When an attribute list is present in a declaration, a check is made to see
236whether an attribute 'modify' handler is present in the appropriate package
237(or its @ISA inheritance tree). Similarly, when C<attributes::get> is
238called on a valid reference, a check is made for an appropriate attribute
239'fetch' handler. See L<"EXAMPLES"> to see how the "appropriate package"
240determination works.
241
242The handler names are based on the underlying type of the variable being
243declared or of the reference passed. Because these attributes are
244associated with subroutine or variable declarations, this deliberately
245ignores any possibility of being blessed into some package. Thus, a
246subroutine declaration uses "CODE" as its I<type>, and even a blessed
247hash reference uses "HASH" as its I<type>.
248
249The class methods invoked for modifying and fetching are these:
250
251=over 4
252
253=item FETCH_I<type>_ATTRIBUTES
254
255This method receives a single argument, which is a reference to the
256variable or subroutine for which package-defined attributes are desired.
257The expected return value is a list of associated attributes.
258This list may be empty.
259
260=item MODIFY_I<type>_ATTRIBUTES
261
262This method is called with two fixed arguments, followed by the list of
263attributes from the relevant declaration. The two fixed arguments are
264the relevant package name and a reference to the declared subroutine or
265variable. The expected return value as a list of attributes which were
266not recognized by this handler. Note that this allows for a derived class
267to delegate a call to its base class, and then only examine the attributes
268which the base class didn't already handle for it.
269
270The call to this method is currently made I<during> the processing of the
271declaration. In particular, this means that a subroutine reference will
272probably be for an undefined subroutine, even if this declaration is
273actually part of the definition.
274
275=back
276
277Calling C<attributes::get()> from within the scope of a null package
278declaration C<package ;> for an unblessed variable reference will
279not provide any starting package name for the 'fetch' method lookup.
280Thus, this circumstance will not result in a method call for package-defined
281attributes. A named subroutine knows to which symbol table entry it belongs
282(or originally belonged), and it will use the corresponding package.
283An anonymous subroutine knows the package name into which it was compiled
284(unless it was also compiled with a null package declaration), and so it
285will use that package name.
286
287=head2 Syntax of Attribute Lists
288
289An attribute list is a sequence of attribute specifications, separated by
0120eecf 290whitespace or a colon (with optional whitespace).
291Each attribute specification is a simple
09bef843 292name, optionally followed by a parenthesised parameter list.
293If such a parameter list is present, it is scanned past as for the rules
294for the C<q()> operator. (See L<perlop/"Quote and Quote-like Operators">.)
295The parameter list is passed as it was found, however, and not as per C<q()>.
296
297Some examples of syntactically valid attribute lists:
298
0120eecf 299 switch(10,foo(7,3)) : expensive
300 Ugly('\(") :Bad
09bef843 301 _5x5
302 locked method
303
304Some examples of syntactically invalid attribute lists (with annotation):
305
306 switch(10,foo() # ()-string not balanced
307 Ugly('(') # ()-string not balanced
308 5x5 # "5x5" not a valid identifier
309 Y2::north # "Y2::north" not a simple identifier
0120eecf 310 foo + bar # "+" neither a colon nor whitespace
09bef843 311
26f2972e 312=head1 EXPORTS
313
314=head2 Default exports
315
316None.
317
318=head2 Available exports
319
320The routines C<get> and C<reftype> are exportable.
321
322=head2 Export tags defined
323
324The C<:ALL> tag will get all of the above exports.
325
09bef843 326=head1 EXAMPLES
327
328Here are some samples of syntactically valid declarations, with annotation
329as to how they resolve internally into C<use attributes> invocations by
330perl. These examples are primarily useful to see how the "appropriate
331package" is found for the possible method lookups for package-defined
332attributes.
333
334=over 4
335
336=item 1.
337
338Code:
339
340 package Canine;
341 package Dog;
342 my Canine $spot : Watchful ;
343
344Effect:
345
95f0a2f1 346 use attributes ();
347 attributes::->import(Canine => \$spot, "Watchful");
09bef843 348
349=item 2.
350
351Code:
352
353 package Felis;
354 my $cat : Nervous;
355
356Effect:
357
95f0a2f1 358 use attributes ();
359 attributes::->import(Felis => \$cat, "Nervous");
09bef843 360
361=item 3.
362
363Code:
364
365 package X;
366 sub foo : locked ;
367
368Effect:
369
370 use attributes X => \&foo, "locked";
371
372=item 4.
373
374Code:
375
376 package X;
377 sub Y::x : locked { 1 }
378
379Effect:
380
381 use attributes Y => \&Y::x, "locked";
382
383=item 5.
384
385Code:
386
387 package X;
388 sub foo { 1 }
389
390 package Y;
391 BEGIN { *bar = \&X::foo; }
392
393 package Z;
394 sub Y::bar : locked ;
395
396Effect:
397
398 use attributes X => \&X::foo, "locked";
399
400=back
401
402This last example is purely for purposes of completeness. You should not
403be trying to mess with the attributes of something in a package that's
404not your own.
405
406=head1 SEE ALSO
407
408L<perlsub/"Private Variables via my()"> and
409L<perlsub/"Subroutine Attributes"> for details on the basic declarations;
410L<attrs> for the obsolescent form of subroutine attribute specification
411which this module replaces;
412L<perlfunc/use> for details on the normal invocation mechanism.
413
414=cut
415