diff --git a/code/module.lisp b/code/module.lisp index 9c71042a02716ddcc028ebc833539a4ec8b5ad94..cc9b6467e9049c7c4a6b4b917e08d9e6c4d807df 100644 --- a/code/module.lisp +++ b/code/module.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/module.lisp,v 1.14 2010/04/20 17:57:45 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/module.lisp,v 1.15 2010/05/10 19:30:40 rtoy Exp $") ;;; ;;; ********************************************************************** @@ -62,33 +62,36 @@ ;;;; Provide and Require. (defun provide (module-name) - "Adds a new module name to *modules* indicating that it has been loaded. - Module-name may be any valid string designator. All comparisons are - done using string=, i.e. module names are case-sensitive." + "Adds a new module name to *modules* indicating that it has been + loaded. Module-name may be any valid string designator. All + comparisons are done using string=, i.e. module names are + case-sensitive." (pushnew (module-name-string module-name) *modules* :test #'string=) t) (defun require (module-name &optional pathname) - "Loads a module when it has not been already. Pathname, if supplied, - is a single pathname or list of pathnames to be loaded if the module - needs to be. If pathname is not supplied, then functions from the list - *MODULE-PROVIDER-FUNCTIONS* are called in order with the stringified - MODULE-NAME as the argument, until one of them returns non-NIL. By - default the functions MODULE-PROVIDE-CMUCL-DEFMODULE and MODULE-PROVIDE- - CMUCL-LIBRARY are on this list of functions, in that order. The first - of those looks for a list of files that was registered by a EXT:DEFMODULE - form. If the module has not been defined, then the second function - causes a file to be loaded whose name is formed by merging \"modules:\" - and the concatenation of module-name with the suffix \"-LIBRARY\". - Note that both the module-name and the suffix are each, separately, - converted from :case :common to :case :local. This merged name will be - probed with both a .lisp and .fasl extensions, calling LOAD if it exists. - - Note that in all cases covered above, user code is responsible for - calling PROVIDE to indicate a successful load of the module. - - While loading any files, *load-verbose* is bound to *require-verbose* - which defaults to t." + "Loads a module when it has not been already. Pathname, if + supplied, is a single pathname or list of pathnames to be loaded if + the module needs to be. If pathname is not supplied, then functions + from the list *MODULE-PROVIDER-FUNCTIONS* are called in order with + the stringified MODULE-NAME as the argument, until one of them + returns non-NIL. By default the functions + MODULE-PROVIDE-CMUCL-DEFMODULE and MODULE-PROVIDE- CMUCL-LIBRARY are + on this list of functions, in that order. The first of those looks + for a list of files that was registered by a EXT:DEFMODULE form. If + the module has not been defined, then the second function causes a + file to be loaded whose name is formed by merging \"modules:\" and + the concatenation of module-name with the suffix \"-LIBRARY\". Note + that both the module-name and the suffix are each, separately, + converted from :case :common to :case :local. This merged name will + be probed with both a .lisp and .fasl extensions, calling LOAD if it + exists. + + Note that in all cases covered above, user code is responsible for + calling PROVIDE to indicate a successful load of the module. + + While loading any files, *load-verbose* is bound to *require-verbose* + which defaults to t." (let ((saved-modules (copy-list *modules*)) (module-name (module-name-string module-name))) (unless (member module-name *modules* :test #'string=) @@ -120,10 +123,10 @@ (defun module-default-pathname (module-name) "Derive a default pathname to try to load for an undefined module -named module-name. The default pathname is constructed from the -module-name by appending the suffix \"-LIBRARY\" to it, and merging -with \"modules:\". Note that both the module-name and the suffix are -each, separately, converted from :case :common to :case :local." + named module-name. The default pathname is constructed from the + module-name by appending the suffix \"-LIBRARY\" to it, and merging + with \"modules:\". Note that both the module-name and the suffix + are each, separately, converted from :case :common to :case :local." (let* ((module-pathname (make-pathname :name module-name :case :common)) (library-pathname (make-pathname :name "-LIBRARY" :case :common))) (merge-pathnames @@ -134,6 +137,12 @@ each, separately, converted from :case :common to :case :local." (pathname-name library-pathname :case :local)) :case :local)))) +(defmodule :defsystem + "modules:defsystem/defsystem") + +(defmodule :asdf + "modules:asdf/asdf") + ;; Meta contrib that loads up definitions for all other contribs (defmodule "cmu-contribs" "modules:contrib.lisp") diff --git a/contrib/asdf/asdf.lisp b/contrib/asdf/asdf.lisp new file mode 100644 index 0000000000000000000000000000000000000000..6351bbcf1b1c36943f1456ef40775c1a88877cbf --- /dev/null +++ b/contrib/asdf/asdf.lisp @@ -0,0 +1,3342 @@ +;;; -*- mode: common-lisp; package: asdf; -*- +;;; This is ASDF: Another System Definition Facility. +;;; +;;; Feedback, bug reports, and patches are all welcome: +;;; please mail to <asdf-devel@common-lisp.net>. +;;; Note first that the canonical source for ASDF is presently +;;; <URL:http://common-lisp.net/project/asdf/>. +;;; +;;; If you obtained this copy from anywhere else, and you experience +;;; trouble using it, or find bugs, you may want to check at the +;;; location above for a more recent version (and for documentation +;;; and test files, if your copy came without them) before reporting +;;; bugs. There are usually two "supported" revisions - the git HEAD +;;; is the latest development version, whereas the revision tagged +;;; RELEASE may be slightly older but is considered `stable' + +;;; -- LICENSE START +;;; (This is the MIT / X Consortium license as taken from +;;; http://www.opensource.org/licenses/mit-license.html on or about +;;; Monday; July 13, 2009) +;;; +;;; Copyright (c) 2001-2010 Daniel Barlow and contributors +;;; +;;; Permission is hereby granted, free of charge, to any person obtaining +;;; a copy of this software and associated documentation files (the +;;; "Software"), to deal in the Software without restriction, including +;;; without limitation the rights to use, copy, modify, merge, publish, +;;; distribute, sublicense, and/or sell copies of the Software, and to +;;; permit persons to whom the Software is furnished to do so, subject to +;;; the following conditions: +;;; +;;; The above copyright notice and this permission notice shall be +;;; included in all copies or substantial portions of the Software. +;;; +;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +;;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +;;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +;;; LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +;;; OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +;;; WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +;;; +;;; -- LICENSE END + +;;; The problem with writing a defsystem replacement is bootstrapping: +;;; we can't use defsystem to compile it. Hence, all in one file. + +#+xcvb (module ()) + +(cl:in-package :cl-user) + +(declaim (optimize (speed 2) (debug 2) (safety 3)) + #+sbcl (sb-ext:muffle-conditions sb-ext:compiler-note)) + +#+ecl (require :cmp) + +;;;; Create packages in a way that is compatible with hot-upgrade. +;;;; See https://bugs.launchpad.net/asdf/+bug/485687 +;;;; See more at the end of the file. + +#+gcl +(eval-when (:compile-toplevel :load-toplevel) + (defpackage :asdf-utilities (:use :cl)) + (defpackage :asdf (:use :cl :asdf-utilities))) + +(eval-when (:load-toplevel :compile-toplevel :execute) + #+allegro + (setf excl::*autoload-package-name-alist* + (remove "asdf" excl::*autoload-package-name-alist* + :test 'equalp :key 'car)) + (let* ((asdf-version + ;; the 1+ helps the version bumping script discriminate + (subseq "VERSION:1.718" (1+ (length "VERSION")))) + (existing-asdf (find-package :asdf)) + (vername '#:*asdf-version*) + (versym (and existing-asdf + (find-symbol (string vername) existing-asdf))) + (existing-version (and versym (boundp versym) (symbol-value versym))) + (already-there (equal asdf-version existing-version))) + (unless (and existing-asdf already-there) + #-gcl + (when existing-asdf + (format *error-output* + "~&Upgrading ASDF package ~@[from version ~A ~]to version ~A~%" + existing-version asdf-version)) + (labels + ((rename-away (package) + (loop :with name = (package-name package) + :for i :from 1 :for new = (format nil "~A.~D" name i) + :unless (find-package new) :do + (rename-package-name package name new))) + (rename-package-name (package old new) + (let* ((old-names (cons (package-name package) + (package-nicknames package))) + (new-names (subst new old old-names :test 'equal)) + (new-name (car new-names)) + (new-nicknames (cdr new-names))) + (rename-package package new-name new-nicknames))) + (ensure-exists (name nicknames use) + (let* ((previous + (remove-duplicates + (remove-if + #'null + (mapcar #'find-package (cons name nicknames))) + :from-end t))) + (cond + (previous + ;; do away with packages with conflicting (nick)names + (map () #'rename-away (cdr previous)) + ;; reuse previous package with same name + (let ((p (car previous))) + (rename-package p name nicknames) + (ensure-use p use) + p)) + (t + (make-package name :nicknames nicknames :use use))))) + (find-sym (symbol package) + (find-symbol (string symbol) package)) + (intern* (symbol package) + (intern (string symbol) package)) + (remove-symbol (symbol package) + (let ((sym (find-sym symbol package))) + (when sym + (unexport sym package) + (unintern sym package)))) + (ensure-unintern (package symbols) + (dolist (sym symbols) (remove-symbol sym package))) + (ensure-shadow (package symbols) + (shadow symbols package)) + (ensure-use (package use) + (dolist (used (reverse use)) + (do-external-symbols (sym used) + (unless (eq sym (find-sym sym package)) + (remove-symbol sym package))) + (use-package used package))) + (ensure-fmakunbound (package symbols) + (loop :for name :in symbols + :for sym = (find-sym name package) + :when sym :do (fmakunbound sym))) + (ensure-export (package export) + (let ((syms (loop :for x :in export :collect + (intern* x package)))) + (do-external-symbols (sym package) + (unless (member sym syms) + (remove-symbol sym package))) + (dolist (sym syms) + (export sym package)))) + (ensure-package (name &key nicknames use unintern fmakunbound shadow export) + (let ((p (ensure-exists name nicknames use))) + (ensure-unintern p unintern) + (ensure-shadow p shadow) + (ensure-export p export) + (ensure-fmakunbound p fmakunbound) + p))) + (macrolet + ((pkgdcl (name &key nicknames use export + redefined-functions unintern fmakunbound shadow) + `(ensure-package + ',name :nicknames ',nicknames :use ',use :export ',export + :shadow ',shadow + :unintern ',(append #-(or gcl ecl) redefined-functions + unintern) + :fmakunbound ',(append #+(or gcl ecl) redefined-functions + fmakunbound)))) + (pkgdcl + :asdf-utilities + :nicknames (#:asdf-extensions) + :use (#:common-lisp) + :unintern (#:split #:make-collector) + :export + (#:absolute-pathname-p + #:aif + #:appendf + #:asdf-message + #:coerce-name + #:directory-pathname-p + #:ends-with + #:ensure-directory-pathname + #:getenv + #:get-uid + #:length=n-p + #:merge-pathnames* + #:pathname-directory-pathname + #:read-file-forms + #:remove-keys + #:remove-keyword + #:resolve-symlinks + #:split-string + #:component-name-to-pathname-components + #:split-name-type + #:system-registered-p + #:truenamize + #:while-collecting)) + (pkgdcl + :asdf + :use (:common-lisp :asdf-utilities) + :redefined-functions + (#:perform #:explain #:output-files #:operation-done-p + #:perform-with-restarts #:component-relative-pathname + #:system-source-file #:operate #:find-component) + :unintern + (#:*asdf-revision* #:around #:asdf-method-combination + #:split #:make-collector) + :fmakunbound + (#:system-source-file + #:component-relative-pathname #:system-relative-pathname + #:process-source-registry + #:inherit-source-registry #:process-source-registry-directive) + :export + (#:defsystem #:oos #:operate #:find-system #:run-shell-command + #:system-definition-pathname #:find-component ; miscellaneous + #:compile-system #:load-system #:test-system + #:compile-op #:load-op #:load-source-op + #:test-op + #:operation ; operations + #:feature ; sort-of operation + #:version ; metaphorically sort-of an operation + #:version-satisfies + + #:input-files #:output-files #:perform ; operation methods + #:operation-done-p #:explain + + #:component #:source-file + #:c-source-file #:cl-source-file #:java-source-file + #:static-file + #:doc-file + #:html-file + #:text-file + #:source-file-type + #:module ; components + #:system + #:unix-dso + + #:module-components ; component accessors + #:module-components-by-name ; component accessors + #:component-pathname + #:component-relative-pathname + #:component-name + #:component-version + #:component-parent + #:component-property + #:component-system + + #:component-depends-on + + #:system-description + #:system-long-description + #:system-author + #:system-maintainer + #:system-license + #:system-licence + #:system-source-file + #:system-source-directory + #:system-relative-pathname + #:map-systems + + #:operation-on-warnings + #:operation-on-failure + ;;#:*component-parent-pathname* + #:*system-definition-search-functions* + #:*central-registry* ; variables + #:*compile-file-warnings-behaviour* + #:*compile-file-failure-behaviour* + #:*resolve-symlinks* + #:*asdf-verbose* + + #:asdf-version + + #:operation-error #:compile-failed #:compile-warned #:compile-error + #:error-name + #:error-pathname + #:load-system-definition-error + #:error-component #:error-operation + #:system-definition-error + #:missing-component + #:missing-component-of-version + #:missing-dependency + #:missing-dependency-of-version + #:circular-dependency ; errors + #:duplicate-names + + #:try-recompiling + #:retry + #:accept ; restarts + #:coerce-entry-to-directory + #:remove-entry-from-registry + + #:initialize-output-translations + #:disable-output-translations + #:clear-output-translations + #:ensure-output-translations + #:apply-output-translations + #:compile-file-pathname* + #:enable-asdf-binary-locations-compatibility + + #:*default-source-registries* + #:initialize-source-registry + #:compute-source-registry + #:clear-source-registry + #:ensure-source-registry + #:process-source-registry))) + (let* ((version (intern* vername :asdf)) + (upvar (intern* '#:*upgraded-p* :asdf)) + (upval0 (and (boundp upvar) (symbol-value upvar))) + (upval1 (if existing-version (cons existing-version upval0) upval0))) + (eval `(progn + (defparameter ,version ,asdf-version) + (defparameter ,upvar ',upval1)))))))) + +(in-package :asdf) + +;; More cleanups in case of hot-upgrade. See https://bugs.launchpad.net/asdf/+bug/485687 +#+gcl +(eval-when (:compile-toplevel :load-toplevel) + (defvar *asdf-version* nil) + (defvar *upgraded-p* nil)) +(when *upgraded-p* + #+ecl + (when (find-class 'compile-op nil) + (defmethod update-instance-for-redefined-class :after + ((c compile-op) added deleted plist &key) + (declare (ignore added deleted)) + (let ((system-p (getf plist 'system-p))) + (when system-p (setf (getf (slot-value c 'flags) :system-p) system-p))))) + (when (find-class 'module nil) + (eval + '(defmethod update-instance-for-redefined-class :after + ((m module) added deleted plist &key) + (declare (ignorable deleted plist)) + (when (member 'components-by-name added) + (compute-module-components-by-name m)))))) + +;;;; ------------------------------------------------------------------------- +;;;; User-visible parameters +;;;; +(defun asdf-version () + "Exported interface to the version of ASDF currently installed. A string. +You can compare this string with e.g.: +(ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSION) \"1.704\")." + *asdf-version*) + +(defvar *resolve-symlinks* t + "Determine whether or not ASDF resolves symlinks when defining systems. + +Defaults to `t`.") + +(defvar *compile-file-warnings-behaviour* :warn) + +(defvar *compile-file-failure-behaviour* #+sbcl :error #-sbcl :warn) + +(defvar *verbose-out* nil) + +(defvar *asdf-verbose* t) + +(defparameter +asdf-methods+ + '(perform-with-restarts perform explain output-files operation-done-p)) + +#+allegro +(eval-when (:compile-toplevel :execute) + (defparameter *acl-warn-save* + (when (boundp 'excl:*warn-on-nested-reader-conditionals*) + excl:*warn-on-nested-reader-conditionals*)) + (when (boundp 'excl:*warn-on-nested-reader-conditionals*) + (setf excl:*warn-on-nested-reader-conditionals* nil))) + +;;;; ------------------------------------------------------------------------- +;;;; ASDF Interface, in terms of generic functions. + +(defgeneric perform-with-restarts (operation component)) +(defgeneric perform (operation component)) +(defgeneric operation-done-p (operation component)) +(defgeneric explain (operation component)) +(defgeneric output-files (operation component)) +(defgeneric input-files (operation component)) +(defgeneric component-operation-time (operation component)) + +(defgeneric system-source-file (system) + (:documentation "Return the source file in which system is defined.")) + +(defgeneric component-system (component) + (:documentation "Find the top-level system containing COMPONENT")) + +(defgeneric component-pathname (component) + (:documentation "Extracts the pathname applicable for a particular component.")) + +(defgeneric component-relative-pathname (component) + (:documentation "Returns a pathname for the component argument intended to be +interpreted relative to the pathname of that component's parent. +Despite the function's name, the return value may be an absolute +pathname, because an absolute pathname may be interpreted relative to +another pathname in a degenerate way.")) + +(defgeneric component-property (component property)) + +(defgeneric (setf component-property) (new-value component property)) + +(defgeneric version-satisfies (component version)) + +(defgeneric find-component (base path) + (:documentation "Finds the component with PATH starting from BASE module; +if BASE is nil, then the component is assumed to be a system.")) + +(defgeneric source-file-type (component system)) + +(defgeneric operation-ancestor (operation) + (:documentation + "Recursively chase the operation's parent pointer until we get to +the head of the tree")) + +(defgeneric component-visited-p (operation component) + (:documentation "Returns the value stored by a call to +VISIT-COMPONENT, if that has been called, otherwise NIL. +This value stored will be a cons cell, the first element +of which is a computed key, so not interesting. The +CDR wil be the DATA value stored by VISIT-COMPONENT; recover +it as (cdr (component-visited-p op c)). + In the current form of ASDF, the DATA value retrieved is +effectively a boolean, indicating whether some operations are +to be performed in order to do OPERATION X COMPONENT. If the +data value is NIL, the combination had been explored, but no +operations needed to be performed.")) + +(defgeneric visit-component (operation component data) + (:documentation "Record DATA as being associated with OPERATION +and COMPONENT. This is a side-effecting function: the association +will be recorded on the ROOT OPERATION \(OPERATION-ANCESTOR of the +OPERATION\). + No evidence that DATA is ever interesting, beyond just being +non-NIL. Using the data field is probably very risky; if there is +already a record for OPERATION X COMPONENT, DATA will be quietly +discarded instead of recorded.")) + +(defgeneric (setf visiting-component) (new-value operation component)) + +(defgeneric component-visiting-p (operation component)) + +(defgeneric component-depends-on (operation component) + (:documentation + "Returns a list of dependencies needed by the component to perform + the operation. A dependency has one of the following forms: + + (<operation> <component>*), where <operation> is a class + designator and each <component> is a component + designator, which means that the component depends on + <operation> having been performed on each <component>; or + + (FEATURE <feature>), which means that the component depends + on <feature>'s presence in *FEATURES*. + + Methods specialized on subclasses of existing component types + should usually append the results of CALL-NEXT-METHOD to the + list.")) + +(defgeneric component-self-dependencies (operation component)) + +(defgeneric traverse (operation component) + (:documentation +"Generate and return a plan for performing `operation` on `component`. + +The plan returned is a list of dotted-pairs. Each pair is the `cons` +of ASDF operation object and a `component` object. The pairs will be +processed in order by `operate`.")) + + +;;;; ------------------------------------------------------------------------- +;;;; General Purpose Utilities + +(defmacro while-collecting ((&rest collectors) &body body) + (let ((vars (mapcar #'(lambda (x) (gensym (symbol-name x))) collectors)) + (initial-values (mapcar (constantly nil) collectors))) + `(let ,(mapcar #'list vars initial-values) + (flet ,(mapcar #'(lambda (c v) `(,c (x) (push x ,v) (values))) collectors vars) + ,@body + (values ,@(mapcar #'(lambda (v) `(reverse ,v)) vars)))))) + +(defmacro aif (test then &optional else) + `(let ((it ,test)) (if it ,then ,else))) + +(defun pathname-directory-pathname (pathname) + "Returns a new pathname with same HOST, DEVICE, DIRECTORY as PATHNAME, +and NIL NAME, TYPE and VERSION components" + (make-pathname :name nil :type nil :version nil :defaults pathname)) + +(defun current-directory () + (truenamize (pathname-directory-pathname *default-pathname-defaults*))) + +(defun merge-pathnames* (specified &optional (defaults *default-pathname-defaults*)) + "MERGE-PATHNAMES* is like MERGE-PATHNAMES except that if the SPECIFIED pathname +does not have an absolute directory, then the HOST and DEVICE come from the DEFAULTS. +Also, if either argument is NIL, then the other argument is returned unmodified." + (when (null specified) (return-from merge-pathnames* defaults)) + (when (null defaults) (return-from merge-pathnames* specified)) + (let* ((specified (pathname specified)) + (defaults (pathname defaults)) + (directory (pathname-directory specified)) + (directory (if (stringp directory) `(:absolute ,directory) directory)) + (name (or (pathname-name specified) (pathname-name defaults))) + (type (or (pathname-type specified) (pathname-type defaults))) + (version (or (pathname-version specified) (pathname-version defaults)))) + (labels ((ununspecific (x) + (if (eq x :unspecific) nil x)) + (unspecific-handler (p) + (if (typep p 'logical-pathname) #'ununspecific #'identity))) + (multiple-value-bind (host device directory unspecific-handler) + (#-gcl ecase #+gcl case (first directory) + ((nil) + (values (pathname-host defaults) + (pathname-device defaults) + (pathname-directory defaults) + (unspecific-handler defaults))) + ((:absolute) + (values (pathname-host specified) + (pathname-device specified) + directory + (unspecific-handler specified))) + ((:relative) + (values (pathname-host defaults) + (pathname-device defaults) + (append (pathname-directory defaults) (cdr directory)) + (unspecific-handler defaults))) + #+gcl + (t + (assert (stringp (first directory))) + (values (pathname-host defaults) + (pathname-device defaults) + (append (pathname-directory defaults) directory) + (unspecific-handler defaults)))) + (make-pathname :host host :device device :directory directory + :name (funcall unspecific-handler name) + :type (funcall unspecific-handler type) + :version (funcall unspecific-handler version)))))) + +(define-modify-macro appendf (&rest args) + append "Append onto list") ;; only to be used on short lists. + +(define-modify-macro orf (&rest args) + or "or a flag") + +(defun asdf-message (format-string &rest format-args) + (declare (dynamic-extent format-args)) + (apply #'format *verbose-out* format-string format-args)) + +(defun split-string (string &key max (separator '(#\Space #\Tab))) + "Split STRING in components separater by any of the characters in the sequence SEPARATOR, +return a list. +If MAX is specified, then no more than max(1,MAX) components will be returned, +starting the separation from the end, e.g. when called with arguments + \"a.b.c.d.e\" :max 3 :separator \".\" it will return (\"a.b.c\" \"d\" \"e\")." + (block nil + (let ((list nil) (words 0) (end (length string))) + (flet ((separatorp (char) (find char separator)) + (done () (return (cons (subseq string 0 end) list)))) + (loop + :for start = (if (and max (>= words (1- max))) + (done) + (position-if #'separatorp string :end end :from-end t)) :do + (when (null start) + (done)) + (push (subseq string (1+ start) end) list) + (incf words) + (setf end start)))))) + +(defun split-name-type (filename) + (let ((unspecific + ;; Giving :unspecific as argument to make-pathname is not portable. + ;; See CLHS make-pathname and 19.2.2.2.3. + ;; We only use it on implementations that support it. + (or #+(or ccl ecl gcl lispworks sbcl) :unspecific))) + (destructuring-bind (name &optional (type unspecific)) + (split-string filename :max 2 :separator ".") + (if (equal name "") + (values filename unspecific) + (values name type))))) + +(defun component-name-to-pathname-components (s &optional force-directory) + "Splits the path string S, returning three values: +A flag that is either :absolute or :relative, indicating + how the rest of the values are to be interpreted. +A directory path --- a list of strings, suitable for + use with MAKE-PATHNAME when prepended with the flag + value. +A filename with type extension, possibly NIL in the + case of a directory pathname. +FORCE-DIRECTORY forces S to be interpreted as a directory +pathname \(third return value will be NIL, final component +of S will be treated as part of the directory path. + +The intention of this function is to support structured component names, +e.g., \(:file \"foo/bar\"\), which will be unpacked to relative +pathnames." + (check-type s string) + (let* ((components (split-string s :separator "/")) + (last-comp (car (last components)))) + (multiple-value-bind (relative components) + (if (equal (first components) "") + (if (and (plusp (length s)) (eql (char s 0) #\/)) + (values :absolute (cdr components)) + (values :relative nil)) + (values :relative components)) + (cond + ((equal last-comp "") + (values relative (butlast components) nil)) + (force-directory + (values relative components nil)) + (t + (values relative (butlast components) last-comp)))))) + +(defun remove-keys (key-names args) + (loop :for (name val) :on args :by #'cddr + :unless (member (symbol-name name) key-names + :key #'symbol-name :test 'equal) + :append (list name val))) + +(defun remove-keyword (key args) + (loop :for (k v) :on args :by #'cddr + :unless (eq k key) + :append (list k v))) + +(defun resolve-symlinks (path) + #-allegro (truenamize path) + #+allegro (excl:pathname-resolve-symbolic-links path)) + +(defun getenv (x) + #+abcl + (ext:getenv x) + #+sbcl + (sb-ext:posix-getenv x) + #+clozure + (ccl::getenv x) + #+clisp + (ext:getenv x) + #+cmu + (cdr (assoc (intern x :keyword) ext:*environment-list*)) + #+lispworks + (lispworks:environment-variable x) + #+allegro + (sys:getenv x) + #+gcl + (system:getenv x) + #+ecl + (si:getenv x)) + +(defun directory-pathname-p (pathname) + "Does `pathname` represent a directory? + +A directory-pathname is a pathname _without_ a filename. The three +ways that the filename components can be missing are for it to be `nil`, +`:unspecific` or the empty string. + +Note that this does _not_ check to see that `pathname` points to an +actually-existing directory." + (flet ((check-one (x) + (member x '(nil :unspecific "") :test 'equal))) + (and (check-one (pathname-name pathname)) + (check-one (pathname-type pathname)) + t))) + +(defun ensure-directory-pathname (pathspec) + "Converts the non-wild pathname designator PATHSPEC to directory form." + (cond + ((stringp pathspec) + (ensure-directory-pathname (pathname pathspec))) + ((not (pathnamep pathspec)) + (error "Invalid pathname designator ~S" pathspec)) + ((wild-pathname-p pathspec) + (error "Can't reliably convert wild pathnames.")) + ((directory-pathname-p pathspec) + pathspec) + (t + (make-pathname :directory (append (or (pathname-directory pathspec) + (list :relative)) + (list (file-namestring pathspec))) + :name nil :type nil :version nil + :defaults pathspec)))) + +(defun absolute-pathname-p (pathspec) + (eq :absolute (car (pathname-directory (pathname pathspec))))) + +(defun length=n-p (x n) ;is it that (= (length x) n) ? + (check-type n (integer 0 *)) + (loop + :for l = x :then (cdr l) + :for i :downfrom n :do + (cond + ((zerop i) (return (null l))) + ((not (consp l)) (return nil))))) + +(defun ends-with (s suffix) + (check-type s string) + (check-type suffix string) + (let ((start (- (length s) (length suffix)))) + (and (<= 0 start) + (string-equal s suffix :start1 start)))) + +(defun read-file-forms (file) + (with-open-file (in file) + (loop :with eof = (list nil) + :for form = (read in nil eof) + :until (eq form eof) + :collect form))) + +#-(and (or win32 windows mswindows mingw32) (not cygwin)) +(progn +#+clisp (defun get-uid () (posix:uid)) +#+sbcl (defun get-uid () (sb-unix:unix-getuid)) +#+cmu (defun get-uid () (unix:unix-getuid)) +#+ecl (ffi:clines "#include <sys/types.h>" "#include <unistd.h>") +#+ecl (defun get-uid () (ffi:c-inline () () :int "getuid()" :one-liner t)) +#+allegro (defun get-uid () (excl.osi:getuid)) +#-(or cmu sbcl clisp allegro ecl) +(defun get-uid () + (let ((uid-string + (with-output-to-string (*verbose-out*) + (run-shell-command "id -ur")))) + (with-input-from-string (stream uid-string) + (read-line stream) + (handler-case (parse-integer (read-line stream)) + (error () (error "Unable to find out user ID"))))))) + +(defun pathname-root (pathname) + (make-pathname :host (pathname-host pathname) + :device (pathname-device pathname) + :directory '(:absolute) + :name nil :type nil :version nil)) + +(defun truenamize (p) + "Resolve as much of a pathname as possible" + (block nil + (when (typep p 'logical-pathname) (return p)) + (let* ((p (merge-pathnames* p)) + (directory (pathname-directory p))) + (when (typep p 'logical-pathname) (return p)) + (ignore-errors (return (truename p))) + (when (stringp directory) + (return p)) + (when (not (eq :absolute (car directory))) + (return p)) + (let ((sofar (ignore-errors (truename (pathname-root p))))) + (unless sofar (return p)) + (flet ((solution (directories) + (merge-pathnames* + (make-pathname :host nil :device nil + :directory `(:relative ,@directories) + :name (pathname-name p) + :type (pathname-type p) + :version (pathname-version p)) + sofar))) + (loop :for component :in (cdr directory) + :for rest :on (cdr directory) + :for more = (ignore-errors + (truename + (merge-pathnames* + (make-pathname :directory `(:relative ,component)) + sofar))) :do + (if more + (setf sofar more) + (return (solution rest))) + :finally + (return (solution nil)))))))) + +(defun lispize-pathname (input-file) + (make-pathname :type "lisp" :defaults input-file)) + +;;;; ------------------------------------------------------------------------- +;;;; Classes, Conditions + +(define-condition system-definition-error (error) () + ;; [this use of :report should be redundant, but unfortunately it's not. + ;; cmucl's lisp::output-instance prefers the kernel:slot-class-print-function + ;; over print-object; this is always conditions::%print-condition for + ;; condition objects, which in turn does inheritance of :report options at + ;; run-time. fortunately, inheritance means we only need this kludge here in + ;; order to fix all conditions that build on it. -- rgr, 28-Jul-02.] + #+cmu (:report print-object)) + +(define-condition formatted-system-definition-error (system-definition-error) + ((format-control :initarg :format-control :reader format-control) + (format-arguments :initarg :format-arguments :reader format-arguments)) + (:report (lambda (c s) + (apply #'format s (format-control c) (format-arguments c))))) + +(define-condition load-system-definition-error (system-definition-error) + ((name :initarg :name :reader error-name) + (pathname :initarg :pathname :reader error-pathname) + (condition :initarg :condition :reader error-condition)) + (:report (lambda (c s) + (format s "~@<Error while trying to load definition for system ~A from pathname ~A: ~A~@:>" + (error-name c) (error-pathname c) (error-condition c))))) + +(define-condition circular-dependency (system-definition-error) + ((components :initarg :components :reader circular-dependency-components))) + +(define-condition duplicate-names (system-definition-error) + ((name :initarg :name :reader duplicate-names-name)) + (:report (lambda (c s) + (format s "~@<Error while defining system: multiple components are given same name ~A~@:>" + (duplicate-names-name c))))) + +(define-condition missing-component (system-definition-error) + ((requires :initform "(unnamed)" :reader missing-requires :initarg :requires) + (parent :initform nil :reader missing-parent :initarg :parent))) + +(define-condition missing-component-of-version (missing-component) + ((version :initform nil :reader missing-version :initarg :version))) + +(define-condition missing-dependency (missing-component) + ((required-by :initarg :required-by :reader missing-required-by))) + +(define-condition missing-dependency-of-version (missing-dependency + missing-component-of-version) + ()) + +(define-condition operation-error (error) + ((component :reader error-component :initarg :component) + (operation :reader error-operation :initarg :operation)) + (:report (lambda (c s) + (format s "~@<erred while invoking ~A on ~A~@:>" + (error-operation c) (error-component c))))) +(define-condition compile-error (operation-error) ()) +(define-condition compile-failed (compile-error) ()) +(define-condition compile-warned (compile-error) ()) + +(defclass component () + ((name :accessor component-name :initarg :name :documentation + "Component name: designator for a string composed of portable pathname characters") + (version :accessor component-version :initarg :version) + (in-order-to :initform nil :initarg :in-order-to + :accessor component-in-order-to) + ;; This one is used by POIU. Maybe in the future by ASDF instead of in-order-to? + (load-dependencies :accessor component-load-dependencies :initform nil) + ;; XXX crap name, but it's an official API name! + (do-first :initform nil :initarg :do-first + :accessor component-do-first) + ;; methods defined using the "inline" style inside a defsystem form: + ;; need to store them somewhere so we can delete them when the system + ;; is re-evaluated + (inline-methods :accessor component-inline-methods :initform nil) + (parent :initarg :parent :initform nil :reader component-parent) + ;; no direct accessor for pathname, we do this as a method to allow + ;; it to default in funky ways if not supplied + (relative-pathname :initarg :pathname) + (absolute-pathname) + (operation-times :initform (make-hash-table) + :accessor component-operation-times) + ;; XXX we should provide some atomic interface for updating the + ;; component properties + (properties :accessor component-properties :initarg :properties + :initform nil))) + +(defun component-find-path (component) + (reverse + (loop :for c = component :then (component-parent c) + :while c :collect (component-name c)))) + +(defmethod print-object ((c component) stream) + (print-unreadable-object (c stream :type t :identity nil) + (format stream "~@<~{~S~^ ~}~@:>" (component-find-path c)))) + + +;;;; methods: conditions + +(defmethod print-object ((c missing-dependency) s) + (format s "~@<~A, required by ~A~@:>" + (call-next-method c nil) (missing-required-by c))) + +(defun sysdef-error (format &rest arguments) + (error 'formatted-system-definition-error :format-control + format :format-arguments arguments)) + +;;;; methods: components + +(defmethod print-object ((c missing-component) s) + (format s "~@<component ~S not found~ + ~@[ in ~A~]~@:>" + (missing-requires c) + (when (missing-parent c) + (component-name (missing-parent c))))) + +(defmethod print-object ((c missing-component-of-version) s) + (format s "~@<component ~S does not match version ~A~ + ~@[ in ~A~]~@:>" + (missing-requires c) + (missing-version c) + (when (missing-parent c) + (component-name (missing-parent c))))) + +(defmethod component-system ((component component)) + (aif (component-parent component) + (component-system it) + component)) + +(defvar *default-component-class* 'cl-source-file) + +(defun compute-module-components-by-name (module) + (let ((hash (module-components-by-name module))) + (clrhash hash) + (loop :for c :in (module-components module) + :for name = (component-name c) + :for previous = (gethash name (module-components-by-name module)) + :do + (when previous + (error 'duplicate-names :name name)) + :do (setf (gethash name (module-components-by-name module)) c)) + hash)) + +(defclass module (component) + ((components + :initform nil + :initarg :components + :accessor module-components) + (components-by-name + :initform (make-hash-table :test 'equal) + :accessor module-components-by-name) + ;; What to do if we can't satisfy a dependency of one of this module's + ;; components. This allows a limited form of conditional processing. + (if-component-dep-fails + :initform :fail + :initarg :if-component-dep-fails + :accessor module-if-component-dep-fails) + (default-component-class + :initform *default-component-class* + :initarg :default-component-class + :accessor module-default-component-class))) + +(defun component-parent-pathname (component) + ;; No default anymore (in particular, no *default-pathname-defaults*). + ;; If you force component to have a NULL pathname, you better arrange + ;; for any of its children to explicitly provide a proper absolute pathname + ;; wherever a pathname is actually wanted. + (let ((parent (component-parent component))) + (when parent + (component-pathname parent)))) + +(defmethod component-pathname ((component component)) + (if (slot-boundp component 'absolute-pathname) + (slot-value component 'absolute-pathname) + (let ((pathname + (merge-pathnames* + (component-relative-pathname component) + (component-parent-pathname component)))) + (unless (or (null pathname) (absolute-pathname-p pathname)) + (error "Invalid relative pathname ~S for component ~S" pathname component)) + (setf (slot-value component 'absolute-pathname) pathname) + pathname))) + +(defmethod component-property ((c component) property) + (cdr (assoc property (slot-value c 'properties) :test #'equal))) + +(defmethod (setf component-property) (new-value (c component) property) + (let ((a (assoc property (slot-value c 'properties) :test #'equal))) + (if a + (setf (cdr a) new-value) + (setf (slot-value c 'properties) + (acons property new-value (slot-value c 'properties))))) + new-value) + +(defclass system (module) + ((description :accessor system-description :initarg :description) + (long-description + :accessor system-long-description :initarg :long-description) + (author :accessor system-author :initarg :author) + (maintainer :accessor system-maintainer :initarg :maintainer) + (licence :accessor system-licence :initarg :licence + :accessor system-license :initarg :license) + (source-file :reader system-source-file :initarg :source-file + :writer %set-system-source-file))) + +;;;; ------------------------------------------------------------------------- +;;;; version-satisfies + +(defmethod version-satisfies ((c component) version) + (unless (and version (slot-boundp c 'version)) + (return-from version-satisfies t)) + (version-satisfies (component-version c) version)) + +(defmethod version-satisfies ((cver string) version) + (let ((x (mapcar #'parse-integer + (split-string cver :separator "."))) + (y (mapcar #'parse-integer + (split-string version :separator ".")))) + (labels ((bigger (x y) + (cond ((not y) t) + ((not x) nil) + ((> (car x) (car y)) t) + ((= (car x) (car y)) + (bigger (cdr x) (cdr y)))))) + (and (= (car x) (car y)) + (or (not (cdr y)) (bigger (cdr x) (cdr y))))))) + +;;;; ------------------------------------------------------------------------- +;;;; Finding systems + +(defun make-defined-systems-table () + (make-hash-table :test 'equal)) + +(defvar *defined-systems* (make-defined-systems-table) + "This is a hash table whose keys are strings, being the +names of the systems, and whose values are pairs, the first +element of which is a universal-time indicating when the +system definition was last updated, and the second element +of which is a system object.") + +(defun coerce-name (name) + (typecase name + (component (component-name name)) + (symbol (string-downcase (symbol-name name))) + (string name) + (t (sysdef-error "~@<invalid component designator ~A~@:>" name)))) + +(defun system-registered-p (name) + (gethash (coerce-name name) *defined-systems*)) + +(defun map-systems (fn) + "Apply `fn` to each defined system. + +`fn` should be a function of one argument. It will be +called with an object of type asdf:system." + (maphash (lambda (_ datum) + (declare (ignore _)) + (destructuring-bind (_ . def) datum + (declare (ignore _)) + (funcall fn def))) + *defined-systems*)) + +;;; for the sake of keeping things reasonably neat, we adopt a +;;; convention that functions in this list are prefixed SYSDEF- + +(defparameter *system-definition-search-functions* + '(sysdef-central-registry-search sysdef-source-registry-search)) + +(defun system-definition-pathname (system) + (let ((system-name (coerce-name system))) + (or + (some (lambda (x) (funcall x system-name)) + *system-definition-search-functions*) + (let ((system-pair (system-registered-p system-name))) + (and system-pair + (system-source-file (cdr system-pair))))))) + +(defvar *central-registry* nil +"A list of 'system directory designators' ASDF uses to find systems. + +A 'system directory designator' is a pathname or an expression +which evaluates to a pathname. For example: + + (setf asdf:*central-registry* + (list '*default-pathname-defaults* + #p\"/home/me/cl/systems/\" + #p\"/usr/share/common-lisp/systems/\")) + +This is for backward compatibilily. +Going forward, we recommend new users should be using the source-registry. +") + +(defun sysdef-central-registry-search (system) + (let ((name (coerce-name system)) + (to-remove nil) + (to-replace nil)) + (block nil + (unwind-protect + (dolist (dir *central-registry*) + (let ((defaults (eval dir))) + (when defaults + (cond ((directory-pathname-p defaults) + (let ((file (probe-asd name defaults))) + (when file + (return file)))) + (t + (restart-case + (let* ((*print-circle* nil) + (message + (format nil + "~@<While searching for system `~a`: `~a` evaluated ~ +to `~a` which is not a directory.~@:>" + system dir defaults))) + (error message)) + (remove-entry-from-registry () + :report "Remove entry from *central-registry* and continue" + (push dir to-remove)) + (coerce-entry-to-directory () + :report (lambda (s) + (format s "Coerce entry to ~a, replace ~a and continue." + (ensure-directory-pathname defaults) dir)) + (push (cons dir (ensure-directory-pathname defaults)) to-replace)))))))) + ;; cleanup + (dolist (dir to-remove) + (setf *central-registry* (remove dir *central-registry*))) + (dolist (pair to-replace) + (let* ((current (car pair)) + (new (cdr pair)) + (position (position current *central-registry*))) + (setf *central-registry* + (append (subseq *central-registry* 0 position) + (list new) + (subseq *central-registry* (1+ position)))))))))) + +(defun make-temporary-package () + (flet ((try (counter) + (ignore-errors + (make-package (format nil "~A~D" :asdf counter) + :use '(:cl :asdf))))) + (do* ((counter 0 (+ counter 1)) + (package (try counter) (try counter))) + (package package)))) + +(defun safe-file-write-date (pathname) + ;; If FILE-WRITE-DATE returns NIL, it's possible that + ;; the user or some other agent has deleted an input file. + ;; Also, generated files will not exist at the time planning is done + ;; and calls operation-done-p which calls safe-file-write-date. + ;; So it is very possible that we can't get a valid file-write-date, + ;; and we can survive and we will continue the planning + ;; as if the file were very old. + ;; (or should we treat the case in a different, special way?) + (or (and pathname (probe-file pathname) (file-write-date pathname)) + (progn + (when pathname + (warn "Missing FILE-WRITE-DATE for ~S: treating it as zero." + pathname)) + 0))) + +(defun find-system (name &optional (error-p t)) + (let* ((name (coerce-name name)) + (in-memory (system-registered-p name)) + (on-disk (system-definition-pathname name))) + (when (and on-disk + (or (not in-memory) + (< (car in-memory) (safe-file-write-date on-disk)))) + (let ((package (make-temporary-package))) + (unwind-protect + (handler-bind + ((error (lambda (condition) + (error 'load-system-definition-error + :name name :pathname on-disk + :condition condition)))) + (let ((*package* package)) + (asdf-message + "~&~@<; ~@;loading system definition from ~A into ~A~@:>~%" + on-disk *package*) + (load on-disk))) + (delete-package package)))) + (let ((in-memory (system-registered-p name))) + (if in-memory + (progn (when on-disk (setf (car in-memory) + (safe-file-write-date on-disk))) + (cdr in-memory)) + (when error-p (error 'missing-component :requires name)))))) + +(defun register-system (name system) + (asdf-message "~&~@<; ~@;registering ~A as ~A~@:>~%" system name) + (setf (gethash (coerce-name name) *defined-systems*) + (cons (get-universal-time) system))) + + +;;;; ------------------------------------------------------------------------- +;;;; Finding components + +(defmethod find-component ((base string) path) + (let ((s (find-system base nil))) + (and s (find-component s path)))) + +(defmethod find-component ((base symbol) path) + (cond + (base (find-component (coerce-name base) path)) + (path (find-component path nil)) + (t nil))) + +(defmethod find-component ((base cons) path) + (find-component (car base) (cons (cdr base) path))) + +(defmethod find-component ((module module) (name string)) + (when (slot-boundp module 'components-by-name) + (values (gethash name (module-components-by-name module))))) + +(defmethod find-component ((component component) (name symbol)) + (if name + (find-component component (string name)) + component)) + +(defmethod find-component ((module module) (name cons)) + (find-component (find-component module (car name)) (cdr name))) + + +;;; component subclasses + +(defclass source-file (component) + ((type :accessor source-file-explicit-type :initarg :type :initform nil))) + +(defclass cl-source-file (source-file) + ((type :initform "lisp"))) +(defclass c-source-file (source-file) + ((type :initform "c"))) +(defclass java-source-file (source-file) + ((type :initform "java"))) +(defclass static-file (source-file) ()) +(defclass doc-file (static-file) ()) +(defclass html-file (doc-file) + ((type :initform "html"))) + +(defmethod source-file-type ((component module) (s module)) + (declare (ignorable component s)) + :directory) +(defmethod source-file-type ((component source-file) (s module)) + (declare (ignorable s)) + (source-file-explicit-type component)) + +(defun merge-component-name-type (name &key type defaults) + ;; The defaults are required notably because they provide the default host + ;; to the below make-pathname, which may crucially matter to people using + ;; merge-pathnames with non-default hosts, e.g. for logical-pathnames. + ;; NOTE that the host and device slots will be taken from the defaults, + ;; but that should only matter if you either (a) use absolute pathnames, or + ;; (b) later merge relative pathnames with CL:MERGE-PATHNAMES instead of + ;; ASDF-UTILITIES:MERGE-PATHNAMES* + (etypecase name + (pathname + name) + (symbol + (merge-component-name-type (string-downcase name) :type type :defaults defaults)) + (string + (multiple-value-bind (relative path filename) + (component-name-to-pathname-components name (eq type :directory)) + (multiple-value-bind (name type) + (cond + ((or (eq type :directory) (null filename)) + (values nil nil)) + (type + (values filename type)) + (t + (split-name-type filename))) + (let* ((defaults (pathname (or defaults *default-pathname-defaults*))) + (host (pathname-host defaults)) + (device (pathname-device defaults))) + (make-pathname :directory `(,relative ,@path) + :name name :type type + :host host :device device))))))) + +(defmethod component-relative-pathname ((component component)) + (merge-component-name-type + (or (slot-value component 'relative-pathname) + (component-name component)) + :type (source-file-type component (component-system component)) + :defaults (component-parent-pathname component))) + +;;;; ------------------------------------------------------------------------- +;;;; Operations + +;;; one of these is instantiated whenever #'operate is called + +(defclass operation () + ( + ;; as of danb's 2003-03-16 commit e0d02781, :force can be: + ;; T to force the inside of existing system, + ;; but not recurse to other systems we depend on. + ;; :ALL (or any other atom) to force all systems + ;; including other systems we depend on. + ;; (SYSTEM1 SYSTEM2 ... SYSTEMN) + ;; to force systems named in a given list + ;; (but this feature never worked before ASDF 1.700 and is cerror'ed out.) + (forced :initform nil :initarg :force :accessor operation-forced) + (original-initargs :initform nil :initarg :original-initargs + :accessor operation-original-initargs) + (visited-nodes :initform (make-hash-table :test 'equal) :accessor operation-visited-nodes) + (visiting-nodes :initform (make-hash-table :test 'equal) :accessor operation-visiting-nodes) + (parent :initform nil :initarg :parent :accessor operation-parent))) + +(defmethod print-object ((o operation) stream) + (print-unreadable-object (o stream :type t :identity t) + (ignore-errors + (prin1 (operation-original-initargs o) stream)))) + +(defmethod shared-initialize :after ((operation operation) slot-names + &key force + &allow-other-keys) + (declare (ignorable operation slot-names force)) + ;; empty method to disable initarg validity checking + (values)) + +(defun node-for (o c) + (cons (class-name (class-of o)) c)) + +(defmethod operation-ancestor ((operation operation)) + (aif (operation-parent operation) + (operation-ancestor it) + operation)) + + +(defun make-sub-operation (c o dep-c dep-o) + "C is a component, O is an operation, DEP-C is another +component, and DEP-O, confusingly enough, is an operation +class specifier, not an operation." + (let* ((args (copy-list (operation-original-initargs o))) + (force-p (getf args :force))) + ;; note explicit comparison with T: any other non-NIL force value + ;; (e.g. :recursive) will pass through + (cond ((and (null (component-parent c)) + (null (component-parent dep-c)) + (not (eql c dep-c))) + (when (eql force-p t) + (setf (getf args :force) nil)) + (apply #'make-instance dep-o + :parent o + :original-initargs args args)) + ((subtypep (type-of o) dep-o) + o) + (t + (apply #'make-instance dep-o + :parent o :original-initargs args args))))) + + +(defmethod visit-component ((o operation) (c component) data) + (unless (component-visited-p o c) + (setf (gethash (node-for o c) + (operation-visited-nodes (operation-ancestor o))) + (cons t data)))) + +(defmethod component-visited-p ((o operation) (c component)) + (gethash (node-for o c) + (operation-visited-nodes (operation-ancestor o)))) + +(defmethod (setf visiting-component) (new-value operation component) + ;; MCL complains about unused lexical variables + (declare (ignorable operation component)) + new-value) + +(defmethod (setf visiting-component) (new-value (o operation) (c component)) + (let ((node (node-for o c)) + (a (operation-ancestor o))) + (if new-value + (setf (gethash node (operation-visiting-nodes a)) t) + (remhash node (operation-visiting-nodes a))) + new-value)) + +(defmethod component-visiting-p ((o operation) (c component)) + (let ((node (node-for o c))) + (gethash node (operation-visiting-nodes (operation-ancestor o))))) + +(defmethod component-depends-on ((op-spec symbol) (c component)) + (component-depends-on (make-instance op-spec) c)) + +(defmethod component-depends-on ((o operation) (c component)) + (cdr (assoc (class-name (class-of o)) + (component-in-order-to c)))) + +(defmethod component-self-dependencies ((o operation) (c component)) + (let ((all-deps (component-depends-on o c))) + (remove-if-not (lambda (x) + (member (component-name c) (cdr x) :test #'string=)) + all-deps))) + +(defmethod input-files ((operation operation) (c component)) + (let ((parent (component-parent c)) + (self-deps (component-self-dependencies operation c))) + (if self-deps + (mapcan (lambda (dep) + (destructuring-bind (op name) dep + (output-files (make-instance op) + (find-component parent name)))) + self-deps) + ;; no previous operations needed? I guess we work with the + ;; original source file, then + (list (component-pathname c))))) + +(defmethod input-files ((operation operation) (c module)) + (declare (ignorable operation c)) + nil) + +(defmethod component-operation-time (o c) + (gethash (type-of o) (component-operation-times c))) + +(defmethod operation-done-p ((o operation) (c component)) + (let ((out-files (output-files o c)) + (in-files (input-files o c)) + (op-time (component-operation-time o c))) + (flet ((earliest-out () + (reduce #'min (mapcar #'safe-file-write-date out-files))) + (latest-in () + (reduce #'max (mapcar #'safe-file-write-date in-files)))) + (cond + ((and (not in-files) (not out-files)) + ;; arbitrary decision: an operation that uses nothing to + ;; produce nothing probably isn't doing much. + ;; e.g. operations on systems, modules that have no immediate action, + ;; but are only meaningful through traversed dependencies + t) + ((not out-files) + ;; an operation without output-files is probably meant + ;; for its side-effects in the current image, + ;; assumed to be idem-potent, + ;; e.g. LOAD-OP or LOAD-SOURCE-OP of some CL-SOURCE-FILE. + (and op-time (>= op-time (latest-in)))) + ((not in-files) + ;; an operation without output-files and no input-files + ;; is probably meant for its side-effects on the file-system, + ;; assumed to have to be done everytime. + ;; (I don't think there is any such case in ASDF unless extended) + nil) + (t + ;; an operation with both input and output files is assumed + ;; as computing the latter from the former, + ;; assumed to have been done if the latter are all older + ;; than the former. + ;; e.g. COMPILE-OP of some CL-SOURCE-FILE. + ;; We use >= instead of > to play nice with generated files. + ;; This opens a race condition if an input file is changed + ;; after the output is created but within the same second + ;; of filesystem time; but the same race condition exists + ;; whenever the computation from input to output takes more + ;; than one second of filesystem time (or just crosses the + ;; second). So that's cool. + (and + (every #'probe-file in-files) + (every #'probe-file out-files) + (>= (earliest-out) (latest-in)))))))) + + + +;;; For 1.700 I've done my best to refactor TRAVERSE +;;; by splitting it up in a bunch of functions, +;;; so as to improve the collection and use-detection algorithm. --fare +;;; The protocol is as follows: we pass around operation, dependency, +;;; bunch of other stuff, and a force argument. Return a force flag. +;;; The returned flag is T if anything has changed that requires a rebuild. +;;; The force argument is a list of components that will require a rebuild +;;; if the flag is T, at which point whoever returns the flag has to +;;; mark them all as forced, and whoever recurses again can use a NIL list +;;; as a further argument. + +(defvar *forcing* nil + "This dynamically-bound variable is used to force operations in +recursive calls to traverse.") + +(defgeneric do-traverse (operation component collect)) + +(defun %do-one-dep (operation c collect required-op required-c required-v) + ;; collects a partial plan that results from performing required-op + ;; on required-c, possibly with a required-vERSION + (let* ((dep-c (or (let ((d (find-component (component-parent c) required-c))) + (and d (version-satisfies d required-v) d)) + (if required-v + (error 'missing-dependency-of-version + :required-by c + :version required-v + :requires required-c) + (error 'missing-dependency + :required-by c + :requires required-c)))) + (op (make-sub-operation c operation dep-c required-op))) + (do-traverse op dep-c collect))) + +(defun do-one-dep (operation c collect required-op required-c required-v) + ;; this function is a thin, error-handling wrapper around + ;; %do-one-dep. Returns a partial plan per that function. + (loop + (restart-case + (return (%do-one-dep operation c collect + required-op required-c required-v)) + (retry () + :report (lambda (s) + (format s "~@<Retry loading component ~S.~@:>" + required-c)) + :test + (lambda (c) + #| + (print (list :c1 c (typep c 'missing-dependency))) + (when (typep c 'missing-dependency) + (print (list :c2 (missing-requires c) required-c + (equalp (missing-requires c) + required-c)))) + |# + (or (null c) + (and (typep c 'missing-dependency) + (equalp (missing-requires c) + required-c)))))))) + +(defun do-dep (operation c collect op dep) + ;; type of arguments uncertain: + ;; op seems to at least potentially be a symbol, rather than an operation + ;; dep is a list of component names + (cond ((eq op 'feature) + (if (member (car dep) *features*) + nil + (error 'missing-dependency + :required-by c + :requires (car dep)))) + (t + (let ((flag nil)) + (flet ((dep (op comp ver) + (when (do-one-dep operation c collect + op comp ver) + (setf flag t)))) + (dolist (d dep) + (if (atom d) + (dep op d nil) + ;; structured dependencies --- this parses keywords + ;; the keywords could be broken out and cleanly (extensibly) + ;; processed by EQL methods + (cond ((eq :version (first d)) + ;; https://bugs.launchpad.net/asdf/+bug/527788 + (dep op (second d) (third d))) + ;; This particular subform is not documented and + ;; has always been broken in the past. + ;; Therefore no one uses it, and I'm cerroring it out, + ;; after fixing it + ;; See https://bugs.launchpad.net/asdf/+bug/518467 + ((eq :feature (first d)) + (cerror "Continue nonetheless." + "Congratulations, you're the first ever user of FEATURE dependencies! Please contact the asdf-devel mailing-list.") + (when (find (second d) *features* :test 'string-equal) + (dep op (third d) nil))) + (t + (error "Bad dependency ~a. Dependencies must be (:version <version>), (:feature <feature> [version]), or a name" d)))))) + flag)))) + +(defun do-collect (collect x) + (funcall collect x)) + +(defmethod do-traverse ((operation operation) (c component) collect) + (let ((flag nil)) ;; return value: must we rebuild this and its dependencies? + (labels + ((update-flag (x) + (when x + (setf flag t))) + (dep (op comp) + (update-flag (do-dep operation c collect op comp)))) + ;; Have we been visited yet? If so, just process the result. + (aif (component-visited-p operation c) + (progn + (update-flag (cdr it)) + (return-from do-traverse flag))) + ;; dependencies + (when (component-visiting-p operation c) + (error 'circular-dependency :components (list c))) + (setf (visiting-component operation c) t) + (unwind-protect + (progn + ;; first we check and do all the dependencies for the module. + ;; Operations planned in this loop will show up + ;; in the results, and are consumed below. + (let ((*forcing* nil)) + ;; upstream dependencies are never forced to happen just because + ;; the things that depend on them are.... + (loop + :for (required-op . deps) :in (component-depends-on operation c) + :do (dep required-op deps))) + ;; constituent bits + (let ((module-ops + (when (typep c 'module) + (let ((at-least-one nil) + ;; This is set based on the results of the + ;; dependencies and whether we are in the + ;; context of a *forcing* call... + ;; inter-system dependencies do NOT trigger + ;; building components + (*forcing* + (or *forcing* + (and flag (not (typep c 'system))))) + (error nil)) + (while-collecting (internal-collect) + (dolist (kid (module-components c)) + (handler-case + (update-flag + (do-traverse operation kid #'internal-collect)) + (missing-dependency (condition) + (when (eq (module-if-component-dep-fails c) + :fail) + (error condition)) + (setf error condition)) + (:no-error (c) + (declare (ignore c)) + (setf at-least-one t)))) + (when (and (eq (module-if-component-dep-fails c) + :try-next) + (not at-least-one)) + (error error))))))) + (update-flag + (or + *forcing* + (not (operation-done-p operation c)) + ;; For sub-operations, check whether + ;; the original ancestor operation was forced, + ;; or names us amongst an explicit list of things to force... + ;; except that this check doesn't distinguish + ;; between all the things with a given name. Sigh. + ;; BROKEN! + (let ((f (operation-forced + (operation-ancestor operation)))) + (and f (or (not (consp f)) ;; T or :ALL + (and (typep c 'system) ;; list of names of systems to force + (member (component-name c) f + :test #'string=))))))) + (when flag + (let ((do-first (cdr (assoc (class-name (class-of operation)) + (component-do-first c))))) + (loop :for (required-op . deps) :in do-first + :do (do-dep operation c collect required-op deps))) + (do-collect collect (vector module-ops)) + (do-collect collect (cons operation c))))) + (setf (visiting-component operation c) nil))) + (visit-component operation c flag) + flag)) + +(defmethod traverse ((operation operation) (c component)) + ;; cerror'ing a feature that seems to have NEVER EVER worked + ;; ever since danb created it in his 2003-03-16 commit e0d02781. + ;; It was both fixed and disabled in the 1.700 rewrite. + (when (consp (operation-forced operation)) + (cerror "Continue nonetheless." + "Congratulations, you're the first ever user of the :force (list of system names) feature! Please contact the asdf-devel mailing-list to collect a cookie.") + (setf (operation-forced operation) + (mapcar #'coerce-name (operation-forced operation)))) + (flatten-tree + (while-collecting (collect) + (do-traverse operation c #'collect)))) + +(defun flatten-tree (l) + ;; You collected things into a list. + ;; Most elements are just things to collect again. + ;; A (simple-vector 1) indicate that you should recurse into its contents. + ;; This way, in two passes (rather than N being the depth of the tree), + ;; you can collect things with marginally constant-time append, + ;; achieving linear time collection instead of quadratic time. + (while-collecting (c) + (labels ((r (x) + (if (typep x '(simple-vector 1)) + (r* (svref x 0)) + (c x))) + (r* (l) + (dolist (x l) (r x)))) + (r* l)))) + +(defmethod perform ((operation operation) (c source-file)) + (sysdef-error + "~@<required method PERFORM not implemented ~ + for operation ~A, component ~A~@:>" + (class-of operation) (class-of c))) + +(defmethod perform ((operation operation) (c module)) + (declare (ignorable operation c)) + nil) + +(defmethod explain ((operation operation) (component component)) + (asdf-message "~&;;; ~A on ~A~%" operation component)) + +;;;; ------------------------------------------------------------------------- +;;;; compile-op + +(defclass compile-op (operation) + ((proclamations :initarg :proclamations :accessor compile-op-proclamations :initform nil) + (on-warnings :initarg :on-warnings :accessor operation-on-warnings + :initform *compile-file-warnings-behaviour*) + (on-failure :initarg :on-failure :accessor operation-on-failure + :initform *compile-file-failure-behaviour*) + (flags :initarg :flags :accessor compile-op-flags + :initform #-ecl nil #+ecl '(:system-p t)))) + +(defmethod perform :before ((operation compile-op) (c source-file)) + (map nil #'ensure-directories-exist (output-files operation c))) + +#+ecl +(defmethod perform :after ((o compile-op) (c cl-source-file)) + ;; Note how we use OUTPUT-FILES to find the binary locations + ;; This allows the user to override the names. + (let* ((files (output-files o c)) + (object (first files)) + (fasl (second files))) + (c:build-fasl fasl :lisp-files (list object)))) + +(defmethod perform :after ((operation operation) (c component)) + (setf (gethash (type-of operation) (component-operation-times c)) + (get-universal-time))) + +;;; perform is required to check output-files to find out where to put +;;; its answers, in case it has been overridden for site policy +(defmethod perform ((operation compile-op) (c cl-source-file)) + #-:broken-fasl-loader + (let ((source-file (component-pathname c)) + (output-file (car (output-files operation c)))) + (multiple-value-bind (output warnings-p failure-p) + (apply #'compile-file source-file :output-file output-file + (compile-op-flags operation)) + (when warnings-p + (case (operation-on-warnings operation) + (:warn (warn + "~@<COMPILE-FILE warned while performing ~A on ~A.~@:>" + operation c)) + (:error (error 'compile-warned :component c :operation operation)) + (:ignore nil))) + (when failure-p + (case (operation-on-failure operation) + (:warn (warn + "~@<COMPILE-FILE failed while performing ~A on ~A.~@:>" + operation c)) + (:error (error 'compile-failed :component c :operation operation)) + (:ignore nil))) + (unless output + (error 'compile-error :component c :operation operation))))) + +(defmethod output-files ((operation compile-op) (c cl-source-file)) + (declare (ignorable operation)) + (let ((p (lispize-pathname (component-pathname c)))) + #-:broken-fasl-loader + (list (compile-file-pathname p #+ecl :type #+ecl :object) + #+ecl (compile-file-pathname p :type :fasl)) + #+:broken-fasl-loader (list p))) + +(defmethod perform ((operation compile-op) (c static-file)) + (declare (ignorable operation c)) + nil) + +(defmethod output-files ((operation compile-op) (c static-file)) + (declare (ignorable operation c)) + nil) + +(defmethod input-files ((operation compile-op) (c static-file)) + (declare (ignorable operation c)) + nil) + + +;;;; ------------------------------------------------------------------------- +;;;; load-op + +(defclass basic-load-op (operation) ()) + +(defclass load-op (basic-load-op) ()) + +(defmethod perform ((o load-op) (c cl-source-file)) + #-ecl (mapcar #'load (input-files o c)) + #+ecl (loop :for i :in (input-files o c) + :unless (string= (pathname-type i) "fas") + :collect (let ((output (compile-file-pathname (lispize-pathname i)))) + (load output)))) + +(defmethod perform-with-restarts (operation component) + (perform operation component)) + +(defmethod perform-with-restarts ((o load-op) (c cl-source-file)) + (declare (ignorable o)) + (loop :with state = :initial + :until (or (eq state :success) + (eq state :failure)) :do + (case state + (:recompiled + (setf state :failure) + (call-next-method) + (setf state :success)) + (:failed-load + (setf state :recompiled) + (perform (make-instance 'compile-op) c)) + (t + (with-simple-restart + (try-recompiling "Recompile ~a and try loading it again" + (component-name c)) + (setf state :failed-load) + (call-next-method) + (setf state :success)))))) + +(defmethod perform-with-restarts ((o compile-op) (c cl-source-file)) + (loop :with state = :initial + :until (or (eq state :success) + (eq state :failure)) :do + (case state + (:recompiled + (setf state :failure) + (call-next-method) + (setf state :success)) + (:failed-compile + (setf state :recompiled) + (perform-with-restarts o c)) + (t + (with-simple-restart + (try-recompiling "Try recompiling ~a" + (component-name c)) + (setf state :failed-compile) + (call-next-method) + (setf state :success)))))) + +(defmethod perform ((operation load-op) (c static-file)) + (declare (ignorable operation c)) + nil) + +(defmethod operation-done-p ((operation load-op) (c static-file)) + (declare (ignorable operation c)) + t) + +(defmethod output-files ((operation operation) (c component)) + (declare (ignorable operation c)) + nil) + +(defmethod component-depends-on ((operation load-op) (c component)) + (declare (ignorable operation)) + (cons (list 'compile-op (component-name c)) + (call-next-method))) + +;;;; ------------------------------------------------------------------------- +;;;; load-source-op + +(defclass load-source-op (basic-load-op) ()) + +(defmethod perform ((o load-source-op) (c cl-source-file)) + (declare (ignorable o)) + (let ((source (component-pathname c))) + (setf (component-property c 'last-loaded-as-source) + (and (load source) + (get-universal-time))))) + +(defmethod perform ((operation load-source-op) (c static-file)) + (declare (ignorable operation c)) + nil) + +(defmethod output-files ((operation load-source-op) (c component)) + (declare (ignorable operation c)) + nil) + +;;; FIXME: we simply copy load-op's dependencies. this is Just Not Right. +(defmethod component-depends-on ((o load-source-op) (c component)) + (declare (ignorable o)) + (let ((what-would-load-op-do (cdr (assoc 'load-op + (component-in-order-to c))))) + (mapcar (lambda (dep) + (if (eq (car dep) 'load-op) + (cons 'load-source-op (cdr dep)) + dep)) + what-would-load-op-do))) + +(defmethod operation-done-p ((o load-source-op) (c source-file)) + (declare (ignorable o)) + (if (or (not (component-property c 'last-loaded-as-source)) + (> (safe-file-write-date (component-pathname c)) + (component-property c 'last-loaded-as-source))) + nil t)) + + +;;;; ------------------------------------------------------------------------- +;;;; test-op + +(defclass test-op (operation) ()) + +(defmethod perform ((operation test-op) (c component)) + (declare (ignorable operation c)) + nil) + +(defmethod operation-done-p ((operation test-op) (c system)) + "Testing a system is _never_ done." + (declare (ignorable operation c)) + nil) + +(defmethod component-depends-on :around ((o test-op) (c system)) + (declare (ignorable o)) + (cons `(load-op ,(component-name c)) (call-next-method))) + + +;;;; ------------------------------------------------------------------------- +;;;; Invoking Operations + +(defgeneric operate (operation-class system &key &allow-other-keys)) + +(defmethod operate (operation-class system &rest args + &key ((:verbose *asdf-verbose*) *asdf-verbose*) version force + &allow-other-keys) + (declare (ignore force)) + (let* ((*package* *package*) + (*readtable* *readtable*) + (op (apply #'make-instance operation-class + :original-initargs args + args)) + (*verbose-out* (if *asdf-verbose* *standard-output* (make-broadcast-stream))) + (system (if (typep system 'component) system (find-system system)))) + (unless (version-satisfies system version) + (error 'missing-component-of-version :requires system :version version)) + (let ((steps (traverse op system))) + (with-compilation-unit () + (loop :for (op . component) :in steps :do + (loop + (restart-case + (progn + (perform-with-restarts op component) + (return)) + (retry () + :report + (lambda (s) + (format s "~@<Retry performing ~S on ~S.~@:>" + op component))) + (accept () + :report + (lambda (s) + (format s "~@<Continue, treating ~S on ~S as ~ + having been successful.~@:>" + op component)) + (setf (gethash (type-of op) + (component-operation-times component)) + (get-universal-time)) + (return))))))) + op)) + +(defun oos (operation-class system &rest args &key force verbose version + &allow-other-keys) + (declare (ignore force verbose version)) + (apply #'operate operation-class system args)) + +(let ((operate-docstring + "Operate does three things: + +1. It creates an instance of `operation-class` using any keyword parameters +as initargs. +2. It finds the asdf-system specified by `system` (possibly loading +it from disk). +3. It then calls `traverse` with the operation and system as arguments + +The traverse operation is wrapped in `with-compilation-unit` and error +handling code. If a `version` argument is supplied, then operate also +ensures that the system found satisfies it using the `version-satisfies` +method. + +Note that dependencies may cause the operation to invoke other +operations on the system or its components: the new operations will be +created with the same initargs as the original one. +")) + (setf (documentation 'oos 'function) + (format nil + "Short for _operate on system_ and an alias for the OPERATE function. ~&~&~a" + operate-docstring)) + (setf (documentation 'operate 'function) + operate-docstring)) + +(defun load-system (system &rest args &key force verbose version + &allow-other-keys) + "Shorthand for `(operate 'asdf:load-op system)`. See OPERATE for +details." + (declare (ignore force verbose version)) + (apply #'operate 'load-op system args)) + +(defun compile-system (system &rest args &key force verbose version + &allow-other-keys) + "Shorthand for `(operate 'asdf:compile-op system)`. See OPERATE +for details." + (declare (ignore force verbose version)) + (apply #'operate 'compile-op system args)) + +(defun test-system (system &rest args &key force verbose version + &allow-other-keys) + "Shorthand for `(operate 'asdf:test-op system)`. See OPERATE for +details." + (declare (ignore force verbose version)) + (apply #'operate 'test-op system args)) + +;;;; ------------------------------------------------------------------------- +;;;; Defsystem + +(defun determine-system-pathname (pathname pathname-supplied-p) + ;; called from the defsystem macro. + ;; the pathname of a system is either + ;; 1. the one supplied, + ;; 2. derived from the *load-truename* (see below), or + ;; 3. taken from *default-pathname-defaults* + ;; + ;; if using *load-truename*, then we also deal with whether or not + ;; to resolve symbolic links. If not resolving symlinks, then we use + ;; *load-pathname* instead of *load-truename* since in some + ;; implementations, the latter has *already resolved it. + (let ((file-pathname + (when (or *load-pathname* *compile-file-pathname*) + (pathname-directory-pathname + (if *resolve-symlinks* + (resolve-symlinks (or *load-truename* *compile-file-truename*)) + *load-pathname*))))) + (or (and pathname-supplied-p (merge-pathnames* pathname file-pathname)) + file-pathname + (current-directory)))) + +(defmacro defsystem (name &body options) + (destructuring-bind (&key (pathname nil pathname-arg-p) (class 'system) + defsystem-depends-on &allow-other-keys) + options + (let ((component-options (remove-keys '(:defsystem-depends-on :class) options))) + `(progn + ;; system must be registered before we parse the body, otherwise + ;; we recur when trying to find an existing system of the same name + ;; to reuse options (e.g. pathname) from + ,@(loop :for system :in defsystem-depends-on + :collect `(load-system ,system)) + (let ((s (system-registered-p ',name))) + (cond ((and s (eq (type-of (cdr s)) ',class)) + (setf (car s) (get-universal-time))) + (s + (change-class (cdr s) ',class)) + (t + (register-system (quote ,name) + (make-instance ',class :name ',name)))) + (%set-system-source-file *load-truename* + (cdr (system-registered-p ',name)))) + (parse-component-form + nil (list* + :module (coerce-name ',name) + :pathname + ,(determine-system-pathname pathname pathname-arg-p) + ',component-options)))))) + + +(defun class-for-type (parent type) + (let* ((extra-symbols (list (find-symbol (symbol-name type) *package*) + (find-symbol (symbol-name type) + (load-time-value + (package-name :asdf))))) + (class (dolist (symbol (if (keywordp type) + extra-symbols + (cons type extra-symbols))) + (when (and symbol + (find-class symbol nil) + (subtypep symbol 'component)) + (return (find-class symbol)))))) + (or class + (and (eq type :file) + (or (module-default-component-class parent) + (find-class 'cl-source-file))) + (sysdef-error "~@<don't recognize component type ~A~@:>" type)))) + +(defun maybe-add-tree (tree op1 op2 c) + "Add the node C at /OP1/OP2 in TREE, unless it's there already. +Returns the new tree (which probably shares structure with the old one)" + (let ((first-op-tree (assoc op1 tree))) + (if first-op-tree + (progn + (aif (assoc op2 (cdr first-op-tree)) + (if (find c (cdr it)) + nil + (setf (cdr it) (cons c (cdr it)))) + (setf (cdr first-op-tree) + (acons op2 (list c) (cdr first-op-tree)))) + tree) + (acons op1 (list (list op2 c)) tree)))) + +(defun union-of-dependencies (&rest deps) + (let ((new-tree nil)) + (dolist (dep deps) + (dolist (op-tree dep) + (dolist (op (cdr op-tree)) + (dolist (c (cdr op)) + (setf new-tree + (maybe-add-tree new-tree (car op-tree) (car op) c)))))) + new-tree)) + + +(defvar *serial-depends-on* nil) + +(defun sysdef-error-component (msg type name value) + (sysdef-error (concatenate 'string msg + "~&The value specified for ~(~A~) ~A is ~S") + type name value)) + +(defun check-component-input (type name weakly-depends-on + depends-on components in-order-to) + "A partial test of the values of a component." + (unless (listp depends-on) + (sysdef-error-component ":depends-on must be a list." + type name depends-on)) + (unless (listp weakly-depends-on) + (sysdef-error-component ":weakly-depends-on must be a list." + type name weakly-depends-on)) + (unless (listp components) + (sysdef-error-component ":components must be NIL or a list of components." + type name components)) + (unless (and (listp in-order-to) (listp (car in-order-to))) + (sysdef-error-component ":in-order-to must be NIL or a list of components." + type name in-order-to))) + +(defun %remove-component-inline-methods (component) + (dolist (name +asdf-methods+) + (map () + ;; this is inefficient as most of the stored + ;; methods will not be for this particular gf + ;; But this is hardly performance-critical + (lambda (m) + (remove-method (symbol-function name) m)) + (component-inline-methods component))) + ;; clear methods, then add the new ones + (setf (component-inline-methods component) nil)) + +(defun %define-component-inline-methods (ret rest) + (dolist (name +asdf-methods+) + (let ((keyword (intern (symbol-name name) :keyword))) + (loop :for data = rest :then (cddr data) + :for key = (first data) + :for value = (second data) + :while data + :when (eq key keyword) :do + (destructuring-bind (op qual (o c) &body body) value + (pushnew + (eval `(defmethod ,name ,qual ((,o ,op) (,c (eql ,ret))) + ,@body)) + (component-inline-methods ret))))))) + +(defun %refresh-component-inline-methods (component rest) + (%remove-component-inline-methods component) + (%define-component-inline-methods component rest)) + +(defun parse-component-form (parent options) + (destructuring-bind + (type name &rest rest &key + ;; the following list of keywords is reproduced below in the + ;; remove-keys form. important to keep them in sync + components pathname default-component-class + perform explain output-files operation-done-p + weakly-depends-on + depends-on serial in-order-to + ;; list ends + &allow-other-keys) options + (declare (ignorable perform explain output-files operation-done-p)) + (check-component-input type name weakly-depends-on depends-on components in-order-to) + + (when (and parent + (find-component parent name) + ;; ignore the same object when rereading the defsystem + (not + (typep (find-component parent name) + (class-for-type parent type)))) + (error 'duplicate-names :name name)) + + (let* ((other-args (remove-keys + '(components pathname default-component-class + perform explain output-files operation-done-p + weakly-depends-on + depends-on serial in-order-to) + rest)) + (ret + (or (find-component parent name) + (make-instance (class-for-type parent type))))) + (when weakly-depends-on + (appendf depends-on (remove-if (complement #'find-system) weakly-depends-on))) + (when *serial-depends-on* + (push *serial-depends-on* depends-on)) + (apply #'reinitialize-instance ret + :name (coerce-name name) + :pathname pathname + :parent parent + other-args) + (component-pathname ret) ; eagerly compute the absolute pathname + (when (typep ret 'module) + (setf (module-default-component-class ret) + (or default-component-class + (and (typep parent 'module) + (module-default-component-class parent)))) + (let ((*serial-depends-on* nil)) + (setf (module-components ret) + (loop + :for c-form :in components + :for c = (parse-component-form ret c-form) + :for name = (component-name c) + :collect c + :when serial :do (setf *serial-depends-on* name)))) + (compute-module-components-by-name ret)) + + (setf (component-load-dependencies ret) depends-on) ;; Used by POIU + + (setf (component-in-order-to ret) + (union-of-dependencies + in-order-to + `((compile-op (compile-op ,@depends-on)) + (load-op (load-op ,@depends-on))))) + (setf (component-do-first ret) `((compile-op (load-op ,@depends-on)))) + + (%refresh-component-inline-methods ret rest) + ret))) + +;;;; --------------------------------------------------------------------------- +;;;; run-shell-command +;;;; +;;;; run-shell-command functions for other lisp implementations will be +;;;; gratefully accepted, if they do the same thing. +;;;; If the docstring is ambiguous, send a bug report. +;;;; +;;;; We probably should move this functionality to its own system and deprecate +;;;; use of it from the asdf package. However, this would break unspecified +;;;; existing software, so until a clear alternative exists, we can't deprecate +;;;; it, and even after it's been deprecated, we will support it for a few +;;;; years so everyone has time to migrate away from it. -- fare 2009-12-01 + +(defun run-shell-command (control-string &rest args) + "Interpolate `args` into `control-string` as if by `format`, and +synchronously execute the result using a Bourne-compatible shell, with +output to `*verbose-out*`. Returns the shell's exit code." + (let ((command (apply #'format nil control-string args))) + (asdf-message "; $ ~A~%" command) + + #+abcl + (ext:run-shell-command command :output *verbose-out*) + + #+allegro + ;; will this fail if command has embedded quotes - it seems to work + (multiple-value-bind (stdout stderr exit-code) + (excl.osi:command-output + (format nil "~a -c \"~a\"" + #+mswindows "sh" #-mswindows "/bin/sh" command) + :input nil :whole nil + #+mswindows :show-window #+mswindows :hide) + (format *verbose-out* "~{~&; ~a~%~}~%" stderr) + (format *verbose-out* "~{~&; ~a~%~}~%" stdout) + exit-code) + + #+clisp ;XXX not exactly *verbose-out*, I know + (ext:run-shell-command command :output :terminal :wait t) + + #+clozure + (nth-value 1 + (ccl:external-process-status + (ccl:run-program "/bin/sh" (list "-c" command) + :input nil :output *verbose-out* + :wait t))) + + #+ecl ;; courtesy of Juan Jose Garcia Ripoll + (si:system command) + + #+gcl + (lisp:system command) + + #+lispworks + (system:call-system-showing-output + command + :shell-type "/bin/sh" + :show-cmd nil + :prefix "" + :output-stream *verbose-out*) + + #+sbcl + (sb-ext:process-exit-code + (apply #'sb-ext:run-program + #+win32 "sh" #-win32 "/bin/sh" + (list "-c" command) + :input nil :output *verbose-out* + #+win32 '(:search t) #-win32 nil)) + + #+(or cmu scl) + (ext:process-exit-code + (ext:run-program + "/bin/sh" + (list "-c" command) + :input nil :output *verbose-out*)) + + #-(or abcl allegro clisp clozure cmu ecl gcl lispworks sbcl scl) + (error "RUN-SHELL-COMMAND not implemented for this Lisp"))) + +;;;; --------------------------------------------------------------------------- +;;;; system-relative-pathname + +(defmethod system-source-file ((system-name string)) + (system-source-file (find-system system-name))) +(defmethod system-source-file ((system-name symbol)) + (system-source-file (find-system system-name))) + +(defun system-source-directory (system-designator) + "Return a pathname object corresponding to the +directory in which the system specification (.asd file) is +located." + (make-pathname :name nil + :type nil + :defaults (system-source-file system-designator))) + +(defun relativize-directory (directory) + (cond + ((stringp directory) + (list :relative directory)) + ((eq (car directory) :absolute) + (cons :relative (cdr directory))) + (t + directory))) + +(defun relativize-pathname-directory (pathspec) + (let ((p (pathname pathspec))) + (make-pathname + :directory (relativize-directory (pathname-directory p)) + :defaults p))) + +(defun system-relative-pathname (system name &key type) + (merge-pathnames* + (merge-component-name-type name :type type) + (system-source-directory system))) + + +;;; --------------------------------------------------------------------------- +;;; implementation-identifier +;;; +;;; produce a string to identify current implementation. +;;; Initially stolen from SLIME's SWANK, hacked since. + +(defparameter *implementation-features* + '(:allegro :lispworks :sbcl :clozure :digitool :cmu :clisp + :corman :cormanlisp :armedbear :gcl :ecl :scl)) + +(defparameter *os-features* + '((:windows :mswindows :win32 :mingw32) + (:solaris :sunos) + :linux ;; for GCL at least, must appear before :bsd. + :macosx :darwin :apple + :freebsd :netbsd :openbsd :bsd + :unix)) + +(defparameter *architecture-features* + '((:x86-64 :amd64 :x86_64 :x8664-target) + (:x86 :i686 :i586 :pentium3 :i486 :i386 :pc386 :iapx386 :x8632-target :pentium4) + :hppa64 :hppa :ppc64 (:ppc32 :ppc :powerpc) :sparc64 :sparc)) + +(defun lisp-version-string () + (let ((s (lisp-implementation-version))) + (declare (ignorable s)) + #+allegro (format nil + "~A~A~A~A" + excl::*common-lisp-version-number* + ;; ANSI vs MoDeRn - thanks to Robert Goldman and Charley Cox + (if (eq excl:*current-case-mode* + :case-sensitive-lower) "M" "A") + ;; Note if not using International ACL + ;; see http://www.franz.com/support/documentation/8.1/doc/operators/excl/ics-target-case.htm + (excl:ics-target-case + (:-ics "8") + (:+ics "")) + (if (member :64bit *features*) "-64bit" "")) + #+clisp (subseq s 0 (position #\space s)) + #+clozure (format nil "~d.~d-fasl~d" + ccl::*openmcl-major-version* + ccl::*openmcl-minor-version* + (logand ccl::fasl-version #xFF)) + #+cmu (substitute #\- #\/ s) + #+digitool (subseq s 8) + #+ecl (format nil "~A~@[-~A~]" s + (let ((vcs-id (ext:lisp-implementation-vcs-id))) + (when (>= (length vcs-id) 8) + (subseq vcs-id 0 8)))) + #+gcl (subseq s (1+ (position #\space s))) + #+lispworks (format nil "~A~@[~A~]" s + (when (member :lispworks-64bit *features*) "-64bit")) + ;; #+sbcl (format nil "~a-fasl~d" s sb-fasl:+fasl-file-version+) ; fasl-f-v is redundant + #+(or armedbear cormanlisp mcl sbcl scl) s + #-(or allegro armedbear clisp clozure cmu cormanlisp digitool + ecl gcl lispworks mcl sbcl scl) s)) + +(defun first-feature (features) + (labels + ((fp (thing) + (etypecase thing + (symbol + (let ((feature (find thing *features*))) + (when feature (return-from fp feature)))) + ;; allows features to be lists of which the first + ;; member is the "main name", the rest being aliases + (cons + (dolist (subf thing) + (when (find subf *features*) (return-from fp (first thing)))))) + nil)) + (loop :for f :in features + :when (fp f) :return :it))) + +(defun implementation-type () + (first-feature *implementation-features*)) + +(defun implementation-identifier () + (labels + ((maybe-warn (value fstring &rest args) + (cond (value) + (t (apply #'warn fstring args) + "unknown")))) + (let ((lisp (maybe-warn (implementation-type) + "No implementation feature found in ~a." + *implementation-features*)) + (os (maybe-warn (first-feature *os-features*) + "No os feature found in ~a." *os-features*)) + (arch (maybe-warn (first-feature *architecture-features*) + "No architecture feature found in ~a." + *architecture-features*)) + (version (maybe-warn (lisp-version-string) + "Don't know how to get Lisp ~ + implementation version."))) + (substitute-if + #\_ (lambda (x) (find x " /:\\(){}[]$#`'\"")) + (format nil "~(~@{~a~^-~}~)" lisp version os arch))))) + + + +;;; --------------------------------------------------------------------------- +;;; Generic support for configuration files + +(defparameter *inter-directory-separator* + #+(or unix cygwin) #\: + #-(or unix cygwin) #\;) + +(defun user-homedir () + (truename (user-homedir-pathname))) + +(defun try-directory-subpath (x sub &key type) + (let* ((p (and x (ensure-directory-pathname x))) + (tp (and p (ignore-errors (truename p)))) + (sp (and tp (merge-pathnames* (merge-component-name-type sub :type type) p))) + (ts (and sp (ignore-errors (truename sp))))) + (and ts (values sp ts)))) +(defun user-configuration-directories () + (remove-if + #'null + (flet ((try (x sub) (try-directory-subpath x sub :type :directory))) + `(,(try (getenv "XDG_CONFIG_HOME") "common-lisp/") + ,@(loop :with dirs = (getenv "XDG_CONFIG_DIRS") + :for dir :in (split-string dirs :separator ":") + :collect (try dir "common-lisp/")) + #+(and (or win32 windows mswindows mingw32) (not cygwin)) + ,@`(#+lispworks ,(try (sys:get-folder-path :common-appdata) "common-lisp/config/") + ;;; read-windows-registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\AppData + #+(not cygwin) + ,(try (or (getenv "USERPROFILE") (user-homedir)) + "Application Data/common-lisp/config/")) + ,(try (user-homedir) ".config/common-lisp/"))))) +(defun system-configuration-directories () + (remove-if + #'null + (append + #+(and (or win32 windows mswindows mingw32) (not cygwin)) + (flet ((try (x sub) (try-directory-subpath x sub :type :directory))) + `(,@`(#+lispworks ,(try (sys:get-folder-path :local-appdata) "common-lisp/config/") + ;;; read-windows-registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\Common AppData + ,(try (getenv "ALLUSERSPROFILE") "Application Data/common-lisp/config/")))) + (list #p"/etc/")))) +(defun in-first-directory (dirs x) + (loop :for dir :in dirs + :thereis (and dir (ignore-errors + (truename (merge-pathnames* x (ensure-directory-pathname dir))))))) +(defun in-user-configuration-directory (x) + (in-first-directory (user-configuration-directories) x)) +(defun in-system-configuration-directory (x) + (in-first-directory (system-configuration-directories) x)) + +(defun configuration-inheritance-directive-p (x) + (let ((kw '(:inherit-configuration :ignore-inherited-configuration))) + (or (member x kw) + (and (length=n-p x 1) (member (car x) kw))))) + +(defun validate-configuration-form (form tag directive-validator + &optional (description tag)) + (unless (and (consp form) (eq (car form) tag)) + (error "Error: Form doesn't specify ~A ~S~%" description form)) + (loop :with inherit = 0 + :for directive :in (cdr form) :do + (if (configuration-inheritance-directive-p directive) + (incf inherit) + (funcall directive-validator directive)) + :finally + (unless (= inherit 1) + (error "One and only one of ~S or ~S is required" + :inherit-configuration :ignore-inherited-configuration))) + form) + +(defun validate-configuration-file (file validator description) + (let ((forms (read-file-forms file))) + (unless (length=n-p forms 1) + (error "One and only one form allowed for ~A. Got: ~S~%" description forms)) + (funcall validator (car forms)))) + +(defun validate-configuration-directory (directory tag validator) + (let ((files (sort (ignore-errors + (directory (make-pathname :name :wild :type :wild :defaults directory) + #+sbcl :resolve-symlinks #+sbcl nil)) + #'string< :key #'namestring))) + `(,tag + ,@(loop :for file :in files :append + (mapcar validator (read-file-forms file))) + :inherit-configuration))) + + +;;; --------------------------------------------------------------------------- +;;; asdf-output-translations +;;; +;;; this code is heavily inspired from +;;; asdf-binary-translations, common-lisp-controller and cl-launch. +;;; --------------------------------------------------------------------------- + +(defvar *output-translations* () + "Either NIL (for uninitialized), or a list of one element, +said element itself being a sorted list of mappings. +Each mapping is a pair of a source pathname and destination pathname, +and the order is by decreasing length of namestring of the source pathname.") + +(defvar *user-cache* + (or + (let ((h (getenv "XDG_CACHE_HOME"))) + (and h `(,h "common-lisp" :implementation))) + #+(and windows lispworks) + (let ((h (sys:get-folder-path :common-appdata))) ;; no :common-caches in Windows??? + (and h `(,h "common-lisp" "cache"))) + #+(and (or win32 windows mswindows mingw32) (not cygwin)) + ;;; read-windows-registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\Cache + (let ((h (or (getenv "USERPROFILE") (user-homedir)))) + (and h `(,h "Local Settings" "Temporary Internet Files" "common-lisp"))) + '(:home ".cache" "common-lisp" :implementation))) +(defvar *system-cache* + (or + #+(and windows lispworks) + (let ((h (sys:get-folder-path :common-appdata))) ;; no :common-caches in Windows??? + (and h `(,h "common-lisp" "cache"))) + #+(and (or win32 windows mswindows mingw32) (not cygwin)) + (let ((h (or (getenv "USERPROFILE") (user-homedir)))) + (and h `(,h "Local Settings" "Temporary Internet Files" "common-lisp"))) + #+(or unix cygwin) + '("/var/cache/common-lisp" :uid :implementation))) + +(defun output-translations () + (car *output-translations*)) + +(defun (setf output-translations) (new-value) + (setf *output-translations* + (list + (stable-sort (copy-list new-value) #'> + :key (lambda (x) + (etypecase (car x) + ((eql t) -1) + (pathname + (length (pathname-directory (car x))))))))) + new-value) + +(defun output-translations-initialized-p () + (and *output-translations* t)) + +(defun clear-output-translations () + "Undoes any initialization of the output translations. +You might want to call that before you dump an image that would be resumed +with a different configuration, so the configuration would be re-read then." + (setf *output-translations* '()) + (values)) + +(defparameter *wild-path* + (make-pathname :directory '(:relative :wild-inferiors) + :name :wild :type :wild :version :wild)) + +(defparameter *wild-asd* + (make-pathname :directory '(:relative :wild-inferiors) + :name :wild :type "asd" :version :newest)) + +(defun wilden (path) + (merge-pathnames* *wild-path* path)) + +(defun resolve-absolute-location-component (x wildenp) + (let* ((r + (etypecase x + (pathname x) + (string (ensure-directory-pathname x)) + (cons + (let ((car (resolve-absolute-location-component (car x) nil))) + (if (null (cdr x)) + car + (let ((cdr (resolve-relative-location-component + car (cdr x) wildenp))) + (merge-pathnames* cdr car))))) + ((eql :root) + ;; special magic! we encode such paths as relative pathnames, + ;; but it means "relative to the root of the source pathname's host and device". + (return-from resolve-absolute-location-component + (make-pathname :directory '(:relative)))) + ((eql :home) (user-homedir)) + ((eql :user-cache) (resolve-location *user-cache* nil)) + ((eql :system-cache) (resolve-location *system-cache* nil)) + ((eql :current-directory) (current-directory)))) + (s (if (and wildenp (not (pathnamep x))) + (wilden r) + r))) + (unless (absolute-pathname-p s) + (error "Not an absolute pathname ~S" s)) + s)) + +(defun resolve-relative-location-component (super x &optional wildenp) + (let* ((r (etypecase x + (pathname x) + (string x) + (cons + (let ((car (resolve-relative-location-component super (car x) nil))) + (if (null (cdr x)) + car + (let ((cdr (resolve-relative-location-component + (merge-pathnames* car super) (cdr x) wildenp))) + (merge-pathnames* cdr car))))) + ((eql :current-directory) + (relativize-pathname-directory (current-directory))) + ((eql :implementation) (implementation-identifier)) + ((eql :implementation-type) (string-downcase (implementation-type))) + ((eql :uid) (princ-to-string (get-uid))))) + (d (if (pathnamep x) r (ensure-directory-pathname r))) + (s (if (and wildenp (not (pathnamep x))) + (wilden d) + d))) + (when (and (absolute-pathname-p s) (not (pathname-match-p s (wilden super)))) + (error "pathname ~S is not relative to ~S" s super)) + (merge-pathnames* s super))) + +(defun resolve-location (x &optional wildenp) + (if (atom x) + (resolve-absolute-location-component x wildenp) + (loop :with path = (resolve-absolute-location-component (car x) nil) + :for (component . morep) :on (cdr x) + :do (setf path (resolve-relative-location-component + path component (and wildenp (not morep)))) + :finally (return path)))) + +(defun location-designator-p (x) + (flet ((componentp (c) (typep c '(or string pathname keyword)))) + (or (typep x 'boolean) (componentp x) (and (consp x) (every #'componentp x))))) + +(defun location-function-p (x) + (and + (consp x) + (length=n-p x 2) + (or (and (equal (first x) :function) + (typep (second x) 'symbol)) + (and (equal (first x) 'lambda) + (cddr x) + (length=n-p (second x) 2))))) + +(defun validate-output-translations-directive (directive) + (unless + (or (member directive '(:inherit-configuration + :ignore-inherited-configuration + :enable-user-cache :disable-cache)) + (and (consp directive) + (or (and (length=n-p directive 2) + (or (and (eq (first directive) :include) + (typep (second directive) '(or string pathname null))) + (and (location-designator-p (first directive)) + (or (location-designator-p (second directive)) + (location-function-p (second directive)))))) + (and (length=n-p directive 1) + (location-designator-p (first directive)))))) + (error "Invalid directive ~S~%" directive)) + directive) + +(defun validate-output-translations-form (form) + (validate-configuration-form + form + :output-translations + 'validate-output-translations-directive + "output translations")) + +(defun validate-output-translations-file (file) + (validate-configuration-file + file 'validate-output-translations-form "output translations")) + +(defun validate-output-translations-directory (directory) + (validate-configuration-directory + directory :output-translations 'validate-output-translations-directive)) + +(defun parse-output-translations-string (string) + (cond + ((or (null string) (equal string "")) + '(:output-translations :inherit-configuration)) + ((not (stringp string)) + (error "environment string isn't: ~S" string)) + ((eql (char string 0) #\") + (parse-output-translations-string (read-from-string string))) + ((eql (char string 0) #\() + (validate-output-translations-form (read-from-string string))) + (t + (loop + :with inherit = nil + :with directives = () + :with start = 0 + :with end = (length string) + :with source = nil + :for i = (or (position *inter-directory-separator* string :start start) end) :do + (let ((s (subseq string start i))) + (cond + (source + (push (list source (if (equal "" s) nil s)) directives) + (setf source nil)) + ((equal "" s) + (when inherit + (error "only one inherited configuration allowed: ~S" string)) + (setf inherit t) + (push :inherit-configuration directives)) + (t + (setf source s))) + (setf start (1+ i)) + (when (> start end) + (when source + (error "Uneven number of components in source to destination mapping ~S" string)) + (unless inherit + (push :ignore-inherited-configuration directives)) + (return `(:output-translations ,@(nreverse directives))))))))) + +(defparameter *default-output-translations* + '(environment-output-translations + user-output-translations-pathname + user-output-translations-directory-pathname + system-output-translations-pathname + system-output-translations-directory-pathname)) + +(defun wrapping-output-translations () + `(:output-translations + ;; Some implementations have precompiled ASDF systems, + ;; so we must disable translations for implementation paths. + #+sbcl (,(getenv "SBCL_HOME") ()) + #+ecl (,(translate-logical-pathname "SYS:**;*.*") ()) ; only needed if LPNs are resolved manually. + #+clozure (,(wilden (ccl::ccl-directory)) ()) ; not needed: no precompiled ASDF system + ;; All-import, here is where we want user stuff to be: + :inherit-configuration + ;; These are for convenience, and can be overridden by the user: + #+abcl (#p"/___jar___file___root___/**/*.*" (:user-cache #p"**/*.*")) + #+abcl (#p"jar:file:/**/*.jar!/**/*.*" (:function translate-jar-pathname)) + ;; If we want to enable the user cache by default, here would be the place: + :enable-user-cache)) + +(defparameter *output-translations-file* #p"asdf-output-translations.conf") +(defparameter *output-translations-directory* #p"asdf-output-translations.conf.d/") + +(defun user-output-translations-pathname () + (in-user-configuration-directory *output-translations-file* )) +(defun system-output-translations-pathname () + (in-system-configuration-directory *output-translations-file*)) +(defun user-output-translations-directory-pathname () + (in-user-configuration-directory *output-translations-directory*)) +(defun system-output-translations-directory-pathname () + (in-system-configuration-directory *output-translations-directory*)) +(defun environment-output-translations () + (getenv "ASDF_OUTPUT_TRANSLATIONS")) + +(defgeneric process-output-translations (spec &key inherit collect)) +(defmethod process-output-translations ((x symbol) &key + (inherit *default-output-translations*) + collect) + (process-output-translations (funcall x) :inherit inherit :collect collect)) +(defmethod process-output-translations ((pathname pathname) &key inherit collect) + (cond + ((directory-pathname-p pathname) + (process-output-translations (validate-output-translations-directory pathname) + :inherit inherit :collect collect)) + ((probe-file pathname) + (process-output-translations (validate-output-translations-file pathname) + :inherit inherit :collect collect)) + (t + (inherit-output-translations inherit :collect collect)))) +(defmethod process-output-translations ((string string) &key inherit collect) + (process-output-translations (parse-output-translations-string string) + :inherit inherit :collect collect)) +(defmethod process-output-translations ((x null) &key inherit collect) + (declare (ignorable x)) + (inherit-output-translations inherit :collect collect)) +(defmethod process-output-translations ((form cons) &key inherit collect) + (dolist (directive (cdr (validate-output-translations-form form))) + (process-output-translations-directive directive :inherit inherit :collect collect))) + +(defun inherit-output-translations (inherit &key collect) + (when inherit + (process-output-translations (first inherit) :collect collect :inherit (rest inherit)))) + +(defun process-output-translations-directive (directive &key inherit collect) + (if (atom directive) + (ecase directive + ((:enable-user-cache) + (process-output-translations-directive '(t :user-cache) :collect collect)) + ((:disable-cache) + (process-output-translations-directive '(t t) :collect collect)) + ((:inherit-configuration) + (inherit-output-translations inherit :collect collect)) + ((:ignore-inherited-configuration) + nil)) + (let ((src (first directive)) + (dst (second directive))) + (if (eq src :include) + (when dst + (process-output-translations (pathname dst) :inherit nil :collect collect)) + (when src + (let ((trusrc (or (eql src t) + (let ((loc (resolve-location src t))) + (if (absolute-pathname-p loc) (truenamize loc) loc))))) + (cond + ((location-function-p dst) + (funcall collect + (list trusrc + (if (symbolp (second dst)) + (fdefinition (second dst)) + (eval (second dst)))))) + ((eq dst t) + (funcall collect (list trusrc t))) + (t + (let* ((trudst (make-pathname + :defaults (if dst (resolve-location dst t) trusrc))) + (wilddst (make-pathname + :name :wild :type :wild :version :wild + :defaults trudst))) + (funcall collect (list wilddst t)) + (funcall collect (list trusrc trudst))))))))))) + +(defun compute-output-translations (&optional parameter) + "read the configuration, return it" + (remove-duplicates + (while-collecting (c) + (inherit-output-translations + `(wrapping-output-translations ,parameter ,@*default-output-translations*) :collect #'c)) + :test 'equal :from-end t)) + +(defun initialize-output-translations (&optional parameter) + "read the configuration, initialize the internal configuration variable, +return the configuration" + (setf (output-translations) (compute-output-translations parameter))) + +(defun disable-output-translations () + "Initialize output translations in a way that maps every file to itself, +effectively disabling the output translation facility." + (initialize-output-translations + '(:output-translations :disable-cache :ignore-inherited-configuration))) + +;; checks an initial variable to see whether the state is initialized +;; or cleared. In the former case, return current configuration; in +;; the latter, initialize. ASDF will call this function at the start +;; of (asdf:find-system). +(defun ensure-output-translations () + (if (output-translations-initialized-p) + (output-translations) + (initialize-output-translations))) + +(defun apply-output-translations (path) + (etypecase path + (logical-pathname + path) + ((or pathname string) + (ensure-output-translations) + (loop :with p = (truenamize path) + :for (source destination) :in (car *output-translations*) + :for root = (when (or (eq source t) + (and (pathnamep source) + (not (absolute-pathname-p source)))) + (pathname-root p)) + :for absolute-source = (cond + ((eq source t) (wilden root)) + (root (merge-pathnames* source root)) + (t source)) + :when (or (eq source t) (pathname-match-p p absolute-source)) + :return + (cond + ((functionp destination) + (funcall destination p absolute-source)) + ((eq destination t) + p) + ((not (pathnamep destination)) + (error "invalid destination")) + ((not (absolute-pathname-p destination)) + (translate-pathname p absolute-source (merge-pathnames* destination root))) + (root + (translate-pathname (directorize-pathname-host-device p) absolute-source destination)) + (t + (translate-pathname p absolute-source destination))) + :finally (return p))))) + +(defun last-char (s) + (and (stringp s) (plusp (length s)) (char s (1- (length s))))) + +(defun directorize-pathname-host-device (pathname) + (let* ((root (pathname-root pathname)) + (wild-root (wilden root)) + (absolute-pathname (merge-pathnames* pathname root)) + (foo (make-pathname :directory '(:absolute "FOO") :defaults root)) + (separator (last-char (namestring foo))) + (root-namestring (namestring root)) + (root-string + (substitute-if #\/ + (lambda (x) (or (eql x #\:) + (eql x separator))) + root-namestring))) + (multiple-value-bind (relative path filename) + (component-name-to-pathname-components root-string t) + (declare (ignore relative filename)) + (let ((new-base + (make-pathname :defaults root + :directory `(:absolute ,@path)))) + (translate-pathname absolute-pathname wild-root (wilden new-base)))))) + +(defmethod output-files :around (operation component) + "Translate output files, unless asked not to" + (declare (ignorable operation component)) + (values + (multiple-value-bind (files fixedp) (call-next-method) + (if fixedp + files + (mapcar #'apply-output-translations files))) + t)) + +(defun compile-file-pathname* (input-file &rest keys) + (apply-output-translations + (apply #'compile-file-pathname + (truenamize (lispize-pathname input-file)) + keys))) + +#+abcl +(defun translate-jar-pathname (source wildcard) + (declare (ignore wildcard)) + (let* ((p (pathname (first (pathname-device source)))) + (root (format nil "/___jar___file___root___/~@[~A/~]" + (and (find :windows *features*) + (pathname-device p))))) + (apply-output-translations + (merge-pathnames* + (relativize-pathname-directory source) + (merge-pathnames* + (relativize-pathname-directory (ensure-directory-pathname p)) + root))))) + +;;;; ----------------------------------------------------------------- +;;;; Compatibility mode for ASDF-Binary-Locations + +(defun enable-asdf-binary-locations-compatibility + (&key + (centralize-lisp-binaries nil) + (default-toplevel-directory + ;; Use ".cache/common-lisp" instead ??? + (merge-pathnames* (make-pathname :directory '(:relative ".fasls")) + (user-homedir))) + (include-per-user-information nil) + (map-all-source-files nil) + (source-to-target-mappings nil)) + (let* ((fasl-type (pathname-type (compile-file-pathname "foo.lisp"))) + (wild-inferiors (make-pathname :directory '(:relative :wild-inferiors))) + (mapped-files (make-pathname + :name :wild :version :wild + :type (if map-all-source-files :wild fasl-type))) + (destination-directory + (if centralize-lisp-binaries + `(,default-toplevel-directory + ,@(when include-per-user-information + (cdr (pathname-directory (user-homedir)))) + :implementation ,wild-inferiors) + `(:root ,wild-inferiors :implementation)))) + (initialize-output-translations + `(:output-translations + ,@source-to-target-mappings + ((:root ,wild-inferiors ,mapped-files) + (,@destination-directory ,mapped-files)) + (t t) + :ignore-inherited-configuration)))) + +;;;; ----------------------------------------------------------------- +;;;; Windows shortcut support. Based on: +;;;; +;;;; Jesse Hager: The Windows Shortcut File Format. +;;;; http://www.wotsit.org/list.asp?fc=13 + +(defparameter *link-initial-dword* 76) +(defparameter *link-guid* #(1 20 2 0 0 0 0 0 192 0 0 0 0 0 0 70)) + +(defun read-null-terminated-string (s) + (with-output-to-string (out) + (loop :for code = (read-byte s) + :until (zerop code) + :do (write-char (code-char code) out)))) + +(defun read-little-endian (s &optional (bytes 4)) + (loop + :for i :from 0 :below bytes + :sum (ash (read-byte s) (* 8 i)))) + +(defun parse-file-location-info (s) + (let ((start (file-position s)) + (total-length (read-little-endian s)) + (end-of-header (read-little-endian s)) + (fli-flags (read-little-endian s)) + (local-volume-offset (read-little-endian s)) + (local-offset (read-little-endian s)) + (network-volume-offset (read-little-endian s)) + (remaining-offset (read-little-endian s))) + (declare (ignore total-length end-of-header local-volume-offset)) + (unless (zerop fli-flags) + (cond + ((logbitp 0 fli-flags) + (file-position s (+ start local-offset))) + ((logbitp 1 fli-flags) + (file-position s (+ start + network-volume-offset + #x14)))) + (concatenate 'string + (read-null-terminated-string s) + (progn + (file-position s (+ start remaining-offset)) + (read-null-terminated-string s)))))) + +(defun parse-windows-shortcut (pathname) + (with-open-file (s pathname :element-type '(unsigned-byte 8)) + (handler-case + (when (and (= (read-little-endian s) *link-initial-dword*) + (let ((header (make-array (length *link-guid*)))) + (read-sequence header s) + (equalp header *link-guid*))) + (let ((flags (read-little-endian s))) + (file-position s 76) ;skip rest of header + (when (logbitp 0 flags) + ;; skip shell item id list + (let ((length (read-little-endian s 2))) + (file-position s (+ length (file-position s))))) + (cond + ((logbitp 1 flags) + (parse-file-location-info s)) + (t + (when (logbitp 2 flags) + ;; skip description string + (let ((length (read-little-endian s 2))) + (file-position s (+ length (file-position s))))) + (when (logbitp 3 flags) + ;; finally, our pathname + (let* ((length (read-little-endian s 2)) + (buffer (make-array length))) + (read-sequence buffer s) + (map 'string #'code-char buffer))))))) + (end-of-file () + nil)))) + +;;;; ----------------------------------------------------------------- +;;;; Source Registry Configuration, by Francois-Rene Rideau +;;;; See the Manual and https://bugs.launchpad.net/asdf/+bug/485918 + +;; Using ack 1.2 exclusions +(defvar *default-exclusions* + '(".bzr" ".cdv" "~.dep" "~.dot" "~.nib" "~.plst" + ".git" ".hg" ".pc" ".svn" "CVS" "RCS" "SCCS" "_darcs" + "_sgbak" "autom4te.cache" "cover_db" "_build")) + +(defvar *source-registry* () + "Either NIL (for uninitialized), or a list of one element, +said element itself being a list of directory pathnames where to look for .asd files") + +(defun source-registry () + (car *source-registry*)) + +(defun (setf source-registry) (new-value) + (setf *source-registry* (list new-value)) + new-value) + +(defun source-registry-initialized-p () + (and *source-registry* t)) + +(defun clear-source-registry () + "Undoes any initialization of the source registry. +You might want to call that before you dump an image that would be resumed +with a different configuration, so the configuration would be re-read then." + (setf *source-registry* '()) + (values)) + +(defun probe-asd (name defaults) + (block nil + (when (directory-pathname-p defaults) + (let ((file + (make-pathname + :defaults defaults :version :newest :case :local + :name name + :type "asd"))) + (when (probe-file file) + (return file))) + #+(and (or win32 windows mswindows mingw32) (not cygwin) (not clisp)) + (let ((shortcut + (make-pathname + :defaults defaults :version :newest :case :local + :name (concatenate 'string name ".asd") + :type "lnk"))) + (when (probe-file shortcut) + (let ((target (parse-windows-shortcut shortcut))) + (when target + (return (pathname target))))))))) + +(defun sysdef-source-registry-search (system) + (ensure-source-registry) + (loop :with name = (coerce-name system) + :for defaults :in (source-registry) + :for file = (probe-asd name defaults) + :when file :return file)) + +(defun validate-source-registry-directive (directive) + (unless + (or (member directive '(:default-registry (:default-registry)) :test 'equal) + (destructuring-bind (kw &rest rest) directive + (case kw + ((:include :directory :tree) + (and (length=n-p rest 1) + (typep (car rest) '(or pathname string null)))) + ((:exclude) + (every #'stringp rest)) + (null rest)))) + (error "Invalid directive ~S~%" directive)) + directive) + +(defun validate-source-registry-form (form) + (validate-configuration-form + form :source-registry 'validate-source-registry-directive "a source registry")) + +(defun validate-source-registry-file (file) + (validate-configuration-file + file 'validate-source-registry-form "a source registry")) + +(defun validate-source-registry-directory (directory) + (validate-configuration-directory + directory :source-registry 'validate-source-registry-directive)) + +(defun parse-source-registry-string (string) + (cond + ((or (null string) (equal string "")) + '(:source-registry :inherit-configuration)) + ((not (stringp string)) + (error "environment string isn't: ~S" string)) + ((find (char string 0) "\"(") + (validate-source-registry-form (read-from-string string))) + (t + (loop + :with inherit = nil + :with directives = () + :with start = 0 + :with end = (length string) + :for pos = (position *inter-directory-separator* string :start start) :do + (let ((s (subseq string start (or pos end)))) + (cond + ((equal "" s) ; empty element: inherit + (when inherit + (error "only one inherited configuration allowed: ~S" string)) + (setf inherit t) + (push ':inherit-configuration directives)) + ((ends-with s "//") + (push `(:tree ,(subseq s 0 (1- (length s)))) directives)) + (t + (push `(:directory ,s) directives))) + (cond + (pos + (setf start (1+ pos))) + (t + (unless inherit + (push '(:ignore-inherited-configuration) directives)) + (return `(:source-registry ,@(nreverse directives)))))))))) + +(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))))) + +(defparameter *default-source-registries* + '(environment-source-registry + user-source-registry + user-source-registry-directory + system-source-registry + system-source-registry-directory + default-source-registry)) + +(defparameter *source-registry-file* #p"source-registry.conf") +(defparameter *source-registry-directory* #p"source-registry.conf.d/") + +(defun wrapping-source-registry () + `(:source-registry + #+sbcl (:tree ,(getenv "SBCL_HOME")) + :inherit-configuration)) +(defun default-source-registry () + (flet ((try (x sub) (try-directory-subpath x sub :type :directory))) + `(:source-registry + #+sbcl (:directory ,(merge-pathnames* ".sbcl/systems/" (user-homedir))) + (:directory ,(truenamize (directory-namestring *default-pathname-defaults*))) + ,@(let* + #+(or unix cygwin) + ((datahome + (or (getenv "XDG_DATA_HOME") + (try (user-homedir) ".local/share/"))) + (datadirs + (or (getenv "XDG_DATA_DIRS") "/usr/local/share:/usr/share")) + (dirs (cons datahome (split-string datadirs :separator ":")))) + #+(and (or win32 windows mswindows mingw32) (not cygwin)) + ((datahome + #+lispworks (sys:get-folder-path :common-appdata) + #-lispworks (try (or (getenv "USERPROFILE") (user-homedir)) + "Application Data")) + (datadir + #+lispworks (sys:get-folder-path :local-appdata) + #-lispworks (try (getenv "ALLUSERSPROFILE") + "Application Data")) + (dirs (list datahome datadir))) + #-(or unix win32 windows mswindows mingw32 cygwin) + ((dirs ())) + (loop :for dir :in dirs + :collect `(:directory ,(try dir "common-lisp/systems/")) + :collect `(:tree ,(try dir "common-lisp/source/")))) + :inherit-configuration))) +(defun user-source-registry () + (in-user-configuration-directory *source-registry-file*)) +(defun system-source-registry () + (in-system-configuration-directory *source-registry-file*)) +(defun user-source-registry-directory () + (in-user-configuration-directory *source-registry-directory*)) +(defun system-source-registry-directory () + (in-system-configuration-directory *source-registry-directory*)) +(defun environment-source-registry () + (getenv "CL_SOURCE_REGISTRY")) + +(defgeneric process-source-registry (spec &key inherit register)) +(defmethod process-source-registry ((x symbol) &key inherit register) + (process-source-registry (funcall x) :inherit inherit :register register)) +(defmethod process-source-registry ((pathname pathname) &key inherit register) + (cond + ((directory-pathname-p pathname) + (process-source-registry (validate-source-registry-directory pathname) + :inherit inherit :register register)) + ((probe-file pathname) + (process-source-registry (validate-source-registry-file pathname) + :inherit inherit :register register)) + (t + (inherit-source-registry inherit :register register)))) +(defmethod process-source-registry ((string string) &key inherit register) + (process-source-registry (parse-source-registry-string string) + :inherit inherit :register register)) +(defmethod process-source-registry ((x null) &key inherit register) + (declare (ignorable x)) + (inherit-source-registry inherit :register register)) +(defmethod process-source-registry ((form cons) &key inherit register) + (let ((*default-exclusions* *default-exclusions*)) + (dolist (directive (cdr (validate-source-registry-form form))) + (process-source-registry-directive directive :inherit inherit :register register)))) + +(defun inherit-source-registry (inherit &key register) + (when inherit + (process-source-registry (first inherit) :register register :inherit (rest inherit)))) + +(defun process-source-registry-directive (directive &key inherit register) + (destructuring-bind (kw &rest rest) (if (consp directive) directive (list directive)) + (ecase kw + ((:include) + (destructuring-bind (pathname) rest + (process-source-registry (pathname pathname) :inherit nil :register register))) + ((:directory) + (destructuring-bind (pathname) rest + (when pathname + (funcall register (ensure-directory-pathname pathname))))) + ((:tree) + (destructuring-bind (pathname) rest + (when pathname + (funcall register (ensure-directory-pathname pathname) :recurse t :exclude *default-exclusions*)))) + ((:exclude) + (setf *default-exclusions* rest)) + ((:default-registry) + (inherit-source-registry '(default-source-registry) :register register)) + ((:inherit-configuration) + (inherit-source-registry inherit :register register)) + ((:ignore-inherited-configuration) + nil)))) + +(defun flatten-source-registry (&optional parameter) + (remove-duplicates + (while-collecting (collect) + (inherit-source-registry + `(wrapping-source-registry + ,parameter + ,@*default-source-registries*) + :register (lambda (directory &key recurse exclude) + (collect (list directory :recurse recurse :exclude exclude))))) + :test 'equal :from-end t)) + +;; Will read the configuration and initialize all internal variables, +;; and return the new configuration. +(defun compute-source-registry (&optional parameter) + (while-collecting (collect) + (dolist (entry (flatten-source-registry parameter)) + (destructuring-bind (directory &key recurse exclude) entry + (register-asd-directory + directory + :recurse recurse :exclude exclude :collect #'collect))))) + +(defun initialize-source-registry (&optional parameter) + (setf (source-registry) (compute-source-registry parameter))) + +;; checks an initial variable to see whether the state is initialized +;; or cleared. In the former case, return current configuration; in +;; the latter, initialize. ASDF will call this function at the start +;; of (asdf:find-system). +(defun ensure-source-registry () + (if (source-registry-initialized-p) + (source-registry) + (initialize-source-registry))) + +;;;; ----------------------------------------------------------------- +;;;; Hook into REQUIRE for ABCL, ClozureCL, CMUCL, ECL and SBCL +;;;; +#+(or abcl clozure cmu ecl sbcl) +(progn + (defun module-provide-asdf (name) + (handler-bind + ((style-warning #'muffle-warning) + (missing-component (constantly nil)) + (error (lambda (e) + (format *error-output* "ASDF could not load ~A because ~A.~%" + name e)))) + (let* ((*verbose-out* (make-broadcast-stream)) + (system (find-system name nil))) + (when system + (load-system name) + t)))) + (pushnew 'module-provide-asdf + #+abcl sys::*module-provider-functions* + #+clozure ccl::*module-provider-functions* + #+cmu ext:*module-provider-functions* + #+ecl si:*module-provider-functions* + #+sbcl sb-ext:*module-provider-functions*)) + +;;;; ------------------------------------------------------------------------- +;;;; Cleanups after hot-upgrade. +;;;; Things to do in case we're upgrading from a previous version of ASDF. +;;;; See https://bugs.launchpad.net/asdf/+bug/485687 +;;;; +;;;; TODO: debug why it's not enough to upgrade from ECL <= 9.11.1 +(eval-when (:compile-toplevel :load-toplevel :execute) + #+ecl ;; Support upgrade from before ECL went to 1.369 + (when (fboundp 'compile-op-system-p) + (defmethod compile-op-system-p ((op compile-op)) + (getf :system-p (compile-op-flags op))) + (defmethod initialize-instance :after ((op compile-op) + &rest initargs + &key system-p &allow-other-keys) + (declare (ignorable initargs)) + (when system-p (appendf (compile-op-flags op) (list :system-p system-p)))))) + +;;;; ----------------------------------------------------------------- +;;;; Done! +(when *load-verbose* + (asdf-message ";; ASDF, version ~a" (asdf-version))) + +#+allegro +(eval-when (:compile-toplevel :execute) + (when (boundp 'excl:*warn-on-nested-reader-conditionals*) + (setf excl:*warn-on-nested-reader-conditionals* *acl-warn-save*))) + +(pushnew :asdf *features*) +;; this is a release candidate for ASDF 2.0 +(pushnew :asdf2 *features*) + +(provide :asdf) + +;;; Local Variables: +;;; mode: lisp +;;; End: diff --git a/contrib/defsystem/defsystem.lisp b/contrib/defsystem/defsystem.lisp index 74b9d9137dbf03f1c98a9d282200982631dbcd72..bf349e54caf1c5de578c0dcce8eba8a870247dc7 100644 --- a/contrib/defsystem/defsystem.lisp +++ b/contrib/defsystem/defsystem.lisp @@ -1,49 +1,79 @@ -;;; -*- Mode: LISP; Syntax: Common-Lisp -*- -;;; Mon Mar 13 20:33:57 1995 by Mark Kantrowitz <mkant@GLINDA.OZ.CS.CMU.EDU> -;;; defsystem.lisp -- 164167 bytes +;;; -*- Mode: Lisp; Package: make -*- +;;; -*- Mode: CLtL; Syntax: Common-Lisp -*- + +;;; DEFSYSTEM 3.6 Interim. + +;;; defsystem.lisp -- ;;; **************************************************************** ;;; MAKE -- A Portable Defsystem Implementation ******************** ;;; **************************************************************** -;;; This is a portable system definition facility for Common Lisp. +;;; This is a portable system definition facility for Common Lisp. ;;; Though home-grown, the syntax was inspired by fond memories of the ;;; defsystem facility on Symbolics 3600's. The exhaustive lists of ;;; filename extensions for various lisps and the idea to have one ;;; "operate-on-system" function instead of separate "compile-system" -;;; and "load-system" functions were taken from Xerox Corp.'s PCL +;;; and "load-system" functions were taken from Xerox Corp.'s PCL ;;; system. ;;; This system improves on both PCL and Symbolics defsystem utilities -;;; by performing a topological sort of the graph of file-dependency +;;; by performing a topological sort of the graph of file-dependency ;;; constraints. Thus, the components of the system need not be listed ;;; in any special order, because the defsystem command reorganizes them ;;; based on their constraints. It includes all the standard bells and ;;; whistles, such as not recompiling a binary file that is up to date ;;; (unless the user specifies that all files should be recompiled). -;;; Written by Mark Kantrowitz, School of Computer Science, +;;; Originally written by Mark Kantrowitz, School of Computer Science, ;;; Carnegie Mellon University, October 1989. -;;; Copyright (c) 1989-95 by Mark Kantrowitz. All rights reserved. - -;;; Use and copying of this software and preparation of derivative works -;;; based upon this software are permitted, so long as the following -;;; conditions are met: -;;; o no fees or compensation are charged for use, copies, or -;;; access to this software -;;; o this copyright notice is included intact. -;;; This software is made available AS IS, and no warranty is made about -;;; the software or its performance. - -;;; Please send bug reports, comments and suggestions to mkant@cs.cmu.edu. +;;; MK:DEFSYSTEM 3.6 Interim +;;; +;;; Copyright (c) 1989 - 1999 Mark Kantrowitz. All rights reserved. +;;; 1999 - 2005 Mark Kantrowitz and Marco Antoniotti. All +;;; rights reserved. + +;;; Use, copying, modification, merging, publishing, distribution +;;; and/or sale of this software, source and/or binary files and +;;; associated documentation files (the "Software") and of derivative +;;; works based upon this Software are permitted, as long as the +;;; following conditions are met: + +;;; o this copyright notice is included intact and is prominently +;;; visible in the Software +;;; o if modifications have been made to the source code of the +;;; this package that have not been adopted for inclusion in the +;;; official version of the Software as maintained by the Copyright +;;; holders, then the modified package MUST CLEARLY identify that +;;; such package is a non-standard and non-official version of +;;; the Software. Furthermore, it is strongly encouraged that any +;;; modifications made to the Software be sent via e-mail to the +;;; MK-DEFSYSTEM maintainers for consideration of inclusion in the +;;; official MK-DEFSYSTEM package. + +;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +;;; EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +;;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. +;;; IN NO EVENT SHALL M. KANTROWITZ AND M. ANTONIOTTI BE LIABLE FOR ANY +;;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +;;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +;;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +;;; Except as contained in this notice, the names of M. Kantrowitz and +;;; M. Antoniotti shall not be used in advertising or otherwise to promote +;;; the sale, use or other dealings in this Software without prior written +;;; authorization from M. Kantrowitz and M. Antoniotti. + + +;;; Please send bug reports, comments and suggestions to <marcoxa@cons.org>. ;;; ******************************** ;;; Change Log ********************* ;;; ******************************** ;;; ;;; Note: Several of the fixes from 30-JAN-91 and 31-JAN-91 were done in -;;; September and October 1990, but not documented until January 1991. +;;; September and October 1990, but not documented until January 1991. ;;; ;;; akd = Abdel Kader Diagne <diagne@dfki.uni-sb.de> ;;; as = Andreas Stolcke <stolcke@ICSI.Berkeley.EDU> @@ -60,6 +90,7 @@ ;;; jk = John_Kolojejchick@MORK.CIMDS.RI.CMU.EDU ;;; kt = Kevin Thompson <kthompso@ptolemy.arc.nasa.gov> ;;; kc = Kaelin Colclasure <kaelin@bridge.com> +;;; kmr = Kevin M. Rosenberg <kevin@rosenberg.net> ;;; lmh = Liam M. Healy <Liam.Healy@nrl.navy.mil> ;;; mc = Matthew Cornell <cornell@unix1.cs.umass.edu> ;;; oc = Oliver Christ <oli@adler.ims.uni-stuttgart.de> @@ -72,7 +103,7 @@ ;;; yc = Yang Chen <yangchen%iris.usc.edu@usc.edu> ;;; ;;; Thanks to Steve Strassmann <straz@media-lab.media.mit.edu> and -;;; Sean Boisen <sboisen@BBN.COM> for detailed bug reports and +;;; Sean Boisen <sboisen@BBN.COM> for detailed bug reports and ;;; miscellaneous assistance. Thanks also to Gabriel Inaebnit ;;; <inaebnit@research.abb.ch> for help with VAXLisp bugs. ;;; @@ -89,7 +120,7 @@ ;;; 15-NOV-90 mk Changed package name to "MAKE", eliminating "DEFSYSTEM" ;;; to avoid conflicts with allegro, symbolics packages ;;; named "DEFSYSTEM". -;;; 30-JAN-91 mk Modified append-directories to work with the +;;; 30-JAN-91 mk Modified append-directories to work with the ;;; logical-pathnames system. ;;; 30-JAN-91 mk Append-directories now works with Sun CL4.0. Also, fixed ;;; bug wrt Lucid 4.0's pathnames (which changed from lcl3.0 @@ -129,7 +160,7 @@ ;;; get, there's no need to intern the names as symbols, ;;; and strings don't have packages to cause problems. ;;; Added UNDEFSYSTEM, DEFINED-SYSTEMS, and DESCRIBE-SYSTEM. -;;; Added :delete-binaries command. +;;; Added :delete-binaries command. ;;; 31-JAN-91 mk Franz Allegro CL has a defsystem in the USER package, ;;; so we need to do a shadowing import to avoid name ;;; conflicts. @@ -166,7 +197,7 @@ ;;; if *operations-propagate-to-subsystems* is T (the default) ;;; and the systems were defined using either defsystem ;;; or as a :system component of another system. Thus if -;;; a system depends on another, it can now recompile the +;;; a system depends on another, it can now recompile the ;;; other. ;;; 01-FEB-91 mk Added default definitions of PROVIDE/REQUIRE/*MODULES* ;;; for lisps that have thrown away these definitions in @@ -176,7 +207,7 @@ ;;; file on operation :compile. Either compiles or loads ;;; the file, but not both. In other words, compiling the ;;; file satisfies the demand to load it. This is useful -;;; for PCL defmethod and defclass definitions, which wrap +;;; for PCL defmethod and defclass definitions, which wrap ;;; an (eval-when (compile load eval) ...) around the body ;;; of the definition -- we save time by not loading the ;;; compiled code, since the eval-when forces it to be @@ -185,7 +216,7 @@ ;;; some lisps may maintain a separate environment for ;;; the compiler. This feature is for the person who asked ;;; that a :COMPILE-SATISFIES-LOAD keyword be added to -;;; modules. It's named :COMPILE-ONLY instead to match +;;; modules. It's named :COMPILE-ONLY instead to match ;;; :LOAD-ONLY. ;;; 11-FEB-91 mk Now adds :mk-defsystem to features list, to allow ;;; special cased loading of defsystem if not already @@ -200,7 +231,7 @@ ;;; pathnames relative to its parent component. ;;; 12-MAR-91 mk Uncommented :device :absolute for CMU pathnames, so ;;; that the leading slash is included. -;;; 12-MAR-91 brad Patches for Allegro 4.0.1 on Sparc. +;;; 12-MAR-91 brad Patches for Allegro 4.0.1 on Sparc. ;;; 12-MAR-91 mk Changed definition of format-justified-string so that ;;; it no longer depends on the ~<~> format directives, ;;; because Allegro 4.0.1 has a bug which doesn't support @@ -222,7 +253,7 @@ ;;; 15-MAR-91 rs Added afs-source-directory to handle versions when ;;; compiling C code under lisp. Other minor changes to ;;; translate-version and operate-on-system. -;;; 21-MAR-91 gi Fixed bug in defined-systems. +;;; 21-MAR-91 gi Fixed bug in defined-systems. ;;; 22-MAR-91 mk Replaced append-directories with new version that works ;;; by actually appending the directories, after massaging ;;; them into the proper format. This should work for all @@ -239,7 +270,7 @@ ;;; file-write-date got swapped. ;;; 16-APR-91 mk If the component is load-only, defsystem shouldn't ;;; tell you that there is no binary and ask you if you -;;; want to load the source. +;;; want to load the source. ;;; 17-APR-91 mc Two additional operations for MCL. ;;; 21-APR-91 mk Added feature requested by ik. *files-missing-is-an-error* ;;; new global variable which controls whether files (source @@ -296,7 +327,7 @@ ;;; by returning NIL if the argument isn't a string. ;;; 3-NOV-93 mk In Allegro 4.2, pathname device is :unspecific by default. ;;; 11-NOV-93 fdmm Fixed package definition lock problem when redefining -;;; REQUIRE on ACL. +;;; REQUIRE on ACL. ;;; 11-NOV-93 fdmm Added machine and software types for SGI and IRIX. It is ;;; important to distinguish the OS version and CPU type in ;;; SGI+ACL, since ACL 4.1 on IRIX 4.x and ACL 4.2 on IRIX 5.x @@ -312,8 +343,8 @@ ;;; 03-NOV-94 fdmm Added SCHEME-COMPILE-FILE, so that defsystem can now ;;; compile Pseudoscheme files. ;;; 04-NOV-94 fdmm Added the exported generic function SET-LANGUAGE, to -;;; have a clean, easy to extend interface for telling -;;; defsystem which language to assume for compilation. +;;; have a clean, easy to extend interface for telling +;;; defsystem which language to assume for compilation. ;;; Currently supported arguments: :common-lisp, :scheme. ;;; 11-NOV-94 kc Ported to Allegro CL for Windows 2.0 (ACLPC) and CLISP. ;;; 18-NOV-94 fdmm Changed the entry *filename-extensions* for LispWorks @@ -321,9 +352,9 @@ ;;; Added entries for :mcl and :clisp too. ;;; 16-DEC-94 fdmm Added and entry for CMU CL on SGI to *filename-extensions*. ;;; 16-DEC-94 fdmm Added OS version identification for CMU CL on SGI. -;;; 16-DEC-94 fdmm For CMU CL 17 : Bypassed make-pathnames call fix +;;; 16-DEC-94 fdmm For CMU CL 17 : Bypassed make-pathnames call fix ;;; in NEW-APPEND-DIRECTORIES. -;;; 16-DEC-94 fdmm Added HOME-SUBDIRECTORY to fix CMU's ignorance about `~' +;;; 16-DEC-94 fdmm Added HOME-SUBDIRECTORY to fix CMU's ignorance about `~' ;;; when specifying registries. ;;; 16-DEC-94 fdmm For CMU CL 17 : Bypassed :device fix in make-pathnames call ;;; in COMPONENT-FULL-PATHNAME. This fix was also reported @@ -334,13 +365,13 @@ ;;; 03-JAN-95 fdmm Do not include :pcl in *features* if :clos is there. ;;; 2-MAR-95 mk Modified fdmm's *central-registry* change to use ;;; user-homedir-pathname and to be a bit more generic in the -;;; pathnames. +;;; pathnames. ;;; 2-MAR-95 mk Modified fdmm's updates to *filename-extensions* to handle ;;; any CMU CL binary extensions. ;;; 2-MAR-95 mk Make kc's port to ACLPC a little more generic. ;;; 2-MAR-95 mk djc reported a bug, in which GET-SYSTEM was not returning ;;; a system despite the system's just having been loaded. -;;; The system name specified in the :depends-on was a +;;; The system name specified in the :depends-on was a ;;; lowercase string. I am assuming that the system name ;;; in the defsystem form was a symbol (I haven't verified ;;; that this was the case with djc, but it is the only @@ -348,14 +379,14 @@ ;;; was storing the system in the hash table as an ;;; uppercase string, but attempting to retrieve it as a ;;; lowercase string. This behavior actually isn't a bug, -;;; but a user error. It was intended as a feature to +;;; but a user error. It was intended as a feature to ;;; allow users to use strings for system names when ;;; they wanted to distinguish between two different systems ;;; named "foo.system" and "Foo.system". However, this ;;; user error indicates that this was a bad design decision. ;;; Accordingly, CANONICALIZE-SYSTEM-NAME now uppercases ;;; even strings for retrieving systems, and the comparison -;;; in *modules* is now case-insensitive. The result of +;;; in *modules* is now case-insensitive. The result of ;;; this change is if the user cannot have distinct ;;; systems in "Foo.system" and "foo.system" named "Foo" and ;;; "foo", because they will clobber each other. There is @@ -365,15 +396,15 @@ ;;; further step of requiring system filenames to be lowercase ;;; because we actually find this kind of case-sensitivity ;;; to be useful, when maintaining two different versions -;;; of the same system. +;;; of the same system. ;;; 7-MAR-95 mk Added simplistic handling of logical pathnames. Also ;;; modified new-append-directories so that it'll try to -;;; split up pathname directories that are strings into a +;;; split up pathname directories that are strings into a ;;; list of the directory components. Such directories aren't ;;; ANSI CL, but some non-conforming implementations do it. ;;; 7-MAR-95 mk Added :proclamations to defsystem form, which can be used ;;; to set the compiler optimization level before compilation. -;;; For example, +;;; For example, ;;; :proclamations '(optimize (safety 3) (speed 3) (space 0)) ;;; 7-MAR-95 mk Defsystem now tells the user when it reloads the system ;;; definition. @@ -397,7 +428,7 @@ ;;; RELATIVE ever shows up in the Result, we now know to ;;; add an extra conditionalization to prevent abs-keyword ;;; from being set to :relative. -;;; 7-MAR-95 ss Miscellaneous fixes for MCL 2.0 final. +;;; 7-MAR-95 ss Miscellaneous fixes for MCL 2.0 final. ;;; *compile-file-verbose* not in MCL, *version variables ;;; need to occur before AFS-SOURCE-DIRECTORY definition, ;;; and certain code needed to be in the CCL: package. @@ -416,8 +447,8 @@ ;;; compilation and loading functions can be overridden by ;;; specifying a :compiler or :loader in the system ;;; definition. Also added :documentation slot to the system -;;; definition. -;;; Where this comes in real handy is if one has a +;;; definition. +;;; Where this comes in real handy is if one has a ;;; compiler-compiler implemented in Lisp, and wants the ;;; system to use the compiler-compiler to create a parser ;;; from a grammar and then compile parser. To do this one @@ -453,7 +484,7 @@ ;;; 8-MAR-95 mk Added special hack requested by Steve Strassman, which ;;; allows one to specify absolute pathnames in the shorthand ;;; for a list of components, and have defsystem recognize -;;; which are absolute and which are relative. +;;; which are absolute and which are relative. ;;; I actually think this would be a good idea, but I haven't ;;; tested it, so it is disabled by default. Search for ;;; *enable-straz-absolute-string-hack* to enable it. @@ -471,7 +502,7 @@ ;;; MAKE-PATHNAME with :host NIL. I'm not sure which version ;;; it is, but the current version doesn't have this problem. ;;; If given :host nil, it defaults the host to -;;; COMMON-LISP::*UNIX-HOST*. So I haven't "fixed" this +;;; COMMON-LISP::*UNIX-HOST*. So I haven't "fixed" this ;;; problem. ;;; 9-MAR-95 mk Integrated top-level commands for Allegro designed by bha ;;; into the code, with slight modifications. @@ -496,12 +527,12 @@ ;;; LispWorks and ACL(SGI) support, bug fixes for ACL 4.1/4.2. ;;; 14-MAR-95 fdmm Finally added the bit of code to discriminate cleanly ;;; among different lisps without relying on (software-version) -;;; idiosyncracies. +;;; idiosyncracies. ;;; You can now customize COMPILER-TYPE-TRANSLATION so that ;;; AFS-BINARY-DIRECTORY can return a different value for ;;; different lisps on the same platform. ;;; If you use only one compiler, do not care about supporting -;;; code for multiple versions of it, and want less verbose +;;; code for multiple versions of it, and want less verbose ;;; directory names, just set *MULTIPLE-LISP-SUPPORT* to nil. ;;; 17-MAR-95 lmh Added EVAL-WHEN for one of the MAKE-PACKAGE calls. ;;; CMU CL's RUN-PROGRAM is in the extensions package. @@ -510,6 +541,56 @@ ;;; suppress compiler warnings in CMU CL. ;;; 17-MAR-95 mk Added conditionalizations to avoid certain CMU CL compiler ;;; warnings reported by lmh. +;;; 19990610 ma Added shadowing of 'HARDCOPY-SYSTEM' for LW Personal Ed. + +;;; 19991211 ma NEW VERSION 4.0 started. +;;; 19991211 ma Merged in changes requested by T. Russ of +;;; ISI. Please refer to the special "ISI" comments to +;;; understand these changes +;;; 20000228 ma The symbols FIND-SYSTEM, LOAD-SYSTEM, DEFSYSTEM, +;;; COMPILE-SYSTEM and HARDCOPY-SYSTEM are no longer +;;; imported in the COMMON-LISP-USER package. +;;; Cfr. the definitions of *EXPORTS* and +;;; *SPECIAL-EXPORTS*. +;;; 2000-07-21 rlt Add COMPILER-OPTIONS to defstruct to allow user to +;;; specify special compiler options for a particular +;;; component. +;;; 2002-01-08 kmr Changed allegro symbols to lowercase to support +;;; case-sensitive images + +;;;--------------------------------------------------------------------------- +;;; ISI Comments +;;; +;;; 19991211 Marco Antoniotti +;;; These comments come from the "ISI Branch". I believe I did +;;; include the :load-always extension correctly. The other commets +;;; seem superseded by other changes made to the system in the +;;; following years. Some others are now useless with newer systems +;;; (e.g. filename truncation for new Windows based CL +;;; implementations.) + +;;; 1-OCT-92 tar Fixed problem with TI Lisp machines and append-directory. +;;; 1-OCT-92 tar Made major modifications to compile-file-operation and +;;; load-file-operation to reduce the number of probe-file +;;; and write-date inquiries. This makes the system run much +;;; faster through slow network connections. +;;; 13-OCT-92 tar Added :load-always slot to components. If this slot is +;;; specified as non-NIL, always loads the component. +;;; This does not trigger dependent compilation. +;;; (This can be useful when macro definitions needed +;;; during compilation are changed by later files. In +;;; this case, not reloading up-to-date files can +;;; cause different results.) +;;; 28-OCT-93 tar Allegro 4.2 causes an error on (pathname-device nil) +;;; 14-SEP-94 tar Disable importing of symbols into (CL-)USER package +;;; to minimize conflicts with other defsystem utilities. +;;; 10-NOV-94 tar Added filename truncation code to support Franz Allegro +;;; PC with it's 8 character filename limitation. +;;; 15-MAY-98 tar Changed host attribute for pathnames to support LispWorks +;;; (Windows) pathnames which reference other Drives. Also +;;; updated file name convention. +;;; 9-NOV-98 tar Updated new-append-directories for Lucid 5.0 +;;; ;;; ******************************** @@ -524,16 +605,19 @@ ;;; Franz Allegro Common Lisp 4.0/4.1/4.2 ;;; Franz Allegro Common Lisp for Windows (2.0) ;;; Lucid Common Lisp (Version 2.1 6-DEC-87) -;;; Lucid Common Lisp (3.0 [SPARC,SUN3]) +;;; Lucid Common Lisp (3.0 [SPARC,SUN3]) ;;; Lucid Common Lisp (4.0 [SPARC,SUN3]) ;;; VAXLisp (v2.2) [VAX/VMS] ;;; VAXLisp (v3.1) ;;; Harlequin LispWorks ;;; CLISP (CLISP3 [SPARC]) ;;; Symbolics XL12000 (Genera 8.3) +;;; Scieneer Common Lisp (SCL) 1.1 +;;; Macintosh Common Lisp +;;; ECL ;;; ;;; DEFSYSTEM needs to be tested in the following lisps: -;;; Macintosh Common Lisp +;;; OpenMCL ;;; Symbolics Common Lisp (8.0) ;;; KCL (June 3, 1987 or later) ;;; AKCL (1.86, June 30, 1987 or later) @@ -545,14 +629,14 @@ ;;; ******************************** ;;; To Do ************************** -;;; ******************************** +;;; ******************************** ;;; ;;; COMPONENT-FULL-PATHNAME is a major source of slowness in the system ;;; because of all the calls to the expensive operations MAKE-PATHNAME ;;; and NAMESTRING. To improve performance, DEFSYSTEM should be reworked ;;; to avoid any need to call MAKE-PATHNAME and NAMESTRING, as the logical ;;; pathnames package does. Unfortunately, I don't have the time to do this -;;; right now. Instead, I installed a temporary improvement by memoizing +;;; right now. Instead, I installed a temporary improvement by memoizing ;;; COMPONENT-FULL-PATHNAME to cache previous calls to the function on ;;; a component by component and type by type basis. The cache is ;;; cleared before each call to OOS, in case filename extensions change. @@ -566,7 +650,7 @@ ;;; ;;; True CLtL2 logical pathnames support -- can't do it, because CLtL2 ;;; doesn't have all the necessary primitives, and even in Allegro CL 4.2 -;;; (namestring #l"foo:bar;baz.lisp") +;;; (namestring #l"foo:bar;baz.lisp") ;;; does not work properly. ;;; ;;; Create separate stand-alone documentation for defsystem, and also @@ -594,8 +678,8 @@ ;;; ;;; A common error/misconception seems to involve assuming that :system ;;; components should include the name of the system file, and that -;;; defsystem will automatically load the file containing the system -;;; definition and propagate operations to it. Perhaps this would be a +;;; defsystem will automatically load the file containing the system +;;; definition and propagate operations to it. Perhaps this would be a ;;; nice feature to add. ;;; ;;; If a module is :load-only t, then it should not execute its :finally-do @@ -608,7 +692,7 @@ ;;; and inform the user of out of date fasls with the choice ;;; to load the old fasl or recompile and then load the new ;;; fasl? -;;; +;;; ;;; modify compile-file-operation to handle a query keyword.... ;;; ;;; Perhaps systems should keep around the file-write-date of the system @@ -627,13 +711,13 @@ ;;; :load-time for modules and systems -- maybe record the time the system ;;; was loaded/compiled here and print it in describe-system? ;;; -;;; Make it easy to define new functions that operate on a system. For -;;; example, a function that prints out a list of files that have changed, +;;; Make it easy to define new functions that operate on a system. For +;;; example, a function that prints out a list of files that have changed, ;;; hardcopy-system, edit-system, etc. ;;; -;;; If a user wants to have identical systems for different lisps, do we -;;; force the user to use logical pathnames? Or maybe we should write a -;;; generic-pathnames package that parses any pathname format into a +;;; If a user wants to have identical systems for different lisps, do we +;;; force the user to use logical pathnames? Or maybe we should write a +;;; generic-pathnames package that parses any pathname format into a ;;; uniform underlying format (i.e., pull the relevant code out of ;;; logical-pathnames.lisp and clean it up a bit). ;;; @@ -645,28 +729,28 @@ ;;; isn't found. However, is there any way to provide a more informative ;;; error message? Probably not, especially if the system has multiple ;;; files of the same name. -;;; +;;; ;;; For a module none of whose files needed to be compiled, have it print out ;;; "no files need recompilation". -;;; +;;; ;;; Write a system date/time to a file? (version information) I.e., if the ;;; filesystem supports file version numbers, write an auxiliary file to ;;; the system definition file that specifies versions of the system and -;;; the version numbers of the associated files. -;;; +;;; the version numbers of the associated files. +;;; ;;; Add idea of a patch directory. -;;; +;;; ;;; In verbose printout, have it log a date/time at start and end of -;;; compilation: -;;; Compiling system "test" on 31-Jan-91 21:46:47 +;;; compilation: +;;; Compiling system "test" on 31-Jan-91 21:46:47 ;;; by Defsystem version v2.0 01-FEB-91. -;;; +;;; ;;; Define other :force options: ;;; :query allows user to specify that a file not normally compiled ;;; should be. OR ;;; :confirm allows user to specify that a file normally compiled ;;; shouldn't be. AND -;;; +;;; ;;; We currently assume that compilation-load dependencies and if-changed ;;; dependencies are identical. However, in some cases this might not be ;;; true. For example, if we change a macro we have to recompile functions @@ -674,13 +758,13 @@ ;;; as the new CMU Common Lisp), but not if we change a function. Splitting ;;; these apart (with appropriate defaulting) would be nice, but not worth ;;; doing immediately since it may save only a couple of file recompilations, -;;; while making defsystem much more complex than it already is. -;;; +;;; while making defsystem much more complex than it already is. +;;; ;;; Current dependencies are limited to siblings. Maybe we should allow ;;; nephews and uncles? So long as it is still a DAG, we can sort it. ;;; Answer: No. The current setup enforces a structure on the modularity. ;;; Otherwise, why should we have modules if we're going to ignore it? -;;; +;;; ;;; Currently a file is recompiled more or less if the source is newer ;;; than the binary or if the file depends on a file that has changed ;;; (i.e., was recompiled in this session of a system operation). @@ -691,7 +775,7 @@ ;;; recompilation in the following circumstances: ;;; 1. If a file's source is newer than its binary, or ;;; 2. If a file's source is not newer than its binary, but the file -;;; depends directly or indirectly on a module (or file) that is newer. +;;; depends directly or indirectly on a module (or file) that is newer. ;;; For a regular file use the file-write-date (FWD) of the source or ;;; binary, whichever is more recent. For a load-only file, use the only ;;; available FWD. For a module, use the most recent (max) FWD of any of @@ -701,8 +785,8 @@ ;;; maybe just the FWD timestamp, and to use the value of CHANGED in ;;; needs-compilation decisions. (Use of NIL/T as values is an optimization. ;;; The FWD timestamp which indicates the most recent time of any changes -;;; should be sufficient.) This will affect not just the -;;; compile-file-operation, but also the load-file-operation because of +;;; should be sufficient.) This will affect not just the +;;; compile-file-operation, but also the load-file-operation because of ;;; compilation during load. Also, since FWDs will be used more prevalently, ;;; we probably should couple this change with the inclusion of load-times ;;; in the component defstruct. This is a tricky and involved change, and @@ -715,29 +799,29 @@ ;;; ******************************************************************** ;;; To use this system, -;;; 1. If you want to have a central registry of system definitions, +;;; 1. If you want to have a central registry of system definitions, ;;; modify the value of the variable *central-registry* below. ;;; 2. Load this file (defsystem.lisp) in either source or compiled form, ;;; 3. Load the file containing the "defsystem" definition of your system, ;;; 4. Use the function "operate-on-system" to do things to your system. -;;; For more information, see the documentation and examples in +;;; For more information, see the documentation and examples in ;;; lisp-utilities.ps. ;;; ******************************** ;;; Usage Comments ***************** ;;; ******************************** -;;; If you use symbols in the system definition file, they get interned in +;;; If you use symbols in the system definition file, they get interned in ;;; the COMMON-LISP-USER package, which can lead to name conflicts when ;;; the system itself seeks to export the same symbol to the COMMON-LISP-USER ;;; package. The workaround is to use strings instead of symbols for the -;;; names of components in the system definition file. In the major overhaul, +;;; names of components in the system definition file. In the major overhaul, ;;; perhaps the user should be precluded from using symbols for such ;;; identifiers. ;;; ;;; If you include a tilde in the :source-pathname in Allegro, as in "~/lisp", -;;; file name expansion is much slower than if you use the full pathname, +;;; file name expansion is much slower than if you use the full pathname, ;;; as in "/user/USERID/lisp". ;;; @@ -751,7 +835,7 @@ ;;; ******************************** ;;; Let's be smart about CLtL2 compatible Lisps: (eval-when (compile load eval) - #+(or (and allegro-version>= (version>= 4 0)) :mcl) + #+(or (and allegro-version>= (version>= 4 0)) :mcl :sbcl) (pushnew :cltl2 *features*)) ;;; ******************************** @@ -775,26 +859,42 @@ ;;; and MODULE-FILES being undefined. Don't worry about them. ;;; Now that ANSI CL includes PROVIDE and REQUIRE again, is this code -;;; necessary? - -#-(or (and :CMU (not :new-compiler)) :vms :mcl :lispworks +;;; necessary? + +#-(or :CMU + :vms + :mcl + :lispworks + :clisp + :gcl + :sbcl + :cormanlisp + :scl (and allegro-version>= (version>= 4 1))) -(eval-when #-(or :lucid :cmu17) (:compile-toplevel :load-toplevel :execute) - #+(or :lucid :cmu17) (compile load eval) - (unless (or (fboundp 'lisp::require) (fboundp 'user::require) +(eval-when #-(or :lucid) + (:compile-toplevel :load-toplevel :execute) + #+(or :lucid) + (compile load eval) + + (unless (or (fboundp 'lisp::require) + (fboundp 'user::require) + #+(and :excl (and allegro-version>= (version>= 4 0))) (fboundp 'cltl1::require) - #+lispworks (fboundp 'system::require)) - #-lispworks + + #+:lispworks + (fboundp 'system::require)) + + #-:lispworks (in-package "LISP") - #+lispworks + #+:lispworks (in-package "SYSTEM") (export '(*modules* provide require)) ;; Documentation strings taken almost literally from CLtL1. - - (defvar *MODULES* () + + (defvar *modules* () "List of names of the modules that have been loaded into Lisp so far. It is used by PROVIDE and REQUIRE.") @@ -805,7 +905,7 @@ ;; The directory listed in *library* is implementation dependent, ;; and is intended to be used by Lisp manufacturers as a place to - ;; store their implementation dependent packages. + ;; store their implementation dependent packages. ;; Lisp users should use systems and *central-registry* to store ;; their packages -- it is intended that *central-registry* is ;; set by the user, while *library* is set by the lisp. @@ -817,7 +917,7 @@ (defvar *module-files* (make-hash-table :test #'equal) "Hash table mapping from module names to list of files for the module. REQUIRE loads these files in order.") - + (defun canonicalize-module-name (name) ;; if symbol, string-downcase the printrep to make nicer filenames. (if (stringp name) name (string-downcase (string name)))) @@ -829,20 +929,20 @@ (defun module-files (name) (gethash name *module-files*)) - (defun PROVIDE (name) + (defun provide (name) "Adds a new module name to the list of modules maintained in the - variable *modules*, thereby indicating that the module has been + variable *modules*, thereby indicating that the module has been loaded. Name may be a string or symbol -- strings are case-senstive, while symbols are treated like lowercase strings. Returns T if NAME was not already present, NIL otherwise." (let ((module (canonicalize-module-name name))) (unless (find module *modules* :test #'string=) - ;; Module not present. Add it and return T to signify that it + ;; Module not present. Add it and return T to signify that it ;; was added. (push module *modules*) t))) - (defun REQUIRE (name &optional pathname) + (defun require (name &optional pathname) "Tests whether a module is already present. If the module is not present, loads the appropriate file or set of files. The pathname argument, if present, is a single pathname or list of pathnames @@ -857,7 +957,7 @@ (when (and pathname (not (listp pathname))) ;; If there's a pathname or pathnames, ensure that it's a list. (setf pathname (list pathname))) - (unless pathname + (unless pathname ;; If there's no pathname, try for a defmodule definition. (setf pathname (module-files module))) (unless pathname @@ -865,7 +965,7 @@ (when *library* (setf pathname (concatenate 'string *library* module)) ;; Test if the file exists. - ;; We assume that the lisp will default the file type + ;; We assume that the lisp will default the file type ;; appropriately. If it doesn't, use #+".fasl" or some ;; such in the concatenate form above. (if (probe-file pathname) @@ -875,8 +975,9 @@ ;; a load error. (setf pathname nil)))) ;; Now that we've got the list of pathnames, let's load them. - (dolist (pname pathname T) - (load pname :verbose nil))))))) + (dolist (pname pathname t) + (load pname :verbose nil)))))) + ) ; eval-when ;;; ******************************** ;;; Set up Package ***************** @@ -889,146 +990,267 @@ ;;; MAKE package. A nice side-effect is that the short nickname ;;; MK is my initials. -#-(or :cltl2 :lispworks) +#+(or clisp cormanlisp ecl (and gcl defpackage) sbcl) +(defpackage "MAKE" (:use "COMMON-LISP") (:nicknames "MK")) + +#-(or :sbcl :cltl2 :lispworks :ecl :scl) (in-package "MAKE" :nicknames '("MK")) ;;; For CLtL2 compatible lisps... -#+(and :excl (or :allegro-v4.0 :allegro-v4.1) :cltl2) -(defpackage "MAKE" (:nicknames "MK") (:use "COMMON-LISP") +#+(and :excl :allegro-v4.0 :cltl2) +(defpackage "MAKE" (:nicknames "MK" "make" "mk") (:use :common-lisp) (:import-from cltl1 *modules* provide require)) +;;; *** Marco Antoniotti <marcoxa@icsi.berkeley.edu> 19970105 +;;; In Allegro 4.1, 'provide' and 'require' are not external in +;;; 'CLTL1'. However they are in 'COMMON-LISP'. Hence the change. +#+(and :excl :allegro-v4.1 :cltl2) +(defpackage "MAKE" (:nicknames "MK" "make" "mk") (:use :common-lisp) ) + #+(and :excl :allegro-version>= (version>= 4 2)) -(defpackage "MAKE" (:nicknames "MK") (:use "COMMON-LISP")) - -#+lispworks -(defpackage "MAKE" (:nicknames "MK") (:use "COMMON-LISP") - (:import-from system *modules* provide require) - (:export "DEFSYSTEM" "COMPILE-SYSTEM" "LOAD-SYSTEM" +(defpackage "MAKE" (:nicknames "MK" "make" "mk") (:use :common-lisp)) + +#+:lispworks +(defpackage "MAKE" (:nicknames "MK") (:use "COMMON-LISP") + (:import-from "SYSTEM" *modules* provide require) + (:export "DEFSYSTEM" "COMPILE-SYSTEM" "LOAD-SYSTEM" "DEFINE-LANGUAGE" "*MULTIPLE-LISP-SUPPORT*")) -#+:mcl -(defpackage "MAKE" (:nicknames "MK") (:use "COMMON-LISP") +#+:mcl +(defpackage "MAKE" (:nicknames "MK") (:use "COMMON-LISP") (:import-from ccl *modules* provide require)) -#+(and :cltl2 (not (or (and :excl (or :allegro-v4.0 :allegro-v4.1)) :mcl))) + +;;; *** Marco Antoniotti <marcoxa@icsi.berkeley.edu> 19951012 +;;; The code below, is originally executed also for CMUCL. However I +;;; believe this is wrong, since CMUCL comes with its own defpackage. +;;; I added the extra :CMU in the 'or'. +#+(and :cltl2 (not (or :cmu :clisp :sbcl + (and :excl (or :allegro-v4.0 :allegro-v4.1)) + :mcl))) (eval-when (compile load eval) - (unless (find-package "MAKE") + (unless (find-package "MAKE") (make-package "MAKE" :nicknames '("MK") :use '("COMMON-LISP")))) -#+(or :cltl2 lispworks) +;;; *** Marco Antoniotti <marcoxa@icsi.berkeley.edu> 19951012 +;;; Here I add the proper defpackage for CMU +#+:CMU +(defpackage "MAKE" (:use "COMMON-LISP" "CONDITIONS") + (:nicknames "MK")) + +#+:sbcl +(defpackage "MAKE" (:use "COMMON-LISP") + (:nicknames "MK")) + +#+:scl +(defpackage :make (:use :common-lisp) + (:nicknames :mk)) + +#+(or :cltl2 :lispworks :scl) (eval-when (compile load eval) (in-package "MAKE")) -#+(and :excl (or :allegro-v4.0 :allegro-v4.1) :cltl2) +#+ecl +(in-package "MAKE") + +;;; *** Marco Antoniotti <marcoxa@icsi.berkeley.edu> 19970105 +;;; 'provide' is not esternal in 'CLTL1' in Allegro v 4.1 +#+(and :excl :allegro-v4.0 :cltl2) (cltl1:provide 'make) -#+:mcl +#+(and :excl :allegro-v4.0 :cltl2) +(provide 'make) + +#+:openmcl +(cl:provide 'make) + +#+(and :mcl (not :openmcl)) (ccl:provide 'make) + #+(and :cltl2 (not (or (and :excl (or :allegro-v4.0 :allegro-v4.1)) :mcl))) (provide 'make) -#+lispworks + +#+:lispworks (provide 'make) + #-(or :cltl2 :lispworks) (provide 'make) (pushnew :mk-defsystem *features*) +;;; Some compatibility issues. Mostly for CormanLisp. +;;; 2002-02-20 Marco Antoniotti + +#+cormanlisp +(defun compile-file-pathname (pathname-designator) + (merge-pathnames (make-pathname :type "fasl") + (etypecase pathname-designator + (pathname pathname-designator) + (string (parse-namestring pathname-designator)) + ;; We need FILE-STREAM here as well. + ))) + +#+cormanlisp +(defun file-namestring (pathname-designator) + (let ((p (etypecase pathname-designator + (pathname pathname-designator) + (string (parse-namestring pathname-designator)) + ;; We need FILE-STREAM here as well. + ))) + (namestring (make-pathname :directory () + :name (pathname-name p) + :type (pathname-type p) + :version (pathname-version p))))) + ;;; The external interface consists of *exports* and *other-exports*. ;;; AKCL (at least 1.603) grabs all the (export) forms and puts them up top in ;;; the compile form, so that you can't use a defvar with a default value and -;;; then a succeeding export as well. +;;; then a succeeding export as well. + (eval-when (compile load eval) - (defvar *special-exports* nil) - (defvar *exports* nil) - (defvar *other-exports* nil) - - (export (setq *exports* - '(operate-on-system - oos - afs-binary-directory afs-source-directory - files-in-system))) - (export (setq *special-exports* - '(defsystem compile-system load-system))) - (export (setq *other-exports* - '(*central-registry* - *bin-subdir* - machine-type-translation - software-type-translation - compiler-type-translation - ;; require - define-language - allegro-make-system-fasl - files-which-need-compilation - undefsystem - defined-systems - describe-system clean-system edit-system hardcopy-system - system-source-size make-system-tag-table - *defsystem-version* - *compile-during-load* - *minimal-load* - *dont-redefine-require* - *files-missing-is-an-error* - *reload-systems-from-disk* - *source-pathname-default* - *binary-pathname-default* - *multiple-lisp-support* - )))) + (defvar *special-exports* nil) + (defvar *exports* nil) + (defvar *other-exports* nil) + + (export (setq *exports* + '(operate-on-system + oos + afs-binary-directory afs-source-directory + files-in-system))) + (export (setq *special-exports* + '())) + (export (setq *other-exports* + '(*central-registry* + *bin-subdir* + + add-registry-location + list-central-registry-directories + print-central-registry-directories + find-system + defsystem compile-system load-system hardcopy-system + + system-definition-pathname + + missing-component + missing-component-name + missing-component-component + missing-module + missing-system + + register-foreign-system + + machine-type-translation + software-type-translation + compiler-type-translation + ;; require + define-language + allegro-make-system-fasl + files-which-need-compilation + undefsystem + defined-systems + describe-system clean-system edit-system ;hardcopy-system + system-source-size make-system-tag-table + *defsystem-version* + *compile-during-load* + *minimal-load* + *dont-redefine-require* + *files-missing-is-an-error* + *reload-systems-from-disk* + *source-pathname-default* + *binary-pathname-default* + *multiple-lisp-support* + + run-unix-program + *default-shell* + run-shell-command + ))) + ) ;;; We import these symbols into the USER package to make them ;;; easier to use. Since some lisps have already defined defsystem ;;; in the user package, we may have to shadowing-import it. -#-(OR :CMU :CCL :ALLEGRO :EXCL :lispworks :symbolics) +#| +#-(or :sbcl :cmu :ccl :allegro :excl :lispworks :symbolics) (eval-when (compile load eval) (import *exports* #-(or :cltl2 :lispworks) "USER" #+(or :cltl2 :lispworks) "COMMON-LISP-USER") - (import *special-exports* #-(or :cltl2 :lispworks) "USER" + (import *special-exports* #-(or :cltl2 :lispworks) "USER" #+(or :cltl2 :lispworks) "COMMON-LISP-USER")) -#+(OR :CMU :CCL :ALLEGRO :EXCL :lispworks :symbolics) +#+(or :sbcl :cmu :ccl :allegro :excl :lispworks :symbolics) (eval-when (compile load eval) - (import *exports* #-(or :cltl2 :lispworks) "USER" + (import *exports* #-(or :cltl2 :lispworks) "USER" #+(or :cltl2 :lispworks) "COMMON-LISP-USER") - (shadowing-import *special-exports* - #-(or :cltl2 :lispworks) "USER" + (shadowing-import *special-exports* + #-(or :cltl2 :lispworks) "USER" #+(or :cltl2 :lispworks) "COMMON-LISP-USER")) +|# -#-(or :PCL :CLOS) -(when (find-package "PCL") +#-(or :PCL :CLOS :scl) +(when (find-package "PCL") (pushnew :pcl *modules*) (pushnew :pcl *features*)) + ;;; ******************************** ;;; Defsystem Version ************** ;;; ******************************** -(defparameter *defsystem-version* "v3.0 14-MAR-95" - "Current version number/date for Defsystem.") +(defparameter *defsystem-version* "3.6 Interim, 2008-12-18" + "Current version number/date for MK:DEFSYSTEM.") + ;;; ******************************** ;;; Customizable System Parameters * ;;; ******************************** -(defvar *dont-redefine-require* nil - "If T, prevents the redefinition of REQUIRE. This is useful for - lisps that treat REQUIRE specially in the compiler.") +(defvar *dont-redefine-require* + #+cmu (if (find-symbol "*MODULE-PROVIDER-FUNCTIONS*" "EXT") t nil) + #+(or clisp sbcl) t + #+allegro t + #-(or cmu sbcl clisp allegro) nil + "If T, prevents the redefinition of REQUIRE. +This is useful for lisps that treat REQUIRE specially in the compiler.") + (defvar *multiple-lisp-support* t "If T, afs-binary-directory will try to return a name dependent - on the particular lisp compiler version being used.") +on the particular lisp compiler version being used.") + +;;; home-subdirectory -- ;;; HOME-SUBDIRECTORY is used only in *central-registry* below. ;;; Note that CMU CL 17e does not understand the ~/ shorthand for home ;;; directories. +;;; +;;; Note: +;;; 20020220 Marco Antoniotti +;;; The #-cormanlisp version is the original one, which is broken anyway, since +;;; it is UNIX dependent. +;;; I added the kludgy #+cormalisp (v 1.5) one, since it is missing +;;; the ANSI USER-HOMEDIR-PATHNAME function. + +#-cormanlisp (defun home-subdirectory (directory) (concatenate 'string - #+:cmu "home:" - #-:cmu (let ((homedir (user-homedir-pathname))) - (or (when homedir (namestring homedir)) - "~/")) + #+(or :sbcl :cmu :scl) + "home:" + #-(or :sbcl :cmu :scl) + (let ((homedir (user-homedir-pathname))) + (or (and homedir (namestring homedir)) + "~/")) directory)) + +#+cormanlisp +(defun home-subdirectory (directory) + (declare (type string directory)) + (concatenate 'string "C:\\" directory)) + + ;;; The following function is available for users to add ;;; (setq mk:*central-registry* (defsys-env-search-path)) ;;; to Lisp init files in order to use the value of the DEFSYSPATH ;;; instead of directly coding it in the file. + #+:allegro (defun defsys-env-search-path () "This function grabs the value of the DEFSYSPATH environment variable @@ -1036,73 +1258,121 @@ (remove-duplicates (split-string (sys:getenv "DEFSYSPATH") :item #\:) :test #'string-equal)) + ;;; Change this variable to set up the location of a central ;;; repository for system definitions if you want one. -;;; This is a defvar to allow users to change the value in their +;;; This is a defvar to allow users to change the value in their ;;; lisp init files without worrying about it reverting if they ;;; reload defsystem for some reason. ;;; Note that if a form is included in the registry list, it will be evaluated ;;; in COMPUTE-SYSTEM-PATH to return the appropriate directory to check. -(defvar *central-registry* +(defvar *central-registry* `(;; Current directory "./" - #+:lucid (working-directory) - #+(or :allegro ACLPC) (excl:current-directory) - #+:cmu (ext:default-directory) - #+:lispworks - ,(multiple-value-bind (major minor) (system::lispworks-version) - (if (or (> major 3) + #+:LUCID (working-directory) + #+ACLPC (current-directory) + #+:allegro (excl:current-directory) + #+:clisp (ext:default-directory) + #+:sbcl (progn *default-pathname-defaults*) + #+(or :cmu :scl) (ext:default-directory) + ;; *** Marco Antoniotti <marcoxa@icsi.berkeley.edu> + ;; Somehow it is better to qualify default-directory in CMU with + ;; the appropriate package (i.e. "EXTENSIONS".) + ;; Same for Allegro. + #+(and :lispworks (not :lispworks4) (not :lispworks5)) + ,(multiple-value-bind (major minor) + #-:lispworks-personal-edition + (system::lispworks-version) + #+:lispworks-personal-edition + (values system::*major-version-number* + system::*minor-version-number*) + (if (or (> major 3) (and (= major 3) (> minor 2)) (and (= major 3) (= minor 2) (equal (lisp-implementation-version) "3.2.1"))) - `(make-pathname :directory + `(make-pathname :directory ,(find-symbol "*CURRENT-WORKING-DIRECTORY*" (find-package "SYSTEM"))) - (find-symbol "*CURRENT-WORKING-DIRECTORY*" - (find-package "LW")))) - + (find-symbol "*CURRENT-WORKING-DIRECTORY*" + (find-package "LW")))) + #+(or :lispworks4 :lispworks5) + (hcl:get-working-directory) ;; Home directory + #-sbcl (mk::home-subdirectory "lisp/systems/") ;; Global registry - "/usr/local/lisp/Registry/") - "Central directory of system definitions. May be either a single - directory pathname, or a list of directory pathnames to be checked - after the local directory.") + #+unix (pathname "/usr/local/lisp/Registry/") + ) + "Central directory of system definitions. +May be either a single directory pathname, or a list of directory +pathnames to be checked after the local directory.") + + +(defun add-registry-location (pathname) + "Adds a path to the central registry." + (pushnew pathname *central-registry* :test #'equal)) + + +(defun registry-pathname (registry) + "Return the pathname represented by the element of *CENTRAL-REGISTRY*." + (typecase registry + (string (pathname registry)) + (pathname registry) + (otherwise (pathname (eval registry))))) + + +(defun print-central-registry-directories (&optional (stream *standard-output*)) + (dolist (registry *central-registry*) + (print (registry-pathname registry) stream))) + + +(defun list-central-registry-directories () + (mapcar #'registry-pathname *central-registry*)) + (defvar *bin-subdir* ".bin/" "The subdirectory of an AFS directory where the binaries are really kept.") -;;; These variables set up defaults for operate-on-system, and are used + +;;; These variables set up defaults for operate-on-system, and are used ;;; for communication in lieu of parameter passing. Yes, this is bad, ;;; but it keeps the interface small. Also, in the case of the -if-no-binary ;;; variables, parameter passing would require multiple value returns ;;; from some functions. Why make life complicated? + (defvar *tell-user-when-done* nil "If T, system will print ...DONE at the end of an operation") -(defvar *oos-verbose* nil + +(defvar *oos-verbose* nil "Operate on System Verbose Mode") -(defvar *oos-test* nil + +(defvar *oos-test* nil "Operate on System Test Mode") + (defvar *load-source-if-no-binary* nil "If T, system will try loading the source if the binary is missing") + (defvar *bother-user-if-no-binary* t - "If T, the system will ask the user whether to load the source if + "If T, the system will ask the user whether to load the source if the binary is missing") + (defvar *load-source-instead-of-binary* nil "If T, the system will load the source file instead of the binary.") + (defvar *compile-during-load* :query "If T, the system will compile source files during load if the - binary file is missing. If :query, it will ask the user for - permission first.") +binary file is missing. If :query, it will ask the user for +permission first.") + (defvar *minimal-load* nil "If T, the system tries to avoid reloading files that were already loaded - and up to date.") +and up to date.") (defvar *files-missing-is-an-error* t - "If both the source and binary files are missing, signal a continuable + "If both the source and binary files are missing, signal a continuable error instead of just a warning.") (defvar *operations-propagate-to-subsystems* t @@ -1111,57 +1381,62 @@ or by another defsystem form.") ;;; Particular to CMULisp + (defvar *compile-error-file-type* "err" "File type of compilation error file in cmulisp") + (defvar *cmu-errors-to-terminal* t "Argument to :errors-to-terminal in compile-file in cmulisp") + (defvar *cmu-errors-to-file* t "If T, cmulisp will write an error file during compilation") + ;;; ******************************** ;;; Global Variables *************** ;;; ******************************** ;;; Massage people's *features* into better shape. -(eval-when (compile load eval) +(eval-when (compile load eval) (dolist (feature *features*) (when (and (symbolp feature) ; 3600 (equal (symbol-name feature) "CMU")) (pushnew :CMU *features*))) - + #+Lucid (when (search "IBM RT PC" (machine-type)) (pushnew :ibm-rt-pc *features*)) ) + ;;; *filename-extensions* is a cons of the source and binary extensions. (defvar *filename-extensions* (car `(#+(and Symbolics Lispm) ("lisp" . "bin") #+(and dec common vax (not ultrix)) ("LSP" . "FAS") #+(and dec common vax ultrix) ("lsp" . "fas") #+ACLPC ("lsp" . "fsl") - #+CLISP ("lsp" . "fas") + #+CLISP ("lisp" . "fas") #+KCL ("lsp" . "o") + ;;#+ECL ("lsp" . "so") #+IBCL ("lsp" . "o") #+Xerox ("lisp" . "dfasl") ;; Lucid on Silicon Graphics - #+(and Lucid MIPS) ("lisp" . "mbin") + #+(and Lucid MIPS) ("lisp" . "mbin") ;; the entry for (and lucid hp300) must precede ;; that of (and lucid mc68000) for hp9000/300's running lucid, ;; since *features* on hp9000/300's also include the :mc68000 ;; feature. #+(and lucid hp300) ("lisp" . "6bin") #+(and Lucid MC68000) ("lisp" . "lbin") - #+(and Lucid Vax) ("lisp" . "vbin") + #+(and Lucid Vax) ("lisp" . "vbin") #+(and Lucid Prime) ("lisp" . "pbin") #+(and Lucid SUNRise) ("lisp" . "sbin") #+(and Lucid SPARC) ("lisp" . "sbin") #+(and Lucid :IBM-RT-PC) ("lisp" . "bbin") ;; PA is Precision Architecture, HP's 9000/800 RISC cpu - #+(and Lucid PA) ("lisp" . "hbin") - #+excl ("cl" . "fasl") - #+CMU ("lisp" . ,(or (c:backend-fasl-file-type c:*backend*) - "fasl")) + #+(and Lucid PA) ("lisp" . "hbin") + #+excl ("cl" . ,(pathname-type (compile-file-pathname "foo.cl"))) + #+(or :cmu :scl) ("lisp" . ,(or (c:backend-fasl-file-type c:*backend*) "fasl")) ; #+(and :CMU (not (or :sgi :sparc))) ("lisp" . "fasl") ; #+(and :CMU :sgi) ("lisp" . "sgif") ; #+(and :CMU :sparc) ("lisp" . "sparcf") @@ -1170,38 +1445,34 @@ #+TI ("lisp" . #.(string (si::local-binary-file-type))) #+:gclisp ("LSP" . "F2S") #+pyramid ("clisp" . "o") - #+:coral ("lisp" . "fasl") + ;; Harlequin LispWorks #+:lispworks ("lisp" . ,COMPILER:*FASL-EXTENSION-STRING*) ; #+(and :sun4 :lispworks) ("lisp" . "wfasl") ; #+(and :mips :lispworks) ("lisp" . "mfasl") - #+:mcl ("lisp" . "fasl") - #+clisp ("lisp" . "fas") - - ;; Otherwise, - ("lisp" . "fasl"))) - "Filename extensions for Common Lisp. A cons of the form - (Source-Extension . Binary-Extension). If the system is - unknown (as in *features* not known), defaults to lisp and lbin.") + #+:mcl ("lisp" . ,(pathname-type (compile-file-pathname "foo.lisp"))) + #+:coral ("lisp" . "fasl") -;;; In ANSI CL, we should be able to get the object file type by -;;; doing (pathname-type (compile-file-pathname "foo.lisp")). + ;; Otherwise, + ("lisp" . ,(pathname-type (compile-file-pathname "foo.lisp"))))) + "Filename extensions for Common Lisp. +A cons of the form (Source-Extension . Binary-Extension). If the +system is unknown (as in *features* not known), defaults to lisp and +fasl.") (defvar *system-extension* ;; MS-DOS systems can only handle three character extensions. #-ACLPC "system" - #+ACLPC "sys" + #+ACLPC "sys" "The filename extension to use with systems.") -(defvar *standard-source-file-types* '("lisp" "l" "cl" "lsp")) -(defvar *standard-binary-file-types* '("fasl")) ;;; The above variables and code should be extended to allow a list of ;;; valid extensions for each lisp implementation, instead of a single ;;; extension. When writing a file, the first extension should be used. ;;; But when searching for a file, every extension in the list should -;;; be used. For example, CMU Common Lisp recognizes "lisp" "l" "cl" and -;;; "lsp" (*load-source-types*) as source code extensions, and +;;; be used. For example, CMU Common Lisp recognizes "lisp" "l" "cl" and +;;; "lsp" (*load-source-types*) as source code extensions, and ;;; (c:backend-fasl-file-type c:*backend*) ;;; (c:backend-byte-fasl-file-type c:*backend*) ;;; and "fasl" as binary (object) file extensions (*load-object-types*). @@ -1212,59 +1483,70 @@ ;;; Note that in any event, the toplevel system (defined with defsystem) ;;; will have its dependencies delayed. Not having dependencies delayed ;;; might be useful if we define several systems within one defsystem. -(defvar *system-dependencies-delayed* t + +(defvar *system-dependencies-delayed* t "If T, system dependencies are expanded at run time") + ;;; Replace this with consp, dammit! (defun non-empty-listp (list) (and list (listp list))) + ;;; ******************************** ;;; Component Operation Definition * ;;; ******************************** +(eval-when (:compile-toplevel :load-toplevel :execute) + (defvar *version-dir* nil "The version subdir. bound in operate-on-system.") + (defvar *version-replace* nil "The version replace. bound in operate-on-system.") + (defvar *version* nil - "Default version.") + "Default version.")) (defvar *component-operations* (make-hash-table :test #'equal) "Hash table of (operation-name function) pairs.") + (defun component-operation (name &optional operation) (if operation (setf (gethash name *component-operations*) operation) (gethash name *component-operations*))) + ;;; ******************************** ;;; AFS @sys immitator ************* ;;; ******************************** ;;; mc 11-Apr-91: Bashes MCL's point reader, so commented out. -#-:mcl +#-:mcl (eval-when (compile load eval) ;; Define #@"foo" as a shorthand for (afs-binary-directory "foo"). ;; For example, ;; <cl> #@"foo" ;; "foo/.bin/rt_mach/" - (set-dispatch-macro-character - #\# #\@ + (set-dispatch-macro-character + #\# #\@ #'(lambda (stream char arg) (declare (ignore char arg)) `(afs-binary-directory ,(read stream t nil t))))) -(defconstant *find-irix-version-script* + +(defvar *find-irix-version-script* "\"1,4 d\\ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ /./,$ d\\ \"") + (defun operating-system-version () #+(and :sgi :excl) (let* ((full-version (software-version)) (blank-pos (search " " full-version)) (os (subseq full-version 0 blank-pos)) - (version-rest (subseq full-version + (version-rest (subseq full-version (1+ blank-pos))) os-version) (setq blank-pos (search " " version-rest)) @@ -1279,7 +1561,7 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ (1+ blank-pos))) (concatenate 'string os " " os-version)) ; " " version-rest - #+(and :sgi :cmu) + #+(and :sgi :cmu :sbcl) (concatenate 'string (software-type) (software-version)) @@ -1287,7 +1569,7 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ (let ((soft-type (software-type))) (if (equalp soft-type "IRIX5") (progn - (foreign:call-system + (foreign:call-system (format nil "versions ~A | sed -e ~A > ~A" "eoe1" *find-irix-version-script* @@ -1300,28 +1582,35 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ #-(or (and :excl :sgi) (and :cmu :sgi) (and :lispworks :irix)) (software-type)) + (defun compiler-version () - #+lispworks (concatenate 'string + #+:lispworks (concatenate 'string "lispworks" " " (lisp-implementation-version)) - #+excl (concatenate 'string - "excl" " " EXCL::*COMMON-LISP-VERSION-NUMBER*) - #+cmu (concatenate 'string + #+excl (concatenate 'string + "excl" " " excl::*common-lisp-version-number*) + #+sbcl (concatenate 'string + "sbcl" " " (lisp-implementation-version)) + #+cmu (concatenate 'string "cmu" " " (lisp-implementation-version)) + #+scl (concatenate 'string + "scl" " " (lisp-implementation-version)) + #+kcl "kcl" + #+IBCL "ibcl" #+akcl "akcl" #+gcl "gcl" + #+ecl "ecl" #+lucid "lucid" #+ACLPC "aclpc" #+CLISP "clisp" - #+KCL "kcl" - #+IBCL "ibcl" #+Xerox "xerox" #+symbolics "symbolics" #+mcl "mcl" #+coral "coral" #+gclisp "gclisp" ) - + + (defun afs-binary-directory (root-directory) ;; Function for obtaining the directory AFS's @sys feature would have ;; chosen when we're not in AFS. This function is useful as the argument @@ -1332,18 +1621,18 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ (machine-type) #+(and :sgi :allegro-version>= (version>= 4 2)) (machine-version))) - (software (software-type-translation - #-(and :sgi (or :cmu - (and :allegro-version>= (version>= 4 2)))) + (software (software-type-translation + #-(and :sgi (or :cmu :sbcl :scl + (and :allegro-version>= (version>= 4 2)))) (software-type) - #+(and :sgi (or :cmu + #+(and :sgi (or :cmu :sbcl :scl (and :allegro-version>= (version>= 4 2)))) (operating-system-version))) (lisp (compiler-type-translation (compiler-version)))) ;; pmax_mach rt_mach sun3_35 sun3_mach vax_mach (setq root-directory (namestring root-directory)) (setq root-directory (ensure-trailing-slash root-directory)) - (format nil "~A~@[~A~]~@[~A/~]" + (format nil "~A~@[~A~]~@[~A/~]" root-directory *bin-subdir* (if *multiple-lisp-support* @@ -1356,36 +1645,46 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ ;; to :source-pathname in defsystem. (setq root-directory (namestring root-directory)) (setq root-directory (ensure-trailing-slash root-directory)) - (format nil "~A~@[~A/~]" + (format nil "~A~@[~A/~]" root-directory (and version-flag (translate-version *version*)))) + (defun null-string (s) (when (stringp s) (string-equal s ""))) + (defun ensure-trailing-slash (dir) - (if (and dir + (if (and dir (not (null-string dir)) (not (char= (char dir (1- (length dir))) - #\/))) + #\/)) + (not (char= (char dir + (1- (length dir))) + #\\)) + ) (concatenate 'string dir "/") dir)) + (defun afs-component (machine software &optional lisp) - (format nil "~@[~A~]~@[_~A~]~@[_~A~]" - machine + (format nil "~@[~A~]~@[_~A~]~@[_~A~]" + machine (or software "mach") lisp)) + (defvar *machine-type-alist* (make-hash-table :test #'equal) "Hash table for retrieving the machine-type") + (defun machine-type-translation (name &optional operation) (if operation (setf (gethash (string-upcase name) *machine-type-alist*) operation) (gethash (string-upcase name) *machine-type-alist*))) + (machine-type-translation "IBM RT PC" "rt") (machine-type-translation "DEC 3100" "pmax") (machine-type-translation "DEC VAX-11" "vax") @@ -1398,30 +1697,41 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ (machine-type-translation "Silicon Graphics Iris 4D (R3000)" "sgi") (machine-type-translation "Silicon Graphics Iris 4D (R4000)" "sgi") (machine-type-translation "Silicon Graphics Iris 4D (R4400)" "sgi") -(machine-type-translation "IP22" "sgi") +(machine-type-translation "IP22" "sgi") ;;; MIPS R4000 Processor Chip Revision: 3.0 ;;; MIPS R4400 Processor Chip Revision: 5.0 ;;; MIPS R4600 Processor Chip Revision: 1.0 -(machine-type-translation "IP20" "sgi") +(machine-type-translation "IP20" "sgi") ;;; MIPS R4000 Processor Chip Revision: 3.0 -(machine-type-translation "IP17" "sgi") +(machine-type-translation "IP17" "sgi") ;;; MIPS R4000 Processor Chip Revision: 2.2 -(machine-type-translation "IP12" "sgi") +(machine-type-translation "IP12" "sgi") ;;; MIPS R2000A/R3000 Processor Chip Revision: 3.0 -(machine-type-translation "IP7" "sgi") +(machine-type-translation "IP7" "sgi") ;;; MIPS R2000A/R3000 Processor Chip Revision: 3.0 +(machine-type-translation "x86" "x86") +;;; ACL +(machine-type-translation "IBM PC Compatible" "x86") +;;; LW +(machine-type-translation "I686" "x86") +;;; LW +(machine-type-translation "PC/386" "x86") +;;; CLisp Win32 + #+(and :lucid :sun :mc68000) (machine-type-translation "unknown" "sun3") - + (defvar *software-type-alist* (make-hash-table :test #'equal) "Hash table for retrieving the software-type") + (defun software-type-translation (name &optional operation) (if operation (setf (gethash (string-upcase name) *software-type-alist*) operation) (gethash (string-upcase name) *software-type-alist*))) + (software-type-translation "BSD UNIX" "mach") ; "unix" (software-type-translation "Ultrix" "mach") ; "ultrix" (software-type-translation "SunOS" "SunOS") @@ -1430,38 +1740,74 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ (software-type-translation "IRIX5" "irix5") ;;(software-type-translation "IRIX liasg5 5.2 02282016 IP22 mips" "irix5") ; (software-version) -(software-type-translation "IRIX 5.2" "irix5") -(software-type-translation "IRIX 5.3" "irix5") +(software-type-translation "IRIX 5.2" "irix5") +(software-type-translation "IRIX 5.3" "irix5") (software-type-translation "IRIX5.2" "irix5") (software-type-translation "IRIX5.3" "irix5") + +(software-type-translation "Linux" "linux") ; Lispworks for Linux +(software-type-translation "Linux 2.x, Redhat 6.x and 7.x" "linux") ; ACL +(software-type-translation "Microsoft Windows 9x/Me and NT/2000/XP" "win32") +(software-type-translation "Windows NT" "win32") ; LW for Windows +(software-type-translation "ANSI C program" "ansi-c") ; CLISP +(software-type-translation "C compiler" "ansi-c") ; CLISP for Win32 + (software-type-translation nil "") #+:lucid -(software-type-translation "Unix" +(software-type-translation "Unix" #+:lcl4.0 "4.0" #+(and :lcl3.0 (not :lcl4.0)) "3.0") + (defvar *compiler-type-alist* (make-hash-table :test #'equal) "Hash table for retrieving the Common Lisp type") + (defun compiler-type-translation (name &optional operation) (if operation (setf (gethash (string-upcase name) *compiler-type-alist*) operation) (gethash (string-upcase name) *compiler-type-alist*))) + (compiler-type-translation "lispworks 3.2.1" "lispworks") (compiler-type-translation "lispworks 3.2.60 beta 6" "lispworks") +(compiler-type-translation "lispworks 4.2.0" "lispworks") + + +#+allegro +(eval-when (:compile-toplevel :load-toplevel :execute) + (unless (or (find :case-sensitive common-lisp:*features*) + (find :case-insensitive common-lisp:*features*)) + (if (or (eq excl:*current-case-mode* :case-sensitive-lower) + (eq excl:*current-case-mode* :case-sensitive-upper)) + (push :case-sensitive common-lisp:*features*) + (push :case-insensitive common-lisp:*features*)))) + + +#+(and allegro case-sensitive ics) +(compiler-type-translation "excl 6.1" "excl-m") +#+(and allegro case-sensitive (not ics)) +(compiler-type-translation "excl 6.1" "excl-m8") + +#+(and allegro case-insensitive ics) +(compiler-type-translation "excl 6.1" "excl-a") +#+(and allegro case-insensitive (not ics)) +(compiler-type-translation "excl 6.1" "excl-a8") + (compiler-type-translation "excl 4.2" "excl") (compiler-type-translation "excl 4.1" "excl") (compiler-type-translation "cmu 17f" "cmu") (compiler-type-translation "cmu 17e" "cmu") (compiler-type-translation "cmu 17d" "cmu") + ;;; ******************************** ;;; System Names ******************* ;;; ******************************** ;;; If you use strings for system names, be sure to use the same case -;;; as it appears on disk, if the filesystem is case sensitive. +;;; as it appears on disk, if the filesystem is case sensitive. + (defun canonicalize-system-name (name) ;; Originally we were storing systems using GET. This meant that the ;; name of a system had to be a symbol, so we interned the symbols @@ -1469,24 +1815,29 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ ;; storing the systems in a hash table, we've switched to using strings. ;; Since the hash table is case sensitive, we use uppercase strings. ;; (Names of modules and files may be symbols or strings.) - #|(if (keywordp name) + #||(if (keywordp name) name - (intern (string-upcase (string name)) "KEYWORD"))|# + (intern (string-upcase (string name)) "KEYWORD"))||# (if (stringp name) (string-upcase name) (string-upcase (string name)))) + (defvar *defined-systems* (make-hash-table :test #'equal) "Hash table containing the definitions of all known systems.") + (defun get-system (name) "Returns the definition of the system named NAME." (gethash (canonicalize-system-name name) *defined-systems*)) + (defsetf get-system (name) (value) `(setf (gethash (canonicalize-system-name ,name) *defined-systems*) ,value)) + (defun undefsystem (name) "Removes the definition of the system named NAME." - (setf (get-system name) nil)) + (remhash (canonicalize-system-name name) *defined-systems*)) + (defun defined-systems () "Returns a list of defined systems." @@ -1497,11 +1848,19 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ *defined-systems*) result)) + +(defun defined-names-and-systems () + "Returns a a-list of defined systems along with their names." + (loop for sname being the hash-keys of *defined-systems* + using (hash-value s) + collect (cons sname s))) + + ;;; ******************************** ;;; Directory Pathname Hacking ***** ;;; ******************************** -;;; Unix example: An absolute directory starts with / while a +;;; Unix example: An absolute directory starts with / while a ;;; relative directory doesn't. A directory ends with /, while ;;; a file's pathname doesn't. This is important 'cause ;;; (pathname-directory "foo/bar") will return "foo" and not "foo/". @@ -1527,7 +1886,7 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ ;;; (merge-pathnames "[root.]file.ext" "[son]") ==> "[root.son]file.ext" ;;; (merge-pathnames "[root]file.ext" "[son]") ==> "[root]file.ext" ;;; Thus the problem with the #-VMS code was that it was merging x y into -;;; [[x]][y] instead of [x][y] or [x]y. +;;; [[x]][y] instead of [x][y] or [x]y. ;;; Miscellaneous notes: ;;; On GCLisp, the following are equivalent: @@ -1542,7 +1901,7 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ ;; Version of append-directories for CLtL2-compliant lisps. In particular, ;; they must conform to section 23.1.3 "Structured Directories". We are ;; willing to fix minor aberations in this function, but not major ones. - ;; Tested in Allegro CL 4.0 (SPARC), Allegro CL 3.1.12 (DEC 3100), + ;; Tested in Allegro CL 4.0 (SPARC), Allegro CL 3.1.12 (DEC 3100), ;; CMU CL old and new compilers, Lucid 3.0, Lucid 4.0. (setf absolute-dir (or absolute-dir "") relative-dir (or relative-dir "")) @@ -1555,64 +1914,87 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ (abs-directory (directory-to-list (pathname-directory abs-dir))) (abs-keyword (when (keywordp (car abs-directory)) (pop abs-directory))) - (abs-name (file-namestring abs-dir)) ; was pathname-name + ;; Stig (July 2001): + ;; Somehow CLISP dies on the next line, but NIL is ok. + (abs-name (ignore-errors (file-namestring abs-dir))) ; was pathname-name (rel-directory (directory-to-list (pathname-directory rel-dir))) (rel-keyword (when (keywordp (car rel-directory)) (pop rel-directory))) - (rel-file (or (file-namestring rel-dir) "")) + ;; rtoy: Why should any Lisp want rel-file? Shouldn't using + ;; rel-name and rel-type work for every Lisp? + #-(or :MCL :sbcl :clisp :cmu) (rel-file (file-namestring rel-dir)) + ;; Stig (July 2001); + ;; These values seems to help clisp as well + #+(or :MCL :sbcl :clisp :cmu) (rel-name (pathname-name rel-dir)) + #+(or :MCL :sbcl :clisp :cmu) (rel-type (pathname-type rel-dir)) (directory nil)) + ;; TI Common Lisp pathnames can return garbage for file names because ;; of bizarreness in the merging of defaults. The following code makes ;; sure that the name is a valid name by comparing it with the ;; pathname-name. It also strips TI specific extensions and handles - ;; the necessary case conversion. TI maps upper back into lower case + ;; the necessary case conversion. TI maps upper back into lower case ;; for unix files! - #+TI(if (search (pathname-name abs-dir) abs-name :test #'string-equal) - (setf abs-name (string-right-trim "." (string-upcase abs-name))) - (setf abs-name nil)) - #+TI(if (search (pathname-name rel-dir) rel-file :test #'string-equal) - (setf rel-file (string-right-trim "." (string-upcase rel-file))) - (setf rel-file nil)) + #+TI (if (search (pathname-name abs-dir) abs-name :test #'string-equal) + (setf abs-name (string-right-trim "." (string-upcase abs-name))) + (setf abs-name nil)) + #+TI (if (search (pathname-name rel-dir) rel-file :test #'string-equal) + (setf rel-file (string-right-trim "." (string-upcase rel-file))) + (setf rel-file nil)) ;; Allegro v4.0/4.1 parses "/foo" into :directory '(:absolute :root) - ;; and filename "foo". The namestring of a pathname with + ;; and filename "foo". The namestring of a pathname with ;; directory '(:absolute :root "foo") ignores everything after the ;; :root. #+(and allegro-version>= (version>= 4 0)) (when (eq (car abs-directory) :root) (pop abs-directory)) #+(and allegro-version>= (version>= 4 0)) (when (eq (car rel-directory) :root) (pop rel-directory)) + (when (and abs-name (not (null-string abs-name))) ; was abs-name (cond ((and (null abs-directory) (null abs-keyword)) #-(or :lucid :kcl :akcl TI) (setf abs-keyword :relative) (setf abs-directory (list abs-name))) (t (setf abs-directory (append abs-directory (list abs-name)))))) - (when (and (null abs-directory) - (or (null abs-keyword) - ;; In Lucid, an abs-dir of nil gets a keyword of + (when (and (null abs-directory) + (or (null abs-keyword) + ;; In Lucid, an abs-dir of nil gets a keyword of ;; :relative since (pathname-directory (pathname "")) ;; returns (:relative) instead of nil. #+:lucid (eq abs-keyword :relative)) rel-keyword) + ;; The following feature switches seem necessary in CMUCL + ;; Marco Antoniotti 19990707 + #+(or :sbcl :CMU) + (if (typep abs-dir 'logical-pathname) + (setf abs-keyword :absolute) + (setf abs-keyword rel-keyword)) + #-(or :sbcl :CMU) (setf abs-keyword rel-keyword)) (setf directory (append abs-directory rel-directory)) (when abs-keyword (setf directory (cons abs-keyword directory))) - (namestring + (namestring (make-pathname :host host :device device - :directory - #-(and :cmu (not :cmu17)) directory - #+(and :cmu (not :cmu17)) (coerce directory 'simple-vector) - :name rel-file)))) + :directory + directory + :name + #-(or :sbcl :MCL :clisp :cmu) rel-file + #+(or :sbcl :MCL :clisp :cmu) rel-name + + #+(or :sbcl :MCL :clisp :cmu) :type + #+(or :sbcl :MCL :clisp :cmu) rel-type + )))) + (defun directory-to-list (directory) ;; The directory should be a list, but nonstandard implementations have - ;; been known to use a vector or even a string. - (cond ((listp directory) + ;; been known to use a vector or even a string. + (cond ((listp directory) directory) ((stringp directory) (cond ((find #\; directory) - ;; It's probably a logical pathname, so split at the + ;; It's probably a logical pathname, so split at the ;; semicolons: (split-string directory :item #\;)) #+MCL @@ -1627,7 +2009,7 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ (coerce directory 'list)))) -(defparameter *append-dirs-tests* +(defparameter *append-dirs-tests* '("~/foo/" "baz/bar.lisp" "~/foo" "baz/bar.lisp" "/foo/bar/" "baz/barf.lisp" @@ -1645,6 +2027,7 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ nil "/baz/barf.lisp" nil nil)) + (defun test-new-append-directories (&optional (test-dirs *append-dirs-tests*)) (do* ((dir-list test-dirs (cddr dir-list)) (abs-dir (car dir-list) (car dir-list)) @@ -1653,8 +2036,9 @@ s/^[^M]*IRIX Execution Environment 1, *[a-zA-Z]* *\\([^ ]*\\)/\\1/p\\ (format t "~&ABS: ~S ~18TREL: ~S ~41TResult: ~S" abs-dir rel-dir (new-append-directories abs-dir rel-dir)))) -#| -<cl> (test-new-append-directories) + +#|| +<cl> (test-new-append-directories) ABS: "~/foo/" REL: "baz/bar.lisp" Result: "/usr0/mkant/foo/baz/bar.lisp" ABS: "~/foo" REL: "baz/bar.lisp" Result: "/usr0/mkant/foo/baz/bar.lisp" @@ -1673,7 +2057,7 @@ ABS: NIL REL: "baz/barf.lisp" Result: "baz/barf.lisp" ABS: NIL REL: "/baz/barf.lisp" Result: "/baz/barf.lisp" ABS: NIL REL: NIL Result: "" -|# +||# (defun append-directories (absolute-directory relative-directory) @@ -1684,33 +2068,90 @@ ABS: NIL REL: NIL Result: "" is a directory, with no filename stuck on the end. Relative-directory, however, may have a filename stuck on the end." (when (or absolute-directory relative-directory) - (cond - ;; We need a reliable way to determine if a pathname is logical. - ;; Allegro 4.1 does not recognize the syntax of a logical pathname - ;; as being logical unless its logical host is already defined. - #+(or (and allegro-version>= (version>= 4 1)) - :logical-pathnames-mk) - ((and absolute-directory (logical-pathname-p absolute-directory)) - ;; For use with logical pathnames package. - (append-logical-directories-mk absolute-directory relative-directory)) - ((namestring-probably-logical absolute-directory) - ;; A simplistic stab at handling logical pathnames - (append-logical-pnames absolute-directory relative-directory)) - (t - ;; In VMS, merge-pathnames actually does what we want!!! - #+:VMS(namestring (merge-pathnames (or absolute-directory "") - (or relative-directory ""))) - #+:macl1.3.2(namestring (make-pathname :directory absolute-directory - :name relative-directory)) - ;; Cross your fingers and pray. - #-(or :VMS :macl1.3.2) - (new-append-directories absolute-directory relative-directory))))) + (cond + ;; KMR commented out because: when appending two logical pathnames, + ;; using this code translates the first logical pathname then appends + ;; the second logical pathname -- an error. + #| + ;; We need a reliable way to determine if a pathname is logical. + ;; Allegro 4.1 does not recognize the syntax of a logical pathname + ;; as being logical unless its logical host is already defined. + + #+(or (and allegro-version>= (version>= 4 1)) + :logical-pathnames-mk) + ((and absolute-directory + (logical-pathname-p absolute-directory) + relative-directory) + ;; For use with logical pathnames package. + (append-logical-directories-mk absolute-directory relative-directory)) + |# + ((namestring-probably-logical absolute-directory) + ;; A simplistic stab at handling logical pathnames + (append-logical-pnames absolute-directory relative-directory)) + (t + ;; In VMS, merge-pathnames actually does what we want!!! + #+:VMS + (namestring (merge-pathnames (or absolute-directory "") + (or relative-directory ""))) + #+:macl1.3.2 + (namestring (make-pathname :directory absolute-directory + :name relative-directory)) + ;; Cross your fingers and pray. + #-(or :VMS :macl1.3.2) + (new-append-directories absolute-directory relative-directory))))) + #+:logical-pathnames-mk (defun append-logical-directories-mk (absolute-dir relative-dir) (lp:append-logical-directories absolute-dir relative-dir)) -;;; this works in allegro-v4.1 and above. + +;;; append-logical-pathnames-mk -- +;;; The following is probably still bogus and it does not solve the +;;; problem of appending two logical pathnames. +;;; Anyway, as per suggetsion by KMR, the function is not called +;;; anymore. +;;; Hopefully this will not cause problems for ACL. + +#+(and (and allegro-version>= (version>= 4 1)) + (not :logical-pathnames-mk)) +(defun append-logical-directories-mk (absolute-dir relative-dir) + ;; We know absolute-dir and relative-dir are non nil. Moreover + ;; absolute-dir is a logical pathname. + (setq absolute-dir (logical-pathname absolute-dir)) + (etypecase relative-dir + (string (setq relative-dir (parse-namestring relative-dir))) + (pathname #| do nothing |#)) + + (translate-logical-pathname + (merge-pathnames relative-dir absolute-dir))) + + +#| Old version 2002-03-02 +#+(and (and allegro-version>= (version>= 4 1)) + (not :logical-pathnames-mk)) +(defun append-logical-directories-mk (absolute-dir relative-dir) + ;; We know absolute-dir and relative-dir are non nil. Moreover + ;; absolute-dir is a logical pathname. + (setq absolute-dir (logical-pathname absolute-dir)) + (etypecase relative-dir + (string (setq relative-dir (parse-namestring relative-dir))) + (pathname #| do nothing |#)) + + (translate-logical-pathname + (make-pathname + :host (or (pathname-host absolute-dir) + (pathname-host relative-dir)) + :directory (append (pathname-directory absolute-dir) + (cdr (pathname-directory relative-dir))) + :name (or (pathname-name absolute-dir) + (pathname-name relative-dir)) + :type (or (pathname-type absolute-dir) + (pathname-type relative-dir)) + :version (or (pathname-version absolute-dir) + (pathname-version relative-dir))))) + +;; Old version #+(and (and allegro-version>= (version>= 4 1)) (not :logical-pathnames-mk)) (defun append-logical-directories-mk (absolute-dir relative-dir) @@ -1729,6 +2170,7 @@ ABS: NIL REL: NIL Result: "" (pathname-type relative-dir)) :version (or (pathname-version absolute-dir) (pathname-version relative-dir)))))) +|# ;;; determines if string or pathname object is logical #+:logical-pathnames-mk @@ -1741,14 +2183,48 @@ ABS: NIL REL: NIL Result: "" (defun logical-pathname-p (thing) (typep (parse-namestring thing) 'logical-pathname)) +(defun pathname-logical-p (thing) + (typecase thing + (logical-pathname t) + #+clisp ; CLisp has non conformant Logical Pathnames. + (pathname (pathname-logical-p (namestring thing))) + (string (and (= 1 (count #\: thing)) ; Shortcut. + (ignore-errors (translate-logical-pathname thing)) + t)) + (t nil))) + +;;; This affects only one thing. +;;; 19990707 Marco Antoniotti +;;; old version + (defun namestring-probably-logical (namestring) (and (stringp namestring) ;; unix pathnames don't have embedded semicolons (find #\; namestring))) +#|| +;;; New version +(defun namestring-probably-logical (namestring) + (and (stringp namestring) + (typep (parse-namestring namestring) 'logical-pathname))) + +;;; New new version +;;; 20000321 Marco Antoniotti +(defun namestring-probably-logical (namestring) + (pathname-logical-p namestring)) +||# + + +#|| This is incorrect, as it strives to keep strings around, when it + shouldn't. MERGE-PATHNAMES already DTRT. (defun append-logical-pnames (absolute relative) - (let ((abs (or absolute "")) - (rel (or relative ""))) + (declare (type (or null string pathname) absolute relative)) + (let ((abs (if absolute + #-clisp (namestring absolute) + #+clisp absolute ;; Stig (July 2001): hack to avoid CLISP from translating the whole string + "")) + (rel (if relative (namestring relative) "")) + ) ;; Make sure the absolute directory ends with a semicolon unless ;; the pieces are null strings (unless (or (null-string abs) (null-string rel) @@ -1757,32 +2233,68 @@ ABS: NIL REL: NIL Result: "" (setq abs (concatenate 'string abs ";"))) ;; Return the concatenate pathnames (concatenate 'string abs rel))) +||# -#| + +(defun append-logical-pnames (absolute relative) + (declare (type (or null string pathname) absolute relative)) + (let ((abs (if absolute + (pathname absolute) + (make-pathname :directory (list :absolute) + :name nil + :type nil) + )) + (rel (if relative + (pathname relative) + (make-pathname :directory (list :relative) + :name nil + :type nil) + )) + ) + ;; The following is messed up because CMUCL and LW use different + ;; defaults for host (in particular LW uses NIL). Thus + ;; MERGE-PATHNAMES has legitimate different behaviors on both + ;; implementations. Of course this is disgusting, but that is the + ;; way it is and the rest tries to circumvent this crap. + (etypecase abs + (logical-pathname + (etypecase rel + (logical-pathname + (namestring (merge-pathnames rel abs))) + (pathname + ;; The following potentially translates the logical pathname + ;; very early, but we cannot avoid it. + (namestring (merge-pathnames rel (translate-logical-pathname abs)))) + )) + (pathname + (namestring (merge-pathnames rel abs))) + ))) + +#|| ;;; This was a try at appending a subdirectory onto a directory. ;;; It failed. We're keeping this around to prevent future mistakes ;;; of a similar sort. (defun merge-directories (absolute-directory relative-directory) ;; replace concatenate with something more intelligent ;; i.e., concatenation won't work with some directories. - ;; it should also behave well if the parent directory + ;; it should also behave well if the parent directory ;; has a filename at the end, or if the relative-directory ain't relative - (when absolute-directory + (when absolute-directory (setq absolute-directory (pathname-directory absolute-directory))) - (concatenate 'string + (concatenate 'string (or absolute-directory "") (or relative-directory ""))) -|# +||# -#| +#|| <cl> (defun d (d n) (namestring (make-pathname :directory d :name n))) D <cl> (d "~/foo/" "baz/bar.lisp") -"/usr0/mkant/foo/baz/bar.lisp" +"/usr0/mkant/foo/baz/bar.lisp" <cl> (d "~/foo" "baz/bar.lisp") -"/usr0/mkant/foo/baz/bar.lisp" +"/usr0/mkant/foo/baz/bar.lisp" <cl> (d "/foo/bar/" "baz/barf.lisp") "/foo/bar/baz/barf.lisp" @@ -1805,12 +2317,14 @@ D <cl> (d nil nil) "" -|# - - +||# +;;; The following is a change proposed by DTC for SCL. +;;; Maybe it could be used all the time. +#-scl (defun new-file-type (pathname type) + ;; why not (make-pathname :type type :defaults pathname)? (make-pathname :host (pathname-host pathname) :device (pathname-device pathname) @@ -1820,38 +2334,72 @@ D :version (pathname-version pathname))) +#+scl +(defun new-file-type (pathname type) + ;; why not (make-pathname :type type :defaults pathname)? + (make-pathname + :host (pathname-host pathname :case :common) + :device (pathname-device pathname :case :common) + :directory (pathname-directory pathname :case :common) + :name (pathname-name pathname :case :common) + :type (string-upcase type) + :version (pathname-version pathname :case :common))) + + ;;; ******************************** ;;; Component Defstruct ************ ;;; ******************************** + (defvar *source-pathname-default* nil "Default value of :source-pathname keyword in DEFSYSTEM. Set this to \"\" to avoid having to type :source-pathname \"\" all the time.") + (defvar *binary-pathname-default* nil "Default value of :binary-pathname keyword in DEFSYSTEM.") -;;; Removed TIME slot, which has been made unnecessary by the new definition -;;; of topological-sort. + (defstruct (topological-sort-node (:conc-name topsort-)) - color -; time -) + (color :white :type (member :gray :black :white)) + ) + + +(defparameter *component-evaluated-slots* + '(:source-root-dir :source-pathname :source-extension + :binary-root-dir :binary-pathname :binary-extension)) + + +(defparameter *component-form-slots* + '(:initially-do :finally-do :compile-form :load-form)) + (defstruct (component (:include topological-sort-node) (:print-function print-component)) - type ; :defsystem, :system, :subsystem, :module, :file, or :private-file - name ; a symbol or string - indent ; number of characters of indent in verbose output to the user. - host ; the pathname host (i.e., "/../a") - device ; the pathname device - source-root-dir - ;; relative or absolute (starts with "/"), directory or file (ends with "/") + (type :file ; to pacify the CMUCL compiler (:type is alway supplied) + :type (member :defsystem + :system + :subsystem + :module + :file + :private-file + )) + (name nil :type (or symbol string)) + (indent 0 :type (mod 1024)) ; Number of characters of indent in + ; verbose output to the user. + host ; The pathname host (i.e., "/../a"). + device ; The pathname device. + source-root-dir ; Relative or absolute (starts + ; with "/"), directory or file + ; (ends with "/"). (source-pathname *source-pathname-default*) - source-extension ; a string, e.g., "lisp". If nil, uses default for machine-type + source-extension ; A string, e.g., "lisp" + ; if NIL, inherit (binary-pathname *binary-pathname-default*) binary-root-dir - binary-extension ; a string, e.g., "fasl". If nil, uses default for machine-type - package ; package for use-package + binary-extension ; A string, e.g., "fasl". If + ; NIL, uses default for + ; machine-type. + package ; Package for use-package. ;; The following three slots are used to provide for alternate compilation ;; and loading functions for the files contained within a component. If @@ -1859,48 +2407,134 @@ D ;; used. Otherwise the functions are derived from the language. If no ;; language is specified, it defaults to Common Lisp (:lisp). Other current ;; possible languages include :scheme (PseudoScheme) and :c, but the user - ;; can define additional language mappings. Compilation functions should + ;; can define additional language mappings. Compilation functions should ;; accept a pathname argument and a :output-file keyword; loading functions ;; just a pathname argument. The default functions are #'compile-file and - ;; #'load. Unlike fdmm's SET-LANGUAGE macro, this allows a defsystem to + ;; #'load. Unlike fdmm's SET-LANGUAGE macro, this allows a defsystem to ;; mix languages. - (language nil :type (or NULL SYMBOL)) - (compiler nil :type (or NULL function)) - (loader nil :type (or NULL function)) - - components ; a list of components comprising this component's definition - depends-on ; a list of the components this one depends on. may refer only - ; to the components at the same level as this one. - proclamations ; compiler options, such as '(optimize (safety 3)) - initially-do ; form to evaluate before the operation - finally-do ; form to evaluate after the operation - compile-form ; for foreign libraries - load-form ; for foreign libraries -; load-time ; The file-write-date of the binary/source file loaded. + (language nil :type (or null symbol)) + (compiler nil :type (or null symbol function)) + (loader nil :type (or null symbol function)) + (compiler-options nil :type list) ; A list of compiler options to + ; use for compiling this + ; component. These must be + ; keyword options supported by + ; the compiler. + + (components () :type list) ; A list of components + ; comprising this component's + ; definition. + (depends-on () :type list) ; A list of the components + ; this one depends on. may + ; refer only to the components + ; at the same level as this + ; one. + proclamations ; Compiler options, such as + ; '(optimize (safety 3)). + (initially-do (lambda () nil)) ; Form to evaluate before the + ; operation. + (finally-do (lambda () nil)) ; Form to evaluate after the operation. + (compile-form (lambda () nil)) ; For foreign libraries. + (load-form (lambda () nil)) ; For foreign libraries. + + ;; load-time ; The file-write-date of the + ; binary/source file loaded. + ;; If load-only is T, will not compile the file on operation :compile. ;; In other words, for files which are :load-only T, loading the file ;; satisfies any demand to recompile. - load-only ; If T, will not compile this file on operation :compile. + load-only ; If T, will not compile this + ; file on operation :compile. ;; If compile-only is T, will not load the file on operation :compile. ;; Either compiles or loads the file, but not both. In other words, ;; compiling the file satisfies the demand to load it. This is useful - ;; for PCL defmethod and defclass definitions, which wrap a + ;; for PCL defmethod and defclass definitions, which wrap a ;; (eval-when (compile load eval) ...) around the body of the definition. ;; This saves time in some lisps. - compile-only ; If T, will not load this file on operation :compile. - ;; optional documentation slot - (documentation nil :type (or NULL string)) -) + compile-only ; If T, will not load this + ; file on operation :compile. + #|| ISI Extension ||# + load-always ; If T, will force loading + ; even if file has not + ; changed. + ;; PVE: add banner + (banner nil :type (or null string)) + + (documentation nil :type (or null string)) ; Optional documentation slot + (long-documentation nil :type (or null string)) ; Optional long documentation slot + + ;; Added AUTHOR, MAINTAINER, VERSION and LICENCE slots. + (author nil :type (or null string)) + (licence nil :type (or null string)) + (maintainer nil :type (or null string)) + (version nil :type (or null string)) + + ;; Added NON-REQUIRED-P slot. Useful for optional items. + (non-required-p nil :type boolean) ; If T a missing file or + ; sub-directory will not cause + ; an error. + ) + + +;;; To allow dependencies from "foreign systems" like ASDF or one of +;;; the proprietary ones like ACL or LW. + +(defstruct (foreign-system (:include component (type :system))) + kind ; This is a keyword: (member :asdf :pcl :lispworks-common-defsystem ...) + object ; The actual foreign system object. + ) + + +(defun register-foreign-system (name &key representation kind) + (declare (type (or symbol string) name)) + (let ((fs (make-foreign-system :name name + :kind kind + :object representation))) + (setf (get-system name) fs))) + + + +(define-condition missing-component (simple-condition) + ((name :reader missing-component-name + :initarg :name) + (component :reader missing-component-component + :initarg :component) + ) + #-gcl (:default-initargs :component nil) + (:report (lambda (mmc stream) + (format stream "MK:DEFSYSTEM: missing component ~S for ~S." + (missing-component-name mmc) + (missing-component-component mmc)))) + ) + +(define-condition missing-module (missing-component) + () + (:report (lambda (mmc stream) + (format stream "MK:DEFSYSTEM: missing module ~S for ~S." + (missing-component-name mmc) + (missing-component-component mmc)))) + ) + +(define-condition missing-system (missing-module) + () + (:report (lambda (msc stream) + (format stream "MK:DEFSYSTEM: missing system ~S~@[ for S~]." + (missing-component-name msc) + (missing-component-component msc)))) + ) + + (defvar *file-load-time-table* (make-hash-table :test #'equal) - "Hash table of file-write-dates for the system definitions and - files in the system definitions.") + "Hash table of file-write-dates for the system definitions and files in the system definitions.") + + (defun component-load-time (component) (when component (etypecase component (string (gethash component *file-load-time-table*)) (pathname (gethash (namestring component) *file-load-time-table*)) - (component + (component (ecase (component-type component) (:defsystem (let* ((name (component-name component)) @@ -1914,6 +2548,8 @@ D (let ((path (component-full-pathname component :source))) (when path (gethash path *file-load-time-table*))))))))) + +#-(or :cmu) (defsetf component-load-time (component) (value) `(when ,component (etypecase ,component @@ -1921,7 +2557,7 @@ D (pathname (setf (gethash (namestring (the pathname ,component)) *file-load-time-table*) ,value)) - (component + (component (ecase (component-type ,component) (:defsystem (let* ((name (component-name ,component)) @@ -1938,8 +2574,101 @@ D ,value))))))) ,value)) +#+(or :cmu) +(defun (setf component-load-time) (value component) + (declare + (type (or null string pathname component) component) + (type (or unsigned-byte null) value)) + (when component + (etypecase component + (string (setf (gethash component *file-load-time-table*) value)) + (pathname (setf (gethash (namestring (the pathname component)) + *file-load-time-table*) + value)) + (component + (ecase (component-type component) + (:defsystem + (let* ((name (component-name component)) + (path (when name (compute-system-path name nil)))) + (declare (type (or string pathname null) path)) + (when path + (setf (gethash (namestring path) *file-load-time-table*) + value)))) + ((:file :private-file) + ;; Use only :source pathname to identify file. + (let ((path (component-full-pathname component :source))) + (when path + (setf (gethash path *file-load-time-table*) + value))))))) + value)) + + +;;; compute-system-path -- + (defun compute-system-path (module-name definition-pname) - (let* ((filename (format nil "~A.~A" + (let* ((module-string-name + (etypecase module-name + (symbol (string-downcase + (string module-name))) + (string module-name))) + + (file-pathname + (make-pathname :name module-string-name + :type *system-extension*)) + + (lib-file-pathname + (make-pathname :directory (list :relative module-string-name) + :name module-string-name + :type *system-extension*)) + ) + (or (when definition-pname ; given pathname for system def + (probe-file definition-pname)) + ;; Then the central registry. Note that we also check the current + ;; directory in the registry, but the above check is hard-coded. + (cond (*central-registry* + (if (listp *central-registry*) + (dolist (registry *central-registry*) + (let* ((reg-path (registry-pathname registry)) + (file (or (probe-file + (append-directories + reg-path file-pathname)) + (probe-file + (append-directories + reg-path lib-file-pathname))))) + (when file (return file)))) + (or (probe-file (append-directories *central-registry* + file-pathname)) + (probe-file (append-directories *central-registry* + lib-file-pathname)) + )) + ) + (t + ;; No central registry. Assume current working directory. + ;; Maybe this should be an error? + (or (probe-file file-pathname) + (probe-file lib-file-pathname))))) + )) + + +(defun system-definition-pathname (system-name) + (let ((system (ignore-errors (find-system system-name :error)))) + (if system + (let ((system-def-pathname + (make-pathname + :type "system" + :defaults (pathname (component-full-pathname system :source)))) + ) + (values system-def-pathname + (probe-file system-def-pathname))) + (values nil nil)))) + + + + +#| + + (defun compute-system-path (module-name definition-pname) + (let* ((filename (format nil "~A.~A" (if (symbolp module-name) (string-downcase (string module-name)) module-name) @@ -1948,14 +2677,12 @@ D (probe-file definition-pname)) ;; Then the central registry. Note that we also check the current ;; directory in the registry, but the above check is hard-coded. - (cond (*central-registry* + (cond (*central-registry* (if (listp *central-registry*) (dolist (registry *central-registry*) - (let ((file (probe-file - (append-directories (if (consp registry) - (eval registry) - registry) - filename)))) + (let ((file (probe-file + (append-directories + (registry-pathname registry) filename)))) (when file (return file)))) (probe-file (append-directories *central-registry* filename)))) @@ -1963,43 +2690,54 @@ D ;; No central registry. Assume current working directory. ;; Maybe this should be an error? (probe-file filename)))))) +|# + (defvar *reload-systems-from-disk* t "If T, always tries to reload newer system definitions from disk. Otherwise first tries to find the system definition in the current environment.") -(defun FIND-SYSTEM (system-name &optional (mode :ask) definition-pname) - "Returns the system named SYSTEM-NAME. If not already loaded, loads it. - This allows operate-on-system to work on non-loaded as well as - loaded system definitions. DEFINITION-PNAME is the pathname for - the system definition, if provided." +(defun find-system (system-name &optional (mode :ask) definition-pname) + "Returns the system named SYSTEM-NAME. +If not already loaded, loads it, depending on the value of +*RELOAD-SYSTEMS-FROM-DISK* and of the value of MODE. MODE can be :ASK, +:ERROR, :LOAD-OR-NIL, or :LOAD. :ASK is the default. +This allows OPERATE-ON-SYSTEM to work on non-loaded as well as +loaded system definitions. DEFINITION-PNAME is the pathname for +the system definition, if provided." (ecase mode - (:ASK + (:ask (or (get-system system-name) - (when (y-or-n-p-wait + (when (y-or-n-p-wait #\y 20 "System ~A not loaded. Shall I try loading it? " system-name) (find-system system-name :load definition-pname)))) - (:ERROR + (:error (or (get-system system-name) - (error "Can't find system named ~s." system-name))) - (:LOAD-OR-NIL + (error 'missing-system :name system-name))) + (:load-or-nil (let ((system (get-system system-name))) + ;; (break "System ~S ~S." system-name system) (or (unless *reload-systems-from-disk* system) - ;; If SYSTEM-NAME is a symbol, it will lowercase the symbol's string + ;; If SYSTEM-NAME is a symbol, it will lowercase the + ;; symbol's string. ;; If SYSTEM-NAME is a string, it doesn't change the case of the ;; string. So if case matters in the filename, use strings, not ;; symbols, wherever the system is named. + (when (foreign-system-p system) + (warn "Foreign system ~S cannot be reloaded by MK:DEFSYSTEM." + system) + (return-from find-system nil)) (let ((path (compute-system-path system-name definition-pname))) (when (and path (or (null system) (null (component-load-time path)) (< (component-load-time path) (file-write-date path)))) - (tell-user-generic - (format nil "Loading system ~A from file ~A" + (tell-user-generic + (format nil "Loading system ~A from file ~A" system-name path)) (load path) @@ -2009,17 +2747,23 @@ D (file-write-date path)))) system) system))) - (:LOAD + (:load (or (unless *reload-systems-from-disk* (get-system system-name)) + (when (foreign-system-p (get-system system-name)) + (warn "Foreign system ~S cannot be reloaded by MK:DEFSYSTEM." + (get-system system-name)) + (return-from find-system nil)) (or (find-system system-name :load-or-nil definition-pname) (error "Can't find system named ~s." system-name)))))) + (defun print-component (component stream depth) (declare (ignore depth)) (format stream "#<~:@(~A~): ~A>" (component-type component) (component-name component))) + (defun describe-system (name &optional (stream *standard-output*)) "Prints a description of the system to the stream. If NAME is the name of a system, gets it and prints a description of the system. @@ -2031,7 +2775,7 @@ D ~@[~& Package: ~A~]~ ~& Source: ~@[~A~] ~@[~A~] ~@[~A~]~ ~& Binary: ~@[~A~] ~@[~A~] ~@[~A~]~ - ~@[~& Depends On: ~A ~]~& Components: ~{~15T~A~&~}" + ~@[~& Depends On: ~A ~]~& Components:~{~15T~A~&~}" (component-type system) (component-name system) (component-host system) @@ -2045,11 +2789,12 @@ D (component-extension system :binary) (component-depends-on system) (component-components system)) - #|(when recursive + #||(when recursive (dolist (component (component-components system)) - (describe-system component stream recursive)))|# + (describe-system component stream recursive)))||# system)) + (defun canonicalize-component-name (component) ;; Within the component, the name is a string. (if (typep (component-name component) 'string) @@ -2058,50 +2803,64 @@ D ;; Otherwise, make it a downcase string -- important since file ;; names are often constructed from component names, and unix ;; prefers lowercase as a default. - (setf (component-name component) + (setf (component-name component) (string-downcase (string (component-name component)))))) + (defun component-pathname (component type) (when component (ecase type (:source (component-source-pathname component)) (:binary (component-binary-pathname component)) (:error (component-error-pathname component))))) + + (defun component-error-pathname (component) (let ((binary (component-pathname component :binary))) - (namestring (new-file-type binary *compile-error-file-type*)))) + (new-file-type binary *compile-error-file-type*))) + (defsetf component-pathname (component type) (value) `(when ,component (ecase ,type (:source (setf (component-source-pathname ,component) ,value)) (:binary (setf (component-binary-pathname ,component) ,value))))) + (defun component-root-dir (component type) (when component (ecase type (:source (component-source-root-dir component)) ((:binary :error) (component-binary-root-dir component)) ))) + (defsetf component-root-dir (component type) (value) `(when ,component (ecase ,type (:source (setf (component-source-root-dir ,component) ,value)) (:binary (setf (component-binary-root-dir ,component) ,value))))) + (defvar *source-pathnames-table* (make-hash-table :test #'equal) "Table which maps from components to full source pathnames.") + + (defvar *binary-pathnames-table* (make-hash-table :test #'equal) "Table which maps from components to full binary pathnames.") + + (defparameter *reset-full-pathname-table* t - "If T, clears the full-pathname tables before each call to - OPERATE-ON-SYSTEM. Setting this to NIL may yield faster performance - after multiple calls to LOAD-SYSTEM and COMPILE-SYSTEM, but could - result in changes to system and language definitions to not take - effect, and so should be used with caution.") + "If T, clears the full-pathname tables before each call to OPERATE-ON-SYSTEM. +Setting this to NIL may yield faster performance after multiple calls +to LOAD-SYSTEM and COMPILE-SYSTEM, but could result in changes to +system and language definitions to not take effect, and so should be +used with caution.") + + (defun clear-full-pathname-tables () (clrhash *source-pathnames-table*) (clrhash *binary-pathnames-table*)) + (defun component-full-pathname (component type &optional (version *version*)) (when component (case type @@ -2120,7 +2879,9 @@ D (otherwise (component-full-pathname-i component type version))))) -(defun component-full-pathname-i (component type &optional (version *version*) + +(defun component-full-pathname-i (component type + &optional (version *version*) &aux version-dir version-replace) ;; If the pathname-type is :binary and the root pathname is null, ;; distribute the binaries among the sources (= use :source pathname). @@ -2128,107 +2889,208 @@ D ;; before the :binary one. (if version (multiple-value-setq (version-dir version-replace) - (translate-version version)) - (setq version-dir *version-dir* version-replace *version-replace*)) + (translate-version version)) + (setq version-dir *version-dir* version-replace *version-replace*)) + ;; (format *trace-output* "~&>>>> VERSION COMPUTED ~S ~S~%" version-dir version-replace) (let ((pathname - (append-directories + (append-directories (if version-replace version-dir - (append-directories (component-root-dir component type) - version-dir)) + (append-directories (component-root-dir component type) + version-dir)) (component-pathname component type)))) + ;; When a logical pathname is used, it must first be translated to ;; a physical pathname. This isn't strictly correct. What should happen ;; is we fill in the appropriate slots of the logical pathname, and ;; then return the logical pathname for use by compile-file & friends. ;; But calling translate-logical-pathname to return the actual pathname ;; should do for now. - #+:logical-pathnames-mk - (when (eq (lp:pathname-host-type pathname) :logical) - ;;(setf (lp::%logical-pathname-type pathname) - ;; (component-extension component type)) - (setf pathname (lp:translate-logical-pathname pathname))) - #+(and (and allegro-version>= (version>= 4 1)) - (not :logical-pathnames-mk)) - (when (and (pathname-host pathname) (logical-pathname-p pathname)) - (setf pathname (translate-logical-pathname pathname))) - #+cmu17 - (when (logical-pathname-p (make-pathname :host (pathname-host pathname))) - (setf pathname (translate-logical-pathname pathname))) - - (namestring - (make-pathname :name (pathname-name pathname) - :type (component-extension component type) - :host (when (component-host component) - ;; MCL2.0b1 and ACLPC cause an error on - ;; (pathname-host nil) - (pathname-host (component-host component))) - :device #+(and :CMU (not :cmu17)) :absolute - #-(and :CMU (not :cmu17)) - (let ((dev (component-device component))) - (when dev - (pathname-device dev))) - ;; :version :newest - ;; Use :directory instead of :defaults - :directory (pathname-directory pathname))))) - -;;; What about CMU17 :device :unspecific in the above? + ;; (format t "pathname = ~A~%" pathname) + ;; (format t "type = ~S~%" (component-extension component type)) + + ;; 20000303 Marco Antoniotti + ;; Changed the following according to suggestion by Ray Toy. I + ;; just collapsed the tests for "logical-pathname-ness" into a + ;; single test (heavy, but probably very portable) and added the + ;; :name argument to the MAKE-PATHNAME in the MERGE-PATHNAMES + ;; beacuse of possible null names (e.g. :defsystem components) + ;; causing problems with the subsequenct call to NAMESTRING. + ;; (format *trace-output* "~&>>>> PATHNAME is ~S~%" pathname) + + ;; 20050309 Marco Antoniotti + ;; The treatment of PATHNAME-HOST and PATHNAME-DEVICE in the call + ;; to MAKE-PATHNAME in the T branch is bogus. COMPONENT-DEVICE + ;; and COMPONENT-HOST must respect the ANSI definition, hence, + ;; they cannot be PATHNAMEs. The simplification of the code is + ;; useful. SCL compatibility may be broken, but I doubt it will. + + ;; 20050310 Marco Antoniotti + ;; After a suggestion by David Tolpin, the code is simplified even + ;; more, and the logic should be now more clear: use the user + ;; supplied pieces of the pathname if non nil. + + ;; 20050613 Marco Antoniotti + ;; Added COMPONENT-NAME extraction to :NAME part, in case the + ;; PATHNAME-NAME is NIL. + + (cond ((pathname-logical-p pathname) ; See definition of test above. + (setf pathname + (merge-pathnames pathname + (make-pathname + :name (component-name component) + :type (component-extension component + type)))) + (namestring (translate-logical-pathname pathname))) + (t + (namestring + (make-pathname :host (or (component-host component) + (pathname-host pathname)) + + :directory (pathname-directory pathname + #+scl :case + #+scl :common + ) + + :name (or (pathname-name pathname + #+scl :case + #+scl :common + ) + (component-name component)) + + :type + #-scl (component-extension component type) + #+scl (string-upcase + (component-extension component type)) + + :device + #+sbcl + :unspecific + #-(or :sbcl) + (or (component-device component) + (pathname-device pathname + #+scl :case + #+scl :common + )) + ;; :version :newest + )))))) + + +#-lispworks (defun translate-version (version) - ;; Value returns the version directory and whether it replaces + ;; Value returns the version directory and whether it replaces ;; the entire root (t) or is a subdirectory. ;; Version may be nil to signify no subdirectory, ;; a symbol, such as alpha, beta, omega, :alpha, mark, which ;; specifies a subdirectory of the root, or ;; a string, which replaces the root. - (cond ((null version) + (cond ((null version) (values "" nil)) ((symbolp version) (values (let ((sversion (string version))) (if (find-if #'lower-case-p sversion) sversion - (string-downcase sversion))) + (string-downcase sversion))) nil)) ((stringp version) (values version t)) (t (error "~&; Illegal version ~S" version)))) + +;;; Looks like LW has a bug in MERGE-PATHNAMES. +;;; +;;; (merge-pathnames "" "LP:foo;bar;") ==> "LP:" +;;; +;;; Which is incorrect. +;;; The change here ensures that the result of TRANSLATE-VERSION is +;;; appropriate. + +#+lispworks +(defun translate-version (version) + ;; Value returns the version directory and whether it replaces + ;; the entire root (t) or is a subdirectory. + ;; Version may be nil to signify no subdirectory, + ;; a symbol, such as alpha, beta, omega, :alpha, mark, which + ;; specifies a subdirectory of the root, or + ;; a string, which replaces the root. + (cond ((null version) + (values (pathname "") nil)) + ((symbolp version) + (values (let ((sversion (string version))) + (if (find-if #'lower-case-p sversion) + (pathname sversion) + (pathname (string-downcase sversion)))) + nil)) + ((stringp version) + (values (pathname version) t)) + (t (error "~&; Illegal version ~S" version)))) + + (defun component-extension (component type &key local) (ecase type (:source (or (component-source-extension component) - (unless local - (default-source-extension component)))) ; system default + (unless local + (default-source-extension component)) ; system default + ;; (and (component-language component)) + )) (:binary (or (component-binary-extension component) (unless local - (default-binary-extension component)))) ; system default + (default-binary-extension component)) ; system default + ;; (and (component-language component)) + )) (:error *compile-error-file-type*))) + + (defsetf component-extension (component type) (value) `(ecase ,type (:source (setf (component-source-extension ,component) ,value)) (:binary (setf (component-binary-extension ,component) ,value)) (:error (setf *compile-error-file-type* ,value)))) + ;;; ******************************** ;;; System Definition ************** ;;; ******************************** + (defun create-component (type name definition-body &optional parent (indent 0)) - (let ((component (apply #'make-component :type type :name name - :indent indent definition-body))) + (let ((component (apply #'make-component + :type type + :name name + :indent indent + definition-body))) ;; Set up :load-only attribute (unless (find :load-only definition-body) - ;; If the :load-only attribute wasn't specified, + ;; If the :load-only attribute wasn't specified, ;; inherit it from the parent. If no parent, default it to nil. - (setf (component-load-only component) + (setf (component-load-only component) (when parent (component-load-only parent)))) ;; Set up :compile-only attribute (unless (find :compile-only definition-body) - ;; If the :compile-only attribute wasn't specified, + ;; If the :compile-only attribute wasn't specified, ;; inherit it from the parent. If no parent, default it to nil. - (setf (component-compile-only component) + (setf (component-compile-only component) (when parent (component-compile-only parent)))) + ;; Set up :compiler-options attribute + (unless (find :compiler-options definition-body) + ;; If the :compiler-option attribute wasn't specified, + ;; inherit it from the parent. If no parent, default it to NIL. + (setf (component-compiler-options component) + (when parent + (component-compiler-options parent)))) + + #|| ISI Extension ||# + ;; Set up :load-always attribute + (unless (find :load-always definition-body) + ;; If the :load-always attribute wasn't specified, + ;; inherit it from the parent. If no parent, default it to nil. + (setf (component-load-always component) + (when parent + (component-load-always parent)))) + ;; Initializations/after makes (canonicalize-component-name component) @@ -2239,7 +3101,9 @@ D ;; Type specific setup: (when (or (eq type :defsystem) (eq type :system) (eq type :subsystem)) - (setf (get-system name) component)) + (setf (get-system name) component) + #|(unless (component-language component) + (setf (component-language component) :lisp))|#) ;; Set up the component's pathname (create-component-pathnames component parent) @@ -2261,15 +3125,61 @@ D ;; Return the component. component)) -(defmacro defsystem (name &rest definition-body) - `(create-component :defsystem ',name ',definition-body nil 0)) + +;;; preprocess-component-definition -- +;;; New function introduced to manipulate the "evaluated" slots as per +;;; SDS' suggestions. +;;; 20050824 + +(defun preprocess-component-definition (definition-body) + `(list* ,@(loop for slot in *component-evaluated-slots* + for value = (getf definition-body slot) + when value + do (remf definition-body slot) + and nconc `(,slot ,value)) + ,@(loop for slot in *component-form-slots* + for form = (getf definition-body slot) + do (remf definition-body slot) + nconc `(,slot (lambda () ,form))) + ',definition-body)) + + +;;; defsystem -- +;;; The main macro. +;;; +;;; 2002-11-22 Marco Antoniotti +;;; Added code to achieve a first cut "pathname less" operation, +;;; following the ideas in ASDF. If the DEFSYSTEM form is loaded from +;;; a file, then the location of the file (intended as a directory) is +;;; computed from *LOAD-PATHNAME* and stored as the :SOURCE-PATHNAME +;;; of the system. + +(defmacro defsystem (name &rest definition-body) + (unless (find :source-pathname definition-body) + (setf definition-body + (list* :source-pathname + '(when #-gcl *load-pathname* #+gcl si::*load-pathname* + (make-pathname :name nil + :type nil + :defaults + #-gcl *load-pathname* + #+gcl si::*load-pathname* + )) + definition-body))) + `(create-component :defsystem ',name + ,(preprocess-component-definition definition-body) + nil + 0)) + (defun create-component-pathnames (component parent) ;; Set up language-specific defaults + (setf (component-language component) (or (component-language component) ; for local defaulting (when parent ; parent's default (component-language parent)))) + (setf (component-compiler component) (or (component-compiler component) ; for local defaulting (when parent ; parent's default @@ -2291,23 +3201,35 @@ D (setf (component-pathname component :binary) (eval (component-pathname component :binary))) + ;; Pass along the host and devices (setf (component-host component) (or (component-host component) - (when parent (component-host parent)))) + (when parent (component-host parent)) + (pathname-host *default-pathname-defaults*))) (setf (component-device component) (or (component-device component) (when parent (component-device parent)))) ;; Set up extension defaults (setf (component-extension component :source) - (or (component-extension component :source :local t) ; local default + (or (component-extension component :source + :local #| (component-language component) |# + t + ) ; local default + (when (component-language component) + (default-source-extension component)) (when parent ; parent's default - (component-extension parent :source)))) + (component-extension parent :source)))) (setf (component-extension component :binary) - (or (component-extension component :binary :local t) ; local default + (or (component-extension component :binary + :local #| (component-language component) |# + t + ) ; local default + (when (component-language component) + (default-binary-extension component)) (when parent ; parent's default - (component-extension parent :binary)))) + (component-extension parent :binary)))) ;; Set up pathname defaults -- expand with parent ;; We must set up the source pathname before the binary pathname @@ -2315,7 +3237,10 @@ D (generate-component-pathname component parent :source) (generate-component-pathname component parent :binary)) -;; maybe file's inheriting of pathnames should be moved elsewhere? + +;;; generate-component-pathnames -- +;;; maybe file's inheriting of pathnames should be moved elsewhere? + (defun generate-component-pathname (component parent pathname-type) ;; Pieces together a pathname for the component based on its component-type. ;; Assumes source defined first. @@ -2333,7 +3258,7 @@ D ;; When the binary root is nil, use source. (component-root-dir component :source))) ) ;; Set the relative pathname to be nil - (setf (component-pathname component pathname-type) + (setf (component-pathname component pathname-type) nil));; should this be "" instead? ;; If the name of the component-pathname is nil, it ;; defaults to the name of the component. Use "" to @@ -2343,7 +3268,7 @@ D (setf (component-root-dir component pathname-type) "" #+ignore(or (when (component-pathname component pathname-type) - (pathname-directory + (pathname-directory (component-pathname component pathname-type))) (when (eq pathname-type :binary) ;; When the binary root is nil, use source. @@ -2362,7 +3287,7 @@ D ;; When the binary-pathname is nil use source. (component-pathname component :source)) (or (when (component-pathname component pathname-type) -; (pathname-name ) + ;; (pathname-name ) (component-pathname component pathname-type)) (component-name component))))) ((:module :subsystem) ; Pathname relative to parent. @@ -2398,10 +3323,10 @@ D (when (eq pathname-type :binary) ;; When the binary-pathname is nil use source. (component-pathname component :source))))))) - )) + )) -#| ;; old version -(defun expand-component-components (component &optional (indent 0)) +#|| ;; old version +(defun expand-component-components (component &optional (indent 0)) (let ((definitions (component-components component))) (setf (component-components component) (remove-if #'null @@ -2410,9 +3335,10 @@ D component indent)) definitions))))) -|# -;; new version -(defun expand-component-components (component &optional (indent 0)) +||# + +;;; new version +(defun expand-component-components (component &optional (indent 0)) (let ((definitions (component-components component))) (if (eq (car definitions) :serial) (setf (component-components component) @@ -2421,6 +3347,7 @@ D (setf (component-components component) (expand-component-definitions definitions component indent))))) + (defun expand-component-definitions (definitions parent &optional (indent 0)) (let ((components nil)) (dolist (definition definitions) @@ -2428,6 +3355,7 @@ D (when new (push new components)))) (nreverse components))) + (defun expand-serial-component-chain (definitions parent &optional (indent 0)) (let ((previous nil) (components nil)) @@ -2436,7 +3364,7 @@ D (when new ;; Make this component depend on the previous one. Since ;; we don't know the form of the definition, we have to - ;; expand it first. + ;; expand it first. (when previous (pushnew previous (component-depends-on new))) ;; The dependencies will be linked later, so we use the name ;; instead of the actual component. @@ -2453,6 +3381,8 @@ D recognizes absolute pathnames and treats them as files of type :private-file instead of type :file. Defaults to NIL, because I haven't tested this.") + + (defun absolute-file-namestring-p (string) ;; If a FILE namestring starts with a slash, or is a logical pathname ;; as implied by the existence of a colon in the filename, assume it @@ -2461,33 +3391,44 @@ D (and (not (null-string string)) (char= (char string 0) #\/)))) + (defun expand-component-definition (definition parent &optional (indent 0)) ;; Should do some checking for malformed definitions here. (cond ((null definition) nil) - ((stringp definition) + ((stringp definition) ;; Strings are assumed to be of type :file (if (and *enable-straz-absolute-string-hack* (absolute-file-namestring-p definition)) ;; Special hack for Straz (create-component :private-file definition nil parent indent) - ;; Normal behavior - (create-component :file definition nil parent indent))) + ;; Normal behavior + (create-component :file definition nil parent indent))) ((and (listp definition) - (not (member (car definition) + (not (member (car definition) '(:defsystem :system :subsystem - :module :file :private-file)))) + :module :file :private-file)))) ;; Lists whose first element is not a component type ;; are assumed to be of type :file - (create-component :file (car definition) (cdr definition) parent indent)) + (create-component :file + (first definition) + ;; (preprocess-component-definition (rest definition)) ; Not working. + (rest definition) + parent + indent)) ((listp definition) ;; Otherwise, it is (we hope) a normal form definition - (create-component (car definition) ; type - (cadr definition) ; name - (cddr definition) ; definition body + (create-component (first definition) ; type + (second definition) ; name + + ;; definition body + ;; (preprocess-component-definition (cddr definition)) ; Not working. + (cddr definition) + parent ; parent indent) ; indent ))) + (defun link-component-depends-on (components) (dolist (component components) (unless (and *system-dependencies-delayed* @@ -2495,44 +3436,46 @@ D (setf (component-depends-on component) (mapcar #'(lambda (dependency) (let ((parent (find (string dependency) components - :key #'component-name + :key #'component-name :test #'string-equal))) (cond (parent parent) ;; make it more intelligent about the following (t (warn "Dependency ~S of component ~S not found." dependency component))))) - + (component-depends-on component)))))) + ;;; ******************************** ;;; Topological Sort the Graph ***** ;;; ******************************** ;;; New version of topological sort suggested by rs2. Even though ;;; this version avoids the call to sort, in practice it isn't faster. It -;;; does, however, eliminate the need to have a TIME slot in the +;;; does, however, eliminate the need to have a TIME slot in the ;;; topological-sort-node defstruct. + (defun topological-sort (list &aux (sorted-list nil)) (labels ((dfs-visit (znode) - (setf (topsort-color znode) 'gray) - (unless (and *system-dependencies-delayed* - (eq (component-type znode) :system)) - (dolist (child (component-depends-on znode)) - (cond ((eq (topsort-color child) 'white) - (dfs-visit child)) - ((eq (topsort-color child) 'gray) - (format t "~&Detected cycle containing ~A" child))))) - (setf (topsort-color znode) 'black) - (push znode sorted-list))) + (setf (topsort-color znode) :gray) + (unless (and *system-dependencies-delayed* + (eq (component-type znode) :system)) + (dolist (child (component-depends-on znode)) + (cond ((eq (topsort-color child) :white) + (dfs-visit child)) + ((eq (topsort-color child) :gray) + (format t "~&Detected cycle containing ~A" child))))) + (setf (topsort-color znode) :black) + (push znode sorted-list))) (dolist (znode list) - (setf (topsort-color znode) 'white)) + (setf (topsort-color znode) :white)) (dolist (znode list) - (when (eq (topsort-color znode) 'white) + (when (eq (topsort-color znode) :white) (dfs-visit znode))) (nreverse sorted-list))) -#| -;;; Older version of topological sort. +#|| +;;; Older version of topological sort. (defun topological-sort (list &aux (time 0)) ;; The algorithm works by calling depth-first-search to compute the ;; blackening times for each vertex, and then sorts the vertices into @@ -2555,7 +3498,7 @@ D (when (eq (topsort-color node) 'white) (dfs-visit node))) (sort list #'< :key #'topsort-time))) -|# +||# ;;; ******************************** ;;; Output to User ***************** @@ -2575,20 +3518,24 @@ D (push (subseq string index i) result)) (setf index (1+ i)))))) -;; probably should remove the ",1" entirely. But AKCL 1.243 dies on it +;; probably should remove the ",1" entirely. But AKCL 1.243 dies on it ;; because of an AKCL bug. ;; KGK suggests using an 8 instead, but 1 does nicely. + (defun prompt-string (component) (format nil "; ~:[~;TEST:~]~V,1@T " *oos-test* (component-indent component))) -#| +#|| (defun format-justified-string (prompt contents) - (format t (concatenate 'string "~%" prompt "-~{~<~%" prompt " ~1,80:; ~A~>~^~}") + (format t (concatenate 'string + "~%" + prompt + "-~{~<~%" prompt " ~1,80:; ~A~>~^~}") (split-string contents)) (finish-output *standard-output*)) -|# +||# (defun format-justified-string (prompt contents &optional (width 80) (stream *standard-output*)) @@ -2610,21 +3557,22 @@ D (format stream "~%~A ~A" prompt content))))))) (finish-output stream)) + (defun tell-user (what component &optional type no-dots force) (when (or *oos-verbose* force) (format-justified-string (prompt-string component) (format nil "~A ~(~A~) ~@[\"~A\"~] ~:[~;...~]" ;; To have better messages, wrap the following around the ;; case statement: - ;;(if (find (component-type component) + ;;(if (find (component-type component) ;; '(:defsystem :system :subsystem :module)) ;; "Checking" ;; (case ...)) ;; This gets around the problem of DEFSYSTEM reporting ;; that it's loading a module, when it eventually never ;; loads any of the files of the module. - (case what - ((compile :compile) + (case what + ((compile :compile) (if (component-load-only component) ;; If it is :load-only t, we're loading. "Loading" @@ -2639,6 +3587,7 @@ D (and *tell-user-when-done* (not no-dots)))))) + (defun tell-user-done (component &optional force no-dots) ;; test is no longer really used, but we're leaving it in. (when (and *tell-user-when-done* @@ -2647,12 +3596,14 @@ D (prompt-string component) (not no-dots)) (finish-output *standard-output*))) + (defmacro with-tell-user ((what component &optional type no-dots force) &body body) `(progn (tell-user ,what ,component ,type ,no-dots ,force) ,@body (tell-user-done ,component ,force ,no-dots))) + (defun tell-user-no-files (component &optional force) (when (or *oos-verbose* force) (format-justified-string (prompt-string component) @@ -2662,18 +3613,21 @@ D (or *load-source-if-no-binary* *load-source-instead-of-binary*) (component-full-pathname component :binary))))) + (defun tell-user-require-system (name parent) (when *oos-verbose* (format t "~&; ~:[~;TEST:~] - System ~A requires ~S" *oos-test* (component-name parent) name) (finish-output *standard-output*))) + (defun tell-user-generic (string) (when *oos-verbose* (format t "~&; ~:[~;TEST:~] - ~A" *oos-test* string) (finish-output *standard-output*))) + ;;; ******************************** ;;; Y-OR-N-P-WAIT ****************** ;;; ******************************** @@ -2698,9 +3652,11 @@ D Lisps, this allows other processes to continue while we busy-wait. If 0, skips call to SLEEP.") + (defun internal-real-time-in-seconds () (get-universal-time)) + (defun read-char-wait (&optional (timeout 20) input-stream (eof-error-p t) eof-value &aux peek) @@ -2713,16 +3669,17 @@ D (unless (zerop *sleep-amount*) (sleep *sleep-amount*)))) + ;;; Lots of lisps, especially those that run on top of UNIX, do not get ;;; their input one character at a time, but a whole line at a time because ;;; of the buffering done by the UNIX system. This causes y-or-n-p-wait -;;; to not always work as expected. +;;; to not always work as expected. ;;; ;;; I wish lisp did all its own buffering (turning off UNIX input line ;;; buffering by putting the UNIX into CBREAK mode). Of course, this means -;;; that we lose input editing, but why can't the lisp implement this? +;;; that we lose input editing, but why can't the lisp implement this? -(defun y-or-n-p-wait (&optional (default #\y) (timeout 20) +(defun y-or-n-p-wait (&optional (default #\y) (timeout 20) format-string &rest args) "Y-OR-N-P-WAIT prints the message, if any, and reads characters from *QUERY-IO* until the user enters y, Y or space as an affirmative, or either @@ -2741,19 +3698,19 @@ D (read-char-wait timeout *query-io* nil nil) (read-char *query-io*))) (char (or read-char default))) - ;; We need to ignore #\newline because otherwise the bugs in + ;; We need to ignore #\newline because otherwise the bugs in ;; clear-input will cause y-or-n-p-wait to print the "Type ..." ;; message every time... *sigh* ;; Anyway, we might want to use this to ignore whitespace once ;; clear-input is fixed. (unless (find char '(#\tab #\newline #\return)) - (when (null read-char) + (when (null read-char) (format *query-io* "~@[~A~]" default) (finish-output *query-io*)) (cond ((null char) (return t)) ((find char '(#\y #\Y #\space) :test #'char=) (return t)) ((find char '(#\n #\N) :test #'char=) (return nil)) - (t + (t (when *clear-input-before-query* (clear-input *query-io*)) (format *query-io* "~&Type \"y\" for yes or \"n\" for no. ") (when format-string @@ -2761,67 +3718,102 @@ D (apply #'format *query-io* format-string args)) (finish-output *query-io*))))))) -#| +#|| (y-or-n-p-wait #\y 20 "What? ") (progn (format t "~&hi") (finish-output) (y-or-n-p-wait #\y 10 "1? ") (y-or-n-p-wait #\n 10 "2? ")) -|# +||# + +;;;=========================================================================== +;;; Running the operations. + +(defvar %%component%% nil) + +(export '(%%component%%)) ; Just a placeholder. Move it to the export list. + + +(defmacro with-special-component-vars ((c) &body forms) + `(let ((%%component%% ,c)) + (declare (special %%component%%)) + ,@forms)) + + ;;; ******************************** ;;; Operate on System ************** ;;; ******************************** ;;; Operate-on-system -;; Operation is :compile, 'compile, :load or 'load -;; Force is :all or :new-source or :new-source-and-dependents or a list of -;; specific modules. -;; :all (or T) forces a recompilation of every file in the system -;; :new-source-and-dependents compiles only those files whose -;; sources have changed or who depend on recompiled files. -;; :new-source compiles only those files whose sources have changed -;; A list of modules means that only those modules and their dependents are recompiled. -;; Test is T to print out what it would do without actually doing it. -;; Note: it automatically sets verbose to T if test is T. -;; Verbose is T to print out what it is doing (compiling, loading of -;; modules and files) as it does it. -;; Dribble should be the pathname of the dribble file if you want to -;; dribble the compilation. -;; Load-source-instead-of-binary is T to load .lisp instead of binary files. -;; Version may be nil to signify no subdirectory, -;; a symbol, such as alpha, beta, omega, :alpha, mark, which -;; specifies a subdirectory of the root, or -;; a string, which replaces the root. -;; -(defun operate-on-system (name operation &key force +;;; Operation is :compile, 'compile, :load or 'load +;;; Force is :all or :new-source or :new-source-and-dependents or a list of +;;; specific modules. +;;; :all (or T) forces a recompilation of every file in the system +;;; :new-source-and-dependents compiles only those files whose +;;; sources have changed or who depend on recompiled files. +;;; :new-source compiles only those files whose sources have changed +;;; A list of modules means that only those modules and their +;;; dependents are recompiled. +;;; Test is T to print out what it would do without actually doing it. +;;; Note: it automatically sets verbose to T if test is T. +;;; Verbose is T to print out what it is doing (compiling, loading of +;;; modules and files) as it does it. +;;; Dribble should be the pathname of the dribble file if you want to +;;; dribble the compilation. +;;; Load-source-instead-of-binary is T to load .lisp instead of binary files. +;;; Version may be nil to signify no subdirectory, +;;; a symbol, such as alpha, beta, omega, :alpha, mark, which +;;; specifies a subdirectory of the root, or +;;; a string, which replaces the root. + +(defun operate-on-system (name operation + &key + force (version *version*) (test *oos-test*) (verbose *oos-verbose*) - (load-source-instead-of-binary + (load-source-instead-of-binary *load-source-instead-of-binary*) (load-source-if-no-binary - *load-source-if-no-binary*) + *load-source-if-no-binary*) (bother-user-if-no-binary *bother-user-if-no-binary*) (compile-during-load *compile-during-load*) dribble - (minimal-load *minimal-load*)) + (minimal-load *minimal-load*) + (override-compilation-unit t) + ) + (declare #-(or :cltl2 :ansi-cl) (ignore override-compilation-unit)) (unwind-protect ;; Protect the undribble. - (progn + (#+(and (or :cltl2 :ansi-cl) (not :gcl)) with-compilation-unit + #+(and (or :cltl2 :ansi-cl) (not :gcl)) (:override override-compilation-unit) + #-(and (or :cltl2 :ansi-cl) (not :gcl)) progn (when *reset-full-pathname-table* (clear-full-pathname-tables)) (when dribble (dribble dribble)) (when test (setq verbose t)) - (when (null force);; defaults + (when (null force) ; defaults (case operation ((load :load) (setq force :all)) ((compile :compile) (setq force :new-source-and-dependents)) (t (setq force :all)))) ;; Some CL implementations have a variable called *compile-verbose* ;; or *compile-file-verbose*. - (multiple-value-bind (*version-dir* *version-replace*) + (multiple-value-bind (*version-dir* *version-replace*) (translate-version version) ;; CL implementations may uniformly default this to nil - (let ((*load-verbose* t) ; nil - #-(or MCL CMU) (*compile-file-verbose* t) ; nil - (*compile-verbose* t) ; nil + (let ((*load-verbose* #-common-lisp-controller t + #+common-lisp-controller nil) ; nil + #-(or MCL CMU CLISP ECL :sbcl lispworks scl) + (*compile-file-verbose* t) ; nil + #+common-lisp-controller + (*compile-print* nil) + #+(and common-lisp-controller cmu) + (ext:*compile-progress* nil) + #+(and common-lisp-controller cmu) + (ext:*require-verbose* nil) + #+(and common-lisp-controller cmu) + (ext:*gc-verbose* nil) + + (*compile-verbose* #-common-lisp-controller t + #+common-lisp-controller nil) ; nil (*version* version) (*oos-verbose* verbose) (*oos-test* test) @@ -2830,29 +3822,37 @@ D (*bother-user-if-no-binary* bother-user-if-no-binary) (*load-source-instead-of-binary* load-source-instead-of-binary) (*minimal-load* minimal-load) - (system (find-system name :load))) - #-CMU + (system (if (and (component-p name) + (member (component-type name) + '(:system :defsystem :subsystem))) + name + (find-system name :load)))) + #-(or CMU CLISP :sbcl :lispworks :cormanlisp scl) (declare (special *compile-verbose* #-MCL *compile-file-verbose*) - (ignore *compile-verbose* #-MCL *compile-file-verbose*)) + #-openmcl (ignore *compile-verbose* + #-MCL *compile-file-verbose*) + #-openmcl (optimize (inhibit-warnings 3))) (unless (component-operation operation) (error "Operation ~A undefined." operation)) + (operate-on-component system operation force)))) (when dribble (dribble)))) -(defun COMPILE-SYSTEM (name &key force + +(defun compile-system (name &key force (version *version*) (test *oos-test*) (verbose *oos-verbose*) (load-source-instead-of-binary *load-source-instead-of-binary*) - (load-source-if-no-binary - *load-source-if-no-binary*) + (load-source-if-no-binary + *load-source-if-no-binary*) (bother-user-if-no-binary *bother-user-if-no-binary*) (compile-during-load *compile-during-load*) dribble (minimal-load *minimal-load*)) ;; For users who are confused by OOS. - (operate-on-system + (operate-on-system name :compile :force force :version version @@ -2865,18 +3865,18 @@ D :dribble dribble :minimal-load minimal-load)) -(defun LOAD-SYSTEM (name &key force +(defun load-system (name &key force (version *version*) (test *oos-test*) (verbose *oos-verbose*) (load-source-instead-of-binary *load-source-instead-of-binary*) - (load-source-if-no-binary *load-source-if-no-binary*) + (load-source-if-no-binary *load-source-if-no-binary*) (bother-user-if-no-binary *bother-user-if-no-binary*) (compile-during-load *compile-during-load*) dribble (minimal-load *minimal-load*)) ;; For users who are confused by OOS. - (operate-on-system + (operate-on-system name :load :force force :version version @@ -2889,13 +3889,13 @@ D :dribble dribble :minimal-load minimal-load)) -(defun CLEAN-SYSTEM (name &key (force :all) +(defun clean-system (name &key (force :all) (version *version*) (test *oos-test*) (verbose *oos-verbose*) dribble) "Deletes all the binaries in the system." ;; For users who are confused by OOS. - (operate-on-system + (operate-on-system name :delete-binaries :force force :version version @@ -2903,7 +3903,7 @@ D :verbose verbose :dribble dribble)) -(defun EDIT-SYSTEM +(defun edit-system (name &key force (version *version*) (test *oos-test*) @@ -2918,7 +3918,7 @@ D :verbose verbose :dribble dribble)) -(defun HARDCOPY-SYSTEM +(defun hardcopy-system (name &key force (version *version*) (test *oos-test*) @@ -2933,6 +3933,59 @@ D :verbose verbose :dribble dribble)) + +;;; ensure-external-system-def-loaded component -- +;;; Let's treat definition clauses of the form +;;; +;;; (:system "name") +;;; i.e. +;;; +;;; (:system "name" :components nil) +;;; +;;; in a special way. +;;; When encountered, MK:DEFSYSTEM tries to FIND-SYSTEM +;;; the system named "name" (by forcing a reload from disk). +;;; This may be more "natural". + +(defun ensure-external-system-def-loaded (component) + (assert (member (component-type component) + '(:subsystem :system))) + (when (null (component-components component)) + (let* ((cname (component-name component))) + (declare (ignorable cname)) + ;; First we ensure that we reload the system definition. + (undefsystem cname) + (let* ((*reload-systems-from-disk* t) + (system-component + (find-system (component-name component) + :load + + ;; Let's not supply the def-pname + ;; yet. + #+not-yet + (merge-pathname + (make-pathname :name cname + :type "system" + :directory ()) + (component-full-pathname component + :source)) + + + )) + ) + ;; Now we have a problem. + ;; We have just ensured that a system definition is + ;; loaded, however, the COMPONENT at hand is different + ;; from SYSTEM-COMPONENT. + ;; To fix this problem we just use the following + ;; kludge. This should prevent re-entering in this + ;; code branch, while actually preparing the COMPONENT + ;; for operation. + (setf (component-components component) + (list system-component)) + )))) + + (defun operate-on-component (component operation force &aux changed) ;; Returns T if something changed and had to be compiled. (let ((type (component-type component)) @@ -2943,14 +3996,14 @@ D (progn ;; Use the correct package. (when (component-package component) - (tell-user-generic (format nil "Using package ~A" + (tell-user-generic (format nil "Using package ~A" (component-package component))) (unless *oos-test* (unless (find-package (component-package component)) ;; If the package name is the same as the name of the system, ;; and the package is not defined, this would lead to an ;; infinite loop, so bomb out with an error. - (when (string-equal (string (component-package component)) + (when (string-equal (string (component-package component)) (component-name component)) (format t "~%Component ~A not loaded:~%" (component-name component)) @@ -2966,23 +4019,36 @@ D (when package (setf *package* package))))) - ;; Load any required systems - (when (eq type :defsystem) ; maybe :system too? + ;; Marco Antoniotti 20040609 + ;; New feature. Try to FIND-SYSTEM :system components if + ;; they have no local :components definition. + ;; OPERATE-ON-SYSTEM-DEPENDENCIES should still work as + ;; advertised, given the small change made there. + + (when (or (eq type :system) (eq type :subsystem)) + (ensure-external-system-def-loaded component)) + + (when (or (eq type :defsystem) (eq type :system)) (operate-on-system-dependencies component operation force)) - ;; Do any compiler proclamations + ;; Do any compiler proclamations (when (component-proclamations component) (tell-user-generic (format nil "Doing proclamations for ~A" (component-name component))) - (or *oos-test* - (proclaim (component-proclamations component)))) + (unless *oos-test* + (proclaim (component-proclamations component)))) ;; Do any initial actions (when (component-initially-do component) (tell-user-generic (format nil "Doing initializations for ~A" (component-name component))) - (or *oos-test* - (eval (component-initially-do component)))) + (unless *oos-test* + (with-special-component-vars (component) + (let ((initially-do (component-initially-do component))) + (if (functionp initially-do) + (funcall initially-do) + (eval initially-do)))) + )) ;; If operation is :compile and load-only is T, this would change ;; the operation to load. Only, this would mean that a module would @@ -2991,13 +4057,15 @@ D ;; seem right. So instead, we propagate the :load-only attribute ;; to the components, and modify compile-file-operation so that ;; it won't compile the files (and modify tell-user to say "Loading" - ;; instead of "Compiling" for load-only modules). - #|(when (and (find operation '(:compile compile)) - (component-load-only component)) - (setf operation :load))|# + ;; instead of "Compiling" for load-only modules). + #|| + (when (and (find operation '(:compile compile)) + (component-load-only component)) + (setf operation :load)) + ||# ;; Do operation and set changed flag if necessary. - (setq changed + (setq changed (case type ((:file :private-file) (funcall (component-operation operation) component force)) @@ -3008,8 +4076,25 @@ D (when (component-finally-do component) (tell-user-generic (format nil "Doing finalizations for ~A" (component-name component))) - (or *oos-test* - (eval (component-finally-do component))))) + (unless *oos-test* + (with-special-component-vars (component) + (let ((finally-do (component-finally-do component))) + (if (functionp finally-do) + (funcall finally-do) + (eval finally-do)))) + )) + + ;; add the banner if needed + #+(or cmu scl) + (when (component-banner component) + (unless (stringp (component-banner component)) + (error "The banner should be a string, it is: ~S" + (component-banner component))) + (setf (getf ext:*herald-items* + (intern (string-upcase (component-name component)) + (find-package :keyword))) + (list + (component-banner component))))) ;; Reset the package. (Cleanup form of unwind-protect.) ;;(in-package old-package) @@ -3022,13 +4107,14 @@ D (or *oos-test* (provide (canonicalize-system-name (component-name component)))))) - ;; Return non-NIL if something changed in this component and hence had + ;; Return non-NIL if something changed in this component and hence had ;; to be recompiled. This is only used as a boolean. changed) (defvar *force* nil) (defvar *providing-blocks-load-propagation* t "If T, if a system dependency exists on *modules*, it is not loaded.") + (defun operate-on-system-dependencies (component operation &optional force) (when *system-dependencies-delayed* (let ((*force* force)) @@ -3040,43 +4126,63 @@ D ;; to load it (needed since we may be depending on a lisp ;; dependent package). ;; Explores the system tree in a DFS manner. - (cond ((and *operations-propagate-to-subsystems* - (not (listp system)) - ;; The subsystem is a defined system. - (find-system system :load-or-nil)) - ;; Call OOS on it. Since *system-dependencies-delayed* is - ;; T, the :depends-on slot is filled with the names of - ;; systems, not defstructs. - ;; Aside from system, operation, force, for everything else - ;; we rely on the globals. - (unless (and *providing-blocks-load-propagation* - ;; If *providing-blocks-load-propagation* is T, - ;; the system dependency must not exist in the - ;; *modules* for it to be loaded. Note that - ;; the dependencies are implicitly systems. - (find operation '(load :load)) - ;; (or (eq force :all) (eq force t)) - (find (canonicalize-system-name system) - *modules* :test #'string-equal)) - (operate-on-system system operation :force force))) - ((listp system) - (tell-user-require-system - (cond ((and (null (car system)) (null (cadr system))) - (caddr system)) - (t system)) - component) - (or *oos-test* (new-require (car system) nil - (eval (cadr system)) - (caddr system) - (or (car (cdddr system)) - *version*)))) - (t - (tell-user-require-system system component) - (or *oos-test* (new-require system)))))))) + + ;; Do not try to do anything with non system components. + (cond ((and *operations-propagate-to-subsystems* + (not (listp system)) + (or (stringp system) (symbolp system)) + ;; The subsystem is a defined system. + (find-system system :load-or-nil)) + ;; Call OOS on it. Since *system-dependencies-delayed* is + ;; T, the :depends-on slot is filled with the names of + ;; systems, not defstructs. + ;; Aside from system, operation, force, for everything else + ;; we rely on the globals. + (unless (and *providing-blocks-load-propagation* + ;; If *providing-blocks-load-propagation* is T, + ;; the system dependency must not exist in the + ;; *modules* for it to be loaded. Note that + ;; the dependencies are implicitly systems. + (find operation '(load :load)) + ;; (or (eq force :all) (eq force t)) + (find (canonicalize-system-name system) + *modules* :test #'string-equal)) + + (operate-on-system system operation :force force))) + + ((listp system) + ;; If the SYSTEM is a list then its contents are as follows. + ;; + ;; (<name> <definition-pathname> <action> &optional <version>) + ;; + + (destructuring-bind (system-name definition-pathname action + &optional version) + system + (tell-user-require-system + (if (and (null system-name) + (null definition-pathname)) + action + system) + component) + (or *oos-test* (new-require system-name + nil + (eval definition-pathname) + action + (or version *version*))))) + ((and (component-p system) + (not (member (component-type system) + '(:defsystem :subsystem :system)))) + ;; Do nothing for non system components. + ) + (t + (tell-user-require-system system component) + (or *oos-test* (new-require system)))) + )))) ;;; Modules can depend only on siblings. If a module should depend ;;; on an uncle, then the parent module should depend on that uncle -;;; instead. Likewise a module should depend on a sibling, not a niece +;;; instead. Likewise a module should depend on a sibling, not a niece ;;; or nephew. Modules also cannot depend on cousins. Modules cannot ;;; depend on parents, since that is circular. @@ -3091,12 +4197,12 @@ D (dolist (module (component-components component)) (when (operate-on-component module operation (cond ((and (module-depends-on-changed module changed) - #|(some #'(lambda (dependent) + #||(some #'(lambda (dependent) (member dependent changed)) - (component-depends-on module))|# + (component-depends-on module))||# (or (non-empty-listp force) (eq force :new-source-and-dependents))) - ;; The component depends on a changed file + ;; The component depends on a changed file ;; and force agrees. (if (eq force :new-source-and-dependents) :new-source-all @@ -3104,65 +4210,109 @@ D ((and (non-empty-listp force) (member (component-name module) force :test #'string-equal :key #'string)) - ;; Force is a list of modules + ;; Force is a list of modules ;; and the component is one of them. :all) (t force))) (push module changed))) (case operation ((compile :compile) - (eval (component-compile-form component))) + (with-special-component-vars (component) + (let ((compile-form (component-compile-form component))) + (if (functionp compile-form) + (funcall compile-form) + (eval compile-form))))) ((load :load) - (eval (component-load-form component)))))) + (with-special-component-vars (component) + (let ((load-form (component-load-form component))) + (if (functionp load-form) + (funcall load-form) + (eval load-form))) + ))))) ;; This is only used as a boolean. changed) ;;; ******************************** ;;; New Require ******************** ;;; ******************************** + +;;; This needs cleaning. Obviously the code is a left over from the +;;; time people did not know how to use packages in a proper way or +;;; CLs were shaky in their implementation. + +;;; First of all we need this. (Commented out for the time being) +;;; (shadow '(cl:require)) + + (defvar *old-require* nil) ;;; All calls to require in this file have been replaced with calls ;;; to new-require to avoid compiler warnings and make this less of ;;; a tangled mess. -(defun new-require (module-name &optional pathname definition-pname - default-action (version *version*)) + +(defun new-require (module-name + &optional + pathname + definition-pname + default-action + (version *version*)) ;; If the pathname is present, this behaves like the old require. - (unless (and module-name - (find #-CMU (string module-name) - #+CMU (string-downcase (string module-name)) - *modules* :test #'string=)) - (cond (pathname - (funcall *old-require* module-name pathname)) - ;; If the system is defined, load it. - ((find-system module-name :load-or-nil definition-pname) - (operate-on-system module-name :load - :force *force* - :version version - :test *oos-test* - :verbose *oos-verbose* - :load-source-if-no-binary *load-source-if-no-binary* - :bother-user-if-no-binary *bother-user-if-no-binary* - :compile-during-load *compile-during-load* - :load-source-instead-of-binary *load-source-instead-of-binary* - :minimal-load *minimal-load*)) - ;; If there's a default action, do it. This could be a progn which - ;; loads a file that does everything. - ((and default-action - (eval default-action))) - ;; If no system definition file, try regular require. - ;; had last arg PATHNAME, but this wasn't really necessary. - ((funcall *old-require* module-name)) - ;; If no default action, print a warning or error message. - (t - (format t "~&Warning: System ~A doesn't seem to be defined..." - module-name))))) + (unless (and module-name + ;; madhu: Allegro cannot coerce pathnames to strings + ;; via (string #p"foo") and module-name turns out to be + ;; a pathname when REQUIRE is used internally to load + ;; internal modules. + #+allegro + (and (pathnamep module-name) + (setq module-name (namestring module-name))) + (find (string module-name) + *modules* :test #'string=)) + (handler-case + (cond (pathname + (funcall *old-require* module-name pathname)) + ;; If the system is defined, load it. + ((find-system module-name :load-or-nil definition-pname) + (operate-on-system + module-name :load + :force *force* + :version version + :test *oos-test* + :verbose *oos-verbose* + :load-source-if-no-binary *load-source-if-no-binary* + :bother-user-if-no-binary *bother-user-if-no-binary* + :compile-during-load *compile-during-load* + :load-source-instead-of-binary *load-source-instead-of-binary* + :minimal-load *minimal-load*)) + ;; If there's a default action, do it. This could be a progn which + ;; loads a file that does everything. + ((and default-action + (eval default-action))) + ;; If no system definition file, try regular require. + ;; had last arg PATHNAME, but this wasn't really necessary. + ((funcall *old-require* module-name)) + ;; If no default action, print a warning or error message. + (t + #|| + (format t "~&Warning: System ~A doesn't seem to be defined..." + module-name) + ||# + (error 'missing-system :name module-name))) + (missing-module (mmc) (signal mmc)) ; Resignal. + ;; madhu 080902 a missing-system is incorrectly signalled when + ;; mk:oos throws an error. + #+nil + (error (e) + (declare (ignore e)) + ;; Signal a (maybe wrong) MISSING-SYSTEM. + (error 'missing-system :name module-name))) + )) + ;;; Note that in some lisps, when the compiler sees a REQUIRE form at -;;; top level it immediately executes it. This is as if an +;;; top level it immediately executes it. This is as if an ;;; (eval-when (compile load eval) ...) were wrapped around the REQUIRE ;;; form. I don't see any easy way to do this without making REQUIRE -;;; a macro. +;;; a macro. ;;; ;;; For example, in VAXLisp, if a (require 'streams) form is at the top of ;;; a file in the system, compiling the system doesn't wind up loading the @@ -3171,62 +4321,71 @@ D ;;; ;;; So perhaps we should replace the redefinition of lisp:require ;;; with the following macro definition: -#| +#|| (unless *old-require* - (setf *old-require* - (symbol-function #-(or lispworks + (setf *old-require* + (symbol-function #-(or :lispworks + :sbcl (and :excl :allegro-v4.0)) 'lisp:require - #+lispworks 'system:::require + #+:sbcl 'cl:require + #+:lispworks 'system:::require #+(and :excl :allegro-v4.0) 'cltl1:require)) (let (#+:CCL (ccl:*warn-if-redefine-kernel* nil)) ;; Note that lots of lisps barf if we redefine a function from ;; the LISP package. So what we do is define a macro with an - ;; unused name, and use (setf macro-function) to redefine + ;; unused name, and use (setf macro-function) to redefine ;; lisp:require without compiler warnings. If the lisp doesn't - ;; do the right thing, try just replacing require-as-macro + ;; do the right thing, try just replacing require-as-macro ;; with lisp:require. - (defmacro require-as-macro (module-name + (defmacro require-as-macro (module-name &optional pathname definition-pname default-action (version '*version*)) `(eval-when (compile load eval) - (new-require ,module-name ,pathname ,definition-pname + (new-require ,module-name ,pathname ,definition-pname ,default-action ,version))) - (setf (macro-function #-(and :excl :allegro-v4.0) 'lisp:require + (setf (macro-function #-(and :excl :sbcl :allegro-v4.0) 'lisp:require + #+:sbcl 'cl:require #+(and :excl :allegro-v4.0) 'cltl1:require) (macro-function 'require-as-macro)))) -|# +||# ;;; This will almost certainly fix the problem, but will cause problems ;;; if anybody does a funcall on #'require. ;;; Redefine old require to call the new require. -(eval-when #-(or :lucid :cmu17) (:load-toplevel :execute) - #+(or :lucid :cmu17) (load eval) +(eval-when #-(or :lucid) (:load-toplevel :execute) + #+(or :lucid) (load eval) (unless *old-require* - (setf *old-require* - (symbol-function - #-(or (and :excl :allegro-v4.0) :mcl :lispworks) 'lisp:require + (setf *old-require* + (symbol-function + #-(or (and :excl :allegro-v4.0) :mcl :sbcl :lispworks) 'lisp:require #+(and :excl :allegro-v4.0) 'cltl1:require - #+lispworks3.1 'common-lisp::require + #+:sbcl 'cl:require + #+:lispworks3.1 'common-lisp::require #+(and :lispworks (not :lispworks3.1)) 'system::require - #+:mcl 'ccl:require)) + #+:openmcl 'cl:require + #+(and :mcl (not :openmcl)) 'ccl:require + )) (unless *dont-redefine-require* - (let (#+(or :mcl (and :CCL (not lispworks))) + (let (#+(or :mcl (and :CCL (not :lispworks))) (ccl:*warn-if-redefine-kernel* nil)) #-(or (and allegro-version>= (version>= 4 1)) :lispworks) - (setf (symbol-function - #-(or (and :excl :allegro-v4.0) :mcl :lispworks) 'lisp:require + (setf (symbol-function + #-(or (and :excl :allegro-v4.0) :mcl :sbcl :lispworks) 'lisp:require #+(and :excl :allegro-v4.0) 'cltl1:require - #+lispworks3.1 'common-lisp::require + #+:lispworks3.1 'common-lisp::require + #+:sbcl 'cl:require #+(and :lispworks (not :lispworks3.1)) 'system::require - #+:mcl 'ccl:require) + #+:openmcl 'cl:require + #+(and :mcl (not :openmcl)) 'ccl:require + ) (symbol-function 'new-require)) - #+lispworks + #+:lispworks (let ((warn-packs system::*packages-for-warn-on-redefinition*)) (declare (special system::*packages-for-warn-on-redefinition*)) (setq system::*packages-for-warn-on-redefinition* nil) - (setf (symbol-function + (setf (symbol-function #+:lispworks3.1 'common-lisp::require #-:lispworks3.1 'system::require ) @@ -3238,13 +4397,46 @@ D (symbol-function 'new-require)))))) ) + +;;; Well, let's add some more REQUIRE hacking; specifically for SBCL, +;;; and, eventually, for CMUCL. + +#+sbcl +(eval-when (:compile-toplevel :load-toplevel :execute) + +(defun sbcl-mk-defsystem-module-provider (name) + ;; Let's hope things go smoothly. + (let ((module-name (string-downcase (string name)))) + (when (mk:find-system module-name :load-or-nil) + (mk:load-system module-name + :compile-during-load t + :verbose nil)))) + +(pushnew 'sbcl-mk-defsystem-module-provider sb-ext:*module-provider-functions*) +) + +#+#.(cl:if (cl:and (cl:find-package "EXT") (cl:find-symbol "*MODULE-PROVIDER-FUNCTIONS*" "EXT")) '(and) '(or)) +(progn + (defun cmucl-mk-defsystem-module-provider (name) + (let ((module-name (string-downcase (string name)))) + (when (mk:find-system module-name :load-or-nil) + (mk:load-system module-name + :compile-during-load t + :verbose nil)))) + + (pushnew 'cmucl-mk-defsystem-module-provider ext:*module-provider-functions*) + ) + + + + ;;; ******************************** ;;; Language-Dependent Characteristics ;;; ******************************** ;;; This section is used for defining language-specific behavior of ;;; defsystem. If the user changes a language definition, it should ;;; take effect immediately -- they shouldn't have to reload the -;;; system definition file for the changes to take effect. +;;; system definition file for the changes to take effect. (defvar *language-table* (make-hash-table :test #'equal) "Hash table that maps from languages to language structures.") @@ -3284,18 +4476,18 @@ D (let ((language (find-language (or (component-language component) :lisp)))) (or (when language (language-source-extension language)) - "lisp"))) + (car *filename-extensions*)))) (defun default-binary-extension (component) (let ((language (find-language (or (component-language component) :lisp)))) (or (when language (language-binary-extension language)) - "fasl"))) + (cdr *filename-extensions*)))) -(defmacro define-language (name &key compiler loader +(defmacro define-language (name &key compiler loader source-extension binary-extension) (let ((language (gensym "LANGUAGE"))) - `(let ((,language (make-language :name ,name + `(let ((,language (make-language :name ,name :compiler ,compiler :loader ,loader :source-extension ,source-extension @@ -3303,14 +4495,14 @@ D (setf (gethash ,name *language-table*) ,language) ,name))) -#| +#|| ;;; Test System for verifying multi-language capabilities. (defsystem foo :language :lisp - :components ((:module c :language :c :components ("foo" "bar")) + :components ((:module c :language :c :components ("foo" "bar")) (:module lisp :components ("baz" "barf")))) -|# +||# ;;; *** Lisp Language Definition (define-language :lisp @@ -3321,13 +4513,13 @@ D ;;; *** PseudoScheme Language Definition (defun scheme-compile-file (filename &rest args) - (let ((scheme-package (find-package "SCHEME"))) - (apply (symbol-function (find-symbol "COMPILE-FILE" - scheme-package)) + (let ((scheme-package (find-package '#:scheme))) + (apply (symbol-function (find-symbol (symbol-name 'compile-file) + scheme-package)) filename - (funcall (symbol-function - (find-symbol "INTERACTION-ENVIRONMENT" - scheme-package))) + (funcall (symbol-function + (find-symbol (symbol-name '#:interaction-environment) + scheme-package))) args))) (define-language :scheme @@ -3343,53 +4535,350 @@ D ;;; we might add a COMPILER-OPTIONS slot to the component defstruct. (defparameter *c-compiler* "gcc") -#-symbolics +#-(or symbolics (and :lispworks :harlequin-pc-lisp )) + (defun run-unix-program (program arguments) + ;; arguments should be a list of strings, where each element is a + ;; command-line option to send to the program. #+:lucid (run-program program :arguments arguments) - #+:allegro (excl:run-shell-command (format nil "~A~@[ ~A~]" - program arguments)) - #+KCL (system (format nil "~A~@[ ~A~]" program arguments)) - #+:cmu (extensions:run-program program arguments) - #+:lispworks (foreign:call-system-showing-output - (format nil "~A~@[ ~A~]" program arguments)) + #+:allegro (excl:run-shell-command + (format nil "~A~@[ ~{~A~^ ~}~]" + program arguments)) + #+(or :kcl :ecl) (system (format nil "~A~@[ ~{~A~^ ~}~]" program arguments)) + #+(or :cmu :scl) (extensions:run-program program arguments) + #+:openmcl (ccl:run-program program arguments) + #+:sbcl (sb-ext:run-program program arguments) + #+:lispworks (foreign:call-system-showing-output + (format nil "~A~@[ ~{~A~^ ~}~]" program arguments)) + #+clisp (#+lisp=cl ext:run-program #-lisp=cl lisp:run-program + program :arguments arguments) ) -(defun c-compile-file (filename &rest args &key output-file) + +#+(or symbolics (and :lispworks :harlequin-pc-lisp)) +(defun run-unix-program (program arguments) + (declare (ignore program arguments)) + (error "MK::RUN-UNIX-PROGRAM: this does not seem to be a UN*X system.") + ) + + +;;; This is inspired by various versions - all very UNIX/Linux +;;; dependent - appearing in ASDF and UFFI. The original versions and Copyrights +;;; are by Dan Barlow, Kevin Rosenberg and many others. +;;; This version should be more liberal. + +(defvar *default-shell* "/bin/sh") + +#+(or windows ms-windows win32) +(eval-when (:load-toplevel :execute) + ;; Lets assume a "standard" Cygwin installation. + (if (probe-file (pathname "C:\\cygwin\\bin\\sh.exe")) + (setf *default-shell* "C:\\cygwin\\bin\\sh.exe") + (setf *default-shell* nil))) + + +(defun run-shell-command (command-control-string + arguments + &key + (output *trace-output*) + (shell *default-shell*) + ) + "Executes a shell 'command' in an underlying process. +RUN-SHELL-COMMAND interpolate ARGS into CONTROL-STRING as if by FORMAT, and +synchronously execute the result using a Bourne-compatible shell, with +output to *trace-output*. Returns the shell's exit code." + + (declare (ignorable shell)) + + (let ((command (apply #'format nil command-control-string arguments))) + #+sbcl + (sb-impl::process-exit-code + (sb-ext:run-program shell + (list "-c" command) + :input nil + :output output)) + + #+(or cmu scl) + (ext:process-exit-code + (ext:run-program shell + (list "-c" command) + :input nil + :output output)) + + #+allegro + (excl:run-shell-command command :input nil :output output) + + #+(and lispworks win32) + (system:call-system-showing-output (format nil "cmd /c ~A" command) + :output-stream output) + + #+(and lispworks (not win32)) + (system:call-system-showing-output command + :shell-type shell + :output-stream output) + + #+clisp ;XXX not exactly *trace-output*, I know + (ext:run-shell-command command :output :terminal :wait t) + + #+openmcl + (nth-value 1 + (ccl:external-process-status + (ccl:run-program shell + (list "-c" command) + :input nil + :output output + :wait t))) + + #-(or openmcl clisp lispworks allegro scl cmu sbcl) + (error "RUN-SHELL-PROGRAM not implemented for this Lisp") + )) + + +#|| +(defun c-compile-file (filename &rest args &key output-file error-file) ;; gcc -c foo.c -o foo.o (declare (ignore args)) (run-unix-program *c-compiler* (format nil "-c ~A~@[ -o ~A~]" filename output-file))) +||# + +#|| +(defun c-compile-file (filename &rest args &key output-file error-file) + ;; gcc -c foo.c -o foo.o + (declare (ignore args error-file)) + (run-unix-program *c-compiler* + `("-c" ,filename ,@(if output-file `("-o" ,output-file))))) +||# + + +;;; The following code was inserted to improve C compiler support (at +;;; least under Linux/GCC). +;;; Thanks to Espen S Johnsen. +;;; +;;; 20001118 Marco Antoniotti. + +(defun default-output-pathname (path1 path2 type) + (if (eq path1 t) + (translate-logical-pathname + (merge-pathnames (make-pathname :type type) (pathname path2))) + (translate-logical-pathname (pathname path1)))) + + +(defun run-compiler (program + arguments + output-file + error-file + error-output + verbose) + #-(or cmu scl) (declare (ignore error-file error-output)) + + (flet ((make-useable-stream (&rest streams) + (apply #'make-broadcast-stream (delete nil streams))) + ) + (let (#+(or cmu scl) (error-file error-file) + #+(or cmu scl) (error-file-stream nil) + (verbose-stream nil) + (old-timestamp (file-write-date output-file)) + (fatal-error nil) + (output-file-written nil) + ) + (unwind-protect + (progn + #+(or cmu scl) + (setf error-file + (when error-file + (default-output-pathname error-file + output-file + *compile-error-file-type*)) + + error-file-stream + (and error-file + (open error-file + :direction :output + :if-exists :supersede))) + + (setf verbose-stream + (make-useable-stream + #+cmu error-file-stream + (and verbose *trace-output*))) + + (format verbose-stream "Running ~A~@[ ~{~A~^ ~}~]~%" + program + arguments) + + (setf fatal-error + #-(or cmu scl) + (and (run-unix-program program arguments) nil) ; Incomplete. + #+(or cmu scl) + (let* ((error-output + (make-useable-stream error-file-stream + (if (eq error-output t) + *error-output* + error-output))) + (process + (ext:run-program program arguments + :error error-output))) + (not (zerop (ext:process-exit-code process))))) + + (setf output-file-written + (and (probe-file output-file) + (not (eql old-timestamp + (file-write-date output-file))))) + + + (when output-file-written + (format verbose-stream "~A written~%" output-file)) + (format verbose-stream "Running of ~A finished~%" + program) + (values (and output-file-written output-file) + fatal-error + fatal-error)) + + #+(or cmu scl) + (when error-file + (close error-file-stream) + (unless (or fatal-error (not output-file-written)) + (delete-file error-file))) + + (values (and output-file-written output-file) + fatal-error + fatal-error))))) + + +;;; C Language definitions. + +(defun c-compile-file (filename &rest args + &key + (output-file t) + (error-file t) + (error-output t) + (verbose *compile-verbose*) + debug + link + optimize + cflags + definitions + include-paths + library-paths + libraries + (error t)) + (declare (ignore args)) + + (flet ((map-options (flag options &optional (func #'identity)) + (mapcar #'(lambda (option) + (format nil "~A~A" flag (funcall func option))) + options)) + ) + (let* ((output-file (default-output-pathname output-file filename "o")) + (arguments + `(,@(when (not link) '("-c")) + ,@(when debug '("-g")) + ,@(when optimize (list (format nil "-O~D" optimize))) + ,@cflags + ,@(map-options + "-D" definitions + #'(lambda (definition) + (if (atom definition) + definition + (apply #'format nil "~A=~A" definition)))) + ,@(map-options "-I" include-paths #'truename) + ,(namestring (truename filename)) + "-o" + ,(namestring (translate-logical-pathname output-file)) + ,@(map-options "-L" library-paths #'truename) + ,@(map-options "-l" libraries)))) + + (multiple-value-bind (output-file warnings fatal-errors) + (run-compiler *c-compiler* + arguments + output-file + error-file + error-output + verbose) + (if (and error (or (not output-file) fatal-errors)) + (error "Compilation failed") + (values output-file warnings fatal-errors)))))) + (define-language :c :compiler #'c-compile-file - :loader #+:lucid #'load-foreign-files + :loader #+:lucid #'load-foreign-files #+:allegro #'load - #-(or :lucid :allegro) #'load + #+(or :cmu :scl) #'alien:load-foreign + #+:sbcl #'sb-alien:load-foreign + #+(and :lispworks :unix (not :linux) (not :macosx)) #'link-load:read-foreign-modules + #+(and :lispworks :unix (or :linux :macosx)) #'fli:register-module + #+(and :lispworks :win32) #'fli:register-module + #+(or :ecl :gcl :kcl) #'load ; should be enough. + #-(or :lucid + :allegro + :cmu + :sbcl + :scl + :lispworks + :ecl :gcl :kcl) + (lambda (&rest args) + (declare (ignore args)) + (cerror "Continue returning NIL." + "Loader not defined for C foreign libraries in ~A ~A." + (lisp-implementation-type) + (lisp-implementation-version))) :source-extension "c" :binary-extension "o") -#| -;;; FDMM's changes, which we've replaced. -(defvar *compile-file-function* #'cl-compile-file) -#+(or :clos :pcl) -(defmethod set-language ((lang (eql :common-lisp))) - (setq *compile-file-function* #'cl-compile-file)) +;;; Fortran Language definitions. +;;; From Matlisp. + +(export '(*fortran-compiler* *fortran-options*)) + +(defparameter *fortran-compiler* "g77") +(defparameter *fortran-options* '("-O")) + +(defun fortran-compile-file (filename &rest args + &key output-file error-file + &allow-other-keys) + (declare (ignore error-file args)) + (let ((arg-list + (append *fortran-options* + `("-c" ,filename ,@(if output-file `("-o" ,output-file)))))) + (run-unix-program *fortran-compiler* arg-list))) + + +(mk:define-language :fortran + :compiler #'fortran-compile-file + :loader #'identity + :source-extension "f" + :binary-extension "o") + + +;;; AR support. +;; How to create a library (archive) of object files + +(export '(*ar-program* build-lib)) + +(defparameter *ar-program* "ar") + +(defun build-lib (libname directory) + (let ((args (list "rv" (truename libname)))) + (format t ";;; Building archive ~A~%" libname) + (run-unix-program *ar-program* + (append args + (mapcar #'truename (directory directory)))))) -#+(or :clos :pcl) -(defmethod set-language ((lang (eql :scheme))) - (setq *compile-file-function #'scheme-compile-file)) -|# ;;; ******************************** ;;; Component Operations *********** ;;; ******************************** ;;; Define :compile/compile and :load/load operations +(eval-when (:load-toplevel :execute) (component-operation :compile 'compile-and-load-operation) (component-operation 'compile 'compile-and-load-operation) (component-operation :load 'load-file-operation) (component-operation 'load 'load-file-operation) +) + (defun compile-and-load-operation (component force) ;; FORCE was CHANGED. this caused defsystem during compilation to only @@ -3398,20 +4887,21 @@ D ;; Return T if the file had to be recompiled and reloaded. (if (and changed (component-compile-only component)) ;; For files which are :compile-only T, compiling the file - ;; satisfies the need to load. + ;; satisfies the need to load. changed ;; If the file wasn't compiled, or :compile-only is nil, ;; check to see if it needs to be loaded. (and (load-file-operation component force) ; FORCE was CHANGED ??? changed)))) + (defun unmunge-lucid (namestring) ;; Lucid's implementation of COMPILE-FILE is non-standard, in that ;; when the :output-file is a relative pathname, it tries to munge ;; it with the directory of the source file. For example, ;; (compile-file "src/globals.lisp" :output-file "bin/globals.sbin") ;; tries to stick the file in "./src/bin/globals.sbin" instead of - ;; "./bin/globals.sbin" like any normal lisp. This hack seems to fix the + ;; "./bin/globals.sbin" like any normal lisp. This hack seems to fix the ;; problem. I wouldn't have expected this problem to occur with any ;; use of defsystem, but some defsystem users are depending on ;; using relative pathnames (at least three folks reported the problem). @@ -3423,38 +4913,63 @@ D ;; Ugly, but seems to fix the problem. (concatenate 'string "./" namestring)))) +#+gcl +(defun ensure-directories-exist (arg0 &key verbose) + (declare (ignore arg0 verbose)) + ()) + + (defun compile-file-operation (component force) ;; Returns T if the file had to be compiled. (let ((must-compile ;; For files which are :load-only T, loading the file ;; satisfies the demand to recompile. (and (null (component-load-only component)) ; not load-only - (or (find force '(:all :new-source-all t) :test #'eq) + (or (find force '(:all :new-source-all t) :test #'eq) (and (find force '(:new-source :new-source-and-dependents) :test #'eq) - (needs-compilation component))))) + (needs-compilation component nil))))) (source-pname (component-full-pathname component :source))) (cond ((and must-compile (probe-file source-pname)) (with-tell-user ("Compiling source" component :source) - (or *oos-test* - (funcall (compile-function component) + (let ((output-file + #+:lucid + (unmunge-lucid (component-full-pathname component + :binary)) + #-:lucid + (component-full-pathname component :binary))) + + ;; make certain the directory we need to write to + ;; exists [pvaneynd@debian.org 20001114] + ;; Added PATHNAME-HOST following suggestion by John + ;; DeSoi [marcoxa@sourceforge.net 20020529] + + (ensure-directories-exist + (make-pathname + :host (pathname-host output-file) + :directory (pathname-directory output-file))) + + (or *oos-test* + (apply (compile-function component) source-pname :output-file - #+:lucid - (unmunge-lucid (component-full-pathname component - :binary)) - #-:lucid - (component-full-pathname component :binary) - #+CMU :error-file - #+CMU (and *cmu-errors-to-file* - (component-full-pathname component - :error)) - #+(and CMU (not :new-compiler)) - :errors-to-terminal - #+(and CMU (not :new-compiler)) + output-file + + #+(or :cmu :scl) + :error-file + + #+(or :cmu :scl) + (and *cmu-errors-to-file* + (component-full-pathname component :error)) + + #+cmu + :error-output + #+cmu *cmu-errors-to-terminal* - ))) + + (component-compiler-options component) + )))) must-compile) (must-compile (tell-user "Source file not found. Not compiling" @@ -3462,29 +4977,65 @@ D nil) (t nil)))) -(defun needs-compilation (component) + +;;; compiled-file-p -- +;;; See CLOCC/PORT/sys.lisp:compiled-file-p + +(eval-when (:load-toplevel :execute :compile-toplevel) + (when (find-package "PORT") + (import (find-symbol "COMPILED-FILE-P" "PORT")))) + +(unless (fboundp 'compiled-file-p) + (defun compiled-file-p (file-name) + "Return T if the FILE-NAME is a filename designator for a valid compiled. +Signal an error when it is not a filename designator. +Return NIL when the file does not exist, or is not readable, +or does not contain valid compiled code." + #+clisp + (with-open-file (in file-name :direction :input :if-does-not-exist nil) + (handler-bind ((error (lambda (c) (declare (ignore c)) + (return-from compiled-file-p nil)))) + (and in (char= #\( (peek-char nil in nil #\a)) + (let ((form (read in nil nil))) + (and (consp form) + (eq (car form) 'SYSTEM::VERSION) + (null (eval form))))))) + #-clisp (declare (ignorable file-name)) + #-clisp t)) + + +(defun needs-compilation (component force) ;; If there is no binary, or it is older than the source ;; file, then the component needs to be compiled. ;; Otherwise we only need to recompile if it depends on a file that changed. + (declare (ignore force)) (let ((source-pname (component-full-pathname component :source)) - (binary-pname (component-full-pathname component :binary))) - (and + (binary-pname (component-full-pathname component :binary))) + (and ;; source must exist - (probe-file source-pname) + (probe-file source-pname) (or + ;; We force recompilation. + #|(find force '(:all :new-source-all) :test #'eq)|# ;; no binary - (null (probe-file binary-pname)) + (null (probe-file binary-pname)) ;; old binary - (< (file-write-date binary-pname) - (file-write-date source-pname)))))) + (< (file-write-date binary-pname) + (file-write-date source-pname)) + ;; invalid binary + (not (compiled-file-p binary-pname)))))) + (defun needs-loading (component &optional (check-source t) (check-binary t)) ;; Compares the component's load-time against the file-write-date of - ;; the files on disk. + ;; the files on disk. (let ((load-time (component-load-time component)) (source-pname (component-full-pathname component :source)) (binary-pname (component-full-pathname component :binary))) - (or + (or + #|| ISI Extension ||# + (component-load-always component) + ;; File never loaded. (null load-time) ;; Binary is newer. @@ -3510,8 +5061,8 @@ D ;; needs-compilation has an implicit source-exists in it. (needs-compilation (if (component-load-only component) source-needs-loading - (needs-compilation component))) - (check-for-new-source + (needs-compilation component force))) + (check-for-new-source ;; If force is :new-source*, we're checking for files ;; whose source is newer than the compiled versions. (find force '(:new-source :new-source-and-dependents :new-source-all) @@ -3523,13 +5074,17 @@ D (and load-binary (component-load-only component)) (and check-for-new-source needs-compilation))) (compile-and-load - (and needs-compilation (or load-binary check-for-new-source) - (compile-and-load-source-if-no-binary component)))) + (and needs-compilation + (or load-binary check-for-new-source) + (compile-and-load-source-if-no-binary component))) + ) ;; When we're trying to minimize the files loaded to only those ;; that need be, restrict the values of load-source and load-binary ;; so that we only load the component if the files are newer than ;; the load-time. - (when *minimal-load* + (when (and *minimal-load* + (not (find force '(:all :new-source-all) + :test #'eq))) (when load-source (setf load-source source-needs-loading)) (when load-binary (setf load-binary binary-needs-loading))) @@ -3544,13 +5099,14 @@ D (funcall (load-function component) binary-pname) (setf (component-load-time component) (file-write-date binary-pname))))) - T) + t) ((and source-exists (or (and load-source ; implicit needs-comp... (or *load-source-instead-of-binary* (component-load-only component) (not *compile-during-load*))) - (and load-binary (not binary-exists) + (and load-binary + (not binary-exists) (load-source-if-no-binary component)))) ;; Load the source if the source exists and: ;; o we're loading binary and it doesn't exist @@ -3558,11 +5114,11 @@ D ;; o we're loading new source and user wasn't asked to compile (with-tell-user ("Loading source" component :source) (or *oos-test* - (progn + (progn (funcall (load-function component) source-pname) (setf (component-load-time component) (file-write-date source-pname))))) - T) + t) ((and binary-exists load-binary) (with-tell-user ("Loading binary" component :binary) (or *oos-test* @@ -3570,38 +5126,40 @@ D (funcall (load-function component) binary-pname) (setf (component-load-time component) (file-write-date binary-pname))))) - T) + t) ((and (not binary-exists) (not source-exists)) (tell-user-no-files component :force) (when *files-missing-is-an-error* (cerror "Continue, ignoring missing files." "~&Source file ~S ~:[and binary file ~S ~;~]do not exist." source-pname - (or *load-source-if-no-binary* + (or *load-source-if-no-binary* *load-source-instead-of-binary*) binary-pname)) nil) - (t + (t nil))))) +(eval-when (load eval) (component-operation :clean 'delete-binaries-operation) (component-operation 'clean 'delete-binaries-operation) (component-operation :delete-binaries 'delete-binaries-operation) (component-operation 'delete-binaries 'delete-binaries-operation) +) (defun delete-binaries-operation (component force) (when (or (eq force :all) (eq force t) (and (find force '(:new-source :new-source-and-dependents :new-source-all) :test #'eq) - (needs-compilation component))) + (needs-compilation component nil))) (let ((binary-pname (component-full-pathname component :binary))) (when (probe-file binary-pname) (with-tell-user ("Deleting binary" component :binary) (or *oos-test* (delete-file binary-pname))))))) - + ;; when the operation = :compile, we can assume the binary exists in test mode. ;; ((and *oos-test* ;; (eq operation :compile) @@ -3614,43 +5172,45 @@ D ;;; or old-binary (defun compile-and-load-source-if-no-binary (component) (when (not (or *load-source-instead-of-binary* - (and *load-source-if-no-binary* + (and *load-source-if-no-binary* (not (binary-exists component))))) (cond ((component-load-only component) - #|(let ((prompt (prompt-string component))) + #|| + (let ((prompt (prompt-string component))) (format t "~A- File ~A is load-only, ~ - ~&~A not compiling." + ~&~A not compiling." prompt (component-full-pathname component :source) - prompt))|# + prompt)) + ||# nil) ((eq *compile-during-load* :query) (let* ((prompt (prompt-string component)) (compile-source - (y-or-n-p-wait + (y-or-n-p-wait #\y 30 "~A- Binary file ~A is old or does not exist. ~ - ~&~A Compile (and load) source file ~A instead? " + ~&~A Compile (and load) source file ~A instead? " prompt (component-full-pathname component :binary) prompt (component-full-pathname component :source)))) - (unless (y-or-n-p-wait + (unless (y-or-n-p-wait #\y 30 "~A- Should I bother you if this happens again? " prompt) - (setq *compile-during-load* - (y-or-n-p-wait + (setq *compile-during-load* + (y-or-n-p-wait #\y 30 - "~A- Should I compile and load or not? " - prompt))) ; was compile-source, then t + "~A- Should I compile while loading the system? " + prompt))) ; was compile-source, then t compile-source)) (*compile-during-load*) (t nil)))) (defun load-source-if-no-binary (component) (and (not *load-source-instead-of-binary*) - (or (and *load-source-if-no-binary* + (or (and *load-source-if-no-binary* (not (binary-exists component))) (component-load-only component) (when *bother-user-if-no-binary* @@ -3676,24 +5236,24 @@ D ;;; ******************************** ;;; Creates toplevel command aliases for Allegro CL. #+:allegro -(top-level:alias ("compile-system" 8) +(top-level:alias ("compile-system" 8) (system &key force (minimal-load mk:*minimal-load*) test verbose version) "Compile the specified system" - (mk:compile-system system :force force + (mk:compile-system system :force force :minimal-load minimal-load :test test :verbose verbose :version version)) #+:allegro -(top-level:alias ("load-system" 5) +(top-level:alias ("load-system" 5) (system &key force (minimal-load mk:*minimal-load*) (compile-during-load mk:*compile-during-load*) test verbose version) "Compile the specified system" - (mk:load-system system :force force + (mk:load-system system :force force :minimal-load minimal-load :compile-during-load compile-during-load :test test :verbose verbose @@ -3722,25 +5282,25 @@ D (system &key force test verbose version) "Delete binaries in the specified system." - (mk:clean-system system :force force + (mk:clean-system system :force force :test test :verbose verbose :version version)) #+:allegro -(top-level:alias ("edit-system" 7) +(top-level:alias ("edit-system" 7) (system &key force test verbose version) "Load system source files into Emacs." - (mk:edit-system system :force force + (mk:edit-system system :force force :test test :verbose verbose :version version)) #+:allegro -(top-level:alias ("hardcopy-system" 9) +(top-level:alias ("hardcopy-system" 9) (system &key force test verbose version) "Hardcopy files in the specified system." - (mk:hardcopy-system system :force force + (mk:hardcopy-system system :force force :test test :verbose verbose :version version)) @@ -3755,10 +5315,10 @@ D ;;; Allegro Make System Fasl ******* ;;; ******************************** #+:excl -(defun allegro-make-system-fasl (system destination +(defun allegro-make-system-fasl (system destination &optional (include-dependents t)) (excl:shell - (format nil "rm -f ~A; cat~{ ~A~} > ~A" + (format nil "rm -f ~A; cat~{ ~A~} > ~A" destination (if include-dependents (files-in-system-and-dependents system :all :binary) @@ -3775,12 +5335,12 @@ D (type :source) version) ;; Returns a list of the pathnames in system and dependents in load order. (let ((system (find-system name :load))) - (multiple-value-bind (*version-dir* *version-replace*) + (multiple-value-bind (*version-dir* *version-replace*) (translate-version version) (let ((*version* version)) (let ((result (file-pathnames-in-component system type force))) (dolist (dependent (reverse (component-depends-on system))) - (setq result + (setq result (append (files-in-system-and-dependents dependent force type version) result))) @@ -3788,8 +5348,11 @@ D (defun files-in-system (name &optional (force :all) (type :source) version) ;; Returns a list of the pathnames in system in load order. - (let ((system (find-system name :load))) - (multiple-value-bind (*version-dir* *version-replace*) + (let ((system (if (and (component-p name) + (member (component-type name) '(:defsystem :system :subsystem))) + name + (find-system name :load)))) + (multiple-value-bind (*version-dir* *version-replace*) (translate-version version) (let ((*version* version)) (file-pathnames-in-component system type force))))) @@ -3798,21 +5361,21 @@ D (mapcar #'(lambda (comp) (component-full-pathname comp type)) (file-components-in-component component force))) -(defun file-components-in-component (component &optional (force :all) +(defun file-components-in-component (component &optional (force :all) &aux result changed) (case (component-type component) ((:file :private-file) - (when (setq changed - (or (find force '(:all t) :test #'eq) + (when (setq changed + (or (find force '(:all t) :test #'eq) (and (not (non-empty-listp force)) - (needs-compilation component)))) + (needs-compilation component nil)))) (setq result (list component)))) ((:module :system :subsystem :defsystem) (dolist (module (component-components component)) (multiple-value-bind (r c) - (file-components-in-component - module + (file-components-in-component + module (cond ((and (some #'(lambda (dependent) (member dependent changed)) (component-depends-on module)) @@ -3823,7 +5386,8 @@ D ((and (non-empty-listp force) (member (component-name module) force :test #'string-equal :key #'string)) - ;; Force is a list of modules and the component is one of them. + ;; Force is a list of modules and the component is + ;; one of them. :all) (t force))) (when c @@ -3834,41 +5398,43 @@ D (setf (symbol-function 'oos) (symbol-function 'operate-on-system)) ;;; ******************************** -;;; Additional Component Operations +;;; Additional Component Operations ;;; ******************************** ;;; *** Edit Operation *** -;;; Should this conditionalization be (or :mcl (and :CCL (not lispworks)))? -#+:ccl -(defun edit-operation (component force) - "Always returns nil, i.e. component not changed." - (declare (ignore force)) - ;; - (let* ((full-pathname (make::component-full-pathname component :source)) - (already-editing\? #+:mcl (dolist (w (CCL:windows :class - 'fred-window)) - (when (equal (CCL:window-filename w) - full-pathname) - (return w))) - #-:mcl nil)) - (if already-editing\? - #+:mcl (CCL:window-select already-editing\?) #-:mcl nil - (ed full-pathname))) - nil) - -#+:allegro -(defun edit-operation (component force) - "Edit a component - always returns nil, i.e. component not changed." - (declare (ignore force)) - (let ((full-pathname (component-full-pathname component :source))) - (ed full-pathname)) - nil) - -#+(or :ccl :allegro) -(make::component-operation :edit 'edit-operation) -#+(or :ccl :allegro) -(make::component-operation 'edit 'edit-operation) +;;; Should this conditionalization be (or :mcl (and :CCL (not :lispworks)))? +#| + #+:ccl + (defun edit-operation (component force) +"Always returns nil, i.e. component not changed." +(declare (ignore force)) +;; +(let* ((full-pathname (make::component-full-pathname component :source)) +(already-editing\? #+:mcl (dolist (w (CCL:windows :class +'fred-window)) +(when (equal (CCL:window-filename w) +full-pathname) +(return w))) +#-:mcl nil)) +(if already-editing\? +#+:mcl (CCL:window-select already-editing\?) #-:mcl nil +(ed full-pathname))) +nil) + + #+:allegro + (defun edit-operation (component force) +"Edit a component - always returns nil, i.e. component not changed." +(declare (ignore force)) +(let ((full-pathname (component-full-pathname component :source))) +(ed full-pathname)) +nil) + + #+(or :ccl :allegro) + (make::component-operation :edit 'edit-operation) + #+(or :ccl :allegro) + (make::component-operation 'edit 'edit-operation) + |# ;;; *** Hardcopy System *** (defparameter *print-command* "enscript -2Gr" ; "lpr" @@ -3890,13 +5456,14 @@ D ;;; *** System Source Size *** -(defun system-source-size (system-name) +(defun system-source-size (system-name &optional (force :all)) "Prints a short report and returns the size in bytes of the source files in <system-name>." - (let* ((file-list (files-in-system system-name :all :source)) + (let* ((file-list (files-in-system system-name force :source)) (total-size (file-list-size file-list))) - (format t "~&~S (~A files) totals ~A bytes (~A K)" - system-name (length file-list) total-size (round total-size 1024)) + (format t "~&~a/~a (~:d file~:p) totals ~:d byte~:p (~:d kB)" + system-name force (length file-list) + total-size (round total-size 1024)) total-size)) (defun file-list-size (file-list) @@ -3920,45 +5487,4 @@ D (format t "done.~%"))) - -;;; **************************************************************** -;;; Dead Code ****************************************************** -;;; **************************************************************** - -#| -;;; ******************************** -;;; Alist Manipulation ************* -;;; ******************************** -;;; This is really gross. I've replaced it with hash tables. - -(defun alist-lookup (name alist &key (test #'eql) (key #'identity)) - (cdr (assoc name alist :test test :key key))) - -(defmacro set-alist-lookup ((name alist &key (test '#'eql) (key '#'identity)) - value) - (let ((pair (gensym))) - `(let ((,pair (assoc ,name ,alist :test ,test :key ,key))) - (if ,pair - (rplacd ,pair ,value) - (push (cons ,name ,value) ,alist))))) - -(defun component-operation (name &optional operation) - (if operation - (set-alist-lookup (name *component-operations*) operation) - (alist-lookup name *component-operations*))) - -(defun machine-type-translation (name &optional operation) - (if operation - (set-alist-lookup (name *machine-type-alist* :test #'string-equal) - operation) - (alist-lookup name *machine-type-alist* :test #'string-equal))) - -(defun software-type-translation (name &optional operation) - (if operation - (set-alist-lookup (name *software-type-alist* :test #'string-equal) - operation) - (alist-lookup name *software-type-alist* :test #'string-equal))) - -|# - -;;; *END OF FILE* +;;; end of file -- defsystem.lisp -- diff --git a/tools/build-utils.sh b/tools/build-utils.sh index e59fd19236a748594a1de75655b3b9e9253ff4b0..7f5862ed384fb139b192a50ba0d1035d9053c38f 100755 --- a/tools/build-utils.sh +++ b/tools/build-utils.sh @@ -15,6 +15,18 @@ fi TARGET="`echo $1 | sed 's:/*$::'`" shift +# Compile up the asdf and defsystem modules +$TARGET/lisp/lisp -noinit -nositeinit -batch "$@" << EOF || exit 3 +(in-package :cl-user) +(setf (ext:search-list "target:") + '("$TARGET/" "src/")) +(setf (ext:search-list "modules:") + '("target:contrib/")) + +(compile-file "modules:asdf/asdf") +(compile-file "modules:defsystem/defsystem") +EOF + $TARGET/lisp/lisp \ -noinit -nositeinit -batch "$@" <<EOF || exit 3 (in-package :cl-user) diff --git a/tools/clean-target.sh b/tools/clean-target.sh index 6e5b074a77be0679c50e3bc5c55663fa94a8e31b..90594d393b2eeb06952cd64e1ca754c6bde4b8f3 100755 --- a/tools/clean-target.sh +++ b/tools/clean-target.sh @@ -50,7 +50,7 @@ if [ -n "$KEEP" ]; then case $KEEP in lib) GREP='grep -v \(gray-streams\|gray-compat\|simple-streams\|iodefs\|external-formats\|clx\|hemlock\|clm\)-library' ;; core) CORE='' ;; - all) GREP='grep -v \(gray-streams\|gray-compat\|simple-streams\|iodefs\|external-formats\|clx\|hemlock\|clm\)-library' + all) GREP='grep -v \(gray-streams\|gray-compat\|simple-streams\|iodefs\|external-formats\|clx\|hemlock\|clm\)-library\|\(asdf\|defsystem\)' CORE='' ;; esac fi diff --git a/tools/make-extra-dist.sh b/tools/make-extra-dist.sh index 27670d45323e25fb6a6f73933fe5ed1511cd010b..3adee6852c51fbe3c45a9aa0b7d37a5485e0d0ca 100755 --- a/tools/make-extra-dist.sh +++ b/tools/make-extra-dist.sh @@ -94,12 +94,12 @@ install ${GROUP} ${OWNER} -m 0755 $TARGET/motif/server/motifd \ # Install the contrib stuff. Create the directories and then copy the files. -for d in `(cd src; find contrib -type d -print | grep -v CVS)` +for d in `(cd src; find contrib -type d -print | grep -v "CVS\|asdf\|defsystem")` do install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/$d done -for f in `(cd src/contrib; find . -type f -print | grep -v CVS)` +for f in `(cd src/contrib; find . -type f -print | grep -v "CVS\|asdf\|defsystem")` do FILE=`basename $f` DIR=`dirname $f` diff --git a/tools/make-main-dist.sh b/tools/make-main-dist.sh index 320490dd3e10945bd19886003a50c87bcab08412..aeea5f823e91ad9dd216712960c442e876522724 100755 --- a/tools/make-main-dist.sh +++ b/tools/make-main-dist.sh @@ -122,6 +122,23 @@ do install ${GROUP} ${OWNER} -m 0644 $f $DESTDIR/lib/cmucl/lib/ext-formats/ done +# Create the directories and install the fasl files for asdf and defsystem +for f in asdf defsystem +do + install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/contrib/$f + install ${GROUP} ${OWNER} -m 0644 $TARGET/contrib/$f/$f.$FASL $DESTDIR/lib/cmucl/lib/contrib/$f + if [ "$FASL" = "x86f" ]; then + # For x87, we want both x86f and sse2f + install ${GROUP} ${OWNER} -m 0644 $TARGET/contrib/$f/$f.sse2f $DESTDIR/lib/cmucl/lib/contrib/$f + fi +done + +# Copy the source files for asdf and defsystem +for f in `(cd src; find contrib/asdf contrib/defsystem -type f -print | grep -v CVS)` +do + install ${GROUP} ${OWNER} -m 0644 src/$f $DESTDIR/lib/cmucl/lib/$f +done + install ${GROUP} ${OWNER} -m 0644 src/general-info/cmucl.1 \ $DESTDIR/${MANDIR}/ install ${GROUP} ${OWNER} -m 0644 src/general-info/lisp.1 \