lazy_build arg processing copied from Moose
[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';
3301fa54 7use Scalar::Util 'blessed';
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
2e7e86c6 20 if ($args{lazy_build}) {
21 confess("You can not use lazy_build and default for the same attribute $name")
22 if exists $args{default};
23 $args{lazy} = 1;
24 $args{required} = 1;
25 $args{builder} ||= "_build_${name}";
26 if ($name =~ /^_/) {
27 $args{clearer} ||= "_clear${name}";
28 $args{predicate} ||= "_has${name}";
29 }
30 else {
31 $args{clearer} ||= "clear_${name}";
32 $args{predicate} ||= "has_${name}";
33 }
45959ffa 34 }
35
c3398f5b 36 bless \%args, $class;
37}
38
3cf68001 39sub name { $_[0]->{name} }
40sub class { $_[0]->{class} }
41sub _is_metadata { $_[0]->{is} }
42sub is_required { $_[0]->{required} }
43sub default { $_[0]->{default} }
44sub is_lazy { $_[0]->{lazy} }
45sub predicate { $_[0]->{predicate} }
46sub clearer { $_[0]->{clearer} }
47sub handles { $_[0]->{handles} }
48sub is_weak_ref { $_[0]->{weak_ref} }
49sub init_arg { $_[0]->{init_arg} }
50sub type_constraint { $_[0]->{type_constraint} }
51sub trigger { $_[0]->{trigger} }
52sub builder { $_[0]->{builder} }
53sub should_auto_deref { $_[0]->{auto_deref} }
c3398f5b 54
ccea8101 55sub has_default { exists $_[0]->{default} }
56sub has_predicate { exists $_[0]->{predicate} }
57sub has_clearer { exists $_[0]->{clearer} }
58sub has_handles { exists $_[0]->{handles} }
ccea8101 59sub has_type_constraint { exists $_[0]->{type_constraint} }
de9a434a 60sub has_trigger { exists $_[0]->{trigger} }
61sub has_builder { exists $_[0]->{builder} }
ccea8101 62
1bfebf5f 63sub _create_args {
64 $_[0]->{_create_args} = $_[1] if @_ > 1;
65 $_[0]->{_create_args}
66}
67
c3398f5b 68sub generate_accessor {
69 my $attribute = shift;
70
2434d21b 71 my $name = $attribute->name;
f3c1ccc8 72 my $key = $name;
2434d21b 73 my $default = $attribute->default;
74 my $trigger = $attribute->trigger;
75 my $type = $attribute->type_constraint;
5aa30ced 76 my $constraint = $attribute->find_type_constraint;
9367e029 77 my $builder = $attribute->builder;
c3398f5b 78
79 my $accessor = 'sub {
80 my $self = shift;';
81
2434d21b 82 if ($attribute->_is_metadata eq 'rw') {
c3398f5b 83 $accessor .= 'if (@_) {
a707f587 84 local $_ = $_[0];';
85
86 if ($constraint) {
1f2b4780 87 $accessor .= 'do {
e8b3db47 88 my $display = defined($_) ? overload::StrVal($_) : "undef";
1f2b4780 89 Carp::confess("Attribute ($name) does not pass the type constraint because: Validation failed for \'$type\' failed with value $display") unless $constraint->();
90 };'
a707f587 91 }
92
93 $accessor .= '$self->{$key} = $_;';
c3398f5b 94
3645b316 95 if ($attribute->is_weak_ref) {
96 $accessor .= 'Scalar::Util::weaken($self->{$key}) if ref($self->{$key});';
c3398f5b 97 }
98
99 if ($trigger) {
a707f587 100 $accessor .= '$trigger->($self, $_, $attribute);';
c3398f5b 101 }
102
103 $accessor .= '}';
104 }
105 else {
636c002e 106 $accessor .= 'confess "Cannot assign a value to a read-only accessor" if @_;';
c3398f5b 107 }
108
2434d21b 109 if ($attribute->is_lazy) {
c3398f5b 110 $accessor .= '$self->{$key} = ';
9367e029 111
112 $accessor .= $attribute->has_builder
113 ? '$self->$builder'
114 : ref($default) eq 'CODE'
115 ? '$default->($self)'
116 : '$default';
117
c3398f5b 118 $accessor .= ' if !exists($self->{$key});';
119 }
120
3cf68001 121 if ($attribute->should_auto_deref) {
122 if ($attribute->type_constraint eq 'ArrayRef') {
123 $accessor .= 'if (wantarray) {
124 return @{ $self->{$key} || [] };
125 }';
126 }
127 else {
128 $accessor .= 'if (wantarray) {
129 return %{ $self->{$key} || {} };
130 }';
131 }
132 }
133
134 $accessor .= 'return $self->{$key};
c3398f5b 135 }';
136
137 return eval $accessor;
138}
139
140sub generate_predicate {
141 my $attribute = shift;
f3c1ccc8 142 my $key = $attribute->name;
c3398f5b 143
144 my $predicate = 'sub { exists($_[0]->{$key}) }';
145
146 return eval $predicate;
147}
148
149sub generate_clearer {
150 my $attribute = shift;
f3c1ccc8 151 my $key = $attribute->name;
c3398f5b 152
153 my $predicate = 'sub { delete($_[0]->{$key}) }';
154
155 return eval $predicate;
156}
157
158sub generate_handles {
159 my $attribute = shift;
2434d21b 160 my $reader = $attribute->name;
c3cc3642 161 my %handles = $attribute->_canonicalize_handles($attribute->handles);
c3398f5b 162
163 my %method_map;
164
c3cc3642 165 for my $local_method (keys %handles) {
166 my $remote_method = $handles{$local_method};
c3398f5b 167
168 my $method = 'sub {
169 my $self = shift;
170 $self->$reader->$remote_method(@_)
171 }';
172
173 $method_map{$local_method} = eval $method;
174 }
175
176 return \%method_map;
177}
178
179sub create {
180 my ($self, $class, $name, %args) = @_;
181
1bfebf5f 182 $args{name} = $name;
183 $args{class} = $class;
184
8fd9e611 185 $self->validate_args($name, %args);
45ea8620 186
c021207d 187 $args{type_constraint} = delete $args{isa}
188 if exists $args{isa};
186657a9 189
1bfebf5f 190 my $attribute = $self->new(%args);
191 $attribute->_create_args(\%args);
192
c3398f5b 193 my $meta = $class->meta;
194
b2500191 195 $meta->add_attribute($attribute);
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;
200 no strict 'refs';
201 *{ $class . '::' . $name } = $accessor;
202 }
203
c3398f5b 204 for my $method (qw/predicate clearer/) {
2434d21b 205 my $predicate = "has_$method";
206 if ($attribute->$predicate) {
c3398f5b 207 my $generator = "generate_$method";
208 my $coderef = $attribute->$generator;
209 no strict 'refs';
2434d21b 210 *{ $class . '::' . $attribute->$method } = $coderef;
c3398f5b 211 }
212 }
213
2434d21b 214 if ($attribute->has_handles) {
c3398f5b 215 my $method_map = $attribute->generate_handles;
216 for my $method_name (keys %$method_map) {
217 no strict 'refs';
218 *{ $class . '::' . $method_name } = $method_map->{$method_name};
219 }
220 }
221
222 return $attribute;
223}
224
8fd9e611 225sub validate_args {
226 my $self = shift;
227 my $name = shift;
228 my %args = @_;
229
230 confess "You cannot have lazy attribute ($name) without specifying a default value for it"
231 if $args{lazy} && !exists($args{default}) && !exists($args{builder});
232
233 confess "References are not allowed as default values, you must wrap the default of '$name' in a CODE reference (ex: sub { [] } and not [])"
234 if ref($args{default})
235 && ref($args{default}) ne 'CODE';
236
237 confess "You cannot auto-dereference without specifying a type constraint on attribute $name"
238 if $args{auto_deref} && !exists($args{isa});
239
240 confess "You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute $name"
241 if $args{auto_deref}
242 && $args{isa} ne 'ArrayRef'
243 && $args{isa} ne 'HashRef';
244
245 return 1;
246}
247
5aa30ced 248sub find_type_constraint {
249 my $self = shift;
250 my $type = $self->type_constraint;
251
252 return unless $type;
253
254 my $checker = Mouse::TypeRegistry->optimized_constraints->{$type};
255 return $checker if $checker;
256
3301fa54 257 return sub { blessed($_) && blessed($_) eq $type };
5aa30ced 258}
259
260sub verify_type_constraint {
261 my $self = shift;
262 local $_ = shift;
263
264 my $type = $self->type_constraint
265 or return 1;
af745d5a 266 my $constraint = $self->find_type_constraint;
5aa30ced 267
268 return 1 if $constraint->($_);
269
270 my $name = $self->name;
f3e05dfd 271 my $display = defined($_) ? overload::StrVal($_) : 'undef';
272 Carp::confess("Attribute ($name) does not pass the type constraint because: Validation failed for \'$type\' failed with value $display");
5aa30ced 273}
274
af745d5a 275sub _canonicalize_handles {
276 my $self = shift;
277 my $handles = shift;
278
279 if (ref($handles) eq 'HASH') {
280 return %$handles;
281 }
282 elsif (ref($handles) eq 'ARRAY') {
283 return map { $_ => $_ } @$handles;
284 }
285 else {
286 confess "Unable to canonicalize the 'handles' option with $handles";
287 }
288}
289
1bfebf5f 290sub clone_parent {
291 my $self = shift;
292 my $class = shift;
293 my $name = shift;
294 my %args = ($self->get_parent_args($class, $name), @_);
295
296 $self->create($class, $name, %args);
297}
298
299sub get_parent_args {
300 my $self = shift;
301 my $class = shift;
302 my $name = shift;
303
304 for my $super ($class->meta->linearized_isa) {
bb733405 305 my $super_attr = $super->can("meta") && $super->meta->get_attribute($name)
1bfebf5f 306 or next;
307 return %{ $super_attr->_create_args };
308 }
309
310 confess "Could not find an attribute by the name of '$name' to inherit from";
311}
312
c3398f5b 3131;
314
315__END__
316
317=head1 NAME
318
306290e8 319Mouse::Meta::Attribute - attribute metaclass
c3398f5b 320
321=head1 METHODS
322
306290e8 323=head2 new %args -> Mouse::Meta::Attribute
c3398f5b 324
306290e8 325Instantiates a new Mouse::Meta::Attribute. Does nothing else.
c3398f5b 326
306290e8 327=head2 create OwnerClass, AttributeName, %args -> Mouse::Meta::Attribute
c3398f5b 328
329Creates a new attribute in OwnerClass. Accessors and helper methods are
330installed. Some error checking is done.
331
332=head2 name -> AttributeName
333
334=head2 class -> OwnerClass
335
ab27a55e 336=head2 is_required -> Bool
c3398f5b 337
ab27a55e 338=head2 default -> Item
c3398f5b 339
ab27a55e 340=head2 has_default -> Bool
341
342=head2 is_lazy -> Bool
343
344=head2 predicate -> MethodName | Undef
345
346=head2 has_predicate -> Bool
347
348=head2 clearer -> MethodName | Undef
349
350=head2 has_clearer -> Bool
c3398f5b 351
352=head2 handles -> { LocalName => RemoteName }
353
ab27a55e 354=head2 has_handles -> Bool
355
3645b316 356=head2 is_weak_ref -> Bool
c3398f5b 357
358=head2 init_arg -> Str
359
ab27a55e 360=head2 type_constraint -> Str
361
362=head2 has_type_constraint -> Bool
363
364=head2 trigger => CODE | Undef
365
366=head2 has_trigger -> Bool
367
368=head2 builder => MethodName | Undef
369
370=head2 has_builder -> Bool
371
0fff36e6 372=head2 should_auto_deref -> Bool
373
c3398f5b 374Informational methods.
375
376=head2 generate_accessor -> CODE
377
378Creates a new code reference for the attribute's accessor.
379
380=head2 generate_predicate -> CODE
381
382Creates a new code reference for the attribute's predicate.
383
384=head2 generate_clearer -> CODE
385
386Creates a new code reference for the attribute's clearer.
387
388=head2 generate_handles -> { MethodName => CODE }
389
390Creates a new code reference for each of the attribute's handles methods.
391
fb706f5c 392=head2 find_type_constraint -> CODE
393
394Returns a code reference which can be used to check that a given value passes
395this attribute's type constraint;
396
397=head2 verify_type_constraint Item -> 1 | ERROR
398
399Checks that the given value passes this attribute's type constraint. Returns 1
400on success, otherwise C<confess>es.
401
c3398f5b 402=cut
403