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