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