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