refactor the default type constraint message logic a bit
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Role.pm
1 package Moose::Meta::TypeConstraint::Role;
2
3 use strict;
4 use warnings;
5 use metaclass;
6
7 use B;
8 use Scalar::Util 'blessed';
9 use Moose::Util::TypeConstraints ();
10
11 use base 'Moose::Meta::TypeConstraint';
12
13 __PACKAGE__->meta->add_attribute('role' => (
14     reader => 'role',
15 ));
16
17 my $inliner = sub {
18     my $self = shift;
19     my $val  = shift;
20
21     return 'Moose::Util::does_role('
22              . $val . ', '
23              . B::perlstring($self->role)
24          . ')';
25 };
26
27 sub new {
28     my ( $class, %args ) = @_;
29
30     $args{parent} = Moose::Util::TypeConstraints::find_type_constraint('Object');
31
32     my $role_name = $args{role};
33     $args{constraint} = sub { Moose::Util::does_role( $_[0], $role_name ) };
34
35     $args{inlined} = $inliner;
36
37     my $self = $class->SUPER::new( \%args );
38
39     $self->_create_hand_optimized_type_constraint;
40     $self->compile_type_constraint();
41
42     return $self;
43 }
44
45 sub _create_hand_optimized_type_constraint {
46     my $self = shift;
47     my $role = $self->role;
48     $self->hand_optimized_type_constraint(
49         sub { Moose::Util::does_role($_[0], $role) }
50     );
51 }
52
53 sub parents {
54     my $self = shift;
55     return (
56         $self->parent,
57         map {
58             # FIXME find_type_constraint might find a TC named after the role but that isn't really it
59             # I did this anyway since it's a convention that preceded TypeConstraint::Role, and it should DWIM
60             # if anybody thinks this problematic please discuss on IRC.
61             # a possible fix is to add by attr indexing to the type registry to find types of a certain property
62             # regardless of their name
63             Moose::Util::TypeConstraints::find_type_constraint($_)
64                 ||
65             __PACKAGE__->new( role => $_, name => "__ANON__" )
66         } @{ Class::MOP::class_of($self->role)->get_roles },
67     );
68 }
69
70 sub equals {
71     my ( $self, $type_or_name ) = @_;
72
73     my $other = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
74
75     return unless defined $other;
76     return unless $other->isa(__PACKAGE__);
77
78     return $self->role eq $other->role;
79 }
80
81 sub is_a_type_of {
82     my ($self, $type_or_name) = @_;
83
84     my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name);
85
86     ($self->equals($type) || $self->is_subtype_of($type_or_name));
87 }
88
89 sub is_subtype_of {
90     my ($self, $type_or_name_or_role ) = @_;
91
92     if ( not ref $type_or_name_or_role ) {
93         # it might be a role
94         return 1 if Class::MOP::class_of($self->role)->does_role( $type_or_name_or_role );
95     }
96
97     my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name_or_role);
98
99     return unless defined $type;
100
101     if ( $type->isa(__PACKAGE__) ) {
102         # if $type_or_name_or_role isn't a role, it might be the TC name of another ::Role type
103         # or it could also just be a type object in this branch
104         return Class::MOP::class_of($self->role)->does_role( $type->role );
105     } else {
106         # the only other thing we are a subtype of is Object
107         $self->SUPER::is_subtype_of($type);
108     }
109 }
110
111 sub create_child_type {
112     my ($self, @args) = @_;
113     return Moose::Meta::TypeConstraint->new(@args, parent => $self);
114 }
115
116 1;
117
118 # ABSTRACT: Role/TypeConstraint parallel hierarchy
119
120 __END__
121
122 =pod
123
124 =head1 DESCRIPTION
125
126 This class represents type constraints for a role.
127
128 =head1 INHERITANCE
129
130 C<Moose::Meta::TypeConstraint::Role> is a subclass of
131 L<Moose::Meta::TypeConstraint>.
132
133 =head1 METHODS
134
135 =over 4
136
137 =item B<< Moose::Meta::TypeConstraint::Role->new(%options) >>
138
139 This creates a new role type constraint based on the given
140 C<%options>.
141
142 It takes the same options as its parent, with two exceptions. First,
143 it requires an additional option, C<role>, which is name of the
144 constraint's role.  Second, it automatically sets the parent to the
145 C<Object> type.
146
147 The constructor also overrides the hand optimized type constraint with
148 one it creates internally.
149
150 =item B<< $constraint->role >>
151
152 Returns the role name associated with the constraint.
153
154 =item B<< $constraint->parents >>
155
156 Returns all the type's parent types, corresponding to the roles that
157 its role does.
158
159 =item B<< $constraint->is_subtype_of($type_name_or_object) >>
160
161 If the given type is also a role type, then this checks that the
162 type's role does the other type's role.
163
164 Otherwise it falls back to the implementation in
165 L<Moose::Meta::TypeConstraint>.
166
167 =item B<< $constraint->create_child_type(%options) >>
168
169 This returns a new L<Moose::Meta::TypeConstraint> object with the type
170 as its parent.
171
172 Note that it does I<not> return a C<Moose::Meta::TypeConstraint::Role>
173 object!
174
175 =back
176
177 =head1 BUGS
178
179 See L<Moose/BUGS> for details on reporting bugs.
180
181 =cut