1 | ;;; read-circle.lisp |
---|
2 | ;;; |
---|
3 | ;;; Copyright (C) 2009 Erik Huelsmann |
---|
4 | ;;; $Id: read-circle.lisp 13601 2011-09-19 20:50:37Z ehuelsmann $ |
---|
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 | |
---|
35 | ;;; Reading circular data: the #= and ## reader macros (from SBCL) |
---|
36 | |
---|
37 | ;;; Objects already seen by CIRCLE-SUBST. |
---|
38 | (defvar *sharp-equal-circle-table*) |
---|
39 | |
---|
40 | ;; This function is kind of like NSUBLIS, but checks for circularities and |
---|
41 | ;; substitutes in arrays and structures as well as lists. The first arg is an |
---|
42 | ;; alist of the things to be replaced assoc'd with the things to replace them. |
---|
43 | (defun circle-subst (old-new-alist tree) |
---|
44 | (macrolet ((recursable-element-p (subtree) |
---|
45 | `(typep ,subtree |
---|
46 | '(or cons (array t) structure-object standard-object))) |
---|
47 | (element-replacement (subtree) |
---|
48 | `(let ((entry (find ,subtree old-new-alist :key #'second))) |
---|
49 | (if entry (third entry) ,subtree)))) |
---|
50 | (cond ((not (recursable-element-p tree)) |
---|
51 | (element-replacement tree)) |
---|
52 | ((null (gethash tree *sharp-equal-circle-table*)) |
---|
53 | (cond |
---|
54 | ((typep tree 'structure-object) |
---|
55 | (setf (gethash tree *sharp-equal-circle-table*) t) |
---|
56 | (do ((i 0 (1+ i)) |
---|
57 | (end (structure-length tree))) |
---|
58 | ((= i end)) |
---|
59 | (let* ((old (structure-ref tree i)) |
---|
60 | (new (circle-subst old-new-alist old))) |
---|
61 | (unless (eq old new) |
---|
62 | (structure-set tree i new))))) |
---|
63 | ;; ((typep tree 'standard-object) |
---|
64 | ;; (setf (gethash tree *sharp-equal-circle-table*) t) |
---|
65 | ;; (do ((i 1 (1+ i)) |
---|
66 | ;; (end (%instance-length tree))) |
---|
67 | ;; ((= i end)) |
---|
68 | ;; (let* ((old (%instance-ref tree i)) |
---|
69 | ;; (new (circle-subst old-new-alist old))) |
---|
70 | ;; (unless (eq old new) |
---|
71 | ;; (setf (%instance-ref tree i) new))))) |
---|
72 | ((arrayp tree) |
---|
73 | (setf (gethash tree *sharp-equal-circle-table*) t) |
---|
74 | (do ((i 0 (1+ i)) |
---|
75 | (end (array-total-size tree))) |
---|
76 | ((>= i end)) |
---|
77 | (let* ((old (row-major-aref tree i)) |
---|
78 | (new (circle-subst old-new-alist old))) |
---|
79 | (unless (eq old new) |
---|
80 | (setf (row-major-aref tree i) new))))) |
---|
81 | (t ;; being CONSP as all the other cases have been handled |
---|
82 | (do ((subtree tree (cdr subtree))) |
---|
83 | ((or (not (consp subtree)) |
---|
84 | (gethash subtree *sharp-equal-circle-table*))) |
---|
85 | ;; CDR no longer a CONS; no need to recurse any further: |
---|
86 | ;; the case where the CDR is a symbol to be replaced |
---|
87 | ;; has been handled in the last iteration |
---|
88 | (setf (gethash subtree *sharp-equal-circle-table*) t) |
---|
89 | (let* ((c (car subtree)) |
---|
90 | (d (cdr subtree)) |
---|
91 | (a (if (recursable-element-p c) |
---|
92 | (circle-subst old-new-alist c) |
---|
93 | (element-replacement c))) |
---|
94 | (b (cond |
---|
95 | ((consp d) d) ;; CONSes handled in the loop |
---|
96 | ((recursable-element-p d) |
---|
97 | ;; ARRAY, STRUCTURE-OBJECT and STANDARD-OBJECT |
---|
98 | ;; handled in recursive calls |
---|
99 | (circle-subst old-new-alist d)) |
---|
100 | (t |
---|
101 | (element-replacement d))))) |
---|
102 | (unless (eq a c) |
---|
103 | (rplaca subtree a)) |
---|
104 | (unless (eq d b) |
---|
105 | (rplacd subtree b)))))) |
---|
106 | tree) |
---|
107 | (t tree)))) |
---|
108 | |
---|
109 | ;;; Sharp-equal works as follows. When a label is assigned (i.e. when |
---|
110 | ;;; #= is called) we GENSYM a symbol is which is used as an |
---|
111 | ;;; unforgeable tag. *SHARP-SHARP-ALIST* maps the integer tag to this |
---|
112 | ;;; gensym. |
---|
113 | ;;; |
---|
114 | ;;; When SHARP-SHARP encounters a reference to a label, it returns the |
---|
115 | ;;; symbol assoc'd with the label. Resolution of the reference is |
---|
116 | ;;; deferred until the read done by #= finishes. Any already resolved |
---|
117 | ;;; tags (in *SHARP-EQUAL-ALIST*) are simply returned. |
---|
118 | ;;; |
---|
119 | ;;; After reading of the #= form is completed, we add an entry to |
---|
120 | ;;; *SHARP-EQUAL-ALIST* that maps the gensym tag to the resolved |
---|
121 | ;;; object. Then for each entry in the *SHARP-SHARP-ALIST, the current |
---|
122 | ;;; object is searched and any uses of the gensysm token are replaced |
---|
123 | ;;; with the actual value. |
---|
124 | |
---|
125 | (defvar *sharp-sharp-alist* ()) |
---|
126 | |
---|
127 | (defun sharp-equal (stream label readtable) |
---|
128 | (when *read-suppress* (return-from sharp-equal (values))) |
---|
129 | (unless label |
---|
130 | (error 'reader-error |
---|
131 | :stream stream |
---|
132 | :format-control "Missing label for #=")) |
---|
133 | (when (or (assoc label *sharp-sharp-alist*) |
---|
134 | (assoc label *sharp-equal-alist*)) |
---|
135 | (error 'reader-error |
---|
136 | :stream stream |
---|
137 | :format-control "Multiply defined label: #~D=" |
---|
138 | :format-arguments (list label))) |
---|
139 | (let* ((tag (gensym)) |
---|
140 | (*sharp-sharp-alist* (cons (list label tag nil) *sharp-sharp-alist*)) |
---|
141 | (obj (let ((*readtable* readtable)) |
---|
142 | (read stream t nil t)))) |
---|
143 | (when (eq obj tag) |
---|
144 | (error 'reader-error |
---|
145 | :stream stream |
---|
146 | :format-control "Must tag something more than just #~D#" |
---|
147 | :format-arguments (list label))) |
---|
148 | (push (list label tag obj) *sharp-equal-alist*) |
---|
149 | (when (third (car *sharp-sharp-alist*)) ;; set to T on circularity |
---|
150 | (let ((*sharp-equal-circle-table* (make-hash-table :test 'eq :size 20))) |
---|
151 | (circle-subst *sharp-equal-alist* obj))) |
---|
152 | obj)) |
---|
153 | |
---|
154 | () |
---|
155 | |
---|
156 | (defun sharp-sharp (stream ignore label) |
---|
157 | (declare (ignore ignore)) |
---|
158 | (when *read-suppress* (return-from sharp-sharp nil)) |
---|
159 | (unless label |
---|
160 | (error 'reader-error :stream stream :format-control "Missing label for ##")) |
---|
161 | (let ((entry (assoc label *sharp-equal-alist*))) |
---|
162 | (if entry |
---|
163 | (third entry) |
---|
164 | (let ((pair (assoc label *sharp-sharp-alist*))) |
---|
165 | (unless pair |
---|
166 | (error 'reader-error |
---|
167 | :stream stream |
---|
168 | :format-control "Object is not labelled #~S#" |
---|
169 | :format-arguments (list label))) |
---|
170 | (setf (third pair) t) |
---|
171 | (second pair))))) |
---|
172 | |
---|
173 | (set-dispatch-macro-character #\# #\= #'(lambda (stream ignore label) |
---|
174 | (declare (ignore ignore)) |
---|
175 | (sharp-equal stream label |
---|
176 | *readtable*)) |
---|
177 | +standard-readtable+) |
---|
178 | (set-dispatch-macro-character #\# #\# #'sharp-sharp +standard-readtable+) |
---|
179 | |
---|
180 | (set-dispatch-macro-character #\# #\= #'(lambda (stream ignore label) |
---|
181 | (declare (ignore ignore)) |
---|
182 | (sharp-equal stream label |
---|
183 | (get-fasl-readtable))) |
---|
184 | (get-fasl-readtable)) |
---|
185 | (set-dispatch-macro-character #\# #\# #'sharp-sharp (get-fasl-readtable)) |
---|
186 | |
---|