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