Re: [PATCH] POSIX::getcwd()
authorBenjamin Sugars <bsugars@canoe.ca>
Mon, 19 Mar 2001 15:07:03 +0000 (10:07 -0500)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 21 Mar 2001 01:33:17 +0000 (01:33 +0000)
Message-ID: <Pine.LNX.4.21.0103191454500.1820-100000@marmot.rim.canoe.ca>

p4raw-id: //depot/perl@9272

ext/POSIX/POSIX.pm
ext/POSIX/POSIX.xs

index 2ec44f8..918b2a0 100644 (file)
@@ -655,20 +655,6 @@ sub fork {
     CORE::fork;
 }
 
-sub getcwd
-{
-    usage "getcwd()" if @_ != 0;
-    if ($^O eq 'MSWin32') {
-       # this perhaps applies to everyone else also?
-       require Cwd;
-       $cwd = &Cwd::cwd;
-    }
-    else {
-       chop($cwd = `pwd`);
-    }
-    $cwd;
-}
-
 sub getegid {
     usage "getegid()" if @_ != 0;
     $) + 0;
index b5fd3a9..6c5c70b 100644 (file)
 #include <stddef.h>
 #endif
 
+#ifdef I_UNISTD
+#include <unistd.h>
+#endif
+
 /* XXX This comment is just to make I_TERMIO and I_SGTTY visible to 
    metaconfig for future extension writers.  We don't use them in POSIX.
    (This is really sneaky :-)  --AD
@@ -4014,3 +4018,45 @@ char *
 ttyname(fd)
        int             fd
 
+char *
+getcwd()
+       PPCODE:
+#ifdef HAS_GETCWD
+       char *          buf;
+       int             buflen = 128;
+       int             i;
+
+       New(0, buf, buflen, char);
+       /* Many getcwd()s know how to automatically allocate memory
+        * for the directory if the buffer argument is NULL but...
+        * (1) we cannot assume all getcwd()s do that
+        * (2) this may interfere with Perl's malloc
+         * So let's not.  --jhi */
+       while ((getcwd(buf, buflen) == NULL) && errno == ERANGE) {
+           buflen += 128;
+           if (buflen > MAXPATHLEN) {
+               Safefree(buf);
+               buf = NULL;
+               break;
+           }
+           Renew(buf, buflen, char);
+       }
+       if (buf) {
+           PUSHs(sv_2mortal(newSVpv(buf, 0)));
+           Safefree(buf);
+       }
+       else
+           PUSHs(&PL_sv_undef);
+#else
+       dSP;
+       require_pv("Cwd.pm");
+
+       ENTER;
+       SAVETMPS;
+       PUSHMARK(sp);
+       PUTBACK;
+       call_pv("Cwd::cwd", GIMME_V);
+       FREETMPS;
+       LEAVE;
+       XSRETURN(1);
+#endif