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