Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / lib / Mouse / TypeRegistry.pm
index 9c18bd2..3822cbf 100644 (file)
@@ -1,72 +1,33 @@
-#!/usr/bin/env perl
 package Mouse::TypeRegistry;
-use strict;
-use warnings;
-use Scalar::Util qw/looks_like_number blessed openhandle/;
+use Mouse::Util::TypeConstraints;
 
-no warnings 'uninitialized';
-sub optimized_constraints {
-    return {
-        Any        => sub { 1 },
-        Item       => sub { 1 },
-        Bool       => sub {
-            !defined($_) || $_ eq "" || "$_" eq '1' || "$_" eq '0'
-        },
-        Undef      => sub { !defined($_) },
-        Defined    => sub { defined($_) },
-        Value      => sub { defined($_) && !ref($_) },
-        Num        => sub { !ref($_) && looks_like_number($_) },
-        Int        => sub { defined($_) && !ref($_) && /^-?[0-9]+$/ },
-        Str        => sub { defined($_) && !ref($_) },
-        Ref        => sub { ref($_) },
+sub import {
+    warn "Mouse::TypeRegistry is deprecated, please use Mouse::Util::TypeConstraints instead.";
 
-        ScalarRef  => sub { ref($_) eq 'SCALAR' },
-        ArrayRef   => sub { ref($_) eq 'ARRAY'  },
-        HashRef    => sub { ref($_) eq 'HASH'   },
-        CodeRef    => sub { ref($_) eq 'CODE'   },
-        RegexpRef  => sub { ref($_) eq 'Regexp' },
-        GlobRef    => sub { ref($_) eq 'GLOB'   },
+    shift @_;
+    unshift @_, 'Mouse::Util::TypeConstraints';
+    goto \&Mouse::Util::TypeConstraints::import;
+}
 
-        FileHandle => sub {
-                ref($_) eq 'GLOB'
-                && openhandle($_)
-            or
-                blessed($_)
-                && $_->isa("IO::Handle")
-        },
+sub unimport {
+    warn "Mouse::TypeRegistry is deprecated, please use Mouse::Util::TypeConstraints instead.";
 
-        Object     => sub { blessed($_) && blessed($_) ne 'Regexp' },
+    shift @_;
+    unshift @_, 'Mouse::Util::TypeConstraints';
+    goto \&Mouse::Util::TypeConstraints::unimport;
+}
 
-        ClassName  => sub {
-            return if ref($_);
-            return unless defined($_) && length($_);
+1;
 
-            # walk the symbol table tree to avoid autovififying
-            # \*{${main::}{"Foo::"}} == \*main::Foo::
+__END__
 
-            my $pack = \*::;
-            foreach my $part (split('::', $_)) {
-                return unless exists ${$$pack}{"${part}::"};
-                $pack = \*{${$$pack}{"${part}::"}};
-            }
 
-            # check for $VERSION or @ISA
-            return 1 if exists ${$$pack}{VERSION}
-                    && defined *{${$$pack}{VERSION}}{SCALAR};
-            return 1 if exists ${$$pack}{ISA}
-                    && defined *{${$$pack}{ISA}}{ARRAY};
+=head1 NAME
 
-            # check for any method
-            foreach ( keys %{$$pack} ) {
-                next if substr($_, -2, 2) eq '::';
-                return 1 if defined *{${$$pack}{$_}}{CODE};
-            }
+Mouse::TypeRegistry - (DEPRECATED)
 
-            # fail
-            return;
-        },
-    };
-}
+=head1 DESCRIPTION
 
-1;
+Mouse::TypeRegistry is deprecated. Use Mouse::Util::TypeConstraints instead.
 
+=cut