bump version and update Changes
[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
db72153d 251 foreach my $attr ( grep { $_->has_value($self) } $self->meta->compute_all_applicable_attributes ) {
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
406 if ($self->has_type_constraint) {
407 my $type_constraint = $self->type_constraint;
408 if ($self->should_coerce && $type_constraint->has_coercion) {
409 $val = $type_constraint->coerce($val);
d500266f 410 }
5755a9b2 411 $self->verify_against_type_constraint($val, instance => $instance);
1ed0b94f 412 }
ddd0ec20 413
759e4e8f 414 $self->set_initial_value($instance, $val);
26fbace8 415 $meta_instance->weaken_slot_value($instance, $self->name)
a6c84c69 416 if ref $val && $self->is_weak_ref;
d500266f 417}
418
e606ae5f 419sub _call_builder {
420 my ( $self, $instance ) = @_;
421
422 my $builder = $self->builder();
423
424 return $instance->$builder()
425 if $instance->can( $self->builder );
426
427 $self->throw_error( blessed($instance)
428 . " does not support builder method '"
429 . $self->builder
430 . "' for attribute '"
431 . $self->name
432 . "'",
433 object => $instance,
434 );
435}
436
d617b644 437## Slot management
9e93dd19 438
8abe9636 439# FIXME:
440# this duplicates too much code from
441# Class::MOP::Attribute, we need to
442# refactor these bits eventually.
443# - SL
444sub _set_initial_slot_value {
445 my ($self, $meta_instance, $instance, $value) = @_;
446
447 my $slot_name = $self->name;
448
449 return $meta_instance->set_slot_value($instance, $slot_name, $value)
450 unless $self->has_initializer;
451
452 my ($type_constraint, $can_coerce);
453 if ($self->has_type_constraint) {
454 $type_constraint = $self->type_constraint;
455 $can_coerce = ($self->should_coerce && $type_constraint->has_coercion);
456 }
457
458 my $callback = sub {
459 my $val = shift;
460 if ($type_constraint) {
461 $val = $type_constraint->coerce($val)
462 if $can_coerce;
5755a9b2 463 $self->verify_against_type_constraint($val, object => $instance);
8abe9636 464 }
465 $meta_instance->set_slot_value($instance, $slot_name, $val);
466 };
467
468 my $initializer = $self->initializer;
469
470 # most things will just want to set a value, so make it first arg
471 $instance->$initializer($value, $callback, $self);
472}
473
946289d1 474sub set_value {
b6af66f8 475 my ($self, $instance, @args) = @_;
476 my $value = $args[0];
26fbace8 477
946289d1 478 my $attr_name = $self->name;
26fbace8 479
b6af66f8 480 if ($self->is_required and not @args) {
be05faea 481 $self->throw_error("Attribute ($attr_name) is required", object => $instance);
946289d1 482 }
26fbace8 483
946289d1 484 if ($self->has_type_constraint) {
26fbace8 485
946289d1 486 my $type_constraint = $self->type_constraint;
26fbace8 487
946289d1 488 if ($self->should_coerce) {
26fbace8 489 $value = $type_constraint->coerce($value);
688fcdda 490 }
42bc21a4 491 $type_constraint->_compiled_type_constraint->($value)
be05faea 492 || $self->throw_error("Attribute ("
688fcdda 493 . $self->name
494 . ") does not pass the type constraint because "
be05faea 495 . $type_constraint->get_message($value), object => $instance, data => $value);
946289d1 496 }
26fbace8 497
946289d1 498 my $meta_instance = Class::MOP::Class->initialize(blessed($instance))
499 ->get_meta_instance;
26fbace8 500
501 $meta_instance->set_slot_value($instance, $attr_name, $value);
502
946289d1 503 if (ref $value && $self->is_weak_ref) {
26fbace8 504 $meta_instance->weaken_slot_value($instance, $attr_name);
946289d1 505 }
26fbace8 506
946289d1 507 if ($self->has_trigger) {
525129a5 508 $self->trigger->($instance, $value);
946289d1 509 }
510}
511
512sub get_value {
513 my ($self, $instance) = @_;
26fbace8 514
946289d1 515 if ($self->is_lazy) {
8de73ff1 516 unless ($self->has_value($instance)) {
e606ae5f 517 my $value;
8de73ff1 518 if ($self->has_default) {
e606ae5f 519 $value = $self->default($instance);
3f11800d 520 } elsif ( $self->has_builder ) {
e606ae5f 521 $value = $self->_call_builder($instance);
522 }
523 if ($self->has_type_constraint) {
524 my $type_constraint = $self->type_constraint;
525 $value = $type_constraint->coerce($value)
526 if ($self->should_coerce);
5755a9b2 527 $self->verify_against_type_constraint($value);
26fbace8 528 }
e606ae5f 529 $self->set_initial_value($instance, $value);
8de73ff1 530 }
946289d1 531 }
26fbace8 532
946289d1 533 if ($self->should_auto_deref) {
26fbace8 534
946289d1 535 my $type_constraint = $self->type_constraint;
536
537 if ($type_constraint->is_a_type_of('ArrayRef')) {
538 my $rv = $self->SUPER::get_value($instance);
539 return unless defined $rv;
540 return wantarray ? @{ $rv } : $rv;
26fbace8 541 }
946289d1 542 elsif ($type_constraint->is_a_type_of('HashRef')) {
543 my $rv = $self->SUPER::get_value($instance);
544 return unless defined $rv;
545 return wantarray ? %{ $rv } : $rv;
26fbace8 546 }
946289d1 547 else {
46cb090f 548 $self->throw_error("Can not auto de-reference the type constraint '" . $type_constraint->name . "'", object => $instance, type_constraint => $type_constraint);
946289d1 549 }
26fbace8 550
946289d1 551 }
552 else {
26fbace8 553
946289d1 554 return $self->SUPER::get_value($instance);
26fbace8 555 }
946289d1 556}
a15dff8d 557
26fbace8 558## installing accessors
c0e30cf5 559
d617b644 560sub accessor_metaclass { 'Moose::Meta::Method::Accessor' }
d7f17ebb 561
452bac1b 562sub install_accessors {
563 my $self = shift;
26fbace8 564 $self->SUPER::install_accessors(@_);
e606ae5f 565 $self->install_delegation if $self->has_handles;
566 return;
567}
26fbace8 568
e1d6f0a3 569sub remove_accessors {
570 my $self = shift;
571 $self->SUPER::remove_accessors(@_);
572 $self->remove_delegation if $self->has_handles;
573 return;
574}
575
e606ae5f 576sub install_delegation {
577 my $self = shift;
26fbace8 578
e606ae5f 579 # NOTE:
580 # Here we canonicalize the 'handles' option
581 # this will sort out any details and always
582 # return an hash of methods which we want
583 # to delagate to, see that method for details
584 my %handles = $self->_canonicalize_handles;
585
e606ae5f 586
587 # install the delegation ...
588 my $associated_class = $self->associated_class;
589 foreach my $handle (keys %handles) {
590 my $method_to_call = $handles{$handle};
591 my $class_name = $associated_class->name;
592 my $name = "${class_name}::${handle}";
26fbace8 593
452bac1b 594 (!$associated_class->has_method($handle))
cee532a1 595 || $self->throw_error("You cannot overwrite a locally defined method ($handle) with a delegation", method_name => $handle);
26fbace8 596
e606ae5f 597 # NOTE:
598 # handles is not allowed to delegate
599 # any of these methods, as they will
600 # override the ones in your class, which
601 # is almost certainly not what you want.
4fe78472 602
e606ae5f 603 # FIXME warn when $handle was explicitly specified, but not if the source is a regex or something
604 #cluck("Not delegating method '$handle' because it is a core method") and
605 next if $class_name->isa("Moose::Object") and $handle =~ /^BUILD|DEMOLISH$/ || Moose::Object->can($handle);
26fbace8 606
46f7e6a5 607 my $method = $self->_make_delegation_method($handle, $method_to_call);
a05f85c1 608
609 $self->associated_class->add_method($method->name, $method);
e606ae5f 610 }
452bac1b 611}
612
e1d6f0a3 613sub remove_delegation {
614 my $self = shift;
615 my %handles = $self->_canonicalize_handles;
616 my $associated_class = $self->associated_class;
617 foreach my $handle (keys %handles) {
618 $self->associated_class->remove_method($handle);
619 }
620}
621
98aae381 622# private methods to help delegation ...
623
452bac1b 624sub _canonicalize_handles {
625 my $self = shift;
626 my $handles = $self->handles;
c84f324f 627 if (my $handle_type = ref($handles)) {
628 if ($handle_type eq 'HASH') {
629 return %{$handles};
630 }
631 elsif ($handle_type eq 'ARRAY') {
632 return map { $_ => $_ } @{$handles};
633 }
634 elsif ($handle_type eq 'Regexp') {
635 ($self->has_type_constraint)
0286711b 636 || $self->throw_error("Cannot delegate methods based on a Regexp without a type constraint (isa)", data => $handles);
26fbace8 637 return map { ($_ => $_) }
c84f324f 638 grep { /$handles/ } $self->_get_delegate_method_list;
639 }
640 elsif ($handle_type eq 'CODE') {
641 return $handles->($self, $self->_find_delegate_metaclass);
642 }
643 else {
be05faea 644 $self->throw_error("Unable to canonicalize the 'handles' option with $handles", data => $handles);
c84f324f 645 }
452bac1b 646 }
647 else {
9fa39240 648 Class::MOP::load_class($handles)
649 unless Class::MOP::is_class_loaded($handles);
650
c84f324f 651 my $role_meta = eval { $handles->meta };
652 if ($@) {
be05faea 653 $self->throw_error("Unable to canonicalize the 'handles' option with $handles because : $@", data => $handles, error => $@);
c84f324f 654 }
655
656 (blessed $role_meta && $role_meta->isa('Moose::Meta::Role'))
be05faea 657 || $self->throw_error("Unable to canonicalize the 'handles' option with $handles because ->meta is not a Moose::Meta::Role", data => $handles);
9fa39240 658
c84f324f 659 return map { $_ => $_ } (
26fbace8 660 $role_meta->get_method_list,
c84f324f 661 $role_meta->get_required_method_list
662 );
452bac1b 663 }
664}
665
666sub _find_delegate_metaclass {
667 my $self = shift;
98aae381 668 if (my $class = $self->_isa_metadata) {
26fbace8 669 # if the class does have
452bac1b 670 # a meta method, use it
671 return $class->meta if $class->can('meta');
26fbace8 672 # otherwise we might be
452bac1b 673 # dealing with a non-Moose
26fbace8 674 # class, and need to make
452bac1b 675 # our own metaclass
676 return Moose::Meta::Class->initialize($class);
677 }
98aae381 678 elsif (my $role = $self->_does_metadata) {
26fbace8 679 # our role will always have
452bac1b 680 # a meta method
98aae381 681 return $role->meta;
452bac1b 682 }
683 else {
be05faea 684 $self->throw_error("Cannot find delegate metaclass for attribute " . $self->name);
452bac1b 685 }
686}
687
688sub _get_delegate_method_list {
689 my $self = shift;
690 my $meta = $self->_find_delegate_metaclass;
691 if ($meta->isa('Class::MOP::Class')) {
e606ae5f 692 return map { $_->name } # NOTE: !never! delegate &meta
693 grep { $_->package_name ne 'Moose::Object' && $_->name ne 'meta' }
694 $meta->get_all_methods;
452bac1b 695 }
696 elsif ($meta->isa('Moose::Meta::Role')) {
26fbace8 697 return $meta->get_method_list;
452bac1b 698 }
699 else {
be05faea 700 $self->throw_error("Unable to recognize the delegate metaclass '$meta'", data => $meta);
452bac1b 701 }
702}
703
bd1226e2 704sub delegation_metaclass { 'Moose::Meta::Method::Delegation' }
705
a05f85c1 706sub _make_delegation_method {
46f7e6a5 707 my ( $self, $handle_name, $method_to_call ) = @_;
a05f85c1 708
709 my $method_body;
710
46f7e6a5 711 $method_body = $method_to_call
712 if 'CODE' eq ref($method_to_call);
a05f85c1 713
bd1226e2 714 return $self->delegation_metaclass->new(
46f7e6a5 715 name => $handle_name,
716 package_name => $self->associated_class->name,
717 attribute => $self,
718 delegate_to_method => $method_to_call,
a05f85c1 719 );
720}
721
5755a9b2 722sub verify_against_type_constraint {
2b86e02b 723 my $self = shift;
724 my $val = shift;
725
726 return 1 if !$self->has_type_constraint;
727
728 my $type_constraint = $self->type_constraint;
729
730 $type_constraint->check($val)
731 || $self->throw_error("Attribute ("
732 . $self->name
733 . ") does not pass the type constraint because: "
734 . $type_constraint->get_message($val), data => $val, @_);
735}
736
21f1e231 737package Moose::Meta::Attribute::Custom::Moose;
738sub register_implementation { 'Moose::Meta::Attribute' }
739
c0e30cf5 7401;
741
742__END__
743
744=pod
745
746=head1 NAME
747
6ba6d68c 748Moose::Meta::Attribute - The Moose attribute metaclass
c0e30cf5 749
750=head1 DESCRIPTION
751
93a708fd 752This class is a subclass of L<Class::MOP::Attribute> that provides
753additional Moose-specific functionality.
6ba6d68c 754
7854b409 755To really understand this class, you will need to start with the
756L<Class::MOP::Attribute> documentation. This class can be understood
757as a set of additional features on top of the basic feature provided
758by that parent class.
e522431d 759
d4b1449e 760=head1 INHERITANCE
761
762C<Moose::Meta::Attribute> is a subclass of L<Class::MOP::Attribute>.
763
c0e30cf5 764=head1 METHODS
765
93a708fd 766Many of the documented below override methods in
767L<Class::MOP::Attribute> and add Moose specific features.
6ba6d68c 768
93a708fd 769=head2 Creation
6ba6d68c 770
c0e30cf5 771=over 4
772
93a708fd 773=item B<< Moose::Meta::Attribute->new(%options) >>
c0e30cf5 774
93a708fd 775This method overrides the L<Class::MOP::Attribute> constructor.
c32c2c61 776
93a708fd 777Many of the options below are described in more detail in the
778L<Moose::Manual::Attributes> document.
6e2840b7 779
93a708fd 780It adds the following options to the constructor:
d500266f 781
93a708fd 782=over 8
452bac1b 783
93a708fd 784=item * is => 'ro' or 'rw'
e1d6f0a3 785
93a708fd 786This provides a shorthand for specifying the C<reader>, C<writer>, or
787C<accessor> names. If the attribute is read-only ('ro') then it will
788have a C<reader> method with the same attribute as the name.
e606ae5f 789
93a708fd 790If it is read-write ('rw') then it will have an C<accessor> method
791with the same name. If you provide an explicit C<writer> for a
792read-write attribute, then you will have a C<reader> with the same
793name as the attribute, and a C<writer> with the name you provided.
e1d6f0a3 794
93a708fd 795=item * isa => $type
39b3bc94 796
93a708fd 797This option accepts a type. The type can be a string, which should be
798a type name. If the type name is unknown, it is assumed to be a class
799name.
800
801This option can also accept a L<Moose::Meta::TypeConstraint> object.
802
803If you I<also> provide a C<does> option, then your C<isa> option must
804be a class name, and that class must do the role specified with
805C<does>.
806
807=item * does => $role
808
809This is short-hand for saying that the attribute's type must be an
810object which does the named role.
811
812=item * coerce => $bool
813
814This option is only valid for objects with a type constraint
815(C<isa>). If this is true, then coercions will be applied whenever
816this attribute is set.
817
818You can make both this and the C<weak_ref> option true.
819
820=item * trigger => $sub
821
822This option accepts a subroutine reference, which will be called after
823the attribute is set.
824
825=item * required => $bool
826
827An attribute which is required must be provided to the constructor. An
828attribute which is required can also have a C<default> or C<builder>,
36741534 829which will satisfy its required-ness.
93a708fd 830
831A required attribute must have a C<default>, C<builder> or a
832non-C<undef> C<init_arg>
833
834=item * lazy => $bool
835
836A lazy attribute must have a C<default> or C<builder>. When an
837attribute is lazy, the default value will not be calculated until the
838attribute is read.
839
840=item * weak_ref => $bool
841
842If this is true, the attribute's value will be stored as a weak
843reference.
844
845=item * auto_deref => $bool
846
847If this is true, then the reader will dereference the value when it is
848called. The attribute must have a type constraint which defines the
849attribute as an array or hash reference.
850
851=item * lazy_build => $bool
852
853Setting this to true makes the attribute lazy and provides a number of
854default methods.
855
856 has 'size' => (
857 is => 'ro',
858 lazy_build => 1,
859 );
860
861is equivalent to this:
862
863 has 'size' => (
864 is => 'ro',
865 lazy => 1,
866 builder => '_build_size',
867 clearer => 'clear_size',
868 predicate => 'has_size',
869 );
870
871=item * documentation
872
873An arbitrary string that can be retrieved later by calling C<<
874$attr->documentation >>.
875
876=back
877
878=item B<< $attr->clone(%options) >>
879
880This creates a new attribute based on attribute being cloned. You must
881supply a C<name> option to provide a new name for the attribute.
882
883The C<%options> can only specify options handled by
884L<Class::MOP::Attribute>.
885
36741534 886=back
887
93a708fd 888=head2 Value management
889
36741534 890=over 4
891
93a708fd 892=item B<< $attr->initialize_instance_slot($meta_instance, $instance, $params) >>
893
894This method is used internally to initialize the attribute's slot in
895the object C<$instance>.
896
897This overrides the L<Class::MOP::Attribute> method to handle lazy
898attributes, weak references, and type constraints.
bd1226e2 899
946289d1 900=item B<get_value>
901
902=item B<set_value>
903
6549b0d1 904 eval { $point->meta->get_attribute('x')->set_value($point, 'forty-two') };
bcbaa845 905 if($@) {
906 print "Oops: $@\n";
907 }
908
6549b0d1 909I<Attribute (x) does not pass the type constraint (Int) with 'forty-two'>
bcbaa845 910
911Before setting the value, a check is made on the type constraint of
912the attribute, if it has one, to see if the value passes it. If the
46cb090f 913value fails to pass, the set operation dies with a L<throw_error>.
bcbaa845 914
915Any coercion to convert values is done before checking the type constraint.
916
917To check a value against a type constraint before setting it, fetch the
ec00fa75 918attribute instance using L<Class::MOP::Class/find_attribute_by_name>,
bcbaa845 919fetch the type_constraint from the attribute using L<Moose::Meta::Attribute/type_constraint>
e606ae5f 920and call L<Moose::Meta::TypeConstraint/check>. See L<Moose::Cookbook::Basics::Recipe4>
bcbaa845 921for an example.
922
a15dff8d 923=back
924
93a708fd 925=head2 Attribute Accessor generation
6ba6d68c 926
a15dff8d 927=over 4
928
93a708fd 929=item B<< $attr->install_accessors >>
be05faea 930
93a708fd 931This method overrides the parent to also install delegation methods.
be05faea 932
36741534 933=item B<< $attr->remove_accessors >>
d5c30e52 934
93a708fd 935This method overrides the parent to also remove delegation methods.
d5c30e52 936
93a708fd 937=item B<< $attr->install_delegation >>
938
939This method adds its delegation methods to the attribute's associated
940class, if it has any to add.
941
942=item B<< $attr->remove_delegation >>
943
944This method remove its delegation methods from the attribute's
945associated class.
d5c30e52 946
93a708fd 947=item B<< $attr->accessor_metaclass >>
9e93dd19 948
93a708fd 949Returns the accessor metaclass name, which defaults to
950L<Moose::Meta::Method::Accessor>.
951
952=item B<< $attr->delegation_metaclass >>
953
954Returns the delegation metaclass name, which defaults to
955L<Moose::Meta::Method::Delegation>.
956
957=back
958
959=head2 Additional Moose features
960
961These methods are not found in the superclass. They support features
962provided by Moose.
963
36741534 964=over 4
965
93a708fd 966=item B<< $attr->does($role) >>
967
968This indicates whether the I<attribute itself> does the given
36741534 969role. The role can be given as a full class name, or as a resolvable
93a708fd 970trait name.
971
972Note that this checks the attribute itself, not its type constraint,
973so it is checking the attribute's metaclass and any traits applied to
974the attribute.
975
976=item B<< Moose::Meta::Class->interpolate_class_and_new($name, %options) >>
977
978This is an alternate constructor that handles the C<metaclass> and
979C<traits> options.
9e93dd19 980
93a708fd 981Effectively, this method is a factory that finds or creates the
36741534 982appropriate class for the given C<metaclass> and/or C<traits>.
e606ae5f 983
93a708fd 984Once it has the appropriate class, it will call C<< $class->new($name,
985%options) >> on that class.
e606ae5f 986
93a708fd 987=item B<< $attr->clone_and_inherit_options(%options) >>
a15dff8d 988
93a708fd 989This method supports the C<has '+foo'> feature. It does various bits
990of processing on the supplied C<%options> before ultimately calling
991the C<clone> method.
6ba6d68c 992
93a708fd 993One of its main tasks is to make sure that the C<%options> provided
994only includes the options returned by the
995C<legal_options_for_inheritance> method.
a15dff8d 996
93a708fd 997=item B<< $attr->legal_options_for_inheritance >>
a15dff8d 998
93a708fd 999This returns a whitelist of options that can be overridden in a
1000subclass's attribute definition.
2b86e02b 1001
93a708fd 1002This exists to allow a custom metaclass to change or add to the list
1003of options which can be changed.
2b86e02b 1004
93a708fd 1005=item B<< $attr->type_constraint >>
452bac1b 1006
93a708fd 1007Returns the L<Moose::Meta::TypeConstraint> object for this attribute,
1008if it has one.
452bac1b 1009
93a708fd 1010=item B<< $attr->has_type_constraint >>
452bac1b 1011
93a708fd 1012Returns true if this attribute has a type constraint.
452bac1b 1013
93a708fd 1014=item B<< $attr->verify_against_type_constraint($value) >>
a15dff8d 1015
93a708fd 1016Given a value, this method returns true if the value is valid for the
1017attribute's type constraint. If the value is not valid, it throws an
1018error.
4b598ea3 1019
93a708fd 1020=item B<< $attr->handles >>
ca01a97b 1021
93a708fd 1022This returns the value of the C<handles> option passed to the
1023constructor.
ca01a97b 1024
93a708fd 1025=item B<< $attr->has_handles >>
ca01a97b 1026
93a708fd 1027Returns true if this attribute performs delegation.
ca01a97b 1028
93a708fd 1029=item B<< $attr->is_weak_ref >>
26fbace8 1030
93a708fd 1031Returns true if this attribute stores its value as a weak reference.
26fbace8 1032
93a708fd 1033=item B<< $attr->is_required >>
26fbace8 1034
93a708fd 1035Returns true if this attribute is required to have a value.
26fbace8 1036
93a708fd 1037=item B<< $attr->is_lazy >>
58f85113 1038
93a708fd 1039Returns true if this attribute is lazy.
26fbace8 1040
93a708fd 1041=item B<< $attr->is_lazy_build >>
ca01a97b 1042
93a708fd 1043Returns true if the C<lazy_build> option was true when passed to the
1044constructor.
4b598ea3 1045
93a708fd 1046=item B<< $attr->should_coerce >>
6ba6d68c 1047
93a708fd 1048Returns true if the C<coerce> option passed to the constructor was
1049true.
536f0b17 1050
93a708fd 1051=item B<< $attr->should_auto_deref >>
536f0b17 1052
93a708fd 1053Returns true if the C<auto_deref> option passed to the constructor was
1054true.
536f0b17 1055
93a708fd 1056=item B<< $attr->trigger >>
8c9d74e7 1057
93a708fd 1058This is the subroutine reference that was in the C<trigger> option
1059passed to the constructor, if any.
02a0fb52 1060
36741534 1061=item B<< $attr->has_trigger >>
8c9d74e7 1062
93a708fd 1063Returns true if this attribute has a trigger set.
02a0fb52 1064
93a708fd 1065=item B<< $attr->documentation >>
ddbdc0cb 1066
93a708fd 1067Returns the value that was in the C<documentation> option passed to
1068the constructor, if any.
ddbdc0cb 1069
93a708fd 1070=item B<< $attr->has_documentation >>
ddbdc0cb 1071
93a708fd 1072Returns true if this attribute has any documentation.
ddbdc0cb 1073
93a708fd 1074=item B<< $attr->applied_traits >>
88f23977 1075
93a708fd 1076This returns an array reference of all the traits which were applied
1077to this attribute. If none were applied, this returns C<undef>.
88f23977 1078
93a708fd 1079=item B<< $attr->has_applied_traits >>
88f23977 1080
93a708fd 1081Returns true if this attribute has any traits applied.
88f23977 1082
c0e30cf5 1083=back
1084
1085=head1 BUGS
1086
26fbace8 1087All complex software has bugs lurking in it, and this module is no
c0e30cf5 1088exception. If you find a bug please either email me, or add the bug
1089to cpan-RT.
1090
c0e30cf5 1091=head1 AUTHOR
1092
1093Stevan Little E<lt>stevan@iinteractive.comE<gt>
1094
98aae381 1095Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
1096
c0e30cf5 1097=head1 COPYRIGHT AND LICENSE
1098
2840a3b2 1099Copyright 2006-2009 by Infinity Interactive, Inc.
c0e30cf5 1100
1101L<http://www.iinteractive.com>
1102
1103This library is free software; you can redistribute it and/or modify
26fbace8 1104it under the same terms as Perl itself.
c0e30cf5 1105
8a7a9c53 1106=cut