X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FUtil%2FTypeConstraints.pm;h=bc3248940ad05438a666c5e0d18dd2a5b6c93214;hb=ef223decd6bf1150e5219d150911404a11df072d;hp=ac7a4d8e1fd5d8892c3de887a3e87874354a9a11;hpb=6a7756cc831fa21bc28b924a8edbaeeb28a4a66b;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index ac7a4d8..bc32489 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -4,8 +4,7 @@ use Mouse::Util; # enables strict and warnings use Mouse::Meta::TypeConstraint; use Mouse::Exporter; -use Carp (); -use Scalar::Util (); +use Carp (); Mouse::Exporter->setup_import_methods( as_is => [qw( @@ -186,7 +185,7 @@ sub subtype { sub coerce { # coerce $type, from $from, via { ... }, ... my $type_name = shift; my $type = find_type_constraint($type_name) - or Carp::croak("Cannot find type '$type_name', perhaps you forgot to load it."); + or Carp::croak("Cannot find type '$type_name', perhaps you forgot to load it"); $type->_add_type_coercions(@_); return; @@ -212,8 +211,7 @@ sub role_type { return subtype $name => ( as => 'Object', optimized_as => sub { - return Scalar::Util::blessed($_[0]) - && Mouse::Util::does_role($_[0], $role); + return Mouse::Util::does_role($_[0], $role); }, role => $role, ); @@ -383,39 +381,43 @@ sub register_type_constraint { my($constraint) = @_; Carp::croak("No type supplied / type is not a valid type constraint") unless Mouse::Util::is_a_type_constraint($constraint); - my $name = $constraint->name; - Carp::croak("Can't register an unnamed type constraint") - unless defined $name; - return $TYPE{$name} = $constraint; + return $TYPE{$constraint->name} = $constraint; } sub find_or_parse_type_constraint { my($spec) = @_; return $spec if Mouse::Util::is_a_type_constraint($spec) or not defined $spec; - $spec =~ s/\s+//g; - return $TYPE{$spec} || do{ - my $context = { - spec => $spec, - orig => $spec, - }; - my $type = _parse_type($context); + $spec =~ tr/ \t\r\n//d; - if($context->{spec}){ - Carp::croak("Syntax error: extra elements '$context->{spec}' in '$context->{orig}'"); - } - $type; - }; + my $tc = $TYPE{$spec}; + if(defined $tc) { + return $tc; + } + + my %context = ( + spec => $spec, + orig => $spec, + ); + $tc = _parse_type(\%context); + + if($context{spec}){ + Carp::croak("Syntax error: extra elements '$context{spec}' in '$context{orig}'"); + } + + return $TYPE{$spec} = $tc; } sub find_or_create_does_type_constraint{ # XXX: Moose does not register a new role_type, but Mouse does. - return find_or_parse_type_constraint(@_) || role_type(@_); + my $tc = find_or_parse_type_constraint(@_); + return defined($tc) ? $tc : role_type(@_); } sub find_or_create_isa_type_constraint { # XXX: Moose does not register a new class_type, but Mouse does. - return find_or_parse_type_constraint(@_) || class_type(@_); + my $tc = find_or_parse_type_constraint(@_); + return defined($tc) ? $tc : class_type(@_); } 1; @@ -427,7 +429,7 @@ Mouse::Util::TypeConstraints - Type constraint system for Mouse =head1 VERSION -This document describes Mouse version 0.78 +This document describes Mouse version 0.85 =head2 SYNOPSIS