-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwalk.lisp
281 lines (220 loc) · 7.89 KB
/
walk.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
;;;; -*- Mode: Lisp -*-
;;;; walk.lisp --
;;;; Setup for walking (or "visiting" an AST). Actually a MAP-REDUCE scheme.
;;;;
;;;; See file COPYING in main folder for licensing and copyright information.
(in-package "CLAST")
;; (deftype walking-direction () '(member :breadth :depth))
;;;;===========================================================================
;;;; Protocol
(defgeneric map-subforms (form func &key result-type &allow-other-keys)
(:documentation "Maps the function FUNC over the sub-forms of FORM.
A sequence of type RESULT-TYPE is returned (as per MAP). The mapping
is not recursive. Only the 'sequence' of subforms is mapped over.
"))
(defgeneric walk (clast-element &rest keys
&key
key ; #'identity
result-type
map-fun
reduce-fun
initial-value
environment
op-first
&allow-other-keys)
(:documentation "The 'visiting' engine used to traverse a form.
The WALK generic function methods recursively traverse the tree
corresponding to a form (i.e., CLAST-ELEMENT) using a map/reduce
scheme.
The function MAP-FUN is applied to each (sub)form and their respective
subforms are WALKed over. WALK uses MAP-SUBFORMS internally,
therefore it generates sequences (of type RESULT-TYPE) as output. Once
the traversing of subforms is completed the function REDUCE-FUN is
applied, via REDUCE to the resulting sequence.
")
)
;;;;===========================================================================
;;;; map-subforms methods.
(defmethod map-subforms ((ce form) func
&key
(result-type 'list)
&allow-other-keys)
(map result-type func (clast-element-subforms ce)))
(defmethod map-subforms ((ce let-form) func
&key
(result-type 'list)
&allow-other-keys)
(map result-type func
(nconc (mapcar #'second (form-binds ce))
(form-progn ce))))
(defmethod map-subforms ((ce let*-form) func
&key
(result-type 'list)
&allow-other-keys)
(map result-type func
(nconc (mapcar #'second (form-binds ce))
(form-progn ce))))
(defmethod map-subforms ((ce loop-clause) func
&key
(result-type 'list)
&allow-other-keys)
(map result-type func
(loop-clause-subclauses ce))
)
;;;;===========================================================================
;;;; Generic walker infrastructure.
#|
(defmethod walk ((ce form)
&rest keys
&key
(result-type 'list)
(key #'identity)
((:map mapfun) (lambda (e) (list (funcall key e))))
((:reduce redfun) #'append)
(initial-value ())
environment
op-first ; boolean
&allow-other-keys)
(declare (ignore environment))
(let ((subforms-results
(reduce redfun
(map-subforms ce mapfun :result-type result-type)
:initial-value initial-value))
)
(if op-first
(concatenate result-type (funcall mapfun ce) subforms-results)
(concatenate result-type subforms-results (funcall mapfun ce))
)))
|#
(defmethod walk ((ce form)
&rest keys
&key
(result-type 'list)
(key #'identity)
((:map mapfun) (lambda (e) (list (funcall key e))))
((:reduce redfun) #'append)
(initial-value ())
environment
op-first ; boolean
&allow-other-keys)
(declare (ignore environment))
(let ((subforms-results
(reduce redfun
(map-subforms ce
(lambda (f)
(apply #'walk f keys))
:result-type result-type)
:initial-value initial-value))
)
(if op-first
(concatenate result-type (funcall mapfun ce) subforms-results)
(concatenate result-type subforms-results (funcall mapfun ce))
)))
(defmethod walk ((ce t_lambda-list)
&rest keys
&key
(result-type 'list)
;; (key #'identity)
;; ((:map mapfun) (lambda (e) (list (funcall key e))))
;; ((:reduce redfun) #'append)
;; (initial-value ())
environment
;; op-first ; boolean
&allow-other-keys)
(declare (ignore environment keys))
(when (plusp (count-lambda-list-vars ce))
(warn "CLAST: lambda list walking not yet implemented; lambda list ~A."
ce))
(concatenate result-type ())
)
(defmethod walk ((ce t)
&rest keys
&key
(result-type 'list)
;; (key #'identity)
;; ((:map mapfun) (lambda (e) (list (funcall key e))))
;; ((:reduce redfun) #'append)
;; (initial-value ())
environment
;; op-first ; boolean
&allow-other-keys)
(declare (ignore environment keys))
(warn "CLAST: walking a form for which no structure is yet known: ~A."
ce)
(concatenate result-type ())
)
;;;;---------------------------------------------------------------------------
;;;; Queries...
(defun variables (form)
"Returns all variables present in FORM.
Arguments and Values:
form : a CLAST-ELEMENT.
result : a LIST of SYMBOLS."
(walk form
:map (lambda (e)
(typecase e
(variable-ref (list (form-symbol e)))))
))
(defun bound-variables (form)
"Returns all bound variables present in FORM.
Arguments and Values:
form : a CLAST-ELEMENT.
result : a LIST of SYMBOLS."
(walk form
:map (lambda (e)
(typecase e
(free-variable-ref ())
(variable-ref (list (form-symbol e)))))
))
(defun special-variables (form)
"Returns all the special variables present in FORM.
Arguments and Values:
form : a CLAST-ELEMENT.
result : a LIST of SYMBOLS."
(walk form
:map (lambda (e)
(typecase e
(special-variable-ref (list (form-symbol e)))))
))
(defun free-variables (form) ; Ok. All this work to be able to write
; this function!!!!
"Returns all the 'free' variables present in FORM.
Arguments and Values:
form : a CLAST-ELEMENT.
result : a LIST of SYMBOLS."
(walk form
:map (lambda (e)
(typecase e
(free-variable-ref (list (form-symbol e)))))
))
(defun functions (form)
"Returns all the functions called in FORM.
Arguments and Values:
form : a CLAST-ELEMENT.
result : a LIST of SYMBOLS."
(walk form
:map (lambda (e)
(typecase e
(function-name-ref (list (form-symbol e)))))
))
(defun macros (form)
"Returns all the macros called in FORM.
Arguments and Values:
form : a CLAST-ELEMENT.
result : a LIST of SYMBOLS."
(walk form
:map (lambda (e)
(typecase e
(macro-name-ref (list (form-symbol e)))))
))
(defun symbol-macros (form)
"Returns all the symbol-macros present in FORM.
Arguments and Values:
form : a CLAST-ELEMENT.
result : a LIST of SYMBOLS."
(walk form
:map (lambda (e)
(typecase e
(symbol-macro-ref (list (form-symbol e)))))
))
;;;; end of file -- walk.lisp --