Bump version to 1.16
[gitmo/Moose.git] / lib / Moose / Meta / Role / Composite.pm
CommitLineData
fb1e11d5 1package Moose::Meta::Role::Composite;
2
3use strict;
4use warnings;
5use metaclass;
6
21f1e231 7use Scalar::Util 'blessed';
fb1e11d5 8
f4b86ac0 9our $VERSION = '1.16';
e606ae5f 10$VERSION = eval $VERSION;
fb1e11d5 11our $AUTHORITY = 'cpan:STEVAN';
12
13use base 'Moose::Meta::Role';
14
15# NOTE:
d03bd989 16# we need to override the ->name
fb1e11d5 17# method from Class::MOP::Package
d03bd989 18# since we don't have an actual
fb1e11d5 19# package for this.
20# - SL
21__PACKAGE__->meta->add_attribute('name' => (reader => 'name'));
22
23# NOTE:
d03bd989 24# Again, since we don't have a real
25# package to store our methods in,
26# we use a HASH ref instead.
fb1e11d5 27# - SL
0385d05e 28__PACKAGE__->meta->add_attribute('_methods' => (
29 reader => '_method_map',
fb1e11d5 30 default => sub { {} }
31));
32
7071e2cb 33__PACKAGE__->meta->add_attribute(
34 'application_role_summation_class',
35 reader => 'application_role_summation_class',
36 default => 'Moose::Meta::Role::Application::RoleSummation',
37);
38
fb1e11d5 39sub new {
40 my ($class, %params) = @_;
12d8c847 41
fb1e11d5 42 # the roles param is required ...
70ea9161 43 foreach ( @{$params{roles}} ) {
44 unless ( $_->isa('Moose::Meta::Role') ) {
45 require Moose;
46 Moose->throw_error("The list of roles must be instances of Moose::Meta::Role, not $_");
47 }
48 }
12d8c847 49
50 my @composition_roles = map {
4701ceff 51 $_->composition_class_roles
12d8c847 52 } @{ $params{roles} };
53
54 if (@composition_roles) {
55 my $meta = Moose::Meta::Class->create_anon_class(
56 superclasses => [ $class ],
57 roles => [ @composition_roles ],
58 cache => 1,
59 );
12d8c847 60 $class = $meta->name;
61 }
62
fb1e11d5 63 # and the name is created from the
64 # roles if one has not been provided
65 $params{name} ||= (join "|" => map { $_->name } @{$params{roles}});
e606ae5f 66 $class->_new(\%params);
fb1e11d5 67}
68
87e63626 69# This is largely a cope of what's in Moose::Meta::Role (itself
70# largely a copy of Class::MOP::Class). However, we can't actually
71# call add_package_symbol, because there's no package to which which
72# add the symbol.
73sub add_method {
fb1e11d5 74 my ($self, $method_name, $method) = @_;
70ea9161 75
76 unless ( defined $method_name && $method_name ) {
77 Moose->throw_error("You must define a method name");
78 }
87e63626 79
80 my $body;
81 if (blessed($method)) {
82 $body = $method->body;
83 if ($method->package_name ne $self->name) {
84 $method = $method->clone(
85 package_name => $self->name,
d03bd989 86 name => $method_name
87e63626 87 ) if $method->can('clone');
88 }
89 }
90 else {
91 $body = $method;
92 $method = $self->wrap_method_body( body => $body, name => $method_name );
93 }
fb1e11d5 94
0385d05e 95 $self->_method_map->{$method_name} = $method;
96}
97
98sub get_method_list {
99 my $self = shift;
100 return keys %{ $self->_method_map };
101}
102
723576c6 103sub _get_local_methods {
104 my $self = shift;
105 return values %{ $self->_method_map };
106}
107
0385d05e 108sub has_method {
109 my ($self, $method_name) = @_;
110
111 return exists $self->_method_map->{$method_name};
112}
113
114sub get_method {
115 my ($self, $method_name) = @_;
116
117 return $self->_method_map->{$method_name};
fb1e11d5 118}
119
7071e2cb 120sub apply_params {
121 my ($self, $role_params) = @_;
122 Class::MOP::load_class($self->application_role_summation_class);
123
124 $self->application_role_summation_class->new(
125 role_params => $role_params,
126 )->apply($self);
127
128 return $self;
129}
130
6e04cb0e 131sub reinitialize {
f785aad8 132 my ( $class, $old_meta, @args ) = @_;
133
134 Moose->throw_error(
135 'Moose::Meta::Role::Composite instances can only be reinitialized from an existing metaclass instance'
136 )
137 if !blessed $old_meta
138 || !$old_meta->isa('Moose::Meta::Role::Composite');
139
140 my %existing_classes = map { $_ => $old_meta->$_() } qw(
141 application_role_summation_class
142 );
143
144 return $old_meta->meta->clone_object( $old_meta, %existing_classes, @args );
6e04cb0e 145}
146
fb1e11d5 1471;
148
149__END__
150
151=pod
152
153=head1 NAME
154
155Moose::Meta::Role::Composite - An object to represent the set of roles
156
157=head1 DESCRIPTION
158
da5cc486 159A composite is a role that consists of a set of two or more roles.
160
161The API of a composite role is almost identical to that of a regular
162role.
163
164=head1 INHERITANCE
165
166C<Moose::Meta::Role::Composite> is a subclass of L<Moose::Meta::Role>.
167
fb1e11d5 168=head2 METHODS
169
170=over 4
171
da5cc486 172=item B<< Moose::Meta::Role::Composite->new(%options) >>
fb1e11d5 173
da5cc486 174This returns a new composite role object. It accepts the same
175options as its parent class, with a few changes:
fb1e11d5 176
da5cc486 177=over 8
fb1e11d5 178
da5cc486 179=item * roles
fb1e11d5 180
da5cc486 181This option is an array reference containing a list of
182L<Moose::Meta::Role> object. This is a required option.
183
184=item * name
185
186If a name is not given, one is generated from the roles provided.
187
7071e2cb 188=item * apply_params(\%role_params)
189
190Creates a new RoleSummation role application with C<%role_params> and applies
191the composite role to it. The RoleSummation role application class used is
192determined by the composite role's C<application_role_summation_class>
193attribute.
194
6e04cb0e 195=item * reinitialize($metaclass)
196
197Like C<< Class::MOP::Package->reinitialize >>, but doesn't allow passing a
198string with the package name, as there is no real package for composite roles.
199
da5cc486 200=back
fb1e11d5 201
202=back
203
204=head1 BUGS
205
d4048ef3 206See L<Moose/BUGS> for details on reporting bugs.
fb1e11d5 207
208=head1 AUTHOR
209
210Stevan Little E<lt>stevan@iinteractive.comE<gt>
211
212=head1 COPYRIGHT AND LICENSE
213
7e0492d3 214Copyright 2006-2010 by Infinity Interactive, Inc.
fb1e11d5 215
216L<http://www.iinteractive.com>
217
218This library is free software; you can redistribute it and/or modify
219it under the same terms as Perl itself.
220
e606ae5f 221=cut