1.0.46.4: redefinition warnings for macros
[sbcl.git] / src / code / condition.lisp
1 ;;;; stuff originally from CMU CL's error.lisp which can or should
2 ;;;; come late (mostly related to the CONDITION class itself)
3 ;;;;
4
5 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; more information.
7 ;;;;
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.
13
14 (in-package "SB!KERNEL")
15 \f
16 ;;;; miscellaneous support utilities
17
18 ;;; Signalling an error when trying to print an error condition is
19 ;;; generally a PITA, so whatever the failure encountered when
20 ;;; wondering about FILE-POSITION within a condition printer, 'tis
21 ;;; better silently to give up than to try to complain.
22 (defun file-position-or-nil-for-error (stream &optional (pos nil posp))
23   ;; Arguably FILE-POSITION shouldn't be signalling errors at all; but
24   ;; "NIL if this cannot be determined" in the ANSI spec doesn't seem
25   ;; absolutely unambiguously to prohibit errors when, e.g., STREAM
26   ;; has been closed so that FILE-POSITION is a nonsense question. So
27   ;; my (WHN) impression is that the conservative approach is to
28   ;; IGNORE-ERRORS. (I encountered this failure from within a homebrew
29   ;; defsystemish operation where the ERROR-STREAM had been CL:CLOSEd,
30   ;; I think by nonlocally exiting through a WITH-OPEN-FILE, by the
31   ;; time an error was reported.)
32   (if posp
33       (ignore-errors (file-position stream pos))
34       (ignore-errors (file-position stream))))
35 \f
36 ;;;; the CONDITION class
37
38 (/show0 "condition.lisp 20")
39
40 (eval-when (:compile-toplevel :load-toplevel :execute)
41
42 (/show0 "condition.lisp 24")
43
44 (def!struct (condition-classoid (:include classoid)
45                                 (:constructor make-condition-classoid))
46   ;; list of CONDITION-SLOT structures for the direct slots of this
47   ;; class
48   (slots nil :type list)
49   ;; list of CONDITION-SLOT structures for all of the effective class
50   ;; slots of this class
51   (class-slots nil :type list)
52   ;; report function or NIL
53   (report nil :type (or function null))
54   ;; list of alternating initargs and initforms
55   (default-initargs () :type list)
56   ;; class precedence list as a list of CLASS objects, with all
57   ;; non-CONDITION classes removed
58   (cpl () :type list)
59   ;; a list of all the effective instance allocation slots of this
60   ;; class that have a non-constant initform or default-initarg.
61   ;; Values for these slots must be computed in the dynamic
62   ;; environment of MAKE-CONDITION.
63   (hairy-slots nil :type list))
64
65 (/show0 "condition.lisp 49")
66
67 ) ; EVAL-WHEN
68
69 (!defstruct-with-alternate-metaclass condition
70   :slot-names (actual-initargs assigned-slots)
71   :boa-constructor %make-condition-object
72   :superclass-name t
73   :metaclass-name condition-classoid
74   :metaclass-constructor make-condition-classoid
75   :dd-type structure)
76
77 (defun make-condition-object (actual-initargs)
78   (%make-condition-object actual-initargs nil))
79
80 (defstruct (condition-slot (:copier nil))
81   (name (missing-arg) :type symbol)
82   ;; list of all applicable initargs
83   (initargs (missing-arg) :type list)
84   ;; names of reader and writer functions
85   (readers (missing-arg) :type list)
86   (writers (missing-arg) :type list)
87   ;; true if :INITFORM was specified
88   (initform-p (missing-arg) :type (member t nil))
89   ;; If this is a function, call it with no args. Otherwise, it's the
90   ;; actual value.
91   (initform (missing-arg) :type t)
92   ;; allocation of this slot, or NIL until defaulted
93   (allocation nil :type (member :instance :class nil))
94   ;; If ALLOCATION is :CLASS, this is a cons whose car holds the value.
95   (cell nil :type (or cons null))
96   ;; slot documentation
97   (documentation nil :type (or string null)))
98
99 ;;; KLUDGE: It's not clear to me why CONDITION-CLASS has itself listed
100 ;;; in its CPL, while other classes derived from CONDITION-CLASS don't
101 ;;; have themselves listed in their CPLs. This behavior is inherited
102 ;;; from CMU CL, and didn't seem to be explained there, and I haven't
103 ;;; figured out whether it's right. -- WHN 19990612
104 (eval-when (:compile-toplevel :load-toplevel :execute)
105   (/show0 "condition.lisp 103")
106   (let ((condition-class (locally
107                            ;; KLUDGE: There's a DEFTRANSFORM
108                            ;; FIND-CLASSOID for constant class names
109                            ;; which creates fast but
110                            ;; non-cold-loadable, non-compact code. In
111                            ;; this context, we'd rather have compact,
112                            ;; cold-loadable code. -- WHN 19990928
113                            (declare (notinline find-classoid))
114                            (find-classoid 'condition))))
115     (setf (condition-classoid-cpl condition-class)
116           (list condition-class)))
117   (/show0 "condition.lisp 103"))
118
119 (setf (condition-classoid-report (locally
120                                    ;; KLUDGE: There's a DEFTRANSFORM
121                                    ;; FIND-CLASSOID for constant class
122                                    ;; names which creates fast but
123                                    ;; non-cold-loadable, non-compact
124                                    ;; code. In this context, we'd
125                                    ;; rather have compact,
126                                    ;; cold-loadable code. -- WHN
127                                    ;; 19990928
128                                    (declare (notinline find-classoid))
129                                    (find-classoid 'condition)))
130       (lambda (cond stream)
131         (format stream "Condition ~S was signalled." (type-of cond))))
132
133 (eval-when (:compile-toplevel :load-toplevel :execute)
134
135 (defun find-condition-layout (name parent-types)
136   (let* ((cpl (remove-duplicates
137                (reverse
138                 (reduce #'append
139                         (mapcar (lambda (x)
140                                   (condition-classoid-cpl
141                                    (find-classoid x)))
142                                 parent-types)))))
143          (cond-layout (info :type :compiler-layout 'condition))
144          (olayout (info :type :compiler-layout name))
145          ;; FIXME: Does this do the right thing in case of multiple
146          ;; inheritance? A quick look at DEFINE-CONDITION didn't make
147          ;; it obvious what ANSI intends to be done in the case of
148          ;; multiple inheritance, so it's not actually clear what the
149          ;; right thing is..
150          (new-inherits
151           (order-layout-inherits (concatenate 'simple-vector
152                                               (layout-inherits cond-layout)
153                                               (mapcar #'classoid-layout cpl)))))
154     (if (and olayout
155              (not (mismatch (layout-inherits olayout) new-inherits)))
156         olayout
157         (make-layout :classoid (make-undefined-classoid name)
158                      :inherits new-inherits
159                      :depthoid -1
160                      :length (layout-length cond-layout)))))
161
162 ) ; EVAL-WHEN
163
164 ;;; FIXME: ANSI's definition of DEFINE-CONDITION says
165 ;;;   Condition reporting is mediated through the PRINT-OBJECT method
166 ;;;   for the condition type in question, with *PRINT-ESCAPE* always
167 ;;;   being nil. Specifying (:REPORT REPORT-NAME) in the definition of
168 ;;;   a condition type C is equivalent to:
169 ;;;     (defmethod print-object ((x c) stream)
170 ;;;       (if *print-escape* (call-next-method) (report-name x stream)))
171 ;;; The current code doesn't seem to quite match that.
172 (def!method print-object ((x condition) stream)
173   (if *print-escape*
174       (if (and (typep x 'simple-condition) (slot-boundp x 'format-control))
175           (print-unreadable-object (x stream :type t :identity t)
176             (format stream "~S" (simple-condition-format-control x)))
177           (print-unreadable-object (x stream :type t :identity t)))
178       ;; KLUDGE: A comment from CMU CL here said
179       ;;   7/13/98 BUG? CPL is not sorted and results here depend on order of
180       ;;   superclasses in define-condition call!
181       (dolist (class (condition-classoid-cpl (classoid-of x))
182                      (error "no REPORT? shouldn't happen!"))
183         (let ((report (condition-classoid-report class)))
184           (when report
185             (return (funcall report x stream)))))))
186 \f
187 ;;;; slots of CONDITION objects
188
189 (defvar *empty-condition-slot* '(empty))
190
191 (defun find-slot-default (class slot)
192   (let ((initargs (condition-slot-initargs slot))
193         (cpl (condition-classoid-cpl class)))
194     (dolist (class cpl)
195       (let ((default-initargs (condition-classoid-default-initargs class)))
196         (dolist (initarg initargs)
197           (let ((val (getf default-initargs initarg *empty-condition-slot*)))
198             (unless (eq val *empty-condition-slot*)
199               (return-from find-slot-default
200                            (if (functionp val)
201                                (funcall val)
202                                val)))))))
203
204     (if (condition-slot-initform-p slot)
205         (let ((initform (condition-slot-initform slot)))
206           (if (functionp initform)
207               (funcall initform)
208               initform))
209         (error "unbound condition slot: ~S" (condition-slot-name slot)))))
210
211 (defun find-condition-class-slot (condition-class slot-name)
212   (dolist (sclass
213            (condition-classoid-cpl condition-class)
214            (error "There is no slot named ~S in ~S."
215                   slot-name condition-class))
216     (dolist (slot (condition-classoid-slots sclass))
217       (when (eq (condition-slot-name slot) slot-name)
218         (return-from find-condition-class-slot slot)))))
219
220 (defun condition-writer-function (condition new-value name)
221   (dolist (cslot (condition-classoid-class-slots
222                   (layout-classoid (%instance-layout condition)))
223                  (setf (getf (condition-assigned-slots condition) name)
224                        new-value))
225     (when (eq (condition-slot-name cslot) name)
226       (return (setf (car (condition-slot-cell cslot)) new-value)))))
227
228 (defun condition-reader-function (condition name)
229   (let ((class (layout-classoid (%instance-layout condition))))
230     (dolist (cslot (condition-classoid-class-slots class))
231       (when (eq (condition-slot-name cslot) name)
232         (return-from condition-reader-function
233                      (car (condition-slot-cell cslot)))))
234     (let ((val (getf (condition-assigned-slots condition) name
235                      *empty-condition-slot*)))
236       (if (eq val *empty-condition-slot*)
237           (let ((actual-initargs (condition-actual-initargs condition))
238                 (slot (find-condition-class-slot class name)))
239             (unless slot
240               (error "missing slot ~S of ~S" name condition))
241             (do ((initargs actual-initargs (cddr initargs)))
242                 ((endp initargs)
243                  (setf (getf (condition-assigned-slots condition) name)
244                        (find-slot-default class slot)))
245               (when (member (car initargs) (condition-slot-initargs slot))
246                 (return-from condition-reader-function
247                   (setf (getf (condition-assigned-slots condition)
248                               name)
249                         (cadr initargs))))))
250           val))))
251 \f
252 ;;;; MAKE-CONDITION
253
254 (defun make-condition (type &rest args)
255   #!+sb-doc
256   "Make an instance of a condition object using the specified initargs."
257   ;; Note: ANSI specifies no exceptional situations in this function.
258   ;; signalling simple-type-error would not be wrong.
259   (let* ((type (or (and (symbolp type) (find-classoid type nil))
260                     type))
261          (class (typecase type
262                   (condition-classoid type)
263                   (class
264                    ;; Punt to CLOS.
265                    (return-from make-condition (apply #'make-instance type args)))
266                   (classoid
267                    (error 'simple-type-error
268                           :datum type
269                           :expected-type 'condition-class
270                           :format-control "~S is not a condition class."
271                           :format-arguments (list type)))
272                   (t
273                    (error 'simple-type-error
274                           :datum type
275                           :expected-type 'condition-class
276                           :format-control "Bad type argument:~%  ~S"
277                           :format-arguments (list type)))))
278          (res (make-condition-object args)))
279     (setf (%instance-layout res) (classoid-layout class))
280     ;; Set any class slots with initargs present in this call.
281     (dolist (cslot (condition-classoid-class-slots class))
282       (dolist (initarg (condition-slot-initargs cslot))
283         (let ((val (getf args initarg *empty-condition-slot*)))
284           (unless (eq val *empty-condition-slot*)
285             (setf (car (condition-slot-cell cslot)) val)))))
286     ;; Default any slots with non-constant defaults now.
287     (dolist (hslot (condition-classoid-hairy-slots class))
288       (when (dolist (initarg (condition-slot-initargs hslot) t)
289               (unless (eq (getf args initarg *empty-condition-slot*)
290                           *empty-condition-slot*)
291                 (return nil)))
292         (setf (getf (condition-assigned-slots res) (condition-slot-name hslot))
293               (find-slot-default class hslot))))
294     res))
295 \f
296 ;;;; DEFINE-CONDITION
297
298 (eval-when (:compile-toplevel :load-toplevel :execute)
299 (defun %compiler-define-condition (name direct-supers layout
300                                    all-readers all-writers)
301   (with-single-package-locked-error
302       (:symbol name "defining ~A as a condition")
303     (sb!xc:proclaim `(ftype (function (t) t) ,@all-readers))
304     (sb!xc:proclaim `(ftype (function (t t) t) ,@all-writers))
305     (multiple-value-bind (class old-layout)
306         (insured-find-classoid name
307                                #'condition-classoid-p
308                                #'make-condition-classoid)
309       (setf (layout-classoid layout) class)
310       (setf (classoid-direct-superclasses class)
311             (mapcar #'find-classoid direct-supers))
312       (cond ((not old-layout)
313              (register-layout layout))
314             ((not *type-system-initialized*)
315              (setf (layout-classoid old-layout) class)
316              (setq layout old-layout)
317              (unless (eq (classoid-layout class) layout)
318                (register-layout layout)))
319             ((redefine-layout-warning "current"
320                                       old-layout
321                                       "new"
322                                       (layout-length layout)
323                                       (layout-inherits layout)
324                                       (layout-depthoid layout)
325                                       (layout-n-untagged-slots layout))
326              (register-layout layout :invalidate t))
327             ((not (classoid-layout class))
328              (register-layout layout)))
329
330       (setf (layout-info layout)
331             (locally
332                 ;; KLUDGE: There's a FIND-CLASS DEFTRANSFORM for constant class
333                 ;; names which creates fast but non-cold-loadable, non-compact
334                 ;; code. In this context, we'd rather have compact, cold-loadable
335                 ;; code. -- WHN 19990928
336                 (declare (notinline find-classoid))
337               (layout-info (classoid-layout (find-classoid 'condition)))))
338
339       (setf (find-classoid name) class)
340
341       ;; Initialize CPL slot.
342       (setf (condition-classoid-cpl class)
343             (remove-if-not #'condition-classoid-p
344                            (std-compute-class-precedence-list class)))))
345   (values))
346 ) ; EVAL-WHEN
347
348 ;;; Compute the effective slots of CLASS, copying inherited slots and
349 ;;; destructively modifying direct slots.
350 ;;;
351 ;;; FIXME: It'd be nice to explain why it's OK to destructively modify
352 ;;; direct slots. Presumably it follows from the semantics of
353 ;;; inheritance and redefinition of conditions, but finding the cite
354 ;;; and documenting it here would be good. (Or, if this is not in fact
355 ;;; ANSI-compliant, fixing it would also be good.:-)
356 (defun compute-effective-slots (class)
357   (collect ((res (copy-list (condition-classoid-slots class))))
358     (dolist (sclass (cdr (condition-classoid-cpl class)))
359       (dolist (sslot (condition-classoid-slots sclass))
360         (let ((found (find (condition-slot-name sslot) (res)
361                            :key #'condition-slot-name)))
362           (cond (found
363                  (setf (condition-slot-initargs found)
364                        (union (condition-slot-initargs found)
365                               (condition-slot-initargs sslot)))
366                  (unless (condition-slot-initform-p found)
367                    (setf (condition-slot-initform-p found)
368                          (condition-slot-initform-p sslot))
369                    (setf (condition-slot-initform found)
370                          (condition-slot-initform sslot)))
371                  (unless (condition-slot-allocation found)
372                    (setf (condition-slot-allocation found)
373                          (condition-slot-allocation sslot))))
374                 (t
375                  (res (copy-structure sslot)))))))
376     (res)))
377
378 ;;; Early definitions of slot accessor creators.
379 ;;;
380 ;;; Slot accessors must be generic functions, but ANSI does not seem
381 ;;; to specify any of them, and we cannot support it before end of
382 ;;; warm init. So we use ordinary functions inside SBCL, and switch to
383 ;;; GFs only at the end of building.
384 (declaim (notinline install-condition-slot-reader
385                     install-condition-slot-writer))
386 (defun install-condition-slot-reader (name condition slot-name)
387   (declare (ignore condition))
388   (setf (fdefinition name)
389         (lambda (condition)
390           (condition-reader-function condition slot-name))))
391 (defun install-condition-slot-writer (name condition slot-name)
392   (declare (ignore condition))
393   (setf (fdefinition name)
394         (lambda (new-value condition)
395           (condition-writer-function condition new-value slot-name))))
396
397 (defvar *define-condition-hooks* nil)
398
399 (defun %define-condition (name parent-types layout slots documentation
400                           report default-initargs all-readers all-writers
401                           source-location)
402   (with-single-package-locked-error
403       (:symbol name "defining ~A as a condition")
404     (%compiler-define-condition name parent-types layout all-readers all-writers)
405     (sb!c:with-source-location (source-location)
406       (setf (layout-source-location layout)
407             source-location))
408     (let ((class (find-classoid name)))
409       (setf (condition-classoid-slots class) slots)
410       (setf (condition-classoid-report class) report)
411       (setf (condition-classoid-default-initargs class) default-initargs)
412       (setf (fdocumentation name 'type) documentation)
413
414       (dolist (slot slots)
415
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))))
422
423       ;; Compute effective slots and set up the class and hairy slots
424       ;; (subsets of the effective slots.)
425       (let ((eslots (compute-effective-slots class))
426             (e-def-initargs
427              (reduce #'append
428                      (mapcar #'condition-classoid-default-initargs
429                            (condition-classoid-cpl class)))))
430         (dolist (slot eslots)
431           (ecase (condition-slot-allocation slot)
432             (:class
433              (unless (condition-slot-cell slot)
434                (setf (condition-slot-cell slot)
435                      (list (if (condition-slot-initform-p slot)
436                                (let ((initform (condition-slot-initform slot)))
437                                  (if (functionp initform)
438                                      (funcall initform)
439                                      initform))
440                                *empty-condition-slot*))))
441              (push slot (condition-classoid-class-slots class)))
442             ((:instance nil)
443              (setf (condition-slot-allocation slot) :instance)
444              (when (or (functionp (condition-slot-initform slot))
445                        (dolist (initarg (condition-slot-initargs slot) nil)
446                          (when (functionp (getf e-def-initargs initarg))
447                            (return t))))
448                (push slot (condition-classoid-hairy-slots class)))))))
449       (when (boundp '*define-condition-hooks*)
450         (dolist (fun *define-condition-hooks*)
451           (funcall fun class))))
452     name))
453
454 (defmacro define-condition (name (&rest parent-types) (&rest slot-specs)
455                                  &body options)
456   #!+sb-doc
457   "DEFINE-CONDITION Name (Parent-Type*) (Slot-Spec*) Option*
458    Define NAME as a condition type. This new type inherits slots and its
459    report function from the specified PARENT-TYPEs. A slot spec is a list of:
460      (slot-name :reader <rname> :initarg <iname> {Option Value}*
461
462    The DEFINE-CLASS slot options :ALLOCATION, :INITFORM, [slot] :DOCUMENTATION
463    and :TYPE and the overall options :DEFAULT-INITARGS and
464    [type] :DOCUMENTATION are also allowed.
465
466    The :REPORT option is peculiar to DEFINE-CONDITION. Its argument is either
467    a string or a two-argument lambda or function name. If a function, the
468    function is called with the condition and stream to report the condition.
469    If a string, the string is printed.
470
471    Condition types are classes, but (as allowed by ANSI and not as described in
472    CLtL2) are neither STANDARD-OBJECTs nor STRUCTURE-OBJECTs. WITH-SLOTS and
473    SLOT-VALUE may not be used on condition objects."
474   (let* ((parent-types (or parent-types '(condition)))
475          (layout (find-condition-layout name parent-types))
476          (documentation nil)
477          (report nil)
478          (default-initargs ()))
479     (collect ((slots)
480               (all-readers nil append)
481               (all-writers nil append))
482       (dolist (spec slot-specs)
483         (when (keywordp spec)
484           (warn "Keyword slot name indicates probable syntax error:~%  ~S"
485                 spec))
486         (let* ((spec (if (consp spec) spec (list spec)))
487                (slot-name (first spec))
488                (allocation :instance)
489                (initform-p nil)
490                documentation
491                initform)
492           (collect ((initargs)
493                     (readers)
494                     (writers))
495             (do ((options (rest spec) (cddr options)))
496                 ((null options))
497               (unless (and (consp options) (consp (cdr options)))
498                 (error "malformed condition slot spec:~%  ~S." spec))
499               (let ((arg (second options)))
500                 (case (first options)
501                   (:reader (readers arg))
502                   (:writer (writers arg))
503                   (:accessor
504                    (readers arg)
505                    (writers `(setf ,arg)))
506                   (:initform
507                    (when initform-p
508                      (error "more than one :INITFORM in ~S" spec))
509                    (setq initform-p t)
510                    (setq initform arg))
511                   (:initarg (initargs arg))
512                   (:allocation
513                    (setq allocation arg))
514                   (:documentation
515                    (when documentation
516                      (error "more than one :DOCUMENTATION in ~S" spec))
517                    (unless (stringp arg)
518                      (error "slot :DOCUMENTATION argument is not a string: ~S"
519                             arg))
520                    (setq documentation arg))
521                   (:type)
522                   (t
523                    (error "unknown slot option:~%  ~S" (first options))))))
524
525             (all-readers (readers))
526             (all-writers (writers))
527             (slots `(make-condition-slot
528                      :name ',slot-name
529                      :initargs ',(initargs)
530                      :readers ',(readers)
531                      :writers ',(writers)
532                      :initform-p ',initform-p
533                      :documentation ',documentation
534                      :initform
535                      ,(if (sb!xc:constantp initform)
536                           `',(constant-form-value initform)
537                           `#'(lambda () ,initform)))))))
538
539       (dolist (option options)
540         (unless (consp option)
541           (error "bad option:~%  ~S" option))
542         (case (first option)
543           (:documentation (setq documentation (second option)))
544           (:report
545            (let ((arg (second option)))
546              (setq report
547                    (if (stringp arg)
548                        `#'(lambda (condition stream)
549                           (declare (ignore condition))
550                           (write-string ,arg stream))
551                        `#'(lambda (condition stream)
552                           (funcall #',arg condition stream))))))
553           (:default-initargs
554            (do ((initargs (rest option) (cddr initargs)))
555                ((endp initargs))
556              (let ((val (second initargs)))
557                (setq default-initargs
558                      (list* `',(first initargs)
559                             (if (sb!xc:constantp val)
560                                 `',(constant-form-value val)
561                                 `#'(lambda () ,val))
562                             default-initargs)))))
563           (t
564            (error "unknown option: ~S" (first option)))))
565
566       `(progn
567          (eval-when (:compile-toplevel)
568            (%compiler-define-condition ',name ',parent-types ',layout
569                                        ',(all-readers) ',(all-writers)))
570          (eval-when (:load-toplevel :execute)
571            (%define-condition ',name
572                               ',parent-types
573                               ',layout
574                               (list ,@(slots))
575                               ,documentation
576                               ,report
577                               (list ,@default-initargs)
578                               ',(all-readers)
579                               ',(all-writers)
580                               (sb!c:source-location)))))))
581 \f
582 ;;;; various CONDITIONs specified by ANSI
583
584 (define-condition serious-condition (condition) ())
585
586 (define-condition error (serious-condition) ())
587
588 (define-condition warning (condition) ())
589 (define-condition style-warning (warning) ())
590
591 (defun simple-condition-printer (condition stream)
592   (apply #'format
593          stream
594          (simple-condition-format-control condition)
595          (simple-condition-format-arguments condition)))
596
597 (define-condition simple-condition ()
598   ((format-control :reader simple-condition-format-control
599                    :initarg :format-control
600                    :type format-control)
601    (format-arguments :reader simple-condition-format-arguments
602                      :initarg :format-arguments
603                      :initform '()
604                      :type list))
605   (:report simple-condition-printer))
606
607 (define-condition simple-warning (simple-condition warning) ())
608
609 (define-condition simple-error (simple-condition error) ())
610
611 (define-condition storage-condition (serious-condition) ())
612
613 (define-condition type-error (error)
614   ((datum :reader type-error-datum :initarg :datum)
615    (expected-type :reader type-error-expected-type :initarg :expected-type))
616   (:report
617    (lambda (condition stream)
618      (format stream
619              "~@<The value ~2I~:_~S ~I~_is not of type ~2I~_~S.~:>"
620              (type-error-datum condition)
621              (type-error-expected-type condition)))))
622
623 (def!method print-object ((condition type-error) stream)
624   (if *print-escape*
625       (flet ((maybe-string (thing)
626                (ignore-errors
627                  (write-to-string thing :lines 1 :readably nil :array nil :pretty t))))
628         (let ((type (maybe-string (type-error-expected-type condition)))
629               (datum (maybe-string (type-error-datum condition))))
630           (if (and type datum)
631               (print-unreadable-object (condition stream :type t)
632                 (format stream "~@<expected-type: ~A ~_datum: ~A~:@>" type datum))
633               (call-next-method))))
634       (call-next-method)))
635
636 ;;; not specified by ANSI, but too useful not to have around.
637 (define-condition simple-style-warning (simple-condition style-warning) ())
638 (define-condition simple-type-error (simple-condition type-error) ())
639
640 ;; Can't have a function called SIMPLE-TYPE-ERROR or TYPE-ERROR...
641 (declaim (ftype (sfunction (t t t &rest t) nil) bad-type))
642 (defun bad-type (datum type control &rest arguments)
643   (error 'simple-type-error
644          :datum datum
645          :expected-type type
646          :format-control control
647          :format-arguments arguments))
648
649 (define-condition program-error (error) ())
650 (define-condition parse-error   (error) ())
651 (define-condition control-error (error) ())
652 (define-condition stream-error  (error)
653   ((stream :reader stream-error-stream :initarg :stream)))
654
655 (define-condition end-of-file (stream-error) ()
656   (:report
657    (lambda (condition stream)
658      (format stream
659              "end of file on ~S"
660              (stream-error-stream condition)))))
661
662 (define-condition closed-stream-error (stream-error) ()
663   (:report
664    (lambda (condition stream)
665      (format stream "~S is closed" (stream-error-stream condition)))))
666
667 (define-condition file-error (error)
668   ((pathname :reader file-error-pathname :initarg :pathname))
669   (:report
670    (lambda (condition stream)
671      (format stream "error on file ~S" (file-error-pathname condition)))))
672
673 (define-condition package-error (error)
674   ((package :reader package-error-package :initarg :package)))
675
676 (define-condition cell-error (error)
677   ((name :reader cell-error-name :initarg :name)))
678
679 (def!method print-object ((condition cell-error) stream)
680   (if (and *print-escape* (slot-boundp condition 'name))
681       (print-unreadable-object (condition stream :type t :identity t)
682         (princ (cell-error-name condition) stream))
683       (call-next-method)))
684
685 (define-condition unbound-variable (cell-error) ()
686   (:report
687    (lambda (condition stream)
688      (format stream
689              "The variable ~S is unbound."
690              (cell-error-name condition)))))
691
692 (define-condition undefined-function (cell-error) ()
693   (:report
694    (lambda (condition stream)
695      (format stream
696              "The function ~/sb-impl::print-symbol-with-prefix/ is undefined."
697              (cell-error-name condition)))))
698
699 (define-condition special-form-function (undefined-function) ()
700   (:report
701    (lambda (condition stream)
702      (format stream
703              "Cannot FUNCALL the SYMBOL-FUNCTION of special operator ~S."
704              (cell-error-name condition)))))
705
706 (define-condition arithmetic-error (error)
707   ((operation :reader arithmetic-error-operation
708               :initarg :operation
709               :initform nil)
710    (operands :reader arithmetic-error-operands
711              :initarg :operands))
712   (:report (lambda (condition stream)
713              (format stream
714                      "arithmetic error ~S signalled"
715                      (type-of condition))
716              (when (arithmetic-error-operation condition)
717                (format stream
718                        "~%Operation was ~S, operands ~S."
719                        (arithmetic-error-operation condition)
720                        (arithmetic-error-operands condition))))))
721
722 (define-condition division-by-zero         (arithmetic-error) ())
723 (define-condition floating-point-overflow  (arithmetic-error) ())
724 (define-condition floating-point-underflow (arithmetic-error) ())
725 (define-condition floating-point-inexact   (arithmetic-error) ())
726 (define-condition floating-point-invalid-operation (arithmetic-error) ())
727
728 (define-condition print-not-readable (error)
729   ((object :reader print-not-readable-object :initarg :object))
730   (:report
731    (lambda (condition stream)
732      (let ((obj (print-not-readable-object condition))
733            (*print-array* nil))
734        (format stream "~S cannot be printed readably." obj)))))
735
736 (define-condition reader-error (parse-error stream-error) ()
737   (:report (lambda (condition stream)
738              (%report-reader-error condition stream))))
739
740 ;;; a READER-ERROR whose REPORTing is controlled by FORMAT-CONTROL and
741 ;;; FORMAT-ARGS (the usual case for READER-ERRORs signalled from
742 ;;; within SBCL itself)
743 ;;;
744 ;;; (Inheriting CL:SIMPLE-CONDITION here isn't quite consistent with
745 ;;; the letter of the ANSI spec: this is not a condition signalled by
746 ;;; SIGNAL when a format-control is supplied by the function's first
747 ;;; argument. It seems to me (WHN) to be basically in the spirit of
748 ;;; the spec, but if not, it'd be straightforward to do our own
749 ;;; DEFINE-CONDITION SB-INT:SIMPLISTIC-CONDITION with
750 ;;; FORMAT-CONTROL and FORMAT-ARGS slots, and use that condition in
751 ;;; place of CL:SIMPLE-CONDITION here.)
752 (define-condition simple-reader-error (reader-error simple-condition)
753   ()
754   (:report (lambda (condition stream)
755              (%report-reader-error condition stream :simple t))))
756
757 ;;; base REPORTing of a READER-ERROR
758 ;;;
759 ;;; When SIMPLE, we expect and use SIMPLE-CONDITION-ish FORMAT-CONTROL
760 ;;; and FORMAT-ARGS slots.
761 (defun %report-reader-error (condition stream &key simple)
762   (let* ((error-stream (stream-error-stream condition))
763          (pos (file-position-or-nil-for-error error-stream)))
764     (let (lineno colno)
765       (when (and pos
766                  (< pos sb!xc:array-dimension-limit)
767                  ;; KLUDGE: lseek() (which is what FILE-POSITION
768                  ;; reduces to on file-streams) is undefined on
769                  ;; "some devices", which in practice means that it
770                  ;; can claim to succeed on /dev/stdin on Darwin
771                  ;; and Solaris.  This is obviously bad news,
772                  ;; because the READ-SEQUENCE below will then
773                  ;; block, not complete, and the report will never
774                  ;; be printed.  As a workaround, we exclude
775                  ;; interactive streams from this attempt to report
776                  ;; positions.  -- CSR, 2003-08-21
777                  (not (interactive-stream-p error-stream))
778                  (file-position error-stream :start))
779         (let ((string
780                (make-string pos
781                             :element-type (stream-element-type
782                                            error-stream))))
783           (when (= pos (read-sequence string error-stream))
784             (setq lineno (1+ (count #\Newline string))
785                   colno (- pos
786                            (or (position #\Newline string :from-end t) -1)
787                            1))))
788         (file-position-or-nil-for-error error-stream pos))
789       (pprint-logical-block (stream nil)
790         (format stream
791                 "~S ~@[at ~W ~]~
792                     ~@[(line ~W~]~@[, column ~W) ~]~
793                     on ~S"
794                 (class-name (class-of condition))
795                 pos lineno colno error-stream)
796         (when simple
797           (format stream ":~2I~_~?"
798                   (simple-condition-format-control condition)
799                   (simple-condition-format-arguments condition)))))))
800 \f
801 ;;;; special SBCL extension conditions
802
803 ;;; an error apparently caused by a bug in SBCL itself
804 ;;;
805 ;;; Note that we don't make any serious effort to use this condition
806 ;;; for *all* errors in SBCL itself. E.g. type errors and array
807 ;;; indexing errors can occur in functions called from SBCL code, and
808 ;;; will just end up as ordinary TYPE-ERROR or invalid index error,
809 ;;; because the signalling code has no good way to know that the
810 ;;; underlying problem is a bug in SBCL. But in the fairly common case
811 ;;; that the signalling code does know that it's found a bug in SBCL,
812 ;;; this condition is appropriate, reusing boilerplate and helping
813 ;;; users to recognize it as an SBCL bug.
814 (define-condition bug (simple-error)
815   ()
816   (:report
817    (lambda (condition stream)
818      (format stream
819              "~@<  ~? ~:@_~?~:>"
820              (simple-condition-format-control condition)
821              (simple-condition-format-arguments condition)
822              "~@<This is probably a bug in SBCL itself. (Alternatively, ~
823               SBCL might have been corrupted by bad user code, e.g. by an ~
824               undefined Lisp operation like ~S, or by stray pointers from ~
825               alien code or from unsafe Lisp code; or there might be a bug ~
826               in the OS or hardware that SBCL is running on.) If it seems to ~
827               be a bug in SBCL itself, the maintainers would like to know ~
828               about it. Bug reports are welcome on the SBCL ~
829               mailing lists, which you can find at ~
830               <http://sbcl.sourceforge.net/>.~:@>"
831              '((fmakunbound 'compile))))))
832
833 (define-condition simple-storage-condition (storage-condition simple-condition)
834   ())
835
836 ;;; a condition for use in stubs for operations which aren't supported
837 ;;; on some platforms
838 ;;;
839 ;;; E.g. in sbcl-0.7.0.5, it might be appropriate to do something like
840 ;;;   #-(or freebsd linux)
841 ;;;   (defun load-foreign (&rest rest)
842 ;;;     (error 'unsupported-operator :name 'load-foreign))
843 ;;;   #+(or freebsd linux)
844 ;;;   (defun load-foreign ... actual definition ...)
845 ;;; By signalling a standard condition in this case, we make it
846 ;;; possible for test code to distinguish between (1) intentionally
847 ;;; unimplemented and (2) unintentionally just screwed up somehow.
848 ;;; (Before this condition was defined, test code tried to deal with
849 ;;; this by checking for FBOUNDP, but that didn't work reliably. In
850 ;;; sbcl-0.7.0, a package screwup left the definition of
851 ;;; LOAD-FOREIGN in the wrong package, so it was unFBOUNDP even on
852 ;;; architectures where it was supposed to be supported, and the
853 ;;; regression tests cheerfully passed because they assumed that
854 ;;; unFBOUNDPness meant they were running on an system which didn't
855 ;;; support the extension.)
856 (define-condition unsupported-operator (simple-error) ())
857 \f
858 ;;; (:ansi-cl :function remove)
859 ;;; (:ansi-cl :section (a b c))
860 ;;; (:ansi-cl :glossary "similar")
861 ;;;
862 ;;; (:sbcl :node "...")
863 ;;; (:sbcl :variable *ed-functions*)
864 ;;;
865 ;;; FIXME: this is not the right place for this.
866 (defun print-reference (reference stream)
867   (ecase (car reference)
868     (:amop
869      (format stream "AMOP")
870      (format stream ", ")
871      (destructuring-bind (type data) (cdr reference)
872        (ecase type
873          (:readers "Readers for ~:(~A~) Metaobjects"
874                    (substitute #\  #\- (symbol-name data)))
875          (:initialization
876           (format stream "Initialization of ~:(~A~) Metaobjects"
877                   (substitute #\  #\- (symbol-name data))))
878          (:generic-function (format stream "Generic Function ~S" data))
879          (:function (format stream "Function ~S" data))
880          (:section (format stream "Section ~{~D~^.~}" data)))))
881     (:ansi-cl
882      (format stream "The ANSI Standard")
883      (format stream ", ")
884      (destructuring-bind (type data) (cdr reference)
885        (ecase type
886          (:function (format stream "Function ~S" data))
887          (:special-operator (format stream "Special Operator ~S" data))
888          (:macro (format stream "Macro ~S" data))
889          (:section (format stream "Section ~{~D~^.~}" data))
890          (:glossary (format stream "Glossary entry for ~S" data))
891          (:issue (format stream "writeup for Issue ~A" data)))))
892     (:sbcl
893      (format stream "The SBCL Manual")
894      (format stream ", ")
895      (destructuring-bind (type data) (cdr reference)
896        (ecase type
897          (:node (format stream "Node ~S" data))
898          (:variable (format stream "Variable ~S" data))
899          (:function (format stream "Function ~S" data)))))
900     ;; FIXME: other documents (e.g. CLIM, Franz documentation :-)
901     ))
902 (define-condition reference-condition ()
903   ((references :initarg :references :reader reference-condition-references)))
904 (defvar *print-condition-references* t)
905 (def!method print-object :around ((o reference-condition) s)
906   (call-next-method)
907   (unless (or *print-escape* *print-readably*)
908     (when (and *print-condition-references*
909                (reference-condition-references o))
910       (format s "~&See also:~%")
911       (pprint-logical-block (s nil :per-line-prefix "  ")
912         (do* ((rs (reference-condition-references o) (cdr rs))
913               (r (car rs) (car rs)))
914              ((null rs))
915           (print-reference r s)
916           (unless (null (cdr rs))
917             (terpri s)))))))
918
919 (define-condition simple-reference-error (reference-condition simple-error)
920   ())
921
922 (define-condition simple-reference-warning (reference-condition simple-warning)
923   ())
924
925 (define-condition arguments-out-of-domain-error
926     (arithmetic-error reference-condition)
927   ())
928
929 (define-condition duplicate-definition (reference-condition warning)
930   ((name :initarg :name :reader duplicate-definition-name))
931   (:report (lambda (c s)
932              (format s "~@<Duplicate definition for ~S found in ~
933                         one file.~@:>"
934                      (duplicate-definition-name c))))
935   (:default-initargs :references (list '(:ansi-cl :section (3 2 2 3)))))
936
937 (define-condition constant-modified (reference-condition warning)
938   ((fun-name :initarg :fun-name :reader constant-modified-fun-name))
939   (:report (lambda (c s)
940              (format s "~@<Destructive function ~S called on ~
941                         constant data.~@:>"
942                      (constant-modified-fun-name c))))
943   (:default-initargs :references (list '(:ansi-cl :special-operator quote)
944                                        '(:ansi-cl :section (3 2 2 3)))))
945
946 (define-condition package-at-variance (reference-condition simple-warning)
947   ()
948   (:default-initargs :references (list '(:ansi-cl :macro defpackage))))
949
950 (define-condition defconstant-uneql (reference-condition error)
951   ((name :initarg :name :reader defconstant-uneql-name)
952    (old-value :initarg :old-value :reader defconstant-uneql-old-value)
953    (new-value :initarg :new-value :reader defconstant-uneql-new-value))
954   (:report
955    (lambda (condition stream)
956      (format stream
957              "~@<The constant ~S is being redefined (from ~S to ~S)~@:>"
958              (defconstant-uneql-name condition)
959              (defconstant-uneql-old-value condition)
960              (defconstant-uneql-new-value condition))))
961   (:default-initargs :references (list '(:ansi-cl :macro defconstant)
962                                        '(:sbcl :node "Idiosyncrasies"))))
963
964 (define-condition array-initial-element-mismatch
965     (reference-condition simple-warning)
966   ()
967   (:default-initargs
968       :references (list
969                    '(:ansi-cl :function make-array)
970                    '(:ansi-cl :function sb!xc:upgraded-array-element-type))))
971
972 (define-condition type-warning (reference-condition simple-warning)
973   ()
974   (:default-initargs :references (list '(:sbcl :node "Handling of Types"))))
975 (define-condition type-style-warning (reference-condition simple-style-warning)
976   ()
977   (:default-initargs :references (list '(:sbcl :node "Handling of Types"))))
978
979 (define-condition local-argument-mismatch (reference-condition simple-warning)
980   ()
981   (:default-initargs :references (list '(:ansi-cl :section (3 2 2 3)))))
982
983 (define-condition format-args-mismatch (reference-condition)
984   ()
985   (:default-initargs :references (list '(:ansi-cl :section (22 3 10 2)))))
986
987 (define-condition format-too-few-args-warning
988     (format-args-mismatch simple-warning)
989   ())
990 (define-condition format-too-many-args-warning
991     (format-args-mismatch simple-style-warning)
992   ())
993
994 (define-condition implicit-generic-function-warning (style-warning)
995   ((name :initarg :name :reader implicit-generic-function-name))
996   (:report
997    (lambda (condition stream)
998      (format stream "~@<Implicitly creating new generic function ~S.~:@>"
999              (implicit-generic-function-name condition)))))
1000
1001 (define-condition extension-failure (reference-condition simple-error)
1002   ())
1003
1004 (define-condition structure-initarg-not-keyword
1005     (reference-condition simple-style-warning)
1006   ()
1007   (:default-initargs :references (list '(:ansi-cl :section (2 4 8 13)))))
1008
1009 #!+sb-package-locks
1010 (progn
1011
1012 (define-condition package-lock-violation (reference-condition package-error)
1013   ((format-control :initform nil :initarg :format-control
1014                    :reader package-error-format-control)
1015    (format-arguments :initform nil :initarg :format-arguments
1016                      :reader package-error-format-arguments))
1017   (:report
1018    (lambda (condition stream)
1019      (let ((control (package-error-format-control condition)))
1020        (if control
1021            (apply #'format stream
1022                   (format nil "~~@<Lock on package ~A violated when ~A.~~:@>"
1023                           (package-name (package-error-package condition))
1024                           control)
1025                   (package-error-format-arguments condition))
1026            (format stream "~@<Lock on package ~A violated.~:@>"
1027                    (package-name (package-error-package condition)))))))
1028   ;; no :default-initargs -- reference-stuff provided by the
1029   ;; signalling form in target-package.lisp
1030   #!+sb-doc
1031   (:documentation
1032    "Subtype of CL:PACKAGE-ERROR. A subtype of this error is signalled
1033 when a package-lock is violated."))
1034
1035 (define-condition package-locked-error (package-lock-violation) ()
1036   #!+sb-doc
1037   (:documentation
1038    "Subtype of SB-EXT:PACKAGE-LOCK-VIOLATION. An error of this type is
1039 signalled when an operation on a package violates a package lock."))
1040
1041 (define-condition symbol-package-locked-error (package-lock-violation)
1042   ((symbol :initarg :symbol :reader package-locked-error-symbol))
1043   #!+sb-doc
1044   (:documentation
1045    "Subtype of SB-EXT:PACKAGE-LOCK-VIOLATION. An error of this type is
1046 signalled when an operation on a symbol violates a package lock. The
1047 symbol that caused the violation is accessed by the function
1048 SB-EXT:PACKAGE-LOCKED-ERROR-SYMBOL."))
1049
1050 ) ; progn
1051
1052 (define-condition undefined-alien-error (cell-error) ()
1053   (:report
1054    (lambda (condition stream)
1055      (if (slot-boundp condition 'name)
1056          (format stream "Undefined alien: ~S" (cell-error-name condition))
1057          (format stream "Undefined alien symbol.")))))
1058
1059 (define-condition undefined-alien-variable-error (undefined-alien-error) ()
1060   (:report
1061    (lambda (condition stream)
1062      (declare (ignore condition))
1063      (format stream "Attempt to access an undefined alien variable."))))
1064
1065 (define-condition undefined-alien-function-error (undefined-alien-error) ()
1066   (:report
1067    (lambda (condition stream)
1068      (declare (ignore condition))
1069      (format stream "Attempt to call an undefined alien function."))))
1070
1071 \f
1072 ;;;; various other (not specified by ANSI) CONDITIONs
1073 ;;;;
1074 ;;;; These might logically belong in other files; they're here, after
1075 ;;;; setup of CONDITION machinery, only because that makes it easier to
1076 ;;;; get cold init to work.
1077
1078 ;;; OAOOM warning: see cross-condition.lisp
1079 (define-condition encapsulated-condition (condition)
1080   ((condition :initarg :condition :reader encapsulated-condition)))
1081
1082 (define-condition values-type-error (type-error)
1083   ()
1084   (:report
1085    (lambda (condition stream)
1086      (format stream
1087              "~@<The values set ~2I~:_[~{~S~^ ~}] ~I~_is not of type ~2I~_~S.~:>"
1088              (type-error-datum condition)
1089              (type-error-expected-type condition)))))
1090
1091 ;;; KLUDGE: a condition for floating point errors when we can't or
1092 ;;; won't figure out what type they are. (In FreeBSD and OpenBSD we
1093 ;;; don't know how, at least as of sbcl-0.6.7; in Linux we probably
1094 ;;; know how but the old code was broken by the conversion to POSIX
1095 ;;; signal handling and hasn't been fixed as of sbcl-0.6.7.)
1096 ;;;
1097 ;;; FIXME: Perhaps this should also be a base class for all
1098 ;;; floating point exceptions?
1099 (define-condition floating-point-exception (arithmetic-error)
1100   ((flags :initarg :traps
1101           :initform nil
1102           :reader floating-point-exception-traps))
1103   (:report (lambda (condition stream)
1104              (format stream
1105                      "An arithmetic error ~S was signalled.~%"
1106                      (type-of condition))
1107              (let ((traps (floating-point-exception-traps condition)))
1108                (if traps
1109                    (format stream
1110                            "Trapping conditions are: ~%~{ ~S~^~}~%"
1111                            traps)
1112                    (write-line
1113                     "No traps are enabled? How can this be?"
1114                     stream))))))
1115
1116 (define-condition invalid-array-index-error (type-error)
1117   ((array :initarg :array :reader invalid-array-index-error-array)
1118    (axis :initarg :axis :reader invalid-array-index-error-axis))
1119   (:report
1120    (lambda (condition stream)
1121      (let ((array (invalid-array-index-error-array condition)))
1122        (format stream "Index ~W out of bounds for ~@[axis ~W of ~]~S, ~
1123                        should be nonnegative and <~W."
1124                (type-error-datum condition)
1125                (when (> (array-rank array) 1)
1126                  (invalid-array-index-error-axis condition))
1127                (type-of array)
1128                ;; Extract the bound from (INTEGER 0 (BOUND))
1129                (caaddr (type-error-expected-type condition)))))))
1130
1131 (define-condition invalid-array-error (reference-condition type-error) ()
1132   (:report
1133    (lambda (condition stream)
1134      (let ((*print-array* nil))
1135        (format stream
1136                "~@<Displaced array originally of type ~S has been invalidated ~
1137                 due its displaced-to array ~S having become too small to hold ~
1138                 it: the displaced array's dimensions have all been set to zero ~
1139                 to trap accesses to it.~:@>"
1140                (type-error-expected-type condition)
1141                (array-displacement (type-error-datum condition))))))
1142   (:default-initargs
1143       :references
1144       (list '(:ansi-cl :function adjust-array))))
1145
1146 (define-condition index-too-large-error (type-error)
1147   ()
1148   (:report
1149    (lambda (condition stream)
1150      (format stream
1151              "The index ~S is too large."
1152              (type-error-datum condition)))))
1153
1154 (define-condition bounding-indices-bad-error (reference-condition type-error)
1155   ((object :reader bounding-indices-bad-object :initarg :object))
1156   (:report
1157    (lambda (condition stream)
1158      (let* ((datum (type-error-datum condition))
1159             (start (car datum))
1160             (end (cdr datum))
1161             (object (bounding-indices-bad-object condition)))
1162        (etypecase object
1163          (sequence
1164           (format stream
1165                   "The bounding indices ~S and ~S are bad ~
1166                    for a sequence of length ~S."
1167                   start end (length object)))
1168          (array
1169           ;; from WITH-ARRAY-DATA
1170           (format stream
1171                   "The START and END parameters ~S and ~S are ~
1172                    bad for an array of total size ~S."
1173                   start end (array-total-size object)))))))
1174   (:default-initargs
1175       :references
1176       (list '(:ansi-cl :glossary "bounding index designator")
1177             '(:ansi-cl :issue "SUBSEQ-OUT-OF-BOUNDS:IS-AN-ERROR"))))
1178
1179 (define-condition nil-array-accessed-error (reference-condition type-error)
1180   ()
1181   (:report (lambda (condition stream)
1182              (declare (ignore condition))
1183              (format stream
1184                      "An attempt to access an array of element-type ~
1185                       NIL was made.  Congratulations!")))
1186   (:default-initargs
1187       :references (list '(:ansi-cl :function sb!xc:upgraded-array-element-type)
1188                         '(:ansi-cl :section (15 1 2 1))
1189                         '(:ansi-cl :section (15 1 2 2)))))
1190
1191 (define-condition namestring-parse-error (parse-error)
1192   ((complaint :reader namestring-parse-error-complaint :initarg :complaint)
1193    (args :reader namestring-parse-error-args :initarg :args :initform nil)
1194    (namestring :reader namestring-parse-error-namestring :initarg :namestring)
1195    (offset :reader namestring-parse-error-offset :initarg :offset))
1196   (:report
1197    (lambda (condition stream)
1198      (format stream
1199              "parse error in namestring: ~?~%  ~A~%  ~V@T^"
1200              (namestring-parse-error-complaint condition)
1201              (namestring-parse-error-args condition)
1202              (namestring-parse-error-namestring condition)
1203              (namestring-parse-error-offset condition)))))
1204
1205 (define-condition simple-package-error (simple-condition package-error) ())
1206
1207 (define-condition simple-reader-package-error (simple-reader-error) ())
1208
1209 (define-condition reader-eof-error (end-of-file)
1210   ((context :reader reader-eof-error-context :initarg :context))
1211   (:report
1212    (lambda (condition stream)
1213      (format stream
1214              "unexpected end of file on ~S ~A"
1215              (stream-error-stream condition)
1216              (reader-eof-error-context condition)))))
1217
1218 (define-condition reader-impossible-number-error (simple-reader-error)
1219   ((error :reader reader-impossible-number-error-error :initarg :error))
1220   (:report
1221    (lambda (condition stream)
1222      (let ((error-stream (stream-error-stream condition)))
1223        (format stream
1224                "READER-ERROR ~@[at ~W ~]on ~S:~%~?~%Original error: ~A"
1225                (file-position-or-nil-for-error error-stream) error-stream
1226                (simple-condition-format-control condition)
1227                (simple-condition-format-arguments condition)
1228                (reader-impossible-number-error-error condition))))))
1229
1230 (define-condition standard-readtable-modified-error (reference-condition error)
1231   ((operation :initarg :operation :reader standard-readtable-modified-operation))
1232   (:report (lambda (condition stream)
1233              (format stream "~S would modify the standard readtable."
1234                      (standard-readtable-modified-operation condition))))
1235   (:default-initargs :references `((:ansi-cl :section (2 1 1 2))
1236                                    (:ansi-cl :glossary "standard readtable"))))
1237
1238 (define-condition standard-pprint-dispatch-table-modified-error
1239     (reference-condition error)
1240   ((operation :initarg :operation
1241               :reader standard-pprint-dispatch-table-modified-operation))
1242   (:report (lambda (condition stream)
1243              (format stream "~S would modify the standard pprint dispatch table."
1244                      (standard-pprint-dispatch-table-modified-operation
1245                       condition))))
1246   (:default-initargs
1247       :references `((:ansi-cl :glossary "standard pprint dispatch table"))))
1248
1249 (define-condition timeout (serious-condition)
1250   ((seconds :initarg :seconds :initform nil :reader timeout-seconds))
1251   (:report (lambda (condition stream)
1252              (format stream "Timeout occurred~@[ after ~A seconds~]."
1253                      (timeout-seconds condition)))))
1254
1255 (define-condition io-timeout (stream-error timeout)
1256   ((direction :reader io-timeout-direction :initarg :direction))
1257   (:report
1258    (lambda (condition stream)
1259      (declare (type stream stream))
1260      (format stream
1261              "I/O timeout while doing ~(~A~) on ~S."
1262              (io-timeout-direction condition)
1263              (stream-error-stream condition)))))
1264
1265 (define-condition deadline-timeout (timeout) ()
1266   (:report (lambda (condition stream)
1267              (format stream "A deadline was reached after ~A seconds."
1268                      (timeout-seconds condition)))))
1269
1270 (define-condition declaration-type-conflict-error (reference-condition
1271                                                    simple-error)
1272   ()
1273   (:default-initargs
1274       :format-control "symbol ~S cannot be both the name of a type and the name of a declaration"
1275     :references (list '(:ansi-cl :section (3 8 21)))))
1276
1277 ;;; Single stepping conditions
1278
1279 (define-condition step-condition ()
1280   ((form :initarg :form :reader step-condition-form))
1281
1282   #!+sb-doc
1283   (:documentation "Common base class of single-stepping conditions.
1284 STEP-CONDITION-FORM holds a string representation of the form being
1285 stepped."))
1286
1287 #!+sb-doc
1288 (setf (fdocumentation 'step-condition-form 'function)
1289       "Form associated with the STEP-CONDITION.")
1290
1291 (define-condition step-form-condition (step-condition)
1292   ((args :initarg :args :reader step-condition-args))
1293   (:report
1294    (lambda (condition stream)
1295      (let ((*print-circle* t)
1296            (*print-pretty* t)
1297            (*print-readably* nil))
1298        (format stream
1299                  "Evaluating call:~%~<  ~@;~A~:>~%~
1300                   ~:[With arguments:~%~{  ~S~%~}~;With unknown arguments~]~%"
1301                (list (step-condition-form condition))
1302                (eq (step-condition-args condition) :unknown)
1303                (step-condition-args condition)))))
1304   #!+sb-doc
1305   (:documentation "Condition signalled by code compiled with
1306 single-stepping information when about to execute a form.
1307 STEP-CONDITION-FORM holds the form, STEP-CONDITION-PATHNAME holds the
1308 pathname of the original file or NIL, and STEP-CONDITION-SOURCE-PATH
1309 holds the source-path to the original form within that file or NIL.
1310 Associated with this condition are always the restarts STEP-INTO,
1311 STEP-NEXT, and STEP-CONTINUE."))
1312
1313 (define-condition step-result-condition (step-condition)
1314   ((result :initarg :result :reader step-condition-result)))
1315
1316 #!+sb-doc
1317 (setf (fdocumentation 'step-condition-result 'function)
1318       "Return values associated with STEP-VALUES-CONDITION as a list,
1319 or the variable value associated with STEP-VARIABLE-CONDITION.")
1320
1321 (define-condition step-values-condition (step-result-condition)
1322   ()
1323   #!+sb-doc
1324   (:documentation "Condition signalled by code compiled with
1325 single-stepping information after executing a form.
1326 STEP-CONDITION-FORM holds the form, and STEP-CONDITION-RESULT holds
1327 the values returned by the form as a list. No associated restarts."))
1328
1329 (define-condition step-finished-condition (step-condition)
1330   ()
1331   (:report
1332    (lambda (condition stream)
1333      (declare (ignore condition))
1334      (format stream "Returning from STEP")))
1335   #!+sb-doc
1336   (:documentation "Condition signaled when STEP returns."))
1337 \f
1338 ;;; A knob for muffling warnings, mostly for use while loading files.
1339 (defvar *muffled-warnings* 'uninteresting-redefinition
1340   "A type that ought to specify a subtype of WARNING.  Whenever a
1341 warning is signaled, if the warning if of this type and is not
1342 handled by any other handler, it will be muffled.")
1343 \f
1344 ;;; Various STYLE-WARNING signaled in the system.
1345 ;; For the moment, we're only getting into the details for function
1346 ;; redefinitions, but other redefinitions could be done later
1347 ;; (e.g. methods).
1348 (define-condition redefinition-warning (style-warning)
1349   ((name
1350     :initarg :name
1351     :reader redefinition-warning-name)
1352    (new-location
1353     :initarg :new-location
1354     :reader redefinition-warning-new-location)))
1355
1356 (define-condition function-redefinition-warning (redefinition-warning)
1357   ((new-function
1358     :initarg :new-function
1359     :reader function-redefinition-warning-new-function)))
1360
1361 (define-condition redefinition-with-defun (function-redefinition-warning)
1362   ()
1363   (:report (lambda (warning stream)
1364              (format stream "redefining ~/sb-impl::print-symbol-with-prefix/ ~
1365                              in DEFUN"
1366                      (redefinition-warning-name warning)))))
1367
1368 (define-condition redefinition-with-defmacro (function-redefinition-warning)
1369   ()
1370   (:report (lambda (warning stream)
1371              (format stream "redefining ~/sb-impl::print-symbol-with-prefix/ ~
1372                              in DEFMACRO"
1373                      (redefinition-warning-name warning)))))
1374
1375 (define-condition redefinition-with-defgeneric (redefinition-warning)
1376   ()
1377   (:report (lambda (warning stream)
1378              (format stream "redefining ~/sb-impl::print-symbol-with-prefix/ ~
1379                              in DEFGENERIC"
1380                      (redefinition-warning-name warning)))))
1381
1382 (define-condition redefinition-with-defmethod (redefinition-warning)
1383   ((qualifiers :initarg :qualifiers
1384                :reader redefinition-with-defmethod-qualifiers)
1385    (specializers :initarg :specializers
1386                  :reader redefinition-with-defmethod-specializers)
1387    (new-location :initarg :new-location
1388                  :reader redefinition-with-defmethod-new-location)
1389    (old-method :initarg :old-method
1390                :reader redefinition-with-defmethod-old-method))
1391   (:report (lambda (warning stream)
1392              (format stream "redefining ~S~{ ~S~} ~S in DEFMETHOD"
1393                      (redefinition-warning-name warning)
1394                      (redefinition-with-defmethod-qualifiers warning)
1395                      (redefinition-with-defmethod-specializers warning)))))
1396
1397 ;;;; Deciding which redefinitions are "interesting".
1398
1399 (defun function-file-namestring (function)
1400   #!+sb-eval
1401   (when (typep function 'sb!eval:interpreted-function)
1402     (return-from function-file-namestring
1403       (sb!c:definition-source-location-namestring
1404           (sb!eval:interpreted-function-source-location function))))
1405   (let* ((fun (sb!kernel:%fun-fun function))
1406          (code (sb!kernel:fun-code-header fun))
1407          (debug-info (sb!kernel:%code-debug-info code))
1408          (debug-source (when debug-info
1409                          (sb!c::debug-info-source debug-info)))
1410          (namestring (when debug-source
1411                        (sb!c::debug-source-namestring debug-source))))
1412     namestring))
1413
1414 (defun interesting-function-redefinition-warning-p (warning old)
1415   (let ((new (function-redefinition-warning-new-function warning))
1416         (source-location (redefinition-warning-new-location warning)))
1417     (or
1418      ;; Compiled->Interpreted is interesting.
1419      (and (typep old 'compiled-function)
1420           (typep new '(not compiled-function)))
1421      ;; FIN->Regular is interesting.
1422      (and (typep old 'funcallable-instance)
1423           (typep new '(not funcallable-instance)))
1424      ;; Different file or unknown location is interesting.
1425      (let* ((old-namestring (function-file-namestring old))
1426             (new-namestring
1427              (or (function-file-namestring new)
1428                  (when source-location
1429                    (sb!c::definition-source-location-namestring source-location)))))
1430        (and (or (not old-namestring)
1431                 (not new-namestring)
1432                 (not (string= old-namestring new-namestring))))))))
1433
1434 (defun uninteresting-ordinary-function-redefinition-p (warning)
1435   (and
1436    ;; There's garbage in various places when the first DEFUN runs in
1437    ;; cold-init.
1438    sb!kernel::*cold-init-complete-p*
1439    (typep warning 'redefinition-with-defun)
1440    ;; Shared logic.
1441    (let ((name (redefinition-warning-name warning)))
1442      (not (interesting-function-redefinition-warning-p
1443            warning (or (fdefinition name) (macro-function name)))))))
1444
1445 (defun uninteresting-macro-redefinition-p (warning)
1446   (and
1447    (typep warning 'redefinition-with-defmacro)
1448    ;; Shared logic.
1449    (let ((name (redefinition-warning-name warning)))
1450      (not (interesting-function-redefinition-warning-p
1451            warning (or (macro-function name) (fdefinition name)))))))
1452
1453 (defun uninteresting-generic-function-redefinition-p (warning)
1454   (and
1455    (typep warning 'redefinition-with-defgeneric)
1456    ;; Can't use the shared logic above, since GF's don't get a "new"
1457    ;; definition -- rather the FIN-FUNCTION is set.
1458    (let* ((name (redefinition-warning-name warning))
1459           (old (fdefinition name))
1460           (old-location (when (typep old 'generic-function)
1461                           (sb!pcl::definition-source old)))
1462           (old-namestring (when old-location
1463                             (sb!c:definition-source-location-namestring old-location)))
1464           (new-location (redefinition-warning-new-location warning))
1465           (new-namestring (when new-location
1466                            (sb!c:definition-source-location-namestring new-location))))
1467      (and old-namestring
1468           new-namestring
1469           (string= old-namestring new-namestring)))))
1470
1471 (defun uninteresting-method-redefinition-p (warning)
1472   (and
1473    (typep warning 'redefinition-with-defmethod)
1474    ;; Can't use the shared logic above, since GF's don't get a "new"
1475    ;; definition -- rather the FIN-FUNCTION is set.
1476    (let* ((old-method (redefinition-with-defmethod-old-method warning))
1477           (old-location (sb!pcl::definition-source old-method))
1478           (old-namestring (when old-location
1479                             (sb!c:definition-source-location-namestring old-location)))
1480           (new-location (redefinition-warning-new-location warning))
1481           (new-namestring (when new-location
1482                             (sb!c:definition-source-location-namestring new-location))))
1483          (and new-namestring
1484               old-namestring
1485               (string= new-namestring old-namestring)))))
1486
1487 (deftype uninteresting-redefinition ()
1488   '(or (satisfies uninteresting-ordinary-function-redefinition-p)
1489        (satisfies uninteresting-macro-redefinition-p)
1490        (satisfies uninteresting-generic-function-redefinition-p)
1491        (satisfies uninteresting-method-redefinition-p)))
1492
1493 (define-condition redefinition-with-deftransform (redefinition-warning)
1494   ((transform :initarg :transform
1495               :reader redefinition-with-deftransform-transform))
1496   (:report (lambda (warning stream)
1497              (format stream "Overwriting ~S"
1498                      (redefinition-with-deftransform-transform warning)))))
1499 \f
1500 ;;; Various other STYLE-WARNINGS
1501 (define-condition dubious-asterisks-around-variable-name
1502     (style-warning simple-condition)
1503   ()
1504   (:report (lambda (warning stream)
1505              (format stream "~@?, even though the name follows~@
1506 the usual naming convention (names like *FOO*) for special variables"
1507                      (simple-condition-format-control warning)
1508                      (simple-condition-format-arguments warning)))))
1509
1510 (define-condition asterisks-around-lexical-variable-name
1511     (dubious-asterisks-around-variable-name)
1512   ())
1513
1514 (define-condition asterisks-around-constant-variable-name
1515     (dubious-asterisks-around-variable-name)
1516   ())
1517
1518 ;; We call this UNDEFINED-ALIEN-STYLE-WARNING because there are some
1519 ;; subclasses of ERROR above having to do with undefined aliens.
1520 (define-condition undefined-alien-style-warning (style-warning)
1521   ((symbol :initarg :symbol :reader undefined-alien-symbol))
1522   (:report (lambda (warning stream)
1523              (format stream "Undefined alien: ~S"
1524                      (undefined-alien-symbol warning)))))
1525
1526 #!+sb-eval
1527 (define-condition lexical-environment-too-complex (style-warning)
1528   ((form :initarg :form :reader lexical-environment-too-complex-form)
1529    (lexenv :initarg :lexenv :reader lexical-environment-too-complex-lexenv))
1530   (:report (lambda (warning stream)
1531              (format stream
1532                      "~@<Native lexical environment too complex for ~
1533                          SB-EVAL to evaluate ~S, falling back to ~
1534                          SIMPLE-EVAL-IN-LEXENV.  Lexenv: ~S~:@>"
1535                      (lexical-environment-too-complex-form warning)
1536                      (lexical-environment-too-complex-lexenv warning)))))
1537
1538 ;; Although this has -ERROR- in the name, it's just a STYLE-WARNING.
1539 (define-condition character-decoding-error-in-comment (style-warning)
1540   ((stream :initarg :stream :reader decoding-error-in-comment-stream)
1541    (position :initarg :position :reader decoding-error-in-comment-position))
1542   (:report (lambda (warning stream)
1543              (format stream
1544                       "Character decoding error in a ~A-comment at ~
1545                       position ~A reading source stream ~A, ~
1546                       resyncing."
1547                       (decoding-error-in-comment-macro warning)
1548                       (decoding-error-in-comment-position warning)
1549                       (decoding-error-in-comment-stream warning)))))
1550
1551 (define-condition character-decoding-error-in-macro-char-comment
1552     (character-decoding-error-in-comment)
1553   ((char :initform #\; :initarg :char
1554          :reader character-decoding-error-in-macro-char-comment-char)))
1555
1556 (define-condition character-decoding-error-in-dispatch-macro-char-comment
1557     (character-decoding-error-in-comment)
1558   ;; ANSI doesn't give a way for a reader function invoked by a
1559   ;; dispatch macro character to determine which dispatch character
1560   ;; was used, so if a user wants to signal one of these from a custom
1561   ;; comment reader, he'll have to supply the :DISP-CHAR himself.
1562   ((disp-char :initform #\# :initarg :disp-char
1563               :reader character-decoding-error-in-macro-char-comment-disp-char)
1564    (sub-char :initarg :sub-char
1565              :reader character-decoding-error-in-macro-char-comment-sub-char)))
1566
1567 (defun decoding-error-in-comment-macro (warning)
1568   (etypecase warning
1569     (character-decoding-error-in-macro-char-comment
1570      (character-decoding-error-in-macro-char-comment-char warning))
1571     (character-decoding-error-in-dispatch-macro-char-comment
1572      (format
1573       nil "~C~C"
1574       (character-decoding-error-in-macro-char-comment-disp-char warning)
1575       (character-decoding-error-in-macro-char-comment-sub-char warning)))))
1576
1577 (define-condition deprecated-eval-when-situations (style-warning)
1578   ((situations :initarg :situations
1579                :reader deprecated-eval-when-situations-situations))
1580   (:report (lambda (warning stream)
1581              (format stream "using deprecated EVAL-WHEN situation names~{ ~S~}"
1582                      (deprecated-eval-when-situations-situations warning)))))
1583
1584 (define-condition proclamation-mismatch (style-warning)
1585   ((name :initarg :name :reader proclamation-mismatch-name)
1586    (old :initarg :old :reader proclamation-mismatch-old)
1587    (new :initarg :new :reader proclamation-mismatch-new)))
1588
1589 (define-condition type-proclamation-mismatch (proclamation-mismatch)
1590   ()
1591   (:report (lambda (warning stream)
1592              (format stream
1593                      "The new TYPE proclamation~% ~S for ~S does not ~
1594                      match the old TYPE proclamation ~S"
1595                      (proclamation-mismatch-new warning)
1596                      (proclamation-mismatch-name warning)
1597                      (proclamation-mismatch-old warning)))))
1598
1599 (define-condition ftype-proclamation-mismatch (proclamation-mismatch)
1600   ()
1601   (:report (lambda (warning stream)
1602              (format stream
1603                      "The new FTYPE proclamation~% ~S for ~S does not ~
1604                      match the old FTYPE proclamation ~S"
1605                      (proclamation-mismatch-new warning)
1606                      (proclamation-mismatch-name warning)
1607                      (proclamation-mismatch-old warning)))))
1608 \f
1609 ;;;; deprecation conditions
1610
1611 (define-condition deprecation-condition ()
1612   ((name :initarg :name :reader deprecated-name)
1613    (replacement :initarg :replacement :reader deprecated-name-replacement)
1614    (since :initarg :since :reader deprecated-since)
1615    (runtime-error :initarg :runtime-error :reader deprecated-name-runtime-error)))
1616
1617 (def!method print-object ((condition deprecation-condition) stream)
1618   (let ((*package* (find-package :keyword)))
1619     (if *print-escape*
1620         (print-unreadable-object (condition stream :type t)
1621           (format stream "~S is deprecated~@[, use ~S~]"
1622                   (deprecated-name condition)
1623                   (deprecated-name-replacement condition)))
1624         (format stream "~@<~S has been deprecated as of SBCL ~A~
1625                         ~@[, use ~S instead~].~:@>"
1626                 (deprecated-name condition)
1627                 (deprecated-since condition)
1628                 (deprecated-name-replacement condition)))))
1629
1630 (define-condition early-deprecation-warning (style-warning deprecation-condition)
1631   ())
1632
1633 (def!method print-object :after ((warning early-deprecation-warning) stream)
1634   (unless *print-escape*
1635     (let ((*package* (find-package :keyword)))
1636       (format stream "~%~@<~:@_In future SBCL versions ~S will signal a full warning ~
1637                       at compile-time.~:@>"
1638               (deprecated-name warning)))))
1639
1640 (define-condition late-deprecation-warning (warning deprecation-condition)
1641   ())
1642
1643 (def!method print-object :after ((warning late-deprecation-warning) stream)
1644   (unless *print-escape*
1645     (when (deprecated-name-runtime-error warning)
1646       (let ((*package* (find-package :keyword)))
1647         (format stream "~%~@<~:@_In future SBCL versions ~S will signal a runtime error.~:@>"
1648                 (deprecated-name warning))))))
1649
1650 (define-condition final-deprecation-warning (warning deprecation-condition)
1651   ())
1652
1653 (def!method print-object :after ((warning final-deprecation-warning) stream)
1654   (unless *print-escape*
1655     (when (deprecated-name-runtime-error warning)
1656       (let ((*package* (find-package :keyword)))
1657         (format stream "~%~@<~:@_An error will be signaled at runtime for ~S.~:@>"
1658                 (deprecated-name warning))))))
1659
1660 (define-condition deprecation-error (error deprecation-condition)
1661   ())
1662 \f
1663 ;;;; restart definitions
1664
1665 (define-condition abort-failure (control-error) ()
1666   (:report
1667    "An ABORT restart was found that failed to transfer control dynamically."))
1668
1669 (defun abort (&optional condition)
1670   #!+sb-doc
1671   "Transfer control to a restart named ABORT, signalling a CONTROL-ERROR if
1672    none exists."
1673   (invoke-restart (find-restart-or-control-error 'abort condition))
1674   ;; ABORT signals an error in case there was a restart named ABORT
1675   ;; that did not transfer control dynamically. This could happen with
1676   ;; RESTART-BIND.
1677   (error 'abort-failure))
1678
1679 (defun muffle-warning (&optional condition)
1680   #!+sb-doc
1681   "Transfer control to a restart named MUFFLE-WARNING, signalling a
1682    CONTROL-ERROR if none exists."
1683   (invoke-restart (find-restart-or-control-error 'muffle-warning condition)))
1684
1685 (defun try-restart (name condition &rest arguments)
1686   (let ((restart (find-restart name condition)))
1687     (when restart
1688       (apply #'invoke-restart restart arguments))))
1689
1690 (macrolet ((define-nil-returning-restart (name args doc)
1691              #!-sb-doc (declare (ignore doc))
1692              `(defun ,name (,@args &optional condition)
1693                 #!+sb-doc ,doc
1694                 (try-restart ',name condition ,@args))))
1695   (define-nil-returning-restart continue ()
1696     "Transfer control to a restart named CONTINUE, or return NIL if none exists.")
1697   (define-nil-returning-restart store-value (value)
1698     "Transfer control and VALUE to a restart named STORE-VALUE, or return NIL if
1699    none exists.")
1700   (define-nil-returning-restart use-value (value)
1701     "Transfer control and VALUE to a restart named USE-VALUE, or return NIL if
1702    none exists."))
1703
1704 ;;; single-stepping restarts
1705
1706 (macrolet ((def (name doc)
1707                #!-sb-doc (declare (ignore doc))
1708                `(defun ,name (condition)
1709                  #!+sb-doc ,doc
1710                  (invoke-restart (find-restart-or-control-error ',name condition)))))
1711   (def step-continue
1712       "Transfers control to the STEP-CONTINUE restart associated with
1713 the condition, continuing execution without stepping. Signals a
1714 CONTROL-ERROR if the restart does not exist.")
1715   (def step-next
1716       "Transfers control to the STEP-NEXT restart associated with the
1717 condition, executing the current form without stepping and continuing
1718 stepping with the next form. Signals CONTROL-ERROR is the restart does
1719 not exists.")
1720   (def step-into
1721       "Transfers control to the STEP-INTO restart associated with the
1722 condition, stepping into the current form. Signals a CONTROL-ERROR is
1723 the restart does not exist."))
1724
1725 (/show0 "condition.lisp end of file")
1726