properly supporting a where clause in the suger example and proof you can customize...
[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
1622ae1b 240=head2 constraint
241
242We modify constraint so that the value pass is automatically dereferenced
243
bcd7eb42 244=cut
245
1622ae1b 246around 'constraint' => sub {
247 my ($constraint, $self) = @_;
248 return sub {
249 my ($arg) = @_;
bcd7eb42 250 $self->$constraint->($arg);
1622ae1b 251 };
252};
253
3cfd35fd 254=head2 is_a_type_of
255
256=head2 is_subtype_of
257
258=head2 equals
259
260Override the base class behavior.
261
262 TBD
263
264sub equals {
265 my ( $self, $type_or_name ) = @_;
266 my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
267
268 return unless $other->isa(__PACKAGE__);
269
270 return (
271 $self->type_constraints_equals($other)
272 and
273 $self->parent->equals( $other->parent )
274 );
275}
276
277=head2 type_constraints_equals
278
279Checks to see if the internal type contraints are equal.
280
281 TBD
282
283sub type_constraints_equals {
284 my ($self, $other) = @_;
285 my @self_type_constraints = @{$self->type_constraints||[]};
286 my @other_type_constraints = @{$other->type_constraints||[]};
287
288 ## Incoming ay be either arrayref or hashref, need top compare both
289 while(@self_type_constraints) {
290 my $self_type_constraint = shift @self_type_constraints;
291 my $other_type_constraint = shift @other_type_constraints
292 || return; ## $other needs the same number of children.
293
294 if( ref $self_type_constraint) {
295 $self_type_constraint->equals($other_type_constraint)
296 || return; ## type constraints obviously need top be equal
297 } else {
298 $self_type_constraint eq $other_type_constraint
299 || return; ## strings should be equal
300 }
301
302 }
303
304 return 1; ##If we get this far, everything is good.
305}
306
307=head2 get_message
308
309Give you a better peek into what's causing the error. For now we stringify the
310incoming deep value with L<Devel::PartialDump> and pass that on to either your
311custom error message or the default one. In the future we'll try to provide a
312more complete stack trace of the actual offending elements
313
314 TBD
315
316around 'get_message' => sub {
317 my ($get_message, $self, $value) = @_;
318 my $new_value = Devel::PartialDump::dump($value);
319 return $self->$get_message($new_value);
320};
321
322=head1 SEE ALSO
323
324The following modules or resources may be of interest.
325
326L<Moose>, L<Moose::Meta::TypeConstraint>
327
328=head1 AUTHOR
329
330John Napiorkowski, C<< <jjnapiork@cpan.org> >>
331
332=head1 COPYRIGHT & LICENSE
333
334This program is free software; you can redistribute it and/or modify
335it under the same terms as Perl itself.
336
337=cut
338
3a5dab74 339__PACKAGE__->meta->make_immutable;