Refresh CGI to 2.34
[p5sagit/p5-mst-13.2.git] / lib / FindBin.pm
1 # FindBin.pm
2 #
3 # Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.
4 # This program is free software; you can redistribute it and/or modify it
5 # under the same terms as Perl itself.
6
7 =head1 NAME
8
9 FindBin - Locate directory of original perl script
10
11 =head1 SYNOPSIS
12
13  use FindBin;
14  use lib "$FindBin::Bin/../lib";
15
16  or
17
18  use FindBin qw($Bin);
19  use lib "$Bin/../lib";
20
21 =head1 DESCRIPTION
22
23 Locates the full path to the script bin directory to allow the use
24 of paths relative to the bin directory.
25
26 This allows a user to setup a directory tree for some software with
27 directories E<lt>rootE<gt>/bin and E<lt>rootE<gt>/lib and then the above example will allow
28 the use of modules in the lib directory without knowing where the software
29 tree is installed.
30
31 If perl is invoked using the B<-e> option or the perl script is read from
32 C<STDIN> then FindBin sets both C<$Bin> and C<$RealBin> to the current
33 directory.
34
35 =head1 EXPORTABLE VARIABLES
36
37  $Bin         - path to bin directory from where script was invoked
38  $Script      - basename of script from which perl was invoked
39  $RealBin     - $Bin with all links resolved
40  $RealScript  - $Script with all links resolved
41
42 =head1 KNOWN BUGS
43
44 if perl is invoked as
45
46    perl filename
47
48 and I<filename> does not have executable rights and a program called I<filename>
49 exists in the users C<$ENV{PATH}> which satisfies both B<-x> and B<-T> then FindBin
50 assumes that it was invoked via the C<$ENV{PATH}>.
51
52 Workaround is to invoke perl as
53
54  perl ./filename
55
56 =head1 AUTHORS
57
58 Graham Barr E<lt>F<bodg@tiuk.ti.com>E<gt>
59 Nick Ing-Simmons E<lt>F<nik@tiuk.ti.com>E<gt>
60
61 =head1 COPYRIGHT
62
63 Copyright (c) 1995 Graham Barr & Nick Ing-Simmons. All rights reserved.
64 This program is free software; you can redistribute it and/or modify it
65 under the same terms as Perl itself.
66
67 =head1 REVISION
68
69 $Revision: 1.4 $
70
71 =cut
72
73 package FindBin;
74 use Carp;
75 require 5.000;
76 require Exporter;
77 use Cwd qw(getcwd abs_path);
78 use Config;
79 use File::Basename;
80
81 @EXPORT_OK = qw($Bin $Script $RealBin $RealScript $Dir $RealDir);
82 %EXPORT_TAGS = (ALL => [qw($Bin $Script $RealBin $RealScript $Dir $RealDir)]);
83 @ISA = qw(Exporter);
84
85 $VERSION = $VERSION = sprintf("%d.%02d", q$Revision: 1.4 $ =~ /(\d+)\.(\d+)/);
86
87 sub is_abs_path
88 {
89  local $_ = shift if (@_);
90  if ($^O eq 'MSWin32')
91   {
92    return m#^[a-z]:[\\/]#i;
93   }
94  else
95   {
96    return m#^/#;
97   }
98 }
99
100 BEGIN
101 {
102  *Dir = \$Bin;
103  *RealDir = \$RealBin;
104
105  if($0 eq '-e' || $0 eq '-')
106   {
107    # perl invoked with -e or script is on C<STDIN>
108
109    $Script = $RealScript = $0;
110    $Bin    = $RealBin    = getcwd();
111   }
112  else
113   {
114    my $script = $0;
115
116    if ($^O eq 'VMS')
117     {
118      ($Bin,$Script) = VMS::Filespec::rmsexpand($0) =~ /(.*\])(.*)/;
119      ($RealBin,$RealScript) = ($Bin,$Script);
120     }
121    else
122     {
123      my $IsWin32 = $^O eq 'MSWin32';
124      unless(($script =~ m#/# || ($IsWin32 && $script =~ m#\\#))
125             && -f $script)
126       {
127        my $dir;
128        my $pathvar = ($IsWin32) ? 'Path' : 'PATH';
129
130        foreach $dir (split(/$Config{'path_sep'}/,$ENV{$pathvar}))
131         {
132         if(-r "$dir/$script" && (!$IsWin32 || -x _))
133          {
134           $script = "$dir/$script";
135
136           if (-f $0)
137            {
138             # $script has been found via PATH but perl could have
139             # been invoked as 'perl file'. Do a dumb check to see
140             # if $script is a perl program, if not then $script = $0
141             #
142             # well we actually only check that it is an ASCII file
143             # we know its executable so it is probably a script
144             # of some sort.
145
146             $script = $0 unless(-T $script);
147            }
148           last;
149          }
150        }
151      }
152
153      croak("Cannot find current script '$0'") unless(-f $script);
154
155      # Ensure $script contains the complete path incase we C<chdir>
156
157      $script = getcwd() . "/" . $script unless is_abs_path($script);
158
159      ($Script,$Bin) = fileparse($script);
160
161      # Resolve $script if it is a link
162      while(1)
163       {
164        my $linktext = readlink($script);
165
166        ($RealScript,$RealBin) = fileparse($script);
167        last unless defined $linktext;
168
169        $script = (is_abs_path($linktext))
170                   ? $linktext
171                   : $RealBin . "/" . $linktext;
172       }
173
174      # Get absolute paths to directories
175      $Bin     = abs_path($Bin)     if($Bin);
176      $RealBin = abs_path($RealBin) if($RealBin);
177     }
178   }
179 }
180
181 1; # Keep require happy
182