Merge 'trunk' into 'Class-C3-PurePerl'
[gitmo/Class-C3.git] / lib / Class / C3.pm
CommitLineData
95bebf8c 1
2package Class::C3;
3
4use strict;
5use warnings;
6
f29041c4 7our $VERSION = '0.15_05';
e86d671c 8
e86d671c 9our $C3_IN_CORE;
0a4d4e25 10our $C3_XS;
ecb0388d 11
12BEGIN {
f29041c4 13 if($^V < 5.009005) {
0a4d4e25 14 eval "require Class::C3::XS";
15 if($@) {
16 die $@ if $@ !~ /locate/;
e86d671c 17 eval "require Algorithm::C3; require Class::C3::next";
18 die $@ if $@;
0a4d4e25 19 }
20 else {
21 $C3_XS = 1;
22 }
e86d671c 23 }
24 else {
25 $C3_IN_CORE = 1;
26 }
27}
28
29# this is our global stash of both
30# MRO's and method dispatch tables
31# the structure basically looks like
32# this:
33#
34# $MRO{$class} = {
35# MRO => [ <class precendence list> ],
36# methods => {
37# orig => <original location of method>,
38# code => \&<ref to original method>
39# },
40# has_overload_fallback => (1 | 0)
41# }
42#
43our %MRO;
44
45# use these for debugging ...
46sub _dump_MRO_table { %MRO }
47our $TURN_OFF_C3 = 0;
48
49# state tracking for initialize()/uninitialize()
50our $_initialized = 0;
51
52sub import {
53 my $class = caller();
54 # skip if the caller is main::
55 # since that is clearly not relevant
56 return if $class eq 'main';
57
58 return if $TURN_OFF_C3;
59 mro::set_mro($class, 'c3') if $C3_IN_CORE;
60
61 # make a note to calculate $class
62 # during INIT phase
63 $MRO{$class} = undef unless exists $MRO{$class};
64}
65
66## initializers
67
68sub initialize {
69 %next::METHOD_CACHE = ();
70 # why bother if we don't have anything ...
71 return unless keys %MRO;
72 if($C3_IN_CORE) {
73 mro::set_mro($_, 'c3') for keys %MRO;
ac6b0914 74 }
e86d671c 75 else {
76 if($_initialized) {
77 uninitialize();
78 $MRO{$_} = undef foreach keys %MRO;
79 }
80 _calculate_method_dispatch_tables();
81 _apply_method_dispatch_tables();
82 $_initialized = 1;
83 }
84}
85
86sub uninitialize {
87 # why bother if we don't have anything ...
88 %next::METHOD_CACHE = ();
89 return unless keys %MRO;
90 if($C3_IN_CORE) {
91 mro::set_mro($_, 'dfs') for keys %MRO;
92 }
93 else {
94 _remove_method_dispatch_tables();
95 $_initialized = 0;
96 }
97}
98
99sub reinitialize { goto &initialize }
100
101## functions for applying C3 to classes
102
103sub _calculate_method_dispatch_tables {
104 return if $C3_IN_CORE;
105 my %merge_cache;
106 foreach my $class (keys %MRO) {
107 _calculate_method_dispatch_table($class, \%merge_cache);
108 }
109}
110
111sub _calculate_method_dispatch_table {
112 return if $C3_IN_CORE;
113 my ($class, $merge_cache) = @_;
114 no strict 'refs';
115 my @MRO = calculateMRO($class, $merge_cache);
116 $MRO{$class} = { MRO => \@MRO };
bfcddb67 117 my $has_overload_fallback;
e86d671c 118 my %methods;
119 # NOTE:
120 # we do @MRO[1 .. $#MRO] here because it
121 # makes no sense to interogate the class
122 # which you are calculating for.
123 foreach my $local (@MRO[1 .. $#MRO]) {
124 # if overload has tagged this module to
125 # have use "fallback", then we want to
126 # grab that value
127 $has_overload_fallback = ${"${local}::()"}
bfcddb67 128 if !defined $has_overload_fallback && defined ${"${local}::()"};
e86d671c 129 foreach my $method (grep { defined &{"${local}::$_"} } keys %{"${local}::"}) {
130 # skip if already overriden in local class
131 next unless !defined *{"${class}::$method"}{CODE};
132 $methods{$method} = {
133 orig => "${local}::$method",
134 code => \&{"${local}::$method"}
135 } unless exists $methods{$method};
136 }
137 }
138 # now stash them in our %MRO table
139 $MRO{$class}->{methods} = \%methods;
140 $MRO{$class}->{has_overload_fallback} = $has_overload_fallback;
141}
142
143sub _apply_method_dispatch_tables {
144 return if $C3_IN_CORE;
145 foreach my $class (keys %MRO) {
146 _apply_method_dispatch_table($class);
147 }
148}
149
150sub _apply_method_dispatch_table {
151 return if $C3_IN_CORE;
152 my $class = shift;
153 no strict 'refs';
154 ${"${class}::()"} = $MRO{$class}->{has_overload_fallback}
bfcddb67 155 if !defined &{"${class}::()"}
156 && defined $MRO{$class}->{has_overload_fallback};
e86d671c 157 foreach my $method (keys %{$MRO{$class}->{methods}}) {
030b48e2 158 if ( $method =~ /^\(/ ) {
159 my $orig = $MRO{$class}->{methods}->{$method}->{orig};
160 ${"${class}::$method"} = $$orig if defined $$orig;
161 }
e86d671c 162 *{"${class}::$method"} = $MRO{$class}->{methods}->{$method}->{code};
163 }
164}
165
166sub _remove_method_dispatch_tables {
167 return if $C3_IN_CORE;
168 foreach my $class (keys %MRO) {
169 _remove_method_dispatch_table($class);
170 }
171}
172
173sub _remove_method_dispatch_table {
174 return if $C3_IN_CORE;
175 my $class = shift;
176 no strict 'refs';
177 delete ${"${class}::"}{"()"} if $MRO{$class}->{has_overload_fallback};
178 foreach my $method (keys %{$MRO{$class}->{methods}}) {
179 delete ${"${class}::"}{$method}
180 if defined *{"${class}::${method}"}{CODE} &&
181 (*{"${class}::${method}"}{CODE} eq $MRO{$class}->{methods}->{$method}->{code});
182 }
183}
184
185sub calculateMRO {
186 my ($class, $merge_cache) = @_;
187
e86d671c 188 return Algorithm::C3::merge($class, sub {
189 no strict 'refs';
190 @{$_[0] . '::ISA'};
191 }, $merge_cache);
322a5920 192}
5d5c86d9 193
0a4d4e25 194sub _core_calculateMRO { @{mro::get_linear_isa($_[0])} }
195
196if($C3_IN_CORE) {
197 no warnings 'redefine';
198 *Class::C3::calculateMRO = \&_core_calculateMRO;
199}
200elsif($C3_XS) {
201 no warnings 'redefine';
202 *Class::C3::calculateMRO = \&Class::C3::XS::calculateMRO;
203}
204
95bebf8c 2051;
206
207__END__
208
209=pod
210
211=head1 NAME
212
213Class::C3 - A pragma to use the C3 method resolution order algortihm
214
215=head1 SYNOPSIS
216
217 package A;
218 use Class::C3;
219 sub hello { 'A::hello' }
220
221 package B;
222 use base 'A';
223 use Class::C3;
224
225 package C;
226 use base 'A';
227 use Class::C3;
228
229 sub hello { 'C::hello' }
230
231 package D;
232 use base ('B', 'C');
233 use Class::C3;
234
235 # Classic Diamond MI pattern
d401eda1 236 # <A>
237 # / \
238 # <B> <C>
239 # \ /
240 # <D>
95bebf8c 241
242 package main;
2ffffc6d 243
244 # initializez the C3 module
245 # (formerly called in INIT)
246 Class::C3::initialize();
95bebf8c 247
248 print join ', ' => Class::C3::calculateMRO('Diamond_D') # prints D, B, C, A
249
250 print D->hello() # prints 'C::hello' instead of the standard p5 'A::hello'
251
252 D->can('hello')->(); # can() also works correctly
253 UNIVERSAL::can('D', 'hello'); # as does UNIVERSAL::can()
254
f29041c4 255=head1 SPECIAL NOTE FOR 0.15_05
663e8dcc 256
f29041c4 257To try this with the new perl core c3 support,
ff5d5837 258download the most recent copy perl-current:
663e8dcc 259
ff5d5837 260http://mirrors.develooper.com/perl/APC/perl-current-snap/
663e8dcc 261
663e8dcc 262sh Configure -Dusedevel -Dprefix=/where/I/want/it -d -e && make && make test && make install
263
f29041c4 264then try your C3-using software against this perl + Class::C3 0.15_05.
663e8dcc 265
95bebf8c 266=head1 DESCRIPTION
267
2ffffc6d 268This is pragma to change Perl 5's standard method resolution order from depth-first left-to-right
269(a.k.a - pre-order) to the more sophisticated C3 method resolution order.
95bebf8c 270
271=head2 What is C3?
272
273C3 is the name of an algorithm which aims to provide a sane method resolution order under multiple
274inheritence. It was first introduced in the langauge Dylan (see links in the L<SEE ALSO> section),
275and then later adopted as the prefered MRO (Method Resolution Order) for the new-style classes in
276Python 2.3. Most recently it has been adopted as the 'canonical' MRO for Perl 6 classes, and the
277default MRO for Parrot objects as well.
278
279=head2 How does C3 work.
280
281C3 works by always preserving local precendence ordering. This essentially means that no class will
282appear before any of it's subclasses. Take the classic diamond inheritence pattern for instance:
283
d401eda1 284 <A>
285 / \
286 <B> <C>
287 \ /
288 <D>
95bebf8c 289
290The standard Perl 5 MRO would be (D, B, A, C). The result being that B<A> appears before B<C>, even
291though B<C> is the subclass of B<A>. The C3 MRO algorithm however, produces the following MRO
292(D, B, C, A), which does not have this same issue.
293
294This example is fairly trival, for more complex examples and a deeper explaination, see the links in
295the L<SEE ALSO> section.
296
297=head2 How does this module work?
298
2ffffc6d 299This module uses a technique similar to Perl 5's method caching. When C<Class::C3::initialize> is
300called, this module calculates the MRO of all the classes which called C<use Class::C3>. It then
301gathers information from the symbol tables of each of those classes, and builds a set of method
302aliases for the correct dispatch ordering. Once all these C3-based method tables are created, it
303then adds the method aliases into the local classes symbol table.
95bebf8c 304
305The end result is actually classes with pre-cached method dispatch. However, this caching does not
306do well if you start changing your C<@ISA> or messing with class symbol tables, so you should consider
307your classes to be effectively closed. See the L<CAVEATS> section for more details.
308
d401eda1 309=head1 OPTIONAL LOWERCASE PRAGMA
310
311This release also includes an optional module B<c3> in the F<opt/> folder. I did not include this in
312the regular install since lowercase module names are considered I<"bad"> by some people. However I
313think that code looks much nicer like this:
314
315 package MyClass;
316 use c3;
317
318The the more clunky:
319
320 package MyClass;
321 use Class::C3;
322
323But hey, it's your choice, thats why it is optional.
324
95bebf8c 325=head1 FUNCTIONS
326
327=over 4
328
329=item B<calculateMRO ($class)>
330
331Given a C<$class> this will return an array of class names in the proper C3 method resolution order.
332
d401eda1 333=item B<initialize>
334
2ffffc6d 335This B<must be called> to initalize the C3 method dispatch tables, this module B<will not work> if
5f01eb5f 336you do not do this. It is advised to do this as soon as possible B<after> loading any classes which
337use C3. Here is a quick code example:
338
339 package Foo;
340 use Class::C3;
341 # ... Foo methods here
342
343 package Bar;
344 use Class::C3;
345 use base 'Foo';
346 # ... Bar methods here
347
348 package main;
349
350 Class::C3::initialize(); # now it is safe to use Foo and Bar
2ffffc6d 351
352This function used to be called automatically for you in the INIT phase of the perl compiler, but
353that lead to warnings if this module was required at runtime. After discussion with my user base
354(the L<DBIx::Class> folks), we decided that calling this in INIT was more of an annoyance than a
355convience. I apologize to anyone this causes problems for (although i would very suprised if I had
356any other users other than the L<DBIx::Class> folks). The simplest solution of course is to define
357your own INIT method which calls this function.
d401eda1 358
359NOTE:
ff168601 360
361If C<initialize> detects that C<initialize> has already been executed, it will L</uninitialize> and
362clear the MRO cache first.
d0e2efe5 363
364=item B<uninitialize>
365
366Calling this function results in the removal of all cached methods, and the restoration of the old Perl 5
367style dispatch order (depth-first, left-to-right).
368
369=item B<reinitialize>
370
ff168601 371This is an alias for L</initialize> above.
d401eda1 372
95bebf8c 373=back
374
5d5c86d9 375=head1 METHOD REDISPATCHING
376
377It is always useful to be able to re-dispatch your method call to the "next most applicable method". This
378module provides a pseudo package along the lines of C<SUPER::> or C<NEXT::> which will re-dispatch the
379method along the C3 linearization. This is best show with an examples.
380
381 # a classic diamond MI pattern ...
382 <A>
383 / \
384 <B> <C>
385 \ /
386 <D>
387
388 package A;
389 use c3;
390 sub foo { 'A::foo' }
391
392 package B;
393 use base 'A';
394 use c3;
395 sub foo { 'B::foo => ' . (shift)->next::method() }
396
397 package B;
398 use base 'A';
399 use c3;
400 sub foo { 'C::foo => ' . (shift)->next::method() }
401
402 package D;
403 use base ('B', 'C');
404 use c3;
405 sub foo { 'D::foo => ' . (shift)->next::method() }
406
407 print D->foo; # prints out "D::foo => B::foo => C::foo => A::foo"
408
409A few things to note. First, we do not require you to add on the method name to the C<next::method>
410call (this is unlike C<NEXT::> and C<SUPER::> which do require that). This helps to enforce the rule
411that you cannot dispatch to a method of a different name (this is how C<NEXT::> behaves as well).
412
413The next thing to keep in mind is that you will need to pass all arguments to C<next::method> it can
414not automatically use the current C<@_>.
415
322a5920 416If C<next::method> cannot find a next method to re-dispatch the call to, it will throw an exception.
417You can use C<next::can> to see if C<next::method> will succeed before you call it like so:
418
419 $self->next::method(@_) if $self->next::can;
420
fa91a1c7 421Additionally, you can use C<maybe::next::method> as a shortcut to only call the next method if it exists.
422The previous example could be simply written as:
423
424 $self->maybe::next::method(@_);
322a5920 425
2ffffc6d 426There are some caveats about using C<next::method>, see below for those.
95bebf8c 427
2ffffc6d 428=head1 CAVEATS
95bebf8c 429
2ffffc6d 430This module used to be labeled as I<experimental>, however it has now been pretty heavily tested by
431the good folks over at L<DBIx::Class> and I am confident this module is perfectly usable for
432whatever your needs might be.
95bebf8c 433
2ffffc6d 434But there are still caveats, so here goes ...
95bebf8c 435
436=over 4
437
438=item Use of C<SUPER::>.
439
440The idea of C<SUPER::> under multiple inheritence is ambigious, and generally not recomended anyway.
441However, it's use in conjuntion with this module is very much not recommended, and in fact very
5d5c86d9 442discouraged. The recommended approach is to instead use the supplied C<next::method> feature, see
443more details on it's usage above.
95bebf8c 444
445=item Changing C<@ISA>.
446
447It is the author's opinion that changing C<@ISA> at runtime is pure insanity anyway. However, people
448do it, so I must caveat. Any changes to the C<@ISA> will not be reflected in the MRO calculated by this
d0e2efe5 449module, and therefor probably won't even show up. If you do this, you will need to call C<reinitialize>
450in order to recalulate B<all> method dispatch tables. See the C<reinitialize> documentation and an example
451in F<t/20_reinitialize.t> for more information.
95bebf8c 452
453=item Adding/deleting methods from class symbol tables.
454
2ffffc6d 455This module calculates the MRO for each requested class by interogatting the symbol tables of said classes.
456So any symbol table manipulation which takes place after our INIT phase is run will not be reflected in
457the calculated MRO. Just as with changing the C<@ISA>, you will need to call C<reinitialize> for any
458changes you make to take effect.
95bebf8c 459
2ffffc6d 460=item Calling C<next::method> from methods defined outside the class
95bebf8c 461
2ffffc6d 462There is an edge case when using C<next::method> from within a subroutine which was created in a different
463module than the one it is called from. It sounds complicated, but it really isn't. Here is an example which
464will not work correctly:
15eeb546 465
2ffffc6d 466 *Foo::foo = sub { (shift)->next::method(@_) };
467
468The problem exists because the anonymous subroutine being assigned to the glob C<*Foo::foo> will show up
469in the call stack as being called C<__ANON__> and not C<foo> as you might expect. Since C<next::method>
470uses C<caller> to find the name of the method it was called in, it will fail in this case.
15eeb546 471
2ffffc6d 472But fear not, there is a simple solution. The module C<Sub::Name> will reach into the perl internals and
473assign a name to an anonymous subroutine for you. Simply do this:
474
475 use Sub::Name 'subname';
476 *Foo::foo = subname 'Foo::foo' => sub { (shift)->next::method(@_) };
15eeb546 477
2ffffc6d 478and things will Just Work. Of course this is not always possible to do, but to be honest, I just can't
479manage to find a workaround for it, so until someone gives me a working patch this will be a known
480limitation of this module.
15eeb546 481
5d5c86d9 482=back
15eeb546 483
0a4d4e25 484=head1 COMPATIBILITY
485
486If your software requires Perl 5.9.5 or higher, you do not need L<Class::C3>, you can simple C<use mro 'c3'>, and not worry about C<initialize()>, avoid some of the above caveats, and get the best possible performance. See L<mro> for more details.
487
488If your software is meant to work on earlier Perls, use L<Class::C3> as documented here. L<Class::C3> will detect Perl 5.9.5+ and take advantage of the core support when available.
489
490=head1 Class::C3::XS
491
492This module will load L<Class::C3::XS> if it's installed and you are running on a Perl version older than 5.9.5. Installing this is recommended when possible, as it results in significant performance improvements (but unlike the 5.9.5+ core support, it still has all of the same caveats as L<Class::C3>).
493
5d5c86d9 494=head1 CODE COVERAGE
15eeb546 495
ac6b0914 496I use B<Devel::Cover> to test the code coverage of my tests, below is the B<Devel::Cover> report on this
497module's test suite.
5d5c86d9 498
499 ---------------------------- ------ ------ ------ ------ ------ ------ ------
500 File stmt bran cond sub pod time total
501 ---------------------------- ------ ------ ------ ------ ------ ------ ------
58f0eafe 502 Class/C3.pm 98.3 84.4 80.0 96.2 100.0 98.4 94.4
5d5c86d9 503 ---------------------------- ------ ------ ------ ------ ------ ------ ------
58f0eafe 504 Total 98.3 84.4 80.0 96.2 100.0 98.4 94.4
5d5c86d9 505 ---------------------------- ------ ------ ------ ------ ------ ------ ------
15eeb546 506
95bebf8c 507=head1 SEE ALSO
508
509=head2 The original Dylan paper
510
511=over 4
512
513=item L<http://www.webcom.com/haahr/dylan/linearization-oopsla96.html>
514
515=back
516
517=head2 The prototype Perl 6 Object Model uses C3
518
519=over 4
520
521=item L<http://svn.openfoundry.org/pugs/perl5/Perl6-MetaModel/>
522
523=back
524
525=head2 Parrot now uses C3
526
527=over 4
528
529=item L<http://aspn.activestate.com/ASPN/Mail/Message/perl6-internals/2746631>
530
531=item L<http://use.perl.org/~autrijus/journal/25768>
532
533=back
534
535=head2 Python 2.3 MRO related links
536
537=over 4
538
539=item L<http://www.python.org/2.3/mro.html>
540
541=item L<http://www.python.org/2.2.2/descrintro.html#mro>
542
543=back
544
545=head2 C3 for TinyCLOS
546
547=over 4
548
549=item L<http://www.call-with-current-continuation.org/eggs/c3.html>
550
551=back
552
bad9dc59 553=head1 ACKNOWLEGEMENTS
554
555=over 4
556
557=item Thanks to Matt S. Trout for using this module in his module L<DBIx::Class>
558and finding many bugs and providing fixes.
559
560=item Thanks to Justin Guenther for making C<next::method> more robust by handling
561calls inside C<eval> and anon-subs.
562
f480cda1 563=item Thanks to Robert Norris for adding support for C<next::can> and
564C<maybe::next::method>.
565
bad9dc59 566=back
567
95bebf8c 568=head1 AUTHOR
569
d401eda1 570Stevan Little, E<lt>stevan@iinteractive.comE<gt>
95bebf8c 571
6262b4cf 572Brandon L. Black, E<lt>blblack@gmail.comE<gt>
573
95bebf8c 574=head1 COPYRIGHT AND LICENSE
575
08c29211 576Copyright 2005, 2006 by Infinity Interactive, Inc.
95bebf8c 577
578L<http://www.iinteractive.com>
579
580This library is free software; you can redistribute it and/or modify
581it under the same terms as Perl itself.
582
f4a893b2 583=cut