—########################################################################
# FindBin::libs
#
# use $FindBin::Bin to search for 'lib' directories and use them.
#
# default action is to look for dir's named "lib" and silently use
# the lib's without exporting anything. print turns on a short
# message with the abs_path results, export pushes out a variable
# (default name is the base value), verbose turns on decision output
# and print. export takes an optional argument with the name of a
# variable to export.
#
# Copyright (C) 2003, Steven Lembark, Workhorse Computing.
# This code is released under the same terms as Perl-5.6.1
# or any later version of Perl.
#
########################################################################
########################################################################
# housekeeping
########################################################################
package
FindBin::libs;
use
v5.10;
use
FindBin;
use
Symbol;
use
File::Basename;
qw
(
&splitpath
&splitdir
&catpath
&catdir
);
BEGIN
{
# however... there have been complaints of
# places where abs_path does not work.
#
# if abs_path fails on the working directory
# then replace it with rel2abs and live with
# possibly slower, redundant directories.
#
# the abs_path '//' hack allows for testing
# broken abs_path on primitive systems that
# cannot handle the rooted system being linked
# back to itself.
unless
(
eval
{abs_path
'//'
; abs_path cwd } )
{
# abs_path seems to be having problems,
# fix is to stub it out. ref and sub are
# syntatic sugar, but do you really want
# to see it all on one line???
#
# undef avoids re-defining subroutine nastygram.
my
$ref
= qualify_to_ref
'abs_path'
, __PACKAGE__;
my
$sub
= File::Spec::Functions->can(
'rel2abs'
);
undef
&{
$ref
};
*$ref
=
$sub
};
}
########################################################################
# package variables
########################################################################
our
$VERSION
= v1.54;
my
%defaultz
=
(
base
=>
'lib'
,
use
=>
undef
,
subdir
=>
''
,
# add this subdir also if found.
subonly
=>
undef
,
# leave out lib's, use only subdir.
export
=>
undef
,
# push variable into caller's space.
verbose
=>
undef
,
# boolean: print inputs, results.
debug
=>
undef
,
# boolean: set internal breakpoints.
=>
undef
,
# display the results
p5lib
=>
undef
,
# prefix PERL5LIB with the results
ignore
=>
'/,/usr'
,
# dir's to skip looking for ./lib
);
# only new directories are used, ignore pre-loads
# this with unwanted values.
my
%found
= ();
# saves passing this between import and $handle_args.
my
%argz
= ();
my
$verbose
=
''
;
my
$empty
=
q{}
;
########################################################################
# subroutines
########################################################################
# HAK ALERT: $Bin is an absolute path, there are cases
# where splitdir does not add the leading '' onto the
# directory path for it on VMS. Fix is to unshift a leading
# '' into @dirpath where the leading entry is true.
sub
find_libs
{
my
$base
= basename (
shift
||
$argz
{ base } );
my
$subdir
=
$argz
{ subdir } ||
''
;
my
$subonly
=
defined
$argz
{ subonly };
# for some reason, RH Enterprise V/4 has a
# trailing '/'; I havn't seen another copy of
# FindBin that does this. fix is quick enough:
# strip the trailing '/'.
#
# using a regex to extract the value untaints it
# (not useful for anything much, just helps the
# poor slobs stuck in taint mode).
#
# after that splitpath can grab the directory
# portion for future use.
my
(
$Bin
) =
$argz
{ Bin } =~ m{^ (.+) }xs;
STDERR
"\nSearching $Bin for '$base'...\n"
if
$verbose
;
my
(
$vol
,
$dir
) = splitpath
$Bin
, 1;
my
@dirpath
= splitdir
$dir
;
# fix for File::Spec::VMS missing the leading empty
# string on a split. this can be removed once File::Spec
# is fixed.
unshift
@dirpath
,
''
if
$dirpath
[ 0 ];
my
@libz
= ();
for
( 1 ..
@dirpath
)
{
# note that catpath is extraneous on *NIX; the
# volume only means something on DOS- & VMS-based
# filesystems, and adding an empty basename on
# *nix is unnecessary.
#
# HAK ALERT: the poor slobs stuck on windog have an
# abs_path that croaks on missing directories. have
# to eval the check for subdir's.
my
$abs
=
eval
{ abs_path catpath
$vol
, ( catdir
@dirpath
,
$base
),
$empty
}
||
''
;
my
$sub
=
$subdir
?
eval
{ abs_path ( catpath
''
,
$abs
,
$subdir
) } ||
''
:
''
;
my
@search
=
$subonly
? (
$sub
) : (
$abs
,
$sub
);
for
my
$dir
(
@search
)
{
if
(
$dir
&& -d
$dir
&& !
exists
$found
{
$dir
} )
{
$found
{
$dir
} = 1;
push
@libz
,
$dir
;
}
}
pop
@dirpath
}
# caller gets back the existing lib paths
# (including volume) walking up the path
# from $FindBin::Bin -> root.
#
# passing it back as a list isn't all that
# painful for a few paths.
wantarray
?
@libz
: \
@libz
};
# break out the messy part into a separate block.
my
$handle_args
=
sub
{
# discard the module, rest are arguments.
shift
;
# anything after the module are options with arguments
# assigned via '='.
%argz
=
map
{
my
(
$k
,
$v
) =
split
'='
,
$_
, 2;
$k
=~ s{^ (?:!|
no
) }{}x
? (
$k
=>
undef
)
: (
$k
=> (
$v
||
''
) )
}
@_
;
# stuff "debug=1" into your arguments and perl -d will stop here.
$DB::single
= 1
if
defined
$argz
{debug};
# default if nothing is supplied is to use the result;
# otherwise, without use supplied either of export or
# p5lib will turn off use.
if
(
exists
$argz
{
use
} )
{
# nothing further to do
}
elsif
(
defined
$argz
{ export } ||
defined
$argz
{ p5lib } )
{
$argz
{
use
} =
undef
;
}
else
{
$argz
{
use
} = 1;
}
local
$defaultz
{ Bin }
=
exists
$argz
{ realbin }
?
$FindBin::RealBin
:
$FindBin::Bin
;
# now apply the defaults, then sanity check the result.
# base is a special case since it always has to exist.
#
# if $argz{export} is defined but false then it takes
# its default from $argz{base}.
exists
$argz
{
$_
} or
$argz
{
$_
} =
$defaultz
{
$_
}
for
keys
%defaultz
;
exists
$argz
{base} &&
$argz
{base}
or croak
"Bogus FindBin::libs: missing/false base argument, should be 'base=NAME'"
;
defined
$argz
{export} and
$argz
{export} ||=
$argz
{base};
$argz
{ ignore } =
[
grep
{
$_
}
split
/\s*,\s*/,
$argz
{ignore}
];
$verbose
=
defined
$argz
{verbose};
my
$base
=
$argz
{base};
# now locate the libraries.
#
# %found contains the abs_path results for each directory to
# avoid double-including directories.
#
# note: loop short-curcuts for the (usually) list.
%found
= ();
for
( @{
$argz
{ ignore } } )
{
if
(
my
$dir
=
eval
{ abs_path catdir
$_
,
$base
} )
{
if
( -d
$dir
)
{
$found
{
$dir
} = 1;
}
}
}
};
sub
import
{
&$handle_args
;
my
@libz
= find_libs;
# HAK ALERT: the regex does nothing for security,
# just dodges -T. putting this down here instead
# of inside find_libs allows people to use saner
# untainting plans via find_libs.
@libz
=
map
{ m{ (.+) }x }
@libz
;
my
$caller
=
caller
;
if
(
$verbose
||
defined
$argz
{
} )
{
local
$\ =
"\n"
;
local
$, =
"\n\t"
;
STDERR
"Found */$argz{ base }:"
,
@libz
}
if
(
$argz
{export} )
{
STDERR
join
''
,
"\nExporting: @"
,
$caller
,
'::'
,
$argz
{export},
"\n"
if
$verbose
;
# Symbol this is cleaner than "no strict"
# for installing the array.
my
$ref
= qualify_to_ref
$argz
{ export },
$caller
;
*$ref
= \
@libz
;
}
if
(
defined
$argz
{ p5lib } )
{
# stuff the lib's found at the front of $ENV{ PERL5LIB }
(
substr
$ENV
{ PERL5LIB }, 0, 0 ) =
join
':'
,
@libz
,
''
if
@libz
;
STDERR
"\nUpdated PERL5LIB:\t$ENV{ PERL5LIB }\n"
if
$verbose
;
}
if
(
$argz
{
use
} &&
@libz
)
{
# this obviously won't work if lib ever depends
# on the caller's package.
#
# it does avoids issues with -T blowing up on the
# old eval technique.
lib->
import
(
@libz
);
}
0
}
# keep require happy
1
__END__
=head1 NAME
FindBin::libs - Locate and 'use lib' directories along
the path of $FindBin::Bin to automate locating modules.
Uses File::Spec and Cwd's abs_path to accomodate multiple
O/S and redundant symlinks.
=head1 SYNOPSIS
# search up $FindBin::Bin looking for ./lib directories
# and "use lib" them.
use FindBin::libs;
# same as above with explicit defaults.
use FindBin::libs qw( base=lib use=1 noexport noprint );
# print the lib dir's before using them.
use FindBin::libs qw( print );
# find and use lib "altlib" dir's
use FindBin::libs qw( base=altlib );
# move starting point from $FindBin::Bin to '/tmp'
use FindBin::libs qw( Bin=/tmp base=altlib );
# skip "use lib", export "@altlib" instead.
use FindBin::libs qw( base=altlib export );
# find altlib directories, use lib them and export @mylibs
use FindBin::libs qw( base=altlib export=mylibs use );
# "export" defaults to "nouse", these two are identical:
use FindBin::libs qw( export nouse );
use FindBin::libs qw( export );
# use and export are not exclusive:
use FindBin::libs qw( use export ); # do both
use FindBin::libs qw( nouse noexport print ); # print only
use FindBin::libs qw( nouse noexport ); # do nothting at all
# print a few interesting messages about the
# items found.
use FindBinlibs qw( verbose );
# turn on a breakpoint after the args are prcoessed, before
# any search/export/use lib is handled.
use FindBin::libs qw( debug );
# prefix PERL5LIB with the lib's found.
use FindBin::libs qw( perl5lib );
# find a subdir of the lib's looked for.
# the first example will use both ../lib and
# ../lib/perl5; the second ../lib/perl5/frobnicate
# (if they exist). it can also be used with export
# and base to locate special configuration dir's.
#
# subonly with a base is useful for locating config
# files. this finds any "./config/mypackage" dir's
# without including any ./config dir's. the result
# ends up in @config (see also "export=", above).
use FindBin::libs qw( subdir=perl5 );
use FindBin::libs qw( subdir=perl5/frobnicate );
use FindBin::libs qw( base=config subdir=mypackage subonly export );
# base and subonly are also useful if your
# project is stored in multiple git
# repositories.
#
# say you need libs under api_foo/lib from api_bar: a
# base of the git repository directory with subdir of
# lib and subonly will pull in those lib dirs.
use FindBin::libs qw( base=api_foo subdir=lib subonly );
# no harm in using this multiple times to use
# or export multple layers of libs.
use FindBin::libs qw( export );
use FindBin::libs qw( export=found base=lib );
use FindBin::libs qw( export=binz base=bin ignore=/foo,/bar );
use FindBin::libs qw( export=junk base=frobnicatorium );
use FindBin::libs qw( export base=foobar );
=head1 DESCRIPTION
=head2 General Use
This module will locate directories along the path to $FindBin::Bin
and "use lib" or export an array of the directories found. The default
is to locate "lib" directories and "use lib" them without printing
the list.
Options controll whether the lib's found are exported into the caller's
space, exported to PERL5LIB, or printed. Exporting or setting perl5lib
will turn off the default of "use lib" so that:
use FindBin::libs qw( export );
use FindBin::libs qw( p5lib );
are equivalent to
use FindBin::libs qw( export nouse );
use FindBin::libs qw( p5lib nouse );
Combining export with use or p5lib may be useful, p5lib and
use are probably not all that useful together.
=head3 Alternate directory name: 'base'
The basename searched for can be changed via 'base=name' so
that
use FindBin::libs qw( base=altlib );
will search for directories named "altlib" and "use lib" them.
=head3 Exporting a variable: 'export'
The 'export' option will push an array of the directories found
and takes an optional argument of the array name, which defaults
to the basename searched for:
use FindBin::libs qw( export );
will find "lib" directories and export @lib with the
list of directories found.
use FindBin::libs qw( export=mylibs );
will find "lib" directories and export them as "@mylibs" to
the caller.
If "export" only is given then the "use" option defaults to
false. So:
use FindBin::libs qw( export );
use FindBin::libs qw( export nouse );
are equivalent. This is mainly for use when looking for data
directories with the "base=" argument.
If base is used with export the default array name is the base
directory value:
use FindBin::libs qw( export base=meta );
exports @meta while
use FindBin::libs qw( export=metadirs base=meta );
exports @metadirs.
The use and export switches are not exclusive:
use FindBin::libs qw( use export=mylibs );
will locate "lib" directories, use lib them, and export
@mylibs into the caller's package.
=head3 Subdirectories
The "subdir" and "subonly" settings will add or
exclusively use subdir's. This is useful if some
of your lib's are in ../lib/perl5 along with
../lib (subdir=perl5) or all of the lib's are
in ../lib/perl5 (subonly=perl5).
This can also be handy for locating subdir's used
for configuring packages:
use FindBin::libs qw( export base=config subonly=mypackage );
Will leave @config with any "mypacakge" holding
any "mypackage" subdir's.
=head3 Setting PERL5LIB: p5lib
For cases where the environment is more useful for setting
up library paths "p5lib" can be used to preload this variable.
This is mainly useful for automatically including directories
outside of the parent tree of $FindBin::bin.
For example, using:
$ export PERL5LIB="/usr/local/foo:/usr/local/bar";
$ myprog;
or simply
$ PERL5LIB="/usr/local/lib/foo:/usr/lib/bar" myprog;
(depending on your shell) with #! code including:
use FindBin::libs qw( p5lib );
will not "use lib" any dir's found but will update PERL5LIB
to something like:
/home/me/sandbox/branches/lib:/usr/local/lib/foo:/usr/lib/bar
This can make controlling the paths used simpler and avoid
the use of symlinks for some testing (see examples below).
Note that "p5lib" and "nouse" are proably worth
=head2 Skipping directories
By default, lib directories under / and /usr are
sliently ignored. This normally means that /lib, /usr/lib, and
'/usr/local/lib' are skipped. The "ignore" parameter provides
a comma-separated list of directories to ignore:
use FindBin::libs qw( ignore=/skip/this,/and/this/also );
will replace the standard list and thus skip "/skip/this/lib"
and "/and/this/also/lib". It will search "/lib" and "/usr/lib"
since the argument ignore list replaces the original one.
=head2 Homegrown Library Management
An all-too-common occurrance managing perly projects is
being unable to install new modules becuse "it might
break things", and being unable to test them because
you can't install them. The usual outcome of this is a
collection of hard-coded
use lib qw( /usr/local/projectX ... )
code at the top of each #! file that has to be updated by
hand for each new project.
To get away from this you'll often see relative paths
for the lib's, which require running the code from one
specific place. All this does is push the hard-coding
into cron, shell wrappers, and begin blocks.
With FindBin::libs you need suffer no more.
Automatically finding libraries in and above the executable
means you can put your modules into cvs/svn and check them
out with the project, have multiple copies shared by developers,
or easily move a module up the directory tree in a testbed
to regression test the module with existing code. All without
having to modify a single line of code.
=over 4
=item Code-speicfic modules.
Say your sandbox is in ./sandbox and you are currently
working in ./sandbox/projects/package/bin on a perl
executable. You may have some number of modules that
are specific -- or customized -- for this pacakge,
share some modules within the project, and may want
to use company-wide modules that are managed out of
./sandbox in development. All of this lives under a
./qc tree on the test boxes and under ./production
on production servers.
For simplicity, say that your sandbox lives in your
home direcotry, /home/jowbloe, as a directory or a
symlink.
If your #! uses FindBin::libs in it then it will
effectively
use lib
qw(
/home/jowbloe/sandbox/lib
/home/jowbloe/sandbox/project/lib
/home/jowbloe/sandbox/project/package/lib
);
if you run /home/jowbloe/sandbox/project/package/bin/foobar.
This will happen the same way if you use a relative or
absolute path, perl -d the thing, or if any of the lib
directories are symlinks outside of your sandbox.
This means that the most specific module directories
("closest" to your executable) will be picked up first.
If you have a version of Frobnicate.pm in your ./package/lib
for modifications fine: you'll use it before the one in
./project or ./sandbox.
Using the "p5lib" argument can help in case where some of
the code lives outside of the sandbox. To test a sandbox
version of some other module:
use FindBin::libs qw( p5lib );
and
$ PERL5LIB=/other/sandbox/module foobar;
=item Regression Testing
Everntually, however, you'll need to regression test
Frobnicate.pm with other modules.
Fine: move, copy, or symlink it into ./project/lib and
you can merrily run ./project/*/bin/* with it and see
if there are any problems. In fact, so can the nice
folks in QC.
If you want to install and test a new module just
prefix it into, say, ./sandbox/lib and all the code
that has FindBin::libs will simply use it first.
=item Testing with Symlinks
$FindBin::Bin is relative to where an executable is started from.
This allows a symlink to change the location of directories used
by FindBin::libs. Full regression testing of an executable can be
accomplished with a symlink:
./sandbox
./lib -> /homegrown/dir/lib
./lib/What/Ever.pm
./pre-change
./bin/foobar
./post-change
./lib/What/Ever.pm
./bin/foobar -> ../../pre-last-change/bin/foobar
Running foobar symlinked into the post-change directory will
test it with whatever collection of modules is in the post-change
directory. A large regression test on some collection of
changed modules can be performed with a few symlinks into a
sandbox area.
=item Managing Configuration and Meta-data Files
The "base" option alters FindBin::libs standard base directory.
This allows for a heirarchical set of metadata directories:
./sandbox
./meta
./project/
./meta
./project/package
./bin
./meta
with
use FindBin::libs qw( base=meta export );
sub read_meta
{
my $base = shift;
for my $dir ( @meta )
{
# open the first one and return
...
}
# caller gets back empty list if nothing was read.
()
}
=item using "prove" with local modules.
Modules that are not intended for CPAN will not usually have
a Makefile.PL or Build setup. This makes it harder to check
the code via "make test". Instead of hacking a one-time
Makefile, FindBin::libs can be used to locate modules in
a "lib" directory adjacent to the "t: directory. The setup
for this module would look like:
./t/01.t
./t/02.t
...
./lib/FindBin/libs.pm
since the *.t files use FindBin::libs they can locate the
most recent version of code without it having to be copied
into a ./blib directory (usually via make) before being
processed. If the module did not have a Makefile this would
allow:
prove t/*.t;
to check the code.
=head1 Notes
=head2 Alternatives
FindBin::libs was developed to avoid pitfalls with
the items listed below. As of FindBin::libs-1.20,
this is also mutli-platform, where other techniques
may be limited to *NIX or at least less portable.
=item PERL5LIBS
PERL5LIB can be used to accomplish the same directory
lookups as FindBin::libs. The problem is PERL5LIB often
contains absolte paths and does not automatically change
depending on where tests are run. This can leave you
modifying a file, changing directory to see if it works
with some other code and testing an unmodified version of
the code via PERL5LIB. FindBin::libs avoids this by using
$FindBin::bin to reference where the code is running from.
The same is true of trying to use almost any environmental
solution, with Perl's built in mechanism or one based on
$ENV{ PWD } or qx( pwd ).
Aside: Combining an existing PERL5LIB for
out-of-tree lookups with the "p5lib" option
works well for most development situations.
=item use lib qw( ../../../../Lib );
This works, but how many dots do you need to get all
the working lib's into a module or #! code? Class
distrubuted among several levels subdirectories may
have qw( ../../../lib ) vs. qw( ../../../../lib )
or various combinations of them. Validating these by
hand (let alone correcting them) leaves me crosseyed
after only a short session.
=item Anchor on a fixed lib directory.
Given a standard directory, it is possible to use
something like:
BEGIN
{
my ( $libdir ) = $0 =~ m{ ^( .+? )/SOMEDIR/ }x;
eval "use lib qw( $libdir )";
}
This looks for a standard location (e.g., /path/to/Mylib)
in the executable path (or cwd) and uses that.
The main problem here is that if the anchor ever changes
(e.g., when moving code between projects or relocating
directories now that SVN supports it) the path often has
to change in multiple files. The regex also may have to
support multiple platforms, or be broken into more complicated
File::Spec code that probably looks pretty much like what
use FindBin::libs qw( base=Mylib )
does anyway.
=head2 FindBin::libs-1.2+ uses File::Spec
In order to accmodate a wider range of filesystems,
the code has been re-written to use File::Spec for
all directory and volume manglement.
There is one thing that File::Spec does not handle,
hoever, which is fully reolving absolute paths. That
still has to be handled via abs_path, when it works.
The issue is that File::Spec::rel2abs and
Cwd::abs_path work differently: abs_path only
returns true for existing directories and
resolves symlinks; rel2abs simply prepends cwd()
to any non-absolute paths.
The difference for FinBin::libs is that
including redundant directories can lead to
unexpected results in what gets included;
looking up the contents of heavily-symlinked
paths is slow (and has some -- admittedly
unlikely -- failures at runtime). So, abs_path()
is the preferred way to find where the lib's
really live after they are found looking up the
tree. Using abs_path() also avoids problems
where the same directory is included twice in a
sandbox' tree via symlinks.
Due to previous complaints that abs_path did not
work properly on all systems, the current
version of FindBin::libs uses File::Spec to
break apart and re-assemble directories, with
abs_path used optinally. If "abs_path cwd" works
then abs_path is used on the directory paths
handed by File::Spec::catpath(); otherwise the
paths are used as-is. This may leave users on
systms with non-working abs_path() having extra
copies of external library directories in @INC.
Another issue is that I've heard reports of
some systems failing the '-d' test on symlinks,
where '-e' would have succeded.
=head1 See Also
=over 4
=item
NEXT::init can be combined with FindBin::libs to
manage inherited data. This can be a lifesaver
for setting up working environments on systms with
tiered sandboxes.
=back
=head1 BUGS
=over 4
=item
In order to avoid including junk, FindBin::libs
uses '-d' to test the items before including
them on the library list. This works fine so
long as abs_path() is used to disambiguate any
symlinks first. If abs_path() is turned off
then legitimate directories may be left off in
whatever local conditions might cause a valid
symlink to fail the '-d' test."
=item
File::Spec 3.16 and prior have a bug in VMS of
not returning an absolute paths in splitdir for
dir's without a leading '.'. Fix for this is to
unshift '', @dirpath if $dirpath[0]. While not a
bug, this is obviously a somewhat kludgy workaround
and should be removed (with an added test for a
working version) once the File::Spec is fixed.
=head1 AUTHOR
Steven Lembark, Workhorse Computing <lembark@wrkhors.com>
=head1 COPYRIGHT
This code is released under the same terms as Perl-5.8.1 itself,
or any later version of Perl the user prefers.