.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Algorithm::C3 3pm" .TH Algorithm::C3 3pm "2020-11-21" "perl v5.32.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Algorithm::C3 \- A module for merging hierarchies using the C3 algorithm .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& use Algorithm::C3; \& \& # merging a classic diamond \& # inheritance graph like this: \& # \& # \& # / \e \& # \& # \e / \& # \& \& my @merged = Algorithm::C3::merge( \& \*(AqD\*(Aq, \& sub { \& # extract the ISA array \& # from the package \& no strict \*(Aqrefs\*(Aq; \& @{$_[0] . \*(Aq::ISA\*(Aq}; \& } \& ); \& \& print join ", " => @merged; # prints D, B, C, A .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This module implements the C3 algorithm. I have broken this out into it's own module because I found myself copying and pasting it way too often for various needs. Most of the uses I have for C3 revolve around class building and metamodels, but it could also be used for things like dependency resolution as well since it tends to do such a nice job of preserving local precedence orderings. .PP Below is a brief explanation of C3 taken from the Class::C3 module. For more detailed information, see the \*(L"\s-1SEE ALSO\*(R"\s0 section and the links there. .SS "What is C3?" .IX Subsection "What is C3?" C3 is the name of an algorithm which aims to provide a sane method resolution order under multiple inheritance. It was first introduced in the language Dylan (see links in the \*(L"\s-1SEE ALSO\*(R"\s0 section), and then later adopted as the preferred \s-1MRO\s0 (Method Resolution Order) for the new-style classes in Python 2.3. Most recently it has been adopted as the 'canonical' \s-1MRO\s0 for Perl 6 classes, and the default \&\s-1MRO\s0 for Parrot objects as well. .SS "How does C3 work." .IX Subsection "How does C3 work." C3 works by always preserving local precedence ordering. This essentially means that no class will appear before any of it's subclasses. Take the classic diamond inheritance pattern for instance: .PP .Vb 5 \& \& / \e \& \& \e / \& .Ve .PP The standard Perl 5 \s-1MRO\s0 would be (D, B, A, C). The result being that \&\fBA\fR appears before \fBC\fR, even though \fBC\fR is the subclass of \fBA\fR. The C3 \s-1MRO\s0 algorithm however, produces the following \s-1MRO\s0 (D, B, C, A), which does not have this same issue. .PP This example is fairly trivial, for more complex examples and a deeper explanation, see the links in the \*(L"\s-1SEE ALSO\*(R"\s0 section. .SH "FUNCTION" .IX Header "FUNCTION" .IP "\fBmerge ($root, \f(CB$func_to_fetch_parent\fB, \f(CB$cache\fB)\fR" 4 .IX Item "merge ($root, $func_to_fetch_parent, $cache)" This takes a \f(CW$root\fR node, which can be anything really it is up to you. Then it takes a \f(CW$func_to_fetch_parent\fR which can be either a \s-1CODE\s0 reference (see \s-1SYNOPSIS\s0 above for an example), or a string containing a method name to be called on all the items being linearized. An example of how this might look is below: .Sp .Vb 2 \& { \& package A; \& \& sub supers { \& no strict \*(Aqrefs\*(Aq; \& @{$_[0] . \*(Aq::ISA\*(Aq}; \& } \& \& package C; \& our @ISA = (\*(AqA\*(Aq); \& package B; \& our @ISA = (\*(AqA\*(Aq); \& package D; \& our @ISA = (\*(AqB\*(Aq, \*(AqC\*(Aq); \& } \& \& print join ", " => Algorithm::C3::merge(\*(AqD\*(Aq, \*(Aqsupers\*(Aq); .Ve .Sp The purpose of \f(CW$func_to_fetch_parent\fR is to provide a way for \f(CW\*(C`merge\*(C'\fR to extract the parents of \f(CW$root\fR. This is needed for C3 to be able to do it's work. .Sp The \f(CW$cache\fR parameter is an entirely optional performance measure, and should not change behavior. .Sp If supplied, it should be a hashref that merge can use as a private cache between runs to speed things up. Generally speaking, if you will be calling merge many times on related things, and the parent fetching function will return constant results given the same arguments during all of these calls, you can and should reuse the same shared cache hash for all of the calls. Example: .Sp .Vb 8 \& sub do_some_merging { \& my %merge_cache; \& my @foo_mro = Algorithm::C3::Merge(\*(AqFoo\*(Aq, \e&get_supers, \e%merge_cache); \& my @bar_mro = Algorithm::C3::Merge(\*(AqBar\*(Aq, \e&get_supers, \e%merge_cache); \& my @baz_mro = Algorithm::C3::Merge(\*(AqBaz\*(Aq, \e&get_supers, \e%merge_cache); \& my @quux_mro = Algorithm::C3::Merge(\*(AqQuux\*(Aq, \e&get_supers, \e%merge_cache); \& # ... \& } .Ve .SH "CODE COVERAGE" .IX Header "CODE COVERAGE" I use \fBDevel::Cover\fR to test the code coverage of my tests, below is the \fBDevel::Cover\fR report on this module's test suite. .PP .Vb 7 \& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \& File stmt bran cond sub pod time total \& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \& Algorithm/C3.pm 100.0 100.0 100.0 100.0 100.0 100.0 100.0 \& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \& Total 100.0 100.0 100.0 100.0 100.0 100.0 100.0 \& \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- \-\-\-\-\-\- .Ve .SH "SEE ALSO" .IX Header "SEE ALSO" .SS "The original Dylan paper" .IX Subsection "The original Dylan paper" .IP "" 4 .IX Item "" .SS "The prototype Perl 6 Object Model uses C3" .IX Subsection "The prototype Perl 6 Object Model uses C3" .PD 0 .IP "" 4 .IX Item "" .PD .SS "Parrot now uses C3" .IX Subsection "Parrot now uses C3" .IP "" 4 .IX Item "" .PD 0 .IP "" 4 .IX Item "" .PD .SS "Python 2.3 \s-1MRO\s0 related links" .IX Subsection "Python 2.3 MRO related links" .IP "" 4 .IX Item "" .PD 0 .IP "" 4 .IX Item "" .PD .SS "C3 for TinyCLOS" .IX Subsection "C3 for TinyCLOS" .IP "" 4 .IX Item "" .SH "AUTHORS" .IX Header "AUTHORS" Stevan Little, .PP Brandon L. Black, .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" Copyright 2006 by Infinity Interactive, Inc. .PP .PP This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.