Version 0.95.
[gitmo/Moose.git] / lib / Moose / Meta / Role.pm
CommitLineData
e185c027 1
2package Moose::Meta::Role;
3
4use strict;
5use warnings;
6use metaclass;
7
21f1e231 8use Scalar::Util 'blessed';
b6a00b82 9use Carp 'confess';
963c24e1 10use Devel::GlobalDestruction 'in_global_destruction';
bdabd620 11
b7ef2be4 12our $VERSION = '0.95';
e606ae5f 13$VERSION = eval $VERSION;
d44714be 14our $AUTHORITY = 'cpan:STEVAN';
e185c027 15
8ee73eeb 16use Moose::Meta::Class;
f785aad8 17use Moose::Meta::Role::Attribute;
39b3bc94 18use Moose::Meta::Role::Method;
d67145ed 19use Moose::Meta::Role::Method::Required;
bb153262 20use Moose::Meta::Role::Method::Conflicting;
f785aad8 21use Moose::Util qw( ensure_all_roles );
8ee73eeb 22
f785aad8 23use base 'Class::MOP::Module', 'Class::MOP::Mixin::HasAttributes';
80572233 24
fb1e11d5 25## ------------------------------------------------------------------
26## NOTE:
27## I normally don't do this, but I am doing
28## a whole bunch of meta-programmin in this
29## module, so it just makes sense. For a clearer
d03bd989 30## picture of what is going on in the next
31## several lines of code, look at the really
fb1e11d5 32## big comment at the end of this file (right
33## before the POD).
34## - SL
35## ------------------------------------------------------------------
80572233 36
21716c07 37my $META = __PACKAGE__->meta;
38
39## ------------------------------------------------------------------
40## attributes ...
e185c027 41
21716c07 42# NOTE:
43# since roles are lazy, we hold all the attributes
fb1e11d5 44# of the individual role in 'statis' until which
45# time when it is applied to a class. This means
46# keeping a lot of things in hash maps, so we are
21716c07 47# using a little of that meta-programmin' magic
d03bd989 48# here an saving lots of extra typin. And since
fb1e11d5 49# many of these attributes above require similar
50# functionality to support them, so we again use
51# the wonders of meta-programmin' to deliver a
21716c07 52# very compact solution to this normally verbose
53# problem.
54# - SL
55
56foreach my $action (
fb1e11d5 57 {
58 name => 'excluded_roles_map',
59 attr_reader => 'get_excluded_roles_map' ,
21716c07 60 methods => {
fb1e11d5 61 add => 'add_excluded_roles',
55f28f0a 62 get_keys => 'get_excluded_roles_list',
fb1e11d5 63 existence => 'excludes_role',
21716c07 64 }
65 },
fb1e11d5 66 {
67 name => 'required_methods',
21716c07 68 attr_reader => 'get_required_methods_map',
69 methods => {
7c62cb0a 70 remove => 'remove_required_methods',
71 get_values => 'get_required_method_list',
72 existence => 'requires_method',
21716c07 73 }
d03bd989 74 },
21716c07 75) {
fb1e11d5 76
21716c07 77 my $attr_reader = $action->{attr_reader};
78 my $methods = $action->{methods};
fb1e11d5 79
80 # create the attribute
81 $META->add_attribute($action->{name} => (
82 reader => $attr_reader,
83 default => sub { {} }
84 ));
85
86 # create some helper methods
21716c07 87 $META->add_method($methods->{add} => sub {
88 my ($self, @values) = @_;
fb1e11d5 89 $self->$attr_reader->{$_} = undef foreach @values;
21716c07 90 }) if exists $methods->{add};
fb1e11d5 91
55f28f0a 92 $META->add_method($methods->{get_keys} => sub {
21716c07 93 my ($self) = @_;
fb1e11d5 94 keys %{$self->$attr_reader};
55f28f0a 95 }) if exists $methods->{get_keys};
fb1e11d5 96
8a0bfed9 97 $META->add_method($methods->{get_values} => sub {
98 my ($self) = @_;
99 values %{$self->$attr_reader};
100 }) if exists $methods->{get_values};
101
21716c07 102 $META->add_method($methods->{get} => sub {
103 my ($self, $name) = @_;
fb1e11d5 104 $self->$attr_reader->{$name}
105 }) if exists $methods->{get};
106
21716c07 107 $META->add_method($methods->{existence} => sub {
108 my ($self, $name) = @_;
fb1e11d5 109 exists $self->$attr_reader->{$name} ? 1 : 0;
110 }) if exists $methods->{existence};
111
21716c07 112 $META->add_method($methods->{remove} => sub {
113 my ($self, @values) = @_;
114 delete $self->$attr_reader->{$_} foreach @values;
fb1e11d5 115 }) if exists $methods->{remove};
21716c07 116}
d79e62fd 117
b05518b2 118$META->add_attribute(
119 'method_metaclass',
120 reader => 'method_metaclass',
121 default => 'Moose::Meta::Role::Method',
122);
123
77ed8b8d 124$META->add_attribute(
125 'required_method_metaclass',
126 reader => 'required_method_metaclass',
127 default => 'Moose::Meta::Role::Method::Required',
128);
129
eec8ca8a 130$META->add_attribute(
bb153262 131 'conflicting_method_metaclass',
132 reader => 'conflicting_method_metaclass',
133 default => 'Moose::Meta::Role::Method::Conflicting',
eec8ca8a 134);
135
07de7559 136$META->add_attribute(
137 'application_to_class_class',
138 reader => 'application_to_class_class',
139 default => 'Moose::Meta::Role::Application::ToClass',
140);
141
142$META->add_attribute(
143 'application_to_role_class',
144 reader => 'application_to_role_class',
145 default => 'Moose::Meta::Role::Application::ToRole',
146);
147
148$META->add_attribute(
149 'application_to_instance_class',
150 reader => 'application_to_instance_class',
151 default => 'Moose::Meta::Role::Application::ToInstance',
152);
153
f785aad8 154# More or less copied from Moose::Meta::Class
155sub initialize {
156 my $class = shift;
157 my $pkg = shift;
158 return Class::MOP::get_metaclass_by_name($pkg)
159 || $class->SUPER::initialize(
160 $pkg,
161 'attribute_metaclass' => 'Moose::Meta::Role::Attribute',
162 @_
163 );
164}
80572233 165
f785aad8 166sub reinitialize {
21716c07 167 my $self = shift;
f785aad8 168 my $pkg = shift;
169
170 my $meta = blessed $pkg ? $pkg : Class::MOP::class_of($pkg);
171
172 my %existing_classes;
173 if ($meta) {
174 %existing_classes = map { $_ => $meta->$_() } qw(
175 attribute_metaclass
176 method_metaclass
177 wrapped_method_metaclass
178 required_method_metaclass
179 conflicting_method_metaclass
180 application_to_class_class
181 application_to_role_class
182 application_to_instance_class
183 );
70ea9161 184 }
f785aad8 185
186 return $self->SUPER::reinitialize(
187 $pkg,
188 %existing_classes,
189 @_,
190 );
191}
192
193sub add_attribute {
194 my $self = shift;
195
196 if (blessed $_[0] && ! $_[0]->isa('Moose::Meta::Role::Attribute') ) {
197 my $class = ref $_[0];
198 Moose->throw_error( "Cannot add a $class as an attribute to a role" );
21716c07 199 }
f785aad8 200
201 return $self->SUPER::add_attribute(@_);
202}
203
204sub _attach_attribute {
205 my ( $self, $attribute ) = @_;
206
207 $attribute->attach_to_role($self);
21716c07 208}
e185c027 209
16d721b3 210sub add_required_methods {
211 my $self = shift;
212
213 for (@_) {
214 my $method = $_;
c9d7e396 215 if (!blessed($method)) {
16d721b3 216 $method = $self->required_method_metaclass->new(
217 name => $method,
218 );
219 }
220 $self->get_required_methods_map->{$method->name} = $method;
221 }
222}
223
bb153262 224sub add_conflicting_method {
09eeab06 225 my $self = shift;
226
227 my $method;
228 if (@_ == 1 && blessed($_[0])) {
229 $method = shift;
230 }
231 else {
bb153262 232 $method = $self->conflicting_method_metaclass->new(@_);
09eeab06 233 }
234
235 $self->add_required_methods($method);
236}
237
21716c07 238## ------------------------------------------------------------------
239## method modifiers
240
21716c07 241# NOTE:
fb1e11d5 242# the before/around/after method modifiers are
21716c07 243# stored by name, but there can be many methods
244# then associated with that name. So again we have
245# lots of similar functionality, so we can do some
246# meta-programmin' and save some time.
247# - SL
248
249foreach my $modifier_type (qw[ before around after ]) {
fb1e11d5 250
251 my $attr_reader = "get_${modifier_type}_method_modifiers_map";
d03bd989 252
fb1e11d5 253 # create the attribute ...
254 $META->add_attribute("${modifier_type}_method_modifiers" => (
255 reader => $attr_reader,
256 default => sub { {} }
d03bd989 257 ));
fb1e11d5 258
259 # and some helper methods ...
21716c07 260 $META->add_method("get_${modifier_type}_method_modifiers" => sub {
261 my ($self, $method_name) = @_;
fb1e11d5 262 #return () unless exists $self->$attr_reader->{$method_name};
d9847263 263 my $mm = $self->$attr_reader->{$method_name};
264 $mm ? @$mm : ();
21716c07 265 });
fb1e11d5 266
21716c07 267 $META->add_method("has_${modifier_type}_method_modifiers" => sub {
268 my ($self, $method_name) = @_;
269 # NOTE:
fb1e11d5 270 # for now we assume that if it exists,..
21716c07 271 # it has at least one modifier in it
272 (exists $self->$attr_reader->{$method_name}) ? 1 : 0;
fb1e11d5 273 });
274
21716c07 275 $META->add_method("add_${modifier_type}_method_modifier" => sub {
276 my ($self, $method_name, $method) = @_;
fb1e11d5 277
278 $self->$attr_reader->{$method_name} = []
21716c07 279 unless exists $self->$attr_reader->{$method_name};
fb1e11d5 280
21716c07 281 my $modifiers = $self->$attr_reader->{$method_name};
fb1e11d5 282
21716c07 283 # NOTE:
fb1e11d5 284 # check to see that we aren't adding the
285 # same code twice. We err in favor of the
21716c07 286 # first on here, this may not be as expected
287 foreach my $modifier (@{$modifiers}) {
288 return if $modifier == $method;
289 }
fb1e11d5 290
21716c07 291 push @{$modifiers} => $method;
292 });
fb1e11d5 293
21716c07 294}
1331430a 295
21716c07 296## ------------------------------------------------------------------
297## override method mofidiers
0558683c 298
fb1e11d5 299$META->add_attribute('override_method_modifiers' => (
300 reader => 'get_override_method_modifiers_map',
301 default => sub { {} }
302));
303
21716c07 304# NOTE:
fb1e11d5 305# these are a little different because there
21716c07 306# can only be one per name, whereas the other
307# method modifiers can have multiples.
308# - SL
0558683c 309
21716c07 310sub add_override_method_modifier {
311 my ($self, $method_name, $method) = @_;
312 (!$self->has_method($method_name))
c245d69b 313 || Moose->throw_error("Cannot add an override of method '$method_name' " .
4c0b3599 314 "because there is a local version of '$method_name'");
fb1e11d5 315 $self->get_override_method_modifiers_map->{$method_name} = $method;
21716c07 316}
0558683c 317
21716c07 318sub has_override_method_modifier {
319 my ($self, $method_name) = @_;
320 # NOTE:
fb1e11d5 321 # for now we assume that if it exists,..
21716c07 322 # it has at least one modifier in it
fb1e11d5 323 (exists $self->get_override_method_modifiers_map->{$method_name}) ? 1 : 0;
21716c07 324}
0558683c 325
21716c07 326sub get_override_method_modifier {
327 my ($self, $method_name) = @_;
fb1e11d5 328 $self->get_override_method_modifiers_map->{$method_name};
21716c07 329}
0558683c 330
21716c07 331## general list accessor ...
80572233 332
21716c07 333sub get_method_modifier_list {
334 my ($self, $modifier_type) = @_;
fb1e11d5 335 my $accessor = "get_${modifier_type}_method_modifiers_map";
21716c07 336 keys %{$self->$accessor};
337}
e185c027 338
e606ae5f 339sub reset_package_cache_flag { (shift)->{'_package_cache_flag'} = undef }
340sub update_package_cache_flag {
341 my $self = shift;
342 $self->{'_package_cache_flag'} = Class::MOP::check_package_cache_flag($self->name);
343}
344
345
346
21716c07 347## ------------------------------------------------------------------
80572233 348## subroles
349
278ca49c 350$META->add_attribute('roles' => (
21716c07 351 reader => 'get_roles',
352 default => sub { [] }
353));
354
80572233 355sub add_role {
356 my ($self, $role) = @_;
357 (blessed($role) && $role->isa('Moose::Meta::Role'))
c245d69b 358 || Moose->throw_error("Roles must be instances of Moose::Meta::Role");
80572233 359 push @{$self->get_roles} => $role;
e606ae5f 360 $self->reset_package_cache_flag;
80572233 361}
362
b8aeb4dc 363sub calculate_all_roles {
364 my $self = shift;
365 my %seen;
fb1e11d5 366 grep {
367 !$seen{$_->name}++
368 } ($self, map {
369 $_->calculate_all_roles
370 } @{ $self->get_roles });
b8aeb4dc 371}
372
80572233 373sub does_role {
560c498d 374 my ($self, $role) = @_;
375 (defined $role)
c245d69b 376 || Moose->throw_error("You must supply a role name to look for");
560c498d 377 my $role_name = blessed $role ? $role->name : $role;
bdabd620 378 # if we are it,.. then return true
379 return 1 if $role_name eq $self->name;
380 # otherwise.. check our children
80572233 381 foreach my $role (@{$self->get_roles}) {
bdabd620 382 return 1 if $role->does_role($role_name);
80572233 383 }
384 return 0;
385}
386
1db8ecc7 387sub find_method_by_name { (shift)->get_method(@_) }
093b12c2 388
fb1e11d5 389sub alias_method {
8b7cb9ab 390 Carp::cluck("The alias_method method is deprecated. Use add_method instead.\n");
89e6757a 391
87e63626 392 my $self = shift;
fb1e11d5 393
87e63626 394 $self->add_method(@_);
fb1e11d5 395}
396
21716c07 397## ------------------------------------------------------------------
fb1e11d5 398## role construction
21716c07 399## ------------------------------------------------------------------
e185c027 400
21716c07 401sub apply {
bca01282 402 my ($self, $other, @args) = @_;
403
404 (blessed($other))
c245d69b 405 || Moose->throw_error("You must pass in an blessed instance");
d03bd989 406
07de7559 407 my $application_class;
1c9db35c 408 if ($other->isa('Moose::Meta::Role')) {
07de7559 409 $application_class = $self->application_to_role_class;
1c9db35c 410 }
411 elsif ($other->isa('Moose::Meta::Class')) {
07de7559 412 $application_class = $self->application_to_class_class;
d03bd989 413 }
1c9db35c 414 else {
07de7559 415 $application_class = $self->application_to_instance_class;
d03bd989 416 }
07de7559 417
418 Class::MOP::load_class($application_class);
419 return $application_class->new(@args)->apply($self, $other);
0558683c 420}
421
4701ceff 422sub composition_class_roles { }
423
21716c07 424sub combine {
a4e516f6 425 my ($class, @role_specs) = @_;
d03bd989 426
d03bd989 427 require Moose::Meta::Role::Composite;
428
28412c0b 429 my (@roles, %role_params);
430 while (@role_specs) {
560c498d 431 my ($role, $params) = @{ splice @role_specs, 0, 1 };
432 my $requested_role
433 = blessed $role
434 ? $role
435 : Class::MOP::class_of($role);
31d96c3e 436
6bdef412 437 my $actual_role = $requested_role->_role_for_combination($params);
31d96c3e 438 push @roles => $actual_role;
439
28412c0b 440 next unless defined $params;
31d96c3e 441 $role_params{$actual_role->name} = $params;
28412c0b 442 }
d03bd989 443
fb1e11d5 444 my $c = Moose::Meta::Role::Composite->new(roles => \@roles);
7071e2cb 445 return $c->apply_params(\%role_params);
0558683c 446}
447
6bdef412 448sub _role_for_combination {
436d7a28 449 my ($self, $params) = @_;
450 return $self;
451}
452
b6a00b82 453sub create {
2d5f3fab 454 my ( $role, $package_name, %options ) = @_;
b6a00b82 455
2d5f3fab 456 $options{package} = $package_name;
b6a00b82 457
458 (ref $options{attributes} eq 'HASH')
459 || confess "You must pass a HASH ref of attributes"
460 if exists $options{attributes};
461
462 (ref $options{methods} eq 'HASH')
463 || confess "You must pass a HASH ref of methods"
464 if exists $options{methods};
465
2d5f3fab 466 my (%initialize_options) = %options;
b6a00b82 467 delete @initialize_options{qw(
468 package
469 attributes
470 methods
471 version
472 authority
473 )};
474
475 my $meta = $role->initialize( $package_name => %initialize_options );
476
6a4a7c31 477 $meta->_instantiate_module( $options{version}, $options{authority} );
478
b6a00b82 479 # FIXME totally lame
480 $meta->add_method('meta' => sub {
481 $role->initialize(ref($_[0]) || $_[0]);
482 });
483
484 if (exists $options{attributes}) {
485 foreach my $attribute_name (keys %{$options{attributes}}) {
486 my $attr = $options{attributes}->{$attribute_name};
f785aad8 487 $meta->add_attribute(
488 $attribute_name => blessed $attr ? $attr : %{$attr} );
b6a00b82 489 }
490 }
491
492 if (exists $options{methods}) {
493 foreach my $method_name (keys %{$options{methods}}) {
494 $meta->add_method($method_name, $options{methods}->{$method_name});
495 }
496 }
497
d1765290 498 Class::MOP::weaken_metaclass($meta->name)
499 if $meta->is_anon_role;
500
b6a00b82 501 return $meta;
502}
503
c9ee520d 504# anonymous roles. most of it is copied straight out of Class::MOP::Class.
505# an intrepid hacker might find great riches if he unifies this code with that
506# code in Class::MOP::Module or Class::MOP::Package
507{
508 # NOTE:
509 # this should be sufficient, if you have a
510 # use case where it is not, write a test and
511 # I will change it.
512 my $ANON_ROLE_SERIAL = 0;
513
514 # NOTE:
515 # we need a sufficiently annoying prefix
516 # this should suffice for now, this is
517 # used in a couple of places below, so
518 # need to put it up here for now.
519 my $ANON_ROLE_PREFIX = 'Moose::Meta::Role::__ANON__::SERIAL::';
520
521 sub is_anon_role {
522 my $self = shift;
523 no warnings 'uninitialized';
524 $self->name =~ /^$ANON_ROLE_PREFIX/;
525 }
526
527 sub create_anon_role {
528 my ($role, %options) = @_;
529 my $package_name = $ANON_ROLE_PREFIX . ++$ANON_ROLE_SERIAL;
530 return $role->create($package_name, %options);
531 }
532
533 # NOTE:
534 # this will only get called for
535 # anon-roles, all other calls
536 # are assumed to occur during
537 # global destruction and so don't
538 # really need to be handled explicitly
539 sub DESTROY {
540 my $self = shift;
541
963c24e1 542 return if in_global_destruction(); # it'll happen soon anyway and this just makes things more complicated
c9ee520d 543
544 no warnings 'uninitialized';
545 return unless $self->name =~ /^$ANON_ROLE_PREFIX/;
546
547 # XXX: is this necessary for us? I don't understand what it's doing
548 # -sartak
549
550 # Moose does a weird thing where it replaces the metaclass for
551 # class when fixing metaclass incompatibility. In that case,
552 # we don't want to clean out the namespace now. We can detect
553 # that because Moose will explicitly update the singleton
554 # cache in Class::MOP.
555 #my $current_meta = Class::MOP::get_metaclass_by_name($self->name);
556 #return if $current_meta ne $self;
557
558 my ($serial_id) = ($self->name =~ /^$ANON_ROLE_PREFIX(\d+)/);
559 no strict 'refs';
560 foreach my $key (keys %{$ANON_ROLE_PREFIX . $serial_id}) {
561 delete ${$ANON_ROLE_PREFIX . $serial_id}{$key};
562 }
563 delete ${'main::' . $ANON_ROLE_PREFIX}{$serial_id . '::'};
564 }
565}
566
fb1e11d5 567#####################################################################
568## NOTE:
d03bd989 569## This is Moose::Meta::Role as defined by Moose (plus the use of
570## MooseX::AttributeHelpers module). It is here as a reference to
fb1e11d5 571## make it easier to see what is happening above with all the meta
572## programming. - SL
573#####################################################################
574#
575# has 'roles' => (
a40b446a 576# metaclass => 'Array',
fb1e11d5 577# reader => 'get_roles',
764a7831 578# isa => 'ArrayRef[Moose::Meta::Role]',
fb1e11d5 579# default => sub { [] },
580# provides => {
581# 'push' => 'add_role',
582# }
583# );
d03bd989 584#
fb1e11d5 585# has 'excluded_roles_map' => (
a40b446a 586# metaclass => 'Hash',
fb1e11d5 587# reader => 'get_excluded_roles_map',
588# isa => 'HashRef[Str]',
589# provides => {
590# # Not exactly set, cause it sets multiple
591# 'set' => 'add_excluded_roles',
592# 'keys' => 'get_excluded_roles_list',
593# 'exists' => 'excludes_role',
594# }
595# );
d03bd989 596#
fb1e11d5 597# has 'required_methods' => (
a40b446a 598# metaclass => 'Hash',
fb1e11d5 599# reader => 'get_required_methods_map',
72264f10 600# isa => 'HashRef[Moose::Meta::Role::Method::Required]',
d03bd989 601# provides => {
602# # not exactly set, or delete since it works for multiple
fb1e11d5 603# 'set' => 'add_required_methods',
604# 'delete' => 'remove_required_methods',
605# 'keys' => 'get_required_method_list',
d03bd989 606# 'exists' => 'requires_method',
fb1e11d5 607# }
608# );
d03bd989 609#
610# # the before, around and after modifiers are
611# # HASH keyed by method-name, with ARRAY of
fb1e11d5 612# # CODE refs to apply in that order
d03bd989 613#
fb1e11d5 614# has 'before_method_modifiers' => (
a40b446a 615# metaclass => 'Hash',
fb1e11d5 616# reader => 'get_before_method_modifiers_map',
617# isa => 'HashRef[ArrayRef[CodeRef]]',
618# provides => {
619# 'keys' => 'get_before_method_modifiers',
d03bd989 620# 'exists' => 'has_before_method_modifiers',
621# # This actually makes sure there is an
fb1e11d5 622# # ARRAY at the given key, and pushed onto
623# # it. It also checks for duplicates as well
d03bd989 624# # 'add' => 'add_before_method_modifier'
625# }
fb1e11d5 626# );
d03bd989 627#
fb1e11d5 628# has 'after_method_modifiers' => (
a40b446a 629# metaclass => 'Hash',
fb1e11d5 630# reader =>'get_after_method_modifiers_map',
631# isa => 'HashRef[ArrayRef[CodeRef]]',
632# provides => {
633# 'keys' => 'get_after_method_modifiers',
d03bd989 634# 'exists' => 'has_after_method_modifiers',
635# # This actually makes sure there is an
fb1e11d5 636# # ARRAY at the given key, and pushed onto
d03bd989 637# # it. It also checks for duplicates as well
638# # 'add' => 'add_after_method_modifier'
639# }
fb1e11d5 640# );
d03bd989 641#
fb1e11d5 642# has 'around_method_modifiers' => (
a40b446a 643# metaclass => 'Hash',
fb1e11d5 644# reader =>'get_around_method_modifiers_map',
645# isa => 'HashRef[ArrayRef[CodeRef]]',
646# provides => {
647# 'keys' => 'get_around_method_modifiers',
d03bd989 648# 'exists' => 'has_around_method_modifiers',
649# # This actually makes sure there is an
fb1e11d5 650# # ARRAY at the given key, and pushed onto
d03bd989 651# # it. It also checks for duplicates as well
652# # 'add' => 'add_around_method_modifier'
653# }
fb1e11d5 654# );
d03bd989 655#
fb1e11d5 656# # override is similar to the other modifiers
657# # except that it is not an ARRAY of code refs
658# # but instead just a single name->code mapping
d03bd989 659#
fb1e11d5 660# has 'override_method_modifiers' => (
a40b446a 661# metaclass => 'Hash',
fb1e11d5 662# reader =>'get_override_method_modifiers_map',
d03bd989 663# isa => 'HashRef[CodeRef]',
fb1e11d5 664# provides => {
665# 'keys' => 'get_override_method_modifier',
d03bd989 666# 'exists' => 'has_override_method_modifier',
667# 'add' => 'add_override_method_modifier', # checks for local method ..
fb1e11d5 668# }
669# );
d03bd989 670#
fb1e11d5 671#####################################################################
672
673
e185c027 6741;
675
676__END__
677
678=pod
679
680=head1 NAME
681
682Moose::Meta::Role - The Moose Role metaclass
683
684=head1 DESCRIPTION
685
705d4cfd 686This class is a subclass of L<Class::MOP::Module> that provides
687additional Moose-specific functionality.
688
689It's API looks a lot like L<Moose::Meta::Class>, but internally it
690implements many things differently. This may change in the future.
79592a54 691
cf3bb5c5 692=head1 INHERITANCE
693
694C<Moose::Meta::Role> is a subclass of L<Class::MOP::Module>.
695
e185c027 696=head1 METHODS
697
705d4cfd 698=head2 Construction
699
e185c027 700=over 4
701
705d4cfd 702=item B<< Moose::Meta::Role->initialize($role_name) >>
e185c027 703
705d4cfd 704This method creates a new role object with the provided name.
e185c027 705
705d4cfd 706=item B<< Moose::Meta::Role->combine( [ $role => { ... } ], [ $role ], ... ) >>
78cd1d3b 707
705d4cfd 708This method accepts a list of array references. Each array reference
560c498d 709should contain a role name or L<Moose::Meta::Role> object as its first element. The second element is
c8b8d92f 710an optional hash reference. The hash reference can contain C<-excludes>
711and C<-alias> keys to control how methods are composed from the role.
e606ae5f 712
705d4cfd 713The return value is a new L<Moose::Meta::Role::Composite> that
714represents the combined roles.
db1ab48d 715
4701ceff 716=item B<< $metarole->composition_class_roles >>
717
718When combining multiple roles using C<combine>, this method is used to obtain a
719list of role names to be applied to the L<Moose::Meta::Role::Composite>
720instance returned by C<combine>. The default implementation returns an empty
721list. Extensions that need to hook into role combination may wrap this method
722to return additional role names.
723
705d4cfd 724=item B<< Moose::Meta::Role->create($name, %options) >>
e185c027 725
705d4cfd 726This method is identical to the L<Moose::Meta::Class> C<create>
727method.
728
729=item B<< Moose::Meta::Role->create_anon_role >>
e185c027 730
705d4cfd 731This method is identical to the L<Moose::Meta::Class>
732C<create_anon_class> method.
e185c027 733
705d4cfd 734=item B<< $metarole->is_anon_role >>
e185c027 735
705d4cfd 736Returns true if the role is an anonymous role.
e185c027 737
738=back
739
705d4cfd 740=head2 Role application
741
e185c027 742=over 4
743
705d4cfd 744=item B<< $metarole->apply( $thing, @options ) >>
80572233 745
705d4cfd 746This method applies a role to the given C<$thing>. That can be another
747L<Moose::Meta::Role>, object, a L<Moose::Meta::Class> object, or a
748(non-meta) object instance.
80572233 749
705d4cfd 750The options are passed directly to the constructor for the appropriate
751L<Moose::Meta::Role::Application> subclass.
80572233 752
d05235e1 753Note that this will apply the role even if the C<$thing> in question already
754C<does> this role. L<Moose::Util/does_role> is a convenient wrapper for
755finding out if role application is necessary.
756
80572233 757=back
758
705d4cfd 759=head2 Roles and other roles
760
80572233 761=over 4
762
705d4cfd 763=item B<< $metarole->get_roles >>
d79e62fd 764
705d4cfd 765This returns an array reference of roles which this role does. This
766list may include duplicates.
d79e62fd 767
705d4cfd 768=item B<< $metarole->calculate_all_roles >>
d79e62fd 769
705d4cfd 770This returns a I<unique> list of all roles that this role does, and
771all the roles that its roles do.
d79e62fd 772
560c498d 773=item B<< $metarole->does_role($role) >>
2b14ac61 774
560c498d 775Given a role I<name> or L<Moose::Meta::Role> object, returns true if this role
776does the given role.
d79e62fd 777
705d4cfd 778=item B<< $metarole->add_role($role) >>
d79e62fd 779
705d4cfd 780Given a L<Moose::Meta::Role> object, this adds the role to the list of
781roles that the role does.
68efb014 782
705d4cfd 783=item B<< $metarole->get_excluded_roles_list >>
be4427d0 784
705d4cfd 785Returns a list of role names which this role excludes.
e185c027 786
705d4cfd 787=item B<< $metarole->excludes_role($role_name) >>
e185c027 788
705d4cfd 789Given a role I<name>, returns true if this role excludes the named
790role.
e606ae5f 791
705d4cfd 792=item B<< $metarole->add_excluded_roles(@role_names) >>
e606ae5f 793
705d4cfd 794Given one or more role names, adds those roles to the list of excluded
795roles.
bdabd620 796
705d4cfd 797=back
e185c027 798
705d4cfd 799=head2 Methods
093b12c2 800
705d4cfd 801The methods for dealing with a role's methods are all identical in API
802and behavior to the same methods in L<Class::MOP::Class>.
638853cb 803
705d4cfd 804=over 4
53dd42d8 805
705d4cfd 806=item B<< $metarole->method_metaclass >>
e185c027 807
705d4cfd 808Returns the method metaclass name for the role. This defaults to
809L<Moose::Meta::Role::Method>.
e185c027 810
705d4cfd 811=item B<< $metarole->get_method($name) >>
e185c027 812
705d4cfd 813=item B<< $metarole->has_method($name) >>
e185c027 814
705d4cfd 815=item B<< $metarole->add_method( $name, $body ) >>
e185c027 816
705d4cfd 817=item B<< $metarole->get_method_list >>
e185c027 818
705d4cfd 819=item B<< $metarole->find_method_by_name($name) >>
820
821These methods are all identical to the methods of the same name in
8f6cbfcd 822L<Class::MOP::Package>
e185c027 823
824=back
825
705d4cfd 826=head2 Attributes
827
828As with methods, the methods for dealing with a role's attribute are
829all identical in API and behavior to the same methods in
830L<Class::MOP::Class>.
831
832However, attributes stored in this class are I<not> stored as
833objects. Rather, the attribute definition is stored as a hash
834reference. When a role is composed into a class, this hash reference
835is passed directly to the metaclass's C<add_attribute> method.
836
837This is quite likely to change in the future.
838
e185c027 839=over 4
840
705d4cfd 841=item B<< $metarole->get_attribute($attribute_name) >>
842
843=item B<< $metarole->has_attribute($attribute_name) >>
1331430a 844
705d4cfd 845=item B<< $metarole->get_attribute_list >>
1331430a 846
705d4cfd 847=item B<< $metarole->add_attribute($name, %options) >>
1331430a 848
705d4cfd 849=item B<< $metarole->remove_attribute($attribute_name) >>
1331430a 850
851=back
852
705d4cfd 853=head2 Required methods
854
0558683c 855=over 4
856
705d4cfd 857=item B<< $metarole->get_required_method_list >>
0558683c 858
705d4cfd 859Returns the list of methods required by the role.
0558683c 860
705d4cfd 861=item B<< $metarole->requires_method($name) >>
0558683c 862
705d4cfd 863Returns true if the role requires the named method.
0558683c 864
0ecff16b 865=item B<< $metarole->add_required_methods(@names) >>
0558683c 866
b3c1586a 867Adds the named methods to the role's list of required methods.
0558683c 868
705d4cfd 869=item B<< $metarole->remove_required_methods(@names) >>
0558683c 870
2dda1d28 871Removes the named methods from the role's list of required methods.
0558683c 872
bb153262 873=item B<< $metarole->add_conflicting_method(%params) >>
09eeab06 874
bb153262 875Instantiate the parameters as a L<Moose::Meta::Role::Method::Conflicting>
09eeab06 876object, then add it to the required method list.
877
705d4cfd 878=back
879
880=head2 Method modifiers
0558683c 881
705d4cfd 882These methods act like their counterparts in L<Class::Mop::Class> and
883L<Moose::Meta::Class>.
884
885However, method modifiers are simply stored internally, and are not
886applied until the role itself is applied to a class.
0558683c 887
888=over 4
889
705d4cfd 890=item B<< $metarole->add_after_method_modifier($method_name, $method) >>
0558683c 891
705d4cfd 892=item B<< $metarole->add_around_method_modifier($method_name, $method) >>
0558683c 893
705d4cfd 894=item B<< $metarole->add_before_method_modifier($method_name, $method) >>
0558683c 895
705d4cfd 896=item B<< $metarole->add_override_method_modifier($method_name, $method) >>
0558683c 897
705d4cfd 898These methods all add an appropriate modifier to the internal list of
899modifiers.
0558683c 900
705d4cfd 901=item B<< $metarole->has_after_method_modifiers >>
0558683c 902
705d4cfd 903=item B<< $metarole->has_around_method_modifiers >>
904
905=item B<< $metarole->has_before_method_modifiers >>
906
907=item B<< $metarole->has_override_method_modifier >>
0558683c 908
705d4cfd 909Return true if the role has any modifiers of the given type.
0558683c 910
705d4cfd 911=item B<< $metarole->get_after_method_modifiers($method_name) >>
0558683c 912
705d4cfd 913=item B<< $metarole->get_around_method_modifiers($method_name) >>
0558683c 914
705d4cfd 915=item B<< $metarole->get_before_method_modifiers($method_name) >>
0558683c 916
705d4cfd 917Given a method name, returns a list of the appropriate modifiers for
918that method.
919
920=item B<< $metarole->get_override_method_modifier($method_name) >>
921
922Given a method name, returns the override method modifier for that
923method, if it has one.
0558683c 924
925=back
926
705d4cfd 927=head2 Introspection
505065c4 928
705d4cfd 929=over 4
505065c4 930
705d4cfd 931=item B<< Moose::Meta::Role->meta >>
505065c4 932
705d4cfd 933This will return a L<Class::MOP::Class> instance for this class.
505065c4 934
935=back
936
e185c027 937=head1 BUGS
938
d4048ef3 939See L<Moose/BUGS> for details on reporting bugs.
e185c027 940
941=head1 AUTHOR
942
943Stevan Little E<lt>stevan@iinteractive.comE<gt>
944
945=head1 COPYRIGHT AND LICENSE
946
7e0492d3 947Copyright 2006-2010 by Infinity Interactive, Inc.
e185c027 948
949L<http://www.iinteractive.com>
950
951This library is free software; you can redistribute it and/or modify
fb1e11d5 952it under the same terms as Perl itself.
e185c027 953
b8aeb4dc 954=cut