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