X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FUtil%2FTypeConstraints.pm;h=c84c75cbd375cce7e43ae0b05992c92e55f69309;hb=4060c871da12ba3c5e88986ed121a8254f906bd6;hp=fb63f0ca91c1caedd5693070e34c2b8d99dba9c5;hpb=e98220ab1bfe3cafe6121d5c91c1547bd93199fb;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index fb63f0c..c84c75c 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -1,27 +1,23 @@ package Mouse::Util::TypeConstraints; -use strict; -use warnings; - -use Exporter; +use Mouse::Util qw(does_role not_supported); # enables strict and warnings use Carp qw(confess); use Scalar::Util qw/blessed looks_like_number openhandle/; -use Mouse::Util qw(does_role not_supported); -use Mouse::Meta::Module; # class_of use Mouse::Meta::TypeConstraint; +use Mouse::Exporter; -use constant _DEBUG => !!$ENV{TC_DEBUG}; +Mouse::Exporter->setup_import_methods( + as_is => [qw( + as where message from via + type subtype coerce class_type role_type enum + find_type_constraint + )], -our @ISA = qw(Exporter); -our @EXPORT = qw( - as where message from via type subtype coerce class_type role_type enum - find_type_constraint + _export_to_main => 1, ); my %TYPE; -my %COERCE; -my %COERCE_KEYS; sub as ($) { return(as => $_[0]); @@ -72,13 +68,12 @@ BEGIN { while (my ($name, $code) = each %builtins) { $TYPE{$name} = Mouse::Meta::TypeConstraint->new( - name => $name, - _compiled_type_constraint => $code, - package_defined_in => __PACKAGE__, + name => $name, + optimized => $code, ); } - sub optimized_constraints { + sub optimized_constraints { # DEPRECATED Carp::cluck('optimized_constraints() has been deprecated'); return \%TYPE; } @@ -125,17 +120,15 @@ sub _create_type{ . "$existing->{package_defined_in} and cannot be created again in $package_defined_in"); } - $args{constraint} = delete($args{where}) - if exists $args{where}; - $args{_compiled_type_constraint} = delete $args{optimized_as} - if exists $args{optimized_as}; + $args{constraint} = delete($args{where}) if exists $args{where}; + $args{optimized} = delete $args{optimized_as} if exists $args{optimized_as}; my $constraint; if($mode eq 'subtype'){ - my $parent = exists($args{as}) ? delete($args{as}) : delete($args{name}); + my $parent = delete($args{as}) + or confess('A subtype cannot consist solely of a name, it must have a parent'); - $parent = find_or_create_isa_type_constraint($parent); - $constraint = $parent->create_child_type(%args); + $constraint = find_or_create_isa_type_constraint($parent)->create_child_type(%args); } else{ $constraint = Mouse::Meta::TypeConstraint->new(%args); @@ -153,35 +146,12 @@ sub subtype { } sub coerce { - my $name = shift; - - $name =~ s/\s+//g; - confess "Cannot find type '$name', perhaps you forgot to load it." - unless $TYPE{$name}; - - unless ($COERCE{$name}) { - $COERCE{$name} = {}; - $COERCE_KEYS{$name} = []; - } + my $type_name = shift; - my $package_defined_in = caller; - - while (my($from, $action) = splice @_, 0, 2) { - $from =~ s/\s+//g; - - confess "A coercion action already exists for '$from'" - if $COERCE{$name}->{$from}; - - my $type = find_or_parse_type_constraint($from, $package_defined_in); - if (!$type) { - confess "Could not find the type constraint ($from) to coerce from" - } + my $type = find_type_constraint($type_name) + or confess("Cannot find type '$type_name', perhaps you forgot to load it."); - warn "# REGISTER COERCE $name, from $type\n" if _DEBUG; - - push @{ $COERCE_KEYS{$name} }, $type; - $COERCE{$name}->{$from} = $action; - } + $type->_add_type_coercions(@_); return; } @@ -215,37 +185,13 @@ sub role_type { ); } -# this is an original method for Mouse -sub typecast_constraints { - my($class, $pkg, $types, $value) = @_; +sub typecast_constraints { # DEPRECATED + my($class, $pkg, $type, $value) = @_; Carp::croak("wrong arguments count") unless @_ == 4; - local $_; - for my $type ($types->{type_constraints} ? @{$types->{type_constraints}} : $types ) { - for my $coerce_type (@{ $COERCE_KEYS{$type}}) { - - if(_DEBUG){ - warn sprintf "# COERCE: from %s to %s for %s (%s)\n", - $coerce_type, $type, defined($value) ? "'$value'" : 'undef', - $coerce_type->check($value) ? "try" : "skip"; - } + Carp::cluck("typecast_constraints() has been deprecated, which was an internal utility anyway"); - next if !$coerce_type->check($value); - - # try to coerce - $_ = $value; - my $coerced = $COERCE{$type}->{$coerce_type}->($value); # coerce - - if(_DEBUG){ - warn sprintf "# COERCE: got %s, which is%s %s\n", - defined($coerced) ? $coerced : 'undef', $types->check($coerced) ? '' : ' not', $types; - } - - # check with $types, not $constraint - return $coerced if $types->check($coerced); - } - } - return $value; # returns original $value + return $type->coerce($value); } sub enum { @@ -273,7 +219,7 @@ sub _find_or_create_regular_type{ return $TYPE{$spec} if exists $TYPE{$spec}; - my $meta = Mouse::Meta::Module::class_of($spec); + my $meta = Mouse::Util::get_metaclass_by_name($spec); if(!$meta){ return; @@ -281,7 +227,7 @@ sub _find_or_create_regular_type{ my $check; my $type; - if($meta && $meta->isa('Mouse::Meta::Role')){ + if($meta->isa('Mouse::Meta::Role')){ $check = sub{ return blessed($_[0]) && $_[0]->does($spec); }; @@ -294,19 +240,17 @@ sub _find_or_create_regular_type{ $type = 'Class'; } - warn "#CREATE a $type type for $spec\n" if _DEBUG; - return $TYPE{$spec} = Mouse::Meta::TypeConstraint->new( - name => $spec, - _compiled_type_constraint => $check, + name => $spec, + optimized => $check, - type => $type, + type => $type, ); } $TYPE{ArrayRef}{constraint_generator} = sub { my($type_parameter) = @_; - my $check = $type_parameter->{_compiled_type_constraint}; + my $check = $type_parameter->_compiled_type_constraint; return sub{ foreach my $value (@{$_}) { @@ -317,7 +261,7 @@ $TYPE{ArrayRef}{constraint_generator} = sub { }; $TYPE{HashRef}{constraint_generator} = sub { my($type_parameter) = @_; - my $check = $type_parameter->{_compiled_type_constraint}; + my $check = $type_parameter->_compiled_type_constraint; return sub{ foreach my $value(values %{$_}){ @@ -330,7 +274,7 @@ $TYPE{HashRef}{constraint_generator} = sub { # 'Maybe' type accepts 'Any', so it requires parameters $TYPE{Maybe}{constraint_generator} = sub { my($type_parameter) = @_; - my $check = $type_parameter->{_compiled_type_constraint}; + my $check = $type_parameter->_compiled_type_constraint; return sub{ return !defined($_) || $check->($_); @@ -343,8 +287,6 @@ sub _find_or_create_parameterized_type{ my $name = sprintf '%s[%s]', $base->name, $param->name; $TYPE{$name} ||= do{ - warn "#CREATE a Parameterized type for $name\n" if _DEBUG; - my $generator = $base->{constraint_generator}; if(!$generator){ @@ -361,27 +303,16 @@ sub _find_or_create_parameterized_type{ } } sub _find_or_create_union_type{ - my @types = map{ $_->{type_constraints} ? @{$_->{type_constraints}} : $_ } @_; + my @types = sort{ $a cmp $b } map{ $_->{type_constraints} ? @{$_->{type_constraints}} : $_ } @_; - my $name = join '|', map{ $_->name } @types; + my $name = join '|', @types; $TYPE{$name} ||= do{ - warn "# CREATE a Union type for ", Mouse::Util::english_list(@types),"\n" if _DEBUG; - - my @checks = map{ $_->{_compiled_type_constraint} } @types; - my $check = sub{ - foreach my $c(@checks){ - return 1 if $c->($_[0]); - } - return 0; - }; - return Mouse::Meta::TypeConstraint->new( - name => $name, - _compiled_type_constraint => $check, - type_constraints => \@types, + name => $name, + type_constraints => \@types, - type => 'Union', + type => 'Union', ); }; } @@ -400,7 +331,7 @@ sub _parse_type{ my $char = substr($spec, $i, 1); if($char eq '['){ - my $base = _find_or_create_regular_type( substr($spec, $start, $i - $start)) + my $base = _find_or_create_regular_type( substr($spec, $start, $i - $start) ) or return; ($i, $subtype) = _parse_type($spec, $i+1) @@ -414,8 +345,12 @@ sub _parse_type{ last; } elsif($char eq '|'){ - my $type = _find_or_create_regular_type( substr($spec, $start, $i - $start)) - or return; + my $type = _find_or_create_regular_type( substr($spec, $start, $i - $start) ); + + if(!defined $type){ + # XXX: Mouse creates a new class type, but Moose does not. + $type = class_type( substr($spec, $start, $i - $start) ); + } push @list, $type; @@ -463,7 +398,7 @@ sub find_or_parse_type_constraint { } sub find_or_create_does_type_constraint{ - my $type = find_or_parse_type_constriant(@_) || role_type(@_); + my $type = find_or_parse_type_constraint(@_) || role_type(@_); if($type->{type} && $type->{type} ne 'Role'){ Carp::cluck("$type is not a role type"); @@ -642,9 +577,13 @@ related C function. =head1 METHODS -=head2 optimized_constraints -> HashRef[CODE] +=head2 C<< list_all_builtin_type_constraints -> (Names) >> + +Returns the names of builtin type constraints. + +=head2 C<< list_all_type_constraints -> (Names) >> -Returns the simple type constraints that Mouse understands. +Returns the names of all the type constraints. =head1 FUNCTIONS