Have Role->get_attribute return a reference instead of a list
[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;
40 $self->{attributes}->{$name} = [ @_ ];
da0c885d 41}
42
274b6cce 43sub has_attribute { exists $_[0]->{attributes}->{$_[1]} }
44sub get_attribute_list { keys %{ $_[0]->{attributes} } }
ba33632e 45sub get_attribute { $_->[0]->{attributes}->{$_[1]} }
274b6cce 46
da0c885d 47sub apply {
48 my $self = shift;
49 my $class = shift;
274b6cce 50 my $pkg = $class->name;
da0c885d 51
52 for my $name ($self->get_attribute_list) {
ba33632e 53 my $spec = $self->get_attribute($name);
54 Mouse::Meta::Attribute->create($pkg, $name, @$spec);
da0c885d 55 }
da0c885d 56}
0fc8adbc 57
a2227e71 581;
59