X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fpcl%2Fdocumentation.lisp;h=7bc2e5864f8f716fc435f984b6e41f9b28a6f379;hb=5951caad8c14912c4dd859a49d2b240fa247b51d;hp=835bb34a8398c54bd32a39724fb8ecba3bd35773;hpb=59f7d9254f3601cfd48f0c299d5c30562111e991;p=sbcl.git diff --git a/src/pcl/documentation.lisp b/src/pcl/documentation.lisp index 835bb34..7bc2e58 100644 --- a/src/pcl/documentation.lisp +++ b/src/pcl/documentation.lisp @@ -8,163 +8,229 @@ (in-package "SB-PCL") -;;; Note some cases are handled by the documentation methods in -;;; std-class.lisp. -;;; FIXME: Those should probably be moved into this file too. +(defun fun-doc (x) + (if (typep x 'generic-function) + (slot-value x '%documentation) + (%fun-doc x))) -;;; FIXME: Lots of bare calls to INFO here could be handled -;;; more cleanly by calling the FDOCUMENTATION function instead. - -;;; FIXME: Neither SBCL nor Debian CMU CL 2.4.17 handles -;;; (DEFUN FOO ()) -;;; (SETF (DOCUMENTATION #'FOO 'FUNCTION) "testing") -;;; They fail with -;;; Can't change the documentation of #. -;;; The coverage of the DOCUMENTATION methods ought to be systematically -;;; compared to the ANSI specification of DOCUMENTATION. +(defun (setf fun-doc) (new-value x) + (if (typep x 'generic-function) + (setf (slot-value x '%documentation) new-value) + (setf (%fun-doc x) new-value))) ;;; functions, macros, and special forms (defmethod documentation ((x function) (doc-type (eql 't))) - (function-doc x)) + (fun-doc x)) (defmethod documentation ((x function) (doc-type (eql 'function))) - (function-doc x)) + (fun-doc x)) (defmethod documentation ((x list) (doc-type (eql 'function))) - ;; FIXME: could test harder to see whether it's a SETF function name, - ;; then call WARN - (when (eq (first x) 'setf) ; Give up if not a setf function name. - (or (values (sb-int:info :setf :documentation (second x))) - ;; Try the pcl function documentation. - (and (fboundp x) (documentation (fdefinition x) 't))))) + (when (and (legal-fun-name-p x) (fboundp x)) + (fun-doc (fdefinition x)))) + +(defmethod documentation ((x list) (doc-type (eql 'compiler-macro))) + (awhen (compiler-macro-function x) + (documentation it t))) (defmethod documentation ((x symbol) (doc-type (eql 'function))) - (or (values (sb-int:info :function :documentation x)) - ;; Try the pcl function documentation. - (and (fboundp x) (documentation (fdefinition x) 't)))) + (when (and (legal-fun-name-p x) (fboundp x)) + (fun-doc (or (macro-function x) (fdefinition x))))) + +(defmethod documentation ((x symbol) (doc-type (eql 'compiler-macro))) + (awhen (compiler-macro-function x) + (documentation it t))) (defmethod documentation ((x symbol) (doc-type (eql 'setf))) - (values (sb-int:info :setf :documentation x))) + (fdocumentation x 'setf)) + +(defmethod documentation ((x symbol) (doc-type (eql 'optimize))) + (random-documentation x 'optimize)) + +(defmethod (setf documentation) (new-value (x function) (doc-type (eql 't))) + (setf (fun-doc x) new-value)) + +(defmethod (setf documentation) (new-value (x function) (doc-type (eql 'function))) + (setf (fun-doc x) new-value)) (defmethod (setf documentation) (new-value (x list) (doc-type (eql 'function))) - (setf (sb-int:info :setf :documentation (cadr x)) new-value)) + (when (and (legal-fun-name-p x) (fboundp x)) + (setf (documentation (fdefinition x) t) new-value))) -(defmethod (setf documentation) (new-value - (x symbol) - (doc-type (eql 'function))) - (setf (sb-int:info :function :documentation x) new-value)) +(defmethod (setf documentation) (new-value (x list) (doc-type (eql 'compiler-macro))) + (awhen (compiler-macro-function x) + (setf (documentation it t) new-value))) -(defmethod (setf documentation) (new-value (x symbol) (doc-type (eql 'setf))) - (setf (sb-int:info :setf :documentation x) new-value)) +(defmethod (setf documentation) (new-value (x symbol) (doc-type (eql 'function))) + (when (and (legal-fun-name-p x) (fboundp x)) + (setf (documentation (or (macro-function x) (symbol-function x)) t) + new-value))) + +(defmethod (setf documentation) (new-value (x symbol) (doc-type (eql 'compiler-macro))) + (awhen (compiler-macro-function x) + (setf (documentation it t) new-value))) +(defmethod (setf documentation) (new-value (x symbol) (doc-type (eql 'setf))) + (setf (fdocumentation x 'setf) new-value)) + +;;; method combinations +(defmethod documentation ((x method-combination) (doc-type (eql 't))) + (slot-value x '%documentation)) + +(defmethod documentation + ((x method-combination) (doc-type (eql 'method-combination))) + (slot-value x '%documentation)) + +(defmethod documentation ((x symbol) (doc-type (eql 'method-combination))) + (random-documentation x 'method-combination)) + +(defmethod (setf documentation) + (new-value (x method-combination) (doc-type (eql 't))) + (setf (slot-value x '%documentation) new-value)) + +(defmethod (setf documentation) + (new-value (x method-combination) (doc-type (eql 'method-combination))) + (setf (slot-value x '%documentation) new-value)) + +(defmethod (setf documentation) + (new-value (x symbol) (doc-type (eql 'method-combination))) + (setf (random-documentation x 'method-combination) new-value)) + +;;; methods +(defmethod documentation ((x standard-method) (doc-type (eql 't))) + (slot-value x '%documentation)) + +(defmethod (setf documentation) + (new-value (x standard-method) (doc-type (eql 't))) + (setf (slot-value x '%documentation) new-value)) + ;;; packages + +;;; KLUDGE: It's nasty having things like this accessor +;;; (PACKAGE-DOC-STRING) floating around out in this mostly-unrelated +;;; source file. Perhaps it would be better to support WARM-INIT-FORMS +;;; by analogy with the existing !COLD-INIT-FORMS and have them be +;;; EVAL'ed after basic warm load is done? That way things like this +;;; could be defined alongside the other code which does low-level +;;; hacking of packages.. -- WHN 19991203 + (defmethod documentation ((x package) (doc-type (eql 't))) (package-doc-string x)) (defmethod (setf documentation) (new-value (x package) (doc-type (eql 't))) (setf (package-doc-string x) new-value)) -;;; KLUDGE: It's nasty having things like this accessor floating around -;;; out in this mostly-unrelated source file. Perhaps it would be -;;; better to support WARM-INIT-FORMS by analogy with the existing -;;; !COLD-INIT-FORMS and have them be EVAL'ed after basic warm load is -;;; done? That way things like this could be defined alongside the -;;; other code which does low-level hacking of packages.. -- WHN 19991203 - + ;;; types, classes, and structure names -(defmethod documentation ((x cl:structure-class) (doc-type (eql 't))) - (values (sb-int:info :type :documentation (cl:class-name x)))) - (defmethod documentation ((x structure-class) (doc-type (eql 't))) - (values (sb-int:info :type :documentation (class-name x)))) + (fdocumentation (class-name x) 'type)) -(defmethod documentation ((x cl:standard-class) (doc-type (eql 't))) - (or (values (sb-int:info :type :documentation (cl:class-name x))) - (let ((pcl-class (sb-kernel:class-pcl-class x))) - (and pcl-class (plist-value pcl-class 'documentation))))) +(defmethod documentation ((x structure-class) (doc-type (eql 'type))) + (fdocumentation (class-name x) 'type)) -(defmethod documentation ((x cl:structure-class) (doc-type (eql 'type))) - (values (sb-int:info :type :documentation (cl:class-name x)))) +(defmethod documentation ((x standard-class) (doc-type (eql 't))) + (slot-value x '%documentation)) -(defmethod documentation ((x structure-class) (doc-type (eql 'type))) - (values (sb-int:info :type :documentation (class-name x)))) +(defmethod documentation ((x standard-class) (doc-type (eql 'type))) + (slot-value x '%documentation)) + +;;; although the CLHS doesn't mention this, it is reasonable to assume +;;; that parallel treatment of condition-class was intended (if +;;; condition-class is in fact not implemented as a standard-class or +;;; structure-class). +(defmethod documentation ((x condition-class) (doc-type (eql 't))) + (fdocumentation (class-name x) 'type)) -(defmethod documentation ((x cl:standard-class) (doc-type (eql 'type))) - (or (values (sb-int:info :type :documentation (cl:class-name x))) - (let ((pcl-class (sb-kernel:class-pcl-class x))) - (and pcl-class (plist-value pcl-class 'documentation))))) +(defmethod documentation ((x condition-class) (doc-type (eql 'type))) + (fdocumentation (class-name x) 'type)) (defmethod documentation ((x symbol) (doc-type (eql 'type))) - (or (values (sb-int:info :type :documentation x)) + (or (fdocumentation x 'type) (let ((class (find-class x nil))) - (when class - (plist-value class 'documentation))))) + (when class + (slot-value class '%documentation))))) (defmethod documentation ((x symbol) (doc-type (eql 'structure))) - (when (eq (sb-int:info :type :kind x) :instance) - (values (sb-int:info :type :documentation x)))) + (fdocumentation x 'structure)) (defmethod (setf documentation) (new-value - (x cl:structure-class) - (doc-type (eql 't))) - (setf (sb-int:info :type :documentation (cl:class-name x)) new-value)) + (x structure-class) + (doc-type (eql 't))) + (setf (fdocumentation (class-name x) 'type) new-value)) (defmethod (setf documentation) (new-value - (x structure-class) - (doc-type (eql 't))) - (setf (sb-int:info :type :documentation (class-name x)) new-value)) + (x structure-class) + (doc-type (eql 'type))) + (setf (fdocumentation (class-name x) 'type) new-value)) (defmethod (setf documentation) (new-value - (x cl:structure-class) - (doc-type (eql 'type))) - (setf (sb-int:info :type :documentation (cl:class-name x)) new-value)) + (x standard-class) + (doc-type (eql 't))) + (setf (slot-value x '%documentation) new-value)) (defmethod (setf documentation) (new-value - (x structure-class) - (doc-type (eql 'type))) - (setf (sb-int:info :type :documentation (class-name x)) new-value)) + (x standard-class) + (doc-type (eql 'type))) + (setf (slot-value x '%documentation) new-value)) + +(defmethod (setf documentation) (new-value + (x condition-class) + (doc-type (eql 't))) + (setf (fdocumentation (class-name x) 'type) new-value)) + +(defmethod (setf documentation) (new-value + (x condition-class) + (doc-type (eql 'type))) + (setf (fdocumentation (class-name x) 'type) new-value)) (defmethod (setf documentation) (new-value (x symbol) (doc-type (eql 'type))) - (if (structure-type-p x) ; Catch structures first. - (setf (sb-int:info :type :documentation x) new-value) + (if (or (structure-type-p x) (condition-type-p x)) + (setf (fdocumentation x 'type) new-value) (let ((class (find-class x nil))) - (if class - (setf (plist-value class 'documentation) new-value) - (setf (sb-int:info :type :documentation x) new-value))))) + (if class + (setf (slot-value class '%documentation) new-value) + (setf (fdocumentation x 'type) new-value))))) (defmethod (setf documentation) (new-value - (x symbol) - (doc-type (eql 'structure))) - (unless (eq (sb-int:info :type :kind x) :instance) - (error "~S is not the name of a structure type." x)) - (setf (sb-int:info :type :documentation x) new-value)) - + (x symbol) + (doc-type (eql 'structure))) + (setf (fdocumentation x 'structure) new-value)) + ;;; variables (defmethod documentation ((x symbol) (doc-type (eql 'variable))) - (values (sb-int:info :variable :documentation x))) + (fdocumentation x 'variable)) (defmethod (setf documentation) (new-value - (x symbol) - (doc-type (eql 'variable))) - (setf (sb-int:info :variable :documentation x) new-value)) - -;;; miscellaneous documentation. Compiler-macro documentation is stored -;;; as random-documentation and handled here. -(defmethod documentation ((x symbol) (doc-type symbol)) - (cdr (assoc doc-type - (values (sb-int:info :random-documentation :stuff x))))) - -(defmethod (setf documentation) (new-value (x symbol) (doc-type symbol)) - (let ((pair (assoc doc-type (sb-int:info :random-documentation :stuff x)))) - (if pair - (setf (cdr pair) new-value) - (push (cons doc-type new-value) - (sb-int:info :random-documentation :stuff x)))) + (x symbol) + (doc-type (eql 'variable))) + (setf (fdocumentation x 'variable) new-value)) + +;;; default if DOC-TYPE doesn't match one of the specified types +(defmethod documentation (object doc-type) + (warn "unsupported DOCUMENTATION: type ~S for object of type ~S" + doc-type + (type-of object)) + nil) + +;;; default if DOC-TYPE doesn't match one of the specified types +(defmethod (setf documentation) (new-value object doc-type) + ;; CMU CL made this an error, but since ANSI says that even for supported + ;; doc types an implementation is permitted to discard docs at any time + ;; for any reason, this feels to me more like a warning. -- WHN 19991214 + (warn "discarding unsupported DOCUMENTATION of type ~S for object ~S" + doc-type + (type-of object)) new-value) -;;; FIXME: The ((X SYMBOL) (DOC-TYPE SYMBOL)) method and its setf method should -;;; have parallel versions which accept LIST-valued X arguments (for function -;;; names in the (SETF FOO) style). +;;; extra-standard methods, for getting at slot documentation +(defmethod documentation ((slotd standard-slot-definition) (doc-type (eql 't))) + (declare (ignore doc-type)) + (slot-value slotd '%documentation)) +(defmethod (setf documentation) + (new-value (slotd standard-slot-definition) (doc-type (eql 't))) + (declare (ignore doc-type)) + (setf (slot-value slotd '%documentation) new-value)) + ;;; Now that we have created the machinery for setting documentation, we can ;;; set the documentation for the machinery for setting documentation. #+sb-doc