/usr/share/perl5/UNIVERSAL/require.pm is in libuniversal-require-perl 0.13-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 | package UNIVERSAL::require;
$UNIVERSAL::require::VERSION = '0.13';
# We do this because UNIVERSAL.pm uses CORE::require(). We're going
# to put our own require() into UNIVERSAL and that makes an ambiguity.
# So we load it up beforehand to avoid that.
BEGIN { require UNIVERSAL }
package UNIVERSAL;
use strict;
use vars qw($Level);
$Level = 0;
=pod
=head1 NAME
UNIVERSAL::require - require() modules from a variable
=head1 SYNOPSIS
# This only needs to be said once in your program.
require UNIVERSAL::require;
# Same as "require Some::Module"
my $module = 'Some::Module';
$module->require or die $@;
# Same as "use Some::Module"
BEGIN { $module->use or die $@ }
=head1 DESCRIPTION
If you've ever had to do this...
eval "require $module";
to get around the bareword caveats on require(), this module is for
you. It creates a universal require() class method that will work
with every Perl module and its secure. So instead of doing some
arcane eval() work, you can do this:
$module->require;
It doesn't save you much typing, but it'll make alot more sense to
someone who's not a ninth level Perl acolyte.
=head1 Methods
=head3 require
my $return_val = $module->require or die $@;
my $return_val = $module->require($version) or die $@;
This works exactly like Perl's require, except without the bareword
restriction, and it doesn't die. Since require() is placed in the
UNIVERSAL namespace, it will work on B<any> module. You just have to
use UNIVERSAL::require somewhere in your code.
Should the module require fail, or not be a high enough $version, it
will simply return false and B<not die>. The error will be in
$@ as well as $UNIVERSAL::require::ERROR.
$module->require or die $@;
=cut
sub require {
my($module, $want_version) = @_;
$UNIVERSAL::require::ERROR = '';
die("UNIVERSAL::require() can only be run as a class method")
if ref $module;
die("UNIVERSAL::require() takes no or one arguments") if @_ > 2;
my($call_package, $call_file, $call_line) = caller($Level);
# Load the module.
my $file = $module . '.pm';
$file =~ s{::}{/}g;
# For performance reasons, check if its already been loaded. This makes
# things about 4 times faster.
# We use the eval { } to make sure $@ is not set. See RT #44444 for details
return eval { 1 } if $INC{$file};
my $return = eval qq{
#line $call_line "$call_file"
CORE::require(\$file);
};
# Check for module load failure.
if( !$return ) {
$UNIVERSAL::require::ERROR = $@;
return $return;
}
# Module version check.
if( @_ == 2 ) {
eval qq{
#line $call_line "$call_file"
\$module->VERSION($want_version);
1;
} or do {
$UNIVERSAL::require::ERROR = $@;
return 0;
};
}
return $return;
}
=head3 use
my $require_return = $module->use or die $@;
my $require_return = $module->use(@imports) or die $@;
Like C<UNIVERSAL::require>, this allows you to C<use> a $module without
having to eval to work around the bareword requirement. It returns the
same as require.
Should either the require or the import fail it will return false. The
error will be in $@.
If possible, call this inside a BEGIN block to emulate a normal C<use>
as closely as possible.
BEGIN { $module->use }
=cut
sub use {
my($module, @imports) = @_;
local $Level = 1;
my $return = $module->require or return 0;
my($call_package, $call_file, $call_line) = caller;
eval qq{
package $call_package;
#line $call_line "$call_file"
\$module->import(\@imports);
1;
} or do {
$UNIVERSAL::require::ERROR = $@;
return 0;
};
return $return;
}
=head1 SECURITY NOTES
UNIVERSAL::require makes use of C<eval STRING>. In previous versions
of UNIVERSAL::require it was discovered that one could craft a class
name which would result in code being executed. This hole has been
closed. The only variables now exposed to C<eval STRING> are the
caller's package, filename and line which are not tainted.
UNIVERSAL::require is taint clean.
=head1 COPYRIGHT
Copyright 2001, 2005 by Michael G Schwern E<lt>schwern@pobox.comE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://www.perl.com/perl/misc/Artistic.html>
=head1 AUTHOR
Michael G Schwern <schwern@pobox.com>
=head1 SEE ALSO
L<Module::Load>, L<perlfunc/require>, L<http://dev.perl.org/rfc/253.pod>
=cut
1;
|