Added function DELETE-COLLECT-IF
[clg] / tools / asdf-extensions.lisp
index 6b3da93..93be2d3 100644 (file)
                              (module-components dso)))))
       (error 'operation-error :operation operation :component dso))))
 
+#+clisp
+(defvar *loaded-libraries* ())
 
 (defun load-dso (filename)
   #+sbcl(sb-alien:load-shared-object filename)
-  #+cmu(ext:load-foreign filename))
+  #+cmu(ext:load-foreign filename)
+  #+clisp
+  (unless (find filename *loaded-libraries* :test #'equal)
+    (ffi::foreign-library (namestring filename))
+    (push filename *loaded-libraries*)))
 
 
 (defmethod perform ((o load-op) (c unix-dso))
   ((libdir :initarg :libdir)))
 
 
-(defun relative-pathname (path)
-  (etypecase path
-    (cons path)
-    (string (if (char= #\/ (char path 0))
-               (subseq path 1)
-             path))))
+(defun split-path (path)
+  (labels ((split (path)
+            (unless (zerop (length path))
+              (let ((slash (position #\/ path)))
+                (if slash
+                    (cons (subseq path 0 slash) (split (subseq path (1+ slash))))
+                  (list path))))))
+    (if (and (not (zerop (length path))) (char= (char path 0) #\/))
+       (cons :absolute (split (subseq path 1)))
+      (cons :relative (split path)))))
+
 
 (defmethod component-pathname ((lib library))
   (make-pathname :type "so"
                 :name (component-name lib)
-                :directory (relative-pathname (slot-value lib 'libdir))))
+                :directory (split-path (slot-value lib 'libdir))))
 
 (defmethod perform ((o load-op) (c library))
   (load-dso (component-pathname c)))
        system::*global-table* 
        :key #'(lambda (pathname)
                 (when pathname (unix::unix-namestring pathname)))
-       :test #'equal))
+       :test #'equal)
+  #+clisp(find (component-pathname c) *loaded-libraries* :test #'equal))
 
 (defmethod operation-done-p ((o operation) (c library))
   t)