Note that Larry has clarified the reasons for the Perl 6 design on
[p5sagit/p5-mst-13.2.git] / lib / Attribute / Handlers.pm
CommitLineData
0e9b9e0c 1package Attribute::Handlers;
2use 5.006;
3use Carp;
4use warnings;
d6e4b61b 5use strict;
6use vars qw($VERSION $AUTOLOAD);
27f617cb 7$VERSION = '0.79';
0e9b9e0c 8# $DB::single=1;
9
10my %symcache;
11sub findsym {
12 my ($pkg, $ref, $type) = @_;
13 return $symcache{$pkg,$ref} if $symcache{$pkg,$ref};
14 $type ||= ref($ref);
15 my $found;
d6e4b61b 16 no strict 'refs';
0e9b9e0c 17 foreach my $sym ( values %{$pkg."::"} ) {
d6e4b61b 18 use strict;
39c882db 19 next unless ref ( \$sym ) eq 'GLOB';
0e9b9e0c 20 return $symcache{$pkg,$ref} = \$sym
21 if *{$sym}{$type} && *{$sym}{$type} == $ref;
22 }
23}
24
25my %validtype = (
26 VAR => [qw[SCALAR ARRAY HASH]],
27 ANY => [qw[SCALAR ARRAY HASH CODE]],
28 "" => [qw[SCALAR ARRAY HASH CODE]],
29 SCALAR => [qw[SCALAR]],
30 ARRAY => [qw[ARRAY]],
31 HASH => [qw[HASH]],
32 CODE => [qw[CODE]],
33);
34my %lastattr;
35my @declarations;
36my %raw;
37my %phase;
38my %sigil = (SCALAR=>'$', ARRAY=>'@', HASH=>'%');
39my $global_phase = 0;
40my %global_phases = (
41 BEGIN => 0,
42 CHECK => 1,
43 INIT => 2,
44 END => 3,
45);
46my @global_phases = qw(BEGIN CHECK INIT END);
47
48sub _usage_AH_ {
49 croak "Usage: use $_[0] autotie => {AttrName => TieClassName,...}";
50}
51
52my $qual_id = qr/^[_a-z]\w*(::[_a-z]\w*)*$/i;
53
54sub import {
55 my $class = shift @_;
56 return unless $class eq "Attribute::Handlers";
57 while (@_) {
58 my $cmd = shift;
59 if ($cmd =~ /^autotie((?:ref)?)$/) {
60 my $tiedata = ($1 ? '$ref, ' : '') . '@$data';
61 my $mapping = shift;
62 _usage_AH_ $class unless ref($mapping) eq 'HASH';
63 while (my($attr, $tieclass) = each %$mapping) {
64 $tieclass =~ s/^([_a-z]\w*(::[_a-z]\w*)*)(.*)/$1/is;
65 my $args = $3||'()';
66 _usage_AH_ $class unless $attr =~ $qual_id
67 && $tieclass =~ $qual_id
d6e4b61b 68 && eval "use base q\0$tieclass\0; 1";
0e9b9e0c 69 if ($tieclass->isa('Exporter')) {
70 local $Exporter::ExportLevel = 2;
71 $tieclass->import(eval $args);
72 }
73 $attr =~ s/__CALLER__/caller(1)/e;
74 $attr = caller()."::".$attr unless $attr =~ /::/;
75 eval qq{
76 sub $attr : ATTR(VAR) {
77 my (\$ref, \$data) = \@_[2,4];
78 my \$was_arrayref = ref \$data eq 'ARRAY';
79 \$data = [ \$data ] unless \$was_arrayref;
80 my \$type = ref(\$ref)||"value (".(\$ref||"<undef>").")";
81 (\$type eq 'SCALAR')? tie \$\$ref,'$tieclass',$tiedata
82 :(\$type eq 'ARRAY') ? tie \@\$ref,'$tieclass',$tiedata
83 :(\$type eq 'HASH') ? tie \%\$ref,'$tieclass',$tiedata
84 : die "Can't autotie a \$type\n"
85 } 1
86 } or die "Internal error: $@";
87 }
88 }
89 else {
90 croak "Can't understand $_";
91 }
92 }
93}
94sub _resolve_lastattr {
95 return unless $lastattr{ref};
96 my $sym = findsym @lastattr{'pkg','ref'}
97 or die "Internal error: $lastattr{pkg} symbol went missing";
98 my $name = *{$sym}{NAME};
99 warn "Declaration of $name attribute in package $lastattr{pkg} may clash with future reserved word\n"
100 if $^W and $name !~ /[A-Z]/;
101 foreach ( @{$validtype{$lastattr{type}}} ) {
d6e4b61b 102 no strict 'refs';
0e9b9e0c 103 *{"$lastattr{pkg}::_ATTR_${_}_${name}"} = $lastattr{ref};
104 }
105 %lastattr = ();
106}
107
108sub AUTOLOAD {
ac8e8084 109 return if $AUTOLOAD =~ /::DESTROY$/;
0e9b9e0c 110 my ($class) = $AUTOLOAD =~ m/(.*)::/g;
111 $AUTOLOAD =~ m/_ATTR_(.*?)_(.*)/ or
112 croak "Can't locate class method '$AUTOLOAD' via package '$class'";
4da5364c 113 croak "Attribute handler '$2' doesn't handle $1 attributes";
0e9b9e0c 114}
115
5ddc4af4 116my $builtin = qr/lvalue|method|locked|unique|shared/;
0e9b9e0c 117
118sub _gen_handler_AH_() {
119 return sub {
120 _resolve_lastattr;
121 my ($pkg, $ref, @attrs) = @_;
cab6c672 122 my (undef, $filename, $linenum) = caller 2;
0e9b9e0c 123 foreach (@attrs) {
124 my ($attr, $data) = /^([a-z_]\w*)(?:[(](.*)[)])?$/is or next;
125 if ($attr eq 'ATTR') {
d6e4b61b 126 no strict 'refs';
0e9b9e0c 127 $data ||= "ANY";
128 $raw{$ref} = $data =~ s/\s*,?\s*RAWDATA\s*,?\s*//;
129 $phase{$ref}{BEGIN} = 1
130 if $data =~ s/\s*,?\s*(BEGIN)\s*,?\s*//;
131 $phase{$ref}{INIT} = 1
132 if $data =~ s/\s*,?\s*(INIT)\s*,?\s*//;
133 $phase{$ref}{END} = 1
134 if $data =~ s/\s*,?\s*(END)\s*,?\s*//;
135 $phase{$ref}{CHECK} = 1
136 if $data =~ s/\s*,?\s*(CHECK)\s*,?\s*//
137 || ! keys %{$phase{$ref}};
138 # Added for cleanup to not pollute next call.
139 (%lastattr = ()),
140 croak "Can't have two ATTR specifiers on one subroutine"
141 if keys %lastattr;
142 croak "Bad attribute type: ATTR($data)"
143 unless $validtype{$data};
144 %lastattr=(pkg=>$pkg,ref=>$ref,type=>$data);
145 }
146 else {
c760c918 147 my $type = ref $ref;
148 my $handler = $pkg->can("_ATTR_${type}_${attr}");
0e9b9e0c 149 next unless $handler;
150 my $decl = [$pkg, $ref, $attr, $data,
cab6c672 151 $raw{$handler}, $phase{$handler}, $filename, $linenum];
0e9b9e0c 152 foreach my $gphase (@global_phases) {
153 _apply_handler_AH_($decl,$gphase)
154 if $global_phases{$gphase} <= $global_phase;
155 }
24952a9c 156 if ($global_phase != 0) {
157 # if _gen_handler_AH_ is being called after
158 # CHECK it's for a lexical, so make sure
159 # it didn't want to run anything later
160
161 local $Carp::CarpLevel = 2;
162 carp "Won't be able to apply END handler"
163 if $phase{$handler}{END};
164 }
165 else {
166 push @declarations, $decl
167 }
0e9b9e0c 168 }
169 $_ = undef;
170 }
171 return grep {defined && !/$builtin/} @attrs;
172 }
173}
174
d6e4b61b 175{
176 no strict 'refs';
177 *{"Attribute::Handlers::UNIVERSAL::MODIFY_${_}_ATTRIBUTES"} =
178 _gen_handler_AH_ foreach @{$validtype{ANY}};
179}
290b54b8 180push @UNIVERSAL::ISA, 'Attribute::Handlers::UNIVERSAL'
181 unless grep /^Attribute::Handlers::UNIVERSAL$/, @UNIVERSAL::ISA;
0e9b9e0c 182
183sub _apply_handler_AH_ {
184 my ($declaration, $phase) = @_;
cab6c672 185 my ($pkg, $ref, $attr, $data, $raw, $handlerphase, $filename, $linenum) = @$declaration;
0e9b9e0c 186 return unless $handlerphase->{$phase};
187 # print STDERR "Handling $attr on $ref in $phase with [$data]\n";
188 my $type = ref $ref;
189 my $handler = "_ATTR_${type}_${attr}";
190 my $sym = findsym($pkg, $ref);
191 $sym ||= $type eq 'CODE' ? 'ANON' : 'LEXICAL';
192 no warnings;
1313c7b1 193 my $evaled = !$raw && eval("package $pkg; no warnings; no strict;
194 local \$SIG{__WARN__}=sub{die}; [$data]");
195 $data = $evaled || [$data];
0e9b9e0c 196 $pkg->$handler($sym,
197 (ref $sym eq 'GLOB' ? *{$sym}{ref $ref}||$ref : $ref),
198 $attr,
199 (@$data>1? $data : $data->[0]),
200 $phase,
cab6c672 201 $filename,
202 $linenum,
0e9b9e0c 203 );
204 return 1;
205}
206
ba690e32 207{
208 no warnings 'void';
209 CHECK {
210 $global_phase++;
211 _resolve_lastattr;
212 _apply_handler_AH_($_,'CHECK') foreach @declarations;
213 }
0e9b9e0c 214
ba690e32 215 INIT {
216 $global_phase++;
217 _apply_handler_AH_($_,'INIT') foreach @declarations
218 }
219}
0e9b9e0c 220
221END { $global_phase++; _apply_handler_AH_($_,'END') foreach @declarations }
222
2231;
224__END__
225
226=head1 NAME
227
228Attribute::Handlers - Simpler definition of attribute handlers
229
230=head1 VERSION
231
2fb96b09 232This document describes version 0.79 of Attribute::Handlers,
233released November 25, 2007.
0e9b9e0c 234
235=head1 SYNOPSIS
236
237 package MyClass;
238 require v5.6.0;
239 use Attribute::Handlers;
240 no warnings 'redefine';
241
242
243 sub Good : ATTR(SCALAR) {
244 my ($package, $symbol, $referent, $attr, $data) = @_;
245
246 # Invoked for any scalar variable with a :Good attribute,
247 # provided the variable was declared in MyClass (or
248 # a derived class) or typed to MyClass.
249
250 # Do whatever to $referent here (executed in CHECK phase).
251 ...
252 }
253
254 sub Bad : ATTR(SCALAR) {
255 # Invoked for any scalar variable with a :Bad attribute,
256 # provided the variable was declared in MyClass (or
257 # a derived class) or typed to MyClass.
258 ...
259 }
260
261 sub Good : ATTR(ARRAY) {
262 # Invoked for any array variable with a :Good attribute,
263 # provided the variable was declared in MyClass (or
264 # a derived class) or typed to MyClass.
265 ...
266 }
267
268 sub Good : ATTR(HASH) {
269 # Invoked for any hash variable with a :Good attribute,
270 # provided the variable was declared in MyClass (or
271 # a derived class) or typed to MyClass.
272 ...
273 }
274
275 sub Ugly : ATTR(CODE) {
276 # Invoked for any subroutine declared in MyClass (or a
277 # derived class) with an :Ugly attribute.
278 ...
279 }
280
281 sub Omni : ATTR {
282 # Invoked for any scalar, array, hash, or subroutine
283 # with an :Omni attribute, provided the variable or
284 # subroutine was declared in MyClass (or a derived class)
285 # or the variable was typed to MyClass.
286 # Use ref($_[2]) to determine what kind of referent it was.
287 ...
288 }
289
290
291 use Attribute::Handlers autotie => { Cycle => Tie::Cycle };
292
293 my $next : Cycle(['A'..'Z']);
294
295
296=head1 DESCRIPTION
297
298This module, when inherited by a package, allows that package's class to
299define attribute handler subroutines for specific attributes. Variables
300and subroutines subsequently defined in that package, or in packages
301derived from that package may be given attributes with the same names as
302the attribute handler subroutines, which will then be called in one of
303the compilation phases (i.e. in a C<BEGIN>, C<CHECK>, C<INIT>, or C<END>
6d9eb87b 304block). (C<UNITCHECK> blocks don't correspond to a global compilation
305phase, so they can't be specified here.)
0e9b9e0c 306
307To create a handler, define it as a subroutine with the same name as
308the desired attribute, and declare the subroutine itself with the
309attribute C<:ATTR>. For example:
310
cab6c672 311 package LoudDecl;
312 use Attribute::Handlers;
313
314 sub Loud :ATTR {
315 my ($package, $symbol, $referent, $attr, $data, $phase, $filename, $linenum) = @_;
316 print STDERR
317 ref($referent), " ",
318 *{$symbol}{NAME}, " ",
319 "($referent) ", "was just declared ",
320 "and ascribed the ${attr} attribute ",
321 "with data ($data)\n",
322 "in phase $phase\n",
323 "in file $filename at line $linenum\n";
324 }
0e9b9e0c 325
326This creates a handler for the attribute C<:Loud> in the class LoudDecl.
327Thereafter, any subroutine declared with a C<:Loud> attribute in the class
328LoudDecl:
329
330 package LoudDecl;
331
332 sub foo: Loud {...}
333
334causes the above handler to be invoked, and passed:
335
336=over
337
338=item [0]
339
340the name of the package into which it was declared;
341
342=item [1]
343
344a reference to the symbol table entry (typeglob) containing the subroutine;
345
346=item [2]
347
348a reference to the subroutine;
349
350=item [3]
351
352the name of the attribute;
353
354=item [4]
355
356any data associated with that attribute;
357
358=item [5]
359
cab6c672 360the name of the phase in which the handler is being invoked;
361
362=item [6]
363
364the filename in which the handler is being invoked;
365
366=item [7]
367
368the line number in this file.
0e9b9e0c 369
370=back
371
372Likewise, declaring any variables with the C<:Loud> attribute within the
373package:
374
375 package LoudDecl;
376
377 my $foo :Loud;
378 my @foo :Loud;
379 my %foo :Loud;
380
381will cause the handler to be called with a similar argument list (except,
382of course, that C<$_[2]> will be a reference to the variable).
383
384The package name argument will typically be the name of the class into
385which the subroutine was declared, but it may also be the name of a derived
386class (since handlers are inherited).
387
388If a lexical variable is given an attribute, there is no symbol table to
389which it belongs, so the symbol table argument (C<$_[1]>) is set to the
390string C<'LEXICAL'> in that case. Likewise, ascribing an attribute to
391an anonymous subroutine results in a symbol table argument of C<'ANON'>.
392
393The data argument passes in the value (if any) associated with the
394attribute. For example, if C<&foo> had been declared:
395
396 sub foo :Loud("turn it up to 11, man!") {...}
397
398then the string C<"turn it up to 11, man!"> would be passed as the
399last argument.
400
401Attribute::Handlers makes strenuous efforts to convert
402the data argument (C<$_[4]>) to a useable form before passing it to
403the handler (but see L<"Non-interpretive attribute handlers">).
404For example, all of these:
405
406 sub foo :Loud(till=>ears=>are=>bleeding) {...}
407 sub foo :Loud(['till','ears','are','bleeding']) {...}
408 sub foo :Loud(qw/till ears are bleeding/) {...}
409 sub foo :Loud(qw/my, ears, are, bleeding/) {...}
410 sub foo :Loud(till,ears,are,bleeding) {...}
411
412causes it to pass C<['till','ears','are','bleeding']> as the handler's
413data argument. However, if the data can't be parsed as valid Perl, then
414it is passed as an uninterpreted string. For example:
415
416 sub foo :Loud(my,ears,are,bleeding) {...}
417 sub foo :Loud(qw/my ears are bleeding) {...}
418
419cause the strings C<'my,ears,are,bleeding'> and C<'qw/my ears are bleeding'>
420respectively to be passed as the data argument.
421
422If the attribute has only a single associated scalar data value, that value is
423passed as a scalar. If multiple values are associated, they are passed as an
424array reference. If no value is associated with the attribute, C<undef> is
425passed.
426
427
428=head2 Typed lexicals
429
430Regardless of the package in which it is declared, if a lexical variable is
431ascribed an attribute, the handler that is invoked is the one belonging to
432the package to which it is typed. For example, the following declarations:
433
434 package OtherClass;
435
436 my LoudDecl $loudobj : Loud;
437 my LoudDecl @loudobjs : Loud;
438 my LoudDecl %loudobjex : Loud;
439
440causes the LoudDecl::Loud handler to be invoked (even if OtherClass also
441defines a handler for C<:Loud> attributes).
442
443
444=head2 Type-specific attribute handlers
445
446If an attribute handler is declared and the C<:ATTR> specifier is
447given the name of a built-in type (C<SCALAR>, C<ARRAY>, C<HASH>, or C<CODE>),
448the handler is only applied to declarations of that type. For example,
449the following definition:
450
451 package LoudDecl;
452
453 sub RealLoud :ATTR(SCALAR) { print "Yeeeeow!" }
454
455creates an attribute handler that applies only to scalars:
456
457
458 package Painful;
459 use base LoudDecl;
460
461 my $metal : RealLoud; # invokes &LoudDecl::RealLoud
462 my @metal : RealLoud; # error: unknown attribute
463 my %metal : RealLoud; # error: unknown attribute
464 sub metal : RealLoud {...} # error: unknown attribute
465
466You can, of course, declare separate handlers for these types as well
467(but you'll need to specify C<no warnings 'redefine'> to do it quietly):
468
469 package LoudDecl;
470 use Attribute::Handlers;
471 no warnings 'redefine';
472
473 sub RealLoud :ATTR(SCALAR) { print "Yeeeeow!" }
474 sub RealLoud :ATTR(ARRAY) { print "Urrrrrrrrrr!" }
475 sub RealLoud :ATTR(HASH) { print "Arrrrrgggghhhhhh!" }
476 sub RealLoud :ATTR(CODE) { croak "Real loud sub torpedoed" }
477
478You can also explicitly indicate that a single handler is meant to be
479used for all types of referents like so:
480
481 package LoudDecl;
482 use Attribute::Handlers;
483
484 sub SeriousLoud :ATTR(ANY) { warn "Hearing loss imminent" }
485
486(I.e. C<ATTR(ANY)> is a synonym for C<:ATTR>).
487
488
489=head2 Non-interpretive attribute handlers
490
491Occasionally the strenuous efforts Attribute::Handlers makes to convert
492the data argument (C<$_[4]>) to a useable form before passing it to
493the handler get in the way.
494
495You can turn off that eagerness-to-help by declaring
496an attribute handler with the keyword C<RAWDATA>. For example:
497
498 sub Raw : ATTR(RAWDATA) {...}
499 sub Nekkid : ATTR(SCALAR,RAWDATA) {...}
500 sub Au::Naturale : ATTR(RAWDATA,ANY) {...}
501
502Then the handler makes absolutely no attempt to interpret the data it
503receives and simply passes it as a string:
504
505 my $power : Raw(1..100); # handlers receives "1..100"
506
507=head2 Phase-specific attribute handlers
508
509By default, attribute handlers are called at the end of the compilation
510phase (in a C<CHECK> block). This seems to be optimal in most cases because
511most things that can be defined are defined by that point but nothing has
512been executed.
513
514However, it is possible to set up attribute handlers that are called at
515other points in the program's compilation or execution, by explicitly
516stating the phase (or phases) in which you wish the attribute handler to
517be called. For example:
518
519 sub Early :ATTR(SCALAR,BEGIN) {...}
520 sub Normal :ATTR(SCALAR,CHECK) {...}
521 sub Late :ATTR(SCALAR,INIT) {...}
522 sub Final :ATTR(SCALAR,END) {...}
523 sub Bookends :ATTR(SCALAR,BEGIN,END) {...}
524
525As the last example indicates, a handler may be set up to be (re)called in
526two or more phases. The phase name is passed as the handler's final argument.
527
528Note that attribute handlers that are scheduled for the C<BEGIN> phase
529are handled as soon as the attribute is detected (i.e. before any
530subsequently defined C<BEGIN> blocks are executed).
531
532
533=head2 Attributes as C<tie> interfaces
534
535Attributes make an excellent and intuitive interface through which to tie
536variables. For example:
537
538 use Attribute::Handlers;
539 use Tie::Cycle;
540
541 sub UNIVERSAL::Cycle : ATTR(SCALAR) {
542 my ($package, $symbol, $referent, $attr, $data, $phase) = @_;
543 $data = [ $data ] unless ref $data eq 'ARRAY';
544 tie $$referent, 'Tie::Cycle', $data;
545 }
546
547 # and thereafter...
548
549 package main;
550
551 my $next : Cycle('A'..'Z'); # $next is now a tied variable
552
553 while (<>) {
554 print $next;
555 }
556
557Note that, because the C<Cycle> attribute receives its arguments in the
558C<$data> variable, if the attribute is given a list of arguments, C<$data>
559will consist of a single array reference; otherwise, it will consist of the
560single argument directly. Since Tie::Cycle requires its cycling values to
561be passed as an array reference, this means that we need to wrap
562non-array-reference arguments in an array constructor:
563
564 $data = [ $data ] unless ref $data eq 'ARRAY';
565
566Typically, however, things are the other way around: the tieable class expects
567its arguments as a flattened list, so the attribute looks like:
568
569 sub UNIVERSAL::Cycle : ATTR(SCALAR) {
570 my ($package, $symbol, $referent, $attr, $data, $phase) = @_;
571 my @data = ref $data eq 'ARRAY' ? @$data : $data;
572 tie $$referent, 'Tie::Whatever', @data;
573 }
574
575
576This software pattern is so widely applicable that Attribute::Handlers
577provides a way to automate it: specifying C<'autotie'> in the
578C<use Attribute::Handlers> statement. So, the cycling example,
579could also be written:
580
581 use Attribute::Handlers autotie => { Cycle => 'Tie::Cycle' };
582
583 # and thereafter...
584
585 package main;
586
587 my $next : Cycle(['A'..'Z']); # $next is now a tied variable
588
589 while (<>) {
590 print $next;
591
592Note that we now have to pass the cycling values as an array reference,
593since the C<autotie> mechanism passes C<tie> a list of arguments as a list
594(as in the Tie::Whatever example), I<not> as an array reference (as in
595the original Tie::Cycle example at the start of this section).
596
597The argument after C<'autotie'> is a reference to a hash in which each key is
598the name of an attribute to be created, and each value is the class to which
599variables ascribed that attribute should be tied.
600
601Note that there is no longer any need to import the Tie::Cycle module --
602Attribute::Handlers takes care of that automagically. You can even pass
603arguments to the module's C<import> subroutine, by appending them to the
604class name. For example:
605
606 use Attribute::Handlers
607 autotie => { Dir => 'Tie::Dir qw(DIR_UNLINK)' };
608
609If the attribute name is unqualified, the attribute is installed in the
610current package. Otherwise it is installed in the qualifier's package:
611
612 package Here;
613
614 use Attribute::Handlers autotie => {
615 Other::Good => Tie::SecureHash, # tie attr installed in Other::
616 Bad => Tie::Taxes, # tie attr installed in Here::
617 UNIVERSAL::Ugly => Software::Patent # tie attr installed everywhere
618 };
619
620Autoties are most commonly used in the module to which they actually tie,
621and need to export their attributes to any module that calls them. To
3c4b39be 622facilitate this, Attribute::Handlers recognizes a special "pseudo-class" --
0e9b9e0c 623C<__CALLER__>, which may be specified as the qualifier of an attribute:
624
625 package Tie::Me::Kangaroo:Down::Sport;
626
f903cfef 627 use Attribute::Handlers autotie => { '__CALLER__::Roo' => __PACKAGE__ };
0e9b9e0c 628
629This causes Attribute::Handlers to define the C<Roo> attribute in the package
630that imports the Tie::Me::Kangaroo:Down::Sport module.
631
f903cfef 632Note that it is important to quote the __CALLER__::Roo identifier because
633a bug in perl 5.8 will refuse to parse it and cause an unknown error.
634
0e9b9e0c 635=head3 Passing the tied object to C<tie>
636
637Occasionally it is important to pass a reference to the object being tied
638to the TIESCALAR, TIEHASH, etc. that ties it.
639
640The C<autotie> mechanism supports this too. The following code:
641
642 use Attribute::Handlers autotieref => { Selfish => Tie::Selfish };
643 my $var : Selfish(@args);
644
645has the same effect as:
646
647 tie my $var, 'Tie::Selfish', @args;
648
649But when C<"autotieref"> is used instead of C<"autotie">:
650
651 use Attribute::Handlers autotieref => { Selfish => Tie::Selfish };
652 my $var : Selfish(@args);
653
654the effect is to pass the C<tie> call an extra reference to the variable
655being tied:
656
657 tie my $var, 'Tie::Selfish', \$var, @args;
658
659
660
661=head1 EXAMPLES
662
663If the class shown in L<SYNOPSIS> were placed in the MyClass.pm
664module, then the following code:
665
666 package main;
667 use MyClass;
668
669 my MyClass $slr :Good :Bad(1**1-1) :Omni(-vorous);
670
671 package SomeOtherClass;
672 use base MyClass;
673
674 sub tent { 'acle' }
675
676 sub fn :Ugly(sister) :Omni('po',tent()) {...}
677 my @arr :Good :Omni(s/cie/nt/);
678 my %hsh :Good(q/bye) :Omni(q/bus/);
679
680
681would cause the following handlers to be invoked:
682
683 # my MyClass $slr :Good :Bad(1**1-1) :Omni(-vorous);
684
685 MyClass::Good:ATTR(SCALAR)( 'MyClass', # class
686 'LEXICAL', # no typeglob
687 \$slr, # referent
688 'Good', # attr name
689 undef # no attr data
690 'CHECK', # compiler phase
691 );
692
693 MyClass::Bad:ATTR(SCALAR)( 'MyClass', # class
694 'LEXICAL', # no typeglob
695 \$slr, # referent
696 'Bad', # attr name
697 0 # eval'd attr data
698 'CHECK', # compiler phase
699 );
700
701 MyClass::Omni:ATTR(SCALAR)( 'MyClass', # class
702 'LEXICAL', # no typeglob
703 \$slr, # referent
704 'Omni', # attr name
705 '-vorous' # eval'd attr data
706 'CHECK', # compiler phase
707 );
708
709
710 # sub fn :Ugly(sister) :Omni('po',tent()) {...}
711
712 MyClass::UGLY:ATTR(CODE)( 'SomeOtherClass', # class
713 \*SomeOtherClass::fn, # typeglob
714 \&SomeOtherClass::fn, # referent
715 'Ugly', # attr name
716 'sister' # eval'd attr data
717 'CHECK', # compiler phase
718 );
719
720 MyClass::Omni:ATTR(CODE)( 'SomeOtherClass', # class
721 \*SomeOtherClass::fn, # typeglob
722 \&SomeOtherClass::fn, # referent
723 'Omni', # attr name
724 ['po','acle'] # eval'd attr data
725 'CHECK', # compiler phase
726 );
727
728
729 # my @arr :Good :Omni(s/cie/nt/);
730
731 MyClass::Good:ATTR(ARRAY)( 'SomeOtherClass', # class
732 'LEXICAL', # no typeglob
733 \@arr, # referent
734 'Good', # attr name
735 undef # no attr data
736 'CHECK', # compiler phase
737 );
738
739 MyClass::Omni:ATTR(ARRAY)( 'SomeOtherClass', # class
740 'LEXICAL', # no typeglob
741 \@arr, # referent
742 'Omni', # attr name
743 "" # eval'd attr data
744 'CHECK', # compiler phase
745 );
746
747
748 # my %hsh :Good(q/bye) :Omni(q/bus/);
749
750 MyClass::Good:ATTR(HASH)( 'SomeOtherClass', # class
751 'LEXICAL', # no typeglob
752 \%hsh, # referent
753 'Good', # attr name
754 'q/bye' # raw attr data
755 'CHECK', # compiler phase
756 );
757
758 MyClass::Omni:ATTR(HASH)( 'SomeOtherClass', # class
759 'LEXICAL', # no typeglob
760 \%hsh, # referent
761 'Omni', # attr name
762 'bus' # eval'd attr data
763 'CHECK', # compiler phase
764 );
765
766
767Installing handlers into UNIVERSAL, makes them...err..universal.
768For example:
769
770 package Descriptions;
771 use Attribute::Handlers;
772
773 my %name;
774 sub name { return $name{$_[2]}||*{$_[1]}{NAME} }
775
776 sub UNIVERSAL::Name :ATTR {
777 $name{$_[2]} = $_[4];
778 }
779
780 sub UNIVERSAL::Purpose :ATTR {
781 print STDERR "Purpose of ", &name, " is $_[4]\n";
782 }
783
784 sub UNIVERSAL::Unit :ATTR {
785 print STDERR &name, " measured in $_[4]\n";
786 }
787
788Let's you write:
789
790 use Descriptions;
791
792 my $capacity : Name(capacity)
793 : Purpose(to store max storage capacity for files)
794 : Unit(Gb);
795
796
797 package Other;
798
799 sub foo : Purpose(to foo all data before barring it) { }
800
801 # etc.
802
803
804=head1 DIAGNOSTICS
805
806=over
807
808=item C<Bad attribute type: ATTR(%s)>
809
810An attribute handler was specified with an C<:ATTR(I<ref_type>)>, but the
811type of referent it was defined to handle wasn't one of the five permitted:
812C<SCALAR>, C<ARRAY>, C<HASH>, C<CODE>, or C<ANY>.
813
814=item C<Attribute handler %s doesn't handle %s attributes>
815
816A handler for attributes of the specified name I<was> defined, but not
817for the specified type of declaration. Typically encountered whe trying
818to apply a C<VAR> attribute handler to a subroutine, or a C<SCALAR>
819attribute handler to some other type of variable.
820
821=item C<Declaration of %s attribute in package %s may clash with future reserved word>
822
823A handler for an attributes with an all-lowercase name was declared. An
824attribute with an all-lowercase name might have a meaning to Perl
825itself some day, even though most don't yet. Use a mixed-case attribute
826name, instead.
827
828=item C<Can't have two ATTR specifiers on one subroutine>
829
830You just can't, okay?
831Instead, put all the specifications together with commas between them
832in a single C<ATTR(I<specification>)>.
833
834=item C<Can't autotie a %s>
835
836You can only declare autoties for types C<"SCALAR">, C<"ARRAY">, and
837C<"HASH">. They're the only things (apart from typeglobs -- which are
838not declarable) that Perl can tie.
839
840=item C<Internal error: %s symbol went missing>
841
842Something is rotten in the state of the program. An attributed
843subroutine ceased to exist between the point it was declared and the point
844at which its attribute handler(s) would have been called.
845
24952a9c 846=item C<Won't be able to apply END handler>
847
848You have defined an END handler for an attribute that is being applied
849to a lexical variable. Since the variable may not be available during END
850this won't happen.
851
0e9b9e0c 852=back
853
854=head1 AUTHOR
855
856Damian Conway (damian@conway.org)
857
858=head1 BUGS
859
860There are undoubtedly serious bugs lurking somewhere in code this funky :-)
861Bug reports and other feedback are most welcome.
862
863=head1 COPYRIGHT
864
865 Copyright (c) 2001, Damian Conway. All Rights Reserved.
866 This module is free software. It may be used, redistributed
867 and/or modified under the same terms as Perl itself.