/usr/share/perl5/MRO/Compat.pm is in libmro-compat-perl 0.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | package MRO::Compat;
use strict;
use warnings;
require 5.006_000;
# Keep this < 1.00, so people can tell the fake
# mro.pm from the real one
our $VERSION = '0.11';
BEGIN {
# Alias our private functions over to
# the mro:: namespace and load
# Class::C3 if Perl < 5.9.5
if($] < 5.009_005) {
$mro::VERSION # to fool Module::Install when generating META.yml
= $VERSION;
$INC{'mro.pm'} = __FILE__;
*mro::import = \&__import;
*mro::get_linear_isa = \&__get_linear_isa;
*mro::set_mro = \&__set_mro;
*mro::get_mro = \&__get_mro;
*mro::get_isarev = \&__get_isarev;
*mro::is_universal = \&__is_universal;
*mro::method_changed_in = \&__method_changed_in;
*mro::invalidate_all_method_caches
= \&__invalidate_all_method_caches;
require Class::C3;
if($Class::C3::XS::VERSION && $Class::C3::XS::VERSION > 0.03) {
*mro::get_pkg_gen = \&__get_pkg_gen_c3xs;
}
else {
*mro::get_pkg_gen = \&__get_pkg_gen_pp;
}
}
# Load mro.pm and provide no-op Class::C3::.*initialize() funcs for 5.9.5+
else {
require mro;
no warnings 'redefine';
*Class::C3::initialize = sub { 1 };
*Class::C3::reinitialize = sub { 1 };
*Class::C3::uninitialize = sub { 1 };
}
}
=head1 NAME
MRO::Compat - mro::* interface compatibility for Perls < 5.9.5
=head1 SYNOPSIS
package FooClass; use base qw/X Y Z/;
package X; use base qw/ZZZ/;
package Y; use base qw/ZZZ/;
package Z; use base qw/ZZZ/;
package main;
use MRO::Compat;
my $linear = mro::get_linear_isa('FooClass');
print join(q{, }, @$linear);
# Prints: "FooClass, X, ZZZ, Y, Z"
=head1 DESCRIPTION
The "mro" namespace provides several utilities for dealing
with method resolution order and method caching in general
in Perl 5.9.5 and higher.
This module provides those interfaces for
earlier versions of Perl (back to 5.6.0 anyways).
It is a harmless no-op to use this module on 5.9.5+. That
is to say, code which properly uses L<MRO::Compat> will work
unmodified on both older Perls and 5.9.5+.
If you're writing a piece of software that would like to use
the parts of 5.9.5+'s mro:: interfaces that are supported
here, and you want compatibility with older Perls, this
is the module for you.
Some parts of this code will work better and/or faster with
L<Class::C3::XS> installed (which is an optional prereq
of L<Class::C3>, which is in turn a prereq of this
package), but it's not a requirement.
This module never exports any functions. All calls must
be fully qualified with the C<mro::> prefix.
The interface documentation here serves only as a quick
reference of what the function basically does, and what
differences between L<MRO::Compat> and 5.9.5+ one should
look out for. The main docs in 5.9.5's L<mro> are the real
interface docs, and contain a lot of other useful information.
=head1 Functions
=head2 mro::get_linear_isa($classname[, $type])
Returns an arrayref which is the linearized "ISA" of the given class.
Uses whichever MRO is currently in effect for that class by default,
or the given MRO (either C<c3> or C<dfs> if specified as C<$type>).
The linearized ISA of a class is a single ordered list of all of the
classes that would be visited in the process of resolving a method
on the given class, starting with itself. It does not include any
duplicate entries.
Note that C<UNIVERSAL> (and any members of C<UNIVERSAL>'s MRO) are not
part of the MRO of a class, even though all classes implicitly inherit
methods from C<UNIVERSAL> and its parents.
=cut
sub __get_linear_isa_dfs {
no strict 'refs';
my $classname = shift;
my @lin = ($classname);
my %stored;
foreach my $parent (@{"$classname\::ISA"}) {
my $plin = __get_linear_isa_dfs($parent);
foreach (@$plin) {
next if exists $stored{$_};
push(@lin, $_);
$stored{$_} = 1;
}
}
return \@lin;
}
sub __get_linear_isa {
my ($classname, $type) = @_;
die "mro::get_mro requires a classname" if !defined $classname;
$type ||= __get_mro($classname);
if($type eq 'dfs') {
return __get_linear_isa_dfs($classname);
}
elsif($type eq 'c3') {
return [Class::C3::calculateMRO($classname)];
}
die "type argument must be 'dfs' or 'c3'";
}
=head2 mro::import
This allows the C<use mro 'dfs'> and
C<use mro 'c3'> syntaxes, providing you
L<use MRO::Compat> first. Please see the
L</USING C3> section for additional details.
=cut
sub __import {
if($_[1]) {
goto &Class::C3::import if $_[1] eq 'c3';
__set_mro(scalar(caller), $_[1]);
}
}
=head2 mro::set_mro($classname, $type)
Sets the mro of C<$classname> to one of the types
C<dfs> or C<c3>. Please see the L</USING C3>
section for additional details.
=cut
sub __set_mro {
my ($classname, $type) = @_;
if(!defined $classname || !$type) {
die q{Usage: mro::set_mro($classname, $type)};
}
if($type eq 'c3') {
eval "package $classname; use Class::C3";
die $@ if $@;
}
elsif($type eq 'dfs') {
# In the dfs case, check whether we need to undo C3
if(defined $Class::C3::MRO{$classname}) {
Class::C3::_remove_method_dispatch_table($classname);
}
delete $Class::C3::MRO{$classname};
}
else {
die qq{Invalid mro type "$type"};
}
return;
}
=head2 mro::get_mro($classname)
Returns the MRO of the given class (either C<c3> or C<dfs>).
It considers any Class::C3-using class to have C3 MRO
even before L<Class::C3::initialize()> is called.
=cut
sub __get_mro {
my $classname = shift;
die "mro::get_mro requires a classname" if !defined $classname;
return 'c3' if exists $Class::C3::MRO{$classname};
return 'dfs';
}
=head2 mro::get_isarev($classname)
Returns an arrayref of classes who are subclasses of the
given classname. In other words, classes in whose @ISA
hierarchy we appear, no matter how indirectly.
This is much slower on pre-5.9.5 Perls with MRO::Compat
than it is on 5.9.5+, as it has to search the entire
package namespace.
=cut
sub __get_all_pkgs_with_isas {
no strict 'refs';
no warnings 'recursion';
my @retval;
my $search = shift;
my $pfx;
my $isa;
if(defined $search) {
$isa = \@{"$search\::ISA"};
$pfx = "$search\::";
}
else {
$search = 'main';
$isa = \@main::ISA;
$pfx = '';
}
push(@retval, $search) if scalar(@$isa);
foreach my $cand (keys %{"$search\::"}) {
if($cand =~ s/::$//) {
next if $cand eq $search; # skip self-reference (main?)
push(@retval, @{__get_all_pkgs_with_isas($pfx . $cand)});
}
}
return \@retval;
}
sub __get_isarev_recurse {
no strict 'refs';
my ($class, $all_isas, $level) = @_;
die "Recursive inheritance detected" if $level > 100;
my %retval;
foreach my $cand (@$all_isas) {
my $found_me;
foreach (@{"$cand\::ISA"}) {
if($_ eq $class) {
$found_me = 1;
last;
}
}
if($found_me) {
$retval{$cand} = 1;
map { $retval{$_} = 1 }
@{__get_isarev_recurse($cand, $all_isas, $level+1)};
}
}
return [keys %retval];
}
sub __get_isarev {
my $classname = shift;
die "mro::get_isarev requires a classname" if !defined $classname;
__get_isarev_recurse($classname, __get_all_pkgs_with_isas(), 0);
}
=head2 mro::is_universal($classname)
Returns a boolean status indicating whether or not
the given classname is either C<UNIVERSAL> itself,
or one of C<UNIVERSAL>'s parents by C<@ISA> inheritance.
Any class for which this function returns true is
"universal" in the sense that all classes potentially
inherit methods from it.
=cut
sub __is_universal {
my $classname = shift;
die "mro::is_universal requires a classname" if !defined $classname;
my $lin = __get_linear_isa('UNIVERSAL');
foreach (@$lin) {
return 1 if $classname eq $_;
}
return 0;
}
=head2 mro::invalidate_all_method_caches
Increments C<PL_sub_generation>, which invalidates method
caching in all packages.
Please note that this is rarely necessary, unless you are
dealing with a situation which is known to confuse Perl's
method caching.
=cut
sub __invalidate_all_method_caches {
# Super secret mystery code :)
@f845a9c1ac41be33::ISA = @f845a9c1ac41be33::ISA;
return;
}
=head2 mro::method_changed_in($classname)
Invalidates the method cache of any classes dependent on the
given class. In L<MRO::Compat> on pre-5.9.5 Perls, this is
an alias for C<mro::invalidate_all_method_caches> above, as
pre-5.9.5 Perls have no other way to do this. It will still
enforce the requirement that you pass it a classname, for
compatibility.
Please note that this is rarely necessary, unless you are
dealing with a situation which is known to confuse Perl's
method caching.
=cut
sub __method_changed_in {
my $classname = shift;
die "mro::method_changed_in requires a classname" if !defined $classname;
__invalidate_all_method_caches();
}
=head2 mro::get_pkg_gen($classname)
Returns an integer which is incremented every time a local
method of or the C<@ISA> of the given package changes on
Perl 5.9.5+. On earlier Perls with this L<MRO::Compat> module,
it will probably increment a lot more often than necessary.
=cut
{
my $__pkg_gen = 2;
sub __get_pkg_gen_pp {
my $classname = shift;
die "mro::get_pkg_gen requires a classname" if !defined $classname;
return $__pkg_gen++;
}
}
sub __get_pkg_gen_c3xs {
my $classname = shift;
die "mro::get_pkg_gen requires a classname" if !defined $classname;
return Class::C3::XS::_plsubgen();
}
=head1 USING C3
While this module makes the 5.9.5+ syntaxes
C<use mro 'c3'> and C<mro::set_mro("Foo", 'c3')> available
on older Perls, it does so merely by passing off the work
to L<Class::C3>.
It does not remove the need for you to call
C<Class::C3::initialize()>, C<Class::C3::reinitialize()>, and/or
C<Class::C3::uninitialize()> at the appropriate times
as documented in the L<Class::C3> docs. These three functions
are always provided by L<MRO::Compat>, either via L<Class::C3>
itself on older Perls, or directly as no-ops on 5.9.5+.
=head1 SEE ALSO
L<Class::C3>
L<mro>
=head1 AUTHOR
Brandon L. Black, E<lt>blblack@gmail.comE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright 2007-2008 Brandon L. Black E<lt>blblack@gmail.comE<gt>
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
|