summaryrefslogtreecommitdiff
path: root/ext/Cwd
diff options
context:
space:
mode:
authorBenjamin Sugars <bsugars@canoe.ca>2001-03-30 09:08:51 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-30 23:20:25 +0000
commit0d2079faa739aaa999ddace336394cba070395f2 (patch)
treef26bbc38f7dff9378d884d8b0ce4eeeeb1f8230f /ext/Cwd
parent3d8f1d64935ee0ddedddd0cce1b2afe928cba325 (diff)
downloadperl-0d2079faa739aaa999ddace336394cba070395f2.tar.gz
Re: [PATCH] CwdXS, Take 2
Message-ID: <Pine.LNX.4.21.0103301357490.1927-100000@marmot.rim.canoe.ca> p4raw-id: //depot/perl@9481
Diffstat (limited to 'ext/Cwd')
-rw-r--r--ext/Cwd/Cwd.xs134
-rw-r--r--ext/Cwd/Makefile.PL5
2 files changed, 139 insertions, 0 deletions
diff --git a/ext/Cwd/Cwd.xs b/ext/Cwd/Cwd.xs
new file mode 100644
index 0000000000..d53f05fdea
--- /dev/null
+++ b/ext/Cwd/Cwd.xs
@@ -0,0 +1,134 @@
+#include "EXTERN.h"
+#include "perl.h"
+#include "XSUB.h"
+
+/* Originally written in Perl by John Bazik; rewritten in C by Ben Sugars.
+ * Comments from the orignal:
+ * This is a faster version of getcwd. It's also more dangerous
+ * because you might chdir out of a directory that you can't chdir
+ * back into. */
+char *
+_cwdxs_fastcwd(void)
+{
+/* XXX Should we just use getcwd(3) if available? */
+ struct stat statbuf;
+ int orig_cdev, orig_cino, cdev, cino, odev, oino, tdev, tino;
+ int i = 0, j = 0, k = 0, ndirs = 16, pathlen = 0, namelen;
+ DIR *dir;
+ Direntry_t *dp;
+ char **names, *path;
+
+ Newz(0, names, ndirs, char*);
+
+ if (PerlLIO_lstat(".", &statbuf) < 0) {
+ Safefree(names);
+ return FALSE;
+ }
+ orig_cdev = statbuf.st_dev;
+ orig_cino = statbuf.st_ino;
+ cdev = orig_cdev;
+ cino = orig_cino;
+ for (;;) {
+ odev = cdev;
+ oino = cino;
+
+ if (PerlDir_chdir("..") < 0) {
+ Safefree(names);
+ return FALSE;
+ }
+ if (PerlLIO_stat(".", &statbuf) < 0) {
+ Safefree(names);
+ return FALSE;
+ }
+ cdev = statbuf.st_dev;
+ cino = statbuf.st_ino;
+ if (odev == cdev && oino == cino)
+ break;
+
+ if (!(dir = PerlDir_open("."))) {
+ Safefree(names);
+ return FALSE;
+ }
+
+ while ((dp = PerlDir_read(dir)) != NULL) {
+ if (PerlLIO_lstat(dp->d_name, &statbuf) < 0) {
+ Safefree(names);
+ return FALSE;
+ }
+ if (strEQ(dp->d_name, "."))
+ continue;
+ if (strEQ(dp->d_name, ".."))
+ continue;
+ tdev = statbuf.st_dev;
+ tino = statbuf.st_ino;
+ if (tino == oino && tdev == odev)
+ break;
+ }
+
+ if (!dp) {
+ Safefree(names);
+ return FALSE;
+ }
+
+ if (i >= ndirs) {
+ ndirs += 16;
+ Renew(names, ndirs, char*);
+ }
+#ifdef DIRNAMLEN
+ namelen = dp->d_namlen;
+#else
+ namelen = strlen(dp->d_name);
+#endif
+ Newz(0, *(names + i), namelen + 1, char);
+ Copy(dp->d_name, *(names + i), namelen, char);
+ *(names[i] + namelen) = '\0';
+ pathlen += (namelen + 1);
+ ++i;
+
+ if (PerlDir_close(dir) < 0) {
+ Safefree(names);
+ return FALSE;
+ }
+ }
+
+ Newz(0, path, pathlen + 1, char);
+ for (j = i - 1; j >= 0; j--) {
+ *(path + k) = '/';
+ Copy(names[j], path + k + 1, strlen(names[j]) + 1, char);
+ k = k + strlen(names[j]) + 1;
+ Safefree(names[j]);
+ }
+
+ if (PerlDir_chdir(path) < 0) {
+ Safefree(names);
+ Safefree(path);
+ return FALSE;
+ }
+ if (PerlLIO_stat(".", &statbuf) < 0) {
+ Safefree(names);
+ Safefree(path);
+ return FALSE;
+ }
+ cdev = statbuf.st_dev;
+ cino = statbuf.st_ino;
+ if (cdev != orig_cdev || cino != orig_cino)
+ Perl_croak(aTHX_ "Unstable directory path, current directory changed unexpectedly");
+
+ Safefree(names);
+ return(path);
+}
+
+
+MODULE = Cwd PACKAGE = Cwd
+
+char *
+_fastcwd()
+PPCODE:
+ char * buf;
+ buf = _cwdxs_fastcwd();
+ if (buf) {
+ PUSHs(sv_2mortal(newSVpv(buf, 0)));
+ Safefree(buf);
+ }
+ else
+ XSRETURN_UNDEF;
diff --git a/ext/Cwd/Makefile.PL b/ext/Cwd/Makefile.PL
new file mode 100644
index 0000000000..ed048a3928
--- /dev/null
+++ b/ext/Cwd/Makefile.PL
@@ -0,0 +1,5 @@
+use ExtUtils::MakeMaker;
+WriteMakefile(
+ NAME => 'Cwd',
+ VERSION => '2.04',
+);