bbcf98b799900e636229d01e25f364f4d47952f8
[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
259 sub set_raw_value {
260     my $self = shift;
261     my ($instance, $value) = @_;
262
263     my $mi = Class::MOP::Class->initialize(ref($instance))->get_meta_instance;
264     return $mi->set_slot_value($instance, $self->name, $value);
265 }
266
267 sub _inline_set_value {
268     my $self = shift;
269     return $self->_inline_instance_set(@_) . ';';
270 }
271
272 sub _inline_instance_set {
273     my $self = shift;
274     my ($instance, $value) = @_;
275
276     my $mi = $self->associated_class->get_meta_instance;
277     return $mi->inline_set_slot_value($instance, $self->name, $value);
278 }
279
280 sub get_value { shift->get_raw_value(@_) }
281
282 sub get_raw_value {
283     my $self = shift;
284     my ($instance) = @_;
285
286     my $mi = Class::MOP::Class->initialize(ref($instance))->get_meta_instance;
287     return $mi->get_slot_value($instance, $self->name);
288 }
289
290 sub _inline_get_value {
291     my $self = shift;
292     return $self->_inline_instance_get(@_) . ';';
293 }
294
295 sub _inline_instance_get {
296     my $self = shift;
297     my ($instance) = @_;
298
299     my $mi = $self->associated_class->get_meta_instance;
300     return $mi->inline_get_slot_value($instance, $self->name);
301 }
302
303 sub has_value {
304     my $self = shift;
305     my ($instance) = @_;
306
307     my $mi = Class::MOP::Class->initialize(ref($instance))->get_meta_instance;
308     return $mi->is_slot_initialized($instance, $self->name);
309 }
310
311 sub _inline_has_value {
312     my $self = shift;
313     return $self->_inline_instance_has(@_) . ';';
314 }
315
316 sub _inline_instance_has {
317     my $self = shift;
318     my ($instance) = @_;
319
320     my $mi = $self->associated_class->get_meta_instance;
321     return $mi->inline_is_slot_initialized($instance, $self->name);
322 }
323
324 sub clear_value {
325     my $self = shift;
326     my ($instance) = @_;
327
328     my $mi = Class::MOP::Class->initialize(ref($instance))->get_meta_instance;
329     return $mi->deinitialize_slot($instance, $self->name);
330 }
331
332 sub _inline_clear_value {
333     my $self = shift;
334     return $self->_inline_instance_clear(@_) . ';';
335 }
336
337 sub _inline_instance_clear {
338     my $self = shift;
339     my ($instance) = @_;
340
341     my $mi = $self->associated_class->get_meta_instance;
342     return $mi->inline_deinitialize_slot($instance, $self->name);
343 }
344
345 ## load em up ...
346
347 sub accessor_metaclass { 'Class::MOP::Method::Accessor' }
348
349 sub _process_accessors {
350     my ($self, $type, $accessor, $generate_as_inline_methods) = @_;
351
352     my $method_ctx;
353
354     if ( my $ctx = $self->definition_context ) {
355         $method_ctx = { %$ctx };
356     }
357
358     if (ref($accessor)) {
359         (ref($accessor) eq 'HASH')
360             || confess "bad accessor/reader/writer/predicate/clearer format, must be a HASH ref";
361         my ($name, $method) = %{$accessor};
362         $method = $self->accessor_metaclass->wrap(
363             $method,
364             package_name => $self->associated_class->name,
365             name         => $name,
366             definition_context => $method_ctx,
367         );
368         $self->associate_method($method);
369         return ($name, $method);
370     }
371     else {
372         my $inline_me = ($generate_as_inline_methods && $self->associated_class->instance_metaclass->is_inlinable);
373         my $method;
374         try {
375             if ( $method_ctx ) {
376                 my $desc = "accessor $accessor";
377                 if ( $accessor ne $self->name ) {
378                     $desc .= " of attribute " . $self->name;
379                 }
380
381                 $method_ctx->{description} = $desc;
382             }
383
384             $method = $self->accessor_metaclass->new(
385                 attribute     => $self,
386                 is_inline     => $inline_me,
387                 accessor_type => $type,
388                 package_name  => $self->associated_class->name,
389                 name          => $accessor,
390                 definition_context => $method_ctx,
391             );
392         }
393         catch {
394             confess "Could not create the '$type' method for " . $self->name . " because : $_";
395         };
396         $self->associate_method($method);
397         return ($accessor, $method);
398     }
399 }
400
401 sub install_accessors {
402     my $self   = shift;
403     my $inline = shift;
404     my $class  = $self->associated_class;
405
406     $class->add_method(
407         $self->_process_accessors('accessor' => $self->accessor(), $inline)
408     ) if $self->has_accessor();
409
410     $class->add_method(
411         $self->_process_accessors('reader' => $self->reader(), $inline)
412     ) if $self->has_reader();
413
414     $class->add_method(
415         $self->_process_accessors('writer' => $self->writer(), $inline)
416     ) if $self->has_writer();
417
418     $class->add_method(
419         $self->_process_accessors('predicate' => $self->predicate(), $inline)
420     ) if $self->has_predicate();
421
422     $class->add_method(
423         $self->_process_accessors('clearer' => $self->clearer(), $inline)
424     ) if $self->has_clearer();
425
426     return;
427 }
428
429 {
430     my $_remove_accessor = sub {
431         my ($accessor, $class) = @_;
432         if (ref($accessor) && ref($accessor) eq 'HASH') {
433             ($accessor) = keys %{$accessor};
434         }
435         my $method = $class->get_method($accessor);
436         $class->remove_method($accessor)
437             if (ref($method) && $method->isa('Class::MOP::Method::Accessor'));
438     };
439
440     sub remove_accessors {
441         my $self = shift;
442         # TODO:
443         # we really need to make sure to remove from the
444         # associates methods here as well. But this is
445         # such a slimly used method, I am not worried
446         # about it right now.
447         $_remove_accessor->($self->accessor(),  $self->associated_class()) if $self->has_accessor();
448         $_remove_accessor->($self->reader(),    $self->associated_class()) if $self->has_reader();
449         $_remove_accessor->($self->writer(),    $self->associated_class()) if $self->has_writer();
450         $_remove_accessor->($self->predicate(), $self->associated_class()) if $self->has_predicate();
451         $_remove_accessor->($self->clearer(),   $self->associated_class()) if $self->has_clearer();
452         return;
453     }
454
455 }
456
457 1;
458
459 __END__
460
461 =pod
462
463 =head1 NAME
464
465 Class::MOP::Attribute - Attribute Meta Object
466
467 =head1 SYNOPSIS
468
469   Class::MOP::Attribute->new(
470       foo => (
471           accessor  => 'foo',           # dual purpose get/set accessor
472           predicate => 'has_foo',       # predicate check for defined-ness
473           init_arg  => '-foo',          # class->new will look for a -foo key
474           default   => 'BAR IS BAZ!'    # if no -foo key is provided, use this
475       )
476   );
477
478   Class::MOP::Attribute->new(
479       bar => (
480           reader    => 'bar',           # getter
481           writer    => 'set_bar',       # setter
482           predicate => 'has_bar',       # predicate check for defined-ness
483           init_arg  => ':bar',          # class->new will look for a :bar key
484                                         # no default value means it is undef
485       )
486   );
487
488 =head1 DESCRIPTION
489
490 The Attribute Protocol is almost entirely an invention of
491 C<Class::MOP>. Perl 5 does not have a consistent notion of
492 attributes. There are so many ways in which this is done, and very few
493 (if any) are easily discoverable by this module.
494
495 With that said, this module attempts to inject some order into this
496 chaos, by introducing a consistent API which can be used to create
497 object attributes.
498
499 =head1 METHODS
500
501 =head2 Creation
502
503 =over 4
504
505 =item B<< Class::MOP::Attribute->new($name, ?%options) >>
506
507 An attribute must (at the very least), have a C<$name>. All other
508 C<%options> are added as key-value pairs.
509
510 =over 8
511
512 =item * init_arg
513
514 This is a string value representing the expected key in an
515 initialization hash. For instance, if we have an C<init_arg> value of
516 C<-foo>, then the following code will Just Work.
517
518   MyClass->meta->new_object( -foo => 'Hello There' );
519
520 If an init_arg is not assigned, it will automatically use the
521 attribute's name. If C<init_arg> is explicitly set to C<undef>, the
522 attribute cannot be specified during initialization.
523
524 =item * builder
525
526 This provides the name of a method that will be called to initialize
527 the attribute. This method will be called on the object after it is
528 constructed. It is expected to return a valid value for the attribute.
529
530 =item * default
531
532 This can be used to provide an explicit default for initializing the
533 attribute. If the default you provide is a subroutine reference, then
534 this reference will be called I<as a method> on the object.
535
536 If the value is a simple scalar (string or number), then it can be
537 just passed as is. However, if you wish to initialize it with a HASH
538 or ARRAY ref, then you need to wrap that inside a subroutine
539 reference:
540
541   Class::MOP::Attribute->new(
542       'foo' => (
543           default => sub { [] },
544       )
545   );
546
547   # or ...
548
549   Class::MOP::Attribute->new(
550       'foo' => (
551           default => sub { {} },
552       )
553   );
554
555 If you wish to initialize an attribute with a subroutine reference
556 itself, then you need to wrap that in a subroutine as well:
557
558   Class::MOP::Attribute->new(
559       'foo' => (
560           default => sub {
561               sub { print "Hello World" }
562           },
563       )
564   );
565
566 And lastly, if the value of your attribute is dependent upon some
567 other aspect of the instance structure, then you can take advantage of
568 the fact that when the C<default> value is called as a method:
569
570   Class::MOP::Attribute->new(
571       'object_identity' => (
572           default => sub { Scalar::Util::refaddr( $_[0] ) },
573       )
574   );
575
576 Note that there is no guarantee that attributes are initialized in any
577 particular order, so you cannot rely on the value of some other
578 attribute when generating the default.
579
580 =item * initializer
581
582 This option can be either a method name or a subroutine
583 reference. This method will be called when setting the attribute's
584 value in the constructor. Unlike C<default> and C<builder>, the
585 initializer is only called when a value is provided to the
586 constructor. The initializer allows you to munge this value during
587 object construction.
588
589 The initializer is called as a method with three arguments. The first
590 is the value that was passed to the constructor. The second is a
591 subroutine reference that can be called to actually set the
592 attribute's value, and the last is the associated
593 C<Class::MOP::Attribute> object.
594
595 This contrived example shows an initializer that sets the attribute to
596 twice the given value.
597
598   Class::MOP::Attribute->new(
599       'doubled' => (
600           initializer => sub {
601               my ( $self, $value, $set, $attr ) = @_;
602               $set->( $value * 2 );
603           },
604       )
605   );
606
607 Since an initializer can be a method name, you can easily make
608 attribute initialization use the writer:
609
610   Class::MOP::Attribute->new(
611       'some_attr' => (
612           writer      => 'some_attr',
613           initializer => 'some_attr',
614       )
615   );
616
617 Your writer will need to examine C<@_> and determine under which
618 context it is being called.
619
620 =back
621
622 The C<accessor>, C<reader>, C<writer>, C<predicate> and C<clearer>
623 options all accept the same parameters. You can provide the name of
624 the method, in which case an appropriate default method will be
625 generated for you. Or instead you can also provide hash reference
626 containing exactly one key (the method name) and one value. The value
627 should be a subroutine reference, which will be installed as the
628 method itself.
629
630 =over 8
631
632 =item * accessor
633
634 An C<accessor> is a standard Perl-style read/write accessor. It will
635 return the value of the attribute, and if a value is passed as an
636 argument, it will assign that value to the attribute.
637
638 Note that C<undef> is a legitimate value, so this will work:
639
640   $object->set_something(undef);
641
642 =item * reader
643
644 This is a basic read-only accessor. It returns the value of the
645 attribute.
646
647 =item * writer
648
649 This is a basic write accessor, it accepts a single argument, and
650 assigns that value to the attribute.
651
652 Note that C<undef> is a legitimate value, so this will work:
653
654   $object->set_something(undef);
655
656 =item * predicate
657
658 The predicate method returns a boolean indicating whether or not the
659 attribute has been explicitly set.
660
661 Note that the predicate returns true even if the attribute was set to
662 a false value (C<0> or C<undef>).
663
664 =item * clearer
665
666 This method will uninitialize the attribute. After an attribute is
667 cleared, its C<predicate> will return false.
668
669 =item * definition_context
670
671 Mostly, this exists as a hook for the benefit of Moose.
672
673 This option should be a hash reference containing several keys which
674 will be used when inlining the attribute's accessors. The keys should
675 include C<line>, the line number where the attribute was created, and
676 either C<file> or C<description>.
677
678 This information will ultimately be used when eval'ing inlined
679 accessor code so that error messages report a useful line and file
680 name.
681
682 =back
683
684 =item B<< $attr->clone(%options) >>
685
686 This clones the attribute. Any options you provide will override the
687 settings of the original attribute. You can change the name of the new
688 attribute by passing a C<name> key in C<%options>.
689
690 =back
691
692 =head2 Informational
693
694 These are all basic read-only accessors for the values passed into
695 the constructor.
696
697 =over 4
698
699 =item B<< $attr->name >>
700
701 Returns the attribute's name.
702
703 =item B<< $attr->accessor >>
704
705 =item B<< $attr->reader >>
706
707 =item B<< $attr->writer >>
708
709 =item B<< $attr->predicate >>
710
711 =item B<< $attr->clearer >>
712
713 The C<accessor>, C<reader>, C<writer>, C<predicate>, and C<clearer>
714 methods all return exactly what was passed to the constructor, so it
715 can be either a string containing a method name, or a hash reference.
716
717 =item B<< $attr->initializer >>
718
719 Returns the initializer as passed to the constructor, so this may be
720 either a method name or a subroutine reference.
721
722 =item B<< $attr->init_arg >>
723
724 =item B<< $attr->is_default_a_coderef >>
725
726 =item B<< $attr->default($instance) >>
727
728 The C<$instance> argument is optional. If you don't pass it, the
729 return value for this method is exactly what was passed to the
730 constructor, either a simple scalar or a subroutine reference.
731
732 If you I<do> pass an C<$instance> and the default is a subroutine
733 reference, then the reference is called as a method on the
734 C<$instance> and the generated value is returned.
735
736 =item B<< $attr->slots >>
737
738 Return a list of slots required by the attribute. This is usually just
739 one, the name of the attribute.
740
741 A slot is the name of the hash key used to store the attribute in an
742 object instance.
743
744 =item B<< $attr->get_read_method >>
745
746 =item B<< $attr->get_write_method >>
747
748 Returns the name of a method suitable for reading or writing the value
749 of the attribute in the associated class.
750
751 If an attribute is read- or write-only, then these methods can return
752 C<undef> as appropriate.
753
754 =item B<< $attr->has_read_method >>
755
756 =item B<< $attr->has_write_method >>
757
758 This returns a boolean indicating whether the attribute has a I<named>
759 read or write method.
760
761 =item B<< $attr->get_read_method_ref >>
762
763 =item B<< $attr->get_write_method_ref >>
764
765 Returns the subroutine reference of a method suitable for reading or
766 writing the attribute's value in the associated class. These methods
767 always return a subroutine reference, regardless of whether or not the
768 attribute is read- or write-only.
769
770 =item B<< $attr->insertion_order >>
771
772 If this attribute has been inserted into a class, this returns a zero
773 based index regarding the order of insertion.
774
775 =back
776
777 =head2 Informational predicates
778
779 These are all basic predicate methods for the values passed into C<new>.
780
781 =over 4
782
783 =item B<< $attr->has_accessor >>
784
785 =item B<< $attr->has_reader >>
786
787 =item B<< $attr->has_writer >>
788
789 =item B<< $attr->has_predicate >>
790
791 =item B<< $attr->has_clearer >>
792
793 =item B<< $attr->has_initializer >>
794
795 =item B<< $attr->has_init_arg >>
796
797 This will be I<false> if the C<init_arg> was set to C<undef>.
798
799 =item B<< $attr->has_default >>
800
801 This will be I<false> if the C<default> was set to C<undef>, since
802 C<undef> is the default C<default> anyway.
803
804 =item B<< $attr->has_builder >>
805
806 =item B<< $attr->has_insertion_order >>
807
808 This will be I<false> if this attribute has not be inserted into a class
809
810 =back
811
812 =head2 Value management
813
814 These methods are basically "back doors" to the instance, and can be
815 used to bypass the regular accessors, but still stay within the MOP.
816
817 These methods are not for general use, and should only be used if you
818 really know what you are doing.
819
820 =over 4
821
822 =item B<< $attr->initialize_instance_slot($meta_instance, $instance, $params) >>
823
824 This method is used internally to initialize the attribute's slot in
825 the object C<$instance>.
826
827 The C<$params> is a hash reference of the values passed to the object
828 constructor.
829
830 It's unlikely that you'll need to call this method yourself.
831
832 =item B<< $attr->set_value($instance, $value) >>
833
834 Sets the value without going through the accessor. Note that this
835 works even with read-only attributes.
836
837 =item B<< $attr->set_raw_value($instance, $value) >>
838
839 Sets the value with no side effects such as a trigger.
840
841 This doesn't actually apply to Class::MOP attributes, only to subclasses.
842
843 =item B<< $attr->set_initial_value($instance, $value) >>
844
845 Sets the value without going through the accessor. This method is only
846 called when the instance is first being initialized.
847
848 =item B<< $attr->get_value($instance) >>
849
850 Returns the value without going through the accessor. Note that this
851 works even with write-only accessors.
852
853 =item B<< $attr->get_raw_value($instance) >>
854
855 Returns the value without any side effects such as lazy attributes.
856
857 Doesn't actually apply to Class::MOP attributes, only to subclasses.
858
859 =item B<< $attr->has_value($instance) >>
860
861 Return a boolean indicating whether the attribute has been set in
862 C<$instance>. This how the default C<predicate> method works.
863
864 =item B<< $attr->clear_value($instance) >>
865
866 This will clear the attribute's value in C<$instance>. This is what
867 the default C<clearer> calls.
868
869 Note that this works even if the attribute does not have any
870 associated read, write or clear methods.
871
872 =back
873
874 =head2 Class association
875
876 These methods allow you to manage the attributes association with
877 the class that contains it. These methods should not be used
878 lightly, nor are they very magical, they are mostly used internally
879 and by metaclass instances.
880
881 =over 4
882
883 =item B<< $attr->associated_class >>
884
885 This returns the C<Class::MOP::Class> with which this attribute is
886 associated, if any.
887
888 =item B<< $attr->attach_to_class($metaclass) >>
889
890 This method stores a weakened reference to the C<$metaclass> object
891 internally.
892
893 This method does not remove the attribute from its old class,
894 nor does it create any accessors in the new class.
895
896 It is probably best to use the L<Class::MOP::Class> C<add_attribute>
897 method instead.
898
899 =item B<< $attr->detach_from_class >>
900
901 This method removes the associate metaclass object from the attribute
902 it has one.
903
904 This method does not remove the attribute itself from the class, or
905 remove its accessors.
906
907 It is probably best to use the L<Class::MOP::Class>
908 C<remove_attribute> method instead.
909
910 =back
911
912 =head2 Attribute Accessor generation
913
914 =over 4
915
916 =item B<< $attr->accessor_metaclass >>
917
918 Accessor methods are generated using an accessor metaclass. By
919 default, this is L<Class::MOP::Method::Accessor>. This method returns
920 the name of the accessor metaclass that this attribute uses.
921
922 =item B<< $attr->associate_method($method) >>
923
924 This associates a L<Class::MOP::Method> object with the
925 attribute. Typically, this is called internally when an attribute
926 generates its accessors.
927
928 =item B<< $attr->associated_methods >>
929
930 This returns the list of methods which have been associated with the
931 attribute.
932
933 =item B<< $attr->install_accessors >>
934
935 This method generates and installs code the attributes various
936 accessors. It is typically called from the L<Class::MOP::Class>
937 C<add_attribute> method.
938
939 =item B<< $attr->remove_accessors >>
940
941 This method removes all of the accessors associated with the
942 attribute.
943
944 This does not currently remove methods from the list returned by
945 C<associated_methods>.
946
947 =item B<< $attr->inline_get >>
948
949 =item B<< $attr->inline_set >>
950
951 =item B<< $attr->inline_has >>
952
953 =item B<< $attr->inline_clear >>
954
955 These methods return a code snippet suitable for inlining the relevant
956 operation. They expect strings containing variable names to be used in the
957 inlining, like C<'$self'> or C<'$_[1]'>.
958
959 =back
960
961 =head2 Introspection
962
963 =over 4
964
965 =item B<< Class::MOP::Attribute->meta >>
966
967 This will return a L<Class::MOP::Class> instance for this class.
968
969 It should also be noted that L<Class::MOP> will actually bootstrap
970 this module by installing a number of attribute meta-objects into its
971 metaclass.
972
973 =back
974
975 =head1 AUTHORS
976
977 Stevan Little E<lt>stevan@iinteractive.comE<gt>
978
979 =head1 COPYRIGHT AND LICENSE
980
981 Copyright 2006-2010 by Infinity Interactive, Inc.
982
983 L<http://www.iinteractive.com>
984
985 This library is free software; you can redistribute it and/or modify
986 it under the same terms as Perl itself.
987
988 =cut
989
990