1 ;;;; implementation of CL:DOCUMENTATION
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; This software is in the public domain and is provided with absolutely no
7 ;;;; warranty. See the COPYING and CREDITS files for more information.
9 (in-package "SB-C") ; FIXME: not the best package for FDOCUMENTATION
11 ;;; FDOCUMENTATION refers to STRUCTURE-CLASS which has only a skeletal
12 ;;; representation during cross-compilation. Better to define this late.
13 (defun fdocumentation (x doc-type
)
17 (symbol (values (info :variable
:documentation x
)))))
20 (error "FUNCTION doc-type is not supported."))
24 ((eq (info :type
:kind x
) :instance
)
25 (values (info :type
:documentation x
)))
26 ((info :typed-structure
:info x
)
27 (values (info :typed-structure
:documentation x
)))))))
30 (structure-class (values (info :type
:documentation
(class-name x
))))
31 (t (and (typep x
'symbol
) (values (info :type
:documentation x
))))))
32 (setf (values (info :setf
:documentation x
)))
35 (function (%fun-doc x
))
36 (package (package-doc-string x
))
37 (structure-class (values (info :type
:documentation
(class-name x
))))
39 (random-documentation x doc-type
))))
41 (when (typep x
'(or symbol cons
))
42 (random-documentation x doc-type
)))))
47 (if (typep x
'generic-function
)
48 (slot-value x
'%documentation
)
51 (defun (setf fun-doc
) (new-value x
)
52 (if (typep x
'generic-function
)
53 (setf (slot-value x
'%documentation
) new-value
)
54 (setf (%fun-doc x
) new-value
)))
56 (defun set-function-name-documentation (name documentation
)
58 (cond ((not (legal-fun-name-p name
))
60 ((not (equal (sb-c::real-function-name name
) name
))
61 (setf (random-documentation name
'function
) documentation
))
63 (setf (fun-doc (or (and (symbolp name
)
64 (macro-function name
))
71 (defmethod (setf documentation
) :around
(new-value (x (eql nil
)) doc-type
)
72 (style-warn "Ignoring doc-type ~a for ~a." doc-type nil
)
75 ;;; default if DOC-TYPE doesn't match one of the specified types
76 (defmethod documentation (object doc-type
)
77 (warn "unsupported DOCUMENTATION: doc-type ~S for object of type ~S"
78 doc-type
(type-of object
))
81 ;;; default if DOC-TYPE doesn't match one of the specified types
82 (defmethod (setf documentation
) (new-value object doc-type
)
83 ;; CMU CL made this an error, but since ANSI says that even for supported
84 ;; doc types an implementation is permitted to discard docs at any time
85 ;; for any reason, this feels to me more like a warning. -- WHN 19991214
86 (warn "discarding unsupported DOCUMENTATION: doc-type ~S for object of type ~S"
87 doc-type
(type-of object
))
92 (defun maybe-add-deprecation-note (namespace name documentation
)
93 (unless (member namespace
'(function variable type
))
94 (return-from maybe-add-deprecation-note documentation
))
95 (binding* (((state since replacements
)
96 (deprecated-thing-p namespace name
))
98 (with-output-to-string (stream)
99 (sb-impl::print-deprecation-message
100 namespace name
(first since
) (second since
)
101 replacements stream
)))))
103 ((and documentation note
)
105 'string note
#.
(format nil
"~2%") documentation
))
109 (defmethod documentation :around
((x t
) (doc-type t
))
110 (let ((namespace (cond
113 ((eq doc-type
'compiler-macro
)
117 ((eq doc-type
'structure
)
123 (sb-impl::fun-name x
))
128 (documentation (call-next-method)))
129 (maybe-add-deprecation-note namespace name documentation
)))
131 ;;; functions, macros, and special forms
133 (flet ((maybe-function-documentation (name)
135 ((not (legal-fun-name-p name
)))
136 ((random-documentation name
'function
))
137 ;; Nothing under the name, check the function object.
140 ((and (symbolp name
) (special-operator-p name
))
142 ((and (symbolp name
) (macro-function name
)))
143 ((fdefinition name
))))))))
145 (defmethod documentation ((x function
) (doc-type (eql 't
)))
148 (defmethod documentation ((x function
) (doc-type (eql 'function
)))
151 (defmethod documentation ((x list
) (doc-type (eql 'compiler-macro
)))
152 (awhen (compiler-macro-function x
)
153 (documentation it t
)))
155 (defmethod documentation ((x list
) (doc-type (eql 'function
)))
156 (maybe-function-documentation x
))
158 (defmethod documentation ((x symbol
) (doc-type (eql 'function
)))
159 (maybe-function-documentation x
))
161 (defmethod documentation ((x symbol
) (doc-type (eql 'compiler-macro
)))
162 (awhen (compiler-macro-function x
)
163 (documentation it t
)))
165 (defmethod documentation ((x symbol
) (doc-type (eql 'setf
)))
166 (fdocumentation x
'setf
)))
168 (defmethod documentation ((x symbol
) (doc-type (eql 'optimize
)))
169 (random-documentation x
'optimize
))
171 (defmethod (setf documentation
) (new-value (x function
) (doc-type (eql 't
)))
172 (setf (fun-doc x
) new-value
))
174 (defmethod (setf documentation
) (new-value (x function
) (doc-type (eql 'function
)))
175 (setf (fun-doc x
) new-value
))
177 (defmethod (setf documentation
) (new-value (x list
) (doc-type (eql 'function
)))
178 (set-function-name-documentation x new-value
))
180 (defmethod (setf documentation
) (new-value (x list
) (doc-type (eql 'compiler-macro
)))
181 (awhen (compiler-macro-function x
)
182 (setf (documentation it t
) new-value
)))
184 (defmethod (setf documentation
) (new-value (x symbol
) (doc-type (eql 'function
)))
185 (set-function-name-documentation x new-value
))
187 (defmethod (setf documentation
) (new-value (x symbol
) (doc-type (eql 'compiler-macro
)))
188 (awhen (compiler-macro-function x
)
189 (setf (documentation it t
) new-value
)))
191 (defmethod (setf documentation
) (new-value (x symbol
) (doc-type (eql 'setf
)))
192 (setf (fdocumentation x
'setf
) new-value
))
194 ;;; method combinations
195 (defmethod documentation ((x method-combination
) (doc-type (eql 't
)))
196 (slot-value x
'%documentation
))
198 (defmethod documentation
199 ((x method-combination
) (doc-type (eql 'method-combination
)))
200 (slot-value x
'%documentation
))
202 (defmethod documentation ((x symbol
) (doc-type (eql 'method-combination
)))
203 (random-documentation x
'method-combination
))
205 (defmethod (setf documentation
)
206 (new-value (x method-combination
) (doc-type (eql 't
)))
207 (setf (slot-value x
'%documentation
) new-value
))
209 (defmethod (setf documentation
)
210 (new-value (x method-combination
) (doc-type (eql 'method-combination
)))
211 (setf (slot-value x
'%documentation
) new-value
))
213 (defmethod (setf documentation
)
214 (new-value (x symbol
) (doc-type (eql 'method-combination
)))
215 (setf (random-documentation x
'method-combination
) new-value
))
218 (defmethod documentation ((x standard-method
) (doc-type (eql 't
)))
219 (slot-value x
'%documentation
))
221 (defmethod (setf documentation
)
222 (new-value (x standard-method
) (doc-type (eql 't
)))
223 (setf (slot-value x
'%documentation
) new-value
))
227 ;;; KLUDGE: It's nasty having things like this accessor
228 ;;; (PACKAGE-DOC-STRING) floating around out in this mostly-unrelated
229 ;;; source file. Perhaps it would be better to support WARM-INIT-FORMS
230 ;;; by analogy with the existing !COLD-INIT-FORMS and have them be
231 ;;; EVAL'ed after basic warm load is done? That way things like this
232 ;;; could be defined alongside the other code which does low-level
233 ;;; hacking of packages.. -- WHN 19991203
235 (defmethod documentation ((x package
) (doc-type (eql 't
)))
236 (package-doc-string x
))
238 (defmethod (setf documentation
) (new-value (x package
) (doc-type (eql 't
)))
239 (setf (package-doc-string x
) new-value
))
241 ;;; types, classes, and structure names
244 ((define-type-documentation-methods (specializer get-form set-form
)
246 (defmethod documentation ((x ,specializer
) (doc-type (eql 't
)))
249 (defmethod documentation ((x ,specializer
) (doc-type (eql 'type
)))
252 (defmethod (setf documentation
) (new-value
257 (defmethod (setf documentation
) (new-value
259 (doc-type (eql 'type
)))
260 (setf (documentation x
't
) new-value
))))
261 (define-type-documentation-lookup-methods (doc-type)
263 (defmethod documentation ((x symbol
) (doc-type (eql ',doc-type
)))
266 (documentation it t
))
268 (fdocumentation x
',doc-type
))))
270 (defmethod (setf documentation
) (new-value
272 (doc-type (eql ',doc-type
)))
275 (setf (documentation it t
) new-value
))
277 (setf (fdocumentation x
',doc-type
) new-value
)))))))
279 (define-type-documentation-methods structure-class
280 (fdocumentation (class-name x
) 'type
)
281 (setf (fdocumentation (class-name x
) 'type
) new-value
))
283 (define-type-documentation-methods class
284 (slot-value x
'%documentation
)
285 (setf (slot-value x
'%documentation
) new-value
))
287 ;; although the CLHS doesn't mention this, it is reasonable to
288 ;; assume that parallel treatment of condition-class was intended
289 ;; (if condition-class is in fact not implemented as a
290 ;; standard-class or structure-class).
291 (define-type-documentation-methods condition-class
292 (fdocumentation (class-name x
) 'type
)
293 (setf (fdocumentation (class-name x
) 'type
) new-value
))
295 (define-type-documentation-lookup-methods type
)
296 (define-type-documentation-lookup-methods structure
))
300 (defmethod documentation ((x symbol
) (doc-type (eql 'variable
)))
301 (fdocumentation x
'variable
))
303 (defmethod (setf documentation
) (new-value
305 (doc-type (eql 'variable
)))
306 (setf (fdocumentation x
'variable
) new-value
))
308 ;;; extra-standard methods, for getting at slot documentation
309 (defmethod documentation ((slotd standard-slot-definition
) (doc-type (eql 't
)))
310 (declare (ignore doc-type
))
311 (slot-value slotd
'%documentation
))
313 (defmethod (setf documentation
)
314 (new-value (slotd standard-slot-definition
) (doc-type (eql 't
)))
315 (declare (ignore doc-type
))
316 (setf (slot-value slotd
'%documentation
) new-value
))
318 ;;; Now that we have created the machinery for setting documentation, we can
319 ;;; set the documentation for the machinery for setting documentation.
321 (setf (documentation 'documentation
'function
)
322 "Return the documentation string of Doc-Type for X, or NIL if none
323 exists. System doc-types are VARIABLE, FUNCTION, STRUCTURE, TYPE, SETF, and T.
325 Function documentation is stored separately for function names and objects:
326 DEFUN, LAMBDA, &co create function objects with the specified documentation
329 \(SETF (DOCUMENTATION NAME 'FUNCTION) STRING)
331 sets the documentation string stored under the specified name, and
333 \(SETF (DOCUMENTATION FUNC T) STRING)
335 sets the documentation string stored in the function object.
337 \(DOCUMENTATION NAME 'FUNCTION)
339 returns the documentation stored under the function name if any, and
340 falls back on the documentation in the function object if necessary.")