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