Cwd.pm 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865
  1. package Cwd;
  2. use strict;
  3. use Exporter;
  4. use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
  5. $VERSION = '3.56';
  6. my $xs_version = $VERSION;
  7. $VERSION =~ tr/_//;
  8. @ISA = qw/ Exporter /;
  9. @EXPORT = qw(cwd getcwd fastcwd fastgetcwd);
  10. push @EXPORT, qw(getdcwd) if $^O eq 'MSWin32';
  11. @EXPORT_OK = qw(chdir abs_path fast_abs_path realpath fast_realpath);
  12. # sys_cwd may keep the builtin command
  13. # All the functionality of this module may provided by builtins,
  14. # there is no sense to process the rest of the file.
  15. # The best choice may be to have this in BEGIN, but how to return from BEGIN?
  16. if ($^O eq 'os2') {
  17. local $^W = 0;
  18. *cwd = defined &sys_cwd ? \&sys_cwd : \&_os2_cwd;
  19. *getcwd = \&cwd;
  20. *fastgetcwd = \&cwd;
  21. *fastcwd = \&cwd;
  22. *fast_abs_path = \&sys_abspath if defined &sys_abspath;
  23. *abs_path = \&fast_abs_path;
  24. *realpath = \&fast_abs_path;
  25. *fast_realpath = \&fast_abs_path;
  26. return 1;
  27. }
  28. # Need to look up the feature settings on VMS. The preferred way is to use the
  29. # VMS::Feature module, but that may not be available to dual life modules.
  30. my $use_vms_feature;
  31. BEGIN {
  32. if ($^O eq 'VMS') {
  33. if (eval { local $SIG{__DIE__}; require VMS::Feature; }) {
  34. $use_vms_feature = 1;
  35. }
  36. }
  37. }
  38. # Need to look up the UNIX report mode. This may become a dynamic mode
  39. # in the future.
  40. sub _vms_unix_rpt {
  41. my $unix_rpt;
  42. if ($use_vms_feature) {
  43. $unix_rpt = VMS::Feature::current("filename_unix_report");
  44. } else {
  45. my $env_unix_rpt = $ENV{'DECC$FILENAME_UNIX_REPORT'} || '';
  46. $unix_rpt = $env_unix_rpt =~ /^[ET1]/i;
  47. }
  48. return $unix_rpt;
  49. }
  50. # Need to look up the EFS character set mode. This may become a dynamic
  51. # mode in the future.
  52. sub _vms_efs {
  53. my $efs;
  54. if ($use_vms_feature) {
  55. $efs = VMS::Feature::current("efs_charset");
  56. } else {
  57. my $env_efs = $ENV{'DECC$EFS_CHARSET'} || '';
  58. $efs = $env_efs =~ /^[ET1]/i;
  59. }
  60. return $efs;
  61. }
  62. # If loading the XS stuff doesn't work, we can fall back to pure perl
  63. if(! defined &getcwd && defined &DynaLoader::boot_DynaLoader) {
  64. eval {#eval is questionable since we are handling potential errors like
  65. #"Cwd object version 3.48 does not match bootstrap parameter 3.50
  66. #at lib/DynaLoader.pm line 216." by having this eval
  67. if ( $] >= 5.006 ) {
  68. require XSLoader;
  69. XSLoader::load( __PACKAGE__, $xs_version);
  70. } else {
  71. require DynaLoader;
  72. push @ISA, 'DynaLoader';
  73. __PACKAGE__->bootstrap( $xs_version );
  74. }
  75. };
  76. }
  77. # Big nasty table of function aliases
  78. my %METHOD_MAP =
  79. (
  80. VMS =>
  81. {
  82. cwd => '_vms_cwd',
  83. getcwd => '_vms_cwd',
  84. fastcwd => '_vms_cwd',
  85. fastgetcwd => '_vms_cwd',
  86. abs_path => '_vms_abs_path',
  87. fast_abs_path => '_vms_abs_path',
  88. },
  89. MSWin32 =>
  90. {
  91. # We assume that &_NT_cwd is defined as an XSUB or in the core.
  92. cwd => '_NT_cwd',
  93. getcwd => '_NT_cwd',
  94. fastcwd => '_NT_cwd',
  95. fastgetcwd => '_NT_cwd',
  96. abs_path => 'fast_abs_path',
  97. realpath => 'fast_abs_path',
  98. },
  99. dos =>
  100. {
  101. cwd => '_dos_cwd',
  102. getcwd => '_dos_cwd',
  103. fastgetcwd => '_dos_cwd',
  104. fastcwd => '_dos_cwd',
  105. abs_path => 'fast_abs_path',
  106. },
  107. # QNX4. QNX6 has a $os of 'nto'.
  108. qnx =>
  109. {
  110. cwd => '_qnx_cwd',
  111. getcwd => '_qnx_cwd',
  112. fastgetcwd => '_qnx_cwd',
  113. fastcwd => '_qnx_cwd',
  114. abs_path => '_qnx_abs_path',
  115. fast_abs_path => '_qnx_abs_path',
  116. },
  117. cygwin =>
  118. {
  119. getcwd => 'cwd',
  120. fastgetcwd => 'cwd',
  121. fastcwd => 'cwd',
  122. abs_path => 'fast_abs_path',
  123. realpath => 'fast_abs_path',
  124. },
  125. epoc =>
  126. {
  127. cwd => '_epoc_cwd',
  128. getcwd => '_epoc_cwd',
  129. fastgetcwd => '_epoc_cwd',
  130. fastcwd => '_epoc_cwd',
  131. abs_path => 'fast_abs_path',
  132. },
  133. MacOS =>
  134. {
  135. getcwd => 'cwd',
  136. fastgetcwd => 'cwd',
  137. fastcwd => 'cwd',
  138. abs_path => 'fast_abs_path',
  139. },
  140. );
  141. $METHOD_MAP{NT} = $METHOD_MAP{MSWin32};
  142. # Find the pwd command in the expected locations. We assume these
  143. # are safe. This prevents _backtick_pwd() consulting $ENV{PATH}
  144. # so everything works under taint mode.
  145. my $pwd_cmd;
  146. if($^O ne 'MSWin32') {
  147. foreach my $try ('/bin/pwd',
  148. '/usr/bin/pwd',
  149. '/QOpenSys/bin/pwd', # OS/400 PASE.
  150. ) {
  151. if( -x $try ) {
  152. $pwd_cmd = $try;
  153. last;
  154. }
  155. }
  156. }
  157. # Android has a built-in pwd. Using $pwd_cmd will DTRT if
  158. # this perl was compiled with -Dd_useshellcmds, which is the
  159. # default for Android, but the block below is needed for the
  160. # miniperl running on the host when cross-compiling, and
  161. # potentially for native builds with -Ud_useshellcmds.
  162. if ($^O =~ /android/) {
  163. # If targetsh is executable, then we're either a full
  164. # perl, or a miniperl for a native build.
  165. if (-x $Config::Config{targetsh}) {
  166. $pwd_cmd = "$Config::Config{targetsh} -c pwd"
  167. }
  168. else {
  169. my $sh = $Config::Config{sh} || (-x '/system/bin/sh' ? '/system/bin/sh' : 'sh');
  170. $pwd_cmd = "$sh -c pwd"
  171. }
  172. }
  173. my $found_pwd_cmd = defined($pwd_cmd);
  174. unless ($pwd_cmd) {
  175. # Isn't this wrong? _backtick_pwd() will fail if someone has
  176. # pwd in their path but it is not /bin/pwd or /usr/bin/pwd?
  177. # See [perl #16774]. --jhi
  178. $pwd_cmd = 'pwd';
  179. }
  180. # Lazy-load Carp
  181. sub _carp { require Carp; Carp::carp(@_) }
  182. sub _croak { require Carp; Carp::croak(@_) }
  183. # The 'natural and safe form' for UNIX (pwd may be setuid root)
  184. sub _backtick_pwd {
  185. # Localize %ENV entries in a way that won't create new hash keys
  186. my @localize = grep exists $ENV{$_}, qw(PATH IFS CDPATH ENV BASH_ENV);
  187. local @ENV{@localize};
  188. my $cwd = `$pwd_cmd`;
  189. # Belt-and-suspenders in case someone said "undef $/".
  190. local $/ = "\n";
  191. # `pwd` may fail e.g. if the disk is full
  192. chomp($cwd) if defined $cwd;
  193. $cwd;
  194. }
  195. # Since some ports may predefine cwd internally (e.g., NT)
  196. # we take care not to override an existing definition for cwd().
  197. unless ($METHOD_MAP{$^O}{cwd} or defined &cwd) {
  198. # The pwd command is not available in some chroot(2)'ed environments
  199. my $sep = $Config::Config{path_sep} || ':';
  200. my $os = $^O; # Protect $^O from tainting
  201. # Try again to find a pwd, this time searching the whole PATH.
  202. if (defined $ENV{PATH} and $os ne 'MSWin32') { # no pwd on Windows
  203. my @candidates = split($sep, $ENV{PATH});
  204. while (!$found_pwd_cmd and @candidates) {
  205. my $candidate = shift @candidates;
  206. $found_pwd_cmd = 1 if -x "$candidate/pwd";
  207. }
  208. }
  209. # MacOS has some special magic to make `pwd` work.
  210. if( $os eq 'MacOS' || $found_pwd_cmd )
  211. {
  212. *cwd = \&_backtick_pwd;
  213. }
  214. else {
  215. *cwd = \&getcwd;
  216. }
  217. }
  218. if ($^O eq 'cygwin') {
  219. # We need to make sure cwd() is called with no args, because it's
  220. # got an arg-less prototype and will die if args are present.
  221. local $^W = 0;
  222. my $orig_cwd = \&cwd;
  223. *cwd = sub { &$orig_cwd() }
  224. }
  225. # set a reasonable (and very safe) default for fastgetcwd, in case it
  226. # isn't redefined later (20001212 rspier)
  227. *fastgetcwd = \&cwd;
  228. # A non-XS version of getcwd() - also used to bootstrap the perl build
  229. # process, when miniperl is running and no XS loading happens.
  230. sub _perl_getcwd
  231. {
  232. abs_path('.');
  233. }
  234. # By John Bazik
  235. #
  236. # Usage: $cwd = &fastcwd;
  237. #
  238. # This is a faster version of getcwd. It's also more dangerous because
  239. # you might chdir out of a directory that you can't chdir back into.
  240. sub fastcwd_ {
  241. my($odev, $oino, $cdev, $cino, $tdev, $tino);
  242. my(@path, $path);
  243. local(*DIR);
  244. my($orig_cdev, $orig_cino) = stat('.');
  245. ($cdev, $cino) = ($orig_cdev, $orig_cino);
  246. for (;;) {
  247. my $direntry;
  248. ($odev, $oino) = ($cdev, $cino);
  249. CORE::chdir('..') || return undef;
  250. ($cdev, $cino) = stat('.');
  251. last if $odev == $cdev && $oino == $cino;
  252. opendir(DIR, '.') || return undef;
  253. for (;;) {
  254. $direntry = readdir(DIR);
  255. last unless defined $direntry;
  256. next if $direntry eq '.';
  257. next if $direntry eq '..';
  258. ($tdev, $tino) = lstat($direntry);
  259. last unless $tdev != $odev || $tino != $oino;
  260. }
  261. closedir(DIR);
  262. return undef unless defined $direntry; # should never happen
  263. unshift(@path, $direntry);
  264. }
  265. $path = '/' . join('/', @path);
  266. if ($^O eq 'apollo') { $path = "/".$path; }
  267. # At this point $path may be tainted (if tainting) and chdir would fail.
  268. # Untaint it then check that we landed where we started.
  269. $path =~ /^(.*)\z/s # untaint
  270. && CORE::chdir($1) or return undef;
  271. ($cdev, $cino) = stat('.');
  272. die "Unstable directory path, current directory changed unexpectedly"
  273. if $cdev != $orig_cdev || $cino != $orig_cino;
  274. $path;
  275. }
  276. if (not defined &fastcwd) { *fastcwd = \&fastcwd_ }
  277. # Keeps track of current working directory in PWD environment var
  278. # Usage:
  279. # use Cwd 'chdir';
  280. # chdir $newdir;
  281. my $chdir_init = 0;
  282. sub chdir_init {
  283. if ($ENV{'PWD'} and $^O ne 'os2' and $^O ne 'dos' and $^O ne 'MSWin32') {
  284. my($dd,$di) = stat('.');
  285. my($pd,$pi) = stat($ENV{'PWD'});
  286. if (!defined $dd or !defined $pd or $di != $pi or $dd != $pd) {
  287. $ENV{'PWD'} = cwd();
  288. }
  289. }
  290. else {
  291. my $wd = cwd();
  292. $wd = Win32::GetFullPathName($wd) if $^O eq 'MSWin32';
  293. $ENV{'PWD'} = $wd;
  294. }
  295. # Strip an automounter prefix (where /tmp_mnt/foo/bar == /foo/bar)
  296. if ($^O ne 'MSWin32' and $ENV{'PWD'} =~ m|(/[^/]+(/[^/]+/[^/]+))(.*)|s) {
  297. my($pd,$pi) = stat($2);
  298. my($dd,$di) = stat($1);
  299. if (defined $pd and defined $dd and $di == $pi and $dd == $pd) {
  300. $ENV{'PWD'}="$2$3";
  301. }
  302. }
  303. $chdir_init = 1;
  304. }
  305. sub chdir {
  306. my $newdir = @_ ? shift : ''; # allow for no arg (chdir to HOME dir)
  307. if ($^O eq "cygwin") {
  308. $newdir =~ s|\A///+|//|;
  309. $newdir =~ s|(?<=[^/])//+|/|g;
  310. }
  311. elsif ($^O ne 'MSWin32') {
  312. $newdir =~ s|///*|/|g;
  313. }
  314. chdir_init() unless $chdir_init;
  315. my $newpwd;
  316. if ($^O eq 'MSWin32') {
  317. # get the full path name *before* the chdir()
  318. $newpwd = Win32::GetFullPathName($newdir);
  319. }
  320. return 0 unless CORE::chdir $newdir;
  321. if ($^O eq 'VMS') {
  322. return $ENV{'PWD'} = $ENV{'DEFAULT'}
  323. }
  324. elsif ($^O eq 'MacOS') {
  325. return $ENV{'PWD'} = cwd();
  326. }
  327. elsif ($^O eq 'MSWin32') {
  328. $ENV{'PWD'} = $newpwd;
  329. return 1;
  330. }
  331. if (ref $newdir eq 'GLOB') { # in case a file/dir handle is passed in
  332. $ENV{'PWD'} = cwd();
  333. } elsif ($newdir =~ m#^/#s) {
  334. $ENV{'PWD'} = $newdir;
  335. } else {
  336. my @curdir = split(m#/#,$ENV{'PWD'});
  337. @curdir = ('') unless @curdir;
  338. my $component;
  339. foreach $component (split(m#/#, $newdir)) {
  340. next if $component eq '.';
  341. pop(@curdir),next if $component eq '..';
  342. push(@curdir,$component);
  343. }
  344. $ENV{'PWD'} = join('/',@curdir) || '/';
  345. }
  346. 1;
  347. }
  348. sub _perl_abs_path
  349. {
  350. my $start = @_ ? shift : '.';
  351. my($dotdots, $cwd, @pst, @cst, $dir, @tst);
  352. unless (@cst = stat( $start ))
  353. {
  354. _carp("stat($start): $!");
  355. return '';
  356. }
  357. unless (-d _) {
  358. # Make sure we can be invoked on plain files, not just directories.
  359. # NOTE that this routine assumes that '/' is the only directory separator.
  360. my ($dir, $file) = $start =~ m{^(.*)/(.+)$}
  361. or return cwd() . '/' . $start;
  362. # Can't use "-l _" here, because the previous stat was a stat(), not an lstat().
  363. if (-l $start) {
  364. my $link_target = readlink($start);
  365. die "Can't resolve link $start: $!" unless defined $link_target;
  366. require File::Spec;
  367. $link_target = $dir . '/' . $link_target
  368. unless File::Spec->file_name_is_absolute($link_target);
  369. return abs_path($link_target);
  370. }
  371. return $dir ? abs_path($dir) . "/$file" : "/$file";
  372. }
  373. $cwd = '';
  374. $dotdots = $start;
  375. do
  376. {
  377. $dotdots .= '/..';
  378. @pst = @cst;
  379. local *PARENT;
  380. unless (opendir(PARENT, $dotdots))
  381. {
  382. # probably a permissions issue. Try the native command.
  383. require File::Spec;
  384. return File::Spec->rel2abs( $start, _backtick_pwd() );
  385. }
  386. unless (@cst = stat($dotdots))
  387. {
  388. _carp("stat($dotdots): $!");
  389. closedir(PARENT);
  390. return '';
  391. }
  392. if ($pst[0] == $cst[0] && $pst[1] == $cst[1])
  393. {
  394. $dir = undef;
  395. }
  396. else
  397. {
  398. do
  399. {
  400. unless (defined ($dir = readdir(PARENT)))
  401. {
  402. _carp("readdir($dotdots): $!");
  403. closedir(PARENT);
  404. return '';
  405. }
  406. $tst[0] = $pst[0]+1 unless (@tst = lstat("$dotdots/$dir"))
  407. }
  408. while ($dir eq '.' || $dir eq '..' || $tst[0] != $pst[0] ||
  409. $tst[1] != $pst[1]);
  410. }
  411. $cwd = (defined $dir ? "$dir" : "" ) . "/$cwd" ;
  412. closedir(PARENT);
  413. } while (defined $dir);
  414. chop($cwd) unless $cwd eq '/'; # drop the trailing /
  415. $cwd;
  416. }
  417. my $Curdir;
  418. sub fast_abs_path {
  419. local $ENV{PWD} = $ENV{PWD} || ''; # Guard against clobberage
  420. my $cwd = getcwd();
  421. require File::Spec;
  422. my $path = @_ ? shift : ($Curdir ||= File::Spec->curdir);
  423. # Detaint else we'll explode in taint mode. This is safe because
  424. # we're not doing anything dangerous with it.
  425. ($path) = $path =~ /(.*)/s;
  426. ($cwd) = $cwd =~ /(.*)/s;
  427. unless (-e $path) {
  428. _croak("$path: No such file or directory");
  429. }
  430. unless (-d _) {
  431. # Make sure we can be invoked on plain files, not just directories.
  432. my ($vol, $dir, $file) = File::Spec->splitpath($path);
  433. return File::Spec->catfile($cwd, $path) unless length $dir;
  434. if (-l $path) {
  435. my $link_target = readlink($path);
  436. die "Can't resolve link $path: $!" unless defined $link_target;
  437. $link_target = File::Spec->catpath($vol, $dir, $link_target)
  438. unless File::Spec->file_name_is_absolute($link_target);
  439. return fast_abs_path($link_target);
  440. }
  441. return $dir eq File::Spec->rootdir
  442. ? File::Spec->catpath($vol, $dir, $file)
  443. : fast_abs_path(File::Spec->catpath($vol, $dir, '')) . '/' . $file;
  444. }
  445. if (!CORE::chdir($path)) {
  446. _croak("Cannot chdir to $path: $!");
  447. }
  448. my $realpath = getcwd();
  449. if (! ((-d $cwd) && (CORE::chdir($cwd)))) {
  450. _croak("Cannot chdir back to $cwd: $!");
  451. }
  452. $realpath;
  453. }
  454. # added function alias to follow principle of least surprise
  455. # based on previous aliasing. --tchrist 27-Jan-00
  456. *fast_realpath = \&fast_abs_path;
  457. # --- PORTING SECTION ---
  458. # VMS: $ENV{'DEFAULT'} points to default directory at all times
  459. # 06-Mar-1996 Charles Bailey bailey@newman.upenn.edu
  460. # Note: Use of Cwd::chdir() causes the logical name PWD to be defined
  461. # in the process logical name table as the default device and directory
  462. # seen by Perl. This may not be the same as the default device
  463. # and directory seen by DCL after Perl exits, since the effects
  464. # the CRTL chdir() function persist only until Perl exits.
  465. sub _vms_cwd {
  466. return $ENV{'DEFAULT'};
  467. }
  468. sub _vms_abs_path {
  469. return $ENV{'DEFAULT'} unless @_;
  470. my $path = shift;
  471. my $efs = _vms_efs;
  472. my $unix_rpt = _vms_unix_rpt;
  473. if (defined &VMS::Filespec::vmsrealpath) {
  474. my $path_unix = 0;
  475. my $path_vms = 0;
  476. $path_unix = 1 if ($path =~ m#(?<=\^)/#);
  477. $path_unix = 1 if ($path =~ /^\.\.?$/);
  478. $path_vms = 1 if ($path =~ m#[\[<\]]#);
  479. $path_vms = 1 if ($path =~ /^--?$/);
  480. my $unix_mode = $path_unix;
  481. if ($efs) {
  482. # In case of a tie, the Unix report mode decides.
  483. if ($path_vms == $path_unix) {
  484. $unix_mode = $unix_rpt;
  485. } else {
  486. $unix_mode = 0 if $path_vms;
  487. }
  488. }
  489. if ($unix_mode) {
  490. # Unix format
  491. return VMS::Filespec::unixrealpath($path);
  492. }
  493. # VMS format
  494. my $new_path = VMS::Filespec::vmsrealpath($path);
  495. # Perl expects directories to be in directory format
  496. $new_path = VMS::Filespec::pathify($new_path) if -d $path;
  497. return $new_path;
  498. }
  499. # Fallback to older algorithm if correct ones are not
  500. # available.
  501. if (-l $path) {
  502. my $link_target = readlink($path);
  503. die "Can't resolve link $path: $!" unless defined $link_target;
  504. return _vms_abs_path($link_target);
  505. }
  506. # may need to turn foo.dir into [.foo]
  507. my $pathified = VMS::Filespec::pathify($path);
  508. $path = $pathified if defined $pathified;
  509. return VMS::Filespec::rmsexpand($path);
  510. }
  511. sub _os2_cwd {
  512. $ENV{'PWD'} = `cmd /c cd`;
  513. chomp $ENV{'PWD'};
  514. $ENV{'PWD'} =~ s:\\:/:g ;
  515. return $ENV{'PWD'};
  516. }
  517. sub _win32_cwd_simple {
  518. $ENV{'PWD'} = `cd`;
  519. chomp $ENV{'PWD'};
  520. $ENV{'PWD'} =~ s:\\:/:g ;
  521. return $ENV{'PWD'};
  522. }
  523. sub _win32_cwd {
  524. # Need to avoid taking any sort of reference to the typeglob or the code in
  525. # the optree, so that this tests the runtime state of things, as the
  526. # ExtUtils::MakeMaker tests for "miniperl" need to be able to fake things at
  527. # runtime by deleting the subroutine. *foo{THING} syntax on a symbol table
  528. # lookup avoids needing a string eval, which has been reported to cause
  529. # problems (for reasons that we haven't been able to get to the bottom of -
  530. # rt.cpan.org #56225)
  531. if (*{$DynaLoader::{boot_DynaLoader}}{CODE}) {
  532. $ENV{'PWD'} = Win32::GetCwd();
  533. }
  534. else { # miniperl
  535. chomp($ENV{'PWD'} = `cd`);
  536. }
  537. $ENV{'PWD'} =~ s:\\:/:g ;
  538. return $ENV{'PWD'};
  539. }
  540. *_NT_cwd = defined &Win32::GetCwd ? \&_win32_cwd : \&_win32_cwd_simple;
  541. sub _dos_cwd {
  542. if (!defined &Dos::GetCwd) {
  543. $ENV{'PWD'} = `command /c cd`;
  544. chomp $ENV{'PWD'};
  545. $ENV{'PWD'} =~ s:\\:/:g ;
  546. } else {
  547. $ENV{'PWD'} = Dos::GetCwd();
  548. }
  549. return $ENV{'PWD'};
  550. }
  551. sub _qnx_cwd {
  552. local $ENV{PATH} = '';
  553. local $ENV{CDPATH} = '';
  554. local $ENV{ENV} = '';
  555. $ENV{'PWD'} = `/usr/bin/fullpath -t`;
  556. chomp $ENV{'PWD'};
  557. return $ENV{'PWD'};
  558. }
  559. sub _qnx_abs_path {
  560. local $ENV{PATH} = '';
  561. local $ENV{CDPATH} = '';
  562. local $ENV{ENV} = '';
  563. my $path = @_ ? shift : '.';
  564. local *REALPATH;
  565. defined( open(REALPATH, '-|') || exec '/usr/bin/fullpath', '-t', $path ) or
  566. die "Can't open /usr/bin/fullpath: $!";
  567. my $realpath = <REALPATH>;
  568. close REALPATH;
  569. chomp $realpath;
  570. return $realpath;
  571. }
  572. sub _epoc_cwd {
  573. $ENV{'PWD'} = EPOC::getcwd();
  574. return $ENV{'PWD'};
  575. }
  576. # Now that all the base-level functions are set up, alias the
  577. # user-level functions to the right places
  578. if (exists $METHOD_MAP{$^O}) {
  579. my $map = $METHOD_MAP{$^O};
  580. foreach my $name (keys %$map) {
  581. local $^W = 0; # assignments trigger 'subroutine redefined' warning
  582. no strict 'refs';
  583. *{$name} = \&{$map->{$name}};
  584. }
  585. }
  586. # In case the XS version doesn't load.
  587. *abs_path = \&_perl_abs_path unless defined &abs_path;
  588. *getcwd = \&_perl_getcwd unless defined &getcwd;
  589. # added function alias for those of us more
  590. # used to the libc function. --tchrist 27-Jan-00
  591. *realpath = \&abs_path;
  592. 1;
  593. __END__
  594. =head1 NAME
  595. Cwd - get pathname of current working directory
  596. =head1 SYNOPSIS
  597. use Cwd;
  598. my $dir = getcwd;
  599. use Cwd 'abs_path';
  600. my $abs_path = abs_path($file);
  601. =head1 DESCRIPTION
  602. This module provides functions for determining the pathname of the
  603. current working directory. It is recommended that getcwd (or another
  604. *cwd() function) be used in I<all> code to ensure portability.
  605. By default, it exports the functions cwd(), getcwd(), fastcwd(), and
  606. fastgetcwd() (and, on Win32, getdcwd()) into the caller's namespace.
  607. =head2 getcwd and friends
  608. Each of these functions are called without arguments and return the
  609. absolute path of the current working directory.
  610. =over 4
  611. =item getcwd
  612. my $cwd = getcwd();
  613. Returns the current working directory.
  614. Exposes the POSIX function getcwd(3) or re-implements it if it's not
  615. available.
  616. =item cwd
  617. my $cwd = cwd();
  618. The cwd() is the most natural form for the current architecture. For
  619. most systems it is identical to `pwd` (but without the trailing line
  620. terminator).
  621. =item fastcwd
  622. my $cwd = fastcwd();
  623. A more dangerous version of getcwd(), but potentially faster.
  624. It might conceivably chdir() you out of a directory that it can't
  625. chdir() you back into. If fastcwd encounters a problem it will return
  626. undef but will probably leave you in a different directory. For a
  627. measure of extra security, if everything appears to have worked, the
  628. fastcwd() function will check that it leaves you in the same directory
  629. that it started in. If it has changed it will C<die> with the message
  630. "Unstable directory path, current directory changed
  631. unexpectedly". That should never happen.
  632. =item fastgetcwd
  633. my $cwd = fastgetcwd();
  634. The fastgetcwd() function is provided as a synonym for cwd().
  635. =item getdcwd
  636. my $cwd = getdcwd();
  637. my $cwd = getdcwd('C:');
  638. The getdcwd() function is also provided on Win32 to get the current working
  639. directory on the specified drive, since Windows maintains a separate current
  640. working directory for each drive. If no drive is specified then the current
  641. drive is assumed.
  642. This function simply calls the Microsoft C library _getdcwd() function.
  643. =back
  644. =head2 abs_path and friends
  645. These functions are exported only on request. They each take a single
  646. argument and return the absolute pathname for it. If no argument is
  647. given they'll use the current working directory.
  648. =over 4
  649. =item abs_path
  650. my $abs_path = abs_path($file);
  651. Uses the same algorithm as getcwd(). Symbolic links and relative-path
  652. components ("." and "..") are resolved to return the canonical
  653. pathname, just like realpath(3).
  654. =item realpath
  655. my $abs_path = realpath($file);
  656. A synonym for abs_path().
  657. =item fast_abs_path
  658. my $abs_path = fast_abs_path($file);
  659. A more dangerous, but potentially faster version of abs_path.
  660. =back
  661. =head2 $ENV{PWD}
  662. If you ask to override your chdir() built-in function,
  663. use Cwd qw(chdir);
  664. then your PWD environment variable will be kept up to date. Note that
  665. it will only be kept up to date if all packages which use chdir import
  666. it from Cwd.
  667. =head1 NOTES
  668. =over 4
  669. =item *
  670. Since the path separators are different on some operating systems ('/'
  671. on Unix, ':' on MacPerl, etc...) we recommend you use the File::Spec
  672. modules wherever portability is a concern.
  673. =item *
  674. Actually, on Mac OS, the C<getcwd()>, C<fastgetcwd()> and C<fastcwd()>
  675. functions are all aliases for the C<cwd()> function, which, on Mac OS,
  676. calls `pwd`. Likewise, the C<abs_path()> function is an alias for
  677. C<fast_abs_path()>.
  678. =back
  679. =head1 AUTHOR
  680. Originally by the perl5-porters.
  681. Maintained by Ken Williams <KWILLIAMS@cpan.org>
  682. =head1 COPYRIGHT
  683. Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
  684. This program is free software; you can redistribute it and/or modify
  685. it under the same terms as Perl itself.
  686. Portions of the C code in this library are copyright (c) 1994 by the
  687. Regents of the University of California. All rights reserved. The
  688. license on this code is compatible with the licensing of the rest of
  689. the distribution - please see the source code in F<Cwd.xs> for the
  690. details.
  691. =head1 SEE ALSO
  692. L<File::chdir>
  693. =cut