818efd115d6d59c497801217059a5b21213f081e
[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';
8 use List::MoreUtils 'any';
9 use Try::Tiny;
10 use overload     ();
11
12 our $VERSION   = '1.08';
13 our $AUTHORITY = 'cpan:STEVAN';
14
15 use Moose::Meta::Method::Accessor;
16 use Moose::Meta::Method::Delegation;
17 use Moose::Util ();
18 use Moose::Util::TypeConstraints ();
19
20 use base 'Class::MOP::Attribute', 'Moose::Meta::Mixin::AttributeCore';
21
22 __PACKAGE__->meta->add_attribute('traits' => (
23     reader    => 'applied_traits',
24     predicate => 'has_applied_traits',
25 ));
26
27 # we need to have a ->does method in here to
28 # more easily support traits, and the introspection
29 # of those traits. We extend the does check to look
30 # for metatrait aliases.
31 sub does {
32     my ($self, $role_name) = @_;
33     my $name = try {
34         Moose::Util::resolve_metatrait_alias(Attribute => $role_name)
35     };
36     return 0 if !defined($name); # failed to load class
37     return $self->Moose::Object::does($name);
38 }
39
40 sub throw_error {
41     my $self = shift;
42     my $class = ( ref $self && $self->associated_class ) || "Moose::Meta::Class";
43     unshift @_, "message" if @_ % 2 == 1;
44     unshift @_, attr => $self if ref $self;
45     unshift @_, $class;
46     my $handler = $class->can("throw_error"); # to avoid incrementing depth by 1
47     goto $handler;
48 }
49
50 sub new {
51     my ($class, $name, %options) = @_;
52     $class->_process_options($name, \%options) unless $options{__hack_no_process_options}; # used from clone()... YECHKKK FIXME ICKY YUCK GROSS
53     
54     delete $options{__hack_no_process_options};
55
56     my %attrs =
57         ( map { $_ => 1 }
58           grep { defined }
59           map { $_->init_arg() }
60           $class->meta()->get_all_attributes()
61         );
62
63     my @bad = sort grep { ! $attrs{$_} }  keys %options;
64
65     if (@bad)
66     {
67         Carp::cluck "Found unknown argument(s) passed to '$name' attribute constructor in '$class': @bad";
68     }
69
70     return $class->SUPER::new($name, %options);
71 }
72
73 sub interpolate_class_and_new {
74     my ($class, $name, %args) = @_;
75
76     my ( $new_class, @traits ) = $class->interpolate_class(\%args);
77
78     $new_class->new($name, %args, ( scalar(@traits) ? ( traits => \@traits ) : () ) );
79 }
80
81 sub interpolate_class {
82     my ($class, $options) = @_;
83
84     $class = ref($class) || $class;
85
86     if ( my $metaclass_name = delete $options->{metaclass} ) {
87         my $new_class = Moose::Util::resolve_metaclass_alias( Attribute => $metaclass_name );
88
89         if ( $class ne $new_class ) {
90             if ( $new_class->can("interpolate_class") ) {
91                 return $new_class->interpolate_class($options);
92             } else {
93                 $class = $new_class;
94             }
95         }
96     }
97
98     my @traits;
99
100     if (my $traits = $options->{traits}) {
101         my $i = 0;
102         while ($i < @$traits) {
103             my $trait = $traits->[$i++];
104             next if ref($trait); # options to a trait we discarded
105
106             $trait = Moose::Util::resolve_metatrait_alias(Attribute => $trait)
107                   || $trait;
108
109             next if $class->does($trait);
110
111             push @traits, $trait;
112
113             # are there options?
114             push @traits, $traits->[$i++]
115                 if $traits->[$i] && ref($traits->[$i]);
116         }
117
118         if (@traits) {
119             my $anon_class = Moose::Meta::Class->create_anon_class(
120                 superclasses => [ $class ],
121                 roles        => [ @traits ],
122                 cache        => 1,
123             );
124
125             $class = $anon_class->name;
126         }
127     }
128
129     return ( wantarray ? ( $class, @traits ) : $class );
130 }
131
132 # ...
133
134 sub illegal_options_for_inheritance { }
135
136 # NOTE/TODO
137 # This method *must* be able to handle
138 # Class::MOP::Attribute instances as
139 # well. Yes, I know that is wrong, but
140 # apparently we didn't realize it was
141 # doing that and now we have some code
142 # which is dependent on it. The real
143 # solution of course is to push this
144 # feature back up into Class::MOP::Attribute
145 # but I not right now, I am too lazy.
146 # However if you are reading this and
147 # looking for something to do,.. please
148 # be my guest.
149 # - stevan
150 sub clone_and_inherit_options {
151     my ($self, %options) = @_;
152
153     my %copy = %options;
154
155     # NOTE:
156     # we may want to extends a Class::MOP::Attribute
157     # in which case we need to be able to use the
158     # core set of legal options that have always
159     # been here. But we allows Moose::Meta::Attribute
160     # instances to changes them.
161     # - SL
162     my @illegal_options = $self->can('illegal_options_for_inheritance')
163         ? $self->illegal_options_for_inheritance
164         : ();
165
166     my @found_illegal_options = grep { exists $options{$_} ? $_ : undef } @illegal_options;
167     (scalar @found_illegal_options == 0)
168         || $self->throw_error("Illegal inherited options => (" . (join ', ' => @found_illegal_options) . ")", data => \%options);
169
170     if ($options{isa}) {
171         my $type_constraint;
172         if (blessed($options{isa}) && $options{isa}->isa('Moose::Meta::TypeConstraint')) {
173             $type_constraint = $options{isa};
174         }
175         else {
176             $type_constraint = Moose::Util::TypeConstraints::find_or_create_isa_type_constraint($options{isa});
177             (defined $type_constraint)
178                 || $self->throw_error("Could not find the type constraint '" . $options{isa} . "'", data => $options{isa});
179         }
180
181         $options{type_constraint} = $type_constraint;
182     }
183
184     if ($options{does}) {
185         my $type_constraint;
186         if (blessed($options{does}) && $options{does}->isa('Moose::Meta::TypeConstraint')) {
187             $type_constraint = $options{does};
188         }
189         else {
190             $type_constraint = Moose::Util::TypeConstraints::find_or_create_does_type_constraint($options{does});
191             (defined $type_constraint)
192                 || $self->throw_error("Could not find the type constraint '" . $options{does} . "'", data => $options{does});
193         }
194
195         $options{type_constraint} = $type_constraint;
196     }
197
198     # NOTE:
199     # this doesn't apply to Class::MOP::Attributes,
200     # so we can ignore it for them.
201     # - SL
202     if ($self->can('interpolate_class')) {
203         ( $options{metaclass}, my @traits ) = $self->interpolate_class(\%options);
204
205         my %seen;
206         my @all_traits = grep { $seen{$_}++ } @{ $self->applied_traits || [] }, @traits;
207         $options{traits} = \@all_traits if @all_traits;
208     }
209
210     $self->clone(%options);
211 }
212
213 sub clone {
214     my ( $self, %params ) = @_;
215
216     my $class = delete $params{metaclass} || ref $self;
217
218     my ( @init, @non_init );
219
220     foreach my $attr ( grep { $_->has_value($self) } Class::MOP::class_of($self)->get_all_attributes ) {
221         push @{ $attr->has_init_arg ? \@init : \@non_init }, $attr;
222     }
223
224     my %new_params = ( ( map { $_->init_arg => $_->get_value($self) } @init ), %params );
225
226     my $name = delete $new_params{name};
227
228     my $clone = $class->new($name, %new_params, __hack_no_process_options => 1 );
229
230     foreach my $attr ( @non_init ) {
231         $attr->set_value($clone, $attr->get_value($self));
232     }
233
234     return $clone;
235 }
236
237 sub _process_options {
238     my ($class, $name, $options) = @_;
239
240     if (exists $options->{is}) {
241
242         ### -------------------------
243         ## is => ro, writer => _foo    # turns into (reader => foo, writer => _foo) as before
244         ## is => rw, writer => _foo    # turns into (reader => foo, writer => _foo)
245         ## is => rw, accessor => _foo  # turns into (accessor => _foo)
246         ## is => ro, accessor => _foo  # error, accesor is rw
247         ### -------------------------
248
249         if ($options->{is} eq 'ro') {
250             $class->throw_error("Cannot define an accessor name on a read-only attribute, accessors are read/write", data => $options)
251                 if exists $options->{accessor};
252             $options->{reader} ||= $name;
253         }
254         elsif ($options->{is} eq 'rw') {
255             if ($options->{writer}) {
256                 $options->{reader} ||= $name;
257             }
258             else {
259                 $options->{accessor} ||= $name;
260             }
261         }
262         elsif ($options->{is} eq 'bare') {
263             # do nothing, but don't complain (later) about missing methods
264         }
265         else {
266             $class->throw_error("I do not understand this option (is => " . $options->{is} . ") on attribute ($name)", data => $options->{is});
267         }
268     }
269
270     if (exists $options->{isa}) {
271         if (exists $options->{does}) {
272             if (try { $options->{isa}->can('does') }) {
273                 ($options->{isa}->does($options->{does}))
274                     || $class->throw_error("Cannot have an isa option and a does option if the isa does not do the does on attribute ($name)", data => $options);
275             }
276             else {
277                 $class->throw_error("Cannot have an isa option which cannot ->does() on attribute ($name)", data => $options);
278             }
279         }
280
281         # allow for anon-subtypes here ...
282         if (blessed($options->{isa}) && $options->{isa}->isa('Moose::Meta::TypeConstraint')) {
283             $options->{type_constraint} = $options->{isa};
284         }
285         else {
286             $options->{type_constraint} = Moose::Util::TypeConstraints::find_or_create_isa_type_constraint($options->{isa});
287         }
288     }
289     elsif (exists $options->{does}) {
290         # allow for anon-subtypes here ...
291         if (blessed($options->{does}) && $options->{does}->isa('Moose::Meta::TypeConstraint')) {
292                 $options->{type_constraint} = $options->{does};
293         }
294         else {
295             $options->{type_constraint} = Moose::Util::TypeConstraints::find_or_create_does_type_constraint($options->{does});
296         }
297     }
298
299     if (exists $options->{coerce} && $options->{coerce}) {
300         (exists $options->{type_constraint})
301             || $class->throw_error("You cannot have coercion without specifying a type constraint on attribute ($name)", data => $options);
302         $class->throw_error("You cannot have a weak reference to a coerced value on attribute ($name)", data => $options)
303             if $options->{weak_ref};
304
305         unless ( $options->{type_constraint}->has_coercion ) {
306             my $type = $options->{type_constraint}->name;
307             $class->throw_error("You cannot coerce an attribute ($name) unless its type ($type) has a coercion", data => $options);
308         }
309     }
310
311     if (exists $options->{trigger}) {
312         ('CODE' eq ref $options->{trigger})
313             || $class->throw_error("Trigger must be a CODE ref on attribute ($name)", data => $options->{trigger});
314     }
315
316     if (exists $options->{auto_deref} && $options->{auto_deref}) {
317         (exists $options->{type_constraint})
318             || $class->throw_error("You cannot auto-dereference without specifying a type constraint on attribute ($name)", data => $options);
319         ($options->{type_constraint}->is_a_type_of('ArrayRef') ||
320          $options->{type_constraint}->is_a_type_of('HashRef'))
321             || $class->throw_error("You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute ($name)", data => $options);
322     }
323
324     if (exists $options->{lazy_build} && $options->{lazy_build} == 1) {
325         $class->throw_error("You can not use lazy_build and default for the same attribute ($name)", data => $options)
326             if exists $options->{default};
327         $options->{lazy}      = 1;
328         $options->{builder} ||= "_build_${name}";
329         if ($name =~ /^_/) {
330             $options->{clearer}   ||= "_clear${name}";
331             $options->{predicate} ||= "_has${name}";
332         }
333         else {
334             $options->{clearer}   ||= "clear_${name}";
335             $options->{predicate} ||= "has_${name}";
336         }
337     }
338
339     if (exists $options->{lazy} && $options->{lazy}) {
340         (exists $options->{default} || defined $options->{builder} )
341             || $class->throw_error("You cannot have lazy attribute ($name) without specifying a default value for it", data => $options);
342     }
343
344     if ( $options->{required} && !( ( !exists $options->{init_arg} || defined $options->{init_arg} ) || exists $options->{default} || defined $options->{builder} ) ) {
345         $class->throw_error("You cannot have a required attribute ($name) without a default, builder, or an init_arg", data => $options);
346     }
347
348 }
349
350 sub initialize_instance_slot {
351     my ($self, $meta_instance, $instance, $params) = @_;
352     my $init_arg = $self->init_arg();
353     # try to fetch the init arg from the %params ...
354
355     my $val;
356     my $value_is_set;
357     if ( defined($init_arg) and exists $params->{$init_arg}) {
358         $val = $params->{$init_arg};
359         $value_is_set = 1;
360     }
361     else {
362         # skip it if it's lazy
363         return if $self->is_lazy;
364         # and die if it's required and doesn't have a default value
365         $self->throw_error("Attribute (" . $self->name . ") is required", object => $instance, data => $params)
366             if $self->is_required && !$self->has_default && !$self->has_builder;
367
368         # if nothing was in the %params, we can use the
369         # attribute's default value (if it has one)
370         if ($self->has_default) {
371             $val = $self->default($instance);
372             $value_is_set = 1;
373         }
374         elsif ($self->has_builder) {
375             $val = $self->_call_builder($instance);
376             $value_is_set = 1;
377         }
378     }
379
380     return unless $value_is_set;
381
382     $val = $self->_coerce_and_verify( $val, $instance );
383
384     $self->set_initial_value($instance, $val);
385
386     if ( ref $val && $self->is_weak_ref ) {
387         $self->_weaken_value($instance);
388     }
389 }
390
391 sub _call_builder {
392     my ( $self, $instance ) = @_;
393
394     my $builder = $self->builder();
395
396     return $instance->$builder()
397         if $instance->can( $self->builder );
398
399     $self->throw_error(  blessed($instance)
400             . " does not support builder method '"
401             . $self->builder
402             . "' for attribute '"
403             . $self->name
404             . "'",
405             object => $instance,
406      );
407 }
408
409 ## Slot management
410
411 # FIXME:
412 # this duplicates too much code from
413 # Class::MOP::Attribute, we need to
414 # refactor these bits eventually.
415 # - SL
416 sub _set_initial_slot_value {
417     my ($self, $meta_instance, $instance, $value) = @_;
418
419     my $slot_name = $self->name;
420
421     return $meta_instance->set_slot_value($instance, $slot_name, $value)
422         unless $self->has_initializer;
423
424     my $callback = sub {
425         my $val = $self->_coerce_and_verify( shift, $instance );;
426
427         $meta_instance->set_slot_value($instance, $slot_name, $val);
428     };
429
430     my $initializer = $self->initializer;
431
432     # most things will just want to set a value, so make it first arg
433     $instance->$initializer($value, $callback, $self);
434 }
435
436 sub set_value {
437     my ($self, $instance, @args) = @_;
438     my $value = $args[0];
439
440     my $attr_name = $self->name;
441
442     if ($self->is_required and not @args) {
443         $self->throw_error("Attribute ($attr_name) is required", object => $instance);
444     }
445
446     $value = $self->_coerce_and_verify( $value, $instance );
447
448     my @old;
449     if ( $self->has_trigger && $self->has_value($instance) ) {
450         @old = $self->get_value($instance, 'for trigger');
451     }
452
453     $self->SUPER::set_value($instance, $value);
454
455     if ( ref $value && $self->is_weak_ref ) {
456         $self->_weaken_value($instance);
457     }
458
459     if ($self->has_trigger) {
460         $self->trigger->($instance, $value, @old);
461     }
462 }
463
464 sub _weaken_value {
465     my ( $self, $instance ) = @_;
466
467     my $meta_instance = Class::MOP::Class->initialize( blessed($instance) )
468         ->get_meta_instance;
469
470     $meta_instance->weaken_slot_value( $instance, $self->name );
471 }
472
473 sub get_value {
474     my ($self, $instance, $for_trigger) = @_;
475
476     if ($self->is_lazy) {
477         unless ($self->has_value($instance)) {
478             my $value;
479             if ($self->has_default) {
480                 $value = $self->default($instance);
481             } elsif ( $self->has_builder ) {
482                 $value = $self->_call_builder($instance);
483             }
484
485             $value = $self->_coerce_and_verify( $value, $instance );
486
487             $self->set_initial_value($instance, $value);
488         }
489     }
490
491     if ( $self->should_auto_deref && ! $for_trigger ) {
492
493         my $type_constraint = $self->type_constraint;
494
495         if ($type_constraint->is_a_type_of('ArrayRef')) {
496             my $rv = $self->SUPER::get_value($instance);
497             return unless defined $rv;
498             return wantarray ? @{ $rv } : $rv;
499         }
500         elsif ($type_constraint->is_a_type_of('HashRef')) {
501             my $rv = $self->SUPER::get_value($instance);
502             return unless defined $rv;
503             return wantarray ? %{ $rv } : $rv;
504         }
505         else {
506             $self->throw_error("Can not auto de-reference the type constraint '" . $type_constraint->name . "'", object => $instance, type_constraint => $type_constraint);
507         }
508
509     }
510     else {
511
512         return $self->SUPER::get_value($instance);
513     }
514 }
515
516 ## installing accessors
517
518 sub accessor_metaclass { 'Moose::Meta::Method::Accessor' }
519
520 sub install_accessors {
521     my $self = shift;
522     $self->SUPER::install_accessors(@_);
523     $self->install_delegation if $self->has_handles;
524     return;
525 }
526
527 sub _check_associated_methods {
528     my $self = shift;
529     unless (
530         @{ $self->associated_methods }
531         || ($self->_is_metadata || '') eq 'bare'
532     ) {
533         Carp::cluck(
534             'Attribute (' . $self->name . ') of class '
535             . $self->associated_class->name
536             . ' has no associated methods'
537             . ' (did you mean to provide an "is" argument?)'
538             . "\n"
539         )
540     }
541 }
542
543 sub _process_accessors {
544     my $self = shift;
545     my ($type, $accessor, $generate_as_inline_methods) = @_;
546     $accessor = (keys %$accessor)[0] if (ref($accessor)||'') eq 'HASH';
547     my $method = $self->associated_class->get_method($accessor);
548     if ($method && !$method->isa('Class::MOP::Method::Accessor')
549      && (!$self->definition_context
550       || $method->package_name eq $self->definition_context->{package})) {
551         Carp::cluck(
552             "You are overwriting a locally defined method ($accessor) with "
553           . "an accessor"
554         );
555     }
556     $self->SUPER::_process_accessors(@_);
557 }
558
559 sub remove_accessors {
560     my $self = shift;
561     $self->SUPER::remove_accessors(@_);
562     $self->remove_delegation if $self->has_handles;
563     return;
564 }
565
566 sub install_delegation {
567     my $self = shift;
568
569     # NOTE:
570     # Here we canonicalize the 'handles' option
571     # this will sort out any details and always
572     # return an hash of methods which we want
573     # to delagate to, see that method for details
574     my %handles = $self->_canonicalize_handles;
575
576
577     # install the delegation ...
578     my $associated_class = $self->associated_class;
579     foreach my $handle (keys %handles) {
580         my $method_to_call = $handles{$handle};
581         my $class_name = $associated_class->name;
582         my $name = "${class_name}::${handle}";
583
584             (!$associated_class->has_method($handle))
585                 || $self->throw_error("You cannot overwrite a locally defined method ($handle) with a delegation", method_name => $handle);
586
587         # NOTE:
588         # handles is not allowed to delegate
589         # any of these methods, as they will
590         # override the ones in your class, which
591         # is almost certainly not what you want.
592
593         # FIXME warn when $handle was explicitly specified, but not if the source is a regex or something
594         #cluck("Not delegating method '$handle' because it is a core method") and
595         next if $class_name->isa("Moose::Object") and $handle =~ /^BUILD|DEMOLISH$/ || Moose::Object->can($handle);
596
597         my $method = $self->_make_delegation_method($handle, $method_to_call);
598
599         $self->associated_class->add_method($method->name, $method);
600         $self->associate_method($method);
601     }
602 }
603
604 sub remove_delegation {
605     my $self = shift;
606     my %handles = $self->_canonicalize_handles;
607     my $associated_class = $self->associated_class;
608     foreach my $handle (keys %handles) {
609         next unless any { $handle eq $_ }
610                     map { $_->name }
611                     @{ $self->associated_methods };
612         $self->associated_class->remove_method($handle);
613     }
614 }
615
616 # private methods to help delegation ...
617
618 sub _canonicalize_handles {
619     my $self    = shift;
620     my $handles = $self->handles;
621     if (my $handle_type = ref($handles)) {
622         if ($handle_type eq 'HASH') {
623             return %{$handles};
624         }
625         elsif ($handle_type eq 'ARRAY') {
626             return map { $_ => $_ } @{$handles};
627         }
628         elsif ($handle_type eq 'Regexp') {
629             ($self->has_type_constraint)
630                 || $self->throw_error("Cannot delegate methods based on a Regexp without a type constraint (isa)", data => $handles);
631             return map  { ($_ => $_) }
632                    grep { /$handles/ } $self->_get_delegate_method_list;
633         }
634         elsif ($handle_type eq 'CODE') {
635             return $handles->($self, $self->_find_delegate_metaclass);
636         }
637         elsif (blessed($handles) && $handles->isa('Moose::Meta::TypeConstraint::DuckType')) {
638             return map { $_ => $_ } @{ $handles->methods };
639         }
640         elsif (blessed($handles) && $handles->isa('Moose::Meta::TypeConstraint::Role')) {
641             $handles = $handles->role;
642         }
643         else {
644             $self->throw_error("Unable to canonicalize the 'handles' option with $handles", data => $handles);
645         }
646     }
647
648     Class::MOP::load_class($handles);
649     my $role_meta = Class::MOP::class_of($handles);
650
651     (blessed $role_meta && $role_meta->isa('Moose::Meta::Role'))
652         || $self->throw_error("Unable to canonicalize the 'handles' option with $handles because its metaclass is not a Moose::Meta::Role", data => $handles);
653
654     return map { $_ => $_ }
655         grep { $_ ne 'meta' } (
656         $role_meta->get_method_list,
657         map { $_->name } $role_meta->get_required_method_list,
658         );
659 }
660
661 sub _find_delegate_metaclass {
662     my $self = shift;
663     if (my $class = $self->_isa_metadata) {
664         # we might be dealing with a non-Moose class,
665         # and need to make our own metaclass. if there's
666         # already a metaclass, it will be returned
667         return Class::MOP::Class->initialize($class);
668     }
669     elsif (my $role = $self->_does_metadata) {
670         return Class::MOP::class_of($role);
671     }
672     else {
673         $self->throw_error("Cannot find delegate metaclass for attribute " . $self->name);
674     }
675 }
676
677 sub _get_delegate_method_list {
678     my $self = shift;
679     my $meta = $self->_find_delegate_metaclass;
680     if ($meta->isa('Class::MOP::Class')) {
681         return map  { $_->name }  # NOTE: !never! delegate &meta
682                grep { $_->package_name ne 'Moose::Object' && $_->name ne 'meta' }
683                     $meta->get_all_methods;
684     }
685     elsif ($meta->isa('Moose::Meta::Role')) {
686         return $meta->get_method_list;
687     }
688     else {
689         $self->throw_error("Unable to recognize the delegate metaclass '$meta'", data => $meta);
690     }
691 }
692
693 sub delegation_metaclass { 'Moose::Meta::Method::Delegation' }
694
695 sub _make_delegation_method {
696     my ( $self, $handle_name, $method_to_call ) = @_;
697
698     my @curried_arguments;
699
700     ($method_to_call, @curried_arguments) = @$method_to_call
701         if 'ARRAY' eq ref($method_to_call);
702
703     return $self->delegation_metaclass->new(
704         name               => $handle_name,
705         package_name       => $self->associated_class->name,
706         attribute          => $self,
707         delegate_to_method => $method_to_call,
708         curried_arguments  => \@curried_arguments,
709     );
710 }
711
712 sub _coerce_and_verify {
713     my $self     = shift;
714     my $val      = shift;
715     my $instance = shift;
716
717     return $val unless $self->has_type_constraint;
718
719     $val = $self->type_constraint->coerce($val)
720         if $self->should_coerce;
721
722     $self->verify_against_type_constraint($val, instance => $instance);
723
724     return $val;
725 }
726
727 sub verify_against_type_constraint {
728     my $self = shift;
729     my $val  = shift;
730
731     return 1 if !$self->has_type_constraint;
732
733     my $type_constraint = $self->type_constraint;
734
735     $type_constraint->check($val)
736         || $self->throw_error("Attribute ("
737                  . $self->name
738                  . ") does not pass the type constraint because: "
739                  . $type_constraint->get_message($val), data => $val, @_);
740 }
741
742 package Moose::Meta::Attribute::Custom::Moose;
743 sub register_implementation { 'Moose::Meta::Attribute' }
744
745 1;
746
747 __END__
748
749 =pod
750
751 =head1 NAME
752
753 Moose::Meta::Attribute - The Moose attribute metaclass
754
755 =head1 DESCRIPTION
756
757 This class is a subclass of L<Class::MOP::Attribute> that provides
758 additional Moose-specific functionality.
759
760 To really understand this class, you will need to start with the
761 L<Class::MOP::Attribute> documentation. This class can be understood
762 as a set of additional features on top of the basic feature provided
763 by that parent class.
764
765 =head1 INHERITANCE
766
767 C<Moose::Meta::Attribute> is a subclass of L<Class::MOP::Attribute>.
768
769 =head1 METHODS
770
771 Many of the documented below override methods in
772 L<Class::MOP::Attribute> and add Moose specific features.
773
774 =head2 Creation
775
776 =over 4
777
778 =item B<< Moose::Meta::Attribute->new(%options) >>
779
780 This method overrides the L<Class::MOP::Attribute> constructor.
781
782 Many of the options below are described in more detail in the
783 L<Moose::Manual::Attributes> document.
784
785 It adds the following options to the constructor:
786
787 =over 8
788
789 =item * is => 'ro', 'rw', 'bare'
790
791 This provides a shorthand for specifying the C<reader>, C<writer>, or
792 C<accessor> names. If the attribute is read-only ('ro') then it will
793 have a C<reader> method with the same attribute as the name.
794
795 If it is read-write ('rw') then it will have an C<accessor> method
796 with the same name. If you provide an explicit C<writer> for a
797 read-write attribute, then you will have a C<reader> with the same
798 name as the attribute, and a C<writer> with the name you provided.
799
800 Use 'bare' when you are deliberately not installing any methods
801 (accessor, reader, etc.) associated with this attribute; otherwise,
802 Moose will issue a deprecation warning when this attribute is added to a
803 metaclass.
804
805 =item * isa => $type
806
807 This option accepts a type. The type can be a string, which should be
808 a type name. If the type name is unknown, it is assumed to be a class
809 name.
810
811 This option can also accept a L<Moose::Meta::TypeConstraint> object.
812
813 If you I<also> provide a C<does> option, then your C<isa> option must
814 be a class name, and that class must do the role specified with
815 C<does>.
816
817 =item * does => $role
818
819 This is short-hand for saying that the attribute's type must be an
820 object which does the named role.
821
822 =item * coerce => $bool
823
824 This option is only valid for objects with a type constraint
825 (C<isa>). If this is true, then coercions will be applied whenever
826 this attribute is set.
827
828 You can make both this and the C<weak_ref> option true.
829
830 =item * trigger => $sub
831
832 This option accepts a subroutine reference, which will be called after
833 the attribute is set.
834
835 =item * required => $bool
836
837 An attribute which is required must be provided to the constructor. An
838 attribute which is required can also have a C<default> or C<builder>,
839 which will satisfy its required-ness.
840
841 A required attribute must have a C<default>, C<builder> or a
842 non-C<undef> C<init_arg>
843
844 =item * lazy => $bool
845
846 A lazy attribute must have a C<default> or C<builder>. When an
847 attribute is lazy, the default value will not be calculated until the
848 attribute is read.
849
850 =item * weak_ref => $bool
851
852 If this is true, the attribute's value will be stored as a weak
853 reference.
854
855 =item * auto_deref => $bool
856
857 If this is true, then the reader will dereference the value when it is
858 called. The attribute must have a type constraint which defines the
859 attribute as an array or hash reference.
860
861 =item * lazy_build => $bool
862
863 Setting this to true makes the attribute lazy and provides a number of
864 default methods.
865
866   has 'size' => (
867       is         => 'ro',
868       lazy_build => 1,
869   );
870
871 is equivalent to this:
872
873   has 'size' => (
874       is        => 'ro',
875       lazy      => 1,
876       builder   => '_build_size',
877       clearer   => 'clear_size',
878       predicate => 'has_size',
879   );
880
881 =item * documentation
882
883 An arbitrary string that can be retrieved later by calling C<<
884 $attr->documentation >>.
885
886 =back
887
888 =item B<< $attr->clone(%options) >>
889
890 This creates a new attribute based on attribute being cloned. You must
891 supply a C<name> option to provide a new name for the attribute.
892
893 The C<%options> can only specify options handled by
894 L<Class::MOP::Attribute>.
895
896 =back
897
898 =head2 Value management
899
900 =over 4
901
902 =item B<< $attr->initialize_instance_slot($meta_instance, $instance, $params) >>
903
904 This method is used internally to initialize the attribute's slot in
905 the object C<$instance>.
906
907 This overrides the L<Class::MOP::Attribute> method to handle lazy
908 attributes, weak references, and type constraints.
909
910 =item B<get_value>
911
912 =item B<set_value>
913
914   eval { $point->meta->get_attribute('x')->set_value($point, 'forty-two') };
915   if($@) {
916     print "Oops: $@\n";
917   }
918
919 I<Attribute (x) does not pass the type constraint (Int) with 'forty-two'>
920
921 Before setting the value, a check is made on the type constraint of
922 the attribute, if it has one, to see if the value passes it. If the
923 value fails to pass, the set operation dies with a L</throw_error>.
924
925 Any coercion to convert values is done before checking the type constraint.
926
927 To check a value against a type constraint before setting it, fetch the
928 attribute instance using L<Class::MOP::Class/find_attribute_by_name>,
929 fetch the type_constraint from the attribute using L<Moose::Meta::Attribute/type_constraint>
930 and call L<Moose::Meta::TypeConstraint/check>. See L<Moose::Cookbook::Basics::Recipe4>
931 for an example.
932
933 =back
934
935 =head2 Attribute Accessor generation
936
937 =over 4
938
939 =item B<< $attr->install_accessors >>
940
941 This method overrides the parent to also install delegation methods.
942
943 If, after installing all methods, the attribute object has no associated
944 methods, it throws an error unless C<< is => 'bare' >> was passed to the
945 attribute constructor.  (Trying to add an attribute that has no associated
946 methods is almost always an error.)
947
948 =item B<< $attr->remove_accessors >>
949
950 This method overrides the parent to also remove delegation methods.
951
952 =item B<< $attr->install_delegation >>
953
954 This method adds its delegation methods to the attribute's associated
955 class, if it has any to add.
956
957 =item B<< $attr->remove_delegation >>
958
959 This method remove its delegation methods from the attribute's
960 associated class.
961
962 =item B<< $attr->accessor_metaclass >>
963
964 Returns the accessor metaclass name, which defaults to
965 L<Moose::Meta::Method::Accessor>.
966
967 =item B<< $attr->delegation_metaclass >>
968
969 Returns the delegation metaclass name, which defaults to
970 L<Moose::Meta::Method::Delegation>.
971
972 =back
973
974 =head2 Additional Moose features
975
976 These methods are not found in the superclass. They support features
977 provided by Moose.
978
979 =over 4
980
981 =item B<< $attr->does($role) >>
982
983 This indicates whether the I<attribute itself> does the given
984 role. The role can be given as a full class name, or as a resolvable
985 trait name.
986
987 Note that this checks the attribute itself, not its type constraint,
988 so it is checking the attribute's metaclass and any traits applied to
989 the attribute.
990
991 =item B<< Moose::Meta::Class->interpolate_class_and_new($name, %options) >>
992
993 This is an alternate constructor that handles the C<metaclass> and
994 C<traits> options.
995
996 Effectively, this method is a factory that finds or creates the
997 appropriate class for the given C<metaclass> and/or C<traits>.
998
999 Once it has the appropriate class, it will call C<< $class->new($name,
1000 %options) >> on that class.
1001
1002 =item B<< $attr->clone_and_inherit_options(%options) >>
1003
1004 This method supports the C<has '+foo'> feature. It does various bits
1005 of processing on the supplied C<%options> before ultimately calling
1006 the C<clone> method.
1007
1008 One of its main tasks is to make sure that the C<%options> provided
1009 does not include the options returned by the
1010 C<illegal_options_for_inheritance> method.
1011
1012 =item B<< $attr->illegal_options_for_inheritance >>
1013
1014 This returns a blacklist of options that can not be overridden in a
1015 subclass's attribute definition.
1016
1017 This exists to allow a custom metaclass to change or add to the list
1018 of options which can not be changed.
1019
1020 =item B<< $attr->type_constraint >>
1021
1022 Returns the L<Moose::Meta::TypeConstraint> object for this attribute,
1023 if it has one.
1024
1025 =item B<< $attr->has_type_constraint >>
1026
1027 Returns true if this attribute has a type constraint.
1028
1029 =item B<< $attr->verify_against_type_constraint($value) >>
1030
1031 Given a value, this method returns true if the value is valid for the
1032 attribute's type constraint. If the value is not valid, it throws an
1033 error.
1034
1035 =item B<< $attr->handles >>
1036
1037 This returns the value of the C<handles> option passed to the
1038 constructor.
1039
1040 =item B<< $attr->has_handles >>
1041
1042 Returns true if this attribute performs delegation.
1043
1044 =item B<< $attr->is_weak_ref >>
1045
1046 Returns true if this attribute stores its value as a weak reference.
1047
1048 =item B<< $attr->is_required >>
1049
1050 Returns true if this attribute is required to have a value.
1051
1052 =item B<< $attr->is_lazy >>
1053
1054 Returns true if this attribute is lazy.
1055
1056 =item B<< $attr->is_lazy_build >>
1057
1058 Returns true if the C<lazy_build> option was true when passed to the
1059 constructor.
1060
1061 =item B<< $attr->should_coerce >>
1062
1063 Returns true if the C<coerce> option passed to the constructor was
1064 true.
1065
1066 =item B<< $attr->should_auto_deref >>
1067
1068 Returns true if the C<auto_deref> option passed to the constructor was
1069 true.
1070
1071 =item B<< $attr->trigger >>
1072
1073 This is the subroutine reference that was in the C<trigger> option
1074 passed to the constructor, if any.
1075
1076 =item B<< $attr->has_trigger >>
1077
1078 Returns true if this attribute has a trigger set.
1079
1080 =item B<< $attr->documentation >>
1081
1082 Returns the value that was in the C<documentation> option passed to
1083 the constructor, if any.
1084
1085 =item B<< $attr->has_documentation >>
1086
1087 Returns true if this attribute has any documentation.
1088
1089 =item B<< $attr->applied_traits >>
1090
1091 This returns an array reference of all the traits which were applied
1092 to this attribute. If none were applied, this returns C<undef>.
1093
1094 =item B<< $attr->has_applied_traits >>
1095
1096 Returns true if this attribute has any traits applied.
1097
1098 =back
1099
1100 =head1 BUGS
1101
1102 See L<Moose/BUGS> for details on reporting bugs.
1103
1104 =head1 AUTHOR
1105
1106 Stevan Little E<lt>stevan@iinteractive.comE<gt>
1107
1108 Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
1109
1110 =head1 COPYRIGHT AND LICENSE
1111
1112 Copyright 2006-2010 by Infinity Interactive, Inc.
1113
1114 L<http://www.iinteractive.com>
1115
1116 This library is free software; you can redistribute it and/or modify
1117 it under the same terms as Perl itself.
1118
1119 =cut