finished Optional, wrote docs and tests for it
[gitmo/MooseX-Types-Structured.git] / lib / MooseX / Meta / TypeConstraint / Structured.pm
CommitLineData
59deb858 1package ## Hide from PAUSE
2 MooseX::Meta::TypeConstraint::Structured;
a30fa891 3
4use Moose;
5use Moose::Util::TypeConstraints ();
16aea7bf 6use MooseX::Meta::TypeCoercion::Structured;
a30fa891 7extends 'Moose::Meta::TypeConstraint';
8
9=head1 NAME
10
11MooseX::Meta::TypeConstraint::Structured - Structured type constraints.
12
13=head1 DESCRIPTION
14
15A structure is a set of L<Moose::Meta::TypeConstraint> that are 'aggregated' in
16such a way as that they are all applied to an incoming list of arguments. The
17idea here is that a Type Constraint could be something like, "An Int followed by
18an Int and then a Str" and that this could be done so with a declaration like:
19
20 Tuple[Int,Int,Str]; ## Example syntax
21
22So a structure is a list of Type constraints (the "Int,Int,Str" in the above
23example) which are intended to function together.
24
25=head1 ATTRIBUTES
26
27This class defines the following attributes.
28
29=head2 type_constraints
30
31A list of L<Moose::Meta::TypeConstraint> objects.
32
33=cut
34
35has 'type_constraints' => (
36 is=>'ro',
37 isa=>'Ref',
38 predicate=>'has_type_constraints',
39);
40
41=head2 constraint_generator
42
43A subref or closure that contains the way we validate incoming values against
44a set of type constraints.
45
46=cut
47
e327145a 48has 'constraint_generator' => (
49 is=>'ro',
50 isa=>'CodeRef',
51 predicate=>'has_constraint_generator',
52);
a30fa891 53
54=head1 METHODS
55
56This class defines the following methods.
57
16aea7bf 58=head2 new
59
60Initialization stuff.
61
62=cut
63
64around 'new' => sub {
65 my ($new, $class, @args) = @_;
66 my $self = $class->$new(@args);
67 $self->coercion(MooseX::Meta::TypeCoercion::Structured->new(
68 type_constraint => $self,
69 ));
70 return $self;
71};
72
a30fa891 73=head2 generate_constraint_for ($type_constraints)
74
75Given some type constraints, use them to generate validation rules for an ref
76of values (to be passed at check time)
77
78=cut
79
80sub generate_constraint_for {
81 my ($self, $type_constraints) = @_;
82 return sub {
e327145a 83 my (@args) = @_;
a30fa891 84 my $constraint_generator = $self->constraint_generator;
e327145a 85 return $constraint_generator->($type_constraints, @args);
a30fa891 86 };
87}
88
89=head2 parameterize (@type_constraints)
90
91Given a ref of type constraints, create a structured type.
92
93=cut
94
95sub parameterize {
e327145a 96
16aea7bf 97 my ($self, @type_constraints) = @_;
98 my $class = ref $self;
a30fa891 99 my $name = $self->name .'['. join(',', map {"$_"} @type_constraints) .']';
e327145a 100 my $constraint_generator = $self->__infer_constraint_generator;
67a8bc04 101
16aea7bf 102 return $class->new(
a30fa891 103 name => $name,
104 parent => $self,
105 type_constraints => \@type_constraints,
e327145a 106 constraint_generator => $constraint_generator,
107 );
108}
109
110=head2 __infer_constraint_generator
111
112This returns a CODEREF which generates a suitable constraint generator. Not
113user servicable, you'll never call this directly.
114
115=cut
116
117sub __infer_constraint_generator {
118 my ($self) = @_;
119 if($self->has_constraint_generator) {
120 return $self->constraint_generator;
121 } else {
122 return sub {
123 ## I'm not sure about this stuff but everything seems to work
67a8bc04 124 my $tc = shift @_;
125 my $merged_tc = [@$tc, @{$self->parent->type_constraints}];
e327145a 126 $self->constraint->($merged_tc, @_);
127 };
128 }
a30fa891 129}
130
131=head2 compile_type_constraint
132
133hook into compile_type_constraint so we can set the correct validation rules.
134
135=cut
136
137around 'compile_type_constraint' => sub {
138 my ($compile_type_constraint, $self, @args) = @_;
139
140 if($self->has_type_constraints) {
141 my $type_constraints = $self->type_constraints;
142 my $constraint = $self->generate_constraint_for($type_constraints);
143 $self->_set_constraint($constraint);
144 }
145
146 return $self->$compile_type_constraint(@args);
147};
148
a4a88fef 149=head2 create_child_type
150
151modifier to make sure we get the constraint_generator
152
153=cut
154
155around 'create_child_type' => sub {
156 my ($create_child_type, $self, %opts) = @_;
157 return $self->$create_child_type(
158 %opts,
190a34eb 159 constraint_generator => $self->__infer_constraint_generator,
a4a88fef 160 );
161};
162
163=head2 is_a_type_of
164
165=head2 is_subtype_of
166
167=head2 equals
168
16aea7bf 169Override the base class behavior.
170
171=cut
172
173sub equals {
174 my ( $self, $type_or_name ) = @_;
175 my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
176
177 return unless $other->isa(__PACKAGE__);
178
179 return (
180 $self->type_constraints_equals($other)
181 and
182 $self->parent->equals( $other->parent )
183 );
184}
185
186=head2 type_constraints_equals
187
188Checks to see if the internal type contraints are equal.
189
190=cut
191
192sub type_constraints_equals {
193 my ($self, $other) = @_;
194 my @self_type_constraints = @{$self->type_constraints||[]};
195 my @other_type_constraints = @{$other->type_constraints||[]};
196
197 ## Incoming ay be either arrayref or hashref, need top compare both
198 while(@self_type_constraints) {
199 my $self_type_constraint = shift @self_type_constraints;
200 my $other_type_constraint = shift @other_type_constraints
201 || return; ## $other needs the same number of children.
202
203 if( ref $self_type_constraint) {
204 $self_type_constraint->equals($other_type_constraint)
205 || return; ## type constraints obviously need top be equal
206 } else {
207 $self_type_constraint eq $other_type_constraint
208 || return; ## strings should be equal
209 }
210
211 }
212
213 return 1; ##If we get this far, everything is good.
214}
215
a4a88fef 216=head2 get_message
217
16aea7bf 218May want to override this to set a more useful error message
a4a88fef 219
a30fa891 220=head1 SEE ALSO
221
222The following modules or resources may be of interest.
223
224L<Moose>, L<Moose::Meta::TypeConstraint>
225
226=head1 AUTHOR
227
228John Napiorkowski, C<< <jjnapiork@cpan.org> >>
229
230=head1 COPYRIGHT & LICENSE
231
232This program is free software; you can redistribute it and/or modify
233it under the same terms as Perl itself.
234
235=cut
236
2371;