Version 1.05
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Class.pm
CommitLineData
3fef8ce8 1package Moose::Meta::TypeConstraint::Class;
2
3use strict;
4use warnings;
5use metaclass;
6
28412c0b 7use Scalar::Util 'blessed';
8use Moose::Util::TypeConstraints ();
3fef8ce8 9
e462f6f3 10our $VERSION = '1.05';
75b95414 11$VERSION = eval $VERSION;
28412c0b 12our $AUTHORITY = 'cpan:STEVAN';
3fef8ce8 13
28412c0b 14use base 'Moose::Meta::TypeConstraint';
3fef8ce8 15
336824fa 16__PACKAGE__->meta->add_attribute('class' => (
4078709c 17 reader => 'class',
336824fa 18));
19
3fef8ce8 20sub new {
336824fa 21 my ( $class, %args ) = @_;
22
336824fa 23 $args{parent} = Moose::Util::TypeConstraints::find_type_constraint('Object');
0779da92 24 my $self = $class->_new(\%args);
336824fa 25
dabed765 26 $self->_create_hand_optimized_type_constraint;
dabed765 27 $self->compile_type_constraint();
336824fa 28
3fef8ce8 29 return $self;
30}
31
dabed765 32sub _create_hand_optimized_type_constraint {
33 my $self = shift;
34 my $class = $self->class;
4078709c 35 $self->hand_optimized_type_constraint(
d03bd989 36 sub {
e018ef42 37 blessed( $_[0] ) && blessed( $_[0] ) ne 'Regexp' && $_[0]->isa($class)
4078709c 38 }
39 );
dabed765 40}
41
3fef8ce8 42sub parents {
43 my $self = shift;
44 return (
45 $self->parent,
336824fa 46 map {
47 # FIXME find_type_constraint might find a TC named after the class but that isn't really it
48 # I did this anyway since it's a convention that preceded TypeConstraint::Class, and it should DWIM
49 # if anybody thinks this problematic please discuss on IRC.
50 # a possible fix is to add by attr indexing to the type registry to find types of a certain property
51 # regardless of their name
d03bd989 52 Moose::Util::TypeConstraints::find_type_constraint($_)
53 ||
620db045 54 __PACKAGE__->new( class => $_, name => "__ANON__" )
1d9c3b75 55 } Class::MOP::class_of($self->class)->superclasses,
3fef8ce8 56 );
57}
58
d9e17f80 59sub equals {
60 my ( $self, $type_or_name ) = @_;
61
dabed765 62 my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
d9e17f80 63
4c015454 64 return unless defined $other;
dabed765 65 return unless $other->isa(__PACKAGE__);
66
67 return $self->class eq $other->class;
d9e17f80 68}
69
3fef8ce8 70sub is_a_type_of {
d9e17f80 71 my ($self, $type_or_name) = @_;
3fef8ce8 72
d9e17f80 73 my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
74
75 ($self->equals($type) || $self->is_subtype_of($type_or_name));
3fef8ce8 76}
77
78sub is_subtype_of {
d9e17f80 79 my ($self, $type_or_name_or_class ) = @_;
80
d9e17f80 81 my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name_or_class);
d03bd989 82
8ff79890 83 if ( not defined $type ) {
84 if ( not ref $type_or_name_or_class ) {
85 # it might be a class
86 return 1 if $self->class->isa( $type_or_name_or_class );
87 }
88 return;
89 }
d9e17f80 90
8ff79890 91 if ( $type->isa(__PACKAGE__) && $type->class ne $self->class) {
d9e17f80 92 # if $type_or_name_or_class isn't a class, it might be the TC name of another ::Class type
93 # or it could also just be a type object in this branch
94 return $self->class->isa( $type->class );
95 } else {
96 # the only other thing we are a subtype of is Object
97 $self->SUPER::is_subtype_of($type);
98 }
3fef8ce8 99}
100
97534a9b 101# This is a bit counter-intuitive, but a child type of a Class type
102# constraint is not itself a Class type constraint (it has no class
103# attribute). This whole create_child_type thing needs some changing
104# though, probably making MMC->new a factory or something.
105sub create_child_type {
2fb4885e 106 my ($self, @args) = @_;
107 return Moose::Meta::TypeConstraint->new(@args, parent => $self);
97534a9b 108}
109
d414e17c 110sub get_message {
111 my $self = shift;
112 my ($value) = @_;
113
114 if ($self->has_message) {
115 return $self->SUPER::get_message(@_);
116 }
117
118 $value = (defined $value ? overload::StrVal($value) : 'undef');
8c063f8e 119 return "Validation failed for '" . $self->name . "' with value $value (not isa " . $self->class . ")";
d414e17c 120}
121
3fef8ce8 1221;
123
124__END__
28412c0b 125
3fef8ce8 126=pod
127
128=head1 NAME
129
130Moose::Meta::TypeConstraint::Class - Class/TypeConstraint parallel hierarchy
131
9f4bf6b8 132=head1 DESCRIPTION
133
134This class represents type constraints for a class.
135
136=head1 INHERITANCE
137
138C<Moose::Meta::TypeConstraint::Class> is a subclass of
139L<Moose::Meta::TypeConstraint>.
140
3fef8ce8 141=head1 METHODS
142
143=over 4
144
9f4bf6b8 145=item B<< Moose::Meta::TypeConstraint::Class->new(%options) >>
146
147This creates a new class type constraint based on the given
148C<%options>.
149
150It takes the same options as its parent, with two exceptions. First,
151it requires an additional option, C<class>, which is name of the
152constraint's class. Second, it automatically sets the parent to the
153C<Object> type.
154
155The constructor also overrides the hand optimized type constraint with
156one it creates internally.
3fef8ce8 157
9f4bf6b8 158=item B<< $constraint->class >>
4078709c 159
9f4bf6b8 160Returns the class name associated with the constraint.
3fef8ce8 161
9f4bf6b8 162=item B<< $constraint->parents >>
3fef8ce8 163
9f4bf6b8 164Returns all the type's parent types, corresponding to its parent
165classes.
d9e17f80 166
2870fb09 167=item B<< $constraint->is_subtype_of($type_name_or_object) >>
3fef8ce8 168
9f4bf6b8 169If the given type is also a class type, then this checks that the
170type's class is a subclass of the other type's class.
3fef8ce8 171
38bf0e17 172Otherwise it falls back to the implementation in
9f4bf6b8 173L<Moose::Meta::TypeConstraint>.
3fef8ce8 174
9f4bf6b8 175=item B<< $constraint->create_child_type(%options) >>
3fef8ce8 176
9f4bf6b8 177This returns a new L<Moose::Meta::TypeConstraint> object with the type
178as its parent.
28412c0b 179
9f4bf6b8 180Note that it does I<not> return a
181C<Moose::Meta::TypeConstraint::Class> object!
97534a9b 182
f561b856 183=item B<< $constraint->get_message($value) >>
184
185This is the same as L<Moose::Meta::TypeConstraint/get_message> except
186that it explicitly says C<isa> was checked. This is to help users deal
187with accidentally autovivified type constraints.
188
3fef8ce8 189=back
190
28412c0b 191=head1 BUGS
192
d4048ef3 193See L<Moose/BUGS> for details on reporting bugs.
28412c0b 194
195=head1 AUTHOR
196
197Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
198
199=head1 COPYRIGHT AND LICENSE
200
7e0492d3 201Copyright 2006-2010 by Infinity Interactive, Inc.
28412c0b 202
203L<http://www.iinteractive.com>
204
205This library is free software; you can redistribute it and/or modify
206it under the same terms as Perl itself.
207
3fef8ce8 208=cut