Make generators private
[gitmo/Mouse.git] / lib / Mouse / Meta / Attribute.pm
1 package Mouse::Meta::Attribute;
2 use strict;
3 use warnings;
4 require overload;
5
6 use Carp 'confess';
7 use Scalar::Util ();
8 use Mouse::Meta::TypeConstraint;
9
10 sub new {
11     my ($class, $name, %options) = @_;
12
13     $options{name} = $name;
14
15     $options{init_arg} = $name
16         unless exists $options{init_arg};
17
18     $options{is} ||= '';
19
20     bless \%options, $class;
21 }
22
23 sub name                 { $_[0]->{name}                   }
24 sub associated_class     { $_[0]->{associated_class}       }
25 sub _is_metadata         { $_[0]->{is}                     }
26 sub is_required          { $_[0]->{required}               }
27 sub default              { $_[0]->{default}                }
28 sub is_lazy              { $_[0]->{lazy}                   }
29 sub is_lazy_build        { $_[0]->{lazy_build}             }
30 sub predicate            { $_[0]->{predicate}              }
31 sub clearer              { $_[0]->{clearer}                }
32 sub handles              { $_[0]->{handles}                }
33 sub is_weak_ref          { $_[0]->{weak_ref}               }
34 sub init_arg             { $_[0]->{init_arg}               }
35 sub type_constraint      { $_[0]->{type_constraint}        }
36 sub find_type_constraint {
37     Carp::carp("This method was deprecated");
38     $_[0]->type_constraint();
39 }
40 sub trigger              { $_[0]->{trigger}                }
41 sub builder              { $_[0]->{builder}                }
42 sub should_auto_deref    { $_[0]->{auto_deref}             }
43 sub should_coerce        { $_[0]->{should_coerce}          }
44
45 sub has_default          { exists $_[0]->{default}         }
46 sub has_predicate        { exists $_[0]->{predicate}       }
47 sub has_clearer          { exists $_[0]->{clearer}         }
48 sub has_handles          { exists $_[0]->{handles}         }
49 sub has_type_constraint  { exists $_[0]->{type_constraint} }
50 sub has_trigger          { exists $_[0]->{trigger}         }
51 sub has_builder          { exists $_[0]->{builder}         }
52
53 sub _create_args {
54     $_[0]->{_create_args} = $_[1] if @_ > 1;
55     $_[0]->{_create_args}
56 }
57
58 sub _inlined_name {
59     my $self = shift;
60     return sprintf '"%s"', quotemeta $self->name;
61 }
62
63 sub _generate_accessor{
64     my ($attribute) = @_;
65
66     my $name          = $attribute->name;
67     my $default       = $attribute->default;
68     my $constraint    = $attribute->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;
74
75     my $compiled_type_constraint    = $constraint ? $constraint->{_compiled_type_constraint} : undef;
76
77     my $self  = '$_[0]';
78     my $key   = $attribute->_inlined_name;
79
80     my $accessor = 
81         '#line ' . __LINE__ . ' "' . __FILE__ . "\"\n" .
82         "sub {\n";
83     if ($attribute->_is_metadata eq 'rw') {
84         $accessor .= 
85             '#line ' . __LINE__ . ' "' . __FILE__ . "\"\n" .
86             'if (scalar(@_) >= 2) {' . "\n";
87
88         my $value = '$_[1]';
89
90         if ($constraint) {
91             if ($should_coerce) {
92                 $accessor .=
93                     "\n".
94                     '#line ' . __LINE__ . ' "' . __FILE__ . "\"\n" .
95                     'my $val = Mouse::Util::TypeConstraints->typecast_constraints("'.$attribute->associated_class->name.'", $attribute->{type_constraint}, '.$value.');';
96                 $value = '$val';
97             }
98             if ($compiled_type_constraint) {
99                 $accessor .= 
100                     "\n".
101                     '#line ' . __LINE__ . ' "' . __FILE__ . "\"\n" .
102                     'unless ($compiled_type_constraint->('.$value.')) {
103                         $attribute->verify_type_constraint_error($name, '.$value.', $attribute->{type_constraint});
104                     }' . "\n";
105             } else {
106                 $accessor .= 
107                     "\n".
108                     '#line ' . __LINE__ . ' "' . __FILE__ . "\"\n" .
109                     'unless ($constraint->check('.$value.')) {
110                         $attribute->verify_type_constraint_error($name, '.$value.', $attribute->{type_constraint});
111                     }' . "\n";
112             }
113         }
114
115         # if there's nothing left to do for the attribute we can return during
116         # this setter
117         $accessor .= 'return ' if !$is_weak && !$trigger && !$should_deref;
118
119         $accessor .= $self.'->{'.$key.'} = '.$value.';' . "\n";
120
121         if ($is_weak) {
122             $accessor .= 'Scalar::Util::weaken('.$self.'->{'.$key.'}) if ref('.$self.'->{'.$key.'});' . "\n";
123         }
124
125         if ($trigger) {
126             $accessor .= '$trigger->('.$self.', '.$value.');' . "\n";
127         }
128
129         $accessor .= "}\n";
130     }
131     else {
132         $accessor .= 'Carp::confess("Cannot assign a value to a read-only accessor") if scalar(@_) >= 2;' . "\n";
133     }
134
135     if ($attribute->is_lazy) {
136         $accessor .= $self.'->{'.$key.'} = ';
137
138         $accessor .= $attribute->has_builder
139                 ? $self.'->$builder'
140                     : ref($default) eq 'CODE'
141                     ? '$default->('.$self.')'
142                     : '$default';
143         $accessor .= ' if !exists '.$self.'->{'.$key.'};' . "\n";
144     }
145
146     if ($should_deref) {
147         if (ref($constraint) && $constraint->name =~ '^ArrayRef\b') {
148             $accessor .= 'if (wantarray) {
149                 return @{ '.$self.'->{'.$key.'} || [] };
150             }';
151         }
152         else {
153             $accessor .= 'if (wantarray) {
154                 return %{ '.$self.'->{'.$key.'} || {} };
155             }';
156         }
157     }
158
159     $accessor .= 'return '.$self.'->{'.$key.'};
160     }';
161
162     my $sub = eval $accessor;
163     Carp::confess($@) if $@;
164     return $sub;
165 }
166
167
168 sub _generate_predicate {
169     my $attribute = shift;
170     my $key = $attribute->_inlined_name;
171
172     my $predicate = 'sub { exists($_[0]->{'.$key.'}) }';
173
174     my $sub = eval $predicate;
175     confess $@ if $@;
176     return $sub;
177 }
178
179 sub _generate_clearer {
180     my $attribute = shift;
181     my $key = $attribute->_inlined_name;
182
183     my $clearer = 'sub { delete($_[0]->{'.$key.'}) }';
184
185     my $sub = eval $clearer;
186     confess $@ if $@;
187     return $sub;
188 }
189
190 sub _generate_handles {
191     my $attribute = shift;
192     my $reader = $attribute->name;
193     my %handles = $attribute->_canonicalize_handles($attribute->handles);
194
195     my %method_map;
196
197     for my $local_method (keys %handles) {
198         my $remote_method = $handles{$local_method};
199
200         my $method = 'sub {
201             my $self = shift;
202             $self->'.$reader.'->'.$remote_method.'(@_)
203         }';
204
205         $method_map{$local_method} = eval $method;
206         confess $@ if $@;
207     }
208
209     return \%method_map;
210 }
211
212 sub create {
213     my ($self, $class, $name, %args) = @_;
214
215     $args{name} = $name;
216     $args{associated_class} = $class;
217
218     %args = $self->canonicalize_args($name, %args);
219     $self->validate_args($name, \%args);
220
221     $args{should_coerce} = delete $args{coerce}
222         if exists $args{coerce};
223
224     if (exists $args{isa}) {
225         confess "Got isa => $args{isa}, but Mouse does not yet support parameterized types for containers other than ArrayRef and HashRef (rt.cpan.org #39795)"
226             if $args{isa} =~ /^([^\[]+)\[.+\]$/ &&
227                $1 ne 'ArrayRef' &&
228                $1 ne 'HashRef'  &&
229                $1 ne 'Maybe'
230         ;
231
232         my $type_constraint = delete $args{isa};
233         $args{type_constraint}= Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($type_constraint);
234     }
235
236     my $attribute = $self->new($name, %args);
237
238     $attribute->_create_args(\%args);
239
240     $class->add_attribute($attribute);
241
242     # install an accessor
243     if ($attribute->_is_metadata eq 'rw' || $attribute->_is_metadata eq 'ro') {
244         my $code = $attribute->_generate_accessor();
245         $class->add_method($name => $code);
246     }
247
248     for my $method (qw/predicate clearer/) {
249         my $predicate = "has_$method";
250         if ($attribute->$predicate) {
251             my $generator = "_generate_$method";
252             my $coderef = $attribute->$generator;
253             $class->add_method($attribute->$method => $coderef);
254         }
255     }
256
257     if ($attribute->has_handles) {
258         my $method_map = $attribute->_generate_handles;
259         for my $method_name (keys %$method_map) {
260             $class->add_method($method_name => $method_map->{$method_name});
261         }
262     }
263
264     return $attribute;
265 }
266
267 sub 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
290 sub validate_args {
291     my $self = shift;
292     my $name = shift;
293     my $args = shift;
294
295     confess "You can not use lazy_build and default for the same attribute ($name)"
296         if $args->{lazy_build} && exists $args->{default};
297
298     confess "You cannot have lazy attribute ($name) without specifying a default value for it"
299         if $args->{lazy}
300         && !exists($args->{default})
301         && !exists($args->{builder});
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 [])"
304         if ref($args->{default})
305         && ref($args->{default}) ne 'CODE';
306
307     confess "You cannot auto-dereference without specifying a type constraint on attribute ($name)"
308         if $args->{auto_deref} && !exists($args->{isa});
309
310     confess "You cannot auto-dereference anything other than a ArrayRef or HashRef on attribute ($name)"
311         if $args->{auto_deref}
312         && $args->{isa} !~ /^(?:ArrayRef|HashRef)(?:\[.*\])?$/;
313
314     if ($args->{trigger}) {
315         if (ref($args->{trigger}) eq 'HASH') {
316             Carp::carp "HASH-based form of trigger has been removed. Only the coderef form of triggers are now supported.";
317         }
318
319         confess "Trigger must be a CODE ref on attribute ($name)"
320             if ref($args->{trigger}) ne 'CODE';
321     }
322
323     return 1;
324 }
325
326 sub verify_against_type_constraint {
327     my ($self, $value) = @_;
328     my $tc = $self->type_constraint;
329     return 1 unless $tc;
330
331     local $_ = $value;
332     return 1 if $tc->check($value);
333
334     $self->verify_type_constraint_error($self->name, $value, $tc);
335 }
336
337 sub verify_type_constraint_error {
338     my($self, $name, $value, $type) = @_;
339     Carp::confess("Attribute ($name) does not pass the type constraint because: " . $type->get_message($value));
340 }
341
342 sub coerce_constraint { ## my($self, $value) = @_;
343     my $type = $_[0]->{type_constraint}
344         or return $_[1];
345     return Mouse::Util::TypeConstraints->typecast_constraints($_[0]->associated_class->name, $_[0]->type_constraint, $_[1]);
346 }
347
348 sub _canonicalize_handles {
349     my $self    = shift;
350     my $handles = shift;
351
352     if (ref($handles) eq 'HASH') {
353         return %$handles;
354     }
355     elsif (ref($handles) eq 'ARRAY') {
356         return map { $_ => $_ } @$handles;
357     }
358     else {
359         confess "Unable to canonicalize the 'handles' option with $handles";
360     }
361 }
362
363 sub clone_parent {
364     my $self  = shift;
365     my $class = shift;
366     my $name  = shift;
367     my %args  = ($self->get_parent_args($class, $name), @_);
368
369     $self->create($class, $name, %args);
370 }
371
372 sub get_parent_args {
373     my $self  = shift;
374     my $class = shift;
375     my $name  = shift;
376
377     for my $super ($class->linearized_isa) {
378         my $super_attr = $super->can("meta") && $super->meta->get_attribute($name)
379             or next;
380         return %{ $super_attr->_create_args };
381     }
382
383     confess "Could not find an attribute by the name of '$name' to inherit from";
384 }
385
386 1;
387
388 __END__
389
390 =head1 NAME
391
392 Mouse::Meta::Attribute - attribute metaclass
393
394 =head1 METHODS
395
396 =head2 new %args -> Mouse::Meta::Attribute
397
398 Instantiates a new Mouse::Meta::Attribute. Does nothing else.
399
400 =head2 create OwnerClass, AttributeName, %args -> Mouse::Meta::Attribute
401
402 Creates a new attribute in OwnerClass. Accessors and helper methods are
403 installed. Some error checking is done.
404
405 =head2 name -> AttributeName
406
407 =head2 associated_class -> OwnerClass
408
409 =head2 is_required -> Bool
410
411 =head2 default -> Item
412
413 =head2 has_default -> Bool
414
415 =head2 is_lazy -> Bool
416
417 =head2 predicate -> MethodName | Undef
418
419 =head2 has_predicate -> Bool
420
421 =head2 clearer -> MethodName | Undef
422
423 =head2 has_clearer -> Bool
424
425 =head2 handles -> { LocalName => RemoteName }
426
427 =head2 has_handles -> Bool
428
429 =head2 is_weak_ref -> Bool
430
431 =head2 init_arg -> Str
432
433 =head2 type_constraint -> Str
434
435 =head2 has_type_constraint -> Bool
436
437 =head2 trigger => CODE | Undef
438
439 =head2 has_trigger -> Bool
440
441 =head2 builder => MethodName | Undef
442
443 =head2 has_builder -> Bool
444
445 =head2 is_lazy_build => Bool
446
447 =head2 should_auto_deref -> Bool
448
449 Informational methods.
450
451 =head2 verify_against_type_constraint Item -> 1 | ERROR
452
453 Checks that the given value passes this attribute's type constraint. Returns 1
454 on success, otherwise C<confess>es.
455
456 =head2 canonicalize_args Name, %args -> %args
457
458 Canonicalizes some arguments to create. In particular, C<lazy_build> is
459 canonicalized into C<lazy>, C<builder>, etc.
460
461 =head2 validate_args Name, \%args -> 1 | ERROR
462
463 Checks that the arguments to create the attribute (ie those specified by
464 C<has>) are valid.
465
466 =head2 clone_parent OwnerClass, AttributeName, %args -> Mouse::Meta::Attribute
467
468 Creates a new attribute in OwnerClass, inheriting options from parent classes.
469 Accessors and helper methods are installed. Some error checking is done.
470
471 =head2 get_parent_args OwnerClass, AttributeName -> Hash
472
473 Returns the options that the parent class of C<OwnerClass> used for attribute
474 C<AttributeName>.
475
476 =cut
477