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