a96a576938ad6864ed54e98576786d0e87f5ed39
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Union.pm
1
2 package Moose::Meta::TypeConstraint::Union;
3
4 use strict;
5 use warnings;
6 use metaclass;
7
8 use Moose::Meta::TypeCoercion::Union;
9
10 our $VERSION   = '0.59';
11 $VERSION = eval $VERSION;
12 our $AUTHORITY = 'cpan:STEVAN';
13
14 use base 'Moose::Meta::TypeConstraint';
15
16 __PACKAGE__->meta->add_attribute('type_constraints' => (
17     accessor  => 'type_constraints',
18     default   => sub { [] }
19 ));
20
21 sub new { 
22     my ($class, %options) = @_;
23     my $self = $class->SUPER::new(
24         name     => (join '|' => sort {$a cmp $b}
25                      map { $_->name } @{$options{type_constraints}}),
26         parent   => undef,
27         message  => undef,
28         hand_optimized_type_constraint => undef,
29         compiled_type_constraint => sub {
30             my $value = shift;
31             foreach my $type (@{$options{type_constraints}}) {
32                 return 1 if $type->check($value);
33             }
34             return undef;    
35         },
36         %options
37     );
38     $self->_set_constraint(sub { $self->check($_[0]) });
39     $self->coercion(Moose::Meta::TypeCoercion::Union->new(
40         type_constraint => $self
41     ));
42     return $self;
43 }
44
45 sub equals {
46     my ( $self, $type_or_name ) = @_;
47
48     my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
49
50     return unless $other->isa(__PACKAGE__);
51
52     my @self_constraints  = @{ $self->type_constraints };
53     my @other_constraints = @{ $other->type_constraints };
54
55     return unless @self_constraints == @other_constraints;
56
57     # FIXME presort type constraints for efficiency?
58     constraint: foreach my $constraint ( @self_constraints ) {
59         for ( my $i = 0; $i < @other_constraints; $i++ ) {
60             if ( $constraint->equals($other_constraints[$i]) ) {
61                 splice @other_constraints, $i, 1;
62                 next constraint;
63             }
64         }
65     }
66
67     return @other_constraints == 0;
68 }
69
70 sub parents {
71     my $self = shift;
72     $self->type_constraints;
73 }
74
75 sub validate {
76     my ($self, $value) = @_;
77     my $message;
78     foreach my $type (@{$self->type_constraints}) {
79         my $err = $type->validate($value);
80         return unless defined $err;
81         $message .= ($message ? ' and ' : '') . $err
82             if defined $err;
83     }
84     return ($message . ' in (' . $self->name . ')') ;    
85 }
86
87 sub is_a_type_of {
88     my ($self, $type_name) = @_;
89     foreach my $type (@{$self->type_constraints}) {
90         return 1 if $type->is_a_type_of($type_name);
91     }
92     return 0;    
93 }
94
95 sub is_subtype_of {
96     my ($self, $type_name) = @_;
97     foreach my $type (@{$self->type_constraints}) {
98         return 1 if $type->is_subtype_of($type_name);
99     }
100     return 0;
101 }
102
103 sub create_child_type {
104     my ($self, %opts) = @_;
105     my $class = ref $self;
106     my $constraint = Moose::Meta::TypeConstraint->new(%opts, parent => $self);
107     
108     # if we have a type constraint union, and no
109     # type check, this means we are just aliasing
110     # the union constraint, which means we need to
111     # handle this differently.
112     # - SL
113     if (
114             not(defined $opts{constraint})
115             && $self->has_coercion
116     ) {
117         $constraint->coercion(Moose::Meta::TypeCoercion::Union->new(
118             type_constraint => $self,
119         ));
120     }
121     
122     return $constraint;
123 }
124
125 1;
126
127 __END__
128
129 =pod
130
131 =head1 NAME
132
133 Moose::Meta::TypeConstraint::Union - A union of Moose type constraints
134
135 =head1 DESCRIPTION
136
137 This metaclass represents a union of Moose type constraints. More 
138 details to be explained later (possibly in a Cookbook recipe).
139
140 This actually used to be part of Moose::Meta::TypeConstraint, but it 
141 is now better off in it's own file. 
142
143 =head1 METHODS
144
145 This class is not a subclass of Moose::Meta::TypeConstraint, 
146 but it does provide the same API
147
148 =over 4
149
150 =item B<meta>
151
152 =item B<new>
153
154 =item B<name>
155
156 =item B<type_constraints>
157
158 =item B<parents>
159
160 =item B<constraint>
161
162 =item B<includes_type>
163
164 =item B<equals>
165
166 =back
167
168 =head2 Overriden methods 
169
170 =over 4
171
172 =item B<check>
173
174 =item B<coerce>
175
176 =item B<validate>
177
178 =item B<is_a_type_of>
179
180 =item B<is_subtype_of>
181
182 =back
183
184 =head2 Empty or Stub methods
185
186 These methods tend to not be very relevant in 
187 the context of a union. Either that or they are 
188 just difficult to specify and not very useful 
189 anyway. They are here for completeness.
190
191 =over 4
192
193 =item B<parent>
194
195 =item B<coercion>
196
197 =item B<has_coercion>
198
199 =item B<message>
200
201 =item B<has_message>
202
203 =item B<hand_optimized_type_constraint>
204
205 =item B<has_hand_optimized_type_constraint>
206
207 =item B<create_child_type>
208
209 =back
210
211 =head1 BUGS
212
213 All complex software has bugs lurking in it, and this module is no 
214 exception. If you find a bug please either email me, or add the bug
215 to cpan-RT.
216
217 =head1 AUTHOR
218
219 Stevan Little E<lt>stevan@iinteractive.comE<gt>
220
221 =head1 COPYRIGHT AND LICENSE
222
223 Copyright 2006-2008 by Infinity Interactive, Inc.
224
225 L<http://www.iinteractive.com>
226
227 This library is free software; you can redistribute it and/or modify
228 it under the same terms as Perl itself.
229
230 =cut