make github the primary repository
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Parameterizable.pm
CommitLineData
7e4e1ad4 1package Moose::Meta::TypeConstraint::Parameterizable;
2
3use strict;
4use warnings;
5use metaclass;
6
7e4e1ad4 7use base 'Moose::Meta::TypeConstraint';
90e78884 8use Moose::Meta::TypeConstraint::Parameterized;
9use Moose::Util::TypeConstraints ();
7e4e1ad4 10
4e8d7b8c 11use Carp 'confess';
12
7e4e1ad4 13__PACKAGE__->meta->add_attribute('constraint_generator' => (
14 accessor => 'constraint_generator',
15 predicate => 'has_constraint_generator',
dc2b7cc8 16 Class::MOP::_definition_context(),
7e4e1ad4 17));
18
7fb4b360 19__PACKAGE__->meta->add_attribute('inline_generator' => (
20 accessor => 'inline_generator',
21 predicate => 'has_inline_generator',
dc2b7cc8 22 Class::MOP::_definition_context(),
7fb4b360 23));
24
7e4e1ad4 25sub generate_constraint_for {
26 my ($self, $type) = @_;
d03bd989 27
7e4e1ad4 28 return unless $self->has_constraint_generator;
d03bd989 29
7e4e1ad4 30 return $self->constraint_generator->($type->type_parameter)
31 if $type->is_subtype_of($self->name);
d03bd989 32
7e4e1ad4 33 return $self->_can_coerce_constraint_from($type)
34 if $self->has_coercion
35 && $self->coercion->has_coercion_for_type($type->parent->name);
d03bd989 36
7e4e1ad4 37 return;
38}
39
40sub _can_coerce_constraint_from {
41 my ($self, $type) = @_;
42 my $coercion = $self->coercion;
43 my $constraint = $self->constraint_generator->($type->type_parameter);
44 return sub {
45 local $_ = $coercion->coerce($_);
46 $constraint->(@_);
47 };
48}
49
b612a613 50sub generate_inline_for {
51 my ($self, $type, $val) = @_;
52
4e8d7b8c 53 confess "Can't generate an inline constraint for $type, since none "
54 . "was defined"
55 unless $self->has_inline_generator;
b612a613 56
e6fff671 57 return '( do { ' . $self->inline_generator->( $self, $type, $val ) . ' } )';
b612a613 58}
59
90e78884 60sub _parse_type_parameter {
61 my ($self, $type_parameter) = @_;
62 return Moose::Util::TypeConstraints::find_or_create_isa_type_constraint($type_parameter);
63}
64
65sub parameterize {
66 my ($self, $type_parameter) = @_;
67
68 my $contained_tc = $self->_parse_type_parameter($type_parameter);
d03bd989 69
0c4c2633 70 ## The type parameter should be a subtype of the parent's type parameter
71 ## if there is one.
d03bd989 72
0c4c2633 73 if(my $parent = $self->parent) {
74 if($parent->can('type_parameter')) {
70ea9161 75 unless ( $contained_tc->is_a_type_of($parent->type_parameter) ) {
76 require Moose;
77 Moose->throw_error("$type_parameter is not a subtype of ".$parent->type_parameter);
78 }
0c4c2633 79 }
80 }
90e78884 81
82 if ( $contained_tc->isa('Moose::Meta::TypeConstraint') ) {
83 my $tc_name = $self->name . '[' . $contained_tc->name . ']';
84 return Moose::Meta::TypeConstraint::Parameterized->new(
7fb4b360 85 name => $tc_name,
86 parent => $self,
87 type_parameter => $contained_tc,
88 parameterized_from => $self,
90e78884 89 );
90 }
91 else {
70ea9161 92 require Moose;
90e78884 93 Moose->throw_error("The type parameter must be a Moose meta type");
94 }
95}
96
7e4e1ad4 97
981;
99
ad46f524 100# ABSTRACT: Type constraints which can take a parameter (ArrayRef)
101
7e4e1ad4 102__END__
103
104
105=pod
106
f6fdcfe7 107=head1 DESCRIPTION
7e4e1ad4 108
f6fdcfe7 109This class represents a parameterizable type constraint. This is a
110type constraint like C<ArrayRef> or C<HashRef>, that can be
111parameterized and made more specific by specifying a contained
112type. For example, instead of just an C<ArrayRef> of anything, you can
113specify that is an C<ArrayRef[Int]>.
7e4e1ad4 114
f6fdcfe7 115A parameterizable constraint should not be used as an attribute type
116constraint. Instead, when parameterized it creates a
117L<Moose::Meta::TypeConstraint::Parameterized> which should be used.
7e4e1ad4 118
f6fdcfe7 119=head1 INHERITANCE
7e4e1ad4 120
f6fdcfe7 121C<Moose::Meta::TypeConstraint::Parameterizable> is a subclass of
122L<Moose::Meta::TypeConstraint>.
90e78884 123
f6fdcfe7 124=head1 METHODS
7e4e1ad4 125
f6fdcfe7 126This class is intentionally not documented because the API is
127confusing and needs some work.
7e4e1ad4 128
129=head1 BUGS
130
d4048ef3 131See L<Moose/BUGS> for details on reporting bugs.
7e4e1ad4 132
7e4e1ad4 133=cut