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