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