Declare COERCE and two helpers as EXPLICIT-CHECK.
[sbcl.git] / src / pcl / print-object.lisp
blob8e2b889f8791256ec7a1708cefce9055196d7cf7
1 ;;;; some basic PRINT-OBJECT functionality
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
6 ;;;; This software is derived from software originally released by Xerox
7 ;;;; Corporation. Copyright and release statements follow. Later modifications
8 ;;;; to the software are in the public domain and are provided with
9 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
10 ;;;; information.
12 ;;;; Some of the text in this file was originally taken from various files of
13 ;;;; the PCL system from Xerox Corporation, which carried the following
14 ;;;; copyright information:
15 ;;;;
16 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
17 ;;;; All rights reserved.
18 ;;;;
19 ;;;; Use and copying of this software and preparation of derivative works based
20 ;;;; upon this software are permitted. Any distribution of this software or
21 ;;;; derivative works must comply with all applicable United States export
22 ;;;; control laws.
23 ;;;;
24 ;;;; This software is made available AS IS, and Xerox Corporation makes no
25 ;;;; warranty about the software, its performance or its conformity to any
26 ;;;; specification.
28 (in-package "SB-PCL")
30 ;;;; the PRINT-OBJECT generic function
32 ;;; Blow away the old non-generic function placeholder which was used
33 ;;; by the printer doing bootstrapping, and immediately replace it
34 ;;; with some new printing logic, so that the Lisp printer stays
35 ;;; crippled only for the shortest necessary time.
36 (/show0 "about to replace placeholder PRINT-OBJECT with DEFGENERIC")
37 (let (;; (If we don't suppress /SHOW printing while the printer is
38 ;; crippled here, it becomes really easy to crash the bootstrap
39 ;; sequence by adding /SHOW statements e.g. to the compiler,
40 ;; which kinda defeats the purpose of /SHOW being a harmless
41 ;; tracing-style statement.)
42 #+sb-show (*/show* nil)
43 ;; (another workaround for the problem of debugging while the
44 ;; printer is disabled here)
45 (sb-impl::*print-object-is-disabled-p* t))
46 (fmakunbound 'print-object)
47 (defgeneric print-object (object stream))
48 (defmethod print-object ((x t) stream)
49 (if *print-pretty*
50 (pprint-logical-block (stream nil)
51 (print-unreadable-object (x stream :type t :identity t)))
52 (print-unreadable-object (x stream :type t :identity t)))))
53 (/show0 "done replacing placeholder PRINT-OBJECT with DEFGENERIC")
55 ;;;; a hook called by the printer to take care of dispatching to PRINT-OBJECT
56 ;;;; for appropriate FUNCALLABLE-INSTANCE objects
58 ;;; Now that CLOS is working, we can replace our old temporary placeholder code
59 ;;; for writing funcallable instances with permanent code:
60 (defun sb-impl::printed-as-funcallable-standard-class (object stream)
61 (when (funcallable-standard-class-p (class-of object))
62 (print-object object stream)
63 t))
65 ;;;; PRINT-OBJECT methods for objects from PCL classes
66 ;;;;
67 ;;;; FIXME: Perhaps these should be moved back alongside the definitions of
68 ;;;; the classes they print. (Bootstrapping problems could be avoided by
69 ;;;; using DEF!METHOD to do this.)
71 (defmethod print-object ((method standard-method) stream)
72 (if (slot-boundp method '%generic-function)
73 (print-unreadable-object (method stream :type t :identity t)
74 (let ((generic-function (method-generic-function method)))
75 (format stream "~/sb-impl::print-symbol-with-prefix/ ~{~S ~}~:S"
76 (and generic-function
77 (generic-function-name generic-function))
78 (method-qualifiers method)
79 (if generic-function
80 (unparse-specializers generic-function (method-specializers method))
81 (method-specializers method)))))
82 (call-next-method)))
84 (defmethod print-object ((method standard-accessor-method) stream)
85 (if (slot-boundp method '%generic-function)
86 (print-unreadable-object (method stream :type t :identity t)
87 (let ((generic-function (method-generic-function method)))
88 (format stream "~/sb-impl::print-symbol-with-prefix/, slot:~S, ~:S"
89 (and generic-function
90 (generic-function-name generic-function))
91 (accessor-method-slot-name method)
92 (if generic-function
93 (unparse-specializers generic-function (method-specializers method))
94 (method-specializers method)))))
95 (call-next-method)))
97 (defmethod print-object ((mc standard-method-combination) stream)
98 (print-unreadable-object (mc stream :type t :identity t)
99 (format stream
100 "~S ~S"
101 (slot-value-or-default mc 'type-name)
102 (slot-value-or-default mc 'options))))
104 (defun named-object-print-function (instance stream
105 &optional (properly-named-p t)
106 (extra nil extra-p))
107 (cond ((slot-boundp instance 'name) ; case (1): named
108 (let ((name (slot-value instance 'name)))
109 (print-unreadable-object
110 (instance stream :type t :identity (not properly-named-p))
111 (format stream "~/sb-impl::print-symbol-with-prefix/~:[~:; ~:S~]"
112 name extra-p extra))))
113 ((not extra-p) ; case (2): empty body to avoid an extra space
114 (print-unreadable-object (instance stream :type t :identity t)))
115 (t ; case (3). no name, but extra data - show #<unbound slot> and data
116 (print-unreadable-object (instance stream :type t :identity t)
117 (format stream "~S ~:S" *unbound-slot-value-marker* extra)))))
119 (defmethod print-object ((class class) stream)
120 ;; Use a similar concept as in OUTPUT-FUN.
121 (if (slot-boundp class 'name)
122 (let* ((name (class-name class))
123 (proper-p (and (symbolp name) (eq (find-class name nil) class))))
124 (print-unreadable-object (class stream :type t :identity (not proper-p))
125 (print-symbol-with-prefix stream name)))
126 ;; "#<CLASS #<unbound slot> {122D1141}>" is ugly. Don't show that.
127 (print-unreadable-object (class stream :type t :identity t))))
129 (defmethod print-object ((slotd slot-definition) stream)
130 (named-object-print-function slotd stream))
132 (defmethod print-object ((generic-function standard-generic-function) stream)
133 (multiple-value-call 'named-object-print-function
134 generic-function
135 stream
136 (and (slot-boundp generic-function 'name)
137 (let ((name (slot-value generic-function 'name)))
138 (and (legal-fun-name-p name)
139 (fboundp name)
140 (eq (fdefinition name) generic-function))))
141 (if (slot-boundp generic-function 'methods)
142 (list (length (generic-function-methods generic-function)))
143 (values))))
145 (defmethod print-object ((cache cache) stream)
146 (print-unreadable-object (cache stream :type t :identity t)
147 (multiple-value-bind (lines-used lines-total max-depth depth-limit)
148 (cache-statistics cache)
149 (format stream
150 "~D key~P, ~:[no value~;value~], ~D/~D lines, depth ~D/~D"
151 (cache-key-count cache)
152 (cache-key-count cache)
153 (cache-value cache)
154 lines-used
155 lines-total
156 max-depth
157 depth-limit))))
159 (defmethod print-object ((dfun-info dfun-info) stream)
160 (declare (type stream stream))
161 (print-unreadable-object (dfun-info stream :type t :identity t)))
163 (defmethod print-object ((ctor ctor) stream)
164 (print-unreadable-object (ctor stream :type t)
165 (format stream "~S ~:S" (ctor-class-or-name ctor) (ctor-initargs ctor)))
166 ctor)
168 (defmethod print-object ((obj class-precedence-description) stream)
169 (print-unreadable-object (obj stream :type t)
170 (format stream "~D" (cpd-count obj))))