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