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