Bump the versions of everything to 0.50
[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 use Sub::Exporter;
10
11 our $VERSION   = '0.50';
12 our $AUTHORITY = 'cpan:STEVAN';
13
14 ## --------------------------------------------------------
15 # Prototyped subs must be predeclared because we have a
16 # circular dependency with Moose::Meta::Attribute et. al.
17 # so in case of us being use'd first the predeclaration
18 # ensures the prototypes are in scope when consumers are
19 # compiled.
20
21 # creation and location
22 sub find_type_constraint                 ($);
23 sub register_type_constraint             ($);
24 sub find_or_create_type_constraint       ($;$);
25 sub find_or_parse_type_constraint        ($);
26 sub find_or_create_isa_type_constraint   ($);
27 sub find_or_create_does_type_constraint  ($);
28 sub create_type_constraint_union         (@);
29 sub create_parameterized_type_constraint ($);
30 sub create_class_type_constraint         ($;$);
31 sub create_role_type_constraint          ($;$);
32 sub create_enum_type_constraint          ($$);
33
34 # dah sugah!
35 sub type        ($$;$$);
36 sub subtype     ($$;$$$);
37 sub class_type  ($;$);
38 sub coerce      ($@);
39 sub as          ($);
40 sub from        ($);
41 sub where       (&);
42 sub via         (&);
43 sub message     (&);
44 sub optimize_as (&);
45 sub enum        ($;@);
46
47 ## private stuff ...
48 sub _create_type_constraint ($$$;$$);
49 sub _install_type_coercions ($$);
50
51 ## --------------------------------------------------------
52
53 use Moose::Meta::TypeConstraint;
54 use Moose::Meta::TypeConstraint::Union;
55 use Moose::Meta::TypeConstraint::Parameterized;
56 use Moose::Meta::TypeConstraint::Parameterizable;
57 use Moose::Meta::TypeConstraint::Class;
58 use Moose::Meta::TypeConstraint::Role;
59 use Moose::Meta::TypeConstraint::Enum;
60 use Moose::Meta::TypeCoercion;
61 use Moose::Meta::TypeCoercion::Union;
62 use Moose::Meta::TypeConstraint::Registry;
63 use Moose::Util::TypeConstraints::OptimizedConstraints;
64
65 my @exports = qw/
66     type subtype class_type role_type as where message optimize_as
67     coerce from via
68     enum
69     find_type_constraint
70     register_type_constraint
71 /;
72
73 Sub::Exporter::setup_exporter({
74     exports => \@exports,
75     groups  => { default => [':all'] }
76 });
77
78 sub unimport {
79     no strict 'refs';
80     my $class = caller();
81     # loop through the exports ...
82     foreach my $name (@exports) {
83         # if we find one ...
84         if (defined &{$class . '::' . $name}) {
85             my $keyword = \&{$class . '::' . $name};
86
87             # make sure it is from Moose
88             my ($pkg_name) = Class::MOP::get_code_info($keyword);
89             next if $@;
90             next if $pkg_name ne 'Moose::Util::TypeConstraints';
91
92             # and if it is from Moose then undef the slot
93             delete ${$class . '::'}{$name};
94         }
95     }
96 }
97
98 ## --------------------------------------------------------
99 ## type registry and some useful functions for it
100 ## --------------------------------------------------------
101
102 my $REGISTRY = Moose::Meta::TypeConstraint::Registry->new;
103
104 sub get_type_constraint_registry         { $REGISTRY }
105 sub list_all_type_constraints            { keys %{$REGISTRY->type_constraints} }
106 sub export_type_constraints_as_functions {
107     my $pkg = caller();
108     no strict 'refs';
109     foreach my $constraint (keys %{$REGISTRY->type_constraints}) {
110         my $tc = $REGISTRY->get_type_constraint($constraint)->_compiled_type_constraint;
111         *{"${pkg}::${constraint}"} = sub { $tc->($_[0]) ? 1 : undef };
112     }
113 }
114
115 sub create_type_constraint_union (@) {
116     my @type_constraint_names;
117
118     if (scalar @_ == 1 && _detect_type_constraint_union($_[0])) {
119         @type_constraint_names = _parse_type_constraint_union($_[0]);
120     }
121     else {
122         @type_constraint_names = @_;
123     }
124
125     (scalar @type_constraint_names >= 2)
126         || confess "You must pass in at least 2 type names to make a union";
127
128     ($REGISTRY->has_type_constraint($_))
129         || confess "Could not locate type constraint ($_) for the union"
130             foreach @type_constraint_names;
131
132     return Moose::Meta::TypeConstraint::Union->new(
133         type_constraints => [
134             map {
135                 $REGISTRY->get_type_constraint($_)
136             } @type_constraint_names
137         ],
138     );
139 }
140
141 sub create_parameterized_type_constraint ($) {
142     my $type_constraint_name = shift;
143
144     my ($base_type, $type_parameter) = _parse_parameterized_type_constraint($type_constraint_name);
145
146     (defined $base_type && defined $type_parameter)
147         || confess "Could not parse type name ($type_constraint_name) correctly";
148
149     ($REGISTRY->has_type_constraint($base_type))
150         || confess "Could not locate the base type ($base_type)";
151
152     return Moose::Meta::TypeConstraint::Parameterized->new(
153         name           => $type_constraint_name,
154         parent         => $REGISTRY->get_type_constraint($base_type),
155         type_parameter => find_or_create_isa_type_constraint($type_parameter),
156     );
157 }
158
159 #should we also support optimized checks?
160 sub create_class_type_constraint ($;$) {
161     my ( $class, $options ) = @_;
162
163     # too early for this check
164     #find_type_constraint("ClassName")->check($class)
165     #    || confess "Can't create a class type constraint because '$class' is not a class name";
166
167     my %options = (
168         class => $class,
169         name  => $class,
170         %{ $options || {} },
171     );
172
173     $options{name} ||= "__ANON__";
174
175     Moose::Meta::TypeConstraint::Class->new( %options );
176 }
177
178 sub create_role_type_constraint ($;$) {
179     my ( $role, $options ) = @_;
180
181     # too early for this check
182     #find_type_constraint("ClassName")->check($class)
183     #    || confess "Can't create a class type constraint because '$class' is not a class name";
184
185     my %options = (
186         role => $role,
187         name => $role,
188         %{ $options || {} },
189     );
190
191     $options{name} ||= "__ANON__";
192
193     Moose::Meta::TypeConstraint::Role->new( %options );
194 }
195
196
197 sub find_or_create_type_constraint ($;$) {
198     my ( $type_constraint_name, $options_for_anon_type ) = @_;
199
200     if ( my $constraint = find_or_parse_type_constraint($type_constraint_name) ) {
201         return $constraint;
202     }
203     elsif ( defined $options_for_anon_type ) {
204         # NOTE:
205         # if there is no $options_for_anon_type
206         # specified, then we assume they don't
207         # want to create one, and return nothing.
208
209         # otherwise assume that we should create
210         # an ANON type with the $options_for_anon_type
211         # options which can be passed in. It should
212         # be noted that these don't get registered
213         # so we need to return it.
214         # - SL
215         return Moose::Meta::TypeConstraint->new(
216             name => '__ANON__',
217             %{$options_for_anon_type}
218         );
219     }
220
221     return;
222 }
223
224 sub find_or_create_isa_type_constraint ($) {
225     my $type_constraint_name = shift;
226     find_or_parse_type_constraint($type_constraint_name) || create_class_type_constraint($type_constraint_name)
227 }
228
229 sub find_or_create_does_type_constraint ($) {
230     my $type_constraint_name = shift;
231     find_or_parse_type_constraint($type_constraint_name) || create_role_type_constraint($type_constraint_name)
232 }
233
234 sub find_or_parse_type_constraint ($) {
235     my $type_constraint_name = shift;
236
237     return $REGISTRY->get_type_constraint($type_constraint_name)
238         if $REGISTRY->has_type_constraint($type_constraint_name);
239
240     my $constraint;
241
242     if (_detect_type_constraint_union($type_constraint_name)) {
243         $constraint = create_type_constraint_union($type_constraint_name);
244     }
245     elsif (_detect_parameterized_type_constraint($type_constraint_name)) {
246         $constraint = create_parameterized_type_constraint($type_constraint_name);
247     } else {
248         return;
249     }
250
251     $REGISTRY->add_type_constraint($constraint);
252     return $constraint;
253 }
254
255 ## --------------------------------------------------------
256 ## exported functions ...
257 ## --------------------------------------------------------
258
259 sub find_type_constraint ($) {
260     my $type = shift;
261
262     if ( blessed $type and $type->isa("Moose::Meta::TypeConstraint") ) {
263         return $type;
264     } else {
265         return $REGISTRY->get_type_constraint($type);
266     }
267 }
268
269 sub register_type_constraint ($) {
270     my $constraint = shift;
271     confess "can't register an unnamed type constraint" unless defined $constraint->name;
272     $REGISTRY->add_type_constraint($constraint);
273     return $constraint;
274 }
275
276 # type constructors
277
278 sub type ($$;$$) {
279     splice(@_, 1, 0, undef);
280     goto &_create_type_constraint;
281 }
282
283 sub subtype ($$;$$$) {
284     # NOTE:
285     # this adds an undef for the name
286     # if this is an anon-subtype:
287     #   subtype(Num => where { $_ % 2 == 0 }) # anon 'even' subtype
288     # but if the last arg is not a code
289     # ref then it is a subtype alias:
290     #   subtype(MyNumbers => as Num); # now MyNumbers is the same as Num
291     # ... yeah I know it's ugly code
292     # - SL
293     unshift @_ => undef if scalar @_ <= 2 && ('CODE' eq ref($_[1]));
294     goto &_create_type_constraint;
295 }
296
297 sub class_type ($;$) {
298     register_type_constraint(
299         create_class_type_constraint(
300             $_[0],
301             ( defined($_[1]) ? $_[1] : () ),
302         )
303     );
304 }
305
306 sub role_type ($;$) {
307     register_type_constraint(
308         create_role_type_constraint(
309             $_[0],
310             ( defined($_[1]) ? $_[1] : () ),
311         )
312     );
313 }
314
315 sub coerce ($@) {
316     my ($type_name, @coercion_map) = @_;
317     _install_type_coercions($type_name, \@coercion_map);
318 }
319
320 sub as      ($) { $_[0] }
321 sub from    ($) { $_[0] }
322 sub where   (&) { $_[0] }
323 sub via     (&) { $_[0] }
324
325 sub message     (&) { +{ message   => $_[0] } }
326 sub optimize_as (&) { +{ optimized => $_[0] } }
327
328 sub enum ($;@) {
329     my ($type_name, @values) = @_;
330     # NOTE:
331     # if only an array-ref is passed then
332     # you get an anon-enum
333     # - SL
334     if (ref $type_name eq 'ARRAY' && !@values) {
335         @values    = @$type_name;
336         $type_name = undef;
337     }
338     (scalar @values >= 2)
339         || confess "You must have at least two values to enumerate through";
340     my %valid = map { $_ => 1 } @values;
341
342     register_type_constraint(
343         create_enum_type_constraint(
344             $type_name,
345             \@values,
346         )
347     );
348 }
349
350 sub create_enum_type_constraint ($$) {
351     my ( $type_name, $values ) = @_;
352     
353     Moose::Meta::TypeConstraint::Enum->new(
354         name   => $type_name || '__ANON__',
355         values => $values,
356     );
357 }
358
359 ## --------------------------------------------------------
360 ## desugaring functions ...
361 ## --------------------------------------------------------
362
363 sub _create_type_constraint ($$$;$$) {
364     my $name   = shift;
365     my $parent = shift;
366     my $check  = shift;
367
368     my ($message, $optimized);
369     for (@_) {
370         $message   = $_->{message}   if exists $_->{message};
371         $optimized = $_->{optimized} if exists $_->{optimized};
372     }
373
374     my $pkg_defined_in = scalar(caller(0));
375
376     if (defined $name) {
377         my $type = $REGISTRY->get_type_constraint($name);
378
379         ($type->_package_defined_in eq $pkg_defined_in)
380             || confess ("The type constraint '$name' has already been created in "
381                        . $type->_package_defined_in . " and cannot be created again in "
382                        . $pkg_defined_in)
383                  if defined $type;
384     }
385
386     my $class = "Moose::Meta::TypeConstraint";
387
388     # FIXME should probably not be a special case
389     if ( defined $parent and $parent = find_or_parse_type_constraint($parent) ) {
390         $class = "Moose::Meta::TypeConstraint::Parameterizable" 
391             if $parent->isa("Moose::Meta::TypeConstraint::Parameterizable");
392     }
393
394     my $constraint = $class->new(
395         name               => $name || '__ANON__',
396         package_defined_in => $pkg_defined_in,
397
398         ($parent    ? (parent     => $parent )   : ()),
399         ($check     ? (constraint => $check)     : ()),
400         ($message   ? (message    => $message)   : ()),
401         ($optimized ? (optimized  => $optimized) : ()),
402     );
403
404     # NOTE:
405     # if we have a type constraint union, and no
406     # type check, this means we are just aliasing
407     # the union constraint, which means we need to
408     # handle this differently.
409     # - SL
410     if (not(defined $check)
411         && $parent->isa('Moose::Meta::TypeConstraint::Union')
412         && $parent->has_coercion
413         ){
414         $constraint->coercion(Moose::Meta::TypeCoercion::Union->new(
415             type_constraint => $parent
416         ));
417     }
418
419     $REGISTRY->add_type_constraint($constraint)
420         if defined $name;
421
422     return $constraint;
423 }
424
425 sub _install_type_coercions ($$) {
426     my ($type_name, $coercion_map) = @_;
427     my $type = $REGISTRY->get_type_constraint($type_name);
428     (defined $type)
429         || confess "Cannot find type '$type_name', perhaps you forgot to load it.";
430     if ($type->has_coercion) {
431         $type->coercion->add_type_coercions(@$coercion_map);
432     }
433     else {
434         my $type_coercion = Moose::Meta::TypeCoercion->new(
435             type_coercion_map => $coercion_map,
436             type_constraint   => $type
437         );
438         $type->coercion($type_coercion);
439     }
440 }
441
442 ## --------------------------------------------------------
443 ## type notation parsing ...
444 ## --------------------------------------------------------
445
446 {
447     # All I have to say is mugwump++ cause I know
448     # do not even have enough regexp-fu to be able
449     # to have written this (I can only barely
450     # understand it as it is)
451     # - SL
452
453     use re "eval";
454
455     my $valid_chars = qr{[\w:]};
456     my $type_atom   = qr{ $valid_chars+ };
457
458     my $type                = qr{  $valid_chars+  (?: \[  (??{$any})  \] )? }x;
459     my $type_capture_parts  = qr{ ($valid_chars+) (?: \[ ((??{$any})) \] )? }x;
460     my $type_with_parameter = qr{  $valid_chars+      \[  (??{$any})  \]    }x;
461
462     my $op_union = qr{ \s* \| \s* }x;
463     my $union    = qr{ $type (?: $op_union $type )+ }x;
464
465     our $any = qr{ $type | $union }x;
466
467     sub _parse_parameterized_type_constraint {
468         $_[0] =~ m{ $type_capture_parts }x;
469         return ($1, $2);
470     }
471
472     sub _detect_parameterized_type_constraint {
473         $_[0] =~ m{ ^ $type_with_parameter $ }x;
474     }
475
476     sub _parse_type_constraint_union {
477         my $given = shift;
478         my @rv;
479         while ( $given =~ m{ \G (?: $op_union )? ($type) }gcx ) {
480             push @rv => $1;
481         }
482         (pos($given) eq length($given))
483             || confess "'$given' didn't parse (parse-pos="
484                      . pos($given)
485                      . " and str-length="
486                      . length($given)
487                      . ")";
488         @rv;
489     }
490
491     sub _detect_type_constraint_union {
492         $_[0] =~ m{^ $type $op_union $type ( $op_union .* )? $}x;
493     }
494 }
495
496 ## --------------------------------------------------------
497 # define some basic built-in types
498 ## --------------------------------------------------------
499
500 type 'Any'  => where { 1 }; # meta-type including all
501 type 'Item' => where { 1 }; # base-type
502
503 subtype 'Undef'   => as 'Item' => where { !defined($_) };
504 subtype 'Defined' => as 'Item' => where {  defined($_) };
505
506 subtype 'Bool'
507     => as 'Item'
508     => where { !defined($_) || $_ eq "" || "$_" eq '1' || "$_" eq '0' };
509
510 subtype 'Value'
511     => as 'Defined'
512     => where { !ref($_) }
513     => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::Value;
514
515 subtype 'Ref'
516     => as 'Defined'
517     => where {  ref($_) }
518     => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::Ref;
519
520 subtype 'Str'
521     => as 'Value'
522     => where { 1 }
523     => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::Str;
524
525 subtype 'Num'
526     => as 'Value'
527     => where { Scalar::Util::looks_like_number($_) }
528     => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::Num;
529
530 subtype 'Int'
531     => as 'Num'
532     => where { "$_" =~ /^-?[0-9]+$/ }
533     => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::Int;
534
535 subtype 'ScalarRef' => as 'Ref' => where { ref($_) eq 'SCALAR' } => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::ScalarRef;
536 subtype 'CodeRef'   => as 'Ref' => where { ref($_) eq 'CODE'   } => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::CodeRef;
537 subtype 'RegexpRef' => as 'Ref' => where { ref($_) eq 'Regexp' } => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::RegexpRef;
538 subtype 'GlobRef'   => as 'Ref' => where { ref($_) eq 'GLOB'   } => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::GlobRef;
539
540 # NOTE:
541 # scalar filehandles are GLOB refs,
542 # but a GLOB ref is not always a filehandle
543 subtype 'FileHandle'
544     => as 'GlobRef'
545     => where { Scalar::Util::openhandle($_) || ( blessed($_) && $_->isa("IO::Handle") ) }
546     => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::FileHandle;
547
548 # NOTE:
549 # blessed(qr/.../) returns true,.. how odd
550 subtype 'Object'
551     => as 'Ref'
552     => where { blessed($_) && blessed($_) ne 'Regexp' }
553     => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::Object;
554
555 subtype 'Role'
556     => as 'Object'
557     => where { $_->can('does') }
558     => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::Role;
559
560 my $_class_name_checker = sub {
561 };
562
563 subtype 'ClassName'
564     => as 'Str'
565     => where { Class::MOP::is_class_loaded($_) }
566     => optimize_as \&Moose::Util::TypeConstraints::OptimizedConstraints::ClassName;
567
568 ## --------------------------------------------------------
569 # parameterizable types ...
570
571 $REGISTRY->add_type_constraint(
572     Moose::Meta::TypeConstraint::Parameterizable->new(
573         name                 => 'ArrayRef',
574         package_defined_in   => __PACKAGE__,
575         parent               => find_type_constraint('Ref'),
576         constraint           => sub { ref($_) eq 'ARRAY'  },
577         optimized            => \&Moose::Util::TypeConstraints::OptimizedConstraints::ArrayRef,
578         constraint_generator => sub {
579             my $type_parameter = shift;
580             my $check = $type_parameter->_compiled_type_constraint;
581             return sub {
582                 foreach my $x (@$_) {
583                     ($check->($x)) || return
584                 } 1;
585             }
586         }
587     )
588 );
589
590 $REGISTRY->add_type_constraint(
591     Moose::Meta::TypeConstraint::Parameterizable->new(
592         name                 => 'HashRef',
593         package_defined_in   => __PACKAGE__,
594         parent               => find_type_constraint('Ref'),
595         constraint           => sub { ref($_) eq 'HASH'  },
596         optimized            => \&Moose::Util::TypeConstraints::OptimizedConstraints::HashRef,
597         constraint_generator => sub {
598             my $type_parameter = shift;
599             my $check = $type_parameter->_compiled_type_constraint;
600             return sub {
601                 foreach my $x (values %$_) {
602                     ($check->($x)) || return
603                 } 1;
604             }
605         }
606     )
607 );
608
609 $REGISTRY->add_type_constraint(
610     Moose::Meta::TypeConstraint::Parameterizable->new(
611         name                 => 'Maybe',
612         package_defined_in   => __PACKAGE__,
613         parent               => find_type_constraint('Item'),
614         constraint           => sub { 1 },
615         constraint_generator => sub {
616             my $type_parameter = shift;
617             my $check = $type_parameter->_compiled_type_constraint;
618             return sub {
619                 return 1 if not(defined($_)) || $check->($_);
620                 return;
621             }
622         }
623     )
624 );
625
626 my @PARAMETERIZABLE_TYPES = map {
627     $REGISTRY->get_type_constraint($_)
628 } qw[ArrayRef HashRef Maybe];
629
630 sub get_all_parameterizable_types { @PARAMETERIZABLE_TYPES }
631 sub add_parameterizable_type {
632     my $type = shift;
633     (blessed $type && $type->isa('Moose::Meta::TypeConstraint::Parameterizable'))
634         || confess "Type must be a Moose::Meta::TypeConstraint::Parameterizable not $type";
635     push @PARAMETERIZABLE_TYPES => $type;
636 }
637
638 ## --------------------------------------------------------
639 # end of built-in types ...
640 ## --------------------------------------------------------
641
642 {
643     my @BUILTINS = list_all_type_constraints();
644     sub list_all_builtin_type_constraints { @BUILTINS }
645 }
646
647 1;
648
649 __END__
650
651 =pod
652
653 =head1 NAME
654
655 Moose::Util::TypeConstraints - Type constraint system for Moose
656
657 =head1 SYNOPSIS
658
659   use Moose::Util::TypeConstraints;
660
661   type 'Num' => where { Scalar::Util::looks_like_number($_) };
662
663   subtype 'Natural'
664       => as 'Num'
665       => where { $_ > 0 };
666
667   subtype 'NaturalLessThanTen'
668       => as 'Natural'
669       => where { $_ < 10 }
670       => message { "This number ($_) is not less than ten!" };
671
672   coerce 'Num'
673       => from 'Str'
674         => via { 0+$_ };
675
676   enum 'RGBColors' => qw(red green blue);
677
678 =head1 DESCRIPTION
679
680 This module provides Moose with the ability to create custom type
681 contraints to be used in attribute definition.
682
683 =head2 Important Caveat
684
685 This is B<NOT> a type system for Perl 5. These are type constraints,
686 and they are not used by Moose unless you tell it to. No type
687 inference is performed, expression are not typed, etc. etc. etc.
688
689 This is simply a means of creating small constraint functions which
690 can be used to simplify your own type-checking code, with the added 
691 side benefit of making your intentions clearer through self-documentation.
692
693 =head2 Slightly Less Important Caveat
694
695 It is B<always> a good idea to quote your type and subtype names.
696
697 This is to prevent perl from trying to execute the call as an indirect
698 object call. This issue only seems to come up when you have a subtype
699 the same name as a valid class, but when the issue does arise it tends
700 to be quite annoying to debug.
701
702 So for instance, this:
703
704   subtype DateTime => as Object => where { $_->isa('DateTime') };
705
706 will I<Just Work>, while this:
707
708   use DateTime;
709   subtype DateTime => as Object => where { $_->isa('DateTime') };
710
711 will fail silently and cause many headaches. The simple way to solve
712 this, as well as future proof your subtypes from classes which have
713 yet to have been created yet, is to simply do this:
714
715   use DateTime;
716   subtype 'DateTime' => as 'Object' => where { $_->isa('DateTime') };
717
718 =head2 Default Type Constraints
719
720 This module also provides a simple hierarchy for Perl 5 types, here is 
721 that hierarchy represented visually.
722
723   Any
724   Item
725       Bool
726       Maybe[`a]
727       Undef
728       Defined
729           Value
730               Num
731                 Int
732               Str
733                 ClassName
734           Ref
735               ScalarRef
736               ArrayRef[`a]
737               HashRef[`a]
738               CodeRef
739               RegexpRef
740               GlobRef
741                 FileHandle
742               Object
743                   Role
744
745 B<NOTE:> Any type followed by a type parameter C<[`a]> can be
746 parameterized, this means you can say:
747
748   ArrayRef[Int]    # an array of intergers
749   HashRef[CodeRef] # a hash of str to CODE ref mappings
750   Maybe[Str]       # value may be a string, may be undefined
751
752 B<NOTE:> The C<Undef> type constraint for the most part works
753 correctly now, but edge cases may still exist, please use it
754 sparringly.
755
756 B<NOTE:> The C<ClassName> type constraint does a complex package
757 existence check. This means that your class B<must> be loaded for
758 this type constraint to pass. I know this is not ideal for all,
759 but it is a saner restriction than most others.
760
761 =head2 Type Constraint Naming 
762
763 Since the types created by this module are global, it is suggested 
764 that you namespace your types just as you would namespace your 
765 modules. So instead of creating a I<Color> type for your B<My::Graphics>
766 module, you would call the type I<My::Graphics::Color> instead.
767
768 =head2 Use with Other Constraint Modules
769
770 This module should play fairly nicely with other constraint
771 modules with only some slight tweaking. The C<where> clause
772 in types is expected to be a C<CODE> reference which checks
773 it's first argument and returns a boolean. Since most constraint
774 modules work in a similar way, it should be simple to adapt
775 them to work with Moose.
776
777 For instance, this is how you could use it with
778 L<Declare::Constraints::Simple> to declare a completely new type.
779
780   type 'HashOfArrayOfObjects'
781       => IsHashRef(
782           -keys   => HasLength,
783           -values => IsArrayRef( IsObject ));
784
785 For more examples see the F<t/200_examples/204_example_w_DCS.t> 
786 test file.
787
788 Here is an example of using L<Test::Deep> and it's non-test
789 related C<eq_deeply> function.
790
791   type 'ArrayOfHashOfBarsAndRandomNumbers'
792       => where {
793           eq_deeply($_,
794               array_each(subhashof({
795                   bar           => isa('Bar'),
796                   random_number => ignore()
797               })))
798         };
799
800 For a complete example see the 
801 F<t/200_examples/205_example_w_TestDeep.t> test file.
802
803 =head1 FUNCTIONS
804
805 =head2 Type Constraint Constructors
806
807 The following functions are used to create type constraints.
808 They will then register the type constraints in a global store
809 where Moose can get to them if it needs to.
810
811 See the L<SYNOPSIS> for an example of how to use these.
812
813 =over 4
814
815 =item B<type ($name, $where_clause)>
816
817 This creates a base type, which has no parent.
818
819 =item B<subtype ($name, $parent, $where_clause, ?$message)>
820
821 This creates a named subtype.
822
823 =item B<subtype ($parent, $where_clause, ?$message)>
824
825 This creates an unnamed subtype and will return the type
826 constraint meta-object, which will be an instance of
827 L<Moose::Meta::TypeConstraint>.
828
829 =item B<class_type ($class, ?$options)>
830
831 Creates a type constraint with the name C<$class> and the metaclass
832 L<Moose::Meta::TypeConstraint::Class>.
833
834 =item B<role_type ($role, ?$options)>
835
836 Creates a type constraint with the name C<$role> and the metaclass
837 L<Moose::Meta::TypeConstraint::Role>.
838
839 =item B<enum ($name, @values)>
840
841 This will create a basic subtype for a given set of strings.
842 The resulting constraint will be a subtype of C<Str> and
843 will match any of the items in C<@values>. It is case sensitive.
844 See the L<SYNOPSIS> for a simple example.
845
846 B<NOTE:> This is not a true proper enum type, it is simple
847 a convient constraint builder.
848
849 =item B<enum (\@values)>
850
851 If passed an ARRAY reference instead of the C<$name>, C<@values> pair,
852 this will create an unnamed enum. This can then be used in an attribute
853 definition like so:
854
855   has 'sort_order' => (
856       is  => 'ro',
857       isa => enum([qw[ ascending descending ]]),
858   );
859
860 =item B<as>
861
862 This is just sugar for the type constraint construction syntax.
863
864 =item B<where>
865
866 This is just sugar for the type constraint construction syntax.
867
868 =item B<message>
869
870 This is just sugar for the type constraint construction syntax.
871
872 =item B<optimize_as>
873
874 This can be used to define a "hand optimized" version of your
875 type constraint which can be used to avoid traversing a subtype
876 constraint heirarchy.
877
878 B<NOTE:> You should only use this if you know what you are doing,
879 all the built in types use this, so your subtypes (assuming they
880 are shallow) will not likely need to use this.
881
882 =back
883
884 =head2 Type Coercion Constructors
885
886 Type constraints can also contain type coercions as well. If you
887 ask your accessor to coerce, then Moose will run the type-coercion
888 code first, followed by the type constraint check. This feature
889 should be used carefully as it is very powerful and could easily
890 take off a limb if you are not careful.
891
892 See the L<SYNOPSIS> for an example of how to use these.
893
894 =over 4
895
896 =item B<coerce>
897
898 =item B<from>
899
900 This is just sugar for the type coercion construction syntax.
901
902 =item B<via>
903
904 This is just sugar for the type coercion construction syntax.
905
906 =back
907
908 =head2 Type Constraint Construction & Locating
909
910 =over 4
911
912 =item B<create_type_constraint_union ($pipe_seperated_types | @type_constraint_names)>
913
914 Given string with C<$pipe_seperated_types> or a list of C<@type_constraint_names>,
915 this will return a L<Moose::Meta::TypeConstraint::Union> instance.
916
917 =item B<create_parameterized_type_constraint ($type_name)>
918
919 Given a C<$type_name> in the form of:
920
921   BaseType[ContainerType]
922
923 this will extract the base type and container type and build an instance of
924 L<Moose::Meta::TypeConstraint::Parameterized> for it.
925
926 =item B<create_class_type_constraint ($class, ?$options)>
927
928 Given a class name it will create a new L<Moose::Meta::TypeConstraint::Class>
929 object for that class name.
930
931 =item B<create_role_type_constraint ($role, ?$options)>
932
933 Given a role name it will create a new L<Moose::Meta::TypeConstraint::Role>
934 object for that role name.
935
936 =item B<create_enum_type_constraint ($name, $values)>
937
938 =item B<find_or_parse_type_constraint ($type_name)>
939
940 This will attempt to find or create a type constraint given the a C<$type_name>.
941 If it cannot find it in the registry, it will see if it should be a union or
942 container type an create one if appropriate
943
944 =item B<find_or_create_type_constraint ($type_name, ?$options_for_anon_type)>
945
946 This function will first call C<find_or_parse_type_constraint> with the type name.
947
948 If no type is found or created, but C<$options_for_anon_type> are provided, it
949 will create the corresponding type.
950
951 This was used by the C<does> and C<isa> parameters to L<Moose::Meta::Attribute>
952 and are now superseded by C<find_or_create_isa_type_constraint> and
953 C<find_or_create_does_type_constraint>.
954
955 =item B<find_or_create_isa_type_constraint ($type_name)>
956
957 =item B<find_or_create_does_type_constraint ($type_name)>
958
959 Attempts to parse the type name using L<find_or_parse_type_constraint> and if
960 no appropriate constraint is found will create a new anonymous one.
961
962 The C<isa> variant will use C<create_class_type_constraint> and the C<does>
963 variant will use C<create_role_type_constraint>.
964
965 =item B<find_type_constraint ($type_name)>
966
967 This function can be used to locate a specific type constraint
968 meta-object, of the class L<Moose::Meta::TypeConstraint> or a
969 derivative. What you do with it from there is up to you :)
970
971 =item B<register_type_constraint ($type_object)>
972
973 This function will register a named type constraint with the type registry.
974
975 =item B<get_type_constraint_registry>
976
977 Fetch the L<Moose::Meta::TypeConstraint::Registry> object which
978 keeps track of all type constraints.
979
980 =item B<list_all_type_constraints>
981
982 This will return a list of type constraint names, you can then
983 fetch them using C<find_type_constraint ($type_name)> if you
984 want to.
985
986 =item B<list_all_builtin_type_constraints>
987
988 This will return a list of builtin type constraints, meaning,
989 those which are defined in this module. See the section
990 labeled L<Default Type Constraints> for a complete list.
991
992 =item B<export_type_constraints_as_functions>
993
994 This will export all the current type constraints as functions
995 into the caller's namespace. Right now, this is mostly used for
996 testing, but it might prove useful to others.
997
998 =item B<get_all_parameterizable_types>
999
1000 This returns all the parameterizable types that have been registered.
1001
1002 =item B<add_parameterizable_type ($type)>
1003
1004 Adds C<$type> to the list of parameterizable types
1005
1006 =back
1007
1008 =head2 Namespace Management
1009
1010 =over 4
1011
1012 =item B<unimport>
1013
1014 This will remove all the type constraint keywords from the
1015 calling class namespace.
1016
1017 =back
1018
1019 =head1 BUGS
1020
1021 All complex software has bugs lurking in it, and this module is no
1022 exception. If you find a bug please either email me, or add the bug
1023 to cpan-RT.
1024
1025 =head1 AUTHOR
1026
1027 Stevan Little E<lt>stevan@iinteractive.comE<gt>
1028
1029 =head1 COPYRIGHT AND LICENSE
1030
1031 Copyright 2006-2008 by Infinity Interactive, Inc.
1032
1033 L<http://www.iinteractive.com>
1034
1035 This library is free software; you can redistribute it and/or modify
1036 it under the same terms as Perl itself.
1037
1038 =cut