Failing tests for method modifiers in a role
[gitmo/Mouse.git] / lib / Mouse / Meta / Role.pm
CommitLineData
a2227e71 1#!/usr/bin/env perl
2package Mouse::Meta::Role;
3use strict;
4use warnings;
5
acf0f643 6do {
7 my %METACLASS_CACHE;
8
9 # because Mouse doesn't introspect existing classes, we're forced to
10 # only pay attention to other Mouse classes
11 sub _metaclass_cache {
12 my $class = shift;
13 my $name = shift;
14 return $METACLASS_CACHE{$name};
15 }
16
17 sub initialize {
18 my $class = shift;
19 my $name = shift;
20 $METACLASS_CACHE{$name} = $class->new(name => $name)
21 if !exists($METACLASS_CACHE{$name});
22 return $METACLASS_CACHE{$name};
23 }
24};
25
26sub new {
27 my $class = shift;
28 my %args = @_;
29
274b6cce 30 $args{attributes} ||= {};
31
acf0f643 32 bless \%args, $class;
33}
a2227e71 34
513854c7 35sub name { $_[0]->{name} }
36
274b6cce 37sub add_attribute {
38 my $self = shift;
39 my $name = shift;
69ac1dcf 40 my $spec = shift;
41 $self->{attributes}->{$name} = $spec;
da0c885d 42}
43
274b6cce 44sub has_attribute { exists $_[0]->{attributes}->{$_[1]} }
45sub get_attribute_list { keys %{ $_[0]->{attributes} } }
69ac1dcf 46sub get_attribute { $_[0]->{attributes}->{$_[1]} }
274b6cce 47
da0c885d 48sub apply {
49 my $self = shift;
50 my $class = shift;
da0c885d 51
52 for my $name ($self->get_attribute_list) {
0ba3591e 53 next if $class->has_attribute($name);
ba33632e 54 my $spec = $self->get_attribute($name);
724c77c0 55 Mouse::Meta::Attribute->create($class, $name, %$spec);
da0c885d 56 }
da0c885d 57}
0fc8adbc 58
a2227e71 591;
60