/usr/share/perl5/UNIVERSAL/isa.pm is in libuniversal-isa-perl 1.20120726-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 | package UNIVERSAL::isa;
{
$UNIVERSAL::isa::VERSION = '1.20120726';
}
# ABSTRACT: Attempt to recover from people calling UNIVERSAL::isa as a function
use strict;
use warnings;
use 5.6.2;
use vars qw( $recursing );
use UNIVERSAL ();
use Scalar::Util 'blessed';
use warnings::register;
my ( $orig, $verbose_warning );
BEGIN { $orig = \&UNIVERSAL::isa }
no warnings 'redefine';
sub import
{
my $class = shift;
no strict 'refs';
for my $arg (@_)
{
*{ caller() . '::isa' } = \&UNIVERSAL::isa if $arg eq 'isa';
$verbose_warning = 1 if $arg eq 'verbose';
}
}
sub UNIVERSAL::isa
{
goto &$orig if $recursing;
my $type = invocant_type(@_);
$type->(@_);
}
sub invocant_type
{
my $invocant = shift;
return \&nonsense unless defined($invocant);
return \&object_or_class if blessed($invocant);
return \&reference if ref($invocant);
return \&nonsense unless $invocant;
return \&object_or_class;
}
sub nonsense
{
report_warning('on invalid invocant') if $verbose_warning;
return;
}
sub object_or_class
{
local $@;
local $recursing = 1;
if ( my $override = eval { $_[0]->can('isa') } )
{
unless ( $override == \&UNIVERSAL::isa )
{
report_warning();
my $obj = shift;
return $obj->$override(@_);
}
}
report_warning() if $verbose_warning;
goto &$orig;
}
sub reference
{
report_warning('Did you mean to use Scalar::Util::reftype() instead?')
if $verbose_warning;
goto &$orig;
}
sub report_warning
{
my $extra = shift;
$extra = $extra ? " ($extra)" : '';
if ( warnings::enabled() )
{
my $calling_sub = ( caller(3) )[3] || '';
return if $calling_sub =~ /::isa$/;
warnings::warn(
"Called UNIVERSAL::isa() as a function, not a method$extra" );
}
}
__PACKAGE__;
__END__
=pod
=head1 NAME
UNIVERSAL::isa - recover from people calling UNIVERSAL::isa as a function
=head1 SYNOPSIS
# from the shell
echo 'export PERL5OPT=-MUNIVERSAL::isa' >> /etc/profile
# within your program
use UNIVERSAL::isa;
# enable warnings for all dodgy uses of UNIVERSAL::isa
use UNIVERSAL::isa 'verbose';
=head1 DESCRIPTION
Whenever you use L<UNIVERSAL/isa> as a function, a kitten using
L<Test::MockObject> dies. Normally, the kittens would be helpless, but if they
use L<UNIVERSAL::isa> (the module whose docs you are reading), the kittens can
live long and prosper.
This module replaces C<UNIVERSAL::isa> with a version that makes sure that,
when called as a function on objects which override C<isa>, C<isa> will call
the appropriate method on those objects
In all other cases, the real C<UNIVERSAL::isa> gets called directly.
B<NOTE:> You should use this module only for debugging purposes. It does not
belong as a dependency in running code.
=head1 WARNINGS
If the lexical warnings pragma is available, this module will emit a warning
for each naughty invocation of C<UNIVERSAL::isa>. Silence these warnings by
saying:
no warnings 'UNIVERSAL::isa';
in the lexical scope of the naughty code.
After version 1.00, warnings only appear when naughty code calls
UNIVERSAL::isa() as a function on an invocant for which there is an overridden
isa(). These are really truly I<active> bugs, and you should fix them rather
than relying on this module to find them.
To get warnings for all potentially dangerous uses of UNIVERSAL::isa() as a
function, not a method (that is, for I<all> uses of the method as a function,
which are latent bugs, if not bugs that will break your code as it exists now),
pass the C<verbose> flag when using the module. This can generate many extra
warnings, but they're more specific as to the actual wrong practice and they
usually suggest proper fixes.
=head1 SEE ALSO
L<Perl::Critic::Policy::BuiltinFunctions::ProhibitUniversalIsa>
L<UNIVERSAL::can> for another discussion of the problem at hand.
L<Test::MockObject> for one example of a module that really needs to override
C<isa()>.
Any decent explanation of OO to understand why calling methods as functions is
a staggeringly bad idea.
=head1 AUTHORS
Audrey Tang <cpan@audreyt.org>
chromatic <chromatic@wgz.org>
Yuval Kogman <nothingmuch@woobling.org>
=head1 COPYRIGHT & LICENSE
Copyright (c) 2005 - 2011, chromatic. This module is made available under the
same terms as Perl 5.12.
=cut
|