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