d0cf23477fb3303c46e2485343b544e59b7d4c1b
[gitmo/Class-MOP.git] / lib / Class / MOP / Attribute.pm
1
2 package Class::MOP::Attribute;
3
4 use strict;
5 use warnings;
6
7 use Class::MOP::Method::Accessor;
8
9 use Carp         'confess';
10 use Scalar::Util 'blessed', 'weaken';
11 use Try::Tiny;
12
13 our $VERSION   = '1.11';
14 $VERSION = eval $VERSION;
15 our $AUTHORITY = 'cpan:STEVAN';
16
17 use base 'Class::MOP::Object', 'Class::MOP::Mixin::AttributeCore';
18
19 # NOTE: (meta-circularity)
20 # This method will be replaced in the
21 # boostrap section of Class::MOP, by
22 # a new version which uses the
23 # &Class::MOP::Class::construct_instance
24 # method to build an attribute meta-object
25 # which itself is described with attribute
26 # meta-objects.
27 #     - Ain't meta-circularity grand? :)
28 sub new {
29     my ( $class, @args ) = @_;
30
31     unshift @args, "name" if @args % 2 == 1;
32     my %options = @args;
33
34     my $name = $options{name};
35
36     (defined $name)
37         || confess "You must provide a name for the attribute";
38
39     $options{init_arg} = $name
40         if not exists $options{init_arg};
41     if(exists $options{builder}){
42         confess("builder must be a defined scalar value which is a method name")
43             if ref $options{builder} || !(defined $options{builder});
44         confess("Setting both default and builder is not allowed.")
45             if exists $options{default};
46     } else {
47         ($class->is_default_a_coderef(\%options))
48             || confess("References are not allowed as default values, you must ".
49                        "wrap the default of '$name' in a CODE reference (ex: sub { [] } and not [])")
50                 if exists $options{default} && ref $options{default};
51     }
52     if( $options{required} and not( defined($options{builder}) || defined($options{init_arg}) || exists $options{default} ) ) {
53         confess("A required attribute must have either 'init_arg', 'builder', or 'default'");
54     }
55
56     $class->_new(\%options);
57 }
58
59 sub _new {
60     my $class = shift;
61
62     return Class::MOP::Class->initialize($class)->new_object(@_)
63         if $class ne __PACKAGE__;
64
65     my $options = @_ == 1 ? $_[0] : {@_};
66
67     bless {
68         'name'               => $options->{name},
69         'accessor'           => $options->{accessor},
70         'reader'             => $options->{reader},
71         'writer'             => $options->{writer},
72         'predicate'          => $options->{predicate},
73         'clearer'            => $options->{clearer},
74         'builder'            => $options->{builder},
75         'init_arg'           => $options->{init_arg},
76         exists $options->{default}
77             ? ('default'     => $options->{default})
78             : (),
79         'initializer'        => $options->{initializer},
80         'definition_context' => $options->{definition_context},
81         # keep a weakened link to the
82         # class we are associated with
83         'associated_class' => undef,
84         # and a list of the methods
85         # associated with this attr
86         'associated_methods' => [],
87         # this let's us keep track of
88         # our order inside the associated
89         # class
90         'insertion_order'    => undef,
91     }, $class;
92 }
93
94 # NOTE:
95 # this is a primative (and kludgy) clone operation
96 # for now, it will be replaced in the Class::MOP
97 # bootstrap with a proper one, however we know
98 # that this one will work fine for now.
99 sub clone {
100     my $self    = shift;
101     my %options = @_;
102     (blessed($self))
103         || confess "Can only clone an instance";
104     return bless { %{$self}, %options } => ref($self);
105 }
106
107 sub initialize_instance_slot {
108     my ($self, $meta_instance, $instance, $params) = @_;
109     my $init_arg = $self->{'init_arg'};
110
111     # try to fetch the init arg from the %params ...
112
113     # if nothing was in the %params, we can use the
114     # attribute's default value (if it has one)
115     if(defined $init_arg and exists $params->{$init_arg}){
116         $self->_set_initial_slot_value(
117             $meta_instance, 
118             $instance,
119             $params->{$init_arg},
120         );
121     } 
122     elsif (exists $self->{'default'}) {
123         $self->_set_initial_slot_value(
124             $meta_instance, 
125             $instance,
126             $self->default($instance),
127         );
128     } 
129     elsif (defined( my $builder = $self->{'builder'})) {
130         if ($builder = $instance->can($builder)) {
131             $self->_set_initial_slot_value(
132                 $meta_instance, 
133                 $instance,
134                 $instance->$builder,
135             );
136         } 
137         else {
138             confess(ref($instance)." does not support builder method '". $self->{'builder'} ."' for attribute '" . $self->name . "'");
139         }
140     }
141 }
142
143 sub _set_initial_slot_value {
144     my ($self, $meta_instance, $instance, $value) = @_;
145
146     my $slot_name = $self->name;
147
148     return $meta_instance->set_slot_value($instance, $slot_name, $value)
149         unless $self->has_initializer;
150
151     my $callback = sub {
152         $meta_instance->set_slot_value($instance, $slot_name, $_[0]);
153     };
154     
155     my $initializer = $self->initializer;
156
157     # most things will just want to set a value, so make it first arg
158     $instance->$initializer($value, $callback, $self);
159 }
160
161 sub get_read_method  { 
162     my $self   = shift;    
163     my $reader = $self->reader || $self->accessor;
164     # normal case ...
165     return $reader unless ref $reader;
166     # the HASH ref case
167     my ($name) = %$reader;
168     return $name;
169 }
170
171 sub get_write_method { 
172     my $self   = shift;
173     my $writer = $self->writer || $self->accessor; 
174     # normal case ...
175     return $writer unless ref $writer;
176     # the HASH ref case
177     my ($name) = %$writer;
178     return $name;    
179 }
180
181 sub get_read_method_ref {
182     my $self = shift;
183     if ((my $reader = $self->get_read_method) && $self->associated_class) {   
184         return $self->associated_class->get_method($reader);
185     }
186     else {
187         my $code = sub { $self->get_value(@_) };
188         if (my $class = $self->associated_class) {
189             return $class->method_metaclass->wrap(
190                 $code,
191                 package_name => $class->name,
192                 name         => '__ANON__'
193             );
194         }
195         else {
196             return $code;
197         }
198     }
199 }
200
201 sub get_write_method_ref {
202     my $self = shift;    
203     if ((my $writer = $self->get_write_method) && $self->associated_class) {         
204         return $self->associated_class->get_method($writer);
205     }
206     else {
207         my $code = sub { $self->set_value(@_) };
208         if (my $class = $self->associated_class) {
209             return $class->method_metaclass->wrap(
210                 $code,
211                 package_name => $class->name,
212                 name         => '__ANON__'
213             );
214         }
215         else {
216             return $code;
217         }
218     }
219 }
220
221 # slots
222
223 sub slots { (shift)->name }
224
225 # class association
226
227 sub attach_to_class {
228     my ($self, $class) = @_;
229     (blessed($class) && $class->isa('Class::MOP::Class'))
230         || confess "You must pass a Class::MOP::Class instance (or a subclass)";
231     weaken($self->{'associated_class'} = $class);
232 }
233
234 sub detach_from_class {
235     my $self = shift;
236     $self->{'associated_class'} = undef;
237 }
238
239 # method association
240
241 sub associate_method {
242     my ($self, $method) = @_;
243     push @{$self->{'associated_methods'}} => $method;
244 }
245
246 ## Slot management
247
248 sub set_initial_value {
249     my ($self, $instance, $value) = @_;
250     $self->_set_initial_slot_value(
251         Class::MOP::Class->initialize(ref($instance))->get_meta_instance,
252         $instance,
253         $value
254     );
255 }
256
257 sub set_value { shift->set_raw_value(@_) }
258 sub get_value { shift->get_raw_value(@_) }
259
260 sub set_raw_value {
261     my ($self, $instance, $value) = @_;
262
263     Class::MOP::Class->initialize(ref($instance))
264                      ->get_meta_instance
265                      ->set_slot_value($instance, $self->name, $value);
266 }
267
268 sub get_raw_value {
269     my ($self, $instance) = @_;
270
271     Class::MOP::Class->initialize(ref($instance))
272                      ->get_meta_instance
273                      ->get_slot_value($instance, $self->name);
274 }
275
276 sub has_value {
277     my ($self, $instance) = @_;
278
279     Class::MOP::Class->initialize(ref($instance))
280                      ->get_meta_instance
281                      ->is_slot_initialized($instance, $self->name);
282 }
283
284 sub clear_value {
285     my ($self, $instance) = @_;
286
287     Class::MOP::Class->initialize(ref($instance))
288                      ->get_meta_instance
289                      ->deinitialize_slot($instance, $self->name);
290 }
291
292 ## load em up ...
293
294 sub accessor_metaclass { 'Class::MOP::Method::Accessor' }
295
296 sub _process_accessors {
297     my ($self, $type, $accessor, $generate_as_inline_methods) = @_;
298
299     my $method_ctx;
300
301     if ( my $ctx = $self->definition_context ) {
302         $method_ctx = { %$ctx };
303     }
304
305     if (ref($accessor)) {
306         (ref($accessor) eq 'HASH')
307             || confess "bad accessor/reader/writer/predicate/clearer format, must be a HASH ref";
308         my ($name, $method) = %{$accessor};
309         $method = $self->accessor_metaclass->wrap(
310             $method,
311             package_name => $self->associated_class->name,
312             name         => $name,
313             definition_context => $method_ctx,
314         );
315         $self->associate_method($method);
316         return ($name, $method);
317     }
318     else {
319         my $inline_me = ($generate_as_inline_methods && $self->associated_class->instance_metaclass->is_inlinable);
320         my $method;
321         try {
322             if ( $method_ctx ) {
323                 my $desc = "accessor $accessor";
324                 if ( $accessor ne $self->name ) {
325                     $desc .= " of attribute " . $self->name;
326                 }
327
328                 $method_ctx->{description} = $desc;
329             }
330
331             $method = $self->accessor_metaclass->new(
332                 attribute     => $self,
333                 is_inline     => $inline_me,
334                 accessor_type => $type,
335                 package_name  => $self->associated_class->name,
336                 name          => $accessor,
337                 definition_context => $method_ctx,
338             );
339         }
340         catch {
341             confess "Could not create the '$type' method for " . $self->name . " because : $_";
342         };
343         $self->associate_method($method);
344         return ($accessor, $method);
345     }
346 }
347
348 sub install_accessors {
349     my $self   = shift;
350     my $inline = shift;
351     my $class  = $self->associated_class;
352
353     $class->add_method(
354         $self->_process_accessors('accessor' => $self->accessor(), $inline)
355     ) if $self->has_accessor();
356
357     $class->add_method(
358         $self->_process_accessors('reader' => $self->reader(), $inline)
359     ) if $self->has_reader();
360
361     $class->add_method(
362         $self->_process_accessors('writer' => $self->writer(), $inline)
363     ) if $self->has_writer();
364
365     $class->add_method(
366         $self->_process_accessors('predicate' => $self->predicate(), $inline)
367     ) if $self->has_predicate();
368
369     $class->add_method(
370         $self->_process_accessors('clearer' => $self->clearer(), $inline)
371     ) if $self->has_clearer();
372
373     return;
374 }
375
376 {
377     my $_remove_accessor = sub {
378         my ($accessor, $class) = @_;
379         if (ref($accessor) && ref($accessor) eq 'HASH') {
380             ($accessor) = keys %{$accessor};
381         }
382         my $method = $class->get_method($accessor);
383         $class->remove_method($accessor)
384             if (ref($method) && $method->isa('Class::MOP::Method::Accessor'));
385     };
386
387     sub remove_accessors {
388         my $self = shift;
389         # TODO:
390         # we really need to make sure to remove from the
391         # associates methods here as well. But this is
392         # such a slimly used method, I am not worried
393         # about it right now.
394         $_remove_accessor->($self->accessor(),  $self->associated_class()) if $self->has_accessor();
395         $_remove_accessor->($self->reader(),    $self->associated_class()) if $self->has_reader();
396         $_remove_accessor->($self->writer(),    $self->associated_class()) if $self->has_writer();
397         $_remove_accessor->($self->predicate(), $self->associated_class()) if $self->has_predicate();
398         $_remove_accessor->($self->clearer(),   $self->associated_class()) if $self->has_clearer();
399         return;
400     }
401
402 }
403
404 sub inline_get {
405     my $self = shift;
406     my ($instance) = @_;
407
408     return $self->associated_class->get_meta_instance->inline_get_slot_value(
409         $instance, $self->name );
410 }
411
412 sub inline_set {
413     my $self = shift;
414     my ( $instance, $value ) = @_;
415
416     return $self->associated_class->get_meta_instance->inline_set_slot_value(
417         $instance, $self->name, $value );
418 }
419
420 sub inline_has {
421     my $self = shift;
422     my ($instance) = @_;
423
424     return
425         $self->associated_class->get_meta_instance
426         ->inline_is_slot_initialized( $instance, $self->name );
427 }
428
429 sub inline_clear {
430     my $self = shift;
431     my ($instance) = @_;
432
433     return
434         $self->associated_class->get_meta_instance
435         ->inline_deinitialize_slot( $instance, $self->name );
436 }
437
438 1;
439
440 __END__
441
442 =pod
443
444 =head1 NAME
445
446 Class::MOP::Attribute - Attribute Meta Object
447
448 =head1 SYNOPSIS
449
450   Class::MOP::Attribute->new(
451       foo => (
452           accessor  => 'foo',           # dual purpose get/set accessor
453           predicate => 'has_foo',       # predicate check for defined-ness
454           init_arg  => '-foo',          # class->new will look for a -foo key
455           default   => 'BAR IS BAZ!'    # if no -foo key is provided, use this
456       )
457   );
458
459   Class::MOP::Attribute->new(
460       bar => (
461           reader    => 'bar',           # getter
462           writer    => 'set_bar',       # setter
463           predicate => 'has_bar',       # predicate check for defined-ness
464           init_arg  => ':bar',          # class->new will look for a :bar key
465                                         # no default value means it is undef
466       )
467   );
468
469 =head1 DESCRIPTION
470
471 The Attribute Protocol is almost entirely an invention of
472 C<Class::MOP>. Perl 5 does not have a consistent notion of
473 attributes. There are so many ways in which this is done, and very few
474 (if any) are easily discoverable by this module.
475
476 With that said, this module attempts to inject some order into this
477 chaos, by introducing a consistent API which can be used to create
478 object attributes.
479
480 =head1 METHODS
481
482 =head2 Creation
483
484 =over 4
485
486 =item B<< Class::MOP::Attribute->new($name, ?%options) >>
487
488 An attribute must (at the very least), have a C<$name>. All other
489 C<%options> are added as key-value pairs.
490
491 =over 8
492
493 =item * init_arg
494
495 This is a string value representing the expected key in an
496 initialization hash. For instance, if we have an C<init_arg> value of
497 C<-foo>, then the following code will Just Work.
498
499   MyClass->meta->new_object( -foo => 'Hello There' );
500
501 If an init_arg is not assigned, it will automatically use the
502 attribute's name. If C<init_arg> is explicitly set to C<undef>, the
503 attribute cannot be specified during initialization.
504
505 =item * builder
506
507 This provides the name of a method that will be called to initialize
508 the attribute. This method will be called on the object after it is
509 constructed. It is expected to return a valid value for the attribute.
510
511 =item * default
512
513 This can be used to provide an explicit default for initializing the
514 attribute. If the default you provide is a subroutine reference, then
515 this reference will be called I<as a method> on the object.
516
517 If the value is a simple scalar (string or number), then it can be
518 just passed as is. However, if you wish to initialize it with a HASH
519 or ARRAY ref, then you need to wrap that inside a subroutine
520 reference:
521
522   Class::MOP::Attribute->new(
523       'foo' => (
524           default => sub { [] },
525       )
526   );
527
528   # or ...
529
530   Class::MOP::Attribute->new(
531       'foo' => (
532           default => sub { {} },
533       )
534   );
535
536 If you wish to initialize an attribute with a subroutine reference
537 itself, then you need to wrap that in a subroutine as well:
538
539   Class::MOP::Attribute->new(
540       'foo' => (
541           default => sub {
542               sub { print "Hello World" }
543           },
544       )
545   );
546
547 And lastly, if the value of your attribute is dependent upon some
548 other aspect of the instance structure, then you can take advantage of
549 the fact that when the C<default> value is called as a method:
550
551   Class::MOP::Attribute->new(
552       'object_identity' => (
553           default => sub { Scalar::Util::refaddr( $_[0] ) },
554       )
555   );
556
557 Note that there is no guarantee that attributes are initialized in any
558 particular order, so you cannot rely on the value of some other
559 attribute when generating the default.
560
561 =item * initializer
562
563 This option can be either a method name or a subroutine
564 reference. This method will be called when setting the attribute's
565 value in the constructor. Unlike C<default> and C<builder>, the
566 initializer is only called when a value is provided to the
567 constructor. The initializer allows you to munge this value during
568 object construction.
569
570 The initializer is called as a method with three arguments. The first
571 is the value that was passed to the constructor. The second is a
572 subroutine reference that can be called to actually set the
573 attribute's value, and the last is the associated
574 C<Class::MOP::Attribute> object.
575
576 This contrived example shows an initializer that sets the attribute to
577 twice the given value.
578
579   Class::MOP::Attribute->new(
580       'doubled' => (
581           initializer => sub {
582               my ( $self, $value, $set, $attr ) = @_;
583               $set->( $value * 2 );
584           },
585       )
586   );
587
588 Since an initializer can be a method name, you can easily make
589 attribute initialization use the writer:
590
591   Class::MOP::Attribute->new(
592       'some_attr' => (
593           writer      => 'some_attr',
594           initializer => 'some_attr',
595       )
596   );
597
598 Your writer will need to examine C<@_> and determine under which
599 context it is being called.
600
601 =back
602
603 The C<accessor>, C<reader>, C<writer>, C<predicate> and C<clearer>
604 options all accept the same parameters. You can provide the name of
605 the method, in which case an appropriate default method will be
606 generated for you. Or instead you can also provide hash reference
607 containing exactly one key (the method name) and one value. The value
608 should be a subroutine reference, which will be installed as the
609 method itself.
610
611 =over 8
612
613 =item * accessor
614
615 An C<accessor> is a standard Perl-style read/write accessor. It will
616 return the value of the attribute, and if a value is passed as an
617 argument, it will assign that value to the attribute.
618
619 Note that C<undef> is a legitimate value, so this will work:
620
621   $object->set_something(undef);
622
623 =item * reader
624
625 This is a basic read-only accessor. It returns the value of the
626 attribute.
627
628 =item * writer
629
630 This is a basic write accessor, it accepts a single argument, and
631 assigns that value to the attribute.
632
633 Note that C<undef> is a legitimate value, so this will work:
634
635   $object->set_something(undef);
636
637 =item * predicate
638
639 The predicate method returns a boolean indicating whether or not the
640 attribute has been explicitly set.
641
642 Note that the predicate returns true even if the attribute was set to
643 a false value (C<0> or C<undef>).
644
645 =item * clearer
646
647 This method will uninitialize the attribute. After an attribute is
648 cleared, its C<predicate> will return false.
649
650 =item * definition_context
651
652 Mostly, this exists as a hook for the benefit of Moose.
653
654 This option should be a hash reference containing several keys which
655 will be used when inlining the attribute's accessors. The keys should
656 include C<line>, the line number where the attribute was created, and
657 either C<file> or C<description>.
658
659 This information will ultimately be used when eval'ing inlined
660 accessor code so that error messages report a useful line and file
661 name.
662
663 =back
664
665 =item B<< $attr->clone(%options) >>
666
667 This clones the attribute. Any options you provide will override the
668 settings of the original attribute. You can change the name of the new
669 attribute by passing a C<name> key in C<%options>.
670
671 =back
672
673 =head2 Informational
674
675 These are all basic read-only accessors for the values passed into
676 the constructor.
677
678 =over 4
679
680 =item B<< $attr->name >>
681
682 Returns the attribute's name.
683
684 =item B<< $attr->accessor >>
685
686 =item B<< $attr->reader >>
687
688 =item B<< $attr->writer >>
689
690 =item B<< $attr->predicate >>
691
692 =item B<< $attr->clearer >>
693
694 The C<accessor>, C<reader>, C<writer>, C<predicate>, and C<clearer>
695 methods all return exactly what was passed to the constructor, so it
696 can be either a string containing a method name, or a hash reference.
697
698 =item B<< $attr->initializer >>
699
700 Returns the initializer as passed to the constructor, so this may be
701 either a method name or a subroutine reference.
702
703 =item B<< $attr->init_arg >>
704
705 =item B<< $attr->is_default_a_coderef >>
706
707 =item B<< $attr->default($instance) >>
708
709 The C<$instance> argument is optional. If you don't pass it, the
710 return value for this method is exactly what was passed to the
711 constructor, either a simple scalar or a subroutine reference.
712
713 If you I<do> pass an C<$instance> and the default is a subroutine
714 reference, then the reference is called as a method on the
715 C<$instance> and the generated value is returned.
716
717 =item B<< $attr->slots >>
718
719 Return a list of slots required by the attribute. This is usually just
720 one, the name of the attribute.
721
722 A slot is the name of the hash key used to store the attribute in an
723 object instance.
724
725 =item B<< $attr->get_read_method >>
726
727 =item B<< $attr->get_write_method >>
728
729 Returns the name of a method suitable for reading or writing the value
730 of the attribute in the associated class.
731
732 If an attribute is read- or write-only, then these methods can return
733 C<undef> as appropriate.
734
735 =item B<< $attr->has_read_method >>
736
737 =item B<< $attr->has_write_method >>
738
739 This returns a boolean indicating whether the attribute has a I<named>
740 read or write method.
741
742 =item B<< $attr->get_read_method_ref >>
743
744 =item B<< $attr->get_write_method_ref >>
745
746 Returns the subroutine reference of a method suitable for reading or
747 writing the attribute's value in the associated class. These methods
748 always return a subroutine reference, regardless of whether or not the
749 attribute is read- or write-only.
750
751 =item B<< $attr->insertion_order >>
752
753 If this attribute has been inserted into a class, this returns a zero
754 based index regarding the order of insertion.
755
756 =back
757
758 =head2 Informational predicates
759
760 These are all basic predicate methods for the values passed into C<new>.
761
762 =over 4
763
764 =item B<< $attr->has_accessor >>
765
766 =item B<< $attr->has_reader >>
767
768 =item B<< $attr->has_writer >>
769
770 =item B<< $attr->has_predicate >>
771
772 =item B<< $attr->has_clearer >>
773
774 =item B<< $attr->has_initializer >>
775
776 =item B<< $attr->has_init_arg >>
777
778 This will be I<false> if the C<init_arg> was set to C<undef>.
779
780 =item B<< $attr->has_default >>
781
782 This will be I<false> if the C<default> was set to C<undef>, since
783 C<undef> is the default C<default> anyway.
784
785 =item B<< $attr->has_builder >>
786
787 =item B<< $attr->has_insertion_order >>
788
789 This will be I<false> if this attribute has not be inserted into a class
790
791 =back
792
793 =head2 Value management
794
795 These methods are basically "back doors" to the instance, and can be
796 used to bypass the regular accessors, but still stay within the MOP.
797
798 These methods are not for general use, and should only be used if you
799 really know what you are doing.
800
801 =over 4
802
803 =item B<< $attr->initialize_instance_slot($meta_instance, $instance, $params) >>
804
805 This method is used internally to initialize the attribute's slot in
806 the object C<$instance>.
807
808 The C<$params> is a hash reference of the values passed to the object
809 constructor.
810
811 It's unlikely that you'll need to call this method yourself.
812
813 =item B<< $attr->set_value($instance, $value) >>
814
815 Sets the value without going through the accessor. Note that this
816 works even with read-only attributes.
817
818 =item B<< $attr->set_raw_value($instance, $value) >>
819
820 Sets the value with no side effects such as a trigger.
821
822 This doesn't actually apply to Class::MOP attributes, only to subclasses.
823
824 =item B<< $attr->set_initial_value($instance, $value) >>
825
826 Sets the value without going through the accessor. This method is only
827 called when the instance is first being initialized.
828
829 =item B<< $attr->get_value($instance) >>
830
831 Returns the value without going through the accessor. Note that this
832 works even with write-only accessors.
833
834 =item B<< $attr->get_raw_value($instance) >>
835
836 Returns the value without any side effects such as lazy attributes.
837
838 Doesn't actually apply to Class::MOP attributes, only to subclasses.
839
840 =item B<< $attr->has_value($instance) >>
841
842 Return a boolean indicating whether the attribute has been set in
843 C<$instance>. This how the default C<predicate> method works.
844
845 =item B<< $attr->clear_value($instance) >>
846
847 This will clear the attribute's value in C<$instance>. This is what
848 the default C<clearer> calls.
849
850 Note that this works even if the attribute does not have any
851 associated read, write or clear methods.
852
853 =back
854
855 =head2 Class association
856
857 These methods allow you to manage the attributes association with
858 the class that contains it. These methods should not be used
859 lightly, nor are they very magical, they are mostly used internally
860 and by metaclass instances.
861
862 =over 4
863
864 =item B<< $attr->associated_class >>
865
866 This returns the C<Class::MOP::Class> with which this attribute is
867 associated, if any.
868
869 =item B<< $attr->attach_to_class($metaclass) >>
870
871 This method stores a weakened reference to the C<$metaclass> object
872 internally.
873
874 This method does not remove the attribute from its old class,
875 nor does it create any accessors in the new class.
876
877 It is probably best to use the L<Class::MOP::Class> C<add_attribute>
878 method instead.
879
880 =item B<< $attr->detach_from_class >>
881
882 This method removes the associate metaclass object from the attribute
883 it has one.
884
885 This method does not remove the attribute itself from the class, or
886 remove its accessors.
887
888 It is probably best to use the L<Class::MOP::Class>
889 C<remove_attribute> method instead.
890
891 =back
892
893 =head2 Attribute Accessor generation
894
895 =over 4
896
897 =item B<< $attr->accessor_metaclass >>
898
899 Accessor methods are generated using an accessor metaclass. By
900 default, this is L<Class::MOP::Method::Accessor>. This method returns
901 the name of the accessor metaclass that this attribute uses.
902
903 =item B<< $attr->associate_method($method) >>
904
905 This associates a L<Class::MOP::Method> object with the
906 attribute. Typically, this is called internally when an attribute
907 generates its accessors.
908
909 =item B<< $attr->associated_methods >>
910
911 This returns the list of methods which have been associated with the
912 attribute.
913
914 =item B<< $attr->install_accessors >>
915
916 This method generates and installs code the attributes various
917 accessors. It is typically called from the L<Class::MOP::Class>
918 C<add_attribute> method.
919
920 =item B<< $attr->remove_accessors >>
921
922 This method removes all of the accessors associated with the
923 attribute.
924
925 This does not currently remove methods from the list returned by
926 C<associated_methods>.
927
928 =item B<< $attr->inline_get >>
929
930 =item B<< $attr->inline_set >>
931
932 =item B<< $attr->inline_has >>
933
934 =item B<< $attr->inline_clear >>
935
936 These methods return a code snippet suitable for inlining the relevant
937 operation. They expect strings containing variable names to be used in the
938 inlining, like C<'$self'> or C<'$_[1]'>.
939
940 =back
941
942 =head2 Introspection
943
944 =over 4
945
946 =item B<< Class::MOP::Attribute->meta >>
947
948 This will return a L<Class::MOP::Class> instance for this class.
949
950 It should also be noted that L<Class::MOP> will actually bootstrap
951 this module by installing a number of attribute meta-objects into its
952 metaclass.
953
954 =back
955
956 =head1 AUTHORS
957
958 Stevan Little E<lt>stevan@iinteractive.comE<gt>
959
960 =head1 COPYRIGHT AND LICENSE
961
962 Copyright 2006-2010 by Infinity Interactive, Inc.
963
964 L<http://www.iinteractive.com>
965
966 This library is free software; you can redistribute it and/or modify
967 it under the same terms as Perl itself.
968
969 =cut
970
971