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