0_03_01
[gitmo/Moose.git] / lib / Moose / Util / TypeConstraints.pm
1
2 package Moose::Util::TypeConstraints;
3
4 use strict;
5 use warnings;
6
7 use Carp         'confess';
8 use Scalar::Util 'blessed';
9
10 our $VERSION = '0.03';
11
12 use Moose::Meta::TypeConstraint;
13 use Moose::Meta::TypeCoercion;
14
15 sub import {
16         shift;
17         my $pkg = shift || caller();
18         return if $pkg eq '-no-export';
19         no strict 'refs';
20         foreach my $export (qw(type subtype as where message coerce from via find_type_constraint)) {
21                 *{"${pkg}::${export}"} = \&{"${export}"};
22         }       
23 }
24
25 {
26     my %TYPES;
27     sub find_type_constraint { $TYPES{$_[0]}->[1] }
28
29     sub _create_type_constraint { 
30         my ($name, $parent, $check, $message) = @_;
31         my $pkg_defined_in = scalar(caller(1));
32         ($TYPES{$name}->[0] eq $pkg_defined_in)
33             || confess "The type constraint '$name' has already been created"
34                  if defined $name && exists $TYPES{$name};                
35         $parent = find_type_constraint($parent) if defined $parent;
36         my $constraint = Moose::Meta::TypeConstraint->new(
37             name       => $name || '__ANON__',
38             parent     => $parent,            
39             constraint => $check,       
40             message    => $message,    
41         );
42         $TYPES{$name} = [ $pkg_defined_in, $constraint ] if defined $name;
43         return $constraint;
44     }
45
46     sub _install_type_coercions { 
47         my ($type_name, $coercion_map) = @_;
48         my $type = find_type_constraint($type_name);
49         (!$type->has_coercion)
50             || confess "The type coercion for '$type_name' has already been registered";        
51         my $type_coercion = Moose::Meta::TypeCoercion->new(
52             type_coercion_map => $coercion_map,
53             type_constraint   => $type
54         );            
55         $type->coercion($type_coercion);
56     }
57     
58     sub export_type_contstraints_as_functions {
59         my $pkg = caller();
60             no strict 'refs';
61         foreach my $constraint (keys %TYPES) {
62                 *{"${pkg}::${constraint}"} = find_type_constraint($constraint)->_compiled_type_constraint;
63         }        
64     }    
65 }
66
67 # type constructors
68
69 sub type ($$) {
70         my ($name, $check) = @_;
71         _create_type_constraint($name, undef, $check);
72 }
73
74 sub subtype ($$;$$) {
75         unshift @_ => undef if scalar @_ <= 2;
76         _create_type_constraint(@_);
77 }
78
79 sub coerce ($@) {
80     my ($type_name, @coercion_map) = @_;   
81     _install_type_coercions($type_name, \@coercion_map);
82 }
83
84 sub as      ($) { $_[0] }
85 sub from    ($) { $_[0] }
86 sub where   (&) { $_[0] }
87 sub via     (&) { $_[0] }
88 sub message (&) { $_[0] }
89
90 # define some basic types
91
92 type 'Any' => where { 1 };
93
94 subtype 'Value' => as 'Any' => where { !ref($_) };
95 subtype 'Ref'   => as 'Any' => where {  ref($_) };
96
97 subtype 'Int' => as 'Value' => where {  Scalar::Util::looks_like_number($_) };
98 subtype 'Str' => as 'Value' => where { !Scalar::Util::looks_like_number($_) };
99
100 subtype 'ScalarRef' => as 'Ref' => where { ref($_) eq 'SCALAR' };       
101 subtype 'ArrayRef'  => as 'Ref' => where { ref($_) eq 'ARRAY'  };
102 subtype 'HashRef'   => as 'Ref' => where { ref($_) eq 'HASH'   };       
103 subtype 'CodeRef'   => as 'Ref' => where { ref($_) eq 'CODE'   };
104 subtype 'RegexpRef' => as 'Ref' => where { ref($_) eq 'Regexp' };       
105
106 # NOTE: 
107 # blessed(qr/.../) returns true,.. how odd
108 subtype 'Object' => as 'Ref' => where { blessed($_) && blessed($_) ne 'Regexp' };
109
110 1;
111
112 __END__
113
114 =pod
115
116 =head1 NAME
117
118 Moose::Util::TypeConstraints - Type constraint system for Moose
119
120 =head1 SYNOPSIS
121
122   use Moose::Util::TypeConstraints;
123
124   type Num => where { Scalar::Util::looks_like_number($_) };
125   
126   subtype Natural 
127       => as Num 
128       => where { $_ > 0 };
129   
130   subtype NaturalLessThanTen 
131       => as Natural
132       => where { $_ < 10 }
133       => message { "This number ($_) is not less than ten!" };
134       
135   coerce Num 
136       => from Str
137         => via { 0+$_ }; 
138
139 =head1 DESCRIPTION
140
141 This module provides Moose with the ability to create type contraints 
142 to be are used in both attribute definitions and for method argument 
143 validation. 
144
145 =head2 Important Caveat
146
147 This is B<NOT> a type system for Perl 5. These are type constraints, 
148 and they are not used by Moose unless you tell it to. No type 
149 inference is performed, expression are not typed, etc. etc. etc. 
150
151 This is simply a means of creating small constraint functions which 
152 can be used to simplify your own type-checking code.
153
154 =head2 Default Type Constraints
155
156 This module also provides a simple hierarchy for Perl 5 types, this 
157 could probably use some work, but it works for me at the moment.
158
159   Any
160       Value
161           Int
162           Str
163       Ref
164           ScalarRef
165           ArrayRef
166           HashRef
167           CodeRef
168           RegexpRef
169           Object        
170
171 Suggestions for improvement are welcome.
172     
173 =head1 FUNCTIONS
174
175 =head2 Type Constraint Registry
176
177 =over 4
178
179 =item B<find_type_constraint ($type_name)>
180
181 This function can be used to locate a specific type constraint 
182 meta-object. What you do with it from there is up to you :)
183
184 =item B<export_type_contstraints_as_functions>
185
186 This will export all the current type constraints as functions 
187 into the caller's namespace. Right now, this is mostly used for 
188 testing, but it might prove useful to others.
189
190 =back
191
192 =head2 Type Constraint Constructors
193
194 The following functions are used to create type constraints. 
195 They will then register the type constraints in a global store 
196 where Moose can get to them if it needs to. 
197
198 See the L<SYNOPOSIS> for an example of how to use these.
199
200 =over 4
201
202 =item B<type ($name, $where_clause)>
203
204 This creates a base type, which has no parent. 
205
206 =item B<subtype ($name, $parent, $where_clause, ?$message)>
207
208 This creates a named subtype. 
209
210 =item B<subtype ($parent, $where_clause, ?$message)>
211
212 This creates an unnamed subtype and will return the type 
213 constraint meta-object, which will be an instance of 
214 L<Moose::Meta::TypeConstraint>. 
215
216 =item B<as>
217
218 This is just sugar for the type constraint construction syntax.
219
220 =item B<where>
221
222 This is just sugar for the type constraint construction syntax.
223
224 =item B<message>
225
226 This is just sugar for the type constraint construction syntax.
227
228 =back
229
230 =head2 Type Coercion Constructors
231
232 Type constraints can also contain type coercions as well. In most 
233 cases Moose will run the type-coercion code first, followed by the 
234 type constraint check. This feature should be used carefully as it 
235 is very powerful and could easily take off a limb if you are not 
236 careful.
237
238 See the L<SYNOPOSIS> for an example of how to use these.
239
240 =over 4
241
242 =item B<coerce>
243
244 =item B<from>
245
246 This is just sugar for the type coercion construction syntax.
247
248 =item B<via>
249
250 This is just sugar for the type coercion construction syntax.
251
252 =back
253
254 =head1 BUGS
255
256 All complex software has bugs lurking in it, and this module is no 
257 exception. If you find a bug please either email me, or add the bug
258 to cpan-RT.
259
260 =head1 AUTHOR
261
262 Stevan Little E<lt>stevan@iinteractive.comE<gt>
263
264 =head1 COPYRIGHT AND LICENSE
265
266 Copyright 2006 by Infinity Interactive, Inc.
267
268 L<http://www.iinteractive.com>
269
270 This library is free software; you can redistribute it and/or modify
271 it under the same terms as Perl itself. 
272
273 =cut