838122505336c57460543808cd5b6a5d16654b10
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Parameterized.pm
1 package Moose::Meta::TypeConstraint::Parameterized;
2
3 use strict;
4 use warnings;
5 use metaclass;
6
7 use Scalar::Util 'blessed';
8 use Moose::Util::TypeConstraints;
9 use Moose::Meta::TypeConstraint::Parameterizable;
10
11 our $VERSION   = '0.70';
12 $VERSION = eval $VERSION;
13 our $AUTHORITY = 'cpan:STEVAN';
14
15 use base 'Moose::Meta::TypeConstraint';
16
17 __PACKAGE__->meta->add_attribute('type_parameter' => (
18     accessor  => 'type_parameter',
19     predicate => 'has_type_parameter',
20 ));
21
22 sub equals {
23     my ( $self, $type_or_name ) = @_;
24
25     my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
26
27     return unless $other->isa(__PACKAGE__);
28     
29     return (
30         $self->type_parameter->equals( $other->type_parameter )
31             and
32         $self->parent->equals( $other->parent )
33     );
34 }
35
36 sub compile_type_constraint {
37     my $self = shift;
38     
39     ($self->has_type_parameter)
40         || Moose->throw_error("You cannot create a Higher Order type without a type parameter");
41         
42     my $type_parameter = $self->type_parameter;
43     
44     (blessed $type_parameter && $type_parameter->isa('Moose::Meta::TypeConstraint'))
45         || Moose->throw_error("The type parameter must be a Moose meta type");
46
47     foreach my $type (Moose::Util::TypeConstraints::get_all_parameterizable_types()) {
48         if (my $constraint = $type->generate_constraint_for($self)) {
49             $self->_set_constraint($constraint);
50             return $self->SUPER::compile_type_constraint;            
51         }
52     }
53     
54     # if we get here, then we couldn't 
55     # find a way to parameterize this type
56     Moose->throw_error("The " . $self->name . " constraint cannot be used, because " 
57           . $self->parent->name . " doesn't subtype or coerce from a parameterizable type.");
58 }
59
60 sub create_child_type {
61     my ($self, %opts) = @_;
62     return Moose::Meta::TypeConstraint::Parameterizable->new(%opts, parent=>$self);
63 }
64
65 1;
66
67 __END__
68
69
70 =pod
71
72 =head1 NAME
73
74 Moose::Meta::TypeConstraint::Parameterized - Higher Order type constraints for Moose
75
76 =head1 METHODS
77
78 =over 4
79
80 =item B<compile_type_constraint>
81
82 =item B<type_parameter>
83
84 =item B<has_type_parameter>
85
86 =item B<meta>
87
88 =item B<equals>
89
90 =item B<create_child_type>
91
92 =back
93
94 =head1 BUGS
95
96 All complex software has bugs lurking in it, and this module is no 
97 exception. If you find a bug please either email me, or add the bug
98 to cpan-RT.
99
100 =head1 AUTHOR
101
102 Stevan Little E<lt>stevan@iinteractive.comE<gt>
103
104 =head1 COPYRIGHT AND LICENSE
105
106 Copyright 2006-2009 by Infinity Interactive, Inc.
107
108 L<http://www.iinteractive.com>
109
110 This library is free software; you can redistribute it and/or modify
111 it under the same terms as Perl itself.
112
113 =cut