Fix type_constraint always being set to undef
[gitmo/Mouse.git] / lib / Mouse / Attribute.pm
1 #!/usr/bin/env perl
2 package Mouse::Attribute;
3 use strict;
4 use warnings;
5
6 use Carp 'confess';
7 use Scalar::Util 'blessed';
8
9 sub new {
10     my $class = shift;
11     my %args  = @_;
12
13     $args{init_arg} = $args{name}
14         unless exists $args{init_arg};
15     $args{is} ||= '';
16
17     bless \%args, $class;
18 }
19
20 sub name            { $_[0]->{name}            }
21 sub class           { $_[0]->{class}           }
22 sub _is_metadata    { $_[0]->{is}              }
23 sub is_required     { $_[0]->{required}        }
24 sub default         { $_[0]->{default}         }
25 sub is_lazy         { $_[0]->{lazy}            }
26 sub predicate       { $_[0]->{predicate}       }
27 sub clearer         { $_[0]->{clearer}         }
28 sub handles         { $_[0]->{handles}         }
29 sub weak_ref        { $_[0]->{weak_ref}        }
30 sub init_arg        { $_[0]->{init_arg}        }
31 sub type_constraint { $_[0]->{type_constraint} }
32 sub trigger         { $_[0]->{trigger}         }
33 sub builder         { $_[0]->{builder}         }
34
35 sub has_default         { exists $_[0]->{default}         }
36 sub has_predicate       { exists $_[0]->{predicate}       }
37 sub has_clearer         { exists $_[0]->{clearer}         }
38 sub has_handles         { exists $_[0]->{handles}         }
39 sub has_type_constraint { exists $_[0]->{type_constraint} }
40 sub has_trigger         { exists $_[0]->{trigger}         }
41 sub has_builder         { exists $_[0]->{builder}         }
42
43 sub generate_accessor {
44     my $attribute = shift;
45
46     my $name       = $attribute->name;
47     my $key        = $attribute->init_arg;
48     my $default    = $attribute->default;
49     my $trigger    = $attribute->trigger;
50     my $type       = $attribute->type_constraint;
51     my $constraint = $attribute->find_type_constraint;
52
53     my $accessor = 'sub {
54         my $self = shift;';
55
56     if ($attribute->_is_metadata eq 'rw') {
57         $accessor .= 'if (@_) {
58             local $_ = $_[0];';
59
60         if ($constraint) {
61             $accessor .= 'do {
62                 my $display = defined($_) ? $_ : "undef";
63                 Carp::confess("Attribute ($name) does not pass the type constraint because: Validation failed for \'$type\' failed with value $display") unless $constraint->();
64             };'
65         }
66
67         $accessor .= '$self->{$key} = $_;';
68
69         if ($attribute->weak_ref) {
70             $accessor .= 'Scalar::Util::weaken($self->{$key});';
71         }
72
73         if ($trigger) {
74             $accessor .= '$trigger->($self, $_, $attribute);';
75         }
76
77         $accessor .= '}';
78     }
79     else {
80     }
81
82     if ($attribute->is_lazy) {
83         $accessor .= '$self->{$key} = ';
84         $accessor .= ref($default) eq 'CODE'
85                    ? '$default->($self)'
86                    : '$default';
87         $accessor .= ' if !exists($self->{$key});';
88     }
89
90     $accessor .= 'return $self->{$key}
91     }';
92
93     return eval $accessor;
94 }
95
96 sub generate_predicate {
97     my $attribute = shift;
98     my $key = $attribute->init_arg;
99
100     my $predicate = 'sub { exists($_[0]->{$key}) }';
101
102     return eval $predicate;
103 }
104
105 sub generate_clearer {
106     my $attribute = shift;
107     my $key = $attribute->init_arg;
108
109     my $predicate = 'sub { delete($_[0]->{$key}) }';
110
111     return eval $predicate;
112 }
113
114 sub generate_handles {
115     my $attribute = shift;
116     my $reader = $attribute->name;
117
118     my %method_map;
119
120     for my $local_method (keys %{ $attribute->handles }) {
121         my $remote_method = $attribute->handles->{$local_method};
122
123         my $method = 'sub {
124             my $self = shift;
125             $self->$reader->$remote_method(@_)
126         }';
127
128         $method_map{$local_method} = eval $method;
129     }
130
131     return \%method_map;
132 }
133
134 sub create {
135     my ($self, $class, $name, %args) = @_;
136
137     confess "You must specify a default for lazy attribute '$name'"
138         if $args{lazy} && !exists($args{default});
139
140     confess "Trigger is not allowed on read-only attribute '$name'"
141         if $args{trigger} && $args{is} ne 'rw';
142
143     confess "References are not allowed as default values, you must wrap the default of '$name' in a CODE reference (ex: sub { [] } and not [])"
144         if ref($args{default})
145         && ref($args{default}) ne 'CODE';
146
147     $args{handles} = { $self->_canonicalize_handles($args{handles}) }
148         if $args{handles};
149
150     $args{type_constraint} = delete $args{isa}
151         if exists $args{isa};
152
153     my $attribute = $self->new(%args, name => $name, class => $class);
154     my $meta = $class->meta;
155
156     $meta->add_attribute($attribute);
157
158     # install an accessor
159     if ($attribute->_is_metadata eq 'rw' || $attribute->_is_metadata eq 'ro') {
160         my $accessor = $attribute->generate_accessor;
161         no strict 'refs';
162         *{ $class . '::' . $name } = $accessor;
163     }
164
165     for my $method (qw/predicate clearer/) {
166         my $predicate = "has_$method";
167         if ($attribute->$predicate) {
168             my $generator = "generate_$method";
169             my $coderef = $attribute->$generator;
170             no strict 'refs';
171             *{ $class . '::' . $attribute->$method } = $coderef;
172         }
173     }
174
175     if ($attribute->has_handles) {
176         my $method_map = $attribute->generate_handles;
177         for my $method_name (keys %$method_map) {
178             no strict 'refs';
179             *{ $class . '::' . $method_name } = $method_map->{$method_name};
180         }
181     }
182
183     return $attribute;
184 }
185
186 sub find_type_constraint {
187     my $self = shift;
188     my $type = $self->type_constraint;
189
190     return unless $type;
191
192     my $checker = Mouse::TypeRegistry->optimized_constraints->{$type};
193     return $checker if $checker;
194
195     return sub { blessed($_) && blessed($_) eq $type };
196 }
197
198 sub verify_type_constraint {
199     my $self = shift;
200     local $_ = shift;
201
202     my $type = $self->type_constraint
203         or return 1;
204     my $constraint = $self->find_type_constraint;
205
206     return 1 if $constraint->($_);
207
208     my $name = $self->name;
209     local $_ = "undef" unless defined($_);
210     Carp::confess("Attribute ($name) does not pass the type constraint because: Validation failed for \'$type\' failed with value $_");
211 }
212
213 sub _canonicalize_handles {
214     my $self    = shift;
215     my $handles = shift;
216
217     if (ref($handles) eq 'HASH') {
218         return %$handles;
219     }
220     elsif (ref($handles) eq 'ARRAY') {
221         return map { $_ => $_ } @$handles;
222     }
223     else {
224         confess "Unable to canonicalize the 'handles' option with $handles";
225     }
226 }
227
228 1;
229
230 __END__
231
232 =head1 NAME
233
234 Mouse::Attribute - attribute metaclass
235
236 =head1 METHODS
237
238 =head2 new %args -> Mouse::Attribute
239
240 Instantiates a new Mouse::Attribute. Does nothing else.
241
242 =head2 create OwnerClass, AttributeName, %args -> Mouse::Attribute
243
244 Creates a new attribute in OwnerClass. Accessors and helper methods are
245 installed. Some error checking is done.
246
247 =head2 name -> AttributeName
248
249 =head2 class -> OwnerClass
250
251 =head2 is_required -> Bool
252
253 =head2 default -> Item
254
255 =head2 has_default -> Bool
256
257 =head2 is_lazy -> Bool
258
259 =head2 predicate -> MethodName | Undef
260
261 =head2 has_predicate -> Bool
262
263 =head2 clearer -> MethodName | Undef
264
265 =head2 has_clearer -> Bool
266
267 =head2 handles -> { LocalName => RemoteName }
268
269 =head2 has_handles -> Bool
270
271 =head2 weak_ref -> Bool
272
273 =head2 init_arg -> Str
274
275 =head2 type_constraint -> Str
276
277 =head2 has_type_constraint -> Bool
278
279 =head2 trigger => CODE | Undef
280
281 =head2 has_trigger -> Bool
282
283 =head2 builder => MethodName | Undef
284
285 =head2 has_builder -> Bool
286
287 Informational methods.
288
289 =head2 generate_accessor -> CODE
290
291 Creates a new code reference for the attribute's accessor.
292
293 =head2 generate_predicate -> CODE
294
295 Creates a new code reference for the attribute's predicate.
296
297 =head2 generate_clearer -> CODE
298
299 Creates a new code reference for the attribute's clearer.
300
301 =head2 generate_handles -> { MethodName => CODE }
302
303 Creates a new code reference for each of the attribute's handles methods.
304
305 =cut
306