1 ;;; -*- show-trailing-whitespace: t; indent-tabs-mode: nil -*-
3 ;;; Copyright (c) 2007,2008 David Lichteblau, Ivan Shvedunov.
4 ;;; All rights reserved.
6 ;;; Redistribution and use in source and binary forms, with or without
7 ;;; modification, are permitted provided that the following conditions
10 ;;; * Redistributions of source code must retain the above copyright
11 ;;; notice, this list of conditions and the following disclaimer.
13 ;;; * Redistributions in binary form must reproduce the above
14 ;;; copyright notice, this list of conditions and the following
15 ;;; disclaimer in the documentation and/or other materials
16 ;;; provided with the distribution.
18 ;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
19 ;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 ;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 ;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
22 ;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 ;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
24 ;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 ;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 ;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 ;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 ;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 (in-package :xuriella
)
32 (defun map-namespace-declarations (fn element
)
33 (let ((parent (stp:parent element
)))
34 (maphash (lambda (prefix uri
)
35 (unless (and (typep parent
'stp
:element
)
36 (equal (stp:find-namespace prefix parent
) uri
))
37 (funcall fn prefix uri
)))
38 (cxml-stp-impl::collect-local-namespaces element
))))
40 (defun maybe-wrap-namespaces (child exprs
)
41 (if (typep child
'stp
:element
)
44 (map-namespace-declarations (lambda (prefix uri
)
45 (push (list prefix uri
) bindings
))
47 (stp:with-attributes
((erp "exclude-result-prefixes" *xsl
*))
49 (dolist (prefix (words (or erp
"")))
50 (when (equal prefix
"#default")
52 (push (or (stp:find-namespace prefix child
)
53 (xslt-error "namespace not found: ~A" prefix
))
55 (if (or bindings excluded-uris
)
56 `((xsl:with-namespaces
,bindings
57 (xsl:with-excluded-namespaces
,excluded-uris
62 (defun parse-body (node &optional
(start 0) (param-names '()))
63 (let ((n (stp:count-children-if
#'identity node
)))
66 (let ((child (stp:nth-child i node
)))
67 (if (namep child
"variable")
68 (maybe-wrap-namespaces
70 (only-with-attributes (name select
) child
71 (when (and select
(stp:list-children child
))
72 (xslt-error "variable with select and body"))
73 `((let ((,name
,(or select
74 `(progn ,@(parse-body child
)))))
75 (xsl:with-duplicates-check
(,name
)
76 ,@(recurse (1+ i
)))))))
77 (append (maybe-wrap-namespaces
79 (list (parse-instruction child
)))
80 (recurse (1+ i
))))))))
81 (let ((result (recurse start
)))
83 `((xsl:with-duplicates-check
(,@param-names
)
87 (defun parse-param (node)
89 (only-with-attributes (name select
) node
91 (xslt-error "name not specified for parameter"))
92 (when (and select
(stp:list-children node
))
93 (xslt-error "param with select and body"))
96 `(progn ,@(parse-body node
))))))
98 (defun parse-instruction (node)
103 ((equal (stp:namespace-uri node
) *xsl
*)
104 (let ((sym (find-symbol (stp:local-name node
) :xuriella
)))
107 (parse-instruction/xsl-element sym node
))
108 (*forwards-compatible-p
*
109 (parse-fallback-children node
))
111 (xslt-error "undefined instruction: ~A"
112 (stp:local-name node
))))))
113 ((find (stp:namespace-uri node
)
114 *extension-namespaces
*
116 (parse-fallback-children node
))
118 (parse-instruction/literal-element node
))))
119 (parent (stp:parent node
)))
120 (if (and (equal (stp:base-uri node
) (stp:base-uri parent
))
121 (equal (stp:namespace-uri parent
) *xsl
*)
122 (find-symbol (stp:local-name parent
) :xuriella
))
124 `(xsl:with-base-uri
,(stp:base-uri node
)
127 `(xsl:text
,(stp:data node
)))))
129 (defun parse-instruction/literal-element
(node)
131 `(xsl:literal-element
132 (,(stp:local-name node
)
133 ,(stp:namespace-uri node
)
134 ,(stp:namespace-prefix node
))
135 (xsl:use-attribute-sets
136 ,(stp:attribute-value node
"use-attribute-sets" *xsl
*))
138 for a in
(stp:list-attributes node
)
139 for xslp
= (equal (stp:namespace-uri a
) *xsl
*)
141 do
(unless (find (stp:local-name a
)
143 "extension-element-prefixes"
144 "exclude-result-prefixes"
145 "use-attribute-sets")
148 "unknown attribute on literal result element: ~A"
151 collect
`(xsl:literal-attribute
153 ,(stp:namespace-uri a
)
154 ,(stp:namespace-prefix a
))
156 ,@(parse-body node
)))
157 (version (stp:attribute-value node
"version" *xsl
*))
159 (stp:with-attributes
((eep "extension-element-prefixes" *xsl
*))
161 (dolist (prefix (words (or eep
"")))
162 (when (equal prefix
"#default")
164 (push (or (stp:find-namespace prefix node
)
165 (xslt-error "namespace not found: ~A" prefix
))
169 `(xsl:with-extension-namespaces
,extensions
170 (xsl:with-excluded-namespaces
,extensions
174 `(xsl:with-version
,version
178 (defun parse-fallback-children (node)
181 for fallback in
(stp:filter-children
(of-name "fallback") node
)
182 append
(parse-body fallback
))))
187 "no fallback children in unknown element using forwards compatible processing")))))
189 (defmacro define-instruction-parser
(name (node-var) &body body
)
191 (setf (gethash ,(symbol-name name
) *available-instructions
*) t
)
192 (defmethod parse-instruction/xsl-element
193 ((.name.
(eql ',name
)) ,node-var
)
194 (declare (ignore .name.
))
197 (define-instruction-parser |fallback|
(node)
198 (only-with-attributes () node
201 (define-instruction-parser |apply-templates|
(node)
202 (only-with-attributes (select mode
) node
203 (multiple-value-bind (decls rest
)
206 for cons on
(stp:filter-children
208 (or (typep node
'stp
:element
)
209 (xslt-error "non-element in apply-templates")))
211 for
(child . nil
) = cons
212 while
(namep child
"sort")
213 collect
(parse-sort child
) into decls
214 finally
(return (values decls cons
)))
215 `(xsl:apply-templates
216 (:select
,select
:mode
,mode
)
218 ,@(mapcar (lambda (clause)
219 (unless (namep clause
"with-param")
220 (xslt-error "undefined instruction: ~A"
221 (stp:local-name clause
)))
222 (parse-param clause
))
225 (define-instruction-parser |apply-imports|
(node)
226 (only-with-attributes () node
)
227 (assert-no-body node
)
228 `(xsl:apply-imports
))
230 (define-instruction-parser |call-template|
(node)
231 (only-with-attributes (name) node
233 ,name
,@(stp:map-children
'list
235 (if (namep clause
"with-param")
237 (xslt-error "undefined instruction: ~A"
238 (stp:local-name clause
))))
241 (define-instruction-parser |if|
(node)
242 (only-with-attributes (test) node
244 ,@(parse-body node
))))
246 (define-instruction-parser |choose|
(node)
247 (only-with-attributes () node
249 ,@(stp:map-children
'list
252 ((namep clause
"when")
253 (only-with-attributes (test) clause
255 ,@(parse-body clause
))))
256 ((namep clause
"otherwise")
257 `(t ,@(parse-body clause
)))
259 (xslt-error "invalid <choose> clause: ~A"
260 (stp:local-name clause
)))))
263 (define-instruction-parser |element|
(node)
264 (only-with-attributes (name namespace use-attribute-sets
) node
265 `(xsl:element
(,name
:namespace
,namespace
)
266 (xsl:use-attribute-sets
,use-attribute-sets
)
267 ,@(parse-body node
))))
269 (define-instruction-parser |attribute|
(node)
270 (only-with-attributes (name namespace
) node
271 `(xsl:attribute
(,name
:namespace
,namespace
)
272 ,@(parse-body node
))))
274 (define-instruction-parser |text|
(node)
275 (only-with-attributes (select disable-output-escaping
) node
276 (when (xpath:evaluate
"boolean(*)" node
)
277 (xslt-error "non-text found in xsl:text"))
278 (if (equal disable-output-escaping
"yes")
279 `(xsl:unescaped-text
,(stp:string-value node
))
280 `(xsl:text
,(stp:string-value node
)))))
282 (define-instruction-parser |comment|
(node)
283 (only-with-attributes () node
284 `(xsl:comment
,@(parse-body node
))))
286 (define-instruction-parser |processing-instruction|
(node)
287 (only-with-attributes (name) node
288 `(xsl:processing-instruction
,name
289 ,@(parse-body node
))))
291 (defun assert-no-body (node)
292 (when (stp:list-children node
)
293 (xslt-error "no child nodes expected in ~A" (stp:local-name node
))))
295 (define-instruction-parser |value-of|
(node)
296 (only-with-attributes (select disable-output-escaping
) node
297 (assert-no-body node
)
298 (if (equal disable-output-escaping
"yes")
299 `(xsl:unescaped-value-of
,select
)
300 `(xsl:value-of
,select
))))
302 (define-instruction-parser |copy-of|
(node)
303 (only-with-attributes (select) node
304 (assert-no-body node
)
305 `(xsl:copy-of
,select
)))
307 (define-instruction-parser |copy|
(node)
308 (only-with-attributes (use-attribute-sets) node
310 (xsl:use-attribute-sets
,use-attribute-sets
)
311 ,@(parse-body node
))))
313 (define-instruction-parser |variable|
(node)
314 (xslt-error "unhandled xsl:variable"))
316 (define-instruction-parser |for-each|
(node)
317 (only-with-attributes (select) node
318 (multiple-value-bind (decls body-position
)
321 for child in
(stp:list-children node
)
322 while
(namep child
"sort")
323 collect
(parse-sort child
) into decls
324 finally
(return (values decls i
)))
325 `(xsl:for-each
,select
327 ,@(parse-body node body-position
)))))
329 (defun parse-sort (node)
330 (only-with-attributes (select lang data-type order case-order
) node
331 (assert-no-body node
)
332 `(sort :select
,select
334 :data-type
,data-type
336 :case-order
,case-order
)))
338 (define-instruction-parser |message|
(node)
339 (only-with-attributes (terminate) node
340 (if (equal terminate
"yes")
341 `(xsl:terminate
,@(parse-body node
))
342 `(xsl:message
,@(parse-body node
)))))
344 (define-instruction-parser |number|
(node)
345 (only-with-attributes (level count from value format lang letter-value
346 grouping-separator grouping-size
)
348 (assert-no-body node
)
349 `(xsl:number
:level
,level
355 :letter-value
,letter-value
356 :grouping-separator
,grouping-separator
357 :grouping-size
,grouping-size
)))
359 (define-instruction-parser |document|
(node)
360 (only-with-attributes
361 (href method indent doctype-public doctype-system
) node
362 `(xsl:document
(,href
:method
,method
364 :doctype-public
,doctype-public
365 :doctype-system
,doctype-system
)
366 ,@(parse-body node
))))