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