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