I want parameterized types... I want it!
[gitmo/Mouse.git] / lib / Mouse / Meta / Attribute.pm
CommitLineData
306290e8 1package Mouse::Meta::Attribute;
c3398f5b 2use strict;
3use warnings;
3b8fe109 4require overload;
c3398f5b 5
6use Carp 'confess';
6c169c50 7use Scalar::Util ();
c3398f5b 8
9sub new {
2608b115 10 my ($class, $name, %options) = @_;
c3398f5b 11
2608b115 12 $options{name} = $name;
2e7e86c6 13
2608b115 14 $options{init_arg} = $name
15 unless exists $options{init_arg};
45959ffa 16
2608b115 17 $options{is} ||= '';
c3398f5b 18
2608b115 19 bless \%options, $class;
c3398f5b 20}
21
f6715552 22sub name { $_[0]->{name} }
23sub associated_class { $_[0]->{associated_class} }
24sub _is_metadata { $_[0]->{is} }
25sub is_required { $_[0]->{required} }
26sub default { $_[0]->{default} }
27sub is_lazy { $_[0]->{lazy} }
28sub is_lazy_build { $_[0]->{lazy_build} }
29sub predicate { $_[0]->{predicate} }
30sub clearer { $_[0]->{clearer} }
31sub handles { $_[0]->{handles} }
32sub is_weak_ref { $_[0]->{weak_ref} }
33sub init_arg { $_[0]->{init_arg} }
34sub type_constraint { $_[0]->{type_constraint} }
35sub trigger { $_[0]->{trigger} }
36sub builder { $_[0]->{builder} }
37sub should_auto_deref { $_[0]->{auto_deref} }
38sub should_coerce { $_[0]->{should_coerce} }
39sub find_type_constraint { $_[0]->{find_type_constraint} }
c3398f5b 40
f6715552 41sub has_default { exists $_[0]->{default} }
42sub has_predicate { exists $_[0]->{predicate} }
43sub has_clearer { exists $_[0]->{clearer} }
44sub has_handles { exists $_[0]->{handles} }
45sub has_type_constraint { exists $_[0]->{type_constraint} }
46sub has_trigger { exists $_[0]->{trigger} }
47sub has_builder { exists $_[0]->{builder} }
eec1bb49 48
1bfebf5f 49sub _create_args {
50 $_[0]->{_create_args} = $_[1] if @_ > 1;
51 $_[0]->{_create_args}
52}
53
7f7406a5 54sub inlined_name {
55 my $self = shift;
56 my $name = $self->name;
57 my $key = "'" . $name . "'";
58 return $key;
59}
60
c3398f5b 61sub generate_accessor {
62 my $attribute = shift;
63
32af3489 64 my $name = $attribute->name;
65 my $default = $attribute->default;
32af3489 66 my $constraint = $attribute->find_type_constraint;
67 my $builder = $attribute->builder;
68 my $trigger = $attribute->trigger;
69 my $is_weak = $attribute->is_weak_ref;
70 my $should_deref = $attribute->should_auto_deref;
71 my $should_coerce = $attribute->should_coerce;
4e757c98 72
85ccd3e9 73 my $self = '$_[0]';
85ccd3e9 74 my $key = $attribute->inlined_name;
c3398f5b 75
85ccd3e9 76 my $accessor = "sub {\n";
2434d21b 77 if ($attribute->_is_metadata eq 'rw') {
d8b10b32 78 $accessor .= 'if (@_ >= 2) {' . "\n";
7de13475 79
80 my $value = '$_[1]';
a707f587 81
a08e715f 82 if ($constraint) {
eec1bb49 83 $accessor .= 'my $val = ';
32af3489 84 if ($should_coerce) {
3b46bd49 85 $accessor .= 'Mouse::Util::TypeConstraints->typecast_constraints("'.$attribute->associated_class->name.'", $attribute->{find_type_constraint}, $attribute->{type_constraint}, '.$value.');';
eec1bb49 86 } else {
87 $accessor .= $value.';';
4188b837 88 }
eec1bb49 89 $accessor .= 'local $_ = $val;';
4188b837 90 $accessor .= '
ed1eec39 91 unless ($constraint->()) {
b3b74cc6 92 $attribute->verify_type_constraint_error($name, $_, $attribute->type_constraint);
93 }' . "\n";
eec1bb49 94 $value = '$val';
a707f587 95 }
96
ccd73de7 97 # if there's nothing left to do for the attribute we can return during
98 # this setter
99 $accessor .= 'return ' if !$is_weak && !$trigger && !$should_deref;
c3398f5b 100
2b9094e8 101 $accessor .= $self.'->{'.$key.'} = '.$value.';' . "\n";
102
ccd73de7 103 if ($is_weak) {
6c169c50 104 $accessor .= 'Scalar::Util::weaken('.$self.'->{'.$key.'}) if ref('.$self.'->{'.$key.'});' . "\n";
c3398f5b 105 }
106
a08e715f 107 if ($trigger) {
85ccd3e9 108 $accessor .= '$trigger->('.$self.', '.$value.', $attribute);' . "\n";
c3398f5b 109 }
110
85ccd3e9 111 $accessor .= "}\n";
c3398f5b 112 }
113 else {
85ccd3e9 114 $accessor .= 'confess "Cannot assign a value to a read-only accessor" if scalar(@_) >= 2;' . "\n";
c3398f5b 115 }
116
3aadb773 117 if ($attribute->is_lazy) {
85ccd3e9 118 $accessor .= $self.'->{'.$key.'} = ';
9367e029 119
120 $accessor .= $attribute->has_builder
85ccd3e9 121 ? $self.'->$builder'
122 : ref($default) eq 'CODE'
123 ? '$default->('.$self.')'
124 : '$default';
125 $accessor .= ' if !exists '.$self.'->{'.$key.'};' . "\n";
c3398f5b 126 }
127
ccd73de7 128 if ($should_deref) {
eec1bb49 129 my $type_constraint = $attribute->type_constraint;
130 if (!ref($type_constraint) && $type_constraint eq 'ArrayRef') {
3cf68001 131 $accessor .= 'if (wantarray) {
85ccd3e9 132 return @{ '.$self.'->{'.$key.'} || [] };
7de13475 133 }';
3cf68001 134 }
135 else {
136 $accessor .= 'if (wantarray) {
85ccd3e9 137 return %{ '.$self.'->{'.$key.'} || {} };
7de13475 138 }';
3cf68001 139 }
140 }
141
85ccd3e9 142 $accessor .= 'return '.$self.'->{'.$key.'};
c3398f5b 143 }';
144
71b948d1 145 my $sub = eval $accessor;
146 confess $@ if $@;
147 return $sub;
c3398f5b 148}
149
150sub generate_predicate {
151 my $attribute = shift;
d10fd510 152 my $key = $attribute->inlined_name;
c3398f5b 153
d10fd510 154 my $predicate = 'sub { exists($_[0]->{'.$key.'}) }';
c3398f5b 155
71b948d1 156 my $sub = eval $predicate;
157 confess $@ if $@;
158 return $sub;
c3398f5b 159}
160
161sub generate_clearer {
162 my $attribute = shift;
d10fd510 163 my $key = $attribute->inlined_name;
c3398f5b 164
d10fd510 165 my $clearer = 'sub { delete($_[0]->{'.$key.'}) }';
c3398f5b 166
71b948d1 167 my $sub = eval $clearer;
168 confess $@ if $@;
169 return $sub;
c3398f5b 170}
171
172sub generate_handles {
173 my $attribute = shift;
2434d21b 174 my $reader = $attribute->name;
c3cc3642 175 my %handles = $attribute->_canonicalize_handles($attribute->handles);
c3398f5b 176
177 my %method_map;
178
c3cc3642 179 for my $local_method (keys %handles) {
180 my $remote_method = $handles{$local_method};
c3398f5b 181
182 my $method = 'sub {
183 my $self = shift;
0ecefe82 184 $self->'.$reader.'->'.$remote_method.'(@_)
c3398f5b 185 }';
186
187 $method_map{$local_method} = eval $method;
71b948d1 188 confess $@ if $@;
c3398f5b 189 }
190
191 return \%method_map;
192}
193
315b97c2 194our $optimized_constraints;
195sub _build_type_constraint {
196 my $spec = shift;
197 local $optimized_constraints ||= Mouse::Util::TypeConstraints->optimized_constraints;
198 my $code;
199 if ($spec =~ /^([^\[]+)\[(.+)\]$/) {
200 # parameterized
201 my $constraint = $1;
202 my $param = $2;
203 my $parent = _build_type_constraint($constraint);
204 my $child = _build_type_constraint($param);
205 if ($constraint eq 'ArrayRef') {
206 my $code_str =
207 "sub {\n" .
208 " if (\$parent->(\$_)) {\n" .
209 " foreach my \$e (@\$_) {\n" .
210 " local \$_ = \$e;\n" .
211 " return () unless \$child->(\$_);\n" .
212 " }\n" .
213 " return 1;\n" .
214 " }\n" .
215 " return ();\n" .
216 "};\n"
217 ;
218 $code = eval $code_str or Carp::confess($@);
219 } elsif ($constraint eq 'HashRef') {
220 my $code_str =
221 "sub {\n" .
222 " if (\$parent->(\$_)) {\n" .
223 " foreach my \$e (values %\$_) {\n" .
224 " local \$_ = \$e;\n" .
225 " return () unless \$child->(\$_);\n" .
226 " }\n" .
227 " return 1;\n" .
228 " }\n" .
229 " return ();\n" .
230 "};\n"
231 ;
232 $code = eval $code_str or Carp::confess($@);
233 } else {
234 Carp::confess("Support for parameterized types other than ArrayRef or HashRef is not implemented yet");
235 }
236 } else {
237 $code = $optimized_constraints->{ $spec };
238 if (! $code) {
239 $code = sub { Scalar::Util::blessed($_) && $_->isa($spec) };
240 $optimized_constraints->{$spec} = $code;
241 }
242 }
243 return $code;
244}
245
c3398f5b 246sub create {
247 my ($self, $class, $name, %args) = @_;
248
1bfebf5f 249 $args{name} = $name;
181502b9 250 $args{associated_class} = $class;
1bfebf5f 251
93d190e0 252 %args = $self->canonicalize_args($name, %args);
1bbaa8ed 253 $self->validate_args($name, \%args);
45ea8620 254
32af3489 255 $args{should_coerce} = delete $args{coerce}
4188b837 256 if exists $args{coerce};
257
eec1bb49 258 if (exists $args{isa}) {
315b97c2 259 warn "Got isa => $args{isa}, but Mouse does not yet support parameterized types for containers other than ArrayRef and HashRef (rt.cpan.org #39795)"
260 if $args{isa} =~ /^([^\[]+)\[.+\]$/ &&
261 $1 ne 'ArrayRef' &&
262 $1 ne 'HashRef';
5fa003bf 263
eec1bb49 264 my $type_constraint = delete $args{isa};
265 $type_constraint =~ s/\s//g;
266 my @type_constraints = split /\|/, $type_constraint;
267
268 my $code;
eec1bb49 269 if (@type_constraints == 1) {
315b97c2 270 $code = _build_type_constraint($type_constraints[0]);
eec1bb49 271 $args{type_constraint} = $type_constraints[0];
272 } else {
273 my @code_list = map {
315b97c2 274 _build_type_constraint($_)
eec1bb49 275 } @type_constraints;
276 $code = sub {
277 for my $code (@code_list) {
278 return 1 if $code->();
279 }
280 return 0;
281 };
282 $args{type_constraint} = \@type_constraints;
283 }
284 $args{find_type_constraint} = $code;
285 }
186657a9 286
2608b115 287 my $attribute = $self->new($name, %args);
1bfebf5f 288
724c77c0 289 $attribute->_create_args(\%args);
c3398f5b 290
724c77c0 291 $class->add_attribute($attribute);
b2500191 292
c3398f5b 293 # install an accessor
2434d21b 294 if ($attribute->_is_metadata eq 'rw' || $attribute->_is_metadata eq 'ro') {
c3398f5b 295 my $accessor = $attribute->generate_accessor;
724c77c0 296 $class->add_method($name => $accessor);
c3398f5b 297 }
298
c3398f5b 299 for my $method (qw/predicate clearer/) {
2434d21b 300 my $predicate = "has_$method";
301 if ($attribute->$predicate) {
c3398f5b 302 my $generator = "generate_$method";
303 my $coderef = $attribute->$generator;
724c77c0 304 $class->add_method($attribute->$method => $coderef);
c3398f5b 305 }
306 }
307
2434d21b 308 if ($attribute->has_handles) {
c3398f5b 309 my $method_map = $attribute->generate_handles;
310 for my $method_name (keys %$method_map) {
724c77c0 311 $class->add_method($method_name => $method_map->{$method_name});
c3398f5b 312 }
313 }
314
315 return $attribute;
316}
317
93d190e0 318sub canonicalize_args {
319 my $self = shift;
320 my $name = shift;
321 my %args = @_;
322
323 if ($args{lazy_build}) {
324 $args{lazy} = 1;
325 $args{required} = 1;
326 $args{builder} = "_build_${name}"
327 if !exists($args{builder});
328 if ($name =~ /^_/) {
329 $args{clearer} = "_clear${name}" if !exists($args{clearer});
330 $args{predicate} = "_has${name}" if !exists($args{predicate});
331 }
332 else {
333 $args{clearer} = "clear_${name}" if !exists($args{clearer});
334 $args{predicate} = "has_${name}" if !exists($args{predicate});
335 }
336 }
337
338 return %args;
339}
340
8fd9e611 341sub validate_args {
342 my $self = shift;
343 my $name = shift;
1bbaa8ed 344 my $args = shift;
8fd9e611 345
93d190e0 346 confess "You can not use lazy_build and default for the same attribute ($name)"
1bbaa8ed 347 if $args->{lazy_build} && exists $args->{default};
93d190e0 348
8fd9e611 349 confess "You cannot have lazy attribute ($name) without specifying a default value for it"
1bbaa8ed 350 if $args->{lazy}
351 && !exists($args->{default})
352 && !exists($args->{builder});
8fd9e611 353
354 confess "References are not allowed as default values, you must wrap the default of '$name' in a CODE reference (ex: sub { [] } and not [])"
1bbaa8ed 355 if ref($args->{default})
356 && ref($args->{default}) ne 'CODE';
8fd9e611 357
97661b77 358 confess "You cannot auto-dereference without specifying a type constraint on attribute ($name)"
1bbaa8ed 359 if $args->{auto_deref} && !exists($args->{isa});
8fd9e611 360
97661b77 361 confess "You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute ($name)"
1bbaa8ed 362 if $args->{auto_deref}
363 && $args->{isa} ne 'ArrayRef'
364 && $args->{isa} ne 'HashRef';
8fd9e611 365
506db557 366 if ($args->{trigger}) {
a08e715f 367 if (ref($args->{trigger}) eq 'HASH') {
368 Carp::carp "HASH-based form of trigger has been removed. Only the coderef form of triggers are now supported.";
844fa049 369 }
506db557 370
844fa049 371 confess "Trigger must be a CODE ref on attribute ($name)"
a08e715f 372 if ref($args->{trigger}) ne 'CODE';
506db557 373 }
6c5498d0 374
8fd9e611 375 return 1;
376}
377
20e25eb9 378sub verify_against_type_constraint {
8a7f2a8a 379 return 1 unless $_[0]->{type_constraint};
5aa30ced 380
8a7f2a8a 381 local $_ = $_[1];
382 return 1 if $_[0]->{find_type_constraint}->($_);
5aa30ced 383
8a7f2a8a 384 my $self = shift;
b3b74cc6 385 $self->verify_type_constraint_error($self->name, $_, $self->type_constraint);
386}
5aa30ced 387
b3b74cc6 388sub verify_type_constraint_error {
389 my($self, $name, $value, $type) = @_;
390 $type = ref($type) eq 'ARRAY' ? join '|', @{ $type } : $type;
f3e05dfd 391 my $display = defined($_) ? overload::StrVal($_) : 'undef';
392 Carp::confess("Attribute ($name) does not pass the type constraint because: Validation failed for \'$type\' failed with value $display");
5aa30ced 393}
394
8a7f2a8a 395sub coerce_constraint { ## my($self, $value) = @_;
396 my $type = $_[0]->{type_constraint}
397 or return $_[1];
3b46bd49 398 return Mouse::Util::TypeConstraints->typecast_constraints($_[0]->associated_class->name, $_[0]->find_type_constraint, $type, $_[1]);
4188b837 399}
400
af745d5a 401sub _canonicalize_handles {
402 my $self = shift;
403 my $handles = shift;
404
405 if (ref($handles) eq 'HASH') {
406 return %$handles;
407 }
408 elsif (ref($handles) eq 'ARRAY') {
409 return map { $_ => $_ } @$handles;
410 }
411 else {
412 confess "Unable to canonicalize the 'handles' option with $handles";
413 }
414}
415
1bfebf5f 416sub clone_parent {
417 my $self = shift;
418 my $class = shift;
419 my $name = shift;
420 my %args = ($self->get_parent_args($class, $name), @_);
421
422 $self->create($class, $name, %args);
423}
424
425sub get_parent_args {
426 my $self = shift;
427 my $class = shift;
428 my $name = shift;
429
724c77c0 430 for my $super ($class->linearized_isa) {
bb733405 431 my $super_attr = $super->can("meta") && $super->meta->get_attribute($name)
1bfebf5f 432 or next;
433 return %{ $super_attr->_create_args };
434 }
435
436 confess "Could not find an attribute by the name of '$name' to inherit from";
437}
438
c3398f5b 4391;
440
441__END__
442
443=head1 NAME
444
306290e8 445Mouse::Meta::Attribute - attribute metaclass
c3398f5b 446
447=head1 METHODS
448
306290e8 449=head2 new %args -> Mouse::Meta::Attribute
c3398f5b 450
306290e8 451Instantiates a new Mouse::Meta::Attribute. Does nothing else.
c3398f5b 452
306290e8 453=head2 create OwnerClass, AttributeName, %args -> Mouse::Meta::Attribute
c3398f5b 454
455Creates a new attribute in OwnerClass. Accessors and helper methods are
456installed. Some error checking is done.
457
458=head2 name -> AttributeName
459
181502b9 460=head2 associated_class -> OwnerClass
c3398f5b 461
ab27a55e 462=head2 is_required -> Bool
c3398f5b 463
ab27a55e 464=head2 default -> Item
c3398f5b 465
ab27a55e 466=head2 has_default -> Bool
467
468=head2 is_lazy -> Bool
469
470=head2 predicate -> MethodName | Undef
471
472=head2 has_predicate -> Bool
473
474=head2 clearer -> MethodName | Undef
475
476=head2 has_clearer -> Bool
c3398f5b 477
478=head2 handles -> { LocalName => RemoteName }
479
ab27a55e 480=head2 has_handles -> Bool
481
3645b316 482=head2 is_weak_ref -> Bool
c3398f5b 483
484=head2 init_arg -> Str
485
ab27a55e 486=head2 type_constraint -> Str
487
488=head2 has_type_constraint -> Bool
489
490=head2 trigger => CODE | Undef
491
492=head2 has_trigger -> Bool
493
494=head2 builder => MethodName | Undef
495
496=head2 has_builder -> Bool
497
93f08899 498=head2 is_lazy_build => Bool
499
0fff36e6 500=head2 should_auto_deref -> Bool
501
c3398f5b 502Informational methods.
503
504=head2 generate_accessor -> CODE
505
506Creates a new code reference for the attribute's accessor.
507
508=head2 generate_predicate -> CODE
509
510Creates a new code reference for the attribute's predicate.
511
512=head2 generate_clearer -> CODE
513
514Creates a new code reference for the attribute's clearer.
515
516=head2 generate_handles -> { MethodName => CODE }
517
518Creates a new code reference for each of the attribute's handles methods.
519
fb706f5c 520=head2 find_type_constraint -> CODE
521
522Returns a code reference which can be used to check that a given value passes
523this attribute's type constraint;
524
20e25eb9 525=head2 verify_against_type_constraint Item -> 1 | ERROR
fb706f5c 526
527Checks that the given value passes this attribute's type constraint. Returns 1
528on success, otherwise C<confess>es.
529
93d190e0 530=head2 canonicalize_args Name, %args -> %args
531
532Canonicalizes some arguments to create. In particular, C<lazy_build> is
533canonicalized into C<lazy>, C<builder>, etc.
534
1bbaa8ed 535=head2 validate_args Name, \%args -> 1 | ERROR
93d190e0 536
537Checks that the arguments to create the attribute (ie those specified by
538C<has>) are valid.
539
f7b11a21 540=head2 clone_parent OwnerClass, AttributeName, %args -> Mouse::Meta::Attribute
541
542Creates a new attribute in OwnerClass, inheriting options from parent classes.
543Accessors and helper methods are installed. Some error checking is done.
544
545=head2 get_parent_args OwnerClass, AttributeName -> Hash
546
547Returns the options that the parent class of C<OwnerClass> used for attribute
548C<AttributeName>.
549
c3398f5b 550=cut
551