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