1 ;;;; stuff originally from CMU CL's error.lisp which can or should
2 ;;;; come late (mostly related to the CONDITION class itself)
5 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; This software is derived from the CMU CL system, which was
9 ;;;; written at Carnegie Mellon University and released into the
10 ;;;; public domain. The software is in the public domain and is
11 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
12 ;;;; files for more information.
14 (in-package "SB!KERNEL")
16 ;;;; the CONDITION class
18 (/show0 "condition.lisp 20")
20 (eval-when (:compile-toplevel :load-toplevel :execute)
22 (/show0 "condition.lisp 24")
24 (def!struct (condition-classoid (:include classoid)
25 (:constructor make-condition-classoid))
26 ;; list of CONDITION-SLOT structures for the direct slots of this
28 (slots nil :type list)
29 ;; list of CONDITION-SLOT structures for all of the effective class
30 ;; slots of this class
31 (class-slots nil :type list)
32 ;; report function or NIL
33 (report nil :type (or function null))
34 ;; list of specifications of the form
36 ;; (INITARG INITFORM THUNK)
38 ;; where THUNK, when called without arguments, returns the value for
40 (direct-default-initargs () :type list)
41 ;; class precedence list as a list of CLASS objects, with all
42 ;; non-CONDITION classes removed
44 ;; a list of all the effective instance allocation slots of this
45 ;; class that have a non-constant initform or default-initarg.
46 ;; Values for these slots must be computed in the dynamic
47 ;; environment of MAKE-CONDITION.
48 (hairy-slots nil :type list))
50 (/show0 "condition.lisp 49")
54 (!defstruct-with-alternate-metaclass condition
55 :slot-names (actual-initargs assigned-slots)
56 :boa-constructor %make-condition-object
58 :metaclass-name condition-classoid
59 :metaclass-constructor make-condition-classoid
62 (defstruct (condition-slot (:copier nil))
63 (name (missing-arg) :type symbol)
64 ;; list of all applicable initargs
65 (initargs (missing-arg) :type list)
66 ;; names of reader and writer functions
67 (readers (missing-arg) :type list)
68 (writers (missing-arg) :type list)
69 ;; true if :INITFORM was specified
70 (initform-p (missing-arg) :type (member t nil))
71 ;; If this is a function, call it with no args. Otherwise, it's the
73 (initform (missing-arg) :type t)
74 ;; allocation of this slot, or NIL until defaulted
75 (allocation nil :type (member :instance :class nil))
76 ;; If ALLOCATION is :CLASS, this is a cons whose car holds the value.
77 (cell nil :type (or cons null))
79 (documentation nil :type (or string null)))
81 ;;; KLUDGE: It's not clear to me why CONDITION-CLASS has itself listed
82 ;;; in its CPL, while other classes derived from CONDITION-CLASS don't
83 ;;; have themselves listed in their CPLs. This behavior is inherited
84 ;;; from CMU CL, and didn't seem to be explained there, and I haven't
85 ;;; figured out whether it's right. -- WHN 19990612
86 (eval-when (:compile-toplevel :load-toplevel :execute)
87 (/show0 "condition.lisp 103")
88 (let ((condition-class (locally
89 ;; KLUDGE: There's a DEFTRANSFORM
90 ;; FIND-CLASSOID for constant class names
91 ;; which creates fast but
92 ;; non-cold-loadable, non-compact code. In
93 ;; this context, we'd rather have compact,
94 ;; cold-loadable code. -- WHN 19990928
95 (declare (notinline find-classoid))
96 (find-classoid 'condition))))
97 (setf (condition-classoid-cpl condition-class)
98 (list condition-class)))
99 (/show0 "condition.lisp 103"))
101 (setf (condition-classoid-report (locally
102 ;; KLUDGE: There's a DEFTRANSFORM
103 ;; FIND-CLASSOID for constant class
104 ;; names which creates fast but
105 ;; non-cold-loadable, non-compact
106 ;; code. In this context, we'd
107 ;; rather have compact,
108 ;; cold-loadable code. -- WHN
110 (declare (notinline find-classoid))
111 (find-classoid 'condition)))
112 (lambda (cond stream)
113 (format stream "Condition ~S was signalled." (type-of cond))))
115 (eval-when (:compile-toplevel :load-toplevel :execute)
117 (defun find-condition-layout (name parent-types)
118 (let* ((cpl (remove-duplicates
122 (condition-classoid-cpl
125 (cond-layout (info :type :compiler-layout 'condition))
126 (olayout (info :type :compiler-layout name))
127 ;; FIXME: Does this do the right thing in case of multiple
128 ;; inheritance? A quick look at DEFINE-CONDITION didn't make
129 ;; it obvious what ANSI intends to be done in the case of
130 ;; multiple inheritance, so it's not actually clear what the
133 (order-layout-inherits (concatenate 'simple-vector
134 (layout-inherits cond-layout)
135 (mapcar #'classoid-layout cpl)))))
137 (not (mismatch (layout-inherits olayout) new-inherits)))
139 (make-layout :classoid (make-undefined-classoid name)
140 :inherits new-inherits
142 :length (layout-length cond-layout)))))
146 ;;; FIXME: ANSI's definition of DEFINE-CONDITION says
147 ;;; Condition reporting is mediated through the PRINT-OBJECT method
148 ;;; for the condition type in question, with *PRINT-ESCAPE* always
149 ;;; being nil. Specifying (:REPORT REPORT-NAME) in the definition of
150 ;;; a condition type C is equivalent to:
151 ;;; (defmethod print-object ((x c) stream)
152 ;;; (if *print-escape* (call-next-method) (report-name x stream)))
153 ;;; The current code doesn't seem to quite match that.
154 (def!method print-object ((x condition) stream)
156 (if (and (typep x 'simple-condition) (slot-value x 'format-control))
157 (print-unreadable-object (x stream :type t :identity t)
158 (write (simple-condition-format-control x)
161 (print-unreadable-object (x stream :type t :identity t)))
162 ;; KLUDGE: A comment from CMU CL here said
163 ;; 7/13/98 BUG? CPL is not sorted and results here depend on order of
164 ;; superclasses in define-condition call!
165 (dolist (class (condition-classoid-cpl (classoid-of x))
166 (error "no REPORT? shouldn't happen!"))
167 (let ((report (condition-classoid-report class)))
169 (return (funcall report x stream)))))))
171 ;;;; slots of CONDITION objects
173 (defvar *empty-condition-slot* '(empty))
175 (defun find-slot-default (class slot)
176 (let ((initargs (condition-slot-initargs slot))
177 (cpl (condition-classoid-cpl class)))
178 ;; When CLASS or a superclass has a default initarg for SLOT, use
181 (let ((direct-default-initargs
182 (condition-classoid-direct-default-initargs class)))
183 (dolist (initarg initargs)
184 (let ((initfunction (third (assoc initarg direct-default-initargs))))
186 (return-from find-slot-default (funcall initfunction)))))))
188 ;; Otherwise use the initform of SLOT, if there is one.
189 (if (condition-slot-initform-p slot)
190 (let ((initform (condition-slot-initform slot)))
191 (if (functionp initform)
194 (error "unbound condition slot: ~S" (condition-slot-name slot)))))
196 (defun find-condition-class-slot (condition-class slot-name)
198 (condition-classoid-cpl condition-class)
199 (error "There is no slot named ~S in ~S."
200 slot-name condition-class))
201 (dolist (slot (condition-classoid-slots sclass))
202 (when (eq (condition-slot-name slot) slot-name)
203 (return-from find-condition-class-slot slot)))))
205 (defun condition-writer-function (condition new-value name)
206 (dolist (cslot (condition-classoid-class-slots
207 (layout-classoid (%instance-layout condition)))
208 (setf (getf (condition-assigned-slots condition) name)
210 (when (eq (condition-slot-name cslot) name)
211 (return (setf (car (condition-slot-cell cslot)) new-value)))))
213 (defun condition-reader-function (condition name)
214 (let ((class (layout-classoid (%instance-layout condition))))
215 (dolist (cslot (condition-classoid-class-slots class))
216 (when (eq (condition-slot-name cslot) name)
217 (return-from condition-reader-function
218 (car (condition-slot-cell cslot)))))
219 (let ((val (getf (condition-assigned-slots condition) name
220 *empty-condition-slot*)))
221 (if (eq val *empty-condition-slot*)
222 (let ((actual-initargs (condition-actual-initargs condition))
223 (slot (find-condition-class-slot class name)))
225 (error "missing slot ~S of ~S" name condition))
226 (do ((initargs actual-initargs (cddr initargs)))
228 (setf (getf (condition-assigned-slots condition) name)
229 (find-slot-default class slot)))
230 (when (member (car initargs) (condition-slot-initargs slot))
231 (return-from condition-reader-function
232 (setf (getf (condition-assigned-slots condition)
239 (defun allocate-condition (type &rest initargs)
240 (let* ((type (if (symbolp type)
241 (find-classoid type nil)
243 (class (typecase type
244 (condition-classoid type)
246 (return-from allocate-condition
247 (apply #'allocate-condition (class-name type) initargs)))
249 (error 'simple-type-error
251 :expected-type 'condition-class
252 :format-control "~S is not a condition class."
253 :format-arguments (list type)))
255 (error 'simple-type-error
257 :expected-type 'condition-class
259 "~s does not designate a condition class."
260 :format-arguments (list type)))))
261 (condition (%make-condition-object initargs '())))
262 (setf (%instance-layout condition) (classoid-layout class))
263 (values condition class)))
265 (defun make-condition (type &rest initargs)
267 "Make an instance of a condition object using the specified initargs."
268 ;; Note: ANSI specifies no exceptional situations in this function.
269 ;; signalling simple-type-error would not be wrong.
270 (multiple-value-bind (condition class)
271 (apply #'allocate-condition type initargs)
273 ;; Set any class slots with initargs present in this call.
274 (dolist (cslot (condition-classoid-class-slots class))
275 (dolist (initarg (condition-slot-initargs cslot))
276 (let ((val (getf initargs initarg *empty-condition-slot*)))
277 (unless (eq val *empty-condition-slot*)
278 (setf (car (condition-slot-cell cslot)) val)))))
280 ;; Default any slots with non-constant defaults now.
281 (dolist (hslot (condition-classoid-hairy-slots class))
282 (when (dolist (initarg (condition-slot-initargs hslot) t)
283 (unless (eq (getf initargs initarg *empty-condition-slot*)
284 *empty-condition-slot*)
286 (setf (getf (condition-assigned-slots condition)
287 (condition-slot-name hslot))
288 (find-slot-default class hslot))))
293 ;;;; DEFINE-CONDITION
295 (eval-when (:compile-toplevel :load-toplevel :execute)
296 (defun %compiler-define-condition (name direct-supers layout
297 all-readers all-writers)
298 (with-single-package-locked-error
299 (:symbol name "defining ~A as a condition")
300 (sb!xc:proclaim `(ftype (function (t) t) ,@all-readers))
301 (sb!xc:proclaim `(ftype (function (t t) t) ,@all-writers))
302 (multiple-value-bind (class old-layout)
303 (insured-find-classoid name
304 #'condition-classoid-p
305 #'make-condition-classoid)
306 (setf (layout-classoid layout) class)
307 (setf (classoid-direct-superclasses class)
308 (mapcar #'find-classoid direct-supers))
309 (cond ((not old-layout)
310 (register-layout layout))
311 ((not *type-system-initialized*)
312 (setf (layout-classoid old-layout) class)
313 (setq layout old-layout)
314 (unless (eq (classoid-layout class) layout)
315 (register-layout layout)))
316 ((redefine-layout-warning "current"
319 (layout-length layout)
320 (layout-inherits layout)
321 (layout-depthoid layout)
322 (layout-n-untagged-slots layout))
323 (register-layout layout :invalidate t))
324 ((not (classoid-layout class))
325 (register-layout layout)))
327 (setf (layout-info layout)
329 ;; KLUDGE: There's a FIND-CLASS DEFTRANSFORM for constant class
330 ;; names which creates fast but non-cold-loadable, non-compact
331 ;; code. In this context, we'd rather have compact, cold-loadable
332 ;; code. -- WHN 19990928
333 (declare (notinline find-classoid))
334 (layout-info (classoid-layout (find-classoid 'condition)))))
336 (setf (find-classoid name) class)
338 ;; Initialize CPL slot.
339 (setf (condition-classoid-cpl class)
340 (remove-if-not #'condition-classoid-p
341 (std-compute-class-precedence-list class)))))
345 ;;; Compute the effective slots of CLASS, copying inherited slots and
346 ;;; destructively modifying direct slots.
348 ;;; FIXME: It'd be nice to explain why it's OK to destructively modify
349 ;;; direct slots. Presumably it follows from the semantics of
350 ;;; inheritance and redefinition of conditions, but finding the cite
351 ;;; and documenting it here would be good. (Or, if this is not in fact
352 ;;; ANSI-compliant, fixing it would also be good.:-)
353 (defun compute-effective-slots (class)
354 (collect ((res (copy-list (condition-classoid-slots class))))
355 (dolist (sclass (cdr (condition-classoid-cpl class)))
356 (dolist (sslot (condition-classoid-slots sclass))
357 (let ((found (find (condition-slot-name sslot) (res)
358 :key #'condition-slot-name)))
360 (setf (condition-slot-initargs found)
361 (union (condition-slot-initargs found)
362 (condition-slot-initargs sslot)))
363 (unless (condition-slot-initform-p found)
364 (setf (condition-slot-initform-p found)
365 (condition-slot-initform-p sslot))
366 (setf (condition-slot-initform found)
367 (condition-slot-initform sslot)))
368 (unless (condition-slot-allocation found)
369 (setf (condition-slot-allocation found)
370 (condition-slot-allocation sslot))))
372 (res (copy-structure sslot)))))))
375 ;;; Early definitions of slot accessor creators.
377 ;;; Slot accessors must be generic functions, but ANSI does not seem
378 ;;; to specify any of them, and we cannot support it before end of
379 ;;; warm init. So we use ordinary functions inside SBCL, and switch to
380 ;;; GFs only at the end of building.
381 (declaim (notinline install-condition-slot-reader
382 install-condition-slot-writer))
383 (defun install-condition-slot-reader (name condition slot-name)
384 (declare (ignore condition))
385 (setf (fdefinition name)
387 (condition-reader-function condition slot-name))))
388 (defun install-condition-slot-writer (name condition slot-name)
389 (declare (ignore condition))
390 (setf (fdefinition name)
391 (lambda (new-value condition)
392 (condition-writer-function condition new-value slot-name))))
394 (defvar *define-condition-hooks* nil)
396 (defun %set-condition-report (name report)
397 (setf (condition-classoid-report (find-classoid name))
400 (defun %define-condition (name parent-types layout slots documentation
401 direct-default-initargs all-readers all-writers
403 (with-single-package-locked-error
404 (:symbol name "defining ~A as a condition")
405 (%compiler-define-condition name parent-types layout all-readers all-writers)
406 (sb!c:with-source-location (source-location)
407 (setf (layout-source-location layout)
409 (let ((class (find-classoid name)))
410 (setf (condition-classoid-slots class) slots
411 (condition-classoid-direct-default-initargs class) direct-default-initargs
412 (fdocumentation name 'type) documentation)
416 ;; Set up reader and writer functions.
417 (let ((slot-name (condition-slot-name slot)))
418 (dolist (reader (condition-slot-readers slot))
419 (install-condition-slot-reader reader name slot-name))
420 (dolist (writer (condition-slot-writers slot))
421 (install-condition-slot-writer writer name slot-name))))
423 ;; Compute effective slots and set up the class and hairy slots
424 ;; (subsets of the effective slots.)
425 (setf (condition-classoid-hairy-slots class) '())
426 (let ((eslots (compute-effective-slots class))
429 (mapcar #'condition-classoid-direct-default-initargs
430 (condition-classoid-cpl class)))))
431 (dolist (slot eslots)
432 (ecase (condition-slot-allocation slot)
434 (unless (condition-slot-cell slot)
435 (setf (condition-slot-cell slot)
436 (list (if (condition-slot-initform-p slot)
437 (let ((initform (condition-slot-initform slot)))
438 (if (functionp initform)
441 *empty-condition-slot*))))
442 (push slot (condition-classoid-class-slots class)))
444 (setf (condition-slot-allocation slot) :instance)
445 (when (or (functionp (condition-slot-initform slot))
446 (dolist (initarg (condition-slot-initargs slot) nil)
447 (when (functionp (third (assoc initarg e-def-initargs)))
449 (push slot (condition-classoid-hairy-slots class)))))))
450 (when (boundp '*define-condition-hooks*)
451 (dolist (fun *define-condition-hooks*)
452 (funcall fun class))))
455 (defmacro define-condition (name (&rest parent-types) (&rest slot-specs)
458 "DEFINE-CONDITION Name (Parent-Type*) (Slot-Spec*) Option*
459 Define NAME as a condition type. This new type inherits slots and its
460 report function from the specified PARENT-TYPEs. A slot spec is a list of:
461 (slot-name :reader <rname> :initarg <iname> {Option Value}*
463 The DEFINE-CLASS slot options :ALLOCATION, :INITFORM, [slot] :DOCUMENTATION
464 and :TYPE and the overall options :DEFAULT-INITARGS and
465 [type] :DOCUMENTATION are also allowed.
467 The :REPORT option is peculiar to DEFINE-CONDITION. Its argument is either
468 a string or a two-argument lambda or function name. If a function, the
469 function is called with the condition and stream to report the condition.
470 If a string, the string is printed.
472 Condition types are classes, but (as allowed by ANSI and not as described in
473 CLtL2) are neither STANDARD-OBJECTs nor STRUCTURE-OBJECTs. WITH-SLOTS and
474 SLOT-VALUE may not be used on condition objects."
475 (let* ((parent-types (or parent-types '(condition)))
476 (layout (find-condition-layout name parent-types))
479 (direct-default-initargs ()))
481 (all-readers nil append)
482 (all-writers nil append))
483 (dolist (spec slot-specs)
484 (when (keywordp spec)
485 (warn "Keyword slot name indicates probable syntax error:~% ~S"
487 (let* ((spec (if (consp spec) spec (list spec)))
488 (slot-name (first spec))
489 (allocation :instance)
496 (do ((options (rest spec) (cddr options)))
498 (unless (and (consp options) (consp (cdr options)))
499 (error "malformed condition slot spec:~% ~S." spec))
500 (let ((arg (second options)))
501 (case (first options)
502 (:reader (readers arg))
503 (:writer (writers arg))
506 (writers `(setf ,arg)))
509 (error "more than one :INITFORM in ~S" spec))
512 (:initarg (initargs arg))
514 (setq allocation arg))
517 (error "more than one :DOCUMENTATION in ~S" spec))
518 (unless (stringp arg)
519 (error "slot :DOCUMENTATION argument is not a string: ~S"
521 (setq documentation arg))
524 (error "unknown slot option:~% ~S" (first options))))))
526 (all-readers (readers))
527 (all-writers (writers))
528 (slots `(make-condition-slot
530 :initargs ',(initargs)
533 :initform-p ',initform-p
534 :documentation ',documentation
535 :initform ,(when initform-p
536 `#'(lambda () ,initform))
537 :allocation ',allocation)))))
539 (dolist (option options)
540 (unless (consp option)
541 (error "bad option:~% ~S" option))
543 (:documentation (setq documentation (second option)))
545 (let ((arg (second option)))
548 `#'(lambda (condition stream)
549 (declare (ignore condition))
550 (write-string ,arg stream))
551 `#'(lambda (condition stream)
552 (funcall #',arg condition stream))))))
554 (doplist (initarg initform) (rest option)
555 (push ``(,',initarg ,',initform ,#'(lambda () ,initform))
556 direct-default-initargs)))
558 (error "unknown option: ~S" (first option)))))
561 (eval-when (:compile-toplevel)
562 (%compiler-define-condition ',name ',parent-types ',layout
563 ',(all-readers) ',(all-writers)))
564 (eval-when (:load-toplevel :execute)
565 (%define-condition ',name
570 (list ,@direct-default-initargs)
573 (sb!c:source-location))
574 ;; This needs to be after %DEFINE-CONDITION in case :REPORT
575 ;; is a lambda referring to condition slot accessors:
576 ;; they're not proclaimed as functions before it has run if
577 ;; we're under EVAL or loaded as source.
578 (%set-condition-report ',name ,report)
581 ;;;; various CONDITIONs specified by ANSI
583 (define-condition serious-condition (condition) ())
585 (define-condition error (serious-condition) ())
587 (define-condition warning (condition) ())
588 (define-condition style-warning (warning) ())
590 (defun simple-condition-printer (condition stream)
591 (let ((control (simple-condition-format-control condition)))
593 (apply #'format stream
595 (simple-condition-format-arguments condition))
596 (error "No format-control for ~S" condition))))
598 (define-condition simple-condition ()
599 ((format-control :reader simple-condition-format-control
600 :initarg :format-control
602 :type format-control)
603 (format-arguments :reader simple-condition-format-arguments
604 :initarg :format-arguments
607 (:report simple-condition-printer))
609 (define-condition simple-warning (simple-condition warning) ())
611 (define-condition simple-error (simple-condition error) ())
613 (define-condition storage-condition (serious-condition) ())
615 (define-condition type-error (error)
616 ((datum :reader type-error-datum :initarg :datum)
617 (expected-type :reader type-error-expected-type :initarg :expected-type))
619 (lambda (condition stream)
621 "~@<The value ~2I~:_~S ~I~_is not of type ~2I~_~S.~:>"
622 (type-error-datum condition)
623 (type-error-expected-type condition)))))
625 (def!method print-object ((condition type-error) stream)
626 (if (and *print-escape*
627 (slot-boundp condition 'expected-type)
628 (slot-boundp condition 'datum))
629 (flet ((maybe-string (thing)
631 (write-to-string thing :lines 1 :readably nil :array nil :pretty t))))
632 (let ((type (maybe-string (type-error-expected-type condition)))
633 (datum (maybe-string (type-error-datum condition))))
635 (print-unreadable-object (condition stream :type t)
636 (format stream "~@<expected-type: ~A ~_datum: ~A~:@>" type datum))
637 (call-next-method))))
640 ;;; not specified by ANSI, but too useful not to have around.
641 (define-condition simple-style-warning (simple-condition style-warning) ())
642 (define-condition simple-type-error (simple-condition type-error) ())
644 ;; Can't have a function called SIMPLE-TYPE-ERROR or TYPE-ERROR...
645 (declaim (ftype (sfunction (t t t &rest t) nil) bad-type))
646 (defun bad-type (datum type control &rest arguments)
647 (error 'simple-type-error
650 :format-control control
651 :format-arguments arguments))
653 (define-condition program-error (error) ())
654 (define-condition parse-error (error) ())
655 (define-condition control-error (error) ())
656 (define-condition stream-error (error)
657 ((stream :reader stream-error-stream :initarg :stream)))
659 (define-condition end-of-file (stream-error) ()
661 (lambda (condition stream)
664 (stream-error-stream condition)))))
666 (define-condition closed-stream-error (stream-error) ()
668 (lambda (condition stream)
669 (format stream "~S is closed" (stream-error-stream condition)))))
671 (define-condition file-error (error)
672 ((pathname :reader file-error-pathname :initarg :pathname))
674 (lambda (condition stream)
675 (format stream "error on file ~S" (file-error-pathname condition)))))
677 (define-condition package-error (error)
678 ((package :reader package-error-package :initarg :package)))
680 (define-condition cell-error (error)
681 ((name :reader cell-error-name :initarg :name)))
683 (def!method print-object ((condition cell-error) stream)
684 (if (and *print-escape* (slot-boundp condition 'name))
685 (print-unreadable-object (condition stream :type t :identity t)
686 (princ (cell-error-name condition) stream))
689 (define-condition unbound-variable (cell-error) ()
691 (lambda (condition stream)
693 "The variable ~S is unbound."
694 (cell-error-name condition)))))
696 (define-condition undefined-function (cell-error) ()
698 (lambda (condition stream)
700 "The function ~/sb-impl::print-symbol-with-prefix/ is undefined."
701 (cell-error-name condition)))))
703 (define-condition special-form-function (undefined-function) ()
705 (lambda (condition stream)
707 "Cannot FUNCALL the SYMBOL-FUNCTION of special operator ~S."
708 (cell-error-name condition)))))
710 (define-condition arithmetic-error (error)
711 ((operation :reader arithmetic-error-operation
714 (operands :reader arithmetic-error-operands
716 (:report (lambda (condition stream)
718 "arithmetic error ~S signalled"
720 (when (arithmetic-error-operation condition)
722 "~%Operation was ~S, operands ~S."
723 (arithmetic-error-operation condition)
724 (arithmetic-error-operands condition))))))
726 (define-condition division-by-zero (arithmetic-error) ())
727 (define-condition floating-point-overflow (arithmetic-error) ())
728 (define-condition floating-point-underflow (arithmetic-error) ())
729 (define-condition floating-point-inexact (arithmetic-error) ())
730 (define-condition floating-point-invalid-operation (arithmetic-error) ())
732 (define-condition print-not-readable (error)
733 ((object :reader print-not-readable-object :initarg :object))
735 (lambda (condition stream)
736 (let ((obj (print-not-readable-object condition))
738 (format stream "~S cannot be printed readably." obj)))))
740 (define-condition reader-error (parse-error stream-error) ()
741 (:report (lambda (condition stream)
742 (%report-reader-error condition stream))))
744 ;;; a READER-ERROR whose REPORTing is controlled by FORMAT-CONTROL and
745 ;;; FORMAT-ARGS (the usual case for READER-ERRORs signalled from
746 ;;; within SBCL itself)
748 ;;; (Inheriting CL:SIMPLE-CONDITION here isn't quite consistent with
749 ;;; the letter of the ANSI spec: this is not a condition signalled by
750 ;;; SIGNAL when a format-control is supplied by the function's first
751 ;;; argument. It seems to me (WHN) to be basically in the spirit of
752 ;;; the spec, but if not, it'd be straightforward to do our own
753 ;;; DEFINE-CONDITION SB-INT:SIMPLISTIC-CONDITION with
754 ;;; FORMAT-CONTROL and FORMAT-ARGS slots, and use that condition in
755 ;;; place of CL:SIMPLE-CONDITION here.)
756 (define-condition simple-reader-error (reader-error simple-condition)
758 (:report (lambda (condition stream)
759 (%report-reader-error condition stream :simple t))))
761 ;;; base REPORTing of a READER-ERROR
763 ;;; When SIMPLE, we expect and use SIMPLE-CONDITION-ish FORMAT-CONTROL
764 ;;; and FORMAT-ARGS slots.
765 (defun %report-reader-error (condition stream &key simple position)
766 (let ((error-stream (stream-error-stream condition)))
767 (pprint-logical-block (stream nil)
769 (apply #'format stream
770 (simple-condition-format-control condition)
771 (simple-condition-format-arguments condition))
772 (prin1 (class-name (class-of condition)) stream))
773 (format stream "~2I~@[~_~_~:{~:(~A~): ~S~:^, ~:_~}~]~_~_Stream: ~S"
774 (stream-error-position-info error-stream position)
777 ;;;; special SBCL extension conditions
779 ;;; an error apparently caused by a bug in SBCL itself
781 ;;; Note that we don't make any serious effort to use this condition
782 ;;; for *all* errors in SBCL itself. E.g. type errors and array
783 ;;; indexing errors can occur in functions called from SBCL code, and
784 ;;; will just end up as ordinary TYPE-ERROR or invalid index error,
785 ;;; because the signalling code has no good way to know that the
786 ;;; underlying problem is a bug in SBCL. But in the fairly common case
787 ;;; that the signalling code does know that it's found a bug in SBCL,
788 ;;; this condition is appropriate, reusing boilerplate and helping
789 ;;; users to recognize it as an SBCL bug.
790 (define-condition bug (simple-error)
793 (lambda (condition stream)
796 (simple-condition-format-control condition)
797 (simple-condition-format-arguments condition)
798 "~@<This is probably a bug in SBCL itself. (Alternatively, ~
799 SBCL might have been corrupted by bad user code, e.g. by an ~
800 undefined Lisp operation like ~S, or by stray pointers from ~
801 alien code or from unsafe Lisp code; or there might be a bug ~
802 in the OS or hardware that SBCL is running on.) If it seems to ~
803 be a bug in SBCL itself, the maintainers would like to know ~
804 about it. Bug reports are welcome on the SBCL ~
805 mailing lists, which you can find at ~
806 <http://sbcl.sourceforge.net/>.~:@>"
807 '((fmakunbound 'compile))))))
809 (define-condition simple-storage-condition (storage-condition simple-condition)
812 ;;; a condition for use in stubs for operations which aren't supported
813 ;;; on some platforms
815 ;;; E.g. in sbcl-0.7.0.5, it might be appropriate to do something like
816 ;;; #-(or freebsd linux)
817 ;;; (defun load-foreign (&rest rest)
818 ;;; (error 'unsupported-operator :name 'load-foreign))
819 ;;; #+(or freebsd linux)
820 ;;; (defun load-foreign ... actual definition ...)
821 ;;; By signalling a standard condition in this case, we make it
822 ;;; possible for test code to distinguish between (1) intentionally
823 ;;; unimplemented and (2) unintentionally just screwed up somehow.
824 ;;; (Before this condition was defined, test code tried to deal with
825 ;;; this by checking for FBOUNDP, but that didn't work reliably. In
826 ;;; sbcl-0.7.0, a package screwup left the definition of
827 ;;; LOAD-FOREIGN in the wrong package, so it was unFBOUNDP even on
828 ;;; architectures where it was supposed to be supported, and the
829 ;;; regression tests cheerfully passed because they assumed that
830 ;;; unFBOUNDPness meant they were running on an system which didn't
831 ;;; support the extension.)
832 (define-condition unsupported-operator (simple-error) ())
834 ;;; (:ansi-cl :function remove)
835 ;;; (:ansi-cl :section (a b c))
836 ;;; (:ansi-cl :glossary "similar")
838 ;;; (:sbcl :node "...")
839 ;;; (:sbcl :variable *ed-functions*)
841 ;;; FIXME: this is not the right place for this.
842 (defun print-reference (reference stream)
843 (ecase (car reference)
845 (format stream "AMOP")
847 (destructuring-bind (type data) (cdr reference)
849 (:readers "Readers for ~:(~A~) Metaobjects"
850 (substitute #\ #\- (symbol-name data)))
852 (format stream "Initialization of ~:(~A~) Metaobjects"
853 (substitute #\ #\- (symbol-name data))))
854 (:generic-function (format stream "Generic Function ~S" data))
855 (:function (format stream "Function ~S" data))
856 (:section (format stream "Section ~{~D~^.~}" data)))))
858 (format stream "The ANSI Standard")
860 (destructuring-bind (type data) (cdr reference)
862 (:function (format stream "Function ~S" data))
863 (:special-operator (format stream "Special Operator ~S" data))
864 (:macro (format stream "Macro ~S" data))
865 (:section (format stream "Section ~{~D~^.~}" data))
866 (:glossary (format stream "Glossary entry for ~S" data))
867 (:issue (format stream "writeup for Issue ~A" data)))))
869 (format stream "The SBCL Manual")
871 (destructuring-bind (type data) (cdr reference)
873 (:node (format stream "Node ~S" data))
874 (:variable (format stream "Variable ~S" data))
875 (:function (format stream "Function ~S" data)))))
876 ;; FIXME: other documents (e.g. CLIM, Franz documentation :-)
878 (define-condition reference-condition ()
879 ((references :initarg :references :reader reference-condition-references)))
880 (defvar *print-condition-references* t)
881 (def!method print-object :around ((o reference-condition) s)
883 (unless (or *print-escape* *print-readably*)
884 (when (and *print-condition-references*
885 (reference-condition-references o))
886 (format s "~&See also:~%")
887 (pprint-logical-block (s nil :per-line-prefix " ")
888 (do* ((rs (reference-condition-references o) (cdr rs))
889 (r (car rs) (car rs)))
891 (print-reference r s)
892 (unless (null (cdr rs))
895 (define-condition simple-reference-error (reference-condition simple-error)
898 (define-condition simple-reference-warning (reference-condition simple-warning)
901 (define-condition arguments-out-of-domain-error
902 (arithmetic-error reference-condition)
905 (define-condition duplicate-definition (reference-condition warning)
906 ((name :initarg :name :reader duplicate-definition-name))
907 (:report (lambda (c s)
908 (format s "~@<Duplicate definition for ~S found in ~
910 (duplicate-definition-name c))))
911 (:default-initargs :references (list '(:ansi-cl :section (3 2 2 3)))))
913 (define-condition constant-modified (reference-condition warning)
914 ((fun-name :initarg :fun-name :reader constant-modified-fun-name))
915 (:report (lambda (c s)
916 (format s "~@<Destructive function ~S called on ~
918 (constant-modified-fun-name c))))
919 (:default-initargs :references (list '(:ansi-cl :special-operator quote)
920 '(:ansi-cl :section (3 2 2 3)))))
922 (define-condition package-at-variance (reference-condition simple-warning)
924 (:default-initargs :references (list '(:ansi-cl :macro defpackage)
925 '(:sbcl :variable *on-package-variance*))))
927 (define-condition package-at-variance-error (reference-condition simple-condition
930 (:default-initargs :references (list '(:ansi-cl :macro defpackage))))
932 (define-condition defconstant-uneql (reference-condition error)
933 ((name :initarg :name :reader defconstant-uneql-name)
934 (old-value :initarg :old-value :reader defconstant-uneql-old-value)
935 (new-value :initarg :new-value :reader defconstant-uneql-new-value))
937 (lambda (condition stream)
939 "~@<The constant ~S is being redefined (from ~S to ~S)~@:>"
940 (defconstant-uneql-name condition)
941 (defconstant-uneql-old-value condition)
942 (defconstant-uneql-new-value condition))))
943 (:default-initargs :references (list '(:ansi-cl :macro defconstant)
944 '(:sbcl :node "Idiosyncrasies"))))
946 (define-condition array-initial-element-mismatch
947 (reference-condition simple-warning)
951 '(:ansi-cl :function make-array)
952 '(:ansi-cl :function sb!xc:upgraded-array-element-type))))
954 (define-condition type-warning (reference-condition simple-warning)
956 (:default-initargs :references (list '(:sbcl :node "Handling of Types"))))
957 (define-condition type-style-warning (reference-condition simple-style-warning)
959 (:default-initargs :references (list '(:sbcl :node "Handling of Types"))))
961 (define-condition local-argument-mismatch (reference-condition simple-warning)
963 (:default-initargs :references (list '(:ansi-cl :section (3 2 2 3)))))
965 (define-condition format-args-mismatch (reference-condition)
967 (:default-initargs :references (list '(:ansi-cl :section (22 3 10 2)))))
969 (define-condition format-too-few-args-warning
970 (format-args-mismatch simple-warning)
972 (define-condition format-too-many-args-warning
973 (format-args-mismatch simple-style-warning)
976 (define-condition implicit-generic-function-warning (style-warning)
977 ((name :initarg :name :reader implicit-generic-function-name))
979 (lambda (condition stream)
980 (let ((*package* (find-package :keyword)))
981 (format stream "~@<Implicitly creating new generic function ~S.~:@>"
982 (implicit-generic-function-name condition))))))
984 (define-condition extension-failure (reference-condition simple-error)
987 (define-condition structure-initarg-not-keyword
988 (reference-condition simple-style-warning)
990 (:default-initargs :references (list '(:ansi-cl :section (2 4 8 13)))))
995 (define-condition package-lock-violation (package-error
998 ((current-package :initform *package*
999 :reader package-lock-violation-in-package))
1001 (lambda (condition stream)
1002 (let ((control (simple-condition-format-control condition))
1003 (error-package (package-name (package-error-package condition)))
1004 (current-package (package-name (package-lock-violation-in-package condition))))
1006 (apply #'format stream
1007 (format nil "~~@<Lock on package ~A violated when ~A while in package ~A.~~:@>"
1011 (simple-condition-format-arguments condition))
1012 (format stream "~@<Lock on package ~A violated while in package ~A.~:@>"
1014 current-package)))))
1015 ;; no :default-initargs -- reference-stuff provided by the
1016 ;; signalling form in target-package.lisp
1019 "Subtype of CL:PACKAGE-ERROR. A subtype of this error is signalled
1020 when a package-lock is violated."))
1022 (define-condition package-locked-error (package-lock-violation) ()
1025 "Subtype of SB-EXT:PACKAGE-LOCK-VIOLATION. An error of this type is
1026 signalled when an operation on a package violates a package lock."))
1028 (define-condition symbol-package-locked-error (package-lock-violation)
1029 ((symbol :initarg :symbol :reader package-locked-error-symbol))
1032 "Subtype of SB-EXT:PACKAGE-LOCK-VIOLATION. An error of this type is
1033 signalled when an operation on a symbol violates a package lock. The
1034 symbol that caused the violation is accessed by the function
1035 SB-EXT:PACKAGE-LOCKED-ERROR-SYMBOL."))
1039 (define-condition undefined-alien-error (cell-error) ()
1041 (lambda (condition stream)
1042 (if (slot-boundp condition 'name)
1043 (format stream "Undefined alien: ~S" (cell-error-name condition))
1044 (format stream "Undefined alien symbol.")))))
1046 (define-condition undefined-alien-variable-error (undefined-alien-error) ()
1048 (lambda (condition stream)
1049 (declare (ignore condition))
1050 (format stream "Attempt to access an undefined alien variable."))))
1052 (define-condition undefined-alien-function-error (undefined-alien-error) ()
1054 (lambda (condition stream)
1055 (declare (ignore condition))
1056 (format stream "Attempt to call an undefined alien function."))))
1059 ;;;; various other (not specified by ANSI) CONDITIONs
1061 ;;;; These might logically belong in other files; they're here, after
1062 ;;;; setup of CONDITION machinery, only because that makes it easier to
1063 ;;;; get cold init to work.
1065 ;;; OAOOM warning: see cross-condition.lisp
1066 (define-condition encapsulated-condition (condition)
1067 ((condition :initarg :condition :reader encapsulated-condition)))
1069 ;;; KLUDGE: a condition for floating point errors when we can't or
1070 ;;; won't figure out what type they are. (In FreeBSD and OpenBSD we
1071 ;;; don't know how, at least as of sbcl-0.6.7; in Linux we probably
1072 ;;; know how but the old code was broken by the conversion to POSIX
1073 ;;; signal handling and hasn't been fixed as of sbcl-0.6.7.)
1075 ;;; FIXME: Perhaps this should also be a base class for all
1076 ;;; floating point exceptions?
1077 (define-condition floating-point-exception (arithmetic-error)
1078 ((flags :initarg :traps
1080 :reader floating-point-exception-traps))
1081 (:report (lambda (condition stream)
1083 "An arithmetic error ~S was signalled.~%"
1084 (type-of condition))
1085 (let ((traps (floating-point-exception-traps condition)))
1088 "Trapping conditions are: ~%~{ ~S~^~}~%"
1091 "No traps are enabled? How can this be?"
1094 (define-condition invalid-array-index-error (type-error)
1095 ((array :initarg :array :reader invalid-array-index-error-array)
1096 (axis :initarg :axis :reader invalid-array-index-error-axis))
1098 (lambda (condition stream)
1099 (let ((array (invalid-array-index-error-array condition)))
1100 (format stream "Index ~W out of bounds for ~@[axis ~W of ~]~S, ~
1101 should be nonnegative and <~W."
1102 (type-error-datum condition)
1103 (when (> (array-rank array) 1)
1104 (invalid-array-index-error-axis condition))
1106 ;; Extract the bound from (INTEGER 0 (BOUND))
1107 (caaddr (type-error-expected-type condition)))))))
1109 (define-condition invalid-array-error (reference-condition type-error) ()
1111 (lambda (condition stream)
1112 (let ((*print-array* nil))
1114 "~@<Displaced array originally of type ~S has been invalidated ~
1115 due its displaced-to array ~S having become too small to hold ~
1116 it: the displaced array's dimensions have all been set to zero ~
1117 to trap accesses to it.~:@>"
1118 (type-error-expected-type condition)
1119 (array-displacement (type-error-datum condition))))))
1122 (list '(:ansi-cl :function adjust-array))))
1124 (define-condition index-too-large-error (type-error)
1127 (lambda (condition stream)
1129 "The index ~S is too large."
1130 (type-error-datum condition)))))
1132 (define-condition bounding-indices-bad-error (reference-condition type-error)
1133 ((object :reader bounding-indices-bad-object :initarg :object))
1135 (lambda (condition stream)
1136 (let* ((datum (type-error-datum condition))
1139 (object (bounding-indices-bad-object condition)))
1143 "The bounding indices ~S and ~S are bad ~
1144 for a sequence of length ~S."
1145 start end (length object)))
1147 ;; from WITH-ARRAY-DATA
1149 "The START and END parameters ~S and ~S are ~
1150 bad for an array of total size ~S."
1151 start end (array-total-size object)))))))
1154 (list '(:ansi-cl :glossary "bounding index designator")
1155 '(:ansi-cl :issue "SUBSEQ-OUT-OF-BOUNDS:IS-AN-ERROR"))))
1157 (define-condition nil-array-accessed-error (reference-condition type-error)
1159 (:report (lambda (condition stream)
1160 (declare (ignore condition))
1162 "An attempt to access an array of element-type ~
1163 NIL was made. Congratulations!")))
1165 :references (list '(:ansi-cl :function sb!xc:upgraded-array-element-type)
1166 '(:ansi-cl :section (15 1 2 1))
1167 '(:ansi-cl :section (15 1 2 2)))))
1169 (define-condition namestring-parse-error (parse-error)
1170 ((complaint :reader namestring-parse-error-complaint :initarg :complaint)
1171 (args :reader namestring-parse-error-args :initarg :args :initform nil)
1172 (namestring :reader namestring-parse-error-namestring :initarg :namestring)
1173 (offset :reader namestring-parse-error-offset :initarg :offset))
1175 (lambda (condition stream)
1177 "parse error in namestring: ~?~% ~A~% ~V@T^"
1178 (namestring-parse-error-complaint condition)
1179 (namestring-parse-error-args condition)
1180 (namestring-parse-error-namestring condition)
1181 (namestring-parse-error-offset condition)))))
1183 (define-condition simple-package-error (simple-condition package-error) ())
1185 (define-condition simple-reader-package-error (simple-reader-error package-error) ())
1187 (define-condition reader-eof-error (end-of-file)
1188 ((context :reader reader-eof-error-context :initarg :context))
1190 (lambda (condition stream)
1192 "unexpected end of file on ~S ~A"
1193 (stream-error-stream condition)
1194 (reader-eof-error-context condition)))))
1196 (define-condition reader-impossible-number-error (simple-reader-error)
1197 ((error :reader reader-impossible-number-error-error :initarg :error))
1199 (lambda (condition stream)
1200 (let ((error-stream (stream-error-stream condition)))
1202 "READER-ERROR ~@[at ~W ~]on ~S:~%~?~%Original error: ~A"
1203 (file-position-or-nil-for-error error-stream) error-stream
1204 (simple-condition-format-control condition)
1205 (simple-condition-format-arguments condition)
1206 (reader-impossible-number-error-error condition))))))
1208 (define-condition standard-readtable-modified-error (reference-condition error)
1209 ((operation :initarg :operation :reader standard-readtable-modified-operation))
1210 (:report (lambda (condition stream)
1211 (format stream "~S would modify the standard readtable."
1212 (standard-readtable-modified-operation condition))))
1213 (:default-initargs :references `((:ansi-cl :section (2 1 1 2))
1214 (:ansi-cl :glossary "standard readtable"))))
1216 (define-condition standard-pprint-dispatch-table-modified-error
1217 (reference-condition error)
1218 ((operation :initarg :operation
1219 :reader standard-pprint-dispatch-table-modified-operation))
1220 (:report (lambda (condition stream)
1221 (format stream "~S would modify the standard pprint dispatch table."
1222 (standard-pprint-dispatch-table-modified-operation
1225 :references `((:ansi-cl :glossary "standard pprint dispatch table"))))
1227 (define-condition timeout (serious-condition)
1228 ((seconds :initarg :seconds :initform nil :reader timeout-seconds))
1229 (:report (lambda (condition stream)
1230 (format stream "Timeout occurred~@[ after ~A seconds~]."
1231 (timeout-seconds condition)))))
1233 (define-condition io-timeout (stream-error timeout)
1234 ((direction :reader io-timeout-direction :initarg :direction))
1236 (lambda (condition stream)
1237 (declare (type stream stream))
1239 "I/O timeout while doing ~(~A~) on ~S."
1240 (io-timeout-direction condition)
1241 (stream-error-stream condition)))))
1243 (define-condition deadline-timeout (timeout) ()
1244 (:report (lambda (condition stream)
1245 (format stream "A deadline was reached after ~A seconds."
1246 (timeout-seconds condition)))))
1248 (define-condition declaration-type-conflict-error (reference-condition
1252 :format-control "symbol ~S cannot be both the name of a type and the name of a declaration"
1253 :references (list '(:ansi-cl :section (3 8 21)))))
1255 ;;; Single stepping conditions
1257 (define-condition step-condition ()
1258 ((form :initarg :form :reader step-condition-form))
1261 (:documentation "Common base class of single-stepping conditions.
1262 STEP-CONDITION-FORM holds a string representation of the form being
1266 (setf (fdocumentation 'step-condition-form 'function)
1267 "Form associated with the STEP-CONDITION.")
1269 (define-condition step-form-condition (step-condition)
1270 ((args :initarg :args :reader step-condition-args))
1272 (lambda (condition stream)
1273 (let ((*print-circle* t)
1275 (*print-readably* nil))
1277 "Evaluating call:~%~< ~@;~A~:>~%~
1278 ~:[With arguments:~%~{ ~S~%~}~;With unknown arguments~]~%"
1279 (list (step-condition-form condition))
1280 (eq (step-condition-args condition) :unknown)
1281 (step-condition-args condition)))))
1283 (:documentation "Condition signalled by code compiled with
1284 single-stepping information when about to execute a form.
1285 STEP-CONDITION-FORM holds the form, STEP-CONDITION-PATHNAME holds the
1286 pathname of the original file or NIL, and STEP-CONDITION-SOURCE-PATH
1287 holds the source-path to the original form within that file or NIL.
1288 Associated with this condition are always the restarts STEP-INTO,
1289 STEP-NEXT, and STEP-CONTINUE."))
1291 (define-condition step-result-condition (step-condition)
1292 ((result :initarg :result :reader step-condition-result)))
1295 (setf (fdocumentation 'step-condition-result 'function)
1296 "Return values associated with STEP-VALUES-CONDITION as a list,
1297 or the variable value associated with STEP-VARIABLE-CONDITION.")
1299 (define-condition step-values-condition (step-result-condition)
1302 (:documentation "Condition signalled by code compiled with
1303 single-stepping information after executing a form.
1304 STEP-CONDITION-FORM holds the form, and STEP-CONDITION-RESULT holds
1305 the values returned by the form as a list. No associated restarts."))
1307 (define-condition step-finished-condition (step-condition)
1310 (lambda (condition stream)
1311 (declare (ignore condition))
1312 (format stream "Returning from STEP")))
1314 (:documentation "Condition signaled when STEP returns."))
1316 ;;; A knob for muffling warnings, mostly for use while loading files.
1317 (defvar *muffled-warnings* 'uninteresting-redefinition
1318 "A type that ought to specify a subtype of WARNING. Whenever a
1319 warning is signaled, if the warning if of this type and is not
1320 handled by any other handler, it will be muffled.")
1322 ;;; Various STYLE-WARNING signaled in the system.
1323 ;; For the moment, we're only getting into the details for function
1324 ;; redefinitions, but other redefinitions could be done later
1326 (define-condition redefinition-warning (style-warning)
1329 :reader redefinition-warning-name)
1331 :initarg :new-location
1332 :reader redefinition-warning-new-location)))
1334 (define-condition function-redefinition-warning (redefinition-warning)
1336 :initarg :new-function
1337 :reader function-redefinition-warning-new-function)))
1339 (define-condition redefinition-with-defun (function-redefinition-warning)
1341 (:report (lambda (warning stream)
1342 (format stream "redefining ~/sb-impl::print-symbol-with-prefix/ ~
1344 (redefinition-warning-name warning)))))
1346 (define-condition redefinition-with-defmacro (function-redefinition-warning)
1348 (:report (lambda (warning stream)
1349 (format stream "redefining ~/sb-impl::print-symbol-with-prefix/ ~
1351 (redefinition-warning-name warning)))))
1353 (define-condition redefinition-with-defgeneric (redefinition-warning)
1355 (:report (lambda (warning stream)
1356 (format stream "redefining ~/sb-impl::print-symbol-with-prefix/ ~
1358 (redefinition-warning-name warning)))))
1360 (define-condition redefinition-with-defmethod (redefinition-warning)
1361 ((qualifiers :initarg :qualifiers
1362 :reader redefinition-with-defmethod-qualifiers)
1363 (specializers :initarg :specializers
1364 :reader redefinition-with-defmethod-specializers)
1365 (new-location :initarg :new-location
1366 :reader redefinition-with-defmethod-new-location)
1367 (old-method :initarg :old-method
1368 :reader redefinition-with-defmethod-old-method))
1369 (:report (lambda (warning stream)
1370 (format stream "redefining ~S~{ ~S~} ~S in DEFMETHOD"
1371 (redefinition-warning-name warning)
1372 (redefinition-with-defmethod-qualifiers warning)
1373 (redefinition-with-defmethod-specializers warning)))))
1375 ;;;; Deciding which redefinitions are "interesting".
1377 (defun function-file-namestring (function)
1379 (when (typep function 'sb!eval:interpreted-function)
1380 (return-from function-file-namestring
1381 (sb!c:definition-source-location-namestring
1382 (sb!eval:interpreted-function-source-location function))))
1383 (let* ((fun (sb!kernel:%fun-fun function))
1384 (code (sb!kernel:fun-code-header fun))
1385 (debug-info (sb!kernel:%code-debug-info code))
1386 (debug-source (when debug-info
1387 (sb!c::debug-info-source debug-info)))
1388 (namestring (when debug-source
1389 (sb!c::debug-source-namestring debug-source))))
1392 (defun interesting-function-redefinition-warning-p (warning old)
1393 (let ((new (function-redefinition-warning-new-function warning))
1394 (source-location (redefinition-warning-new-location warning)))
1396 ;; Compiled->Interpreted is interesting.
1397 (and (typep old 'compiled-function)
1398 (typep new '(not compiled-function)))
1399 ;; FIN->Regular is interesting.
1400 (and (typep old 'funcallable-instance)
1401 (typep new '(not funcallable-instance)))
1402 ;; Different file or unknown location is interesting.
1403 (let* ((old-namestring (function-file-namestring old))
1405 (or (function-file-namestring new)
1406 (when source-location
1407 (sb!c::definition-source-location-namestring source-location)))))
1408 (and (or (not old-namestring)
1409 (not new-namestring)
1410 (not (string= old-namestring new-namestring))))))))
1412 (defun uninteresting-ordinary-function-redefinition-p (warning)
1414 ;; There's garbage in various places when the first DEFUN runs in
1416 sb!kernel::*cold-init-complete-p*
1417 (typep warning 'redefinition-with-defun)
1419 (let ((name (redefinition-warning-name warning)))
1420 (not (interesting-function-redefinition-warning-p
1421 warning (or (fdefinition name) (macro-function name)))))))
1423 (defun uninteresting-macro-redefinition-p (warning)
1425 (typep warning 'redefinition-with-defmacro)
1427 (let ((name (redefinition-warning-name warning)))
1428 (not (interesting-function-redefinition-warning-p
1429 warning (or (macro-function name) (fdefinition name)))))))
1431 (defun uninteresting-generic-function-redefinition-p (warning)
1433 (typep warning 'redefinition-with-defgeneric)
1434 ;; Can't use the shared logic above, since GF's don't get a "new"
1435 ;; definition -- rather the FIN-FUNCTION is set.
1436 (let* ((name (redefinition-warning-name warning))
1437 (old (fdefinition name))
1438 (old-location (when (typep old 'generic-function)
1439 (sb!pcl::definition-source old)))
1440 (old-namestring (when old-location
1441 (sb!c:definition-source-location-namestring old-location)))
1442 (new-location (redefinition-warning-new-location warning))
1443 (new-namestring (when new-location
1444 (sb!c:definition-source-location-namestring new-location))))
1447 (string= old-namestring new-namestring)))))
1449 (defun uninteresting-method-redefinition-p (warning)
1451 (typep warning 'redefinition-with-defmethod)
1452 ;; Can't use the shared logic above, since GF's don't get a "new"
1453 ;; definition -- rather the FIN-FUNCTION is set.
1454 (let* ((old-method (redefinition-with-defmethod-old-method warning))
1455 (old-location (sb!pcl::definition-source old-method))
1456 (old-namestring (when old-location
1457 (sb!c:definition-source-location-namestring old-location)))
1458 (new-location (redefinition-warning-new-location warning))
1459 (new-namestring (when new-location
1460 (sb!c:definition-source-location-namestring new-location))))
1463 (string= new-namestring old-namestring)))))
1465 (deftype uninteresting-redefinition ()
1466 '(or (satisfies uninteresting-ordinary-function-redefinition-p)
1467 (satisfies uninteresting-macro-redefinition-p)
1468 (satisfies uninteresting-generic-function-redefinition-p)
1469 (satisfies uninteresting-method-redefinition-p)))
1471 (define-condition redefinition-with-deftransform (redefinition-warning)
1472 ((transform :initarg :transform
1473 :reader redefinition-with-deftransform-transform))
1474 (:report (lambda (warning stream)
1475 (format stream "Overwriting ~S"
1476 (redefinition-with-deftransform-transform warning)))))
1478 ;;; Various other STYLE-WARNINGS
1479 (define-condition dubious-asterisks-around-variable-name
1480 (style-warning simple-condition)
1482 (:report (lambda (warning stream)
1483 (format stream "~@?, even though the name follows~@
1484 the usual naming convention (names like *FOO*) for special variables"
1485 (simple-condition-format-control warning)
1486 (simple-condition-format-arguments warning)))))
1488 (define-condition asterisks-around-lexical-variable-name
1489 (dubious-asterisks-around-variable-name)
1492 (define-condition asterisks-around-constant-variable-name
1493 (dubious-asterisks-around-variable-name)
1496 ;; We call this UNDEFINED-ALIEN-STYLE-WARNING because there are some
1497 ;; subclasses of ERROR above having to do with undefined aliens.
1498 (define-condition undefined-alien-style-warning (style-warning)
1499 ((symbol :initarg :symbol :reader undefined-alien-symbol))
1500 (:report (lambda (warning stream)
1501 (format stream "Undefined alien: ~S"
1502 (undefined-alien-symbol warning)))))
1505 (define-condition lexical-environment-too-complex (style-warning)
1506 ((form :initarg :form :reader lexical-environment-too-complex-form)
1507 (lexenv :initarg :lexenv :reader lexical-environment-too-complex-lexenv))
1508 (:report (lambda (warning stream)
1510 "~@<Native lexical environment too complex for ~
1511 SB-EVAL to evaluate ~S, falling back to ~
1512 SIMPLE-EVAL-IN-LEXENV. Lexenv: ~S~:@>"
1513 (lexical-environment-too-complex-form warning)
1514 (lexical-environment-too-complex-lexenv warning)))))
1516 ;; Although this has -ERROR- in the name, it's just a STYLE-WARNING.
1517 (define-condition character-decoding-error-in-comment (style-warning)
1518 ((stream :initarg :stream :reader decoding-error-in-comment-stream)
1519 (position :initarg :position :reader decoding-error-in-comment-position))
1520 (:report (lambda (warning stream)
1522 "Character decoding error in a ~A-comment at ~
1523 position ~A reading source stream ~A, ~
1525 (decoding-error-in-comment-macro warning)
1526 (decoding-error-in-comment-position warning)
1527 (decoding-error-in-comment-stream warning)))))
1529 (define-condition character-decoding-error-in-macro-char-comment
1530 (character-decoding-error-in-comment)
1531 ((char :initform #\; :initarg :char
1532 :reader character-decoding-error-in-macro-char-comment-char)))
1534 (define-condition character-decoding-error-in-dispatch-macro-char-comment
1535 (character-decoding-error-in-comment)
1536 ;; ANSI doesn't give a way for a reader function invoked by a
1537 ;; dispatch macro character to determine which dispatch character
1538 ;; was used, so if a user wants to signal one of these from a custom
1539 ;; comment reader, he'll have to supply the :DISP-CHAR himself.
1540 ((disp-char :initform #\# :initarg :disp-char
1541 :reader character-decoding-error-in-macro-char-comment-disp-char)
1542 (sub-char :initarg :sub-char
1543 :reader character-decoding-error-in-macro-char-comment-sub-char)))
1545 (defun decoding-error-in-comment-macro (warning)
1547 (character-decoding-error-in-macro-char-comment
1548 (character-decoding-error-in-macro-char-comment-char warning))
1549 (character-decoding-error-in-dispatch-macro-char-comment
1552 (character-decoding-error-in-macro-char-comment-disp-char warning)
1553 (character-decoding-error-in-macro-char-comment-sub-char warning)))))
1555 (define-condition deprecated-eval-when-situations (style-warning)
1556 ((situations :initarg :situations
1557 :reader deprecated-eval-when-situations-situations))
1558 (:report (lambda (warning stream)
1559 (format stream "using deprecated EVAL-WHEN situation names~{ ~S~}"
1560 (deprecated-eval-when-situations-situations warning)))))
1562 (define-condition proclamation-mismatch (style-warning)
1563 ((name :initarg :name :reader proclamation-mismatch-name)
1564 (old :initarg :old :reader proclamation-mismatch-old)
1565 (new :initarg :new :reader proclamation-mismatch-new)))
1567 (define-condition type-proclamation-mismatch (proclamation-mismatch)
1569 (:report (lambda (warning stream)
1571 "The new TYPE proclamation~% ~S for ~S does not ~
1572 match the old TYPE proclamation ~S"
1573 (proclamation-mismatch-new warning)
1574 (proclamation-mismatch-name warning)
1575 (proclamation-mismatch-old warning)))))
1577 (define-condition ftype-proclamation-mismatch (proclamation-mismatch)
1579 (:report (lambda (warning stream)
1581 "The new FTYPE proclamation~% ~S for ~S does not ~
1582 match the old FTYPE proclamation ~S"
1583 (proclamation-mismatch-new warning)
1584 (proclamation-mismatch-name warning)
1585 (proclamation-mismatch-old warning)))))
1587 ;;;; deprecation conditions
1589 (define-condition deprecation-condition ()
1590 ((name :initarg :name :reader deprecated-name)
1591 (replacements :initarg :replacements :reader deprecated-name-replacements)
1592 (since :initarg :since :reader deprecated-since)
1593 (runtime-error :initarg :runtime-error :reader deprecated-name-runtime-error)))
1595 (def!method print-object ((condition deprecation-condition) stream)
1596 (let ((*package* (find-package :keyword)))
1598 (print-unreadable-object (condition stream :type t)
1600 stream "~S is deprecated.~
1601 ~#[~; Use ~S instead.~; ~
1602 Use ~S or ~S instead.~:; ~
1603 Use~@{~#[~; or~] ~S~^,~} instead.~]"
1604 (deprecated-name condition)
1605 (deprecated-name-replacements condition)))
1607 stream "~@<~S has been deprecated as of SBCL ~A.~
1608 ~#[~; Use ~S instead.~; ~
1609 Use ~S or ~S instead.~:; ~
1610 Use~@{~#[~; or~] ~S~^,~:_~} instead.~]~:@>"
1611 (deprecated-name condition)
1612 (deprecated-since condition)
1613 (deprecated-name-replacements condition)))))
1615 (define-condition early-deprecation-warning (style-warning deprecation-condition)
1618 (def!method print-object :after ((warning early-deprecation-warning) stream)
1619 (unless *print-escape*
1620 (let ((*package* (find-package :keyword)))
1621 (format stream "~%~@<~:@_In future SBCL versions ~S will signal a full warning ~
1622 at compile-time.~:@>"
1623 (deprecated-name warning)))))
1625 (define-condition late-deprecation-warning (warning deprecation-condition)
1628 (def!method print-object :after ((warning late-deprecation-warning) stream)
1629 (unless *print-escape*
1630 (when (deprecated-name-runtime-error warning)
1631 (let ((*package* (find-package :keyword)))
1632 (format stream "~%~@<~:@_In future SBCL versions ~S will signal a runtime error.~:@>"
1633 (deprecated-name warning))))))
1635 (define-condition final-deprecation-warning (warning deprecation-condition)
1638 (def!method print-object :after ((warning final-deprecation-warning) stream)
1639 (unless *print-escape*
1640 (when (deprecated-name-runtime-error warning)
1641 (let ((*package* (find-package :keyword)))
1642 (format stream "~%~@<~:@_An error will be signaled at runtime for ~S.~:@>"
1643 (deprecated-name warning))))))
1645 (define-condition deprecation-error (error deprecation-condition)
1648 ;;;; restart definitions
1650 (define-condition abort-failure (control-error) ()
1652 "An ABORT restart was found that failed to transfer control dynamically."))
1654 (defun abort (&optional condition)
1656 "Transfer control to a restart named ABORT, signalling a CONTROL-ERROR if
1658 (invoke-restart (find-restart-or-control-error 'abort condition))
1659 ;; ABORT signals an error in case there was a restart named ABORT
1660 ;; that did not transfer control dynamically. This could happen with
1662 (error 'abort-failure))
1664 (defun muffle-warning (&optional condition)
1666 "Transfer control to a restart named MUFFLE-WARNING, signalling a
1667 CONTROL-ERROR if none exists."
1668 (invoke-restart (find-restart-or-control-error 'muffle-warning condition)))
1670 (defun try-restart (name condition &rest arguments)
1671 (let ((restart (find-restart name condition)))
1673 (apply #'invoke-restart restart arguments))))
1675 (macrolet ((define-nil-returning-restart (name args doc)
1676 #!-sb-doc (declare (ignore doc))
1677 `(defun ,name (,@args &optional condition)
1679 (try-restart ',name condition ,@args))))
1680 (define-nil-returning-restart continue ()
1681 "Transfer control to a restart named CONTINUE, or return NIL if none exists.")
1682 (define-nil-returning-restart store-value (value)
1683 "Transfer control and VALUE to a restart named STORE-VALUE, or
1684 return NIL if none exists.")
1685 (define-nil-returning-restart use-value (value)
1686 "Transfer control and VALUE to a restart named USE-VALUE, or
1687 return NIL if none exists.")
1688 (define-nil-returning-restart print-unreadably ()
1689 "Transfer control to a restart named SB-EXT:PRINT-UNREADABLY, or
1690 return NIL if none exists."))
1692 ;;; single-stepping restarts
1694 (macrolet ((def (name doc)
1695 #!-sb-doc (declare (ignore doc))
1696 `(defun ,name (condition)
1698 (invoke-restart (find-restart-or-control-error ',name condition)))))
1700 "Transfers control to the STEP-CONTINUE restart associated with
1701 the condition, continuing execution without stepping. Signals a
1702 CONTROL-ERROR if the restart does not exist.")
1704 "Transfers control to the STEP-NEXT restart associated with the
1705 condition, executing the current form without stepping and continuing
1706 stepping with the next form. Signals CONTROL-ERROR is the restart does
1709 "Transfers control to the STEP-INTO restart associated with the
1710 condition, stepping into the current form. Signals a CONTROL-ERROR is
1711 the restart does not exist."))
1713 ;;; Compiler macro magic
1715 (define-condition compiler-macro-keyword-problem ()
1716 ((argument :initarg :argument :reader compiler-macro-keyword-argument))
1717 (:report (lambda (condition stream)
1718 (format stream "~@<Argument ~S in keyword position is not ~
1719 a self-evaluating symbol, preventing compiler-macro ~
1721 (compiler-macro-keyword-argument condition)))))
1723 (/show0 "condition.lisp end of file")