—# $Id: /mirror/perl/Swarmage/trunk/lib/Swarmage/Util.pm 38128 2008-01-07T04:52:02.712309Z daisuke $
#
# Copyright (c) 2007-2008 Daisuke Maki <daisuke@endeworks.jp>
# All rights reserved
package
Swarmage::Util;
use
strict;
use
warnings;
use
Class::Inspector;
sub
load_module
{
my
$pkg
=
shift
;
my
$prefix
=
shift
;
unless
(
$pkg
=~ s/^\+//) {
$pkg
= (
$prefix
?
"${prefix}::${pkg}"
:
$pkg
);
}
return
$pkg
;
}
1;
__END__
=head1 NAME
Swarmage::Util - Swarmage General Utilities
=head1 SYNOPSIS
use Swarmage::Util;
Swarmage::Util::load_module('My::Module', 'Prefix::Namespace');
Swarmage::Util::load_module('+My::Module');
=head1 METHODS
=head2 load_module($module, $prefix)
Loads a module. If the module name starts with a '+', then the module name
is taken as-is without the '+'. Otherwise, the module name is prefixed with
the second argument $prefix
=cut