X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FUtil%2FTypeConstraints.pm;h=44b0b382de79746141f2e9000197cf178f9560bf;hb=586008537382826f6f206e5412be448a1b51dcd0;hp=b7f39fc435bcbe26b3ff3aa34ce59ac07323b9ed;hpb=abe4e887fce1ae47be91a8495235dc652457484a;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Util/TypeConstraints.pm b/lib/Mouse/Util/TypeConstraints.pm index b7f39fc..44b0b38 100644 --- a/lib/Mouse/Util/TypeConstraints.pm +++ b/lib/Mouse/Util/TypeConstraints.pm @@ -1,46 +1,32 @@ package Mouse::Util::TypeConstraints; use strict; use warnings; +use base 'Exporter'; use Carp (); use Scalar::Util qw/blessed looks_like_number openhandle/; +our @EXPORT = qw( + as where message from via type subtype coerce class_type role_type +); + my %TYPE; +my %TYPE_SOURCE; my %COERCE; my %COERCE_KEYS; -#find_type_constraint register_type_constraint -sub import { - my $class = shift; - my %args = @_; - my $caller = $args{callee} || caller(0); - - no strict 'refs'; - *{"$caller\::as"} = \&_as; - *{"$caller\::where"} = \&_where; - *{"$caller\::message"} = \&_message; - *{"$caller\::from"} = \&_from; - *{"$caller\::via"} = \&_via; - *{"$caller\::type"} = \&_type; - *{"$caller\::subtype"} = \&_subtype; - *{"$caller\::coerce"} = \&_coerce; - *{"$caller\::class_type"} = \&_class_type; - *{"$caller\::role_type"} = \&_role_type; -} - - -sub _as ($) { +sub as ($) { as => $_[0] } -sub _where (&) { +sub where (&) { where => $_[0] } -sub _message ($) { +sub message (&) { message => $_[0] } -sub _from { @_ } -sub _via (&) { +sub from { @_ } +sub via (&) { $_[0] } @@ -82,34 +68,41 @@ my $optimized_constraints_base; sub optimized_constraints { \%TYPE } my @TYPE_KEYS = keys %TYPE; sub list_all_builtin_type_constraints { @TYPE_KEYS } + + @TYPE_SOURCE{@TYPE_KEYS} = (__PACKAGE__) x @TYPE_KEYS; } -sub _type { +sub type { my $pkg = caller(0); my($name, %conf) = @_; - if (my $type = $TYPE{$name}) { - Carp::croak "The type constraint '$name' has already been created, cannot be created again in $pkg"; + 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 $stuff = $conf{where} || do { $TYPE{delete $conf{as} || 'Any' } }; - $TYPE{$name} = $stuff; + my $constraint = $conf{where} || do { $TYPE{delete $conf{as} || 'Any' } }; + + $TYPE_SOURCE{$name} = $pkg; + $TYPE{$name} = $constraint; } -sub _subtype { +sub subtype { my $pkg = caller(0); my($name, %conf) = @_; - if (my $type = $TYPE{$name}) { - Carp::croak "The type constraint '$name' has already been created, cannot be created again in $pkg"; + 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 $stuff = $conf{where} || do { $TYPE{delete $conf{as} || 'Any' } }; - my $as = $conf{as} || ''; + my $constraint = $conf{where} || do { $TYPE{delete $conf{as} || 'Any' } }; + my $as = $conf{as} || ''; + + $TYPE_SOURCE{$name} = $pkg; + if ($as = $TYPE{$as}) { - $TYPE{$name} = sub { $as->($_) && $stuff->($_) }; + $TYPE{$name} = sub { $as->($_) && $constraint->($_) }; } else { - $TYPE{$name} = $stuff; + $TYPE{$name} = $constraint; } } -sub _coerce { +sub coerce { my($name, %conf) = @_; Carp::croak "Cannot find type '$name', perhaps you forgot to load it." @@ -131,20 +124,19 @@ sub _coerce { } } -sub _class_type { +sub class_type { my $pkg = caller(0); my($name, $conf) = @_; my $class = $conf->{class}; - Mouse::load_class($class); - _subtype( + subtype( $name => where => sub { $_->isa($class) } ); } -sub _role_type { +sub role_type { my($name, $conf) = @_; my $role = $conf->{role}; - _subtype( + subtype( $name => where => sub { return unless defined $_ && ref($_) && $_->isa('Mouse::Object'); $_->meta->does_role($role);