whoops nother bug, dammit
[gitmo/Moose.git] / lib / Moose / Meta / Attribute.pm
1
2 package Moose::Meta::Attribute;
3
4 use strict;
5 use warnings;
6
7 use Scalar::Util 'blessed', 'weaken', 'reftype';
8 use Carp         'confess';
9 use Sub::Name    'subname';
10 use overload     ();
11
12 our $VERSION   = '0.22';
13 our $AUTHORITY = 'cpan:STEVAN';
14
15 use Moose::Meta::Method::Accessor;
16 use Moose::Util::TypeConstraints ();
17
18 use base 'Class::MOP::Attribute';
19
20 # options which are not directly used
21 # but we store them for metadata purposes
22 __PACKAGE__->meta->add_attribute('isa'  => (reader    => '_isa_metadata'));
23 __PACKAGE__->meta->add_attribute('does' => (reader    => '_does_metadata'));
24 __PACKAGE__->meta->add_attribute('is'   => (reader    => '_is_metadata'));
25
26 # these are actual options for the attrs
27 __PACKAGE__->meta->add_attribute('required'   => (reader => 'is_required'      ));
28 __PACKAGE__->meta->add_attribute('lazy'       => (reader => 'is_lazy'          ));
29 __PACKAGE__->meta->add_attribute('lazy_build' => (reader => 'is_lazy_build'    ));
30 __PACKAGE__->meta->add_attribute('coerce'     => (reader => 'should_coerce'    ));
31 __PACKAGE__->meta->add_attribute('weak_ref'   => (reader => 'is_weak_ref'      ));
32 __PACKAGE__->meta->add_attribute('auto_deref' => (reader => 'should_auto_deref'));
33 __PACKAGE__->meta->add_attribute('type_constraint' => (
34     reader    => 'type_constraint',
35     predicate => 'has_type_constraint',
36 ));
37 __PACKAGE__->meta->add_attribute('trigger' => (
38     reader    => 'trigger',
39     predicate => 'has_trigger',
40 ));
41 __PACKAGE__->meta->add_attribute('handles' => (
42     reader    => 'handles',
43     predicate => 'has_handles',
44 ));
45 __PACKAGE__->meta->add_attribute('documentation' => (
46     reader    => 'documentation',
47     predicate => 'has_documentation',
48 ));
49
50 sub new {
51     my ($class, $name, %options) = @_;
52     $class->_process_options($name, \%options);
53     return $class->SUPER::new($name, %options);
54 }
55
56 sub clone_and_inherit_options {
57     my ($self, %options) = @_;
58     # you can change default, required, coerce, documentation and lazy
59     my %actual_options;
60     foreach my $legal_option (qw(default coerce required documentation lazy)) {
61         if (exists $options{$legal_option}) {
62             $actual_options{$legal_option} = $options{$legal_option};
63             delete $options{$legal_option};
64         }
65     }
66
67     # handles can only be added, not changed
68     if ($options{handles}) {
69         confess "You can only add the 'handles' option, you cannot change it"
70             if $self->has_handles;
71         $actual_options{handles} = $options{handles};
72         delete $options{handles};
73     }
74
75     # isa can be changed, but only if the
76     # new type is a subtype
77     if ($options{isa}) {
78         my $type_constraint;
79         if (blessed($options{isa}) && $options{isa}->isa('Moose::Meta::TypeConstraint')) {
80             $type_constraint = $options{isa};
81         }
82         else {
83             $type_constraint = Moose::Util::TypeConstraints::find_or_create_type_constraint(
84                 $options{isa}
85             );
86             (defined $type_constraint)
87                 || confess "Could not find the type constraint '" . $options{isa} . "'";
88         }
89         # NOTE:
90         # check here to see if the new type
91         # is a subtype of the old one
92         ($type_constraint->is_subtype_of($self->type_constraint->name))
93             || confess "New type constraint setting must be a subtype of inherited one"
94                 # iff we have a type constraint that is ...
95                 if $self->has_type_constraint;
96         # then we use it :)
97         $actual_options{type_constraint} = $type_constraint;
98         delete $options{isa};
99     }
100     (scalar keys %options == 0)
101         || confess "Illegal inherited options => (" . (join ', ' => keys %options) . ")";
102     $self->clone(%actual_options);
103 }
104
105 sub _process_options {
106     my ($class, $name, $options) = @_;
107
108     if (exists $options->{is}) {
109         if ($options->{is} eq 'ro') {
110             $options->{reader} ||= $name;
111             (!exists $options->{trigger})
112                 || confess "Cannot have a trigger on a read-only attribute";
113         }
114         elsif ($options->{is} eq 'rw') {
115             $options->{accessor} = $name;
116             ((reftype($options->{trigger}) || '') eq 'CODE')
117                 || confess "Trigger must be a CODE ref"
118                     if exists $options->{trigger};
119         }
120         else {
121             confess "I do not understand this option (is => " . $options->{is} . ")"
122         }
123     }
124
125     if (exists $options->{isa}) {
126         if (exists $options->{does}) {
127             if (eval { $options->{isa}->can('does') }) {
128                 ($options->{isa}->does($options->{does}))
129                     || confess "Cannot have an isa option and a does option if the isa does not do the does";
130             }
131             else {
132                 confess "Cannot have an isa option which cannot ->does()";
133             }
134         }
135
136         # allow for anon-subtypes here ...
137         if (blessed($options->{isa}) && $options->{isa}->isa('Moose::Meta::TypeConstraint')) {
138             $options->{type_constraint} = $options->{isa};
139         }
140         else {
141             $options->{type_constraint} = Moose::Util::TypeConstraints::find_or_create_type_constraint(
142                 $options->{isa} => {
143                     parent     => Moose::Util::TypeConstraints::find_type_constraint('Object'),
144                     constraint => sub { $_[0]->isa($options->{isa}) }
145                 }
146             );
147         }
148     }
149     elsif (exists $options->{does}) {
150         # allow for anon-subtypes here ...
151         if (blessed($options->{does}) && $options->{does}->isa('Moose::Meta::TypeConstraint')) {
152                 $options->{type_constraint} = $options->{does};
153         }
154         else {
155             $options->{type_constraint} = Moose::Util::TypeConstraints::find_or_create_type_constraint(
156                 $options->{does} => {
157                     parent     => Moose::Util::TypeConstraints::find_type_constraint('Role'),
158                     constraint => sub { 
159                         Moose::Util::does_role($_[0], $options->{does})
160                     }
161                 }
162             );
163         }
164     }
165
166     if (exists $options->{coerce} && $options->{coerce}) {
167         (exists $options->{type_constraint})
168             || confess "You cannot have coercion without specifying a type constraint";
169         confess "You cannot have a weak reference to a coerced value"
170             if $options->{weak_ref};
171     }
172
173     if (exists $options->{auto_deref} && $options->{auto_deref}) {
174         (exists $options->{type_constraint})
175             || confess "You cannot auto-dereference without specifying a type constraint";
176         ($options->{type_constraint}->is_a_type_of('ArrayRef') ||
177          $options->{type_constraint}->is_a_type_of('HashRef'))
178             || confess "You cannot auto-dereference anything other than a ArrayRef or HashRef";
179     }
180
181     if (exists $options->{lazy_build} && $options->{lazy_build} == 1) {
182         confess("You can not use lazy_build and default for the same attribute")
183             if exists $options->{default};
184         $options->{lazy}      = 1;
185         $options->{required}  = 1;
186         $options->{builder} ||= "_build_${name}";
187         if ($name =~ /^_/) {
188             $options->{clearer}   ||= "_clear${name}";
189             $options->{predicate} ||= "_has${name}";
190         } 
191         else {
192             $options->{clearer}   ||= "clear_${name}";
193             $options->{predicate} ||= "has_${name}";
194         }
195     }
196
197     if (exists $options->{lazy} && $options->{lazy}) {
198         (exists $options->{default} || defined $options->{builder} )
199             || confess "You cannot have lazy attribute without specifying a default value for it";
200     }
201
202     if ( $options->{required} && !( ( !exists $options->{init_arg} || defined $options->{init_arg} ) || exists $options->{default} || defined $options->{builder} ) ) {
203         confess "You cannot have a required attribute without a default, builder, or an init_arg";
204     }
205
206 }
207
208 sub initialize_instance_slot {
209     my ($self, $meta_instance, $instance, $params) = @_;
210     my $init_arg = $self->init_arg();
211     # try to fetch the init arg from the %params ...
212
213     my $val;
214     my $value_is_set;
215     if ( defined($init_arg) and exists $params->{$init_arg}) {
216         $val = $params->{$init_arg};
217         $value_is_set = 1;    
218     }
219     else {
220         # skip it if it's lazy
221         return if $self->is_lazy;
222         # and die if it's required and doesn't have a default value
223         confess "Attribute (" . $self->name . ") is required"
224             if $self->is_required && !$self->has_default && !$self->has_builder;
225
226         # if nothing was in the %params, we can use the
227         # attribute's default value (if it has one)
228         if ($self->has_default) {
229             $val = $self->default($instance);
230             $value_is_set = 1;
231         } 
232         elsif ($self->has_builder) {
233             if (my $builder = $instance->can($self->builder)){
234                 $val = $instance->$builder;
235                 $value_is_set = 1;
236             } 
237             else {
238                 confess(blessed($instance)." does not support builder method '".$self->builder."' for attribute '" . $self->name . "'");
239             }
240         }
241     }
242
243     return unless $value_is_set;
244
245     if ($self->has_type_constraint) {
246         my $type_constraint = $self->type_constraint;
247         if ($self->should_coerce && $type_constraint->has_coercion) {
248             $val = $type_constraint->coerce($val);
249         }
250         $type_constraint->check($val)
251             || confess "Attribute (" 
252                      . $self->name 
253                      . ") does not pass the type constraint because: " 
254                      . $type_constraint->get_message($val);
255     }
256
257     $self->set_initial_value($instance, $val);
258     $meta_instance->weaken_slot_value($instance, $self->name)
259         if ref $val && $self->is_weak_ref;
260 }
261
262 ## Slot management
263
264 # FIXME:
265 # this duplicates too much code from 
266 # Class::MOP::Attribute, we need to 
267 # refactor these bits eventually.
268 # - SL
269 sub _set_initial_slot_value {
270     my ($self, $meta_instance, $instance, $value) = @_;
271
272     my $slot_name = $self->name;
273
274     return $meta_instance->set_slot_value($instance, $slot_name, $value)
275         unless $self->has_initializer;
276
277     my ($type_constraint, $can_coerce);
278     if ($self->has_type_constraint) {
279         $type_constraint = $self->type_constraint;
280         $can_coerce      = ($self->should_coerce && $type_constraint->has_coercion);
281     }
282
283     my $callback = sub {
284         my $val = shift;
285         if ($type_constraint) {
286             $val = $type_constraint->coerce($val)
287                 if $can_coerce;
288             $type_constraint->check($val)
289                 || confess "Attribute (" 
290                          . $slot_name 
291                          . ") does not pass the type constraint because: " 
292                          . $type_constraint->get_message($val);            
293         }
294         $meta_instance->set_slot_value($instance, $slot_name, $val);
295     };
296     
297     my $initializer = $self->initializer;
298
299     # most things will just want to set a value, so make it first arg
300     $instance->$initializer($value, $callback, $self);
301 }
302
303 sub set_value {
304     my ($self, $instance, $value) = @_;
305
306     my $attr_name = $self->name;
307
308     if ($self->is_required) {
309         defined($value)
310             || confess "Attribute ($attr_name) is required, so cannot be set to undef";
311     }
312
313     if ($self->has_type_constraint) {
314
315         my $type_constraint = $self->type_constraint;
316
317         if ($self->should_coerce) {
318             $value = $type_constraint->coerce($value);
319         }        
320         $type_constraint->_compiled_type_constraint->($value)
321             || confess "Attribute (" 
322                      . $self->name 
323                      . ") does not pass the type constraint because " 
324                      . $type_constraint->get_message($value);
325     }
326
327     my $meta_instance = Class::MOP::Class->initialize(blessed($instance))
328                                          ->get_meta_instance;
329
330     $meta_instance->set_slot_value($instance, $attr_name, $value);
331
332     if (ref $value && $self->is_weak_ref) {
333         $meta_instance->weaken_slot_value($instance, $attr_name);
334     }
335
336     if ($self->has_trigger) {
337         $self->trigger->($instance, $value, $self);
338     }
339 }
340
341 sub get_value {
342     my ($self, $instance) = @_;
343
344     if ($self->is_lazy) {
345         unless ($self->has_value($instance)) {
346             if ($self->has_default) {
347                 my $default = $self->default($instance);
348                 $self->set_initial_value($instance, $default);
349             }
350             if ( $self->has_builder ){
351                 if (my $builder = $instance->can($self->builder)){
352                     $self->set_initial_value($instance, $instance->$builder);
353                 } 
354                 else {
355                     confess(blessed($instance) 
356                           . " does not support builder method '"
357                           . $self->builder 
358                           . "' for attribute '" 
359                           . $self->name 
360                           . "'");
361                 }
362             } 
363             else {
364                 $self->set_initial_value($instance, undef);
365             }
366         }
367     }
368
369     if ($self->should_auto_deref) {
370
371         my $type_constraint = $self->type_constraint;
372
373         if ($type_constraint->is_a_type_of('ArrayRef')) {
374             my $rv = $self->SUPER::get_value($instance);
375             return unless defined $rv;
376             return wantarray ? @{ $rv } : $rv;
377         }
378         elsif ($type_constraint->is_a_type_of('HashRef')) {
379             my $rv = $self->SUPER::get_value($instance);
380             return unless defined $rv;
381             return wantarray ? %{ $rv } : $rv;
382         }
383         else {
384             confess "Can not auto de-reference the type constraint '" . $type_constraint->name . "'";
385         }
386
387     }
388     else {
389
390         return $self->SUPER::get_value($instance);
391     }
392 }
393
394 ## installing accessors
395
396 sub accessor_metaclass { 'Moose::Meta::Method::Accessor' }
397
398 sub install_accessors {
399     my $self = shift;
400     $self->SUPER::install_accessors(@_);
401
402     if ($self->has_handles) {
403
404         # NOTE:
405         # Here we canonicalize the 'handles' option
406         # this will sort out any details and always
407         # return an hash of methods which we want
408         # to delagate to, see that method for details
409         my %handles = $self->_canonicalize_handles();
410
411         # find the accessor method for this attribute
412         my $accessor = $self->get_read_method_ref;
413         # then unpack it if we need too ...
414         $accessor = $accessor->body if blessed $accessor;
415
416         # install the delegation ...
417         my $associated_class = $self->associated_class;
418         foreach my $handle (keys %handles) {
419             my $method_to_call = $handles{$handle};
420             my $class_name = $associated_class->name;
421             my $name = "${class_name}::${handle}";
422
423             (!$associated_class->has_method($handle))
424                 || confess "You cannot overwrite a locally defined method ($handle) with a delegation";
425
426             # NOTE:
427             # handles is not allowed to delegate
428             # any of these methods, as they will
429             # override the ones in your class, which
430             # is almost certainly not what you want.
431
432             # FIXME warn when $handle was explicitly specified, but not if the source is a regex or something
433             #cluck("Not delegating method '$handle' because it is a core method") and
434             next if $class_name->isa("Moose::Object") and $handle =~ /^BUILD|DEMOLISH$/ || Moose::Object->can($handle);
435
436             if ((reftype($method_to_call) || '') eq 'CODE') {
437                 $associated_class->add_method($handle => subname $name, $method_to_call);
438             }
439             else {
440                 $associated_class->add_method($handle => subname $name, sub {
441                     my $proxy = (shift)->$accessor();
442                     @_ = ($proxy, @_);
443                     (defined $proxy) 
444                         || confess "Cannot delegate $handle to $method_to_call because " . 
445                                    "the value of " . $self->name . " is not defined";
446                     $proxy->$method_to_call;
447                 });
448             }
449         }
450     }
451
452     return;
453 }
454
455 # private methods to help delegation ...
456
457 sub _canonicalize_handles {
458     my $self    = shift;
459     my $handles = $self->handles;
460     if (my $handle_type = ref($handles)) {
461         if ($handle_type eq 'HASH') {
462             return %{$handles};
463         }
464         elsif ($handle_type eq 'ARRAY') {
465             return map { $_ => $_ } @{$handles};
466         }
467         elsif ($handle_type eq 'Regexp') {
468             ($self->has_type_constraint)
469                 || confess "Cannot delegate methods based on a RegExpr without a type constraint (isa)";
470             return map  { ($_ => $_) }
471                    grep { /$handles/ } $self->_get_delegate_method_list;
472         }
473         elsif ($handle_type eq 'CODE') {
474             return $handles->($self, $self->_find_delegate_metaclass);
475         }
476         else {
477             confess "Unable to canonicalize the 'handles' option with $handles";
478         }
479     }
480     else {
481         my $role_meta = eval { $handles->meta };
482         if ($@) {
483             confess "Unable to canonicalize the 'handles' option with $handles because : $@";
484         }
485
486         (blessed $role_meta && $role_meta->isa('Moose::Meta::Role'))
487             || confess "Unable to canonicalize the 'handles' option with $handles because ->meta is not a Moose::Meta::Role";
488
489         return map { $_ => $_ } (
490             $role_meta->get_method_list,
491             $role_meta->get_required_method_list
492         );
493     }
494 }
495
496 sub _find_delegate_metaclass {
497     my $self = shift;
498     if (my $class = $self->_isa_metadata) {
499         # if the class does have
500         # a meta method, use it
501         return $class->meta if $class->can('meta');
502         # otherwise we might be
503         # dealing with a non-Moose
504         # class, and need to make
505         # our own metaclass
506         return Moose::Meta::Class->initialize($class);
507     }
508     elsif (my $role = $self->_does_metadata) {
509         # our role will always have
510         # a meta method
511         return $role->meta;
512     }
513     else {
514         confess "Cannot find delegate metaclass for attribute " . $self->name;
515     }
516 }
517
518 sub _get_delegate_method_list {
519     my $self = shift;
520     my $meta = $self->_find_delegate_metaclass;
521     if ($meta->isa('Class::MOP::Class')) {
522         return map  { $_->{name}                     }  # NOTE: !never! delegate &meta
523                grep { $_->{class} ne 'Moose::Object' && $_->{name} ne 'meta' }
524                     $meta->compute_all_applicable_methods;
525     }
526     elsif ($meta->isa('Moose::Meta::Role')) {
527         return $meta->get_method_list;
528     }
529     else {
530         confess "Unable to recognize the delegate metaclass '$meta'";
531     }
532 }
533
534 1;
535
536 __END__
537
538 =pod
539
540 =head1 NAME
541
542 Moose::Meta::Attribute - The Moose attribute metaclass
543
544 =head1 DESCRIPTION
545
546 This is a subclass of L<Class::MOP::Attribute> with Moose specific
547 extensions.
548
549 For the most part, the only time you will ever encounter an
550 instance of this class is if you are doing some serious deep
551 introspection. To really understand this class, you need to refer
552 to the L<Class::MOP::Attribute> documentation.
553
554 =head1 METHODS
555
556 =head2 Overridden methods
557
558 These methods override methods in L<Class::MOP::Attribute> and add
559 Moose specific features. You can safely assume though that they
560 will behave just as L<Class::MOP::Attribute> does.
561
562 =over 4
563
564 =item B<new>
565
566 =item B<initialize_instance_slot>
567
568 =item B<install_accessors>
569
570 =item B<accessor_metaclass>
571
572 =item B<get_value>
573
574 =item B<set_value>
575
576   eval { $point->meta->get_attribute('x')->set_value($point, 'fourty-two') };
577   if($@) {
578     print "Oops: $@\n";
579   }
580
581 I<Attribute (x) does not pass the type constraint (Int) with 'fourty-two'>
582
583 Before setting the value, a check is made on the type constraint of
584 the attribute, if it has one, to see if the value passes it. If the
585 value fails to pass, the set operation dies with a L<Carp/confess>.
586
587 Any coercion to convert values is done before checking the type constraint.
588
589 To check a value against a type constraint before setting it, fetch the
590 attribute instance using L<Class::MOP::Class/find_attribute_by_name>,
591 fetch the type_constraint from the attribute using L<Moose::Meta::Attribute/type_constraint>
592 and call L<Moose::Meta::TypeConstraint/check>. See L<Moose::Cookbook::RecipeX>
593 for an example.
594
595 =back
596
597 =head2 Additional Moose features
598
599 Moose attributes support type-constraint checking, weak reference
600 creation and type coercion.
601
602 =over 4
603
604 =item B<clone_and_inherit_options>
605
606 This is to support the C<has '+foo'> feature, it clones an attribute
607 from a superclass and allows a very specific set of changes to be made
608 to the attribute.
609
610 =item B<has_type_constraint>
611
612 Returns true if this meta-attribute has a type constraint.
613
614 =item B<type_constraint>
615
616 A read-only accessor for this meta-attribute's type constraint. For
617 more information on what you can do with this, see the documentation
618 for L<Moose::Meta::TypeConstraint>.
619
620 =item B<has_handles>
621
622 Returns true if this meta-attribute performs delegation.
623
624 =item B<handles>
625
626 This returns the value which was passed into the handles option.
627
628 =item B<is_weak_ref>
629
630 Returns true if this meta-attribute produces a weak reference.
631
632 =item B<is_required>
633
634 Returns true if this meta-attribute is required to have a value.
635
636 =item B<is_lazy>
637
638 Returns true if this meta-attribute should be initialized lazily.
639
640 NOTE: lazy attributes, B<must> have a C<default> or C<builder> field set.
641
642 =item B<is_lazy_build>
643
644 Returns true if this meta-attribute should be initialized lazily through
645 the builder generated by lazy_build. Using C<lazy_build =E<gt> 1> will
646 make your attribute required and lazy. In addition it will set the builder, clearer
647 and predicate options for you using the following convention.
648
649    #If your attribute name starts with an underscore:
650    has '_foo' => (lazy_build => 1);
651    #is the same as
652    has '_foo' => (lazy => 1, required => 1, predicate => '_has_foo', clearer => '_clear_foo', builder => '_build__foo);
653    # or
654    has '_foo' => (lazy => 1, required => 1, predicate => '_has_foo', clearer => '_clear_foo', default => sub{shift->_build__foo});
655
656    #If your attribute name does not start with an underscore:
657    has 'foo' => (lazy_build => 1);
658    #is the same as
659    has 'foo' => (lazy => 1, required => 1, predicate => 'has_foo', clearer => 'clear_foo', builder => '_build_foo);
660    # or
661    has 'foo' => (lazy => 1, required => 1, predicate => 'has_foo', clearer => 'clear_foo', default => sub{shift->_build_foo});
662
663 The reason for the different naming of the C<builder> is that the C<builder>
664 method is a private method while the C<clearer> and C<predicate> methods
665 are public methods.
666
667 NOTE: This means your class should provide a method whose name matches the value
668 of the builder part, in this case _build__foo or _build_foo.
669
670 =item B<should_coerce>
671
672 Returns true if this meta-attribute should perform type coercion.
673
674 =item B<should_auto_deref>
675
676 Returns true if this meta-attribute should perform automatic
677 auto-dereferencing.
678
679 NOTE: This can only be done for attributes whose type constraint is
680 either I<ArrayRef> or I<HashRef>.
681
682 =item B<has_trigger>
683
684 Returns true if this meta-attribute has a trigger set.
685
686 =item B<trigger>
687
688 This is a CODE reference which will be executed every time the
689 value of an attribute is assigned. The CODE ref will get two values,
690 the invocant and the new value. This can be used to handle I<basic>
691 bi-directional relations.
692
693 =item B<documentation>
694
695 This is a string which contains the documentation for this attribute.
696 It serves no direct purpose right now, but it might in the future
697 in some kind of automated documentation system perhaps.
698
699 =item B<has_documentation>
700
701 Returns true if this meta-attribute has any documentation.
702
703 =back
704
705 =head1 BUGS
706
707 All complex software has bugs lurking in it, and this module is no
708 exception. If you find a bug please either email me, or add the bug
709 to cpan-RT.
710
711 =head1 AUTHOR
712
713 Stevan Little E<lt>stevan@iinteractive.comE<gt>
714
715 Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
716
717 =head1 COPYRIGHT AND LICENSE
718
719 Copyright 2006-2008 by Infinity Interactive, Inc.
720
721 L<http://www.iinteractive.com>
722
723 This library is free software; you can redistribute it and/or modify
724 it under the same terms as Perl itself.
725
726 =cut