/usr/share/perl5/Dancer/ModuleLoader.pm is in libdancer-perl 1.3120+dfsg-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 | package Dancer::ModuleLoader;
# Abstraction layer for dynamic module loading
use strict;
use warnings;
use Module::Runtime qw/ use_module /;
sub load {
my ($class, $module, $version) = @_;
my ($res, $error) = $class->require($module, $version);
return wantarray ? ($res, $error) : $res;
}
sub require {
my ($class, $module, $version) = @_;
print "version $version\n" if $version;
eval { defined $version ? use_module( $module, $version )
: use_module( $module ) }
or return wantarray ? (0, $@) : 0;
return 1; #success
}
sub load_with_params {
my ($class, $module, @args) = @_;
my ($res, $error) = $class->require($module);
$res or return wantarray ? (0, $error) : 0;
# From perlfunc : If no "import" method can be found then the call is
# skipped, even if there is an AUTOLOAD method.
if ($module->can('import')) {
# bump Exporter Level to import symbols in the caller
local $Exporter::ExportLevel = ($Exporter::ExportLevel || 0) + 1;
local $@;
eval { $module->import(@args) };
my $error = $@;
$error and return wantarray ? (0, $error) : 0;
}
return 1;
}
sub use_lib {
my ($class, @args) = @_;
use lib;
local $@;
lib->import(@args);
my $error = $@;
$error and return wantarray ? (0, $error) : 0;
return 1;
}
sub class_from_setting {
my ($self, $namespace, $setting) = @_;
my $class = '';
for my $token (split /_/, $setting) {
$class .= ucfirst($token);
}
return "${namespace}::${class}";
}
1;
__END__
=head1 NAME
Dancer::ModuleLoader - dynamic module loading helpers for Dancer core components
=head1 SYNOPSIS
Taken directly from Dancer::Template::TemplateToolkit (which is core):
die "Template is needed by Dancer::Template::TemplateToolkit"
unless Dancer::ModuleLoader->load('Template');
# we now have Template loaded
=head1 DESCRIPTION
Sometimes in Dancer core we need to use modules, but we don't want to declare
them all in advance in compile-time. These could be because the specific modules
provide extra features which depend on code that isn't (and shouldn't) be in
core, or perhaps because we only want these components loaded in lazy style,
saving loading time a bit. For example, why load L<Template> (which isn't
required by L<Dancer>) when you don't use L<Dancer::Template::TemplateToolkit>?
To do such things takes a bit of code for localizing C<$@> and C<eval>ing. That
code has been refactored into this module to help Dancer core developers.
B<Please only use this for Dancer core modules>. If you're writing an external
Dancer module (L<Dancer::Template::Tiny>, L<Dancer::Session::Cookie>, etc.),
please simply "C<use ModuleYouNeed>" in your code and don't use this module.
=head1 METHODS/SUBROUTINES
=head2 load
Runs something like "C<use ModuleYouNeed>" at runtime.
use Dancer::ModuleLoader;
...
Dancer::ModuleLoader->load('Something')
or die "Couldn't load Something\n";
# load version 5.0 or more
Dancer::ModuleLoader->load('Something', '5.0')
or die "Couldn't load Something\n";
# load version 5.0 or more
my ($res, $error) = Dancer::ModuleLoader->load('Something', '5.0');
$res or die "Couldn't load Something : '$error'\n";
Takes in arguments the module name, and optionally the minimum version number required.
In scalar context, returns 1 if successful, 0 if not.
In list context, returns 1 if successful, C<(0, "error message")> if not.
If you need to give argument to the loading module, please use the method C<load_with_params>
=head2 require
Runs a "C<require ModuleYouNeed>".
use Dancer::ModuleLoader;
...
Dancer::ModuleLoader->require('Something')
or die "Couldn't require Something\n";
my ($res, $error) = Dancer::ModuleLoader->require('Something');
$res or die "Couldn't require Something : '$error'\n";
If you are unsure what you need (C<require> or C<load>), learn the differences
between C<require> and C<use>.
Takes in arguments the module name.
In scalar context, returns 1 if successful, 0 if not.
In list context, returns 1 if successful, C<(0, "error message")> if not.
=head2 load_with_params
Runs a "C<use ModuleYouNeed qw(param1 param2 ...)>".
use Dancer::ModuleLoader;
...
Dancer::ModuleLoader->load_with_params('Something', qw(param1 param2) )
or die "Couldn't load Something with param1 and param2\n";
my ($res, $error) = Dancer::ModuleLoader->load_with_params('Something', @params);
$res or die "Couldn't load Something with @params: '$error'\n";
Takes in arguments the module name, and optionally parameters to pass to the import internal method.
In scalar context, returns 1 if successful, 0 if not.
In list context, returns 1 if successful, C<(0, "error message")> if not.
=head2 use_lib
Runs a "C<use lib qw(path1 path2)>" at run time instead of compile time.
use Dancer::ModuleLoader;
...
Dancer::ModuleLoader->use_lib('path1', @other_paths)
or die "Couldn't perform use lib\n";
my ($res, $error) = Dancer::ModuleLoader->use_lib('path1', @other_paths);
$res or die "Couldn't perform use lib : '$error'\n";
Takes in arguments a list of path to be prepended to C<@INC>, in a similar way
than C<use lib>. However, this is performed at run time, so the list of paths
can be generated and dynamic.
In scalar context, returns 1 if successful, 0 if not.
In list context, returns 1 if successful, C<(0, "error message")> if not.
=head2 class_from_setting
Given a setting in Dancer::Config, composes the class it should be.
This is the function that translates:
# in config.yaml
template: "template_toolkit"
To the class:
Dancer::Template::TemplateToolkit
Example:
use Dancer::ModuleLoader;
my $class = Dancer::ModuleLoader->class_from_setting(
'Dancer::Template' => 'template_toolkit',
);
# $class == 'Dancer::Template::TemplateToolkit
$class = Dancer::ModuleLoader->class_from_setting(
'Dancer::Template' => 'tiny',
);
# class == 'Dancer::Template::Tiny
=head1 SEE ALSO
L<Module::Load>, L<Module::New::Loader>
=head1 AUTHOR
Alexis Sukrieh
=head1 LICENSE AND COPYRIGHT
Copyright 2009-2010 Alexis Sukrieh.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
|