source: branches/0.18.x/abcl/src/org/armedbear/lisp/print-object.lisp

Last change on this file was 12382, checked in by vvoutilainen, 14 years ago

Backport r12376-r12379 and r12381. This fixes maxima,
adds support for disassembling proxied functions, and
adds fixes to printing java objects.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.2 KB
Line 
1;;; print-object.lisp
2;;;
3;;; Copyright (C) 2003-2006 Peter Graves
4;;; $Id: print-object.lisp 12382 2010-01-17 20:53:21Z vvoutilainen $
5;;;
6;;; This program is free software; you can redistribute it and/or
7;;; modify it under the terms of the GNU General Public License
8;;; as published by the Free Software Foundation; either version 2
9;;; of the License, or (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with this program; if not, write to the Free Software
18;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19;;;
20;;; As a special exception, the copyright holders of this library give you
21;;; permission to link this library with independent modules to produce an
22;;; executable, regardless of the license terms of these independent
23;;; modules, and to copy and distribute the resulting executable under
24;;; terms of your choice, provided that you also meet, for each linked
25;;; independent module, the terms and conditions of the license of that
26;;; module.  An independent module is a module which is not derived from
27;;; or based on this library.  If you modify this library, you may extend
28;;; this exception to your version of the library, but you are not
29;;; obligated to do so.  If you do not wish to do so, delete this
30;;; exception statement from your version.
31
32(in-package #:system)
33
34(require 'clos)
35(require 'java)
36
37(when (autoloadp 'print-object)
38  (fmakunbound 'print-object))
39
40(defgeneric print-object (object stream))
41
42(defmethod print-object ((object t) stream)
43  (print-unreadable-object (object stream :type t :identity t)))
44
45(defmethod print-object ((object structure-object) stream)
46  (write-string (%write-to-string object) stream))
47
48(defmethod print-object ((object standard-object) stream)
49  (print-unreadable-object (object stream :identity t)
50    (format stream "~S" (class-name (class-of object))))
51  object)
52
53(defmethod print-object ((obj java:java-object) stream)
54  (write-string (%write-to-string obj) stream))
55
56(defmethod print-object ((class java:java-class) stream)
57  (write-string (%write-to-string class) stream))
58
59(defmethod print-object ((class class) stream)
60  (print-unreadable-object (class stream :identity t)
61    (format stream "~S ~S"
62            (class-name (class-of class))
63            (class-name class)))
64  class)
65
66(defmethod print-object ((gf standard-generic-function) stream)
67  (print-unreadable-object (gf stream :identity t)
68    (format stream "~S ~S"
69            (class-name (class-of gf))
70            (%generic-function-name gf)))
71  gf)
72
73(defmethod print-object ((method standard-method) stream)
74  (print-unreadable-object (method stream :identity t)
75    (format stream "~S ~S~{ ~S~} ~S"
76            (class-name (class-of method))
77            (%generic-function-name
78             (%method-generic-function method))
79            (method-qualifiers method)
80            (mapcar #'(lambda (c)
81                        (if (typep c 'mop::eql-specializer)
82                            `(eql ,(mop::eql-specializer-object c))
83                          (class-name c)))
84                    (%method-specializers method))))
85  method)
86
87(defmethod print-object ((restart restart) stream)
88  (if *print-escape*
89      (print-unreadable-object (restart stream :type t :identity t)
90        (prin1 (restart-name restart) stream))
91      (restart-report restart stream)))
92
93(defmethod print-object ((c condition) stream)
94  (if *print-escape*
95      (call-next-method)
96      (if (slot-boundp c 'format-control)
97          (apply #'format stream
98                 (simple-condition-format-control c)
99                 (simple-condition-format-arguments c))
100          (call-next-method))))
101
102(defmethod print-object ((c type-error) stream)
103  (if *print-escape*
104      (call-next-method)
105      (if (slot-boundp c 'format-control)
106          (apply 'format stream
107                 (simple-condition-format-control c)
108                 (simple-condition-format-arguments c))
109          (format stream "The value ~S is not of type ~S."
110                  (type-error-datum c)
111                  (type-error-expected-type c)))))
112
113(defmethod print-object ((x undefined-function) stream)
114  (if *print-escape*
115      (call-next-method)
116      (format stream "The function ~S is undefined." (cell-error-name x))))
117
118(defmethod print-object ((x unbound-variable) stream)
119  (if *print-escape*
120      (print-unreadable-object (x stream :identity t)
121        (format stream "~S ~S"
122                (type-of x)
123                (cell-error-name x)))
124      (format stream "The variable ~S is unbound." (cell-error-name x))))
125
126(defmethod print-object ((e java:java-exception) stream)
127  (if *print-escape*
128      (print-unreadable-object (e stream :type t :identity t)
129        (format stream "~A"
130                (java:jcall (java:jmethod "java.lang.Object" "toString")
131                            (java:java-exception-cause e))))
132      (format stream "Java exception '~A'."
133              (java:jcall (java:jmethod "java.lang.Object" "toString")
134                          (java:java-exception-cause e)))))
135
136(provide 'print-object)
Note: See TracBrowser for help on using the repository browser.