X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FUtil%2FTypeConstraints.pm;h=9658ca5b76a8bf9a7ddcd896ed86de0fb72c2ed5;hp=dc569a9b7321469a9329b3c8ffe625270b803ed5;hb=619338ac4245c7c523d67645d6cd51cb982d4841;hpb=ccf442276cab228f5346a4ba2aa90268941a0ecf diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index dc569a9..9658ca5 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -1,319 +1,345 @@ package Mouse::Util::TypeConstraints; -use strict; -use warnings; -use base 'Exporter'; +use Mouse::Util qw(does_role not_supported); # enables strict and warnings -use Carp (); -use Scalar::Util qw/blessed looks_like_number openhandle/; +use Carp qw(confess); +use Scalar::Util (); -our @EXPORT = qw( - as where message from via type subtype coerce class_type role_type enum - find_type_constraint +use Mouse::Meta::TypeConstraint; +use Mouse::Exporter; + +Mouse::Exporter->setup_import_methods( + as_is => [qw( + as where message optimize_as + from via + type subtype coerce class_type role_type enum + find_type_constraint + )], ); my %TYPE; -my %TYPE_SOURCE; -my %COERCE; -my %COERCE_KEYS; -sub as ($) { - as => $_[0] -} -sub where (&) { - where => $_[0] -} -sub message (&) { - message => $_[0] -} +sub as ($) { (as => $_[0]) } +sub where (&) { (where => $_[0]) } +sub message (&) { (message => $_[0]) } +sub optimize_as (&) { (optimize_as => $_[0]) } -sub from { @_ } -sub via (&) { - $_[0] -} +sub from { @_ } +sub via (&) { $_[0] } BEGIN { - no warnings 'uninitialized'; - %TYPE = ( - Any => sub { 1 }, - Item => sub { 1 }, - Bool => sub { - !defined($_[0]) || $_[0] eq "" || "$_[0]" eq '1' || "$_[0]" eq '0' - }, - Undef => sub { !defined($_[0]) }, - Defined => sub { defined($_[0]) }, - Value => sub { defined($_[0]) && !ref($_[0]) }, - Num => sub { !ref($_[0]) && looks_like_number($_[0]) }, - Int => sub { defined($_[0]) && !ref($_[0]) && $_[0] =~ /^-?[0-9]+$/ }, - Str => sub { defined($_[0]) && !ref($_[0]) }, - ClassName => sub { Mouse::is_class_loaded($_[0]) }, - Ref => sub { ref($_[0]) }, - - ScalarRef => sub { ref($_[0]) eq 'SCALAR' }, - ArrayRef => sub { ref($_[0]) eq 'ARRAY' }, - HashRef => sub { ref($_[0]) eq 'HASH' }, - CodeRef => sub { ref($_[0]) eq 'CODE' }, - RegexpRef => sub { ref($_[0]) eq 'Regexp' }, - GlobRef => sub { ref($_[0]) eq 'GLOB' }, - - FileHandle => sub { - ref($_[0]) eq 'GLOB' && openhandle($_[0]) - or - blessed($_[0]) && $_[0]->isa("IO::Handle") - }, - - Object => sub { blessed($_[0]) && blessed($_[0]) ne 'Regexp' }, + my %builtins = ( + Any => undef, # null check + Item => undef, # null check + Maybe => undef, # null check + + Bool => \&Bool, + Undef => \&Undef, + Defined => \&Defined, + Value => \&Value, + Num => \&Num, + Int => \&Int, + Str => \&Str, + Ref => \&Ref, + + ScalarRef => \&ScalarRef, + ArrayRef => \&ArrayRef, + HashRef => \&HashRef, + CodeRef => \&CodeRef, + RegexpRef => \&RegexpRef, + GlobRef => \&GlobRef, + + FileHandle => \&FileHandle, + + Object => \&Object, + + ClassName => \&ClassName, + RoleName => \&RoleName, ); - foreach my $code (values %TYPE) { - bless $code, 'Mouse::Meta::TypeConstraint'; + + while (my ($name, $code) = each %builtins) { + $TYPE{$name} = Mouse::Meta::TypeConstraint->new( + name => $name, + optimized => $code, + ); } - sub optimized_constraints { \%TYPE } - my @TYPE_KEYS = keys %TYPE; - sub list_all_builtin_type_constraints { @TYPE_KEYS } + sub optimized_constraints { # DEPRECATED + Carp::cluck('optimized_constraints() has been deprecated'); + return \%TYPE; + } - @TYPE_SOURCE{@TYPE_KEYS} = (__PACKAGE__) x @TYPE_KEYS; + my @builtins = keys %TYPE; + sub list_all_builtin_type_constraints { @builtins } + + sub list_all_type_constraints { keys %TYPE } } -sub type { - my $pkg = caller(0); - my($name, %conf) = @_; - if ($TYPE{$name} && $TYPE_SOURCE{$name} ne $pkg) { - Carp::croak "The type constraint '$name' has already been created in $TYPE_SOURCE{$name} and cannot be created again in $pkg"; - }; - my $constraint = $conf{where} || do { - my $as = delete $conf{as} || 'Any'; - if (! exists $TYPE{$as}) { - $TYPE{$as} = _build_type_constraint($as); +sub _create_type{ + my $mode = shift; + + my $name; + my %args; + + if(@_ == 1 && ref $_[0]){ # @_ : { name => $name, where => ... } + %args = %{$_[0]}; + } + elsif(@_ == 2 && ref $_[1]){ # @_ : $name => { where => ... } + $name = $_[0]; + %args = %{$_[1]}; + } + elsif(@_ % 2){ # @_ : $name => ( where => ... ) + ($name, %args) = @_; + } + else{ # @_ : (name => $name, where => ...) + %args = @_; + } + + if(!defined $name){ + if(!defined($name = $args{name})){ + $name = '__ANON__'; } - $TYPE{$as}; - }; + } + + $args{name} = $name; + my $parent; + if($mode eq 'subtype'){ + $parent = delete $args{as}; + if(!$parent){ + $parent = delete $args{name}; + $name = '__ANON__'; + } + } + + my $package_defined_in = $args{package_defined_in} ||= caller(1); + + my $existing = $TYPE{$name}; + if($existing && $existing->{package_defined_in} ne $package_defined_in){ + confess("The type constraint '$name' has already been created in " + . "$existing->{package_defined_in} and cannot be created again in $package_defined_in"); + } + + $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'){ + $constraint = find_or_create_isa_type_constraint($parent)->create_child_type(%args); + } + else{ + $constraint = Mouse::Meta::TypeConstraint->new(%args); + } - $TYPE_SOURCE{$name} = $pkg; - $TYPE{$name} = sub { local $_ = $_[0]; $constraint->($_[0]) }; + return $TYPE{$name} = $constraint; } -sub subtype { - my $pkg = caller(0); - my($name, %conf) = @_; - if ($TYPE{$name} && $TYPE_SOURCE{$name} ne $pkg) { - Carp::croak "The type constraint '$name' has already been created in $TYPE_SOURCE{$name} and cannot be created again in $pkg"; - }; - my $constraint = $conf{where}; - my $as_constraint = find_or_create_isa_type_constraint($conf{as} || 'Any'); - - $TYPE_SOURCE{$name} = $pkg; - $TYPE{$name} = $constraint ? - sub { - local $_ = $_[0]; - $as_constraint->($_[0]) && $constraint->($_[0]) - } : - sub { - local $_ = $_[0]; - $as_constraint->($_[0]); - } - ; +sub type { + return _create_type('type', @_); +} - return $name; +sub subtype { + return _create_type('subtype', @_); } sub coerce { - my($name, %conf) = @_; - - Carp::croak "Cannot find type '$name', perhaps you forgot to load it." - unless $TYPE{$name}; + my $type_name = shift; - unless ($COERCE{$name}) { - $COERCE{$name} = {}; - $COERCE_KEYS{$name} = []; - } - while (my($type, $code) = each %conf) { - Carp::croak "A coercion action already exists for '$type'" - if $COERCE{$name}->{$type}; - - if (! $TYPE{$type}) { - # looks parameterized - if ($type =~ /^[^\[]+\[.+\]$/) { - _build_type_constraint($type); - } else { - Carp::croak "Could not find the type constraint ($type) to coerce from" - } - } + my $type = find_type_constraint($type_name) + or confess("Cannot find type '$type_name', perhaps you forgot to load it."); - push @{ $COERCE_KEYS{$name} }, $type; - $COERCE{$name}->{$type} = $code; - } + $type->_add_type_coercions(@_); + return; } sub class_type { - my($name, $conf) = @_; - if ($conf && $conf->{class}) { - # No, you're using this wrong - warn "class_type() should be class_type(ClassName). Perhaps you're looking for subtype $name => as '$conf->{class}'?"; - subtype($name, as => $conf->{class}); - } else { - subtype( - $name => where => sub { $_->isa($name) } - ); - } + my($name, $options) = @_; + my $class = $options->{class} || $name; + return _create_type 'subtype', $name => ( + as => 'Object', + optimized_as => Mouse::Util::generate_isa_predicate_for($class), + + type => 'Class', + ); } sub role_type { - my($name, $conf) = @_; - my $role = $conf->{role}; - subtype( - $name => where => sub { - return unless defined $_ && ref($_) && $_->isa('Mouse::Object'); - $_->meta->does_role($role); - } + my($name, $options) = @_; + my $role = $options->{role} || $name; + return _create_type 'subtype', $name => ( + as => 'Object', + optimized_as => sub { Scalar::Util::blessed($_[0]) && does_role($_[0], $role) }, + + type => 'Role', ); } -sub typecast_constraints { - my($class, $pkg, $type_constraint, $types, $value) = @_; - - local $_; - for my $type (ref($types) eq 'ARRAY' ? @{ $types } : ( $types )) { - next unless $COERCE{$type}; - for my $coerce_type (@{ $COERCE_KEYS{$type}}) { - $_ = $value; - next unless $TYPE{$coerce_type}->($value); - $_ = $value; - $_ = $COERCE{$type}->{$coerce_type}->($value); - return $_ if $type_constraint->($_); - } - } - return $value; +sub typecast_constraints { # DEPRECATED + my($class, $pkg, $type, $value) = @_; + Carp::croak("wrong arguments count") unless @_ == 4; + + Carp::cluck("typecast_constraints() has been deprecated, which was an internal utility anyway"); + + return $type->coerce($value); } -my $serial_enum = 0; sub enum { + my($name, %valid); + # enum ['small', 'medium', 'large'] if (ref($_[0]) eq 'ARRAY') { - my @elements = @{ shift @_ }; + %valid = map{ $_ => undef } @{ $_[0] }; + $name = sprintf '(%s)', join '|', sort @{$_[0]}; + } + # enum size => 'small', 'medium', 'large' + else{ + $name = shift; + %valid = map{ $_ => undef } @_; + } + return _create_type 'type', $name => ( + optimized_as => sub{ defined($_[0]) && !ref($_[0]) && exists $valid{$_[0]} }, - my $name = 'Mouse::Util::TypeConstaints::Enum::Serial::' - . ++$serial_enum; - enum($name, @elements); - return $name; + type => 'Enum', + ); +} + +sub _find_or_create_regular_type{ + my($spec) = @_; + + return $TYPE{$spec} if exists $TYPE{$spec}; + + my $meta = Mouse::Util::get_metaclass_by_name($spec) + or return undef; + + if(Mouse::Util::is_a_metarole($meta)){ + return role_type($spec); } + else{ + return class_type($spec); + } +} - # enum size => 'small', 'medium', 'large' - my $name = shift; - my %is_valid = map { $_ => 1 } @_; +$TYPE{ArrayRef}{constraint_generator} = \&_parameterize_ArrayRef_for; +$TYPE{HashRef}{constraint_generator} = \&_parameterize_HashRef_for; +$TYPE{Maybe}{constraint_generator} = \&_parameterize_Maybe_for; + +sub _find_or_create_parameterized_type{ + my($base, $param) = @_; - subtype( - $name => where => sub { $is_valid{$_} } + my $name = sprintf '%s[%s]', $base->name, $param->name; + + $TYPE{$name} ||= $base->parameterize($param, $name); +} + +sub _find_or_create_union_type{ + my @types = sort map{ $_->{type_constraints} ? @{$_->{type_constraints}} : $_ } @_; + + my $name = join '|', @types; + + $TYPE{$name} ||= Mouse::Meta::TypeConstraint->new( + name => $name, + type_constraints => \@types, + + type => 'Union', ); } -sub _build_type_constraint { - - my $spec = shift; - my $code; - if ($spec =~ /^([^\[]+)\[(.+)\]$/) { - # parameterized - my $constraint = $1; - my $param = $2; - my $parent; - if ($constraint eq 'Maybe') { - $parent = _build_type_constraint('Undef'); - } else { - $parent = _build_type_constraint($constraint); +# The type parser +sub _parse_type{ + my($spec, $start) = @_; + + my @list; + my $subtype; + + my $len = length $spec; + my $i; + + for($i = $start; $i < $len; $i++){ + my $char = substr($spec, $i, 1); + + if($char eq '['){ + my $base = _find_or_create_regular_type( substr($spec, $start, $i - $start) ) + or return; + + ($i, $subtype) = _parse_type($spec, $i+1) + or return; + $start = $i+1; # reset + + push @list, _find_or_create_parameterized_type($base => $subtype); } - my $child = _build_type_constraint($param); - if ($constraint eq 'ArrayRef') { - my $code_str = - "#line " . __LINE__ . ' "' . __FILE__ . "\"\n" . - "sub {\n" . - " if (\$parent->(\$_[0])) {\n" . - " foreach my \$e (\@{\$_[0]}) {\n" . - " return () unless \$child->(\$e);\n" . - " }\n" . - " return 1;\n" . - " }\n" . - " return ();\n" . - "};\n" - ; - $code = eval $code_str or Carp::confess("Failed to generate inline type constraint: $@"); - } elsif ($constraint eq 'HashRef') { - my $code_str = - "#line " . __LINE__ . ' "' . __FILE__ . "\"\n" . - "sub {\n" . - " if (\$parent->(\$_[0])) {\n" . - " foreach my \$e (values \%{\$_[0]}) {\n" . - " return () unless \$child->(\$e);\n" . - " }\n" . - " return 1;\n" . - " }\n" . - " return ();\n" . - "};\n" - ; - $code = eval $code_str or Carp::confess($@); - } elsif ($constraint eq 'Maybe') { - my $code_str = - "#line " . __LINE__ . ' "' . __FILE__ . "\"\n" . - "sub {\n" . - " return \$child->(\$_[0]) || \$parent->(\$_[0]);\n" . - "};\n" - ; - $code = eval $code_str or Carp::confess($@); - } else { - Carp::confess("Support for parameterized types other than ArrayRef or HashRef is not implemented yet"); + elsif($char eq ']'){ + $len = $i+1; + last; } - $TYPE{$spec} = $code; - } else { - $code = $TYPE{ $spec }; - if (! $code) { - my $code_str = - "#line " . __LINE__ . ' "' . __FILE__ . "\"\n" . - "sub {\n" . - " Scalar::Util::blessed(\$_[0]) && \$_[0]->isa('$spec');\n" . - "}" - ; - $code = eval $code_str or Carp::confess($@); - $TYPE{$spec} = bless $code, 'Mouse::Meta::TypeConstraint'; + elsif($char eq '|'){ + 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; + + ($i, $subtype) = _parse_type($spec, $i+1) + or return; + + $start = $i+1; # reset + + push @list, $subtype; } } - return bless $code, 'Mouse::Meta::TypeConstraint'; + if($i - $start){ + my $type = _find_or_create_regular_type( substr $spec, $start, $i - $start ); + + if(defined $type){ + push @list, $type; + } + elsif($start != 0) { + # RT #50421 + # create a new class type + push @list, class_type( substr $spec, $start, $i - $start ); + } + } + + if(@list == 0){ + return; + } + elsif(@list == 1){ + return ($len, $list[0]); + } + else{ + return ($len, _find_or_create_union_type(@list)); + } } + sub find_type_constraint { - my $type_constraint = shift; - return $TYPE{$type_constraint}; -} + my($spec) = @_; + return $spec if Mouse::Util::is_a_type_constraint($spec); -sub find_or_create_isa_type_constraint { - my $type_constraint = shift; - - my $code; - - $type_constraint =~ s/\s+//g; - my @type_constraints = split /\|/, $type_constraint; - if (@type_constraints == 1) { - $code = $TYPE{$type_constraints[0]} || - _build_type_constraint($type_constraints[0]); - } else { - my @code_list = map { - $TYPE{$_} || _build_type_constraint($_) - } @type_constraints; - $code = bless sub { - my $i = 0; - for my $code (@code_list) { - return 1 if $code->($_[0]); - } - return 0; - }, 'Mouse::Meta::TypeConstraint'; - } - return $code; + $spec =~ s/\s+//g; + return $TYPE{$spec}; } -package # Hide from pause - Mouse::Meta::TypeConstraint; +sub find_or_parse_type_constraint { + my($spec) = @_; + return $spec if Mouse::Util::is_a_type_constraint($spec); -sub check { - $_[0]->($_[1]) + $spec =~ s/\s+//g; + return $TYPE{$spec} || do{ + my($pos, $type) = _parse_type($spec, 0); + $type; + }; } +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(@_); +} + +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(@_); +} 1; @@ -321,30 +347,209 @@ __END__ =head1 NAME -Mouse::Util::TypeConstraints - simple type constraints +Mouse::Util::TypeConstraints - Type constraint system for Mouse + +=head1 VERSION + +This document describes Mouse version 0.40_03 + +=head2 SYNOPSIS + + use Mouse::Util::TypeConstraints; + + subtype 'Natural' + => as 'Int' + => where { $_ > 0 }; + + subtype 'NaturalLessThanTen' + => as 'Natural' + => where { $_ < 10 } + => message { "This number ($_) is not less than ten!" }; + + coerce 'Num' + => from 'Str' + => via { 0+$_ }; + + enum 'RGBColors' => qw(red green blue); + + no Mouse::Util::TypeConstraints; + +=head1 DESCRIPTION + +This module provides Mouse with the ability to create custom type +constraints to be used in attribute definition. + +=head2 Important Caveat + +This is B a type system for Perl 5. These are type constraints, +and they are not used by Mouse unless you tell it to. No type +inference is performed, expressions are not typed, etc. etc. etc. + +A type constraint is at heart a small "check if a value is valid" +function. A constraint can be associated with an attribute. This +simplifies parameter validation, and makes your code clearer to read, +because you can refer to constraints by name. + +=head2 Slightly Less Important Caveat + +It is B a good idea to quote your type names. + +This prevents Perl from trying to execute the call as an indirect +object call. This can be an issue when you have a subtype with the +same name as a valid class. + +For instance: + + subtype DateTime => as Object => where { $_->isa('DateTime') }; + +will I, while this: + + use DateTime; + subtype DateTime => as Object => where { $_->isa('DateTime') }; + +will fail silently and cause many headaches. The simple way to solve +this, as well as future proof your subtypes from classes which have +yet to have been created, is to quote the type name: + + use DateTime; + subtype 'DateTime' => as 'Object' => where { $_->isa('DateTime') }; + +=head2 Default Type Constraints + +This module also provides a simple hierarchy for Perl 5 types, here is +that hierarchy represented visually. + + Any + Item + Bool + Maybe[`a] + Undef + Defined + Value + Num + Int + Str + ClassName + RoleName + Ref + ScalarRef + ArrayRef[`a] + HashRef[`a] + CodeRef + RegexpRef + GlobRef + FileHandle + Object + +B Any type followed by a type parameter C<[`a]> can be +parameterized, this means you can say: + + ArrayRef[Int] # an array of integers + HashRef[CodeRef] # a hash of str to CODE ref mappings + Maybe[Str] # value may be a string, may be undefined + +If Mouse finds a name in brackets that it does not recognize as an +existing type, it assumes that this is a class name, for example +C. + +B Unless you parameterize a type, then it is invalid to include +the square brackets. I.e. C will be treated as a new type +name, I as a parameterization of C. + +B The C type constraint for the most part works +correctly now, but edge cases may still exist, please use it +sparingly. + +B The C type constraint does a complex package +existence check. This means that your class B be loaded for this +type constraint to pass. + +B The C constraint checks a string is a I which is a role, like C<'MyApp::Role::Comparable'>. The C +constraint checks that an I the named role. + +=head2 Type Constraint Naming + +Type name declared via this module can only contain alphanumeric +characters, colons (:), and periods (.). + +Since the types created by this module are global, it is suggested +that you namespace your types just as you would namespace your +modules. So instead of creating a I type for your +B module, you would call the type +I instead. + +=head2 Use with Other Constraint Modules + +This module can play nicely with other constraint modules with some +slight tweaking. The C clause in types is expected to be a +C reference which checks it's first argument and returns a +boolean. Since most constraint modules work in a similar way, it +should be simple to adapt them to work with Mouse. + +For instance, this is how you could use it with +L to declare a completely new type. + + type 'HashOfArrayOfObjects', + { + where => IsHashRef( + -keys => HasLength, + -values => IsArrayRef(IsObject) + ) + }; + +Here is an example of using L and it's non-test +related C function. + + type 'ArrayOfHashOfBarsAndRandomNumbers' + => where { + eq_deeply($_, + array_each(subhashof({ + bar => isa('Bar'), + random_number => ignore() + }))) + }; =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 =over 4 -=item B as 'Parent' => where { } ...> +=item C<< subtype 'Name' => as 'Parent' => where { } ... -> Mouse::Meta::TypeConstraint >> -=item B where { } ...> +=item C<< subtype as 'Parent' => where { } ... -> Mouse::Meta::TypeConstraint >> -=item B +=item C<< class_type ($class, ?$options) -> Mouse::Meta::TypeConstraint >> -=item B +=item C<< role_type ($role, ?$options) -> Mouse::Meta::TypeConstraint >> -=item B +=item C<< enum (\@values) -> Mouse::Meta::TypeConstraint >> =back +=over 4 + +=item C<< find_type_constraint(Type) -> Mouse::Meta::TypeConstraint >> + +=back + +=head1 THANKS + +Much of this documentation was taken from C + +=head1 SEE ALSO + +L + =cut