[osicat-cvs] CVS update: src/early-util.lisp src/ffi.lisp src/osicat-glue.c src/osicat.asd src/osicat.lisp src/packages.lisp

Nikodemus Siivola nsiivola at common-lisp.net
Sun Feb 29 18:10:42 UTC 2004


Update of /project/osicat/cvsroot/src
In directory common-lisp.net:/tmp/cvs-serv10914

Modified Files:
	early-util.lisp ffi.lisp osicat-glue.c osicat.asd osicat.lisp 
	packages.lisp 
Log Message:
More work on consolidating *default-pathname-defaults* and current directory.
Date: Sun Feb 29 13:10:41 2004
Author: nsiivola

Index: src/early-util.lisp
diff -u src/early-util.lisp:1.1 src/early-util.lisp:1.2
--- src/early-util.lisp:1.1	Sun Feb 29 06:25:27 2004
+++ src/early-util.lisp	Sun Feb 29 13:10:41 2004
@@ -35,3 +35,11 @@
 	     (format stream "~A. This seems to be a bug in Osicat.~
                              Please report on osicat-devel at common-lisp.net."
 		     (message condition)))))
+
+(defmacro with-c-name ((cname name) &body forms)
+  (with-unique-names (n-name)
+    `(let ((,n-name ,name))
+       (with-cstring (,cname (etypecase ,n-name
+			       (string ,n-name)
+			       (symbol (symbol-name ,n-name))))
+	 , at forms))))


Index: src/ffi.lisp
diff -u src/ffi.lisp:1.1 src/ffi.lisp:1.2
--- src/ffi.lisp:1.1	Sun Feb 29 06:27:11 2004
+++ src/ffi.lisp	Sun Feb 29 13:10:41 2004
@@ -21,14 +21,28 @@
 
 (in-package :osicat)
 
-;;; FIXME: These should be groveled as well.
+;;;; TYPES
+
+;; FIXME: These should be groveled as well.
 (def-foreign-type :size-t :unsigned-int)
 (def-foreign-type :mode-t :unsigned-int)
 
+;;;; FOREIGN GLUE
+
 (def-function ("osicat_mode" c-file-mode) ((name :cstring) (follow-p :int))
   :module "osicat"
   :returning :int)
 
+(def-function ("osicat_getcwd" c-getcwd) ()
+  :module "osicat"
+  :returning (* :unsigned-char))
+
+(def-function "osicat_dirent_name" ((entry :pointer-void))
+  :module "osicat"
+  :returning :cstring)
+
+;;;; PLAIN POSIX
+
 (def-function "opendir" ((name :cstring))
   :module "osicat"
   :returning :pointer-void)
@@ -41,10 +55,6 @@
   :module "osicat"
   :returning :pointer-void)
 
-(def-function "osicat_dirent_name" ((entry :pointer-void))
-  :module "osicat"
-  :returning :cstring)
-
 (def-function "rmdir" ((name :cstring))
     :module "osicat"
     :returning :int)
@@ -81,3 +91,6 @@
   :module "osicat"
   :returning :int)
 
+(def-function "chdir" ((name :cstring))
+  :module "osicat"
+  :returning :int)


Index: src/osicat-glue.c
diff -u src/osicat-glue.c:1.6 src/osicat-glue.c:1.7
--- src/osicat-glue.c:1.6	Sat Nov  8 09:19:25 2003
+++ src/osicat-glue.c	Sun Feb 29 13:10:41 2004
@@ -24,6 +24,7 @@
 #include <dirent.h>
 #include <sys/stat.h>
 #include <pwd.h>
+#include <errno.h>
 
 extern int
 osicat_mode (char * name, int follow_p)
@@ -51,6 +52,24 @@
     return entry->d_name;
 }
 
-
-    
-    
+extern char *
+osicat_getcwd (void)
+{
+    size_t size = 128;
+    while (1)
+	{
+	    char *buffer = (char *) malloc (size);
+	    if (!buffer) {
+		return 0;
+	    }
+	    else if (getcwd (buffer, size) == buffer) {
+		return buffer;
+	    }
+	    else {
+		free (buffer);
+		if (errno != ERANGE) 
+		    return 0;
+		size += 128;
+	    }
+	}
+}


Index: src/osicat.asd
diff -u src/osicat.asd:1.4 src/osicat.asd:1.5
--- src/osicat.asd:1.4	Sun Feb 29 06:29:14 2004
+++ src/osicat.asd	Sun Feb 29 13:10:41 2004
@@ -39,7 +39,7 @@
 (defmethod perform ((o load-op) (c c-source-file))
   (let ((loader (intern "LOAD-FOREIGN-LIBRARY" :uffi)))
     (dolist (file (asdf::input-files o c))
-      (funcall loader file :module "osicat"))))
+      (funcall loader file :module "osicat" :force-load t))))
 
 (defmethod perform ((o compile-op) (c c-source-file))
   (unless (zerop (run-shell-command "~A ~A ~{~A ~}-o ~A"


Index: src/osicat.lisp
diff -u src/osicat.lisp:1.10 src/osicat.lisp:1.11
--- src/osicat.lisp:1.10	Sun Feb 29 07:44:47 2004
+++ src/osicat.lisp	Sun Feb 29 13:10:41 2004
@@ -26,6 +26,9 @@
 					*compile-file-truename*))
       (symbol-name (read f))))
 
+;;;; COMMON SUBROUTINES
+
+(declaim (inline c-file-kind))
 (macrolet ((def ()
 	       `(defun c-file-kind (c-file follow-p)
 		  (let ((mode (c-file-mode c-file (if follow-p 1 0))))
@@ -47,28 +50,69 @@
 (defmacro with-c-file 
     ((c-file pathname &optional required-kind follow-p) &body forms)
   (with-unique-names (path kind)
-    ;; We merge the pathname to consolidate *default-pathname-defaults*
-    ;; and C-sides idea of current directory: relative *d-p-d* gives
-    ;; way to the C-side, whereas absolute ones take precedence.
-    `(let ((,path (merge-pathnames ,pathname)))
-       (print (list :c-file-kind (pathname-directory ,path)))
+    `(let ((,path ,pathname))
        (when (wild-pathname-p ,path)
 	 (error "Pathname is wild: ~S." ,path))
        (with-cstring (,c-file (namestring ,path))
 	 ,@(if required-kind
 	       `((let ((,kind (c-file-kind ,c-file ,follow-p)))
 		   ,(etypecase required-kind
-		     (keyword `(unless (eq ,required-kind ,kind)
-				 (if ,kind
-				     (error "~A is ~A, not ~A."
-					    ,path ,kind ,required-kind)
-				     (error "~A ~S does not exist."
-					    ,required-kind ,path))))
-		     ((eql t) `(unless ,kind
-				 (error "~A does not exist." ,path))))
+		       (keyword `(unless (eq ,required-kind ,kind)
+				   (if ,kind
+				       (error "~A is ~A, not ~A."
+					      ,path ,kind ,required-kind)
+				       (error "~A ~S does not exist."
+					      ,required-kind ,path))))
+		       ((eql t) `(unless ,kind
+				   (error "~A does not exist." ,path))))
 		   , at forms))
 	       forms)))))
 
+(defun relative-pathname-p (pathspec)
+  (not (eq :absolute (car (pathname-directory pathspec)))))
+
+(defun merge-directories 
+    (pathspec &optional (other *default-pathname-defaults*))
+  (let ((tmp (merge-pathnames pathspec
+			      (make-pathname :name nil :type nil :version nil
+					     :defaults other))))
+    (if (relative-pathname-p tmp)
+	(merge-pathnames tmp (current-directory))
+	tmp)))
+
+(defun normpath (pathspec &optional merge)
+  (flet ((fixedname (path)
+	   (let ((name (pathname-name path)))
+	     (cond ((equal ".." name) :up)
+		   ((equal "." name) nil)
+		   ((stringp name) name))))
+	 (fixedtype (path)
+	   (let ((type (pathname-type path)))
+	     (and (stringp type) type)))
+	 (fixeddir (path)
+	   (let ((dir (pathname-directory path)))
+	     (if (member (car dir) '(:absolute :relative))
+		 dir
+		 (cons :relative dir)))))
+    (let ((path (if (and merge (relative-pathname-p pathspec))
+		    (merge-directories pathspec)
+		    pathspec)))
+      (when (wild-pathname-p path)
+	(error "Pathname is wild: ~S." path))
+      (with-cstring (cfile (namestring path))
+	(if (eq :directory (c-file-kind cfile t))
+	    (make-pathname :name nil :type nil
+			   :directory 
+			   (append (fixeddir path)
+				   (remove-if 
+				    #'null
+				    (list (fixedname path)
+					  (fixedtype path))))
+			   :defaults path)
+	    path)))))
+
+;;;; FILE-KIND
+
 (defun file-kind (pathspec)
   "function FILE-KIND pathspec => file-kind
 
@@ -80,63 +124,56 @@
 :block-device.
 
 Signals an error if pathspec is wild."
-  ;; KLUDGE: OAOOM: We scurry to avoid an extra lstat here. 
-  (let ((path (pathname pathspec)))
+  (let ((path (merge-pathnames pathspec)))
     (when (wild-pathname-p path)
       (error "Pathname is wild: ~S." path))
     (with-cstring (cfile (namestring path))
       (c-file-kind cfile nil))))
 
+;;;; DIRECTORY ACCESS
+
 (defmacro with-directory-iterator ((iterator pathspec) &body body)
   "macro WITH-DIRECTORY-ITERATOR (iterator pathspec) &body forms => value
 
-Within the lexical scope of the body, iterator is defined via flet
+If pathspec is relative, it is resolved against *default-pathname-defaults*. 
+If the resulting pathname is still relative, it is further resolved against
+current directory. The resulting pathname is then bound to 
+*default-pathname-defaults* for the dynamic scope of the body.
+
+Within the lexical scope of the body, iterator is defined via macrolet
 such that successive invocations of (iterator) return the directory
 entries, one by one. Both files and directories are returned, except
-'.' and '..'. The order of entries is not guaranteed. 
-
-Once all entries have been returned, further invocations of (iterator)
-will all return NIL.
+'.' and '..'. The order of entries is not guaranteed. The entries are
+returned as relative pathnames against the directory. Entries that are
+symbolic links are not resolved. Once all entries have been returned, 
+further invocations of (iterator) will all return NIL.
 
 The value returned is the value of the last form evaluated in
-body.
-
-If pathspec designates a symbolic link, it is implicitly resolved.
-
-Signal an error if pathspec is wild or does not designate a directory."  
-  (with-unique-names (dp dir cdir err default)
-    `(let ((,dir (merge-pathnames ,pathspec)))
+body. Signals an error if pathspec is wild or does not designate a directory."
+  (with-unique-names (dp dir cdir)
+    `(let ((,dir (normpath ,pathspec t)))
        (with-c-file (,cdir ,dir :directory t)
-	 (let ((,dp nil)
-	       (,default 
-		   (make-pathname :name nil :type nil
-				  :directory 
-				  (append ;KLUDGE: deal with missing /'s
-				   (pathname-directory ,dir)
-				   (remove-if (lambda (o)
-						(or (null o)
-						    (keywordp o)
-						    (equal "." o)))
-					      (list (pathname-name ,dir)
-						    (pathname-type ,dir))))
-				  :defaults ,dir)))
+	 (let (,dp)
 	   (unwind-protect
-		(labels ((,iterator ()
-			   (let ((entry (readdir ,dp)))
-			     (if (null-pointer-p entry)
-				 nil
-				 (let ((namestring 
-					(convert-from-cstring
-					 (osicat-dirent-name entry))))
-				   (if (member namestring '("." "..") 
-					       :test #'equal)
-				       (,iterator)
-				       (merge-pathnames namestring 
-							,default)))))))
+		(macrolet ((,iterator () 
+			     `(block nil
+				(tagbody :retry
+				   (let ((entry (readdir ,',dp)))
+				     (if (null-pointer-p entry)
+					 nil
+					 (let ((name 
+						(convert-from-cstring
+						 (osicat-dirent-name 
+						  entry))))
+					   (if (member name '("." "..") 
+						       :test #'string=)
+					       (go :retry)
+					       (return (normpath name))))))))))
 		  (setf ,dp (opendir ,cdir))
 		  (when (null-pointer-p ,dp)
 		    (error "Error opening directory ~S." ,dir))
-		  , at body)
+		  (let ((*default-pathname-defaults* ,dir))
+		    , at body))
 	     (when ,dp
 	       (if (zerop (closedir ,dp))
 		   nil
@@ -164,19 +201,11 @@
 
 Signals an error if pathspec is wild, doesn't designate a directory,
 or if the directory could not be deleted."
-  (with-c-file (path pathspec :directory)
+  (with-c-file (path (normpath pathspec t) :directory)
     (if (zerop (rmdir path))
 	pathspec
 	(error "Could not delete directory ~S." pathspec))))
 
-(defmacro with-c-name ((cname name) &body forms)
-  (with-unique-names (n-name)
-    `(let ((,n-name ,name))
-       (with-cstring (,cname (etypecase ,n-name
-			       (string ,n-name)
-			       (symbol (symbol-name ,n-name))))
-	 , at forms))))
-
 (defun environment-variable (name)
   "function ENVIRONMENT-VARIABLE name => string
 function (SETF (ENVIRONMENT-VARIABLE name) value) => value
@@ -210,12 +239,27 @@
 	(error "Could not remove environment variable ~S." name))))
 
 (defun get-environ ()
-  (loop for i from 0 by 1
-	for string = (convert-from-cstring
-		      (deref-array environ cstring-array i))
-	for split = (position #\= string)
-	while string
-	collecting (cons (subseq string 0 split) (subseq string (1+ split)))))
+  (handler-case
+      (loop for i from 0 by 1
+	    for string = (convert-from-cstring
+			  (deref-array environ cstring-array i))
+	    for split = (position #\= string)
+	    while string
+	    collecting (cons (subseq string 0 split) 
+			     (subseq string (1+ split))))
+    (error (e)
+      (error "Could not access environment (~S)." e))))
+
+(defun (setf get-environ) (alist)
+  (let ((oldenv (get-environ)))
+    (loop for (var . val) in alist
+	  do (setf (environment-variable var) (string val)
+		   oldenv (delete var oldenv 
+				  :key (lambda (x) (string (car x)))
+				  :test #'string=)))
+    (loop for (var . val) in oldenv
+	  do (makunbound-environment-variable var)))
+  alist)
 
 (define-symbol-macro environment (get-environ))
 
@@ -235,18 +279,17 @@
 
 Signals an error if pathspec is wild, or does not designate a symbolic
 link."
-  ;; KLUDGE: Silence a compiler-note
   (handler-bind
       (#+sbcl (sb-ext:compiler-note #'muffle-warning))
-  (with-c-file (path pathspec :symbolic-link)
-    (do* ((size 64 (* size 2))
-	  (buffer #1=(allocate-foreign-string size) #1#)
-	  (got (readlink path buffer size)))
-	 ((< got size)
-	  (let ((str (convert-from-foreign-string buffer :length got)))
-	    (free-foreign-object buffer)
-	    (pathname str)))
-      (free-foreign-object buffer)))))
+    (with-c-file (path (normpath pathspec t) :symbolic-link)
+      (do* ((size 64 (* size 2))
+	    (buffer #1=(allocate-foreign-string size) #1#)
+	    (got (readlink path buffer size)))
+	   ((< got size)
+	    (let ((str (convert-from-foreign-string buffer :length got)))
+	      (free-foreign-object buffer)
+	      (pathname str)))
+	(free-foreign-object buffer)))))
 
 (defun make-link (target link &key hard)
   "function MAKE-LINK target link &key hard => pathname
@@ -257,12 +300,17 @@
 
 Signals an error if either target or link is wild, target does not
 exist, or link exists already."
-  (with-c-file (old target)
-    (with-c-file (new link)
-      (if (zerop (funcall (if hard #'link #'symlink) old new))
-	  (pathname link)
-	  (error "Could not create ~A link ~S -> ~S." 
-		 (if hard "hard" "symbolic") link target)))))
+  (let ((old (current-directory)))
+    (unwind-protect
+	 (with-c-file (old target)
+	   (with-c-file (new link)
+	     (setf (current-directory) 
+		   (normpath *default-pathname-defaults* t))
+	     (if (zerop (funcall (if hard #'link #'symlink) old new))
+		 (pathname link)
+		 (error "Could not create ~A link ~S -> ~S." 
+			(if hard "hard" "symbolic") link target))))
+      (setf (current-directory) old))))
 
 (define-symbol-macro +permissions+
     (load-time-value (mapcar (lambda (x)
@@ -307,3 +355,27 @@
 				   :initial-value 0)))
 	perms
 	(error "Could not set file permissions of ~S to ~S." pathspec perms))))
+
+(defun current-directory ()
+  "function CURRENT-DIRECTORY => pathname
+function (SETF CURRENT-DIRECTORY) pathspec => pathspec
+
+CURRENT-DIRECTORY returns the operating system's current directory, which
+may or may not correspond to *DEFAULT-PATHNAME-DEFAULTS*.
+
+SETF CURRENT-DIRECTORY changes the operating system's current directory to
+the pathspec. An error is signalled if the pathspec is wild or does not 
+designate a directory."
+  (let* ((cwd (c-getcwd))
+	 (str (convert-from-foreign-string cwd :null-terminated-p t)))
+    (if str
+	(prog1
+	    (pathname (concatenate 'string str "/"))
+	  (free-foreign-object cwd))
+	(error "Could not get current directory."))))
+
+(defun (setf current-directory) (pathspec)
+  (with-c-file (dir pathspec :directory)
+    (if (minusp (chdir dir))
+	(error "Could not change current directory.")
+	pathspec)))


Index: src/packages.lisp
diff -u src/packages.lisp:1.3 src/packages.lisp:1.4
--- src/packages.lisp:1.3	Sun Feb 29 07:44:47 2004
+++ src/packages.lisp	Sun Feb 29 13:10:41 2004
@@ -36,6 +36,7 @@
    #:with-directory-iterator
    #:mapdir
    #:delete-directory
+   #:current-directory
    ;; Files
    #:file-kind
    ;; Symlinks





More information about the Osicat-cvs mailing list