fixed some tabs, a bit of docs, last checkin for the evening
[gitmo/MooseX-Dependent.git] / lib / MooseX / Meta / TypeConstraint / Dependent.pm
CommitLineData
3cfd35fd 1package ## Hide from PAUSE
2 MooseX::Meta::TypeConstraint::Dependent;
3
4use Moose;
5use Moose::Util::TypeConstraints ();
6use MooseX::Meta::TypeCoercion::Dependent;
7extends 'Moose::Meta::TypeConstraint';
8
9=head1 NAME
10
11MooseX::Meta::TypeConstraint::Dependent - Metaclass for Dependent type constraints.
12
13=head1 DESCRIPTION
14
15see L<MooseX::Types::Dependent> for examples and details of how to use dependent
16types. This class is a subclass of L<Moose::Meta::TypeConstraint> which
17provides the gut functionality to enable dependent type constraints.
18
19=head1 ATTRIBUTES
20
21This class defines the following attributes.
22
23=head2 dependent_type_constraint
24
25The type constraint whose validity is being made dependent on a value that is a
26L</constraining_type_constraint>
27
28=cut
29
30has 'dependent_type_constraint' => (
31 is=>'ro',
3a5dab74 32 isa=>'Object',
3cfd35fd 33 predicate=>'has_dependent_type_constraint',
3a5dab74 34 handles=>{
35 check_dependent=>'check',
36 },
3cfd35fd 37);
38
39=head2 constraining_type_constraint
40
41This is a type constraint which defines what kind of value is allowed to be the
42constraining value of the depending type.
43
44=cut
45
46has 'constraining_type_constraint' => (
47 is=>'ro',
3a5dab74 48 isa=>'Object',
3cfd35fd 49 predicate=>'has_constraining_type_constraint',
3a5dab74 50 handles=>{
51 check_constraining=>'check',
52 },
3cfd35fd 53);
54
3a5dab74 55=head2 comparison_callback
3cfd35fd 56
57This is a callback which returns a boolean value. It get's passed the value
58L</constraining_type_constraint> validates as well as the check value.
59
60This callback is executed in addition to anything you put into a 'where' clause.
61However, the 'where' clause only get's the check value.
62
63Exercise some sanity, this should be limited to actual comparision operations,
64not as a sneaky way to mess with the constraining value.
65
01a12424 66This should return a Bool, suitable for ->check (That is true for valid, false
67for fail).
68
3cfd35fd 69=cut
70
3a5dab74 71has 'comparison_callback' => (
3cfd35fd 72 is=>'ro',
73 isa=>'CodeRef',
3a5dab74 74 predicate=>'has_comparison_callback',
3cfd35fd 75);
76
77=head2 constraint_generator
78
79A subref or closure that contains the way we validate incoming values against
80a set of type constraints.
81
82=cut
83
84has 'constraint_generator' => (
85 is=>'ro',
86 isa=>'CodeRef',
87 predicate=>'has_constraint_generator',
3a5dab74 88 required=>1,
3cfd35fd 89);
90
91=head1 METHODS
92
93This class defines the following methods.
94
95=head2 new
96
97Initialization stuff.
98
99=cut
100
101around 'new' => sub {
102 my ($new, $class, @args) = @_;
103 my $self = $class->$new(@args);
3a5dab74 104 $self->coercion(MooseX::Meta::TypeCoercion::Dependent->new(
3cfd35fd 105 type_constraint => $self,
106 ));
107 return $self;
108};
109
110=head2 generate_constraint_for ($type_constraints)
111
112Given some type constraints, use them to generate validation rules for an ref
113of values (to be passed at check time)
114
115=cut
116
117sub generate_constraint_for {
9b6d2e22 118 my ($self, $callback) = @_;
3a5dab74 119 return sub {
3313d2a6 120 my ($dependent_pair) = @_;
9b6d2e22 121 my ($dependent, $constraining) = @$dependent_pair;
3313d2a6 122
123 ## First need to test the bits
9b6d2e22 124 unless($self->check_dependent($dependent)) {
3313d2a6 125 return;
126 }
127
9b6d2e22 128 unless($self->check_constraining($constraining)) {
3313d2a6 129 return;
130 }
131
3cfd35fd 132 my $constraint_generator = $self->constraint_generator;
3a5dab74 133 return $constraint_generator->(
9b6d2e22 134 $dependent,
3a5dab74 135 $callback,
9b6d2e22 136 $constraining,
3a5dab74 137 );
3cfd35fd 138 };
139}
140
3a5dab74 141=head2 parameterize ($dependent, $callback, $constraining)
3cfd35fd 142
143Given a ref of type constraints, create a structured type.
144
145=cut
146
147sub parameterize {
9b6d2e22 148 my ($self, $dependent_tc, $callback, $constraining_tc) = @_;
3cfd35fd 149 my $class = ref $self;
9b6d2e22 150 my $name = $self->_generate_subtype_name($dependent_tc, $callback, $constraining_tc);
3cfd35fd 151 my $constraint_generator = $self->__infer_constraint_generator;
152
153 return $class->new(
154 name => $name,
155 parent => $self,
9b6d2e22 156 dependent_type_constraint=>$dependent_tc,
3a5dab74 157 comparison_callback=>$callback,
3cfd35fd 158 constraint_generator => $constraint_generator,
9b6d2e22 159 constraining_type_constraint => $constraining_tc,
3cfd35fd 160 );
161}
162
163=head2 _generate_subtype_name
164
165Returns a name for the dependent type that should be unique
166
167=cut
168
169sub _generate_subtype_name {
9b6d2e22 170 my ($self, $dependent_tc, $callback, $constraining_tc) = @_;
3cfd35fd 171 return sprintf(
3a5dab74 172 "%s_depends_on_%s_via_%s",
9b6d2e22 173 $dependent_tc, $constraining_tc, $callback,
3cfd35fd 174 );
175}
176
177=head2 __infer_constraint_generator
178
179This returns a CODEREF which generates a suitable constraint generator. Not
180user servicable, you'll never call this directly.
181
182 TBD, this is definitely going to need some work.
183
184=cut
185
186sub __infer_constraint_generator {
187 my ($self) = @_;
188 if($self->has_constraint_generator) {
189 return $self->constraint_generator;
190 } else {
9b6d2e22 191 warn "I'm doing the questioning infer generator thing";
3cfd35fd 192 return sub {
193 ## I'm not sure about this stuff but everything seems to work
194 my $tc = shift @_;
195 my $merged_tc = [
196 @$tc,
3a5dab74 197 $self->comparison_callback,
3cfd35fd 198 $self->constraining_type_constraint,
199 ];
200
201 $self->constraint->($merged_tc, @_);
202 };
203 }
204}
205
206=head2 compile_type_constraint
207
208hook into compile_type_constraint so we can set the correct validation rules.
209
210=cut
211
212around 'compile_type_constraint' => sub {
3a5dab74 213 my ($compile_type_constraint, $self) = @_;
3cfd35fd 214
3a5dab74 215 if($self->has_comparison_callback &&
216 $self->has_constraining_type_constraint) {
217 my $generated_constraint = $self->generate_constraint_for(
218 $self->comparison_callback,
3a5dab74 219 );
220 $self->_set_constraint($generated_constraint);
3cfd35fd 221 }
222
3a5dab74 223 return $self->$compile_type_constraint;
3cfd35fd 224};
225
226=head2 create_child_type
227
228modifier to make sure we get the constraint_generator
229
9b6d2e22 230=cut
231
3cfd35fd 232around 'create_child_type' => sub {
233 my ($create_child_type, $self, %opts) = @_;
234 return $self->$create_child_type(
235 %opts,
236 constraint_generator => $self->__infer_constraint_generator,
237 );
238};
239
240=head2 is_a_type_of
241
242=head2 is_subtype_of
243
244=head2 equals
245
246Override the base class behavior.
247
248 TBD
249
250sub equals {
251 my ( $self, $type_or_name ) = @_;
252 my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
253
254 return unless $other->isa(__PACKAGE__);
255
256 return (
257 $self->type_constraints_equals($other)
258 and
259 $self->parent->equals( $other->parent )
260 );
261}
262
263=head2 type_constraints_equals
264
265Checks to see if the internal type contraints are equal.
266
267 TBD
268
269sub type_constraints_equals {
270 my ($self, $other) = @_;
271 my @self_type_constraints = @{$self->type_constraints||[]};
272 my @other_type_constraints = @{$other->type_constraints||[]};
273
274 ## Incoming ay be either arrayref or hashref, need top compare both
275 while(@self_type_constraints) {
276 my $self_type_constraint = shift @self_type_constraints;
277 my $other_type_constraint = shift @other_type_constraints
278 || return; ## $other needs the same number of children.
279
280 if( ref $self_type_constraint) {
281 $self_type_constraint->equals($other_type_constraint)
282 || return; ## type constraints obviously need top be equal
283 } else {
284 $self_type_constraint eq $other_type_constraint
285 || return; ## strings should be equal
286 }
287
288 }
289
290 return 1; ##If we get this far, everything is good.
291}
292
293=head2 get_message
294
295Give you a better peek into what's causing the error. For now we stringify the
296incoming deep value with L<Devel::PartialDump> and pass that on to either your
297custom error message or the default one. In the future we'll try to provide a
298more complete stack trace of the actual offending elements
299
300 TBD
301
302around 'get_message' => sub {
303 my ($get_message, $self, $value) = @_;
304 my $new_value = Devel::PartialDump::dump($value);
305 return $self->$get_message($new_value);
306};
307
308=head1 SEE ALSO
309
310The following modules or resources may be of interest.
311
312L<Moose>, L<Moose::Meta::TypeConstraint>
313
314=head1 AUTHOR
315
316John Napiorkowski, C<< <jjnapiork@cpan.org> >>
317
318=head1 COPYRIGHT & LICENSE
319
320This program is free software; you can redistribute it and/or modify
321it under the same terms as Perl itself.
322
323=cut
324
3a5dab74 325__PACKAGE__->meta->make_immutable;