Deprecate using "unique" with the attributes pragma.
[p5sagit/p5-mst-13.2.git] / ext / attributes / attributes.pm
CommitLineData
09bef843 1package attributes;
2
c32124fe 3our $VERSION = 0.12;
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
f1a3ce43 21my %deprecated;
22$deprecated{CODE} = qr/\A-?(locked)\z/;
23$deprecated{ARRAY} = $deprecated{HASH} = $deprecated{SCALAR}
24 = qr/\A-?(unique)\z/;
25
c32124fe 26sub _modify_attrs_and_deprecate {
27 my $svtype = shift;
28 # Now that we've removed handling of locked from the XS code, we need to
29 # remove it here, else it ends up in @badattrs. (If we do the deprecation in
30 # XS, we can't control the warning based on *our* caller's lexical settings,
31 # and the warned line is in this package)
32 grep {
f1a3ce43 33 $deprecated{$svtype} && /$deprecated{$svtype}/ ? do {
c32124fe 34 require warnings;
f1a3ce43 35 warnings::warnif('deprecated', "Attribute \"$1\" is deprecated");
c32124fe 36 0;
37 } : 1
38 } _modify_attrs(@_);
39}
40
09bef843 41sub import {
26f2972e 42 @_ > 2 && ref $_[2] or do {
43 require Exporter;
44 goto &Exporter::import;
c0c5a66b 45 };
09bef843 46 my (undef,$home_stash,$svref,@attrs) = @_;
47
48 my $svtype = uc reftype($svref);
49 my $pkgmeth;
50 $pkgmeth = UNIVERSAL::can($home_stash, "MODIFY_${svtype}_ATTRIBUTES")
51 if defined $home_stash && $home_stash ne '';
52 my @badattrs;
53 if ($pkgmeth) {
c32124fe 54 my @pkgattrs = _modify_attrs_and_deprecate($svtype, $svref, @attrs);
d5adc3a1 55 @badattrs = $pkgmeth->($home_stash, $svref, @pkgattrs);
09bef843 56 if (!@badattrs && @pkgattrs) {
20f4e289 57 require warnings;
58 return unless warnings::enabled('reserved');
09bef843 59 @pkgattrs = grep { m/\A[[:lower:]]+(?:\z|\()/ } @pkgattrs;
60 if (@pkgattrs) {
61 for my $attr (@pkgattrs) {
62 $attr =~ s/\(.+\z//s;
63 }
64 my $s = ((@pkgattrs == 1) ? '' : 's');
65 carp "$svtype package attribute$s " .
66 "may clash with future reserved word$s: " .
0120eecf 67 join(' : ' , @pkgattrs);
09bef843 68 }
69 }
70 }
71 else {
c32124fe 72 @badattrs = _modify_attrs_and_deprecate($svtype, $svref, @attrs);
09bef843 73 }
74 if (@badattrs) {
75 croak "Invalid $svtype attribute" .
76 (( @badattrs == 1 ) ? '' : 's') .
77 ": " .
0120eecf 78 join(' : ', @badattrs);
09bef843 79 }
80}
81
82sub get ($) {
83 @_ == 1 && ref $_[0] or
84 croak 'Usage: '.__PACKAGE__.'::get $ref';
85 my $svref = shift;
48462a74 86 my $svtype = uc reftype($svref);
87 my $stash = _guess_stash($svref);
09bef843 88 $stash = caller unless defined $stash;
89 my $pkgmeth;
90 $pkgmeth = UNIVERSAL::can($stash, "FETCH_${svtype}_ATTRIBUTES")
91 if defined $stash && $stash ne '';
92 return $pkgmeth ?
93 (_fetch_attrs($svref), $pkgmeth->($stash, $svref)) :
94 (_fetch_attrs($svref))
95 ;
96}
97
26f2972e 98sub require_version { goto &UNIVERSAL::VERSION }
09bef843 99
48462a74 100require XSLoader;
101XSLoader::load('attributes', $VERSION);
102
09bef843 1031;
104__END__
105#The POD goes here
106
107=head1 NAME
108
109attributes - get/set subroutine or variable attributes
110
111=head1 SYNOPSIS
112
113 sub foo : method ;
95f0a2f1 114 my ($x,@y,%z) : Bent = 1;
09bef843 115 my $s = sub : method { ... };
116
117 use attributes (); # optional, to get subroutine declarations
118 my @attrlist = attributes::get(\&foo);
119
26f2972e 120 use attributes 'get'; # import the attributes::get subroutine
121 my @attrlist = get \&foo;
122
09bef843 123=head1 DESCRIPTION
124
125Subroutine declarations and definitions may optionally have attribute lists
126associated with them. (Variable C<my> declarations also may, but see the
127warning below.) Perl handles these declarations by passing some information
128about the call site and the thing being declared along with the attribute
26f2972e 129list to this module. In particular, the first example above is equivalent to
09bef843 130the following:
131
132 use attributes __PACKAGE__, \&foo, 'method';
133
134The second example in the synopsis does something equivalent to this:
135
95f0a2f1 136 use attributes ();
137 my ($x,@y,%z);
138 attributes::->import(__PACKAGE__, \$x, 'Bent');
139 attributes::->import(__PACKAGE__, \@y, 'Bent');
140 attributes::->import(__PACKAGE__, \%z, 'Bent');
141 ($x,@y,%z) = 1;
09bef843 142
95f0a2f1 143Yes, that's a lot of expansion.
09bef843 144
1d2de774 145B<WARNING>: attribute declarations for variables are still evolving.
146The semantics and interfaces of such declarations could change in
147future versions. They are present for purposes of experimentation
09bef843 148with what the semantics ought to be. Do not rely on the current
95f0a2f1 149implementation of this feature.
09bef843 150
151There are only a few attributes currently handled by Perl itself (or
152directly by this module, depending on how you look at it.) However,
153package-specific attributes are allowed by an extension mechanism.
154(See L<"Package-specific Attribute Handling"> below.)
155
95f0a2f1 156The setting of subroutine attributes happens at compile time.
157Variable attributes in C<our> declarations are also applied at compile time.
158However, C<my> variables get their attributes applied at run-time.
159This means that you have to I<reach> the run-time component of the C<my>
160before those attributes will get applied. For example:
161
162 my $x : Bent = 42 if 0;
163
164will neither assign 42 to $x I<nor> will it apply the C<Bent> attribute
165to the variable.
166
1d2de774 167An attempt to set an unrecognized attribute is a fatal error. (The
168error is trappable, but it still stops the compilation within that
169C<eval>.) Setting an attribute with a name that's all lowercase
170letters that's not a built-in attribute (such as "foo") will result in
171a warning with B<-w> or C<use warnings 'reserved'>.
09bef843 172
a911a0f8 173=head2 What C<import> does
174
175In the description it is mentioned that
176
177 sub foo : method;
178
179is equivalent to
180
181 use attributes __PACKAGE__, \&foo, 'method';
182
183As you might know this calls the C<import> function of C<attributes> at compile
184time with these parameters: 'attributes', the caller's package name, the reference
185to the code and 'method'.
186
187 attributes->import( __PACKAGE__, \&foo, 'method' );
188
189So you want to know what C<import> actually does?
190
191First of all C<import> gets the type of the third parameter ('CODE' in this case).
192C<attributes.pm> checks if there is a subroutine called C<< MODIFY_<reftype>_ATTRIBUTES >>
193in the caller's namespace (here: 'main'). In this case a subroutine C<MODIFY_CODE_ATTRIBUTES> is
194required. Then this method is called to check if you have used a "bad attribute".
195The subroutine call in this example would look like
196
197 MODIFY_CODE_ATTRIBUTES( 'main', \&foo, 'method' );
198
199C<< MODIFY_<reftype>_ATTRIBUTES >> has to return a list of all "bad attributes".
200If there are any bad attributes C<import> croaks.
201
202(See L<"Package-specific Attribute Handling"> below.)
203
09bef843 204=head2 Built-in Attributes
205
206The following are the built-in attributes for subroutines:
207
208=over 4
209
0a8c518d 210=item lvalue
cef7f621 211
0a8c518d 212Indicates that the referenced subroutine is a valid lvalue and can
213be assigned to. The subroutine must return a modifiable value such
214as a scalar variable, as described in L<perlsub>.
09bef843 215
216=item method
217
0a8c518d 218Indicates that the referenced subroutine is a method. A subroutine so marked
09bef843 219will not trigger the "Ambiguous call resolved as CORE::%s" warning.
220
0a8c518d 221=item locked
89752b9c 222
0a8c518d 223The "locked" attribute has no effect in 5.10.0 and later. It was used as part
224of the now-removed "Perl 5.005 threads".
89752b9c 225
09bef843 226=back
227
307ea6df 228For global variables there is C<unique> attribute: see L<perlfunc/our>.
95f0a2f1 229
09bef843 230=head2 Available Subroutines
231
232The following subroutines are available for general use once this module
233has been loaded:
234
235=over 4
236
237=item get
238
239This routine expects a single parameter--a reference to a
240subroutine or variable. It returns a list of attributes, which may be
241empty. If passed invalid arguments, it uses die() (via L<Carp::croak|Carp>)
242to raise a fatal exception. If it can find an appropriate package name
243for a class method lookup, it will include the results from a
244C<FETCH_I<type>_ATTRIBUTES> call in its return list, as described in
26f2972e 245L<"Package-specific Attribute Handling"> below.
09bef843 246Otherwise, only L<built-in attributes|"Built-in Attributes"> will be returned.
247
248=item reftype
249
250This routine expects a single parameter--a reference to a subroutine or
251variable. It returns the built-in type of the referenced variable,
252ignoring any package into which it might have been blessed.
253This can be useful for determining the I<type> value which forms part of
26f2972e 254the method names described in L<"Package-specific Attribute Handling"> below.
09bef843 255
256=back
257
26f2972e 258Note that these routines are I<not> exported by default.
09bef843 259
260=head2 Package-specific Attribute Handling
261
262B<WARNING>: the mechanisms described here are still experimental. Do not
263rely on the current implementation. In particular, there is no provision
264for applying package attributes to 'cloned' copies of subroutines used as
265closures. (See L<perlref/"Making References"> for information on closures.)
266Package-specific attribute handling may change incompatibly in a future
267release.
268
269When an attribute list is present in a declaration, a check is made to see
270whether an attribute 'modify' handler is present in the appropriate package
271(or its @ISA inheritance tree). Similarly, when C<attributes::get> is
272called on a valid reference, a check is made for an appropriate attribute
273'fetch' handler. See L<"EXAMPLES"> to see how the "appropriate package"
274determination works.
275
276The handler names are based on the underlying type of the variable being
277declared or of the reference passed. Because these attributes are
278associated with subroutine or variable declarations, this deliberately
279ignores any possibility of being blessed into some package. Thus, a
280subroutine declaration uses "CODE" as its I<type>, and even a blessed
281hash reference uses "HASH" as its I<type>.
282
283The class methods invoked for modifying and fetching are these:
284
285=over 4
286
287=item FETCH_I<type>_ATTRIBUTES
288
630ad279 289This method is called with two arguments: the relevant package name,
290and a reference to a variable or subroutine for which package-defined
291attributes are desired. The expected return value is a list of
292associated attributes. This list may be empty.
09bef843 293
294=item MODIFY_I<type>_ATTRIBUTES
295
296This method is called with two fixed arguments, followed by the list of
297attributes from the relevant declaration. The two fixed arguments are
298the relevant package name and a reference to the declared subroutine or
fd40b977 299variable. The expected return value is a list of attributes which were
09bef843 300not recognized by this handler. Note that this allows for a derived class
301to delegate a call to its base class, and then only examine the attributes
302which the base class didn't already handle for it.
303
304The call to this method is currently made I<during> the processing of the
305declaration. In particular, this means that a subroutine reference will
306probably be for an undefined subroutine, even if this declaration is
307actually part of the definition.
308
309=back
310
311Calling C<attributes::get()> from within the scope of a null package
312declaration C<package ;> for an unblessed variable reference will
313not provide any starting package name for the 'fetch' method lookup.
314Thus, this circumstance will not result in a method call for package-defined
315attributes. A named subroutine knows to which symbol table entry it belongs
316(or originally belonged), and it will use the corresponding package.
317An anonymous subroutine knows the package name into which it was compiled
318(unless it was also compiled with a null package declaration), and so it
319will use that package name.
320
321=head2 Syntax of Attribute Lists
322
323An attribute list is a sequence of attribute specifications, separated by
0120eecf 324whitespace or a colon (with optional whitespace).
325Each attribute specification is a simple
09bef843 326name, optionally followed by a parenthesised parameter list.
327If such a parameter list is present, it is scanned past as for the rules
328for the C<q()> operator. (See L<perlop/"Quote and Quote-like Operators">.)
329The parameter list is passed as it was found, however, and not as per C<q()>.
330
331Some examples of syntactically valid attribute lists:
332
0120eecf 333 switch(10,foo(7,3)) : expensive
334 Ugly('\(") :Bad
09bef843 335 _5x5
336 locked method
337
338Some examples of syntactically invalid attribute lists (with annotation):
339
340 switch(10,foo() # ()-string not balanced
341 Ugly('(') # ()-string not balanced
342 5x5 # "5x5" not a valid identifier
343 Y2::north # "Y2::north" not a simple identifier
0120eecf 344 foo + bar # "+" neither a colon nor whitespace
09bef843 345
26f2972e 346=head1 EXPORTS
347
348=head2 Default exports
349
350None.
351
352=head2 Available exports
353
354The routines C<get> and C<reftype> are exportable.
355
356=head2 Export tags defined
357
358The C<:ALL> tag will get all of the above exports.
359
09bef843 360=head1 EXAMPLES
361
362Here are some samples of syntactically valid declarations, with annotation
363as to how they resolve internally into C<use attributes> invocations by
364perl. These examples are primarily useful to see how the "appropriate
365package" is found for the possible method lookups for package-defined
366attributes.
367
368=over 4
369
370=item 1.
371
372Code:
373
374 package Canine;
375 package Dog;
376 my Canine $spot : Watchful ;
377
378Effect:
379
95f0a2f1 380 use attributes ();
381 attributes::->import(Canine => \$spot, "Watchful");
09bef843 382
383=item 2.
384
385Code:
386
387 package Felis;
388 my $cat : Nervous;
389
390Effect:
391
95f0a2f1 392 use attributes ();
393 attributes::->import(Felis => \$cat, "Nervous");
09bef843 394
395=item 3.
396
397Code:
398
399 package X;
400 sub foo : locked ;
401
402Effect:
403
404 use attributes X => \&foo, "locked";
405
406=item 4.
407
408Code:
409
410 package X;
411 sub Y::x : locked { 1 }
412
413Effect:
414
415 use attributes Y => \&Y::x, "locked";
416
417=item 5.
418
419Code:
420
421 package X;
422 sub foo { 1 }
423
424 package Y;
425 BEGIN { *bar = \&X::foo; }
426
427 package Z;
428 sub Y::bar : locked ;
429
430Effect:
431
432 use attributes X => \&X::foo, "locked";
433
434=back
435
436This last example is purely for purposes of completeness. You should not
437be trying to mess with the attributes of something in a package that's
438not your own.
439
a911a0f8 440=head1 MORE EXAMPLES
441
442=over 4
443
444=item 1.
445
446 sub MODIFY_CODE_ATTRIBUTES {
447 my ($class,$code,@attrs) = @_;
448
449 my $allowed = 'MyAttribute';
450 my @bad = grep { $_ ne $allowed } @attrs;
451
452 return @bad;
453 }
454
455 sub foo : MyAttribute {
456 print "foo\n";
457 }
458
459This example runs. At compile time C<MODIFY_CODE_ATTRIBUTES> is called. In that
460subroutine, we check if any attribute is disallowed and we return a list of
461these "bad attributes".
462
463As we return an empty list, everything is fine.
464
465=item 2.
466
467 sub MODIFY_CODE_ATTRIBUTES {
468 my ($class,$code,@attrs) = @_;
469
470 my $allowed = 'MyAttribute';
471 my @bad = grep{ $_ ne $allowed }@attrs;
472
473 return @bad;
474 }
475
476 sub foo : MyAttribute Test {
477 print "foo\n";
478 }
479
480This example is aborted at compile time as we use the attribute "Test" which
481isn't allowed. C<MODIFY_CODE_ATTRIBUTES> returns a list that contains a single
482element ('Test').
483
484=back
485
09bef843 486=head1 SEE ALSO
487
488L<perlsub/"Private Variables via my()"> and
489L<perlsub/"Subroutine Attributes"> for details on the basic declarations;
490L<attrs> for the obsolescent form of subroutine attribute specification
491which this module replaces;
492L<perlfunc/use> for details on the normal invocation mechanism.
493
494=cut