bump version to 0.26
[gitmo/MooseX-Types.git] / lib / MooseX / Types / TypeDecorator.pm
CommitLineData
4c2125a4 1package MooseX::Types::TypeDecorator;
6a1db9c7 2our $VERSION = "0.26";
4c2125a4 3
a706b0f2 4use strict;
5use warnings;
4c2125a4 6
c1260541 7
bb5b7b28 8use Carp::Clan qw( ^MooseX::Types );
475bbd1d 9use Moose::Util::TypeConstraints ();
bb5b7b28 10use Moose::Meta::TypeConstraint::Union;
371efa05 11use Scalar::Util qw(blessed);
bb5b7b28 12
4c2125a4 13use overload(
1f071601 14 '0+' => sub {
15 my $self = shift @_;
16 my $tc = $self->{__type_constraint};
17 return 0+$tc;
18 },
4c2125a4 19 '""' => sub {
c1260541 20 my $self = shift @_;
21 if(blessed $self) {
22 return $self->__type_constraint->name;
23 } else {
24 return "$self";
25 }
4c2125a4 26 },
1f071601 27 bool => sub { 1 },
cf1a8bfa 28 '|' => sub {
686e5888 29
30 ## It's kind of ugly that we need to know about Union Types, but this
31 ## is needed for syntax compatibility. Maybe someday we'll all just do
32 ## Or[Str,Str,Int]
442e42ba 33
0d07f026 34 my @args = @_[0,1]; ## arg 3 is special, see the overload docs.
35 my @tc = grep {blessed $_} map {
36 blessed $_ ? $_ :
37 Moose::Util::TypeConstraints::find_or_parse_type_constraint($_)
3ade1c44 38 || __PACKAGE__->_throw_error( "$_ is not a type constraint")
0d07f026 39 } @args;
40
41 ( scalar @tc == scalar @args)
3ade1c44 42 || __PACKAGE__->_throw_error(
43 "one of your type constraints is bad. Passed: ". join(', ', @args) ." Got: ". join(', ', @tc));
0d07f026 44
45 ( scalar @tc >= 2 )
3ade1c44 46 || __PACKAGE__->_throw_error("You must pass in at least 2 type names to make a union");
442e42ba 47
bb5b7b28 48 my $union = Moose::Meta::TypeConstraint::Union->new(type_constraints=>\@tc);
49 return Moose::Util::TypeConstraints::register_type_constraint($union);
cf1a8bfa 50 },
1d9a68a6 51 fallback => 1,
52
4c2125a4 53);
54
55=head1 NAME
56
57MooseX::Types::TypeDecorator - More flexible access to a Type Constraint
58
59=head1 DESCRIPTION
60
61This is a decorator object that contains an underlying type constraint. We use
62this to control access to the type constraint and to add some features.
63
a706b0f2 64=head1 METHODS
4c2125a4 65
a706b0f2 66This class defines the following methods.
4c2125a4 67
a706b0f2 68=head2 new
4c2125a4 69
a706b0f2 70Old school instantiation
4c2125a4 71
72=cut
73
a706b0f2 74sub new {
475bbd1d 75 my $class = shift @_;
76 if(my $arg = shift @_) {
371efa05 77 if(blessed $arg && $arg->isa('Moose::Meta::TypeConstraint')) {
475bbd1d 78 return bless {'__type_constraint'=>$arg}, $class;
e7d06577 79 } elsif(
80 blessed $arg &&
81 $arg->isa('MooseX::Types::UndefinedType')
82 ) {
475bbd1d 83 ## stub in case we'll need to handle these types differently
84 return bless {'__type_constraint'=>$arg}, $class;
371efa05 85 } elsif(blessed $arg) {
3ade1c44 86 __PACKAGE__->_throw_error("Argument must be ->isa('Moose::Meta::TypeConstraint') or ->isa('MooseX::Types::UndefinedType'), not ". blessed $arg);
475bbd1d 87 } else {
3ade1c44 88 __PACKAGE__->_throw_error("Argument cannot be '$arg'");
475bbd1d 89 }
bb5b7b28 90 } else {
3ade1c44 91 __PACKAGE__->_throw_error("This method [new] requires a single argument.");
bb5b7b28 92 }
a706b0f2 93}
4c2125a4 94
5a9b6d38 95=head2 __type_constraint ($type_constraint)
4c2125a4 96
e088dd03 97Set/Get the type_constraint.
4c2125a4 98
99=cut
100
475bbd1d 101sub __type_constraint {
c1260541 102 my $self = shift @_;
371efa05 103 if(blessed $self) {
104 if(defined(my $tc = shift @_)) {
105 $self->{__type_constraint} = $tc;
106 }
107 return $self->{__type_constraint};
108 } else {
3ade1c44 109 __PACKAGE__->_throw_error('cannot call __type_constraint as a class method');
a706b0f2 110 }
a706b0f2 111}
4c2125a4 112
bb5b7b28 113=head2 isa
114
115handle $self->isa since AUTOLOAD can't.
116
117=cut
118
119sub isa {
371efa05 120 my ($self, $target) = @_;
bb5b7b28 121 if(defined $target) {
c1260541 122 if(blessed $self) {
123 return $self->__type_constraint->isa($target);
124 } else {
125 return;
126 }
bb5b7b28 127 } else {
128 return;
129 }
130}
131
3ade1c44 132
bb5b7b28 133=head2 can
134
135handle $self->can since AUTOLOAD can't.
136
137=cut
138
139sub can {
140 my ($self, $target) = @_;
141 if(defined $target) {
c1260541 142 if(blessed $self) {
143 return $self->__type_constraint->can($target);
144 } else {
145 return;
146 }
bb5b7b28 147 } else {
148 return;
149 }
150}
151
c1260541 152=head2 meta
153
154have meta examine the underlying type constraints
155
156=cut
157
158sub meta {
159 my $self = shift @_;
160 if(blessed $self) {
161 return $self->__type_constraint->meta;
162 }
163}
164
3ade1c44 165=head2 _throw_error
166
167properly delegate error messages
168
169=cut
170
171sub _throw_error {
172 shift;
173 require Moose;
174 unshift @_, 'Moose';
175 goto &Moose::throw_error;
176}
c1260541 177
a706b0f2 178=head2 DESTROY
4c2125a4 179
a706b0f2 180We might need it later
4c2125a4 181
a706b0f2 182=cut
4c2125a4 183
a706b0f2 184sub DESTROY {
185 return;
186}
4c2125a4 187
a706b0f2 188=head2 AUTOLOAD
4c2125a4 189
a706b0f2 190Delegate to the decorator targe
4c2125a4 191
a706b0f2 192=cut
4c2125a4 193
e088dd03 194sub AUTOLOAD {
077ac262 195
475bbd1d 196 my ($self, @args) = @_;
a706b0f2 197 my ($method) = (our $AUTOLOAD =~ /([^:]+)$/);
077ac262 198
199 ## We delegate with this method in an attempt to support a value of
200 ## __type_constraint which is also AUTOLOADing, in particular the class
201 ## MooseX::Types::UndefinedType which AUTOLOADs during autovivication.
202
203 my $return;
077ac262 204 eval {
205 $return = $self->__type_constraint->$method(@args);
206 }; if($@) {
3ade1c44 207 __PACKAGE__->_throw_error($@);
475bbd1d 208 } else {
077ac262 209 return $return;
475bbd1d 210 }
a706b0f2 211}
4c2125a4 212
b55332a8 213=head1 AUTHOR
4c2125a4 214
b55332a8 215See L<MooseX::Types/AUTHOR>.
4c2125a4 216
217=head1 LICENSE
218
219This program is free software; you can redistribute it and/or modify
220it under the same terms as perl itself.
221
222=cut
223
2241;