org.armedbear.lisp.fdefinition.lisp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abcl Show documentation
Show all versions of abcl Show documentation
Common Lisp implementation running on the JVM
;;; fdefinition.lisp
;;;
;;; Copyright (C) 2005-2006 Peter Graves
;;; $Id$
;;;
;;; This program is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU General Public License
;;; as published by the Free Software Foundation; either version 2
;;; of the License, or (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program; if not, write to the Free Software
;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
;;;
;;; As a special exception, the copyright holders of this library give you
;;; permission to link this library with independent modules to produce an
;;; executable, regardless of the license terms of these independent
;;; modules, and to copy and distribute the resulting executable under
;;; terms of your choice, provided that you also meet, for each linked
;;; independent module, the terms and conditions of the license of that
;;; module. An independent module is a module which is not derived from
;;; or based on this library. If you modify this library, you may extend
;;; this exception to your version of the library, but you are not
;;; obligated to do so. If you do not wish to do so, delete this
;;; exception statement from your version.
(in-package #:system)
(export '(record-source-information untraced-function))
(defun check-redefinition (name)
(when (and *warn-on-redefinition* (fboundp name) (not (autoloadp name)))
(when (and (symbolp name)
(source-pathname name))
;; SOURCE-PATHNAME is badly named as it is either a PATHNAMAE
;; or the symbol :TOP-LEVEL
(let ((old-source
(if (keywordp (source-pathname name))
(source-pathname name)
(probe-file (source-pathname name))))
(current-source
(if (not *source*)
:top-level
(probe-file *source*))))
(cond ((equal old-source
current-source)) ; OK
(t
(if (eq current-source :top-level)
(style-warn "redefining ~S at top level" name)
(let ((*package* +cl-package+))
(if (eq old-source :top-level)
(style-warn "redefining ~S in ~S (previously defined at top level)"
name current-source)
(style-warn "redefining ~S in ~S (previously defined in ~S)"
name current-source old-source))))))))))
(defun record-source-information (name &optional source-pathname source-position)
(unless source-pathname
(setf source-pathname (or *source* :top-level)))
(unless source-position
(setf source-position *source-position*))
(let ((source (if source-position
(cons source-pathname source-position)
source-pathname)))
(cond ((symbolp name)
(put name '%source source)))))
;; Redefined in trace.lisp.
(defun trace-redefined-update (&rest args)
(declare (ignore args))
)
;; Redefined in trace.lisp.
(defun untraced-function (name)
(declare (ignore name))
nil)
(defun fset (name function &optional source-position arglist documentation)
(cond ((symbolp name)
(check-redefinition name)
(record-source-information name nil source-position)
(when arglist
(%set-arglist function arglist))
(%set-documentation function 'function documentation)
(%set-symbol-function name function))
((setf-function-name-p name)
(check-redefinition name)
(record-source-information name nil source-position)
;; FIXME arglist documentation
(setf (get (%cadr name) 'setf-function) function))
(t
(require-type name '(or symbol (cons (eql setf) (cons symbol null))))))
(when (functionp function) ; FIXME Is this test needed?
(%set-lambda-name function name))
(trace-redefined-update name function)
function)
(defun fdefinition (name)
(cond ((symbolp name)
(symbol-function name))
((setf-function-name-p name)
(or (get (%cadr name) 'setf-function)
(error 'undefined-function :name name)))
(t
(require-type name '(or symbol (cons (eql setf) (cons symbol null)))))))
(defun %set-fdefinition (name function)
(fset name function))
(defsetf fdefinition %set-fdefinition)