/usr/share/perl5/recommended.pm is in librecommended-perl 0.003-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 | use 5.008001;
use strict;
use warnings;
package recommended;
# ABSTRACT: Load recommended modules on demand when available
use version;
use Carp ();
use Module::Runtime 0.014 (); # bugfixes for use_package_optimistically
our $VERSION = '0.003';
# $MODULES{$type}{$caller}{$mod} = [$min_version, $satisfied]
my %MODULES;
# for testing and diagnostics
sub __modules { return \%MODULES }
sub import {
my $class = shift;
my $caller = caller;
for my $arg (@_) {
my $type = ref $arg;
if ( !$type ) {
$MODULES{$class}{$caller}{$arg} = [ 0, undef ];
}
elsif ( $type eq 'HASH' ) {
while ( my ( $mod, $ver ) = each %$arg ) {
Carp::croak("module '$mod': '$ver' is not a valid version string")
if !version::is_lax($ver);
$MODULES{$class}{$caller}{$mod} = [ $ver, undef ];
}
}
else {
Carp::croak("arguments to 'recommended' must be scalars or a hash ref");
}
}
}
sub has {
my ( $class, $mod, $ver ) = @_;
my $caller = caller;
my $spec = $MODULES{$class}{$caller}{$mod};
return 0 unless $spec; # explicit to ensure a value even in list context
if ( defined $ver ) {
Carp::croak("module '$mod': '$ver' is not a valid version string")
if !version::is_lax($ver);
}
else {
# shortcut if default already checked
return $spec->[1] if defined $spec->[1];
$ver = $spec->[0];
}
# don't call with a version; we want this to die only on compile failure
Module::Runtime::use_package_optimistically($mod);
my $ok = $INC{ Module::Runtime::module_notional_filename($mod) }
&& $mod->VERSION >= version->new($ver);
return $spec->[1] = $ok ? 1 : 0;
}
1;
# vim: ts=4 sts=4 sw=4 et:
__END__
=pod
=encoding UTF-8
=head1 NAME
recommended - Load recommended modules on demand when available
=head1 VERSION
version 0.003
=head1 SYNOPSIS
use recommended 'Foo::Bar', {
'Bar::Baz' => '1.23',
'Wibble' => '0.14',
};
if ( recommended->has( 'Foo::Bar' ) ) {
# do something with Foo::Bar
}
# default version required
if ( recommended->has( 'Wibble' ) ) {
# do something with Wibble if >= version 0.14
}
# custom version required
if ( recommended->has( 'Wibble', '0.10' ) ) {
# do something with Wibble if >= version 0.10
}
=head1 DESCRIPTION
This module gathers a list of recommended modules and versions and provides
means to check if they are available. It is a thin veneer around
L<Module::Runtime>.
There are two major benefits over using L<Module::Runtime> directly:
=over 4
=item *
Self-documents recommended modules together with versions at the top of your code, while still loading them on demand elsewhere.
=item *
Dies if a recommended module exists but fails to compile, but doesn't die if the module is missing or the version is insufficient. This is not something that L<Module::Runtime> offers in a single subroutine.
=back
=head1 USAGE
=head2 import
use recommended 'Foo::Bar', {
'Bar::Baz' => '1.23',
'Wibble' => '0.14',
};
Scalar import arguments are treated as module names with a minimum required
version of zero. Hash references are treated as module/minimum-version pairs.
If you repeat, the later minimum version overwrites the earlier one.
The list of modules and versions are kept separate for each calling package.
=head2 has
recommended->has( $module );
recommended->has( $module, $alt_minimum_version );
The C<has> method takes a module name and optional alternative minimum version
requirement and returns true if the following conditions are met:
=over 4
=item *
the module was recommended in the current package (via C<use recommended>)
=item *
the module can be loaded
=item *
the module meets the default or alternate minimum version
=back
Otherwise, it returns false. If the module exists but fails to compile, an
error is thrown. This avoids some edge-cases where things are left in an
incomplete state or subsequent normal loads of the module by other packages get
a misleading error.
The module is loaded without invoking the module's C<import> method, as running
import on an optional module at runtime is just weird.
=head1 SEE ALSO
=over 4
=item *
L<Module::Runtime>
=item *
L<Test::Requires>
=back
=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
=head1 SUPPORT
=head2 Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
at L<https://github.com/dagolden/recommended/issues>.
You will be notified automatically of any progress on your issue.
=head2 Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
L<https://github.com/dagolden/recommended>
git clone https://github.com/dagolden/recommended.git
=head1 AUTHOR
David Golden <dagolden@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2014 by David Golden.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
=cut
|