X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FTypeRegistry.pm;h=c722ec1ba43f5eb0812c4ea9aeeaf6c89816f0fb;hb=d3982c7e7f662fb205f4fca0a264c3479bba4438;hp=a8992c2a9af78fe09769cb8089505540950e99bc;hpb=8fcbe7fb24ac710b860595ae1ecea066c3add1f5;p=gitmo%2FMouse.git diff --git a/lib/Mouse/TypeRegistry.pm b/lib/Mouse/TypeRegistry.pm index a8992c2..c722ec1 100644 --- a/lib/Mouse/TypeRegistry.pm +++ b/lib/Mouse/TypeRegistry.pm @@ -3,12 +3,51 @@ package Mouse::TypeRegistry; use strict; use warnings; -use Mouse::Util 'blessed'; -use Scalar::Util qw/looks_like_number openhandle/; +use Carp (); +use Mouse::Util qw/blessed looks_like_number openhandle/; -no warnings 'uninitialized'; -sub optimized_constraints { - return { +my $SUBTYPE = +{}; +my $COERCE = +{}; + +#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\::subtype"} = \&_subtype; + *{"$caller\::coerce"} = \&_coerce; + *{"$caller\::class_type"} = \&_class_type; + *{"$caller\::role_type"} = \&_role_type; +} + + +sub _as ($) { + as => $_[0] +} +sub _where (&) { + where => $_[0] +} +sub _message ($) { + message => $_[0] +} + +sub _from { @_ } +sub _via (&) { + $_[0] +} + +my $optimized_constraints; +my $optimized_constraints_base; +{ + no warnings 'uninitialized'; + $SUBTYPE = { Any => sub { 1 }, Item => sub { 1 }, Bool => sub { @@ -36,10 +75,83 @@ sub optimized_constraints { or blessed($_) && $_->isa("IO::Handle") - }, + }, Object => sub { blessed($_) && blessed($_) ne 'Regexp' }, }; + + sub optimized_constraints { $SUBTYPE } + my @SUBTYPE_KEYS = keys %{ $SUBTYPE }; + sub list_all_builtin_type_constraints { @SUBTYPE_KEYS } +} + +sub _subtype { + my $pkg = caller(0); + my($name, %conf) = @_; + if (my $type = $SUBTYPE->{$name}) { + Carp::croak "The type constraint '$name' has already been created, cannot be created again in $pkg"; + }; + my $as = $conf{as}; + my $stuff = $conf{where} || optimized_constraints()->{$as}; + + $SUBTYPE->{$name} = $stuff; +} + +sub _coerce { + my($name, %conf) = @_; + + Carp::croak "Cannot find type '$name', perhaps you forgot to load it." + unless optimized_constraints()->{$name}; + + my $subtypes = optimized_constraints(); + $COERCE->{$name} ||= {}; + while (my($type, $code) = each %conf) { + Carp::croak "A coercion action already exists for '$type'" + if $COERCE->{$name}->{$type}; + + Carp::croak "Could not find the type constraint ($type) to coerce from" + unless $subtypes->{$type}; + + $COERCE->{$name}->{$type} = $code; + } +} + +sub _class_type { + my $pkg = caller(0); + my($name, $conf) = @_; + my $class = $conf->{class}; + _subtype( + $name => where => sub { + defined $_ && ref($_) eq $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); + } + ); +} + +sub typecast_constraints { + my($class, $pkg, $type, $value) = @_; + return $value unless $COERCE->{$type}; + + my $optimized_constraints = optimized_constraints(); + for my $coerce_type (keys %{ $COERCE->{$type} }) { + local $_ = $value; + if ($optimized_constraints->{$coerce_type}->()) { + local $_ = $value; + return $COERCE->{$type}->{$coerce_type}->(); + } + } + + return $value; } 1;