changes-and-comments
[gitmo/Moose.git] / lib / Moose / Util / TypeConstraints.pm
index 8963ad2..68ed3ee 100644 (file)
@@ -5,44 +5,59 @@ use strict;
 use warnings;
 
 use Carp         'confess';
-use Sub::Name    'subname';
 use Scalar::Util 'blessed';
 
-our $VERSION = '0.02';
+our $VERSION = '0.05';
 
 use Moose::Meta::TypeConstraint;
 use Moose::Meta::TypeCoercion;
 
-sub import {
-       shift;
-       my $pkg = shift || caller();
-       return if $pkg eq ':no_export';
-       no strict 'refs';
-       foreach my $export (qw(type subtype as where coerce from via)) {
-               *{"${pkg}::${export}"} = \&{"${export}"};
-       }       
+{
+    require Sub::Exporter;
+    
+    my @exports = qw[type subtype as where message coerce from via find_type_constraint enum];
+
+    Sub::Exporter->import( 
+        -setup => { 
+            exports => \@exports,
+            groups  => {
+                default => [':all']
+            }
+        }
+    );
 }
 
 {
     my %TYPES;
-    sub find_type_constraint { $TYPES{$_[0]} }
-
-    sub create_type_constraint { 
-        my ($name, $parent, $check) = @_;
-        (!exists $TYPES{$name})
-            || confess "The type constraint '$name' has already been created"
-                if defined $name;
+    sub find_type_constraint { 
+        return $TYPES{$_[0]}->[1] 
+            if exists $TYPES{$_[0]};
+        return;
+    }
+    
+    sub _dump_type_constraints {
+        require Data::Dumper;        
+        Data::Dumper::Dumper(\%TYPES);
+    }
+    
+    sub _create_type_constraint { 
+        my ($name, $parent, $check, $message) = @_;
+        my $pkg_defined_in = scalar(caller(1));
+        ($TYPES{$name}->[0] eq $pkg_defined_in)
+            || confess "The type constraint '$name' has already been created "
+                 if defined $name && exists $TYPES{$name};                
         $parent = find_type_constraint($parent) if defined $parent;
         my $constraint = Moose::Meta::TypeConstraint->new(
             name       => $name || '__ANON__',
             parent     => $parent,            
-            constraint => $check,           
+            constraint => $check,       
+            message    => $message,    
         );
-        $TYPES{$name} = $constraint if defined $name;
+        $TYPES{$name} = [ $pkg_defined_in, $constraint ] if defined $name;
         return $constraint;
     }
 
-    sub install_type_coercions { 
+    sub _install_type_coercions { 
         my ($type_name, $coercion_map) = @_;
         my $type = find_type_constraint($type_name);
         (!$type->has_coercion)
@@ -54,55 +69,86 @@ sub import {
         $type->coercion($type_coercion);
     }
     
+    sub create_type_constraint_union {
+        my (@type_constraint_names) = @_;
+        return Moose::Meta::TypeConstraint->union(
+            map { 
+                find_type_constraint($_) 
+            } @type_constraint_names
+        );
+    }
+    
     sub export_type_contstraints_as_functions {
         my $pkg = caller();
            no strict 'refs';
        foreach my $constraint (keys %TYPES) {
-               *{"${pkg}::${constraint}"} = $TYPES{$constraint}->_compiled_type_constraint;
+               *{"${pkg}::${constraint}"} = find_type_constraint($constraint)->_compiled_type_constraint;
        }        
     }    
 }
 
+# type constructors
 
 sub type ($$) {
        my ($name, $check) = @_;
-       create_type_constraint($name, undef, $check);
+       _create_type_constraint($name, undef, $check);
 }
 
-sub subtype ($$;$) {
-       unshift @_ => undef if scalar @_ == 2;
-       create_type_constraint(@_);
+sub subtype ($$;$$) {
+       unshift @_ => undef if scalar @_ <= 2;
+       _create_type_constraint(@_);
 }
 
 sub coerce ($@) {
     my ($type_name, @coercion_map) = @_;   
-    install_type_coercions($type_name, \@coercion_map);
+    _install_type_coercions($type_name, \@coercion_map);
 }
 
-sub as    ($) { $_[0] }
-sub from  ($) { $_[0] }
-sub where (&) { $_[0] }
-sub via   (&) { $_[0] }
+sub as      ($) { $_[0] }
+sub from    ($) { $_[0] }
+sub where   (&) { $_[0] }
+sub via     (&) { $_[0] }
+sub message (&) { $_[0] }
+
+sub enum {
+    my ($type_name, @values) = @_;
+    my $regexp = join '|' => @values;
+       _create_type_constraint(
+           $type_name,
+           'Str',
+           sub { qr/^$regexp$/i }
+       );    
+}
 
 # define some basic types
 
-type Any => where { 1 };
+type 'Any'  => where { 1 }; # meta-type including all
+type 'Item' => where { 1 }; # base-type 
+
+subtype 'Undef'   => as 'Item' => where { !defined($_) };
+subtype 'Defined' => as 'Item' => where {  defined($_) };
+
+subtype 'Bool'  => as 'Item' => where { !defined($_) || $_ eq "" || "$_" eq '1' || "$_" eq '0' };
 
-type Value => where { !ref($_) };
-type Ref   => where {  ref($_) };
+subtype 'Value' => as 'Defined' => where { !ref($_) };
+subtype 'Ref'   => as 'Defined' => where {  ref($_) };
 
-subtype Int => as Value => where {  Scalar::Util::looks_like_number($_) };
-subtype Str => as Value => where { !Scalar::Util::looks_like_number($_) };
+subtype 'Str' => as 'Value' => where { 1 };
 
-subtype ScalarRef => as Ref => where { ref($_) eq 'SCALAR' };  
-subtype ArrayRef  => as Ref => where { ref($_) eq 'ARRAY'  };
-subtype HashRef   => as Ref => where { ref($_) eq 'HASH'   };  
-subtype CodeRef   => as Ref => where { ref($_) eq 'CODE'   };
-subtype RegexpRef => as Ref => where { ref($_) eq 'Regexp' };  
+subtype 'Num' => as 'Value' => where { Scalar::Util::looks_like_number($_) };
+subtype 'Int' => as 'Num'   => where { "$_" =~ /^-?[0-9]+$/ };
+
+subtype 'ScalarRef' => as 'Ref' => where { ref($_) eq 'SCALAR' };
+subtype 'ArrayRef'  => as 'Ref' => where { ref($_) eq 'ARRAY'  };
+subtype 'HashRef'   => as 'Ref' => where { ref($_) eq 'HASH'   };      
+subtype 'CodeRef'   => as 'Ref' => where { ref($_) eq 'CODE'   };
+subtype 'RegexpRef' => as 'Ref' => where { ref($_) eq 'Regexp' };      
 
 # NOTE: 
 # blessed(qr/.../) returns true,.. how odd
-subtype Object => as Ref => where { blessed($_) && blessed($_) ne 'Regexp' };
+subtype 'Object' => as 'Ref' => where { blessed($_) && blessed($_) ne 'Regexp' };
+
+subtype 'Role' => as 'Object' => where { $_->can('does') };
 
 1;
 
@@ -126,11 +172,14 @@ Moose::Util::TypeConstraints - Type constraint system for Moose
   
   subtype NaturalLessThanTen 
       => as Natural
-      => where { $_ < 10 };
+      => where { $_ < 10 }
+      => message { "This number ($_) is not less than ten!" };
       
   coerce Num 
       => from Str
         => via { 0+$_ }; 
+        
+  enum RGBColors => qw(red green blue);
 
 =head1 DESCRIPTION
 
@@ -138,24 +187,39 @@ This module provides Moose with the ability to create type contraints
 to be are used in both attribute definitions and for method argument 
 validation. 
 
-This is B<NOT> a type system for Perl 5.
+=head2 Important Caveat
+
+This is B<NOT> a type system for Perl 5. These are type constraints, 
+and they are not used by Moose unless you tell it to. No type 
+inference is performed, expression are not typed, etc. etc. etc. 
+
+This is simply a means of creating small constraint functions which 
+can be used to simplify your own type-checking code.
+
+=head2 Default Type Constraints
 
 This module also provides a simple hierarchy for Perl 5 types, this 
 could probably use some work, but it works for me at the moment.
 
   Any
-      Value
-          Int
-          Str
-      Ref
-          ScalarRef
-          ArrayRef
-          HashRef
-          CodeRef
-          RegexpRef
-          Object       
-
-Suggestions for improvement are welcome.       
+  Item 
+      Bool
+      Undef
+      Defined
+          Value
+              Num
+                Int
+              Str
+          Ref
+              ScalarRef
+              ArrayRef
+              HashRef
+              CodeRef
+              RegexpRef
+              Object   
+                  Role
+
+Suggestions for improvement are welcome.
     
 =head1 FUNCTIONS
 
@@ -165,59 +229,83 @@ Suggestions for improvement are welcome.
 
 =item B<find_type_constraint ($type_name)>
 
-=item B<create_type_constraint ($type_name, $type_constraint)>
+This function can be used to locate a specific type constraint 
+meta-object. What you do with it from there is up to you :)
+
+=item B<create_type_constraint_union (@type_constraint_names)>
 
-=item B<install_type_coercions>
+Given a list of C<@type_constraint_names>, this will return a 
+B<Moose::Meta::TypeConstraint::Union> instance.
 
 =item B<export_type_contstraints_as_functions>
 
+This will export all the current type constraints as functions 
+into the caller's namespace. Right now, this is mostly used for 
+testing, but it might prove useful to others.
+
 =back
 
 =head2 Type Constraint Constructors
 
+The following functions are used to create type constraints. 
+They will then register the type constraints in a global store 
+where Moose can get to them if it needs to. 
+
+See the L<SYNOPOSIS> for an example of how to use these.
+
 =over 4
 
-=item B<type>
+=item B<type ($name, $where_clause)>
 
-=item B<subtype>
+This creates a base type, which has no parent. 
 
-=item B<as>
+=item B<subtype ($name, $parent, $where_clause, ?$message)>
 
-=item B<where>
+This creates a named subtype. 
 
-=item B<coerce>
+=item B<subtype ($parent, $where_clause, ?$message)>
 
-=item B<from>
+This creates an unnamed subtype and will return the type 
+constraint meta-object, which will be an instance of 
+L<Moose::Meta::TypeConstraint>. 
 
-=item B<via>
+=item B<enum ($name, @values)>
 
-=back
+=item B<as>
 
-=head2 Built-in Type Constraints
+This is just sugar for the type constraint construction syntax.
 
-=over 4
+=item B<where>
 
-=item B<Any>
+This is just sugar for the type constraint construction syntax.
 
-=item B<Value>
+=item B<message>
 
-=item B<Int>
+This is just sugar for the type constraint construction syntax.
 
-=item B<Str>
+=back
 
-=item B<Ref>
+=head2 Type Coercion Constructors
 
-=item B<ArrayRef>
+Type constraints can also contain type coercions as well. In most 
+cases Moose will run the type-coercion code first, followed by the 
+type constraint check. This feature should be used carefully as it 
+is very powerful and could easily take off a limb if you are not 
+careful.
 
-=item B<CodeRef>
+See the L<SYNOPOSIS> for an example of how to use these.
 
-=item B<HashRef>
+=over 4
 
-=item B<RegexpRef>
+=item B<coerce>
 
-=item B<ScalarRef>
+=item B<from>
+
+This is just sugar for the type coercion construction syntax.
+
+=item B<via>
 
-=item B<Object>
+This is just sugar for the type coercion construction syntax.
 
 =back
 
@@ -240,4 +328,4 @@ L<http://www.iinteractive.com>
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself. 
 
-=cut
\ No newline at end of file
+=cut