doc updates
[gitmo/Moose.git] / lib / Moose / Spec / Role.pod
CommitLineData
24a8fe99 1
2=pod
3
4=head1 NAME
5
6Moose::Spec::Role - Formal spec for Role behavior
7
8=head1 DESCRIPTION
9
004222dc 10B<NOTE:> This document is currently incomplete.
11
24a8fe99 12=head2 Components of a Role
13
14=over 4
15
16=item Excluded Roles
17
709c321c 18A role can have a list of excluded roles, these are basically
19roles that they shouldn't be composed with. This is not just
20direct composition either, but also "inherited" composition.
21
22This feature was taken from the Fortress language and is really
23of most use when building a large set of role "building blocks"
24some of which should never be used together.
25
24a8fe99 26=item Attributes
27
709c321c 28A roles attributes are similar to those of a class, except that
29they are not actually applied. This means that methods that are
30generated by an attributes accessor will not be generated in the
31role, but only created once the role is applied to a class.
32
24a8fe99 33=item Methods
34
709c321c 35These are the methods defined within the role. Simple as that.
36
24a8fe99 37=item Required Methods
38
709c321c 39A role can require a consuming class (or role) to provide a
40given method. Failure to do so for classes is a fatal error,
41while for roles it simply passes on the method requirement to
42the consuming role.
43
44=item Required Attributes
45
46Just as a role can require methods, it can also require attributes.
47The requirement fufilling attribute must implement at least as much
48as is required. That means, for instance, that if the role requires
49that the attribute be readonly, then it must at least have a reader
50and can also have a writer. It means that if the role requires that
51the attribute be an ArrayRef, then it must either be an ArrayRef or
52a subtype of an ArrayRef.
53
24a8fe99 54=item Overriden Methods
55
56The C<override> and C<super> keywords are allowed in roles, but
57thier behavior is different from that of it's class counterparts.
58The C<super> in a class refers directly to that class's superclass,
59while the C<super> in a role is deferred and only has meaning once
60the role is composed into a class. Once that composition occurs,
61C<super> then refers to that class's superclass.
62
63It is key to remember that roles do not have hierarchy, so they
64can never have a I<super> role.
65
66=item Method Modifiers
67
709c321c 68These are the C<before>, C<around> and C<after> modifiers provided
69in Moose classes. The difference here is that the modifiers are not
70actually applied until the role is composed into a class (this is
71just like attributes and the C<override> keyword).
72
24a8fe99 73=back
74
709c321c 75=head2 Role Composition
76
3e19778d 77=head3 Composing into a Class
709c321c 78
79=over 4
80
81=item Excluded Roles
82
83=item Required Methods
84
85=item Required Attributes
86
87=item Attributes
88
89=item Methods
90
91=item Overriden methods
92
93=item Method Modifiers (before, around, after)
94
95=back
24a8fe99 96
3e19778d 97=head3 Composing into a Instance
98
99=head3 Composing into a Role
24a8fe99 100
101=over 4
102
709c321c 103=item Excluded Roles
104
105=item Required Methods
106
107=item Required Attributes
108
109=item Attributes
110
111=item Methods
112
113=item Overriden methods
114
115=item Method Modifiers (before, around, after)
116
117=back
118
3e19778d 119=head3 Role Summation
709c321c 120
121When multiple roles are added to another role (using the
122C<with @roles> keyword) the roles are composed symmetrically.
123The product of the composition is a composite role
124(L<Moose::Meta::Role::Composite>).
125
126=over 4
127
128=item Excluded Roles
129
130=item Required Methods
131
132=item Required Attributes
133
24a8fe99 134=item Attributes
135
136Attributes with the same name will conflict and are considered
137a un-recoverable error. No other aspect of the attribute is
138examained, it is enough that just the attribute names conflict.
139
140The reason for such early and harsh conflicts with attributes
141is because there is so much room for variance between two
142attributes that the problem quickly explodes and rules get
143very complex. It is my opinion that this complexity is not
144worth the trouble.
145
146=item Methods
147
148Methods with the same name will conflict, but no error is
149thrown, instead the method name is added to the list of
150I<required> methods for the new composite role.
151
152To look at this in terms of set theory, each role can be
153said to have a set of methods. The symmetric difference of
154these two sets is the new set of methods for the composite
155role, while the intersection of these two sets are the
156conflicts. This can be illustrated like so:
157
158 Role A has method set { a, b, c }
159 Role B has method set { c, d, e }
160
161 The composite role (A,B) has
162 method set { a, b, d, e }
163 conflict set { c }
164
165=item Overriden methods
166
167An overriden method can conflict in one of two ways.
168
169The first way is with another overriden method of the same
170name, and this is considered an un-recoverable error. This
171is an obvious error since you cannot override a method twice
172in the same class.
173
174The second way for conflict is for an overriden method and a
175regular method to have the same name. This is also an un-recoverable
176error since there is no way to combine these two, nor is it
177okay for both items to be composed into a single class at some
178point.
179
180The use of override in roles can be tricky, but if used
181carefully they can be a very powerful tool.
182
183=item Method Modifiers (before, around, after)
184
185Method modifiers are the only place where the ordering of
186role composition matters. This is due to the nature of
187method modifiers themselves.
188
189Since a method can have multiple method modifiers, these
190are just collected in order to be later applied to the
191class in that same order.
192
193In general, great care should be taken in using method
194modifiers in roles. The order sensitivity can possibly
195lead to subtle and difficult to find bugs if they are
196overused. As with all good things in life, moderation
197is the key.
198
199=back
200
3e19778d 201=head3 Composition Edge Cases
202
203This is a just a set of complex edge cases which can easily get
204confused. This attempts to clarify those cases and provide an
205explination of what is going on in them.
206
207=over 4
208
209=item Role Method Overriding
210
211Many people want to "override" methods in roles they are consuming.
212This works fine for classes, since the local class method is favored
213over the role method. However in roles it is trickier, this is because
214conflicts result in neither method being chosen and the method being
215"required" instead.
216
217Here is an example of this (incorrect) type of overriding.
218
219 package Role::Foo;
220 use Moose::Role;
221
222 sub foo { ... }
223
224 package Role::FooBar;
225 use Moose::Role;
226
227 with 'Role::Foo';
228
229 sub foo { ... }
230 sub bar { ... }
231
232Here the C<foo> methods conflict and the Role::FooBar now requires a
233class or role consuming it to implement C<foo>. This is very often not
234what the user wants.
235
236Now here is an example of the (correct) type of overriding, only it is
237not overriding at all, as is explained in the text below.
238
239 package Role::Foo;
240 use Moose::Role;
241
242 sub foo { ... }
243
244 package Role::Bar;
245 use Moose::Role;
246
247 sub foo { ... }
248 sub bar { ... }
249
250 package Role::FooBar;
251 use Moose::Role;
252
253 with 'Role::Foo', 'Role::Bar';
254
255 sub foo { ... }
256
257This works because the combination of Role::Foo and Role::Bar produce
258a conflict with the C<foo> method. This conflict results in the
259composite role (that was created by the combination of Role::Foo
260and Role::Bar using the I<with> keyword) having a method requirement
261of C<foo>. The Role::FooBar then fufills this requirement.
262
263It is important to note that Role::FooBar is simply fufilling the
264required C<foo> method, and **NOT** overriding C<foo>. This is an
265important distinction to make.
266
004222dc 267Now here is another example of a (correct) type of overriding, this
268time using the I<excludes> option.
269
270 package Role::Foo;
271 use Moose::Role;
272
273 sub foo { ... }
274
275 package Role::FooBar;
276 use Moose::Role;
277
278 with 'Role::Foo' => { excludes => 'foo' };
279
280 sub foo { ... }
281 sub bar { ... }
282
283By specifically excluding the C<foo> method during composition,
284we allow B<Role::FooBar> to define it's own version of C<foo>.
285
3e19778d 286=back
287
24a8fe99 288=head1 SEE ALSO
289
290=over 4
291
292=item Traits
293
294Roles are based on Traits, which originated in the Smalltalk
295community.
296
297=over 4
298
299=item L<http://www.iam.unibe.ch/~scg/Research/Traits/>
300
301This is the main site for the original Traits papers.
302
303=item L<Class::Trait>
304
305I created this implementation of traits several years ago,
306after reading the papers linked above. (This module is now
307maintatined by Ovid and I am no longer involved with it).
308
309=back
310
311=item Roles
312
313Since they are relatively new, and the Moose implementation
314is probably the most mature out there, roles don't have much
315to link to. However, here is some bits worth looking at (mostly
316related to Perl 6)
317
318=over 4
319
320=item L<http://www.oreillynet.com/onlamp/blog/2006/08/roles_composable_units_of_obje.html>
321
322This is chromatic's take on roles, which is worth reading since
323he was/is one of the big proponents of them.
324
325=item L<http://svn.perl.org/perl6/doc/trunk/design/syn/S12.pod>
326
327This is Synopsis 12, which is all about the Perl 6 Object System.
328Which, of course, includes roles.
329
330=back
331
332=back
333
334=head1 AUTHOR
335
336Stevan Little E<lt>stevan@iinteractive.comE<gt>
337
338=head1 COPYRIGHT AND LICENSE
339
778db3ac 340Copyright 2007-2008 by Infinity Interactive, Inc.
24a8fe99 341
342L<http://www.iinteractive.com>
343
344This library is free software; you can redistribute it and/or modify
345it under the same terms as Perl itself.
346
347=cut
348