X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FTypeConstraint.pm;h=48ec84408f2929698ae215c656e258b61d81b18d;hb=fd2b172a4657cb6cc47976d2e66cdba4bdfa579d;hp=c73fa892dc5c961a4bfcb0b5de22d84d30c35da5;hpb=559f35335d5ddba6baeff5a8a50c0d67a3297c87;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/TypeConstraint.pm b/lib/Mouse/Meta/TypeConstraint.pm index c73fa89..48ec844 100644 --- a/lib/Mouse/Meta/TypeConstraint.pm +++ b/lib/Mouse/Meta/TypeConstraint.pm @@ -67,9 +67,16 @@ sub new { $self->compile_type_constraint() if !$args{hand_optimized_type_constraint}; - if($args{type_constraints}) { - $self->_compile_union_type_coercion(); + if($args{type_constraints}) { # union types + foreach my $type(@{$self->{type_constraints}}){ + if($type->has_coercion){ + # set undef for has_coercion() + $self->{_compiled_type_coercion} = undef; + last; + } + } } + return $self; } @@ -120,60 +127,62 @@ sub _add_type_coercions { # ($self, @pairs) push @{$coercion_map}, [ $type => $action ]; } - $self->_compile_type_coercion(); + $self->{_compiled_type_coercion} = undef; return; } -sub _compile_type_coercion { +sub _compiled_type_coercion { my($self) = @_; - my @coercions; - - foreach my $pair(@{$self->{coercion_map}}) { - push @coercions, [ $pair->[0]->_compiled_type_constraint, $pair->[1] ]; - } - - $self->{_compiled_type_coercion} = sub { - my($thing) = @_; - foreach my $pair (@coercions) { - #my ($constraint, $converter) = @$pair; - if ($pair->[0]->($thing)) { - local $_ = $thing; - return $pair->[1]->($thing); - } - } - return $thing; - }; - return; -} + my $coercion = $self->{_compiled_type_coercion}; + return $coercion if defined $coercion; -sub _compile_union_type_coercion { - my($self) = @_; - - my @coercions; - foreach my $type(@{$self->{type_constraints}}){ - if($type->has_coercion){ - push @coercions, $type; + if(!$self->{type_constraints}) { + my @coercions; + foreach my $pair(@{$self->{coercion_map}}) { + push @coercions, + [ $pair->[0]->_compiled_type_constraint, $pair->[1] ]; } + + $coercion = sub { + my($thing) = @_; + foreach my $pair (@coercions) { + #my ($constraint, $converter) = @$pair; + if ($pair->[0]->($thing)) { + local $_ = $thing; + return $pair->[1]->($thing); + } + } + return $thing; + }; } - if(@coercions){ - $self->{_compiled_type_coercion} = sub { - my($thing) = @_; - foreach my $type(@coercions){ - my $value = $type->coerce($thing); - return $value if $self->check($value); + else { # for union type + my @coercions; + foreach my $type(@{$self->{type_constraints}}){ + if($type->has_coercion){ + push @coercions, $type; } - return $thing; - }; + } + if(@coercions){ + $coercion = sub { + my($thing) = @_; + foreach my $type(@coercions){ + my $value = $type->coerce($thing); + return $value if $self->check($value); + } + return $thing; + }; + } } - return; + + return( $self->{_compiled_type_coercion} = $coercion ); } sub coerce { my $self = shift; return $_[0] if $self->check(@_); - my $coercion = $self->{_compiled_type_coercion} + my $coercion = $self->_compiled_type_coercion or $self->throw_error("Cannot coerce without a type coercion"); return $coercion->(@_); } @@ -252,8 +261,9 @@ sub _identity; # overload 0+ sub _unite { # overload infix:<|> my($lhs, $rhs) = @_; require Mouse::Util::TypeConstraints; - return Mouse::Util::TypeConstraints::find_or_parse_type_constraint( - " $lhs | $rhs", + return Mouse::Util::TypeConstraints::_find_or_create_union_type( + $lhs, + Mouse::Util::TypeConstraints::find_or_create_isa_type_constraint($rhs), ); } @@ -266,7 +276,7 @@ Mouse::Meta::TypeConstraint - The Mouse Type Constraint metaclass =head1 VERSION -This document describes Mouse version 0.86 +This document describes Mouse version 0.87 =head1 DESCRIPTION