Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / lib / Mouse / Meta / TypeConstraint.pm
CommitLineData
684db121 1package Mouse::Meta::TypeConstraint;
bc69ee88 2use Mouse::Util qw(:meta); # enables strict and warnings
9c85e9dc 3
684db121 4sub new {
184f8f53 5 my $class = shift;
6 my %args = @_ == 1 ? %{$_[0]} : @_;
f5ee065f 7
8 $args{name} = '__ANON__' if !defined $args{name};
684db121 9
eed39dff 10 my $type_parameter;
11 if(defined $args{parent}) { # subtyping
5a592ad7 12 %args = (%{$args{parent}}, %args);
eed39dff 13
5a592ad7 14 # a child type must not inherit 'compiled_type_constraint'
15 # and 'hand_optimized_type_constraint' from the parent
eed39dff 16 delete $args{compiled_type_constraint}; # don't inherit it
17 delete $args{hand_optimized_type_constraint}; # don't inherit it
18
19 $type_parameter = $args{type_parameter};
7e030e45 20 if(defined(my $parent_tp = $args{parent}{type_parameter})) {
eed39dff 21 if($parent_tp != $type_parameter) {
22 $type_parameter->is_a_type_of($parent_tp)
23 or $class->throw_error(
24 "$type_parameter is not a subtype of $parent_tp",
25 );
26 }
eaa30ab8 27 else {
28 $type_parameter = undef;
29 }
7e030e45 30 }
5a592ad7 31 }
32
33 my $check;
3b89ea91 34
eed39dff 35 if($check = delete $args{optimized}) { # likely to be builtins
3b89ea91 36 $args{hand_optimized_type_constraint} = $check;
37 $args{compiled_type_constraint} = $check;
38 }
eed39dff 39 elsif(defined $type_parameter) { # parameterizing
5a592ad7 40 my $generator = $args{constraint_generator}
eed39dff 41 || $class->throw_error(
42 "The $args{name} constraint cannot be used,"
43 . " because $type_parameter doesn't subtype"
44 . " from a parameterizable type");
45
46 my $parameterized_check = $generator->($type_parameter);
47 if(defined(my $my_check = $args{constraint})) {
48 $check = sub {
49 return $parameterized_check->($_) && $my_check->($_);
50 };
51 }
52 else {
53 $check = $parameterized_check;
54 }
55 $args{constraint} = $check;
5a592ad7 56 }
eed39dff 57 else { # common cases
5a592ad7 58 $check = $args{constraint};
59 }
f5ee065f 60
f5ee065f 61 if(defined($check) && ref($check) ne 'CODE'){
3a29a080 62 $class->throw_error(
63 "Constraint for $args{name} is not a CODE reference");
f5ee065f 64 }
65
66 my $self = bless \%args, $class;
3a29a080 67 $self->compile_type_constraint()
5a592ad7 68 if !$args{hand_optimized_type_constraint};
f5ee065f 69
568f88f2 70 if($args{type_constraints}) { # union types
71 foreach my $type(@{$self->{type_constraints}}){
72 if($type->has_coercion){
73 # set undef for has_coercion()
74 $self->{_compiled_type_coercion} = undef;
75 last;
76 }
77 }
5a592ad7 78 }
568f88f2 79
f5ee065f 80 return $self;
81}
82
c5940bae 83sub create_child_type {
f5ee065f 84 my $self = shift;
c5940bae 85 return ref($self)->new(@_, parent => $self);
684db121 86}
87
4c99ea95 88sub name;
89sub parent;
90sub message;
91sub has_coercion;
2b82d75d 92
c7576321 93sub check;
94
2b82d75d 95sub type_parameter;
96sub __is_parameterized;
97
4c99ea95 98sub _compiled_type_constraint;
99sub _compiled_type_coercion;
100
101sub compile_type_constraint;
102
c7576321 103
3a29a080 104sub _add_type_coercions { # ($self, @pairs)
ffbbf459 105 my $self = shift;
106
4b58033d 107 if(exists $self->{type_constraints}){ # union type
108 $self->throw_error(
109 "Cannot add additional type coercions to Union types '$self'");
110 }
111
559f3533 112 my $coercion_map = ($self->{coercion_map} ||= []);
113 my %has = map{ $_->[0]->name => undef } @{$coercion_map};
ffbbf459 114
115 for(my $i = 0; $i < @_; $i++){
116 my $from = $_[ $i];
117 my $action = $_[++$i];
118
119 if(exists $has{$from}){
c7576321 120 $self->throw_error("A coercion action already exists for '$from'");
ffbbf459 121 }
122
123 my $type = Mouse::Util::TypeConstraints::find_or_parse_type_constraint($from)
3a29a080 124 or $self->throw_error(
125 "Could not find the type constraint ($from) to coerce from");
ffbbf459 126
559f3533 127 push @{$coercion_map}, [ $type => $action ];
ffbbf459 128 }
129
568f88f2 130 $self->{_compiled_type_coercion} = undef;
536e3c33 131 return;
132}
133
568f88f2 134sub _compiled_type_coercion {
536e3c33 135 my($self) = @_;
136
568f88f2 137 my $coercion = $self->{_compiled_type_coercion};
138 return $coercion if defined $coercion;
536e3c33 139
568f88f2 140 if(!$self->{type_constraints}) {
141 my @coercions;
142 foreach my $pair(@{$self->{coercion_map}}) {
143 push @coercions,
144 [ $pair->[0]->_compiled_type_constraint, $pair->[1] ];
536e3c33 145 }
568f88f2 146
147 $coercion = sub {
148 my($thing) = @_;
149 foreach my $pair (@coercions) {
150 #my ($constraint, $converter) = @$pair;
151 if ($pair->[0]->($thing)) {
152 local $_ = $thing;
153 return $pair->[1]->($thing);
154 }
155 }
156 return $thing;
157 };
536e3c33 158 }
568f88f2 159 else { # for union type
160 my @coercions;
161 foreach my $type(@{$self->{type_constraints}}){
162 if($type->has_coercion){
163 push @coercions, $type;
536e3c33 164 }
568f88f2 165 }
166 if(@coercions){
167 $coercion = sub {
168 my($thing) = @_;
169 foreach my $type(@coercions){
170 my $value = $type->coerce($thing);
171 return $value if $self->check($value);
172 }
173 return $thing;
174 };
175 }
ffbbf459 176 }
568f88f2 177
178 return( $self->{_compiled_type_coercion} = $coercion );
ffbbf459 179}
180
ffbbf459 181sub coerce {
182 my $self = shift;
c7576321 183 return $_[0] if $self->check(@_);
ffbbf459 184
568f88f2 185 my $coercion = $self->_compiled_type_coercion
4b58033d 186 or $self->throw_error("Cannot coerce without a type coercion");
de0d4152 187 return $coercion->(@_);
feb0e21b 188}
189
190sub get_message {
191 my ($self, $value) = @_;
192 if ( my $msg = $self->message ) {
193 local $_ = $value;
194 return $msg->($value);
195 }
196 else {
6e647cac 197 if(not defined $value) {
198 $value = 'undef';
199 }
200 elsif( ref($value) && defined(&overload::StrVal) ) {
201 $value = overload::StrVal($value);
202 }
537873b0 203 return "Validation failed for '$self' with value $value";
feb0e21b 204 }
205}
206
4b58033d 207sub is_a_type_of {
feb0e21b 208 my($self, $other) = @_;
209
210 # ->is_a_type_of('__ANON__') is always false
ca352580 211 return 0 if !ref($other) && $other eq '__ANON__';
feb0e21b 212
213 (my $other_name = $other) =~ s/\s+//g;
214
215 return 1 if $self->name eq $other_name;
216
217 if(exists $self->{type_constraints}){ # union
3a29a080 218 foreach my $type(@{$self->{type_constraints}}) {
feb0e21b 219 return 1 if $type->name eq $other_name;
220 }
221 }
222
3a29a080 223 for(my $p = $self->parent; defined $p; $p = $p->parent) {
224 return 1 if $p->name eq $other_name;
feb0e21b 225 }
226
227 return 0;
228}
229
b4d791ba 230# See also Moose::Meta::TypeConstraint::Parameterizable
7e030e45 231sub parameterize {
b4d791ba 232 my($self, $param, $name) = @_;
233
234 if(!ref $param){
235 require Mouse::Util::TypeConstraints;
236 $param = Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($param);
237 }
238
239 $name ||= sprintf '%s[%s]', $self->name, $param->name;
b4d791ba 240 return Mouse::Meta::TypeConstraint->new(
fc83f4cf 241 name => $name,
242 parent => $self,
243 type_parameter => $param,
b4d791ba 244 );
245}
feb0e21b 246
78508064 247sub assert_valid {
248 my ($self, $value) = @_;
249
c7576321 250 if(!$self->check($value)){
251 $self->throw_error($self->get_message($value));
78508064 252 }
253 return 1;
254}
255
22be7db2 256# overloading stuff
257
258sub _as_string { $_[0]->name } # overload ""
259sub _identity; # overload 0+
6e647cac 260
261sub _unite { # overload infix:<|>
262 my($lhs, $rhs) = @_;
263 require Mouse::Util::TypeConstraints;
f43060b6 264 return Mouse::Util::TypeConstraints::_find_or_create_union_type(
265 $lhs,
266 Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($rhs),
6e647cac 267 );
268}
269
684db121 2701;
271__END__
272
273=head1 NAME
274
1820fffe 275Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass
684db121 276
a25ca8d6 277=head1 VERSION
278
14cf9b5a 279This document describes Mouse version 0.95
a25ca8d6 280
684db121 281=head1 DESCRIPTION
282
3a29a080 283This class represents a type constraint, including built-in
284type constraints, union type constraints, parameterizable/
285parameterized type constraints, as well as custom type
286constraints
684db121 287
288=head1 METHODS
289
ba05bb84 290=over
3a29a080 291
292=item C<< Mouse::Meta::TypeConstraint->new(%options) >>
293
294=item C<< $constraint->name >>
295
296=item C<< $constraint->parent >>
297
298=item C<< $constraint->constraint >>
299
300=item C<< $constraint->has_coercion >>
301
302=item C<< $constraint->message >>
303
be06d3b0 304=item C<< $constraint->is_a_type_of($name or $object) >>
3a29a080 305
306=item C<< $constraint->coerce($value) >>
307
308=item C<< $constraint->check($value) >>
309
310=item C<< $constraint->assert_valid($value) >>
684db121 311
3a29a080 312=item C<< $constraint->get_message($value) >>
684db121 313
3a29a080 314=item C<< $constraint->create_child_type(%options) >>
684db121 315
316=back
317
1820fffe 318=head1 SEE ALSO
319
320L<Moose::Meta::TypeConstraint>
321
684db121 322=cut
323