bump version to 0.56 and update changes for release
[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
3d24a30e 10our $VERSION = '0.56';
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(
36 sub {
37 blessed( $_[0] ) && $_[0]->isa($class)
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
4078709c 52 Moose::Util::TypeConstraints::find_type_constraint($_)
53 ||
620db045 54 __PACKAGE__->new( class => $_, name => "__ANON__" )
336824fa 55 } $self->class->meta->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
dabed765 64 return unless $other->isa(__PACKAGE__);
65
66 return $self->class eq $other->class;
d9e17f80 67}
68
3fef8ce8 69sub is_a_type_of {
d9e17f80 70 my ($self, $type_or_name) = @_;
3fef8ce8 71
d9e17f80 72 my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
73
74 ($self->equals($type) || $self->is_subtype_of($type_or_name));
3fef8ce8 75}
76
77sub is_subtype_of {
d9e17f80 78 my ($self, $type_or_name_or_class ) = @_;
79
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
85 my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name_or_class);
86
87 if ( $type->isa(__PACKAGE__) ) {
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
971;
98
99__END__
28412c0b 100
3fef8ce8 101=pod
102
103=head1 NAME
104
105Moose::Meta::TypeConstraint::Class - Class/TypeConstraint parallel hierarchy
106
107=head1 METHODS
108
109=over 4
110
28412c0b 111=item B<new>
3fef8ce8 112
4078709c 113=item B<class>
114
28412c0b 115=item B<hand_optimized_type_constraint>
3fef8ce8 116
28412c0b 117=item B<has_hand_optimized_type_constraint>
3fef8ce8 118
d9e17f80 119=item B<equals>
120
28412c0b 121=item B<is_a_type_of>
3fef8ce8 122
28412c0b 123=item B<is_subtype_of>
3fef8ce8 124
28412c0b 125=item B<parents>
3fef8ce8 126
127Return all the parent types, corresponding to the parent classes.
128
28412c0b 129=item B<meta>
130
3fef8ce8 131=back
132
28412c0b 133=head1 BUGS
134
135All complex software has bugs lurking in it, and this module is no
136exception. If you find a bug please either email me, or add the bug
137to cpan-RT.
138
139=head1 AUTHOR
140
141Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
142
143=head1 COPYRIGHT AND LICENSE
144
145Copyright 2006-2008 by Infinity Interactive, Inc.
146
147L<http://www.iinteractive.com>
148
149This library is free software; you can redistribute it and/or modify
150it under the same terms as Perl itself.
151
3fef8ce8 152=cut