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