parameterized contstraints when subclassing should create a parameterizable constraint
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Parameterizable.pm
CommitLineData
7e4e1ad4 1package Moose::Meta::TypeConstraint::Parameterizable;
2
3use strict;
4use warnings;
5use metaclass;
6
f5bc97e5 7our $VERSION = '0.60';
75b95414 8$VERSION = eval $VERSION;
7e4e1ad4 9our $AUTHORITY = 'cpan:STEVAN';
10
11use base 'Moose::Meta::TypeConstraint';
90e78884 12use Moose::Meta::TypeConstraint::Parameterized;
13use Moose::Util::TypeConstraints ();
7e4e1ad4 14
15__PACKAGE__->meta->add_attribute('constraint_generator' => (
16 accessor => 'constraint_generator',
17 predicate => 'has_constraint_generator',
18));
19
20sub generate_constraint_for {
21 my ($self, $type) = @_;
22
23 return unless $self->has_constraint_generator;
24
25 return $self->constraint_generator->($type->type_parameter)
26 if $type->is_subtype_of($self->name);
27
28 return $self->_can_coerce_constraint_from($type)
29 if $self->has_coercion
30 && $self->coercion->has_coercion_for_type($type->parent->name);
31
32 return;
33}
34
35sub _can_coerce_constraint_from {
36 my ($self, $type) = @_;
37 my $coercion = $self->coercion;
38 my $constraint = $self->constraint_generator->($type->type_parameter);
39 return sub {
40 local $_ = $coercion->coerce($_);
41 $constraint->(@_);
42 };
43}
44
90e78884 45sub _parse_type_parameter {
46 my ($self, $type_parameter) = @_;
47 return Moose::Util::TypeConstraints::find_or_create_isa_type_constraint($type_parameter);
48}
49
50sub parameterize {
51 my ($self, $type_parameter) = @_;
52
53 my $contained_tc = $self->_parse_type_parameter($type_parameter);
54
55 if ( $contained_tc->isa('Moose::Meta::TypeConstraint') ) {
56 my $tc_name = $self->name . '[' . $contained_tc->name . ']';
57 return Moose::Meta::TypeConstraint::Parameterized->new(
58 name => $tc_name,
59 parent => $self,
60 type_parameter => $contained_tc,
61 );
62 }
63 else {
64 Moose->throw_error("The type parameter must be a Moose meta type");
65 }
66}
67
7e4e1ad4 68
691;
70
71__END__
72
73
74=pod
75
76=head1 NAME
77
78Moose::Meta::TypeConstraint::Parameterizable - Higher Order type constraints for Moose
79
80=head1 METHODS
81
82=over 4
83
84=item B<constraint_generator>
85
86=item B<has_constraint_generator>
87
88=item B<generate_constraint_for>
89
90e78884 90=item B<parameterize>
91
92Given a single type constraint string, this method parses the string
93and parameterizes the type based on the parsed string.
94
7e4e1ad4 95=item B<meta>
96
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
111Copyright 2006-2008 by Infinity Interactive, Inc.
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