the beginnings of Moose handling
[gitmo/Moo.git] / lib / Moo / Role.pm
CommitLineData
d245e471 1package Moo::Role;
2
3use strictures 1;
4use Moo::_Utils;
5use base qw(Role::Tiny);
6
7BEGIN { *INFO = \%Role::Tiny::INFO }
8
9our %INFO;
10
11sub import {
12 my $target = caller;
13 strictures->import;
1ba11455 14 return if $INFO{$target}; # already exported into this package
d245e471 15 # get symbol table reference
16 my $stash = do { no strict 'refs'; \%{"${target}::"} };
17 *{_getglob "${target}::has"} = sub {
18 my ($name, %spec) = @_;
19 ($INFO{$target}{accessor_maker} ||= do {
faa9ce11 20 require Method::Generate::Accessor;
d245e471 21 Method::Generate::Accessor->new
22 })->generate_method($target, $name, \%spec);
23 $INFO{$target}{attributes}{$name} = \%spec;
24 };
25 goto &Role::Tiny::import;
26}
27
28sub apply_role_to_package {
369a4c50 29 my ($me, $to, $role) = @_;
30 $me->SUPER::apply_role_to_package($to, $role);
d245e471 31 $me->_handle_constructor($to, $INFO{$role}{attributes});
32}
33
34sub create_class_with_roles {
35 my ($me, $superclass, @roles) = @_;
36
c69190f1 37 my $new_name = join(
38 '__WITH__', $superclass, my $compose_name = join '__AND__', @roles
39 );
40
d245e471 41 return $new_name if $Role::Tiny::COMPOSED{class}{$new_name};
42
faa9ce11 43 require Sub::Quote;
d245e471 44
45 $me->SUPER::create_class_with_roles($superclass, @roles);
46
47 foreach my $role (@roles) {
48 die "${role} is not a Role::Tiny" unless my $info = $INFO{$role};
49 }
50
c69190f1 51 $Moo::MAKERS{$new_name} = {};
52
d245e471 53 $me->_handle_constructor(
c4570291 54 $new_name, { map %{$INFO{$_}{attributes}||{}}, @roles }, $superclass
d245e471 55 );
56
57 return $new_name;
58}
59
dccea57d 60sub _install_single_modifier {
61 my ($me, @args) = @_;
62 _install_modifier(@args);
d245e471 63}
64
65sub _handle_constructor {
c4570291 66 my ($me, $to, $attr_info, $superclass) = @_;
d245e471 67 return unless $attr_info && keys %$attr_info;
68 if ($INFO{$to}) {
69 @{$INFO{$to}{attributes}||={}}{keys %$attr_info} = values %$attr_info;
70 } else {
71 # only fiddle with the constructor if the target is a Moo class
72 if ($INC{"Moo.pm"}
c4570291 73 and my $con = Moo->_constructor_maker_for($to, $superclass)) {
d245e471 74 $con->register_attribute_specs(%$attr_info);
75 }
76 }
77}
78
791;
bce933ec 80
0b6e5fff 81=head1 NAME
82
83Moo::Role - Minimal Object Orientation support for Roles
bce933ec 84
85=head1 SYNOPSIS
86
87 package My::Role;
88
89 use Moo::Role;
90
91 sub foo { ... }
92
93 sub bar { ... }
94
95 has baz => (
96 is => 'ro',
97 );
98
99 1;
100
101else where
102
103 package Some::Class;
104
105 use Moo;
106
107 # bar gets imported, but not foo
108 with('My::Role');
109
110 sub foo { ... }
111
112 1;
113
114=head1 DESCRIPTION
115
116C<Moo::Role> builds upon L<Role::Tiny>, so look there for most of the
117documentation on how this works. The main addition here is extra bits to make
118the roles more "Moosey;" which is to say, it adds L</has>.
119
120=head1 IMPORTED SUBROUTINES
121
122See L<Role::Tiny/IMPORTED SUBROUTINES> for all the other subroutines that are
123imported by this module.
124
125=head2 has
126
127 has attr => (
128 is => 'ro',
129 );
130
131Declares an attribute for the class to be composed into. See
132L<Moo/has> for all options.
40f3e3aa 133
134=head1 AUTHORS
135
136See L<Moo> for authors.
137
138=head1 COPYRIGHT AND LICENSE
139
140See L<Moo> for the copyright and license.
141
142=cut