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