use hash ref in Moose::Object::new
[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
a94188ac 10our $VERSION = '0.56';
28412c0b 11our $AUTHORITY = 'cpan:STEVAN';
3fef8ce8 12
28412c0b 13use base 'Moose::Meta::TypeConstraint';
3fef8ce8 14
336824fa 15__PACKAGE__->meta->add_attribute('class' => (
4078709c 16 reader => 'class',
336824fa 17));
18
3fef8ce8 19sub new {
336824fa 20 my ( $class, %args ) = @_;
21
336824fa 22 $args{parent} = Moose::Util::TypeConstraints::find_type_constraint('Object');
4078709c 23 my $self = $class->meta->new_object(%args);
336824fa 24
dabed765 25 $self->_create_hand_optimized_type_constraint;
dabed765 26 $self->compile_type_constraint();
336824fa 27
3fef8ce8 28 return $self;
29}
30
dabed765 31sub _create_hand_optimized_type_constraint {
32 my $self = shift;
33 my $class = $self->class;
4078709c 34 $self->hand_optimized_type_constraint(
35 sub {
36 blessed( $_[0] ) && $_[0]->isa($class)
37 }
38 );
dabed765 39}
40
3fef8ce8 41sub parents {
42 my $self = shift;
43 return (
44 $self->parent,
336824fa 45 map {
46 # FIXME find_type_constraint might find a TC named after the class but that isn't really it
47 # I did this anyway since it's a convention that preceded TypeConstraint::Class, and it should DWIM
48 # if anybody thinks this problematic please discuss on IRC.
49 # a possible fix is to add by attr indexing to the type registry to find types of a certain property
50 # regardless of their name
4078709c 51 Moose::Util::TypeConstraints::find_type_constraint($_)
52 ||
620db045 53 __PACKAGE__->new( class => $_, name => "__ANON__" )
336824fa 54 } $self->class->meta->superclasses,
3fef8ce8 55 );
56}
57
d9e17f80 58sub equals {
59 my ( $self, $type_or_name ) = @_;
60
dabed765 61 my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
d9e17f80 62
dabed765 63 return unless $other->isa(__PACKAGE__);
64
65 return $self->class eq $other->class;
d9e17f80 66}
67
3fef8ce8 68sub is_a_type_of {
d9e17f80 69 my ($self, $type_or_name) = @_;
3fef8ce8 70
d9e17f80 71 my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
72
73 ($self->equals($type) || $self->is_subtype_of($type_or_name));
3fef8ce8 74}
75
76sub is_subtype_of {
d9e17f80 77 my ($self, $type_or_name_or_class ) = @_;
78
79 if ( not ref $type_or_name_or_class ) {
80 # it might be a class
81 return 1 if $self->class->isa( $type_or_name_or_class );
82 }
83
84 my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name_or_class);
85
86 if ( $type->isa(__PACKAGE__) ) {
87 # if $type_or_name_or_class isn't a class, it might be the TC name of another ::Class type
88 # or it could also just be a type object in this branch
89 return $self->class->isa( $type->class );
90 } else {
91 # the only other thing we are a subtype of is Object
92 $self->SUPER::is_subtype_of($type);
93 }
3fef8ce8 94}
95
961;
97
98__END__
28412c0b 99
3fef8ce8 100=pod
101
102=head1 NAME
103
104Moose::Meta::TypeConstraint::Class - Class/TypeConstraint parallel hierarchy
105
106=head1 METHODS
107
108=over 4
109
28412c0b 110=item B<new>
3fef8ce8 111
4078709c 112=item B<class>
113
28412c0b 114=item B<hand_optimized_type_constraint>
3fef8ce8 115
28412c0b 116=item B<has_hand_optimized_type_constraint>
3fef8ce8 117
d9e17f80 118=item B<equals>
119
28412c0b 120=item B<is_a_type_of>
3fef8ce8 121
28412c0b 122=item B<is_subtype_of>
3fef8ce8 123
28412c0b 124=item B<parents>
3fef8ce8 125
126Return all the parent types, corresponding to the parent classes.
127
28412c0b 128=item B<meta>
129
3fef8ce8 130=back
131
28412c0b 132=head1 BUGS
133
134All complex software has bugs lurking in it, and this module is no
135exception. If you find a bug please either email me, or add the bug
136to cpan-RT.
137
138=head1 AUTHOR
139
140Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
141
142=head1 COPYRIGHT AND LICENSE
143
144Copyright 2006-2008 by Infinity Interactive, Inc.
145
146L<http://www.iinteractive.com>
147
148This library is free software; you can redistribute it and/or modify
149it under the same terms as Perl itself.
150
3fef8ce8 151=cut