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