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