switch to ->check([arrayref]), its more to type but allows up to set a sane parent...
[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 required=>1,
35 handles=>{
36 check_dependent=>'check',
37 },
3cfd35fd 38);
39
40=head2 constraining_type_constraint
41
42This is a type constraint which defines what kind of value is allowed to be the
43constraining value of the depending type.
44
45=cut
46
47has 'constraining_type_constraint' => (
48 is=>'ro',
3a5dab74 49 isa=>'Object',
3cfd35fd 50 predicate=>'has_constraining_type_constraint',
3a5dab74 51 required=>1,
52 handles=>{
53 check_constraining=>'check',
54 },
3cfd35fd 55);
56
3a5dab74 57=head2 comparison_callback
3cfd35fd 58
59This is a callback which returns a boolean value. It get's passed the value
60L</constraining_type_constraint> validates as well as the check value.
61
62This callback is executed in addition to anything you put into a 'where' clause.
63However, the 'where' clause only get's the check value.
64
65Exercise some sanity, this should be limited to actual comparision operations,
66not as a sneaky way to mess with the constraining value.
67
68=cut
69
3a5dab74 70has 'comparison_callback' => (
3cfd35fd 71 is=>'ro',
72 isa=>'CodeRef',
3a5dab74 73 predicate=>'has_comparison_callback',
74 required=>1,
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
3a5dab74 110=head2 check($check_value, $constraining_value)
111
112Make sure when properly dispatch all the right values to the right spots
113
114=cut
115
116around 'check' => sub {
3313d2a6 117 my ($check, $self, @args) = @_;
118 return $self->$check(@args);
3a5dab74 119};
120
3cfd35fd 121=head2 generate_constraint_for ($type_constraints)
122
123Given some type constraints, use them to generate validation rules for an ref
124of values (to be passed at check time)
125
126=cut
127
128sub generate_constraint_for {
3a5dab74 129 my ($self, $callback, $constraining) = @_;
130 return sub {
3313d2a6 131 my ($dependent_pair) = @_;
132 my ($check_value, $constraining_value) = @$dependent_pair;
133
134 ## First need to test the bits
135 unless($self->check_dependent($check_value)) {
136 return;
137 }
138
139 unless($self->check_constraining($constraining_value)) {
140 return;
141 }
142
3cfd35fd 143 my $constraint_generator = $self->constraint_generator;
3a5dab74 144 return $constraint_generator->(
145 $callback,
146 $check_value,
147 $constraining_value,
148 );
3cfd35fd 149 };
150}
151
3a5dab74 152=head2 parameterize ($dependent, $callback, $constraining)
3cfd35fd 153
154Given a ref of type constraints, create a structured type.
155
156=cut
157
158sub parameterize {
3cfd35fd 159 my ($self, $dependent, $callback, $constraining) = @_;
160 my $class = ref $self;
3a5dab74 161 my $name = $self->_generate_subtype_name($dependent, $callback, $constraining);
3cfd35fd 162 my $constraint_generator = $self->__infer_constraint_generator;
163
164 return $class->new(
165 name => $name,
166 parent => $self,
167 dependent_type_constraint=>$dependent,
3a5dab74 168 comparison_callback=>$callback,
3cfd35fd 169 constraint_generator => $constraint_generator,
3a5dab74 170 constraining_type_constraint => $constraining,
3cfd35fd 171 );
172}
173
174=head2 _generate_subtype_name
175
176Returns a name for the dependent type that should be unique
177
178=cut
179
180sub _generate_subtype_name {
3a5dab74 181 my ($self, $dependent, $callback, $constraining) = @_;
3cfd35fd 182 return sprintf(
3a5dab74 183 "%s_depends_on_%s_via_%s",
184 $dependent, $constraining, $callback
3cfd35fd 185 );
186}
187
188=head2 __infer_constraint_generator
189
190This returns a CODEREF which generates a suitable constraint generator. Not
191user servicable, you'll never call this directly.
192
193 TBD, this is definitely going to need some work.
194
195=cut
196
197sub __infer_constraint_generator {
198 my ($self) = @_;
199 if($self->has_constraint_generator) {
200 return $self->constraint_generator;
201 } else {
202 return sub {
203 ## I'm not sure about this stuff but everything seems to work
204 my $tc = shift @_;
205 my $merged_tc = [
206 @$tc,
3a5dab74 207 $self->comparison_callback,
3cfd35fd 208 $self->constraining_type_constraint,
209 ];
210
211 $self->constraint->($merged_tc, @_);
212 };
213 }
214}
215
216=head2 compile_type_constraint
217
218hook into compile_type_constraint so we can set the correct validation rules.
219
220=cut
221
222around 'compile_type_constraint' => sub {
3a5dab74 223 my ($compile_type_constraint, $self) = @_;
3cfd35fd 224
3a5dab74 225 if($self->has_comparison_callback &&
226 $self->has_constraining_type_constraint) {
227 my $generated_constraint = $self->generate_constraint_for(
228 $self->comparison_callback,
229 $self->constraining_type_constraint,
230 );
231 $self->_set_constraint($generated_constraint);
3cfd35fd 232 }
233
3a5dab74 234 return $self->$compile_type_constraint;
3cfd35fd 235};
236
237=head2 create_child_type
238
239modifier to make sure we get the constraint_generator
240
3cfd35fd 241around 'create_child_type' => sub {
242 my ($create_child_type, $self, %opts) = @_;
243 return $self->$create_child_type(
244 %opts,
245 constraint_generator => $self->__infer_constraint_generator,
246 );
247};
248
249=head2 is_a_type_of
250
251=head2 is_subtype_of
252
253=head2 equals
254
255Override the base class behavior.
256
257 TBD
258
259sub equals {
260 my ( $self, $type_or_name ) = @_;
261 my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
262
263 return unless $other->isa(__PACKAGE__);
264
265 return (
266 $self->type_constraints_equals($other)
267 and
268 $self->parent->equals( $other->parent )
269 );
270}
271
272=head2 type_constraints_equals
273
274Checks to see if the internal type contraints are equal.
275
276 TBD
277
278sub type_constraints_equals {
279 my ($self, $other) = @_;
280 my @self_type_constraints = @{$self->type_constraints||[]};
281 my @other_type_constraints = @{$other->type_constraints||[]};
282
283 ## Incoming ay be either arrayref or hashref, need top compare both
284 while(@self_type_constraints) {
285 my $self_type_constraint = shift @self_type_constraints;
286 my $other_type_constraint = shift @other_type_constraints
287 || return; ## $other needs the same number of children.
288
289 if( ref $self_type_constraint) {
290 $self_type_constraint->equals($other_type_constraint)
291 || return; ## type constraints obviously need top be equal
292 } else {
293 $self_type_constraint eq $other_type_constraint
294 || return; ## strings should be equal
295 }
296
297 }
298
299 return 1; ##If we get this far, everything is good.
300}
301
302=head2 get_message
303
304Give you a better peek into what's causing the error. For now we stringify the
305incoming deep value with L<Devel::PartialDump> and pass that on to either your
306custom error message or the default one. In the future we'll try to provide a
307more complete stack trace of the actual offending elements
308
309 TBD
310
311around 'get_message' => sub {
312 my ($get_message, $self, $value) = @_;
313 my $new_value = Devel::PartialDump::dump($value);
314 return $self->$get_message($new_value);
315};
316
317=head1 SEE ALSO
318
319The following modules or resources may be of interest.
320
321L<Moose>, L<Moose::Meta::TypeConstraint>
322
323=head1 AUTHOR
324
325John Napiorkowski, C<< <jjnapiork@cpan.org> >>
326
327=head1 COPYRIGHT & LICENSE
328
329This program is free software; you can redistribute it and/or modify
330it under the same terms as Perl itself.
331
332=cut
333
3a5dab74 334__PACKAGE__->meta->make_immutable;