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
)
33 (declaim (optimize (debug 2)))
38 (defparameter *available-instructions
* (make-hash-table :test
'equal
))
40 (defmacro define-instruction
(name (args-var env-var
) &body body
)
41 `(setf (get ',name
'xslt-instruction
)
42 (lambda (,args-var
,env-var
)
43 (declare (ignorable ,env-var
))
46 (define-instruction if
(args env
)
47 (destructuring-bind (test then
&optional else
) args
48 (let ((test-thunk (compile-xpath test env
))
49 (then-thunk (compile-instruction then env
))
50 (else-thunk (when else
(compile-instruction else env
))))
53 ((xpath:boolean-value
(funcall test-thunk ctx
))
54 (funcall then-thunk ctx
))
56 (funcall else-thunk ctx
)))))))
58 (define-instruction when
(args env
)
59 (destructuring-bind (test &rest body
) args
60 (compile-instruction `(if ,test
(progn ,@body
)) env
)))
62 (define-instruction unless
(args env
)
63 (destructuring-bind (test &rest body
) args
64 (compile-instruction `(if (:not
,test
) (progn ,@body
)) env
)))
66 (define-instruction cond
(args env
)
68 (destructuring-bind ((test &body body
) &rest clauses
) args
69 (compile-instruction (if (eq test t
)
77 (define-instruction progn
(args env
)
79 (let ((first-thunk (compile-instruction (first args
) env
))
80 (rest-thunk (compile-instruction `(progn ,@(rest args
)) env
)))
82 (funcall first-thunk ctx
)
83 (funcall rest-thunk ctx
)))
86 (defun decode-qname/runtime
(qname namespaces attributep
)
88 (multiple-value-bind (prefix local-name
)
91 (if (or prefix
(not attributep
))
92 (cdr (assoc prefix namespaces
:test
'equal
))
95 (cxml:well-formedness-violation
()
96 (xslt-error "not a qname: ~A" qname
))))
98 (define-instruction xsl
:element
(args env
)
99 (destructuring-bind ((name &key namespace use-attribute-sets
)
102 (declare (ignore use-attribute-sets
)) ;fixme
103 (multiple-value-bind (name-thunk constant-name-p
)
104 (compile-avt name env
)
105 (multiple-value-bind (ns-thunk constant-ns-p
)
107 (compile-avt namespace env
)
109 (let ((body-thunk (compile-instruction `(progn ,@body
) env
)))
110 (if (and constant-name-p constant-ns-p
)
111 (compile-element/constant-name name namespace env body-thunk
)
112 (compile-element/runtime name-thunk ns-thunk body-thunk
)))))))
114 (defun compile-element/constant-name
(qname namespace env body-thunk
)
115 ;; the simple case: compile-time decoding of the QName
116 (multiple-value-bind (local-name uri prefix
)
117 (decode-qname qname env nil
)
119 (setf uri namespace
))
123 (with-element (local-name uri
:suggested-prefix prefix
)
124 (funcall body-thunk ctx
)))
126 ;; ERROR rather than CERROR because saxon doesn't do the recovery,
127 ;; and the official output illustrates recovery but is useless as
129 (xslt-error "namespace not found: ~A" prefix
)
131 (let ((*start-tag-written-p
* t
))
132 (declare (special *start-tag-written-p
*))
133 (funcall body-thunk ctx
)))))))
135 (defun compile-element/runtime
(name-thunk ns-thunk body-thunk
)
136 ;; run-time decoding of the QName, but using the same namespaces
137 ;; that would have been known at compilation time.
138 (let ((namespaces *namespaces
*))
140 (let ((qname (funcall name-thunk ctx
)))
141 (multiple-value-bind (local-name uri prefix
)
142 (decode-qname/runtime qname namespaces nil
)
144 (setf uri
(funcall ns-thunk ctx
)))
147 (with-element (local-name uri
:suggested-prefix prefix
)
148 (funcall body-thunk ctx
)))))))
150 (define-instruction xsl
:use-attribute-sets
(args env
)
151 (destructuring-bind (str) args
152 (let ((sets (mapcar (lambda (qname)
153 (multiple-value-list (decode-qname qname env nil
)))
156 (loop for
(local-name uri nil
) in sets do
157 (dolist (thunk (find-attribute-set local-name uri
))
158 (funcall thunk ctx
)))))))
160 (define-instruction xsl
:attribute
(args env
)
161 (destructuring-bind ((name &key namespace
) &body body
) args
163 (xslt-error "xsl:attribute: name not specified"))
164 (multiple-value-bind (name-thunk constant-name-p
)
165 (compile-avt name env
)
166 (multiple-value-bind (ns-thunk constant-ns-p
)
168 (compile-avt namespace env
)
170 (let ((value-thunk (compile-instruction `(progn ,@body
) env
)))
171 (if (and constant-name-p constant-ns-p
)
172 (compile-attribute/constant-name name namespace env value-thunk
)
173 (compile-attribute/runtime name-thunk ns-thunk value-thunk
)))))))
175 (defun compile-attribute/constant-name
(qname namespace env value-thunk
)
176 ;; the simple case: compile-time decoding of the QName
177 (multiple-value-bind (local-name uri prefix
)
178 (decode-qname qname env t
)
180 (setf uri namespace
))
182 (write-attribute local-name
184 (with-toplevel-text-output-sink (s)
186 (funcall value-thunk ctx
)))
187 :suggested-prefix prefix
))))
189 (defun compile-attribute/runtime
(name-thunk ns-thunk value-thunk
)
190 ;; run-time decoding of the QName, but using the same namespaces
191 ;; that would have been known at compilation time.
192 (let ((namespaces *namespaces
*))
194 (let ((qname (funcall name-thunk ctx
)))
195 (multiple-value-bind (local-name uri prefix
)
196 (decode-qname/runtime qname namespaces t
)
198 (setf uri
(funcall ns-thunk ctx
)))
199 (write-attribute local-name
201 (with-toplevel-text-output-sink (s)
203 (funcall value-thunk ctx
)))
204 :suggested-prefix prefix
))))))
206 ;; zzz Also elides (later) namespaces hidden by (earlier) ones.
207 ;; zzz Reverses order.
208 (defun remove-excluded-namespaces
209 (namespaces &optional
(excluded-uris *excluded-namespaces
*))
210 (let ((koerbchen '())
213 for cons in namespaces
214 for
(prefix* . uri
) = cons
215 for prefix
= (or prefix
* "")
218 ((find prefix kroepfchen
:test
#'equal
))
219 ((find prefix koerbchen
:test
#'equal
:key
#'car
))
220 ((find uri excluded-uris
:test
#'equal
)
221 (push prefix kroepfchen
))
223 (push cons koerbchen
))))
226 (define-instruction xsl
:literal-element
(args env
)
228 ((local-name &optional
(uri "") suggested-prefix
) &body body
)
230 (let ((body-thunk (compile-instruction `(progn ,@body
) env
))
231 (namespaces (remove-excluded-namespaces *namespaces
*)))
233 (with-element (local-name (or uri
"")
234 :suggested-prefix suggested-prefix
235 :extra-namespaces namespaces
237 (funcall body-thunk ctx
))))))
239 (define-instruction xsl
:literal-attribute
(args env
)
240 (destructuring-bind ((local-name &optional uri suggested-prefix
) value
) args
241 (let ((value-thunk (compile-avt value env
)))
243 (write-attribute local-name
245 (funcall value-thunk ctx
)
247 :suggested-prefix suggested-prefix
)))))
249 (define-instruction xsl
:text
(args env
)
250 (destructuring-bind (str) args
252 (declare (ignore ctx
))
255 (define-instruction xsl
:unescaped-text
(args env
)
256 (destructuring-bind (str) args
258 (declare (ignore ctx
))
259 (write-unescaped str
))))
261 (define-instruction xsl
:processing-instruction
(args env
)
262 (destructuring-bind (name &rest body
) args
263 (let ((name-thunk (compile-avt name env
))
264 (value-thunk (compile-instruction `(progn ,@body
) env
)))
266 (write-processing-instruction
267 (funcall name-thunk ctx
)
268 (with-toplevel-text-output-sink (s)
270 (funcall value-thunk ctx
))))))))
272 (define-instruction xsl
:comment
(args env
)
273 (let ((value-thunk (compile-instruction `(progn ,@args
) env
)))
275 (write-comment (with-toplevel-text-output-sink (s)
277 (funcall value-thunk ctx
)))))))
279 (define-instruction xsl
:value-of
(args env
)
280 (destructuring-bind (xpath) args
281 (let ((thunk (compile-xpath xpath env
)))
284 (write-text (xpath:string-value
(funcall thunk ctx
))))
285 "value-of ~s = ~s" xpath
:result
))))
287 (define-instruction xsl
:unescaped-value-of
(args env
)
288 (destructuring-bind (xpath) args
289 (let ((thunk (compile-xpath xpath env
)))
291 (write-unescaped (xpath:string-value
(funcall thunk ctx
)))))))
293 (define-instruction xsl
:copy-of
(args env
)
294 (destructuring-bind (xpath) args
295 (let ((thunk (compile-xpath xpath env
))
296 ;; FIXME: what was this for? --david
297 #+(or) (v (intern-variable "varName" "")))
300 (let ((result (funcall thunk ctx
)))
302 (xpath:node-set
;; FIXME: variables can contain node sets w/fragments inside. Maybe just fragments would do?
303 (xpath:map-node-set
#'copy-into-result
(xpath:sort-node-set result
)))
304 (result-tree-fragment
305 (copy-into-result result
))
307 (write-text (xpath:string-value result
))))))
308 "copy-of ~s" xpath
))))
310 (defun copy-into-result (node)
312 ((result-tree-fragment-p node
)
313 (stp:do-children
(child (result-tree-fragment-node node
))
314 (copy-into-result child
)))
315 ((xpath-protocol:node-type-p node
:element
)
316 (with-element ((xpath-protocol:local-name node
)
317 (xpath-protocol:namespace-uri node
)
318 :suggested-prefix
(xpath-protocol:namespace-prefix node
)
319 :extra-namespaces
(namespaces-as-alist node
))
320 (map-pipe-eagerly #'copy-into-result
321 (xpath-protocol:attribute-pipe node
))
322 (map-pipe-eagerly #'copy-into-result
323 (xpath-protocol:child-pipe node
))))
324 ((xpath-protocol:node-type-p node
:document
)
325 (map-pipe-eagerly #'copy-into-result
326 (xpath-protocol:child-pipe node
)))
328 (copy-leaf-node node
))))
330 (defparameter *lower-first-order
*
331 #(#\
#\
! #\" #\
# #\$
#\%
#\
& #\' #\
( #\
) #\
* #\
+ #\
, #\-
#\.
#\
/ #\
0 #\
1 #\
2
332 #\
3 #\
4 #\
5 #\
6 #\
7 #\
8 #\
9 #\
: #\
; #\< #\= #\> #\? #\@ #\H #\J #\L #\N #\P
333 #\R
#\T
#\V
#\X
#\Z
#\\ #\^
#\
` #\b #\d
#\f #\h
#\j
#\l
#\n #\p
#\r #\t #\v
334 #\x
#\z
#\A
#\B
#\C
#\D
#\E
#\F
#\G
#\I
#\K
#\M
#\O
#\Q
#\S
#\U
#\W
#\Y
#\
[
335 #\
] #\_
#\a #\c
#\e
#\g
#\i
#\k
#\m
#\o
#\q
#\s
#\u
#\w
#\y
#\
{ #\|
#\
} #\~
338 (defparameter *upper-first-order
*
339 #(#\
#\
! #\" #\
# #\$
#\%
#\
& #\' #\
( #\
) #\
* #\
+ #\
, #\-
#\.
#\
/ #\
0 #\
1 #\
2
340 #\
3 #\
4 #\
5 #\
6 #\
7 #\
8 #\
9 #\
: #\
; #\< #\= #\> #\? #\@ #\G #\I #\K #\M #\O
341 #\Q
#\S
#\U
#\W
#\Y
#\
[ #\
] #\_
#\a #\c
#\e
#\g
#\i
#\k
#\m
#\o
#\q
#\s
#\u
342 #\w
#\y
#\A
#\B
#\C
#\D
#\E
#\F
#\H
#\J
#\L
#\N
#\P
#\R
#\T
#\V
#\X
#\Z
#\\
343 #\^
#\
` #\b #\d
#\f #\h
#\j
#\l
#\n #\p
#\r #\t #\v #\x
#\z
#\
{ #\|
#\
} #\~
346 (defun collation-char (char table
)
347 (let ((code (char-code char
)))
349 (elt table
(- code
32))
352 (defun make-collation-key (str table
)
353 (map 'string
(lambda (char) (collation-char char table
)) str
))
355 (defun mismatch* (a b
)
356 (let ((pos (mismatch a b
)))
357 (if (and pos
(< pos
(min (length a
) (length b
))))
361 (defun make-sorter (spec env
)
362 (destructuring-bind (&key select lang data-type order case-order
)
364 (declare (ignore lang
))
365 (let ((select-thunk (compile-xpath (or select
".") env
))
366 (numberp (equal data-type
"number"))
367 (f (if (equal order
"descending") -
1 1))
368 (char-table (if (equal case-order
"lower-first")
370 *upper-first-order
*)))
372 (let ((i (xpath:string-value
373 (funcall select-thunk
(xpath:make-context a
))))
374 (j (xpath:string-value
375 (funcall select-thunk
(xpath:make-context b
)))))
378 (let ((n-a (xpath:number-value i
))
379 (n-b (xpath:number-value j
)))
380 (cond ((and (xpath::nan-p n-a
)
381 (not (xpath::nan-p n-b
)))
383 ((and (not (xpath::nan-p n-a
))
386 ((xpath::compare-numbers
'< n-a n-b
) -
1)
387 ((xpath::compare-numbers
'> n-a n-b
) 1)
389 ;; zzz Unicode support!
391 (or (mismatch* (string-downcase i
) (string-downcase j
))
394 (let ((c (collation-char (elt i pos
) char-table
))
395 (d (collation-char (elt j pos
) char-table
)))
400 (signum (- (length i
) (length j
))))))))))))
402 (defun compose-sorters (sorters)
404 (let ((this (car sorters
))
405 (next (compose-sorters (rest sorters
))))
407 (let ((d (funcall this a b
)))
413 (defun make-sort-predicate (decls env
)
416 (mapcar (lambda (x) (make-sorter x env
)) decls
))))
418 (minusp (funcall sorter a b
)))))
420 (define-instruction xsl
:for-each
(args env
)
421 (destructuring-bind (select &optional decls
&rest body
) args
422 (unless (and (consp decls
)
423 (eq (car decls
) 'declare
))
426 (let ((select-thunk (compile-xpath select env
))
427 (body-thunk (compile-instruction `(progn ,@body
) env
))
430 (make-sort-predicate (cdr decls
) env
))))
432 (let ((selected (funcall select-thunk ctx
)))
433 (unless (xpath:node-set-p selected
)
434 (xslt-error "for-each select expression should yield a node-set"))
435 (let ((nodes (xpath::force
436 (xpath::sorted-pipe-of selected
))))
438 (setf nodes
(stable-sort (copy-list nodes
) sort-predicate
)))
440 with n
= (length nodes
)
445 (xpath:make-context node
(lambda () n
) i
)))))))))
447 (define-instruction xsl
:with-namespaces
(args env
)
448 (destructuring-bind ((&rest forms
) &rest body
) args
449 (let ((*namespaces
* *namespaces
*))
451 (destructuring-bind (prefix uri
) form
452 (push (cons prefix uri
) *namespaces
*)))
453 (compile-instruction `(progn ,@body
) env
))))
455 (define-instruction xsl
:with-excluded-namespaces
(args env
)
456 (destructuring-bind ((&rest uris
) &rest body
) args
457 (let ((*excluded-namespaces
* (append uris
*excluded-namespaces
*)))
458 (compile-instruction `(progn ,@body
) env
))))
460 (define-instruction xsl
:with-extension-namespaces
(args env
)
461 (destructuring-bind ((&rest uris
) &rest body
) args
462 (let ((*extension-namespaces
* (append uris
*extension-namespaces
*)))
463 (compile-instruction `(progn ,@body
) env
))))
465 ;; XSLT disallows multiple definitions of the same variable within a
466 ;; template. Local variables can shadow global variables though.
467 ;; Since our LET syntax makes it natural to shadow local variables the
468 ;; Lisp way, we check for duplicate variables only where instructed to
469 ;; by the XML syntax parser using WITH-DUPLICATES-CHECK:
470 (defvar *template-variables
* nil
)
472 (define-instruction xsl
:with-duplicates-check
(args env
)
473 (let ((*template-variables
* *template-variables
*))
474 (destructuring-bind ((&rest qnames
) &rest body
) args
475 (dolist (qname qnames
)
476 (multiple-value-bind (local-name uri
)
477 (decode-qname qname env nil
)
478 (let ((key (cons local-name uri
)))
479 (when (find key
*template-variables
* :test
#'equal
)
480 (xslt-error "duplicate variable: ~A, ~A" local-name uri
))
481 (push key
*template-variables
*))))
482 (compile-instruction `(progn ,@body
) env
))))
484 (define-instruction xsl
:with-base-uri
(args env
)
485 (destructuring-bind (uri &rest body
) args
486 (let ((*instruction-base-uri
* uri
))
487 (compile-instruction `(progn ,@body
) env
))))
489 (defstruct (result-tree-fragment
490 (:constructor make-result-tree-fragment
(node)))
493 (define-default-method xpath-protocol
:node-p
494 ((node result-tree-fragment
))
497 (define-default-method xpath-protocol
:node-text
498 ((node result-tree-fragment
))
499 (xpath-protocol:node-text
(result-tree-fragment-node node
)))
501 (defun apply-to-result-tree-fragment (ctx thunk
)
503 (with-xml-output (make-stpx-builder)
504 (with-element ("fragment" "")
505 (funcall thunk ctx
)))))
506 (make-result-tree-fragment (stp:document-element document
))))
508 (define-instruction let
(args env
)
509 (destructuring-bind ((&rest forms
) &rest body
) args
510 (let* ((old-top (length *lexical-variable-declarations
*))
511 (vars-and-names (compile-var-bindings/nointern forms env
))
513 (loop for
((local-name . uri
) thunk
) in vars-and-names
515 (list (push-variable local-name
517 *lexical-variable-declarations
*)
519 (let ((thunk (compile-instruction `(progn ,@body
) env
)))
520 (fill *lexical-variable-declarations
* nil
:start old-top
)
522 (loop for
(index var-thunk
) in vars-and-positions
523 do
(setf (lexical-variable-value index
)
524 (funcall var-thunk ctx
)))
525 (funcall thunk ctx
))))))
527 (define-instruction let
* (args env
)
528 (destructuring-bind ((&rest forms
) &rest body
) args
530 (compile-instruction `(let (,(car forms
))
531 (let* (,@(cdr forms
))
534 (compile-instruction `(progn ,@body
) env
))))
536 (define-instruction xsl
:message
(args env
)
537 (compile-message #'warn args env
))
539 (define-instruction xsl
:terminate
(args env
)
540 (compile-message #'error args env
))
542 (defun namespaces-as-alist (element)
543 (let ((namespaces '()))
544 (do-pipe (ns (xpath-protocol:namespace-pipe element
))
545 (push (cons (xpath-protocol:local-name ns
)
546 (xpath-protocol:node-text ns
))
550 (define-instruction xsl
:copy
(args env
)
551 (let ((body (compile-instruction `(progn ,@args
) env
)))
553 (let ((node (xpath:context-node ctx
)))
555 ((xpath-protocol:node-type-p node
:element
)
557 ((xpath-protocol:local-name node
)
558 (xpath-protocol:namespace-uri node
)
559 :suggested-prefix
(xpath-protocol:namespace-prefix node
)
560 :extra-namespaces
(namespaces-as-alist node
))
562 ((xpath-protocol:node-type-p node
:document
)
565 (copy-leaf-node node
)))))))
567 (defun copy-leaf-node (node)
569 ((xpath-protocol:node-type-p node
:text
)
570 (etypecase (if (typep node
'stripping-node
)
571 (stripping-node-target node
)
573 (unescaped-text (write-unescaped (xpath-protocol:node-text node
)))
574 (stp:text
(write-text (xpath-protocol:node-text node
)))))
575 ((xpath-protocol:node-type-p node
:comment
)
576 (write-comment (xpath-protocol:node-text node
)))
577 ((xpath-protocol:node-type-p node
:processing-instruction
)
578 (write-processing-instruction
579 (xpath-protocol:processing-instruction-target node
)
580 (xpath-protocol:node-text node
)))
581 ((xpath-protocol:node-type-p node
:attribute
)
583 (xpath-protocol:local-name node
)
584 (xpath-protocol:namespace-uri node
)
585 (xpath-protocol:node-text node
)
586 :suggested-prefix
(xpath-protocol:namespace-prefix node
)))
587 ((xpath-protocol:node-type-p node
:namespace
)
588 (write-extra-namespace
589 (xpath-protocol:local-name node
)
590 (xpath-protocol:node-text node
)
593 (error "don't know how to copy node ~A" node
))))
595 (defun compile-message (fn args env
)
596 (let ((thunk (compile-instruction `(progn ,@args
) env
)))
599 (with-xml-output (cxml:make-string-sink
)
600 (funcall thunk ctx
))))))
602 (define-instruction xsl
:apply-templates
(args env
)
603 (destructuring-bind ((&key select mode
) &rest param-binding-specs
) args
605 (when (and (consp (car param-binding-specs
))
606 (eq (caar param-binding-specs
) 'declare
))
607 (cdr (pop param-binding-specs
))))
609 (compile-xpath (or select
"child::node()") env
))
611 (compile-var-bindings param-binding-specs env
))
614 (make-sort-predicate decls env
))))
615 (multiple-value-bind (mode-local-name mode-uri
)
616 (and mode
(decode-qname mode env nil
))
618 (apply-templates/list
620 (xpath::sorted-pipe-of
(funcall select-thunk ctx
)))
622 (loop for
(name nil value-thunk
) in param-bindings
623 collect
(list name
(funcall value-thunk ctx
)))
624 :sort-predicate sort-predicate
626 (or (find-mode *stylesheet
*
631 (define-instruction xsl
:apply-imports
(args env
)
632 (declare (ignore args env
))
634 (declare (ignore ctx
))
635 (funcall *apply-imports
*)))
637 (define-instruction xsl
:call-template
(args env
)
638 (destructuring-bind (name &rest param-binding-specs
) args
639 (let ((param-bindings
640 (compile-var-bindings param-binding-specs env
)))
641 (multiple-value-bind (local-name uri
)
642 (decode-qname name env nil
)
643 (setf name
(cons local-name uri
)))
645 (call-template ctx name
646 (loop for
(name nil value-thunk
) in param-bindings
647 collect
(list name
(funcall value-thunk ctx
))))))))
649 ;; fixme: incompatible with XSLT 2.0
650 (define-instruction xsl
:document
(args env
)
651 (destructuring-bind ((href &key method indent doctype-public doctype-system
)
654 (declare (ignore doctype-public doctype-system
)) ;fixme
655 (let ((thunk (compile-instruction `(progn ,@body
) env
))
656 (href-thunk (compile-avt href env
)))
660 (puri:merge-uris
(funcall href-thunk ctx
)
661 (xpath-protocol:base-uri
662 (xpath:context-node ctx
))))))
663 (ensure-directories-exist pathname
) ;really?
664 (invoke-with-output-sink
667 (make-output-specification :method
(or method
"XML") :indent indent
)
670 (defun compile-instruction (form env
)
672 (funcall (or (get (car form
) 'xslt-instruction
)
673 (error "undefined instruction: ~A" (car form
)))
676 "instruction ~s" (car form
)))
678 ;;: WTF: "A right curly brace inside a Literal in an expression is not
679 ;;; recognized as terminating the expression."
681 ;;; Da hilft nur tagbody.
682 (defun parse-attribute-value-template (template-string)
683 (with-input-from-string (input template-string
)
684 (let ((ordinary (make-string-output-stream))
685 (xpath (make-string-output-stream))
687 (c (read-char input nil
:eof
)))
689 (let ((o (get-output-stream-string ordinary
)))
690 (when (plusp (length o
))
691 (push (list :data o
) tokens
)))
692 (let ((x (get-output-stream-string xpath
)))
693 (when (plusp (length x
))
694 (push (list :xpath x
) tokens
))))
696 (write-char c ordinary
))
698 (write-char c xpath
)))
699 (macrolet ((goto (target)
701 (setf c
(read-char input nil
:eof
))
722 (goto in-single-quote
))
724 (xslt-error "unexpected end of avt")))
733 (goto in-single-quote
))
736 (goto in-double-quote
))
738 (goto seen-closing-
}))
740 (xslt-error "unexpected end of avt")))
750 (xslt-error "unexpected end of avt")))
752 (goto in-single-quote
)
760 (xslt-error "unexpected end of avt")))
762 (goto in-double-quote
)
783 (xslt-error "unexpected closing brace in avt")
789 (defun compile-avt (template-string env
)
795 (constantly (second x
)))
798 (compile-xpath (second x
) env
))))
799 (parse-attribute-value-template template-string
))))
800 (values (lambda (ctx)
801 (with-output-to-string (s)
803 (write-string (xpath:string-value
(funcall fn ctx
)) s
))))
807 ;;;; Indentation for slime
809 (defmacro define-indentation
(name (&rest args
))
810 (labels ((collect-variables (list)
816 (collect-variables sub
))
818 (if (eql (mismatch "&" (symbol-name sub
)) 1)
821 `(defmacro ,name
(,@args
)
822 (declare (ignorable ,@(collect-variables args
)))
823 (error "XSL indentation helper ~A used literally in lisp code"
826 (define-indentation xsl
:element
827 ((name &key namespace use-attribute-sets
) &body body
))
828 (define-indentation xsl
:literal-element
((name &optional uri
) &body body
))
829 (define-indentation xsl
:attribute
((name &key namespace
) &body body
))
830 (define-indentation xsl
:literal-attribute
((name &optional uri
) &body body
))
831 (define-indentation xsl
:text
(str))
832 (define-indentation xsl
:processing-instruction
(name &body body
))
833 (define-indentation xsl
:comment
(&body body
))
834 (define-indentation xsl
:value-of
(xpath))
835 (define-indentation xsl
:unescaped-value-of
(xpath))
836 (define-indentation xsl
:for-each
(select &body decls-and-body
))
837 (define-indentation xsl
:message
(&body body
))
838 (define-indentation xsl
:terminate
(&body body
))
839 (define-indentation xsl
:apply-templates
((&key select mode
) &body decls-and-body
))
840 (define-indentation xsl
:call-template
(name &rest parameters
))
841 (define-indentation xsl
:copy-of
(xpath))
845 (defun test-instruction (form document
)
846 (let ((thunk (compile-instruction form
(make-instance 'lexical-environment
)))
847 (root (cxml:parse document
(stp:make-builder
))))
848 (with-xml-output (cxml:make-string-sink
)
849 (funcall thunk
(xpath:make-context root
)))))