bump version to 0.87
[gitmo/Moose.git] / lib / Moose / Meta / TypeCoercion / Union.pm
CommitLineData
3726f905 1
2package Moose::Meta::TypeCoercion::Union;
3
4use strict;
5use warnings;
6use metaclass;
7
3726f905 8use Scalar::Util 'blessed';
9
92d82041 10our $VERSION = '0.87';
e606ae5f 11$VERSION = eval $VERSION;
3726f905 12our $AUTHORITY = 'cpan:STEVAN';
13
14use base 'Moose::Meta::TypeCoercion';
15
16sub compile_type_coercion {
17 my $self = shift;
18 my $type_constraint = $self->type_constraint;
d03bd989 19
3726f905 20 (blessed $type_constraint && $type_constraint->isa('Moose::Meta::TypeConstraint::Union'))
c245d69b 21 || Moose->throw_error("You can only a Moose::Meta::TypeCoercion::Union for a " .
4c0b3599 22 "Moose::Meta::TypeConstraint::Union, not a $type_constraint");
d03bd989 23
3726f905 24 $self->_compiled_type_coercion(sub {
25 my $value = shift;
d03bd989 26 # go through all the type constraints
3726f905 27 # in the union, and check em ...
28 foreach my $type (@{$type_constraint->type_constraints}) {
29 # if they have a coercion first
d03bd989 30 if ($type->has_coercion) {
3726f905 31 # then try to coerce them ...
32 my $temp = $type->coerce($value);
d03bd989 33 # and if they get something
3726f905 34 # make sure it still fits within
35 # the union type ...
36 return $temp if $type_constraint->check($temp);
37 }
38 }
d03bd989 39 return undef;
3726f905 40 });
41}
42
41e007e4 43sub has_coercion_for_type { 0 }
44
45sub add_type_coercions {
70ea9161 46 require Moose;
c245d69b 47 Moose->throw_error("Cannot add additional type coercions to Union types");
41e007e4 48}
49
3726f905 501;
51
52__END__
53
54=pod
55
56=head1 NAME
57
58Moose::Meta::TypeCoercion::Union - The Moose Type Coercion metaclass for Unions
59
60=head1 DESCRIPTION
61
88463309 62This is a subclass of L<Moose::Meta::TypeCoercion> that is used for
63L<Moose::Meta::TypeConstraint::Union> objects.
3726f905 64=head1 METHODS
65
66=over 4
67
88463309 68=item B<< $coercion->has_coercion_for_type >>
69
70This method always returns false.
71
72=item B<< $coercion->add_type_coercions >>
3726f905 73
88463309 74This method always throws an error. You cannot add coercions to a
c6386282 75union type coercion.
3726f905 76
88463309 77=item B<< $coercion->coerce($value) >>
41e007e4 78
88463309 79This method will coerce by trying the coercions for each type in the
80union.
41e007e4 81
3726f905 82=back
83
84=head1 BUGS
85
d03bd989 86All complex software has bugs lurking in it, and this module is no
3726f905 87exception. If you find a bug please either email me, or add the bug
88to cpan-RT.
89
90=head1 AUTHOR
91
92Stevan Little E<lt>stevan@iinteractive.comE<gt>
93
94=head1 COPYRIGHT AND LICENSE
95
2840a3b2 96Copyright 2006-2009 by Infinity Interactive, Inc.
3726f905 97
98L<http://www.iinteractive.com>
99
100This library is free software; you can redistribute it and/or modify
d03bd989 101it under the same terms as Perl itself.
3726f905 102
e606ae5f 103=cut