1 package Moose::Meta::Role::Composite;
7 use Scalar::Util 'blessed';
9 use base 'Moose::Meta::Role';
12 # we need to override the ->name
13 # method from Class::MOP::Package
14 # since we don't have an actual
17 __PACKAGE__->meta->add_attribute('name' => (reader => 'name'));
20 # Again, since we don't have a real
21 # package to store our methods in,
22 # we use a HASH ref instead.
24 __PACKAGE__->meta->add_attribute('_methods' => (
25 reader => '_method_map',
29 __PACKAGE__->meta->add_attribute(
30 'application_role_summation_class',
31 reader => 'application_role_summation_class',
32 default => 'Moose::Meta::Role::Application::RoleSummation',
36 my ($class, %params) = @_;
38 # the roles param is required ...
39 foreach ( @{$params{roles}} ) {
40 unless ( $_->isa('Moose::Meta::Role') ) {
42 Moose->throw_error("The list of roles must be instances of Moose::Meta::Role, not $_");
46 my @composition_roles = map {
47 $_->composition_class_roles
48 } @{ $params{roles} };
50 if (@composition_roles) {
51 my $meta = Moose::Meta::Class->create_anon_class(
52 superclasses => [ $class ],
53 roles => [ @composition_roles ],
59 # and the name is created from the
60 # roles if one has not been provided
61 $params{name} ||= (join "|" => map { $_->name } @{$params{roles}});
62 $class->_new(\%params);
65 # This is largely a cope of what's in Moose::Meta::Role (itself
66 # largely a copy of Class::MOP::Class). However, we can't actually
67 # call add_package_symbol, because there's no package to which which
70 my ($self, $method_name, $method) = @_;
72 unless ( defined $method_name && $method_name ) {
73 Moose->throw_error("You must define a method name");
77 if (blessed($method)) {
78 $body = $method->body;
79 if ($method->package_name ne $self->name) {
80 $method = $method->clone(
81 package_name => $self->name,
83 ) if $method->can('clone');
88 $method = $self->wrap_method_body( body => $body, name => $method_name );
91 $self->_method_map->{$method_name} = $method;
96 return keys %{ $self->_method_map };
99 sub _get_local_methods {
101 return values %{ $self->_method_map };
105 my ($self, $method_name) = @_;
107 return exists $self->_method_map->{$method_name};
111 my ($self, $method_name) = @_;
113 return $self->_method_map->{$method_name};
117 my ($self, $role_params) = @_;
118 Class::MOP::load_class($self->application_role_summation_class);
120 $self->application_role_summation_class->new(
121 role_params => $role_params,
128 my ( $class, $old_meta, @args ) = @_;
131 'Moose::Meta::Role::Composite instances can only be reinitialized from an existing metaclass instance'
133 if !blessed $old_meta
134 || !$old_meta->isa('Moose::Meta::Role::Composite');
136 my %existing_classes = map { $_ => $old_meta->$_() } qw(
137 application_role_summation_class
140 return $old_meta->meta->clone_object( $old_meta, %existing_classes, @args );
145 # ABSTRACT: An object to represent the set of roles
153 A composite is a role that consists of a set of two or more roles.
155 The API of a composite role is almost identical to that of a regular
160 C<Moose::Meta::Role::Composite> is a subclass of L<Moose::Meta::Role>.
166 =item B<< Moose::Meta::Role::Composite->new(%options) >>
168 This returns a new composite role object. It accepts the same
169 options as its parent class, with a few changes:
175 This option is an array reference containing a list of
176 L<Moose::Meta::Role> object. This is a required option.
180 If a name is not given, one is generated from the roles provided.
182 =item * apply_params(\%role_params)
184 Creates a new RoleSummation role application with C<%role_params> and applies
185 the composite role to it. The RoleSummation role application class used is
186 determined by the composite role's C<application_role_summation_class>
189 =item * reinitialize($metaclass)
191 Like C<< Class::MOP::Package->reinitialize >>, but doesn't allow passing a
192 string with the package name, as there is no real package for composite roles.
200 See L<Moose/BUGS> for details on reporting bugs.