;;;; -*- indent-tabs-mode: nil -*- ;;; ;;; swank-loader.lisp --- Compile and load the Slime backend. ;;; ;;; Created 2003, James Bielman ;;; ;;; This code has been placed in the Public Domain. All warranties ;;; are disclaimed. ;;; ;; If you want customize the source- or fasl-directory you can set ;; swank-loader:*source-directory* resp. swank-loader:*fasl-directory* ;; before loading this files. (you also need to create the ;; swank-loader package.) ;; E.g.: ;; ;; (make-package :swank-loader) ;; (defparameter swank-loader::*fasl-directory* "/tmp/fasl/") ;; (load ".../swank-loader.lisp") (cl:defpackage :swank-loader (:use :cl) (:export :init :dump-image :*source-directory* :*fasl-directory*)) (cl:in-package :swank-loader) (defvar *source-directory* (make-pathname :name nil :type nil :defaults (or *load-pathname* *default-pathname-defaults*)) "The directory where to look for the source.") (defparameter *sysdep-files* #+cmu '(swank-source-path-parser swank-source-file-cache swank-cmucl) #+scl '(swank-source-path-parser swank-source-file-cache swank-scl) #+sbcl '(swank-source-path-parser swank-source-file-cache swank-sbcl swank-gray) #+openmcl '(metering swank-openmcl swank-gray) #+lispworks '(swank-lispworks swank-gray) #+allegro '(swank-allegro swank-gray) #+clisp '(xref metering swank-clisp swank-gray) #+armedbear '(swank-abcl) #+cormanlisp '(swank-corman swank-gray) #+ecl '(swank-source-path-parser swank-source-file-cache swank-ecl swank-gray)) (defparameter *implementation-features* '(:allegro :lispworks :sbcl :openmcl :cmu :clisp :ccl :corman :cormanlisp :armedbear :gcl :ecl :scl)) (defparameter *os-features* '(:macosx :linux :windows :mswindows :win32 :solaris :darwin :sunos :hpux :unix)) (defparameter *architecture-features* '(:powerpc :ppc :x86 :x86-64 :amd64 :i686 :i586 :i486 :pc386 :iapx386 :sparc64 :sparc :hppa64 :hppa)) (defun lisp-version-string () #+(or openmcl cmu) (substitute-if #\_ (lambda (x) (find x " /")) (lisp-implementation-version)) #+(or cormanlisp scl sbcl ecl) (lisp-implementation-version) #+lispworks (lisp-implementation-version) #+allegro (format nil "~A~A~A" excl::*common-lisp-version-number* (if (eq 'h 'H) "A" "M") ; ANSI vs MoDeRn (if (member :64bit *features*) "-64bit" "")) #+clisp (let ((s (lisp-implementation-version))) (subseq s 0 (position #\space s))) #+armedbear (lisp-implementation-version)) (defun unique-dir-name () "Return a name that can be used as a directory name that is unique to a Lisp implementation, Lisp implementation version, operating system, and hardware architecture." (flet ((first-of (features) (loop for f in features when (find f *features*) return it)) (maybe-warn (value fstring &rest args) (cond (value) (t (apply #'warn fstring args) "unknown")))) (let ((lisp (maybe-warn (first-of *implementation-features*) "No implementation feature found in ~a." *implementation-features*)) (os (maybe-warn (first-of *os-features*) "No os feature found in ~a." *os-features*)) (arch (maybe-warn (first-of *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."))) (format nil "~(~@{~a~^-~}~)" lisp version os arch)))) (defun file-newer-p (new-file old-file) "Returns true if NEW-FILE is newer than OLD-FILE." (> (file-write-date new-file) (file-write-date old-file))) (defun slime-version-string () "Return a string identifying the SLIME version. Return nil if nothing appropriate is available." (with-open-file (s (merge-pathnames "ChangeLog" *source-directory*) :if-does-not-exist nil) (and s (symbol-name (read s))))) (defun default-fasl-dir () (merge-pathnames (make-pathname :directory `(:relative ".slime" "fasl" ,@(if (slime-version-string) (list (slime-version-string))) ,(unique-dir-name))) (user-homedir-pathname))) (defun binary-pathname (src-pathname binary-dir) "Return the pathname where SRC-PATHNAME's binary should be compiled." (let ((cfp (compile-file-pathname src-pathname))) (merge-pathnames (make-pathname :name (pathname-name cfp) :type (pathname-type cfp)) binary-dir))) (defun handle-loadtime-error (condition binary-pathname) (pprint-logical-block (*error-output* () :per-line-prefix ";; ") (format *error-output* "~%Error while loading: ~A~%Condition: ~A~%Aborting.~%" binary-pathname condition)) (when (equal (directory-namestring binary-pathname) (directory-namestring (default-fasl-dir))) (ignore-errors (delete-file binary-pathname))) (abort)) (defun compile-files (files fasl-dir load) "Compile each file in FILES if the source is newer than its corresponding binary, or the file preceding it was recompiled. If LOAD is true, load the fasl file." (let ((needs-recompile nil)) (dolist (src files) (let ((dest (binary-pathname src fasl-dir))) (handler-case (progn (when (or needs-recompile (not (probe-file dest)) (file-newer-p src dest)) ;; need a to recompile src-pathname, so we'll ;; need to recompile everything after this too. (setq needs-recompile t) (ensure-directories-exist dest) (compile-file src :output-file dest :print nil :verbose t)) (when load (load dest :verbose t))) ;; Fail as early as possible (serious-condition (c) (handle-loadtime-error c dest))))))) #+(or cormanlisp ecl) (defun compile-files (files fasl-dir load) "Corman Lisp and ECL have trouble with compiled files." (declare (ignore fasl-dir)) (when load (dolist (file files) (load file :verbose t) (force-output)))) (defun load-user-init-file () "Load the user init file, return NIL if it does not exist." (load (merge-pathnames (user-homedir-pathname) (make-pathname :name ".swank" :type "lisp")) :if-does-not-exist nil)) (defun load-site-init-file (dir) (load (make-pathname :name "site-init" :type "lisp" :defaults dir) :if-does-not-exist nil)) (defun src-files (names src-dir) (mapcar (lambda (name) (make-pathname :name (string-downcase name) :type "lisp" :defaults src-dir)) names)) (defvar *swank-files* `(swank-backend ,@*sysdep-files* swank)) (defvar *contribs* '(swank-c-p-c swank-arglists swank-fuzzy swank-fancy-inspector swank-presentations swank-presentation-streams #+(or asdf sbcl openmcl) swank-asdf swank-package-fu ) "List of names for contrib modules.") (defvar *fasl-directory* (default-fasl-dir) "The directory where fasl files should be placed.") (defun append-dir (absolute name) (merge-pathnames (make-pathname :directory `(:relative ,name) :defaults absolute) absolute)) (defun contrib-dir (base-dir) (append-dir base-dir "contrib")) (defun q (s) (read-from-string s)) (defun load-swank (&key (src-dir *source-directory*) (fasl-dir *fasl-directory*)) (compile-files (src-files *swank-files* src-dir) fasl-dir t) (funcall (q "swank::before-init") (slime-version-string) (list (contrib-dir fasl-dir) (contrib-dir src-dir)))) (defun compile-contribs (&key (src-dir (contrib-dir *source-directory*)) (fasl-dir (contrib-dir *fasl-directory*)) load) (compile-files (src-files *contribs* src-dir) fasl-dir load)) (defun loadup () (load-swank) (compile-contribs :load t)) (defun setup () (load-site-init-file *source-directory*) (load-user-init-file) (eval `(pushnew 'compile-contribs ,(q "swank::*after-init-hook*"))) (funcall (q "swank::init"))) (defun init (&key delete reload load-contribs (setup t)) (when (and delete (find-package :swank)) (mapc #'delete-package '(:swank :swank-io-package :swank-backend))) (cond ((or (not (find-package :swank)) reload) (load-swank)) (t (warn "Not reloading SWANK. Package already exists."))) (when load-contribs (compile-contribs :load t)) (when setup (setup))) (defun dump-image (filename) (init :setup nil) (funcall (q "swank-backend:save-image") filename))