1 ;;;; that part of the DESCRIBE mechanism which is based on code from
4 ;;;; This software is part of the SBCL system. See the README file for
7 ;;;; This software is derived from software originally released by Xerox
8 ;;;; Corporation. Copyright and release statements follow. Later modifications
9 ;;;; to the software are in the public domain and are provided with
10 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
13 ;;;; copyright information from original PCL sources:
15 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
16 ;;;; All rights reserved.
18 ;;;; Use and copying of this software and preparation of derivative works based
19 ;;;; upon this software are permitted. Any distribution of this software or
20 ;;;; derivative works must comply with all applicable United States export
23 ;;;; This software is made available AS IS, and Xerox Corporation makes no
24 ;;;; warranty about the software, its performance or its conformity to any
29 (defmethod slots-to-inspect ((class slot-class) (object slot-object))
32 (defmethod describe-object ((object slot-object) stream)
34 (let* ((class (class-of object))
35 (slotds (slots-to-inspect class object))
36 (max-slot-name-length 0)
41 (flet ((adjust-slot-name-length (name)
42 (setq max-slot-name-length
43 (max max-slot-name-length
44 (length (the string (symbol-name name))))))
45 (describe-slot (name value &optional (allocation () alloc-p))
49 name allocation (+ max-slot-name-length 7) value)
52 name max-slot-name-length value))))
54 ;; Figure out a good width for the slot-name column.
55 (dolist (slotd slotds)
56 (adjust-slot-name-length (slot-definition-name slotd))
57 (case (slot-definition-allocation slotd)
58 (:instance (push slotd instance-slotds))
59 (:class (push slotd class-slotds))
60 (otherwise (push slotd other-slotds))))
61 (setq max-slot-name-length (min (+ max-slot-name-length 3) 30))
62 (format stream "~&~@<~S ~_is an instance of class ~S.~:>" object class)
64 ;; Now that we know the width, we can print.
66 (format stream "~%The following slots have :INSTANCE allocation:")
67 (dolist (slotd (nreverse instance-slotds))
69 (slot-definition-name slotd)
70 (slot-value-or-default object
71 (slot-definition-name slotd)))))
73 (format stream "~%The following slots have :CLASS allocation:")
74 (dolist (slotd (nreverse class-slotds))
76 (slot-definition-name slotd)
77 (slot-value-or-default object
78 (slot-definition-name slotd)))))
80 (format stream "~%The following slots have allocation as shown:")
81 (dolist (slotd (nreverse other-slotds))
83 (slot-definition-name slotd)
84 (slot-value-or-default object
85 (slot-definition-name slotd))
86 (slot-definition-allocation slotd)))))))
88 (defvar *describe-metaobjects-as-objects-p* nil)
90 (defmethod describe-object ((fun standard-generic-function) stream)
91 (format stream "~&~A is a generic function.~%" fun)
92 (format stream "Its arguments are:~% ~S~%"
93 (generic-function-pretty-arglist fun))
94 (let ((methods (generic-function-methods fun)))
96 (format stream "It has no methods.~%")
97 (let ((gf-name (generic-function-name fun)))
98 (format stream "Its methods are:")
99 (dolist (method methods)
100 (format stream "~2% (~A ~{~S ~}~:S) =>~%"
102 (method-qualifiers method)
103 (unparse-specializers method))
104 (describe-object (or (method-fast-function method)
105 (method-function method))
107 (when *describe-metaobjects-as-objects-p*
110 (defmethod describe-object ((class class) stream)
111 (flet ((pretty-class (c) (or (class-name c) c)))
112 (macrolet ((ft (string &rest args) `(format stream ,string ,@args)))
113 (ft "~&~S is a class, it is an instance of ~S.~%"
114 class (pretty-class (class-of class)))
115 (let ((name (class-name class)))
117 (if (eq class (find-class name nil))
118 (ft "Its proper name is ~S.~%" name)
119 (ft "Its name is ~S, but this is not a proper name.~%" name))
120 (ft "It has no name (the name is NIL).~%")))
121 (ft "The direct superclasses are: ~:S, and the direct~%~
122 subclasses are: ~:S. The class precedence list is:~%~S~%~
123 There are ~W methods specialized for this class."
124 (mapcar #'pretty-class (class-direct-superclasses class))
125 (mapcar #'pretty-class (class-direct-subclasses class))
126 (mapcar #'pretty-class (class-precedence-list class))
127 (length (specializer-direct-methods class)))))
128 (when *describe-metaobjects-as-objects-p*
131 (defmethod describe-object ((package package) stream)
132 (pprint-logical-block (stream nil)
133 (format stream "~&~S is a ~S." package (type-of package))
135 "~@[~&It has nicknames ~2I~{~:_~S~^ ~}~]"
136 (package-nicknames package))
137 (let* ((internal (package-internal-symbols package))
138 (internal-count (- (package-hashtable-size internal)
139 (package-hashtable-free internal)))
140 (external (package-external-symbols package))
141 (external-count (- (package-hashtable-size external)
142 (package-hashtable-free external))))
144 "~&It has ~S internal and ~S external symbols."
145 internal-count external-count))
146 (flet (;; Turn a list of packages into something a human likes
148 (humanize (package-list)
149 (sort (mapcar #'package-name package-list) #'string<)))
151 "~@[~&It uses packages named ~2I~{~:_~S~^ ~}~]"
152 (humanize (package-use-list package)))
154 "~@[~&It is used by packages named ~2I~{~:_~S~^ ~}~]"
155 (humanize (package-used-by-list package))))))