add example of role-based delegation to Moose::Role synopsis
[gitmo/Moose.git] / lib / Moose / Role.pm
1 package Moose::Role;
2 use strict;
3 use warnings;
4
5 use Scalar::Util 'blessed';
6 use Carp         'croak';
7
8 use Sub::Exporter;
9
10 use Moose       ();
11 use Moose::Util ();
12
13 use Moose::Exporter;
14 use Moose::Meta::Role;
15 use Moose::Util::TypeConstraints;
16
17 sub extends {
18     croak "Roles do not support 'extends' (you can use 'with' to specialize a role)";
19 }
20
21 sub with {
22     Moose::Util::apply_all_roles( shift, @_ );
23 }
24
25 sub requires {
26     my $meta = shift;
27     croak "Must specify at least one method" unless @_;
28     $meta->add_required_methods(@_);
29 }
30
31 sub excludes {
32     my $meta = shift;
33     croak "Must specify at least one role" unless @_;
34     $meta->add_excluded_roles(@_);
35 }
36
37 sub has {
38     my $meta = shift;
39     my $name = shift;
40     croak 'Usage: has \'name\' => ( key => value, ... )' if @_ == 1;
41     my %options = ( definition_context => Moose::Util::_caller_info(), @_ );
42     my $attrs = ( ref($name) eq 'ARRAY' ) ? $name : [ ($name) ];
43     $meta->add_attribute( $_, %options ) for @$attrs;
44 }
45
46 sub _add_method_modifier {
47     my $type = shift;
48     my $meta = shift;
49
50     if ( ref($_[0]) eq 'Regexp' ) {
51         croak "Roles do not currently support regex "
52             . " references for $type method modifiers";
53     }
54
55     Moose::Util::add_method_modifier($meta, $type, \@_);
56 }
57
58 sub before { _add_method_modifier('before', @_) }
59
60 sub after  { _add_method_modifier('after',  @_) }
61
62 sub around { _add_method_modifier('around', @_) }
63
64 # see Moose.pm for discussion
65 sub super {
66     return unless $Moose::SUPER_BODY;
67     $Moose::SUPER_BODY->(@Moose::SUPER_ARGS);
68 }
69
70 sub override {
71     my $meta = shift;
72     my ( $name, $code ) = @_;
73     $meta->add_override_method_modifier( $name, $code );
74 }
75
76 sub inner {
77     croak "Roles cannot support 'inner'";
78 }
79
80 sub augment {
81     croak "Roles cannot support 'augment'";
82 }
83
84 Moose::Exporter->setup_import_methods(
85     with_meta => [
86         qw( with requires excludes has before after around override )
87     ],
88     as_is => [
89         qw( extends super inner augment ),
90         \&Carp::confess,
91         \&Scalar::Util::blessed,
92     ],
93 );
94
95 sub init_meta {
96     shift;
97     my %args = @_;
98
99     my $role = $args{for_class};
100
101     unless ($role) {
102         require Moose;
103         Moose->throw_error("Cannot call init_meta without specifying a for_class");
104     }
105
106     my $metaclass = $args{metaclass} || "Moose::Meta::Role";
107     my $meta_name = exists $args{meta_name} ? $args{meta_name} : 'meta';
108
109     Moose->throw_error("The Metaclass $metaclass must be a subclass of Moose::Meta::Role.")
110         unless $metaclass->isa('Moose::Meta::Role');
111
112     # make a subtype for each Moose role
113     role_type $role unless find_type_constraint($role);
114
115     my $meta;
116     if ( $meta = Class::MOP::get_metaclass_by_name($role) ) {
117         unless ( $meta->isa("Moose::Meta::Role") ) {
118             my $error_message = "$role already has a metaclass, but it does not inherit $metaclass ($meta).";
119             if ( $meta->isa('Moose::Meta::Class') ) {
120                 Moose->throw_error($error_message . ' You cannot make the same thing a role and a class. Remove either Moose or Moose::Role.');
121             } else {
122                 Moose->throw_error($error_message);
123             }
124         }
125     }
126     else {
127         $meta = $metaclass->initialize($role);
128     }
129
130     if (defined $meta_name) {
131         # also check for inherited non moose 'meta' method?
132         my $existing = $meta->get_method($meta_name);
133         if ($existing && !$existing->isa('Class::MOP::Method::Meta')) {
134             Carp::cluck "Moose::Role is overwriting an existing method named "
135                       . "$meta_name in role $role with a method "
136                       . "which returns the class's metaclass. If this is "
137                       . "actually what you want, you should remove the "
138                       . "existing method, otherwise, you should rename or "
139                       . "disable this generated method using the "
140                       . "'-meta_name' option to 'use Moose::Role'.";
141         }
142         $meta->_add_meta_method($meta_name);
143     }
144
145     return $meta;
146 }
147
148 1;
149
150 # ABSTRACT: The Moose Role
151
152 __END__
153
154 =pod
155
156 =head1 SYNOPSIS
157
158   package Eq;
159   use Moose::Role; # automatically turns on strict and warnings
160
161   requires 'equal';
162
163   sub no_equal {
164       my ($self, $other) = @_;
165       !$self->equal($other);
166   }
167
168   # ... then in your classes
169
170   package Currency;
171   use Moose; # automatically turns on strict and warnings
172
173   with 'Eq';
174
175   sub equal {
176       my ($self, $other) = @_;
177       $self->as_float == $other->as_float;
178   }
179
180   # ... and also
181
182   package Comparator;
183   use Moose;
184
185   has compare_to => (
186       is      => 'ro',
187       does    => 'Eq',
188       handles => 'Eq',
189   );
190
191   # ... which allows
192
193   my $currency1 = Currency->new(...);
194   my $currency2 = Currency->new(...);
195   Comparator->new(compare_to => $currency1)->equal($currency2);
196
197 =head1 DESCRIPTION
198
199 The concept of roles is documented in L<Moose::Manual::Roles>. This document
200 serves as API documentation.
201
202 =head1 EXPORTED FUNCTIONS
203
204 Moose::Role currently supports all of the functions that L<Moose> exports, but
205 differs slightly in how some items are handled (see L</CAVEATS> below for
206 details).
207
208 Moose::Role also offers two role-specific keyword exports:
209
210 =over 4
211
212 =item B<requires (@method_names)>
213
214 Roles can require that certain methods are implemented by any class which
215 C<does> the role.
216
217 Note that attribute accessors also count as methods for the purposes
218 of satisfying the requirements of a role.
219
220 =item B<excludes (@role_names)>
221
222 Roles can C<exclude> other roles, in effect saying "I can never be combined
223 with these C<@role_names>". This is a feature which should not be used
224 lightly.
225
226 =back
227
228 =head2 B<unimport>
229
230 Moose::Role offers a way to remove the keywords it exports, through the
231 C<unimport> method. You simply have to say C<no Moose::Role> at the bottom of
232 your code for this to work.
233
234 =head1 METACLASS
235
236 When you use Moose::Role, you can specify traits which will be applied to your
237 role metaclass:
238
239     use Moose::Role -traits => 'My::Trait';
240
241 This is very similar to the attribute traits feature. When you do
242 this, your class's C<meta> object will have the specified traits
243 applied to it. See L<Moose/Metaclass and Trait Name Resolution> for more
244 details.
245
246 =head1 APPLYING ROLES
247
248 In addition to being applied to a class using the 'with' syntax (see
249 L<Moose::Manual::Roles>) and using the L<Moose::Util> 'apply_all_roles'
250 method, roles may also be applied to an instance of a class using
251 L<Moose::Util> 'apply_all_roles' or the role's metaclass:
252
253    MyApp::Test::SomeRole->meta->apply( $instance );
254
255 Doing this creates a new, mutable, anonymous subclass, applies the role to that,
256 and reblesses. In a debugger, for example, you will see class names of the
257 form C< Moose::Meta::Class::__ANON__::SERIAL::6 >, which means that doing a
258 'ref' on your instance may not return what you expect. See L<Moose::Object> for
259 'DOES'.
260
261 Additional params may be added to the new instance by providing
262 'rebless_params'. See L<Moose::Meta::Role::Application::ToInstance>.
263
264 =head1 CAVEATS
265
266 Role support has only a few caveats:
267
268 =over 4
269
270 =item *
271
272 Roles cannot use the C<extends> keyword; it will throw an exception for now.
273 The same is true of the C<augment> and C<inner> keywords (not sure those
274 really make sense for roles). All other Moose keywords will be I<deferred>
275 so that they can be applied to the consuming class.
276
277 =item *
278
279 Role composition does its best to B<not> be order-sensitive when it comes to
280 conflict resolution and requirements detection. However, it is order-sensitive
281 when it comes to method modifiers. All before/around/after modifiers are
282 included whenever a role is composed into a class, and then applied in the order
283 in which the roles are used. This also means that there is no conflict for
284 before/around/after modifiers.
285
286 In most cases, this will be a non-issue; however, it is something to keep in
287 mind when using method modifiers in a role. You should never assume any
288 ordering.
289
290 =back
291
292 =head1 BUGS
293
294 See L<Moose/BUGS> for details on reporting bugs.
295
296 =cut