Fix a test
[gitmo/Mouse.git] / lib / Mouse / Meta / Attribute.pm
CommitLineData
306290e8 1package Mouse::Meta::Attribute;
c3398f5b 2use strict;
3use warnings;
4
2efc0af1 5use Carp ();
2efc0af1 6
53875581 7use Mouse::Util qw(:meta);
6d28c5cf 8
684db121 9use Mouse::Meta::TypeConstraint;
90fe520e 10use Mouse::Meta::Method::Accessor;
c3398f5b 11
87ca293b 12sub _process_options{
13 my($class, $name, $args) = @_;
c3398f5b 14
04493075 15
16 # XXX: for backward compatibility (with method modifiers)
17 if($class->can('canonicalize_args') != \&canonicalize_args){
18 %{$args} = $class->canonicalize_args($name, %{$args});
19 }
20
2efc0af1 21 # taken from Class::MOP::Attribute::new
22
23 defined($name)
24 or $class->throw_error('You must provide a name for the attribute');
2e7e86c6 25
1b9e472d 26 if(!exists $args->{init_arg}){
27 $args->{init_arg} = $name;
2efc0af1 28 }
29
30 # 'required' requires eigher 'init_arg', 'builder', or 'default'
1b9e472d 31 my $can_be_required = defined( $args->{init_arg} );
2efc0af1 32
1b9e472d 33 if(exists $args->{builder}){
c6d8f5ca 34 # XXX:
35 # Moose refuses a CODE ref builder, but Mouse doesn't for backward compatibility
36 # This feature will be changed in a future. (gfx)
121acb8a 37 $class->throw_error('builder must be a defined scalar value which is a method name')
c6d8f5ca 38 #if ref $args->{builder} || !defined $args->{builder};
39 if !defined $args->{builder};
2efc0af1 40
41 $can_be_required++;
42 }
1b9e472d 43 elsif(exists $args->{default}){
44 if(ref $args->{default} && ref($args->{default}) ne 'CODE'){
2efc0af1 45 $class->throw_error("References are not allowed as default values, you must "
46 . "wrap the default of '$name' in a CODE reference (ex: sub { [] } and not [])");
47 }
48 $can_be_required++;
49 }
50
1b9e472d 51 if( $args->{required} && !$can_be_required ) {
121acb8a 52 $class->throw_error("You cannot have a required attribute ($name) without a default, builder, or an init_arg");
2efc0af1 53 }
54
1b9e472d 55 # taken from Mouse::Meta::Attribute->new and _process_args->
2efc0af1 56
1b9e472d 57 if(exists $args->{is}){
58 my $is = $args->{is};
2efc0af1 59
60 if($is eq 'ro'){
1b9e472d 61 $args->{reader} ||= $name;
2efc0af1 62 }
63 elsif($is eq 'rw'){
1b9e472d 64 if(exists $args->{writer}){
65 $args->{reader} ||= $name;
2efc0af1 66 }
67 else{
1b9e472d 68 $args->{accessor} ||= $name;
2efc0af1 69 }
70 }
71 elsif($is eq 'bare'){
72 # do nothing, but don't complain (later) about missing methods
73 }
74 else{
75 $is = 'undef' if !defined $is;
76 $class->throw_error("I do not understand this option (is => $is) on attribute ($name)");
77 }
78 }
79
80 my $tc;
1b9e472d 81 if(exists $args->{isa}){
82 $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($args->{isa});
2efc0af1 83 }
1b9e472d 84 elsif(exists $args->{does}){
4a29b63e 85 # TODO
86 # $args->{type_constraint} = Mouse::Util::TypeConstraints::find_or_create_does_type_constraint($args->{does});
2efc0af1 87 }
1b9e472d 88 $tc = $args->{type_constraint};
2efc0af1 89
1b9e472d 90 if($args->{coerce}){
2efc0af1 91 defined($tc)
92 || $class->throw_error("You cannot have coercion without specifying a type constraint on attribute ($name)");
93
1b9e472d 94 $args->{weak_ref}
121acb8a 95 && $class->throw_error("You cannot have a weak reference to a coerced value on attribute ($name)");
2efc0af1 96 }
97
1b9e472d 98 if ($args->{lazy_build}) {
99 exists($args->{default})
121acb8a 100 && $class->throw_error("You can not use lazy_build and default for the same attribute ($name)");
101
1b9e472d 102 $args->{lazy} = 1;
103 $args->{builder} ||= "_build_${name}";
121acb8a 104 if ($name =~ /^_/) {
1b9e472d 105 $args->{clearer} ||= "_clear${name}";
106 $args->{predicate} ||= "_has${name}";
121acb8a 107 }
108 else {
1b9e472d 109 $args->{clearer} ||= "clear_${name}";
110 $args->{predicate} ||= "has_${name}";
121acb8a 111 }
2efc0af1 112 }
113
1b9e472d 114 if ($args->{auto_deref}) {
121acb8a 115 defined($tc)
116 || $class->throw_error("You cannot auto-dereference without specifying a type constraint on attribute ($name)");
2efc0af1 117
121acb8a 118 ( $tc->is_a_type_of('ArrayRef') || $tc->is_a_type_of('HashRef') )
119 || $class->throw_error("You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute ($name)");
2efc0af1 120 }
121
1b9e472d 122 if (exists $args->{trigger}) {
123 ('CODE' eq ref $args->{trigger})
121acb8a 124 || $class->throw_error("Trigger must be a CODE ref on attribute ($name)");
2efc0af1 125 }
45959ffa 126
1b9e472d 127 if ($args->{lazy}) {
128 (exists $args->{default} || defined $args->{builder})
121acb8a 129 || $class->throw_error("You cannot have lazy attribute ($name) without specifying a default value for it");
2efc0af1 130 }
90fe520e 131
87ca293b 132 return;
133}
134
135sub new {
136 my $class = shift;
137 my $name = shift;
138
139 my %args = (@_ == 1) ? %{ $_[0] } : @_;
140
141 $class->_process_options($name, \%args);
142
143 $args{name} = $name;
144
926290ac 145 my $self = bless \%args, $class;
2efc0af1 146
1b9e472d 147 # extra attributes
148 if($class ne __PACKAGE__){
926290ac 149 $class->meta->_initialize_object($self, \%args);
90fe520e 150 }
c3398f5b 151
2efc0af1 152# XXX: there is no fast way to check attribute validity
1b9e472d 153# my @bad = ...;
2efc0af1 154# if(@bad){
155# @bad = sort @bad;
156# Carp::cluck("Found unknown argument(s) passed to '$name' attribute constructor in '$class': @bad");
157# }
158
926290ac 159 return $self;
c3398f5b 160}
161
90fe520e 162# readers
163
f6715552 164sub name { $_[0]->{name} }
165sub associated_class { $_[0]->{associated_class} }
90fe520e 166
167sub accessor { $_[0]->{accessor} }
168sub reader { $_[0]->{reader} }
169sub writer { $_[0]->{writer} }
170sub predicate { $_[0]->{predicate} }
171sub clearer { $_[0]->{clearer} }
172sub handles { $_[0]->{handles} }
173
f6715552 174sub _is_metadata { $_[0]->{is} }
175sub is_required { $_[0]->{required} }
176sub default { $_[0]->{default} }
177sub is_lazy { $_[0]->{lazy} }
178sub is_lazy_build { $_[0]->{lazy_build} }
f6715552 179sub is_weak_ref { $_[0]->{weak_ref} }
180sub init_arg { $_[0]->{init_arg} }
181sub type_constraint { $_[0]->{type_constraint} }
2efc0af1 182
f6715552 183sub trigger { $_[0]->{trigger} }
184sub builder { $_[0]->{builder} }
185sub should_auto_deref { $_[0]->{auto_deref} }
2efc0af1 186sub should_coerce { $_[0]->{coerce} }
c3398f5b 187
90fe520e 188# predicates
189
190sub has_accessor { exists $_[0]->{accessor} }
191sub has_reader { exists $_[0]->{reader} }
192sub has_writer { exists $_[0]->{writer} }
f6715552 193sub has_predicate { exists $_[0]->{predicate} }
194sub has_clearer { exists $_[0]->{clearer} }
195sub has_handles { exists $_[0]->{handles} }
90fe520e 196
197sub has_default { exists $_[0]->{default} }
f6715552 198sub has_type_constraint { exists $_[0]->{type_constraint} }
199sub has_trigger { exists $_[0]->{trigger} }
200sub has_builder { exists $_[0]->{builder} }
eec1bb49 201
1b9e472d 202sub has_read_method { exists $_[0]->{reader} || exists $_[0]->{accessor} }
203sub has_write_method { exists $_[0]->{writer} || exists $_[0]->{accessor} }
204
df77fd72 205sub _create_args { # DEPRECATED
1bfebf5f 206 $_[0]->{_create_args} = $_[1] if @_ > 1;
207 $_[0]->{_create_args}
208}
209
87ca293b 210sub interpolate_class{
8cf51b82 211 my($class, $args) = @_;
c3398f5b 212
1b9e472d 213 if(my $metaclass = delete $args->{metaclass}){
214 $class = Mouse::Util::resolve_metaclass_alias( Attribute => $metaclass );
215 }
1bfebf5f 216
87ca293b 217 my @traits;
1b9e472d 218 if(my $traits_ref = delete $args->{traits}){
87ca293b 219
1b9e472d 220 for (my $i = 0; $i < @{$traits_ref}; $i++) {
221 my $trait = Mouse::Util::resolve_metaclass_alias(Attribute => $traits_ref->[$i], trait => 1);
b2500191 222
1b9e472d 223 next if $class->does($trait);
74be9f76 224
1b9e472d 225 push @traits, $trait;
226
227 # are there options?
228 push @traits, $traits_ref->[++$i]
229 if ref($traits_ref->[$i+1]);
c3398f5b 230 }
c3398f5b 231
1b9e472d 232 if (@traits) {
233 $class = Mouse::Meta::Class->create_anon_class(
234 superclasses => [ $class ],
235 roles => \@traits,
236 cache => 1,
237 )->name;
1b9e472d 238 }
74be9f76 239 }
240
87ca293b 241 return( $class, @traits );
1b9e472d 242}
243
df77fd72 244sub canonicalize_args{ # DEPRECATED
1b9e472d 245 my ($self, $name, %args) = @_;
246
247 Carp::cluck("$self->canonicalize_args has been deprecated."
04493075 248 . "Use \$self->_process_options instead.")
249 if _MOUSE_VERBOSE;
1b9e472d 250
251 return %args;
252}
253
254sub create {
255 my ($self, $class, $name, %args) = @_;
256
257 Carp::cluck("$self->create has been deprecated."
04493075 258 . "Use \$meta->add_attribute and \$attr->install_accessors instead.")
259 if _MOUSE_VERBOSE;
1b9e472d 260
261 # noop
262 return $self;
c3398f5b 263}
264
ffbbf459 265sub _coerce_and_verify {
266 my($self, $value, $instance) = @_;
267
268 my $type_constraint = $self->{type_constraint};
269
270 return $value if !$type_constraint;
271
272 if ($self->should_coerce && $type_constraint->has_coercion) {
273 $value = $type_constraint->coerce($value);
274 }
275
276 return $value if $type_constraint->check($value);
277
278 $self->verify_against_type_constraint($value);
279
280 return $value;
281}
282
20e25eb9 283sub verify_against_type_constraint {
f55f60dd 284 my ($self, $value) = @_;
5aa30ced 285
ffbbf459 286 my $type_constraint = $self->{type_constraint};
287 return 1 if !$type_constraint;;
288 return 1 if $type_constraint->check($value);
5aa30ced 289
ffbbf459 290 $self->verify_type_constraint_error($self->name, $value, $type_constraint);
b3b74cc6 291}
5aa30ced 292
b3b74cc6 293sub verify_type_constraint_error {
294 my($self, $name, $value, $type) = @_;
fce211ae 295 $self->throw_error("Attribute ($name) does not pass the type constraint because: " . $type->get_message($value));
5aa30ced 296}
297
df77fd72 298sub coerce_constraint { # DEPRECATED
8a7f2a8a 299 my $type = $_[0]->{type_constraint}
300 or return $_[1];
e763d56e 301
302 Carp::cluck("coerce_constraint() has been deprecated, which was an internal utility anyway");
303
7ca5c5fb 304 return Mouse::Util::TypeConstraints->typecast_constraints($_[0]->associated_class->name, $type, $_[1]);
4188b837 305}
306
af745d5a 307sub _canonicalize_handles {
308 my $self = shift;
309 my $handles = shift;
310
311 if (ref($handles) eq 'HASH') {
312 return %$handles;
313 }
314 elsif (ref($handles) eq 'ARRAY') {
315 return map { $_ => $_ } @$handles;
316 }
317 else {
fce211ae 318 $self->throw_error("Unable to canonicalize the 'handles' option with $handles");
af745d5a 319 }
320}
321
1b9e472d 322sub clone_and_inherit_options{
8cf51b82 323 my($self, %args) = @_;
324
325 my($attribute_class, @traits) = ref($self)->interpolate_class(\%args);
1b9e472d 326
8cf51b82 327 $args{traits} = \@traits if @traits;
328 return $attribute_class->new($self->name, %{$self}, %args);
1b9e472d 329}
330
df77fd72 331sub clone_parent { # DEPRECATED
1bfebf5f 332 my $self = shift;
333 my $class = shift;
334 my $name = shift;
335 my %args = ($self->get_parent_args($class, $name), @_);
336
1b9e472d 337 Carp::cluck("$self->clone_parent has been deprecated."
04493075 338 . "Use \$meta->add_attribute and \$attr->install_accessors instead.")
339 if _MOUSE_VERBOSE;
1b9e472d 340
7ca5c5fb 341 $self->clone_and_inherited_args($class, $name, %args);
1bfebf5f 342}
343
df77fd72 344sub get_parent_args { # DEPRECATED
1bfebf5f 345 my $self = shift;
346 my $class = shift;
347 my $name = shift;
348
724c77c0 349 for my $super ($class->linearized_isa) {
bb733405 350 my $super_attr = $super->can("meta") && $super->meta->get_attribute($name)
1bfebf5f 351 or next;
352 return %{ $super_attr->_create_args };
353 }
354
fce211ae 355 $self->throw_error("Could not find an attribute by the name of '$name' to inherit from");
356}
357
2a464664 358
df77fd72 359sub get_read_method { # DEPRECATED
360 $_[0]->{reader} || $_[0]->{accessor}
361}
362sub get_write_method { # DEPRECATED
363 $_[0]->{writer} || $_[0]->{accessor}
364}
2a464664 365
366sub get_read_method_ref{
367 my($self) = @_;
368
369 $self->{_read_method_ref} ||= do{
370 my $metaclass = $self->associated_class
371 or $self->throw_error('No asocciated class for ' . $self->name);
372
373 my $reader = $self->{reader} || $self->{accessor};
374 if($reader){
375 $metaclass->name->can($reader);
376 }
377 else{
378 Mouse::Meta::Method::Accessor->_generate_reader($self, undef, $metaclass);
379 }
380 };
381}
382
383sub get_write_method_ref{
384 my($self) = @_;
385
386 $self->{_write_method_ref} ||= do{
387 my $metaclass = $self->associated_class
388 or $self->throw_error('No asocciated class for ' . $self->name);
389
390 my $reader = $self->{writer} || $self->{accessor};
391 if($reader){
392 $metaclass->name->can($reader);
393 }
394 else{
395 Mouse::Meta::Method::Accessor->_generate_writer($self, undef, $metaclass);
396 }
397 };
398}
399
04493075 400sub associate_method{
401 my ($attribute, $method) = @_;
402 $attribute->{associated_methods}++;
403 return;
404}
405
1b9e472d 406sub install_accessors{
407 my($attribute) = @_;
408
409 my $metaclass = $attribute->{associated_class};
1b9e472d 410
411 foreach my $type(qw(accessor reader writer predicate clearer handles)){
412 if(exists $attribute->{$type}){
2a464664 413 my $installer = '_generate_' . $type;
7ca5c5fb 414
415 Mouse::Meta::Method::Accessor->$installer($attribute, $attribute->{$type}, $metaclass);
416
1b9e472d 417 $attribute->{associated_methods}++;
418 }
419 }
420
421 if($attribute->can('create') != \&create){
7ca5c5fb 422 # backword compatibility
1b9e472d 423 $attribute->create($metaclass, $attribute->name, %{$attribute});
424 }
425
426 return;
427}
428
fce211ae 429sub throw_error{
430 my $self = shift;
431
432 my $metaclass = (ref $self && $self->associated_class) || 'Mouse::Meta::Class';
433 $metaclass->throw_error(@_, depth => 1);
1bfebf5f 434}
435
c3398f5b 4361;
437
438__END__
439
440=head1 NAME
441
bedd575c 442Mouse::Meta::Attribute - The Mouse attribute metaclass
c3398f5b 443
444=head1 METHODS
445
1820fffe 446=head2 C<< new(%options) -> Mouse::Meta::Attribute >>
c3398f5b 447
306290e8 448Instantiates a new Mouse::Meta::Attribute. Does nothing else.
c3398f5b 449
1820fffe 450It adds the following options to the constructor:
c3398f5b 451
1820fffe 452=over 4
c3398f5b 453
612d3e1a 454=item C<< is => 'ro', 'rw', 'bare' >>
c3398f5b 455
1820fffe 456This provides a shorthand for specifying the C<reader>, C<writer>, or
457C<accessor> names. If the attribute is read-only ('ro') then it will
458have a C<reader> method with the same attribute as the name.
c3398f5b 459
1820fffe 460If it is read-write ('rw') then it will have an C<accessor> method
461with the same name. If you provide an explicit C<writer> for a
462read-write attribute, then you will have a C<reader> with the same
463name as the attribute, and a C<writer> with the name you provided.
c3398f5b 464
1820fffe 465Use 'bare' when you are deliberately not installing any methods
466(accessor, reader, etc.) associated with this attribute; otherwise,
467Moose will issue a deprecation warning when this attribute is added to a
468metaclass.
c3398f5b 469
612d3e1a 470=item C<< isa => Type >>
ab27a55e 471
1820fffe 472This option accepts a type. The type can be a string, which should be
473a type name. If the type name is unknown, it is assumed to be a class
474name.
ab27a55e 475
1820fffe 476This option can also accept a L<Moose::Meta::TypeConstraint> object.
ab27a55e 477
1820fffe 478If you I<also> provide a C<does> option, then your C<isa> option must
479be a class name, and that class must do the role specified with
480C<does>.
ab27a55e 481
612d3e1a 482=item C<< does => Role >>
ab27a55e 483
1820fffe 484This is short-hand for saying that the attribute's type must be an
485object which does the named role.
c3398f5b 486
1820fffe 487B<This option is not yet supported.>
c3398f5b 488
612d3e1a 489=item C<< coerce => Bool >>
ab27a55e 490
1820fffe 491This option is only valid for objects with a type constraint
492(C<isa>). If this is true, then coercions will be applied whenever
493this attribute is set.
c3398f5b 494
1820fffe 495You can make both this and the C<weak_ref> option true.
c3398f5b 496
612d3e1a 497=item C<< trigger => CodeRef >>
ab27a55e 498
1820fffe 499This option accepts a subroutine reference, which will be called after
500the attribute is set.
ab27a55e 501
612d3e1a 502=item C<< required => Bool >>
ab27a55e 503
1820fffe 504An attribute which is required must be provided to the constructor. An
505attribute which is required can also have a C<default> or C<builder>,
506which will satisfy its required-ness.
ab27a55e 507
1820fffe 508A required attribute must have a C<default>, C<builder> or a
509non-C<undef> C<init_arg>
ab27a55e 510
612d3e1a 511=item C<< lazy => Bool >>
ab27a55e 512
1820fffe 513A lazy attribute must have a C<default> or C<builder>. When an
514attribute is lazy, the default value will not be calculated until the
515attribute is read.
93f08899 516
612d3e1a 517=item C<< weak_ref => Bool >>
0fff36e6 518
1820fffe 519If this is true, the attribute's value will be stored as a weak
520reference.
c3398f5b 521
612d3e1a 522=item C<< auto_deref => Bool >>
fb706f5c 523
1820fffe 524If this is true, then the reader will dereference the value when it is
525called. The attribute must have a type constraint which defines the
526attribute as an array or hash reference.
527
612d3e1a 528=item C<< lazy_build => Bool >>
1820fffe 529
530Setting this to true makes the attribute lazy and provides a number of
531default methods.
fb706f5c 532
1820fffe 533 has 'size' => (
534 is => 'ro',
535 lazy_build => 1,
536 );
93d190e0 537
1820fffe 538is equivalent to this:
93d190e0 539
1820fffe 540 has 'size' => (
541 is => 'ro',
542 lazy => 1,
543 builder => '_build_size',
544 clearer => 'clear_size',
545 predicate => 'has_size',
546 );
93d190e0 547
1820fffe 548=back
549
31c5194b 550=head2 C<< associate_method(Method) >>
551
552Associates a method with the attribute. Typically, this is called internally
553when an attribute generates its accessors.
554
555Currently the argument I<Method> is ignored in Mouse.
556
1820fffe 557=head2 C<< verify_against_type_constraint(Item) -> TRUE | ERROR >>
558
559Checks that the given value passes this attribute's type constraint. Returns C<true>
560on success, otherwise C<confess>es.
93d190e0 561
1820fffe 562=head2 C<< clone_and_inherit_options(options) -> Mouse::Meta::Attribute >>
f7b11a21 563
612d3e1a 564Creates a new attribute in the owner class, inheriting options from parent classes.
f7b11a21 565Accessors and helper methods are installed. Some error checking is done.
566
deb9a0f3 567=head2 C<< get_read_method_ref >>\r
df77fd72 568\r
deb9a0f3 569=head2 C<< get_write_method_ref >>\r
df77fd72 570\r
571Returns the subroutine reference of a method suitable for reading or\r
572writing the attribute's value in the associated class. These methods\r
573always return a subroutine reference, regardless of whether or not the\r
574attribute is read- or write-only.
575
1820fffe 576=head1 SEE ALSO
f7b11a21 577
1820fffe 578L<Moose::Meta::Attribute>
f7b11a21 579
31c5194b 580L<Class::MOP::Attribute>
581
c3398f5b 582=cut
583