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