;;; directory.lisp ;;; ;;; Copyright (C) 2004-2007 Peter Graves ;;; Copyright (C) 2008 Ville Voutilainen ;;; $Id$ ;;; ;;; This program is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU General Public License ;;; as published by the Free Software Foundation; either version 2 ;;; of the License, or (at your option) any later version. ;;; ;;; This program is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with this program; if not, write to the Free Software ;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ;;; ;;; As a special exception, the copyright holders of this library give you ;;; permission to link this library with independent modules to produce an ;;; executable, regardless of the license terms of these independent ;;; modules, and to copy and distribute the resulting executable under ;;; terms of your choice, provided that you also meet, for each linked ;;; independent module, the terms and conditions of the license of that ;;; module. An independent module is a module which is not derived from ;;; or based on this library. If you modify this library, you may extend ;;; this exception to your version of the library, but you are not ;;; obligated to do so. If you do not wish to do so, delete this ;;; exception statement from your version. (in-package "SYSTEM") (defun pathname-as-file (pathname) (let ((directory (pathname-directory pathname))) (make-pathname :host nil :device (pathname-device pathname) :directory (butlast directory) :name (car (last directory)) :type nil :version nil))) (defun wild-inferiors-p (component) (eq component :wild-inferiors)) (defun list-directories-with-wildcards (pathname wild-inferiors-found resolve-symlinks) (let* ((directory (pathname-directory pathname)) (first-wild-inferior (and (not wild-inferiors-found) (position-if #'wild-inferiors-p directory))) (first-wild (position-if #'wild-p directory)) (wild (when (or first-wild-inferior first-wild) (nthcdr (or first-wild-inferior first-wild) directory))) (non-wild (if (or first-wild-inferior first-wild) (nbutlast directory (- (length directory) (or first-wild-inferior first-wild))) directory)) (newpath (make-pathname :directory non-wild :name nil :type nil :defaults pathname)) (entries (list-directory newpath resolve-symlinks))) (if (not (or wild wild-inferiors-found)) entries (let ((inferior-entries (when (or wild-inferiors-found first-wild-inferior) entries))) (nconc (mapcan (lambda (entry) (when (pathname-match-p (pathname entry) pathname) (list entry))) inferior-entries) (mapcan (lambda (entry) (let* ((pathname (pathname entry)) (directory (pathname-directory pathname)) (rest-wild (cdr wild))) (unless (pathname-name pathname) (when (pathname-match-p (first (last directory)) (cond ((eql (car wild) :wild) "*") ((eql (car wild) :wild-inferiors) "*") (wild (car wild)) (t ""))) (when (and (not (or first-wild-inferior wild-inferiors-found)) rest-wild) (setf directory (nconc directory rest-wild))) (let ((recurse (make-pathname :directory directory :defaults newpath))) (when (not (equal recurse newpath)) (list-directories-with-wildcards recurse (or first-wild-inferior wild-inferiors-found) resolve-symlinks))))))) entries)))))) (defun directory (pathspec &key (resolve-symlinks t)) (let ((pathname (merge-pathnames pathspec))) (when (logical-pathname-p pathname) (setq pathname (translate-logical-pathname pathname))) (if (or (position #\* (namestring pathname)) (wild-pathname-p pathname)) (if (pathname-jar-p pathname) (match-wild-jar-pathname pathname) (let ((namestring (directory-namestring pathname))) (when (and namestring (> (length namestring) 0)) (when (featurep :windows) (let ((device (pathname-device pathname))) (when device (setq namestring (concatenate 'string device ":" namestring))))) (let ((entries (list-directories-with-wildcards namestring nil resolve-symlinks)) (matching-entries ())) (dolist (entry entries) (cond ((file-directory-p entry) (when (pathname-match-p (file-namestring (pathname-as-file entry)) (file-namestring pathname)) (push entry matching-entries))) ((pathname-match-p (or (file-namestring entry) "") (file-namestring pathname)) (push entry matching-entries)))) matching-entries)))) ;; Not wild. (let ((truename (probe-file pathname))) (if truename (list (pathname truename)) nil)))))