mro.pm 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. # mro.pm
  2. #
  3. # Copyright (c) 2007 Brandon L Black
  4. # Copyright (c) 2008,2009 Larry Wall and others
  5. #
  6. # You may distribute under the terms of either the GNU General Public
  7. # License or the Artistic License, as specified in the README file.
  8. #
  9. package mro;
  10. use strict;
  11. use warnings;
  12. # mro.pm versions < 1.00 reserved for MRO::Compat
  13. # for partial back-compat to 5.[68].x
  14. our $VERSION = '1.17';
  15. sub import {
  16. mro::set_mro(scalar(caller), $_[1]) if $_[1];
  17. }
  18. package # hide me from PAUSE
  19. next;
  20. sub can { mro::_nextcan($_[0], 0) }
  21. sub method {
  22. my $method = mro::_nextcan($_[0], 1);
  23. goto &$method;
  24. }
  25. package # hide me from PAUSE
  26. maybe::next;
  27. sub method {
  28. my $method = mro::_nextcan($_[0], 0);
  29. goto &$method if defined $method;
  30. return;
  31. }
  32. require XSLoader;
  33. XSLoader::load('mro');
  34. 1;
  35. __END__
  36. =head1 NAME
  37. mro - Method Resolution Order
  38. =head1 SYNOPSIS
  39. use mro; # enables next::method and friends globally
  40. use mro 'dfs'; # enable DFS MRO for this class (Perl default)
  41. use mro 'c3'; # enable C3 MRO for this class
  42. =head1 DESCRIPTION
  43. The "mro" namespace provides several utilities for dealing
  44. with method resolution order and method caching in general.
  45. These interfaces are only available in Perl 5.9.5 and higher.
  46. See L<MRO::Compat> on CPAN for a mostly forwards compatible
  47. implementation for older Perls.
  48. =head1 OVERVIEW
  49. It's possible to change the MRO of a given class either by using C<use
  50. mro> as shown in the synopsis, or by using the L</mro::set_mro> function
  51. below.
  52. The special methods C<next::method>, C<next::can>, and
  53. C<maybe::next::method> are not available until this C<mro> module
  54. has been loaded via C<use> or C<require>.
  55. =head1 The C3 MRO
  56. In addition to the traditional Perl default MRO (depth first
  57. search, called C<DFS> here), Perl now offers the C3 MRO as
  58. well. Perl's support for C3 is based on the work done in
  59. Stevan Little's module L<Class::C3>, and most of the C3-related
  60. documentation here is ripped directly from there.
  61. =head2 What is C3?
  62. C3 is the name of an algorithm which aims to provide a sane method
  63. resolution order under multiple inheritance. It was first introduced in
  64. the language Dylan (see links in the L</"SEE ALSO"> section), and then
  65. later adopted as the preferred MRO (Method Resolution Order) for the
  66. new-style classes in Python 2.3. Most recently it has been adopted as the
  67. "canonical" MRO for Perl 6 classes, and the default MRO for Parrot objects
  68. as well.
  69. =head2 How does C3 work
  70. C3 works by always preserving local precedence ordering. This essentially
  71. means that no class will appear before any of its subclasses. Take, for
  72. instance, the classic diamond inheritance pattern:
  73. <A>
  74. / \
  75. <B> <C>
  76. \ /
  77. <D>
  78. The standard Perl 5 MRO would be (D, B, A, C). The result being that B<A>
  79. appears before B<C>, even though B<C> is the subclass of B<A>. The C3 MRO
  80. algorithm however, produces the following order: (D, B, C, A), which does
  81. not have this issue.
  82. This example is fairly trivial; for more complex cases and a deeper
  83. explanation, see the links in the L</"SEE ALSO"> section.
  84. =head1 Functions
  85. =head2 mro::get_linear_isa($classname[, $type])
  86. Returns an arrayref which is the linearized MRO of the given class.
  87. Uses whichever MRO is currently in effect for that class by default,
  88. or the given MRO (either C<c3> or C<dfs> if specified as C<$type>).
  89. The linearized MRO of a class is an ordered array of all of the
  90. classes one would search when resolving a method on that class,
  91. starting with the class itself.
  92. If the requested class doesn't yet exist, this function will still
  93. succeed, and return C<[ $classname ]>
  94. Note that C<UNIVERSAL> (and any members of C<UNIVERSAL>'s MRO) are not
  95. part of the MRO of a class, even though all classes implicitly inherit
  96. methods from C<UNIVERSAL> and its parents.
  97. =head2 mro::set_mro ($classname, $type)
  98. Sets the MRO of the given class to the C<$type> argument (either
  99. C<c3> or C<dfs>).
  100. =head2 mro::get_mro($classname)
  101. Returns the MRO of the given class (either C<c3> or C<dfs>).
  102. =head2 mro::get_isarev($classname)
  103. Gets the C<mro_isarev> for this class, returned as an
  104. arrayref of class names. These are every class that "isa"
  105. the given class name, even if the isa relationship is
  106. indirect. This is used internally by the MRO code to
  107. keep track of method/MRO cache invalidations.
  108. As with C<mro::get_linear_isa> above, C<UNIVERSAL> is special.
  109. C<UNIVERSAL> (and parents') isarev lists do not include
  110. every class in existence, even though all classes are
  111. effectively descendants for method inheritance purposes.
  112. =head2 mro::is_universal($classname)
  113. Returns a boolean status indicating whether or not
  114. the given classname is either C<UNIVERSAL> itself,
  115. or one of C<UNIVERSAL>'s parents by C<@ISA> inheritance.
  116. Any class for which this function returns true is
  117. "universal" in the sense that all classes potentially
  118. inherit methods from it.
  119. =head2 mro::invalidate_all_method_caches()
  120. Increments C<PL_sub_generation>, which invalidates method
  121. caching in all packages.
  122. =head2 mro::method_changed_in($classname)
  123. Invalidates the method cache of any classes dependent on the
  124. given class. This is not normally necessary. The only
  125. known case where pure perl code can confuse the method
  126. cache is when you manually install a new constant
  127. subroutine by using a readonly scalar value, like the
  128. internals of L<constant> do. If you find another case,
  129. please report it so we can either fix it or document
  130. the exception here.
  131. =head2 mro::get_pkg_gen($classname)
  132. Returns an integer which is incremented every time a
  133. real local method in the package C<$classname> changes,
  134. or the local C<@ISA> of C<$classname> is modified.
  135. This is intended for authors of modules which do lots
  136. of class introspection, as it allows them to very quickly
  137. check if anything important about the local properties
  138. of a given class have changed since the last time they
  139. looked. It does not increment on method/C<@ISA>
  140. changes in superclasses.
  141. It's still up to you to seek out the actual changes,
  142. and there might not actually be any. Perhaps all
  143. of the changes since you last checked cancelled each
  144. other out and left the package in the state it was in
  145. before.
  146. This integer normally starts off at a value of C<1>
  147. when a package stash is instantiated. Calling it
  148. on packages whose stashes do not exist at all will
  149. return C<0>. If a package stash is completely
  150. deleted (not a normal occurrence, but it can happen
  151. if someone does something like C<undef %PkgName::>),
  152. the number will be reset to either C<0> or C<1>,
  153. depending on how completely the package was wiped out.
  154. =head2 next::method
  155. This is somewhat like C<SUPER>, but it uses the C3 method
  156. resolution order to get better consistency in multiple
  157. inheritance situations. Note that while inheritance in
  158. general follows whichever MRO is in effect for the
  159. given class, C<next::method> only uses the C3 MRO.
  160. One generally uses it like so:
  161. sub some_method {
  162. my $self = shift;
  163. my $superclass_answer = $self->next::method(@_);
  164. return $superclass_answer + 1;
  165. }
  166. Note that you don't (re-)specify the method name.
  167. It forces you to always use the same method name
  168. as the method you started in.
  169. It can be called on an object or a class, of course.
  170. The way it resolves which actual method to call is:
  171. =over 4
  172. =item 1
  173. First, it determines the linearized C3 MRO of
  174. the object or class it is being called on.
  175. =item 2
  176. Then, it determines the class and method name
  177. of the context it was invoked from.
  178. =item 3
  179. Finally, it searches down the C3 MRO list until
  180. it reaches the contextually enclosing class, then
  181. searches further down the MRO list for the next
  182. method with the same name as the contextually
  183. enclosing method.
  184. =back
  185. Failure to find a next method will result in an
  186. exception being thrown (see below for alternatives).
  187. This is substantially different than the behavior
  188. of C<SUPER> under complex multiple inheritance.
  189. (This becomes obvious when one realizes that the
  190. common superclasses in the C3 linearizations of
  191. a given class and one of its parents will not
  192. always be ordered the same for both.)
  193. B<Caveat>: Calling C<next::method> from methods defined outside the class:
  194. There is an edge case when using C<next::method> from within a subroutine
  195. which was created in a different module than the one it is called from. It
  196. sounds complicated, but it really isn't. Here is an example which will not
  197. work correctly:
  198. *Foo::foo = sub { (shift)->next::method(@_) };
  199. The problem exists because the anonymous subroutine being assigned to the
  200. C<*Foo::foo> glob will show up in the call stack as being called
  201. C<__ANON__> and not C<foo> as you might expect. Since C<next::method> uses
  202. C<caller> to find the name of the method it was called in, it will fail in
  203. this case.
  204. But fear not, there's a simple solution. The module C<Sub::Name> will
  205. reach into the perl internals and assign a name to an anonymous subroutine
  206. for you. Simply do this:
  207. use Sub::Name 'subname';
  208. *Foo::foo = subname 'Foo::foo' => sub { (shift)->next::method(@_) };
  209. and things will Just Work.
  210. =head2 next::can
  211. This is similar to C<next::method>, but just returns either a code
  212. reference or C<undef> to indicate that no further methods of this name
  213. exist.
  214. =head2 maybe::next::method
  215. In simple cases, it is equivalent to:
  216. $self->next::method(@_) if $self->next::can;
  217. But there are some cases where only this solution
  218. works (like C<goto &maybe::next::method>);
  219. =head1 SEE ALSO
  220. =head2 The original Dylan paper
  221. =over 4
  222. =item L<http://haahr.tempdomainname.com/dylan/linearization-oopsla96.html>
  223. =back
  224. =head2 Pugs
  225. The Pugs prototype Perl 6 Object Model uses C3
  226. =head2 Parrot
  227. Parrot now uses C3
  228. =over 4
  229. =item L<http://use.perl.org/~autrijus/journal/25768>
  230. =back
  231. =head2 Python 2.3 MRO related links
  232. =over 4
  233. =item L<http://www.python.org/2.3/mro.html>
  234. =item L<http://www.python.org/2.2.2/descrintro.html#mro>
  235. =back
  236. =head2 Class::C3
  237. =over 4
  238. =item L<Class::C3>
  239. =back
  240. =head1 AUTHOR
  241. Brandon L. Black, E<lt>blblack@gmail.comE<gt>
  242. Based on Stevan Little's L<Class::C3>
  243. =cut