break out most of the code to ::PurePerl
[gitmo/Class-C3.git] / lib / Class / C3.pm
CommitLineData
95bebf8c 1
2package Class::C3;
3
4use strict;
5use warnings;
6
ecb0388d 7our $VERSION = '0.15';
8
9BEGIN {
10 eval { require Class::C3::XS };
11 if($@) {
12 eval { require Class::C3::PurePerl };
13 if($@) {
14 die 'Could not load Class::C3::XS or Class::C3::PurePerl!';
95bebf8c 15 }
ac6b0914 16 }
322a5920 17}
5d5c86d9 18
95bebf8c 191;
20
21__END__
22
23=pod
24
25=head1 NAME
26
27Class::C3 - A pragma to use the C3 method resolution order algortihm
28
29=head1 SYNOPSIS
30
31 package A;
32 use Class::C3;
33 sub hello { 'A::hello' }
34
35 package B;
36 use base 'A';
37 use Class::C3;
38
39 package C;
40 use base 'A';
41 use Class::C3;
42
43 sub hello { 'C::hello' }
44
45 package D;
46 use base ('B', 'C');
47 use Class::C3;
48
49 # Classic Diamond MI pattern
d401eda1 50 # <A>
51 # / \
52 # <B> <C>
53 # \ /
54 # <D>
95bebf8c 55
56 package main;
2ffffc6d 57
58 # initializez the C3 module
59 # (formerly called in INIT)
60 Class::C3::initialize();
95bebf8c 61
62 print join ', ' => Class::C3::calculateMRO('Diamond_D') # prints D, B, C, A
63
64 print D->hello() # prints 'C::hello' instead of the standard p5 'A::hello'
65
66 D->can('hello')->(); # can() also works correctly
67 UNIVERSAL::can('D', 'hello'); # as does UNIVERSAL::can()
68
69=head1 DESCRIPTION
70
2ffffc6d 71This is pragma to change Perl 5's standard method resolution order from depth-first left-to-right
72(a.k.a - pre-order) to the more sophisticated C3 method resolution order.
95bebf8c 73
74=head2 What is C3?
75
76C3 is the name of an algorithm which aims to provide a sane method resolution order under multiple
77inheritence. It was first introduced in the langauge Dylan (see links in the L<SEE ALSO> section),
78and then later adopted as the prefered MRO (Method Resolution Order) for the new-style classes in
79Python 2.3. Most recently it has been adopted as the 'canonical' MRO for Perl 6 classes, and the
80default MRO for Parrot objects as well.
81
82=head2 How does C3 work.
83
84C3 works by always preserving local precendence ordering. This essentially means that no class will
85appear before any of it's subclasses. Take the classic diamond inheritence pattern for instance:
86
d401eda1 87 <A>
88 / \
89 <B> <C>
90 \ /
91 <D>
95bebf8c 92
93The standard Perl 5 MRO would be (D, B, A, C). The result being that B<A> appears before B<C>, even
94though B<C> is the subclass of B<A>. The C3 MRO algorithm however, produces the following MRO
95(D, B, C, A), which does not have this same issue.
96
97This example is fairly trival, for more complex examples and a deeper explaination, see the links in
98the L<SEE ALSO> section.
99
100=head2 How does this module work?
101
2ffffc6d 102This module uses a technique similar to Perl 5's method caching. When C<Class::C3::initialize> is
103called, this module calculates the MRO of all the classes which called C<use Class::C3>. It then
104gathers information from the symbol tables of each of those classes, and builds a set of method
105aliases for the correct dispatch ordering. Once all these C3-based method tables are created, it
106then adds the method aliases into the local classes symbol table.
95bebf8c 107
108The end result is actually classes with pre-cached method dispatch. However, this caching does not
109do well if you start changing your C<@ISA> or messing with class symbol tables, so you should consider
110your classes to be effectively closed. See the L<CAVEATS> section for more details.
111
d401eda1 112=head1 OPTIONAL LOWERCASE PRAGMA
113
114This release also includes an optional module B<c3> in the F<opt/> folder. I did not include this in
115the regular install since lowercase module names are considered I<"bad"> by some people. However I
116think that code looks much nicer like this:
117
118 package MyClass;
119 use c3;
120
121The the more clunky:
122
123 package MyClass;
124 use Class::C3;
125
126But hey, it's your choice, thats why it is optional.
127
95bebf8c 128=head1 FUNCTIONS
129
130=over 4
131
132=item B<calculateMRO ($class)>
133
134Given a C<$class> this will return an array of class names in the proper C3 method resolution order.
135
d401eda1 136=item B<initialize>
137
2ffffc6d 138This B<must be called> to initalize the C3 method dispatch tables, this module B<will not work> if
5f01eb5f 139you do not do this. It is advised to do this as soon as possible B<after> loading any classes which
140use C3. Here is a quick code example:
141
142 package Foo;
143 use Class::C3;
144 # ... Foo methods here
145
146 package Bar;
147 use Class::C3;
148 use base 'Foo';
149 # ... Bar methods here
150
151 package main;
152
153 Class::C3::initialize(); # now it is safe to use Foo and Bar
2ffffc6d 154
155This function used to be called automatically for you in the INIT phase of the perl compiler, but
156that lead to warnings if this module was required at runtime. After discussion with my user base
157(the L<DBIx::Class> folks), we decided that calling this in INIT was more of an annoyance than a
158convience. I apologize to anyone this causes problems for (although i would very suprised if I had
159any other users other than the L<DBIx::Class> folks). The simplest solution of course is to define
160your own INIT method which calls this function.
d401eda1 161
162NOTE:
ff168601 163
164If C<initialize> detects that C<initialize> has already been executed, it will L</uninitialize> and
165clear the MRO cache first.
d0e2efe5 166
167=item B<uninitialize>
168
169Calling this function results in the removal of all cached methods, and the restoration of the old Perl 5
170style dispatch order (depth-first, left-to-right).
171
172=item B<reinitialize>
173
ff168601 174This is an alias for L</initialize> above.
d401eda1 175
95bebf8c 176=back
177
5d5c86d9 178=head1 METHOD REDISPATCHING
179
180It is always useful to be able to re-dispatch your method call to the "next most applicable method". This
181module provides a pseudo package along the lines of C<SUPER::> or C<NEXT::> which will re-dispatch the
182method along the C3 linearization. This is best show with an examples.
183
184 # a classic diamond MI pattern ...
185 <A>
186 / \
187 <B> <C>
188 \ /
189 <D>
190
191 package A;
192 use c3;
193 sub foo { 'A::foo' }
194
195 package B;
196 use base 'A';
197 use c3;
198 sub foo { 'B::foo => ' . (shift)->next::method() }
199
200 package B;
201 use base 'A';
202 use c3;
203 sub foo { 'C::foo => ' . (shift)->next::method() }
204
205 package D;
206 use base ('B', 'C');
207 use c3;
208 sub foo { 'D::foo => ' . (shift)->next::method() }
209
210 print D->foo; # prints out "D::foo => B::foo => C::foo => A::foo"
211
212A few things to note. First, we do not require you to add on the method name to the C<next::method>
213call (this is unlike C<NEXT::> and C<SUPER::> which do require that). This helps to enforce the rule
214that you cannot dispatch to a method of a different name (this is how C<NEXT::> behaves as well).
215
216The next thing to keep in mind is that you will need to pass all arguments to C<next::method> it can
217not automatically use the current C<@_>.
218
322a5920 219If C<next::method> cannot find a next method to re-dispatch the call to, it will throw an exception.
220You can use C<next::can> to see if C<next::method> will succeed before you call it like so:
221
222 $self->next::method(@_) if $self->next::can;
223
fa91a1c7 224Additionally, you can use C<maybe::next::method> as a shortcut to only call the next method if it exists.
225The previous example could be simply written as:
226
227 $self->maybe::next::method(@_);
322a5920 228
2ffffc6d 229There are some caveats about using C<next::method>, see below for those.
95bebf8c 230
2ffffc6d 231=head1 CAVEATS
95bebf8c 232
2ffffc6d 233This module used to be labeled as I<experimental>, however it has now been pretty heavily tested by
234the good folks over at L<DBIx::Class> and I am confident this module is perfectly usable for
235whatever your needs might be.
95bebf8c 236
2ffffc6d 237But there are still caveats, so here goes ...
95bebf8c 238
239=over 4
240
241=item Use of C<SUPER::>.
242
243The idea of C<SUPER::> under multiple inheritence is ambigious, and generally not recomended anyway.
244However, it's use in conjuntion with this module is very much not recommended, and in fact very
5d5c86d9 245discouraged. The recommended approach is to instead use the supplied C<next::method> feature, see
246more details on it's usage above.
95bebf8c 247
248=item Changing C<@ISA>.
249
250It is the author's opinion that changing C<@ISA> at runtime is pure insanity anyway. However, people
251do it, so I must caveat. Any changes to the C<@ISA> will not be reflected in the MRO calculated by this
d0e2efe5 252module, and therefor probably won't even show up. If you do this, you will need to call C<reinitialize>
253in order to recalulate B<all> method dispatch tables. See the C<reinitialize> documentation and an example
254in F<t/20_reinitialize.t> for more information.
95bebf8c 255
256=item Adding/deleting methods from class symbol tables.
257
2ffffc6d 258This module calculates the MRO for each requested class by interogatting the symbol tables of said classes.
259So any symbol table manipulation which takes place after our INIT phase is run will not be reflected in
260the calculated MRO. Just as with changing the C<@ISA>, you will need to call C<reinitialize> for any
261changes you make to take effect.
95bebf8c 262
2ffffc6d 263=item Calling C<next::method> from methods defined outside the class
95bebf8c 264
2ffffc6d 265There is an edge case when using C<next::method> from within a subroutine which was created in a different
266module than the one it is called from. It sounds complicated, but it really isn't. Here is an example which
267will not work correctly:
15eeb546 268
2ffffc6d 269 *Foo::foo = sub { (shift)->next::method(@_) };
270
271The problem exists because the anonymous subroutine being assigned to the glob C<*Foo::foo> will show up
272in the call stack as being called C<__ANON__> and not C<foo> as you might expect. Since C<next::method>
273uses C<caller> to find the name of the method it was called in, it will fail in this case.
15eeb546 274
2ffffc6d 275But fear not, there is a simple solution. The module C<Sub::Name> will reach into the perl internals and
276assign a name to an anonymous subroutine for you. Simply do this:
277
278 use Sub::Name 'subname';
279 *Foo::foo = subname 'Foo::foo' => sub { (shift)->next::method(@_) };
15eeb546 280
2ffffc6d 281and things will Just Work. Of course this is not always possible to do, but to be honest, I just can't
282manage to find a workaround for it, so until someone gives me a working patch this will be a known
283limitation of this module.
15eeb546 284
5d5c86d9 285=back
15eeb546 286
5d5c86d9 287=head1 CODE COVERAGE
15eeb546 288
ac6b0914 289I use B<Devel::Cover> to test the code coverage of my tests, below is the B<Devel::Cover> report on this
290module's test suite.
5d5c86d9 291
292 ---------------------------- ------ ------ ------ ------ ------ ------ ------
293 File stmt bran cond sub pod time total
294 ---------------------------- ------ ------ ------ ------ ------ ------ ------
58f0eafe 295 Class/C3.pm 98.3 84.4 80.0 96.2 100.0 98.4 94.4
5d5c86d9 296 ---------------------------- ------ ------ ------ ------ ------ ------ ------
58f0eafe 297 Total 98.3 84.4 80.0 96.2 100.0 98.4 94.4
5d5c86d9 298 ---------------------------- ------ ------ ------ ------ ------ ------ ------
15eeb546 299
95bebf8c 300=head1 SEE ALSO
301
302=head2 The original Dylan paper
303
304=over 4
305
306=item L<http://www.webcom.com/haahr/dylan/linearization-oopsla96.html>
307
308=back
309
310=head2 The prototype Perl 6 Object Model uses C3
311
312=over 4
313
314=item L<http://svn.openfoundry.org/pugs/perl5/Perl6-MetaModel/>
315
316=back
317
318=head2 Parrot now uses C3
319
320=over 4
321
322=item L<http://aspn.activestate.com/ASPN/Mail/Message/perl6-internals/2746631>
323
324=item L<http://use.perl.org/~autrijus/journal/25768>
325
326=back
327
328=head2 Python 2.3 MRO related links
329
330=over 4
331
332=item L<http://www.python.org/2.3/mro.html>
333
334=item L<http://www.python.org/2.2.2/descrintro.html#mro>
335
336=back
337
338=head2 C3 for TinyCLOS
339
340=over 4
341
342=item L<http://www.call-with-current-continuation.org/eggs/c3.html>
343
344=back
345
bad9dc59 346=head1 ACKNOWLEGEMENTS
347
348=over 4
349
350=item Thanks to Matt S. Trout for using this module in his module L<DBIx::Class>
351and finding many bugs and providing fixes.
352
353=item Thanks to Justin Guenther for making C<next::method> more robust by handling
354calls inside C<eval> and anon-subs.
355
f480cda1 356=item Thanks to Robert Norris for adding support for C<next::can> and
357C<maybe::next::method>.
358
bad9dc59 359=back
360
95bebf8c 361=head1 AUTHOR
362
d401eda1 363Stevan Little, E<lt>stevan@iinteractive.comE<gt>
95bebf8c 364
6262b4cf 365Brandon L. Black, E<lt>blblack@gmail.comE<gt>
366
95bebf8c 367=head1 COPYRIGHT AND LICENSE
368
08c29211 369Copyright 2005, 2006 by Infinity Interactive, Inc.
95bebf8c 370
371L<http://www.iinteractive.com>
372
373This library is free software; you can redistribute it and/or modify
374it under the same terms as Perl itself.
375
f4a893b2 376=cut