From 450ee853ae814ca3c7a7d4cb58e487d62fadc8a3 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <fare@tunes.org> Date: Thu, 21 Oct 2010 10:35:38 -0700 Subject: [PATCH] 2.139: the recursive search for subdirs with .asd files now prunes early rather than filters Makes it run much faster on my computer with my configuration, and work on ABCL that lacks support for the previously-used **/*.asd. --- asdf.lisp | 64 +++++++++++++++++++++++----------- test/test-configuration.script | 5 --- 2 files changed, 43 insertions(+), 26 deletions(-) diff --git a/asdf.lisp b/asdf.lisp index 89cc83d9..c319771c 100644 --- a/asdf.lisp +++ b/asdf.lisp @@ -72,7 +72,7 @@ (defvar *asdf-version* nil) (defvar *upgraded-p* nil) (let* ((asdf-version ;; the 1+ helps the version bumping script discriminate - (subseq "VERSION:2.138" (1+ (length "VERSION")))) + (subseq "VERSION:2.139" (1+ (length "VERSION")))) (existing-asdf (fboundp 'find-system)) (existing-version *asdf-version*) (already-there (equal asdf-version existing-version))) @@ -2693,10 +2693,6 @@ with a different configuration, so the configuration would be re-read then." (setf *output-translations* '()) (values)) -(defparameter *wild-asd* - (make-pathname :directory '(:relative :wild-inferiors) - :name :wild :type "asd" :version :newest)) - (declaim (ftype (function (t &key (:directory boolean) (:wilden boolean)) (values (or null pathname) &optional)) resolve-location)) @@ -3240,6 +3236,46 @@ with a different configuration, so the configuration would be re-read then." (setf *source-registry* '()) (values)) +(defparameter *wild-asd* + (make-pathname :directory nil :name :wild :type "asd" :version :newest)) + +(defun directory-has-asd-files-p (directory) + (and (ignore-errors + (directory (merge-pathnames* *wild-asd* directory) + #+sbcl #+sbcl :resolve-symlinks nil + #+ccl #+ccl :follow-links nil + #+clisp #+clisp :circle t)) + t)) + +(defparameter *wild-subdir* + (make-pathname :directory '(:relative :wild) :name nil :type nil :version nil)) + +(defun subdirectories (directory) + (ignore-errors + (directory (merge-pathnames* *wild-subdir* directory) + #+sbcl #+sbcl :resolve-symlinks nil + #+ccl #+ccl :follow-links nil + #+ccl #+ccl :directories t + #+ccl #+ccl :files nil + #+clisp #+clisp :circle t))) + +(defun collect-subdirs (directory collectp recursep collector) + (when (funcall collectp directory) + (funcall collector directory)) + (dolist (subdir (subdirectories directory)) + (when (funcall recursep subdir) + (collect-subdirs subdir collectp recursep collector)))) + +(defun collect-sub*directories-with-asd + (directory &key + (exclude *default-source-registry-exclusions*) + collect) + (collect-subdirs + directory + #'directory-has-asd-files-p + #'(lambda (x) (not (member (car (last (pathname-directory x))) exclude :test #'equal))) + collect)) + (defun* validate-source-registry-directive (directive) (unless (or (member directive '(:default-registry (:default-registry)) :test 'equal) @@ -3303,22 +3339,8 @@ with a different configuration, so the configuration would be re-read then." (defun* register-asd-directory (directory &key recurse exclude collect) (if (not recurse) (funcall collect directory) - (let* ((files - (handler-case - (directory (merge-pathnames* *wild-asd* directory) - #+sbcl #+sbcl :resolve-symlinks nil - #+clisp #+clisp :circle t) - (error (c) - (warn "Error while scanning system definitions under directory ~S:~%~A" - directory c) - nil))) - (dirs (remove-duplicates (mapcar #'pathname-directory-pathname files) - :test #'equal :from-end t))) - (loop - :for dir :in dirs - :unless (loop :for x :in exclude - :thereis (find x (pathname-directory dir) :test #'equal)) - :do (funcall collect dir))))) + (collect-sub*directories-with-asd + directory :exclude exclude :collect collect))) (defparameter *default-source-registries* '(environment-source-registry diff --git a/test/test-configuration.script b/test/test-configuration.script index d6621079..ae3364bc 100644 --- a/test/test-configuration.script +++ b/test/test-configuration.script @@ -74,11 +74,6 @@ `(:source-registry (:include ,(under-test-directory "conf.d/")) :ignore-inherited-configuration)) -#+abcl -(when (find-system :foo3 nil) - (format t "~&Great news: ABCL can now find system FOO3 in a subdirectory!~%")) - -#-abcl ;; disable for ABCL for now. Hmmm. We need a better way to handle "known failures". (assert (equal (namestring (system-relative-pathname :foo3 "bar/baz.lisp")) (under-test-directory "dir2/bar/baz.lisp"))) -- GitLab