system-property()
[xuriella.git] / instructions.lisp
blobef2cf25fbfa0eeb9672ddd678379583367e2307b
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
8 ;;; are met:
9 ;;;
10 ;;; * Redistributions of source code must retain the above copyright
11 ;;; notice, this list of conditions and the following disclaimer.
12 ;;;
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.
17 ;;;
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 #+sbcl
33 (declaim (optimize (debug 2)))
36 ;;;; Instructions
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))
44 ,@body)))
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))))
51 (lambda (ctx)
52 (cond
53 ((xpath:boolean-value (funcall test-thunk ctx))
54 (funcall then-thunk ctx))
55 (else-thunk
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)
67 (if args
68 (destructuring-bind ((test &body body) &rest clauses) args
69 (compile-instruction (if (eq test t)
70 `(progn ,@body)
71 `(if ,test
72 (progn ,@body)
73 (cond ,@clauses)))
74 env))
75 (constantly nil)))
77 (define-instruction progn (args env)
78 (if args
79 (let ((first-thunk (compile-instruction (first args) env))
80 (rest-thunk (compile-instruction `(progn ,@(rest args)) env)))
81 (lambda (ctx)
82 (funcall first-thunk ctx)
83 (funcall rest-thunk ctx)))
84 (constantly nil)))
86 (defun decode-qname/runtime (qname namespaces attributep)
87 (handler-case
88 (multiple-value-bind (prefix local-name)
89 (split-qname qname)
90 (values local-name
91 (if (or prefix (not attributep))
92 (cdr (assoc prefix namespaces :test 'equal))
93 "")
94 prefix))
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)
100 &body body)
101 args
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)
106 (if namespace
107 (compile-avt namespace env)
108 (values nil t))
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)
118 (when namespace
119 (setf uri namespace))
120 (lambda (ctx)
121 (cond
122 (uri
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
128 ;; always.
129 (xslt-error "namespace not found: ~A" prefix)
130 #+(or)
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*))
139 (lambda (ctx)
140 (let ((qname (funcall name-thunk ctx)))
141 (multiple-value-bind (local-name uri prefix)
142 (decode-qname/runtime qname namespaces nil)
143 (when ns-thunk
144 (setf uri (funcall ns-thunk ctx)))
145 (unless uri
146 (setf uri ""))
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)))
154 (words str))))
155 (lambda (ctx)
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
162 (when (null name)
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)
167 (if namespace
168 (compile-avt namespace env)
169 (values nil t))
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)
179 (when namespace
180 (setf uri namespace))
181 (lambda (ctx)
182 (write-attribute local-name
183 (or uri "")
184 (with-toplevel-text-output-sink (s)
185 (with-xml-output 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*))
193 (lambda (ctx)
194 (let ((qname (funcall name-thunk ctx)))
195 (multiple-value-bind (local-name uri prefix)
196 (decode-qname/runtime qname namespaces t)
197 (when ns-thunk
198 (setf uri (funcall ns-thunk ctx)))
199 (write-attribute local-name
200 (or uri "")
201 (with-toplevel-text-output-sink (s)
202 (with-xml-output 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 '())
211 (kroepfchen '()))
212 (loop
213 for cons in namespaces
214 for (prefix* . uri) = cons
215 for prefix = (or prefix* "")
217 (cond
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))))
224 koerbchen))
226 (define-instruction xsl:literal-element (args env)
227 (destructuring-bind
228 ((local-name &optional (uri "") suggested-prefix) &body body)
229 args
230 (let ((body-thunk (compile-instruction `(progn ,@body) env))
231 (namespaces (remove-excluded-namespaces *namespaces*)))
232 (lambda (ctx)
233 (with-element (local-name (or uri "")
234 :suggested-prefix suggested-prefix
235 :extra-namespaces namespaces
236 :process-aliases t)
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)))
242 (lambda (ctx)
243 (write-attribute local-name
245 (funcall value-thunk ctx)
246 :process-aliases t
247 :suggested-prefix suggested-prefix)))))
249 (define-instruction xsl:text (args env)
250 (destructuring-bind (str) args
251 (lambda (ctx)
252 (declare (ignore ctx))
253 (write-text str))))
255 (define-instruction xsl:unescaped-text (args env)
256 (destructuring-bind (str) args
257 (lambda (ctx)
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)))
265 (lambda (ctx)
266 (write-processing-instruction
267 (funcall name-thunk ctx)
268 (with-toplevel-text-output-sink (s)
269 (with-xml-output s
270 (funcall value-thunk ctx))))))))
272 (define-instruction xsl:comment (args env)
273 (let ((value-thunk (compile-instruction `(progn ,@args) env)))
274 (lambda (ctx)
275 (write-comment (with-toplevel-text-output-sink (s)
276 (with-xml-output 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)))
282 (xslt-trace-thunk
283 (lambda (ctx)
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)))
290 (lambda (ctx)
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" "")))
298 (xslt-trace-thunk
299 (lambda (ctx)
300 (let ((result (funcall thunk ctx)))
301 (typecase result
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)
311 (cond
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 (defun make-sorter (spec env)
331 (destructuring-bind (&key select lang data-type order case-order)
332 (cdr spec)
333 ;; FIXME: implement case-order
334 (declare (ignore lang case-order))
335 (let ((select-thunk (compile-xpath (or select ".") env))
336 (numberp (equal data-type "number"))
337 (f (if (equal order "descending") -1 1)))
338 (lambda (a b)
339 (let ((i (xpath:string-value
340 (funcall select-thunk (xpath:make-context a))))
341 (j (xpath:string-value
342 (funcall select-thunk (xpath:make-context b)))))
343 (* f
344 (if numberp
345 (let ((n-a (xpath:number-value i))
346 (n-b (xpath:number-value j)))
347 (cond ((and (xpath::nan-p a)
348 (not (xpath::nan-p b)))
350 ((and (not (xpath::nan-p a))
351 (xpath::nan-p b))
353 ((xpath::compare-numbers '< n-a n-b) -1)
354 ((xpath::compare-numbers '> n-a n-b) 1)
355 (t 0)))
356 (cond
357 ((string< i j) -1)
358 ((equal i j) 0)
359 (t 1)))))))))
361 (defun compose-sorters (sorters)
362 (if sorters
363 (let ((this (car sorters))
364 (next (compose-sorters (rest sorters))))
365 (lambda (a b)
366 (let ((d (funcall this a b)))
367 (if (zerop d)
368 (funcall next a b)
369 d))))
370 (constantly 0)))
372 (defun make-sort-predicate (decls env)
373 (let ((sorter
374 (compose-sorters
375 (mapcar (lambda (x) (make-sorter x env)) decls))))
376 (lambda (a b)
377 (minusp (funcall sorter a b)))))
379 (define-instruction xsl:for-each (args env)
380 (destructuring-bind (select &optional decls &rest body) args
381 (unless (and (consp decls)
382 (eq (car decls) 'declare))
383 (push decls body)
384 (setf decls nil))
385 (let ((select-thunk (compile-xpath select env))
386 (body-thunk (compile-instruction `(progn ,@body) env))
387 (sort-predicate
388 (when (cdr decls)
389 (make-sort-predicate (cdr decls) env))))
390 (lambda (ctx)
391 (let ((selected (funcall select-thunk ctx)))
392 (unless (xpath:node-set-p selected)
393 (xslt-error "for-each select expression should yield a node-set"))
394 (let ((nodes (xpath::force
395 (xpath::sorted-pipe-of selected))))
396 (when sort-predicate
397 (setf nodes (sort (copy-list nodes) sort-predicate)))
398 (loop
399 with n = (length nodes)
400 for node in nodes
401 for i from 1
403 (funcall body-thunk
404 (xpath:make-context node (lambda () n) i)))))))))
406 (define-instruction xsl:with-namespaces (args env)
407 (destructuring-bind ((&rest forms) &rest body) args
408 (let ((*namespaces* *namespaces*))
409 (dolist (form forms)
410 (destructuring-bind (prefix uri) form
411 (push (cons prefix uri) *namespaces*)))
412 (compile-instruction `(progn ,@body) env))))
414 (define-instruction xsl:with-excluded-namespaces (args env)
415 (destructuring-bind ((&rest uris) &rest body) args
416 (let ((*excluded-namespaces* (append uris *excluded-namespaces*)))
417 (compile-instruction `(progn ,@body) env))))
419 (define-instruction xsl:with-extension-namespaces (args env)
420 (destructuring-bind ((&rest uris) &rest body) args
421 (let ((*extension-namespaces* (append uris *extension-namespaces*)))
422 (compile-instruction `(progn ,@body) env))))
424 ;; XSLT disallows multiple definitions of the same variable within a
425 ;; template. Local variables can shadow global variables though.
426 ;; Since our LET syntax makes it natural to shadow local variables the
427 ;; Lisp way, we check for duplicate variables only where instructed to
428 ;; by the XML syntax parser using WITH-DUPLICATES-CHECK:
429 (defvar *template-variables* nil)
431 (define-instruction xsl:with-duplicates-check (args env)
432 (let ((*template-variables* *template-variables*))
433 (destructuring-bind ((&rest qnames) &rest body) args
434 (dolist (qname qnames)
435 (multiple-value-bind (local-name uri)
436 (decode-qname qname env nil)
437 (let ((key (cons local-name uri)))
438 (when (find key *template-variables* :test #'equal)
439 (xslt-error "duplicate variable: ~A, ~A" local-name uri))
440 (push key *template-variables*))))
441 (compile-instruction `(progn ,@body) env))))
443 (define-instruction xsl:with-base-uri (args env)
444 (destructuring-bind (uri &rest body) args
445 (let ((*instruction-base-uri* uri))
446 (compile-instruction `(progn ,@body) env))))
448 (defstruct (result-tree-fragment
449 (:constructor make-result-tree-fragment (node)))
450 node)
452 (define-default-method xpath-protocol:node-p
453 ((node result-tree-fragment))
456 (define-default-method xpath-protocol:node-text
457 ((node result-tree-fragment))
458 (xpath-protocol:node-text (result-tree-fragment-node node)))
460 (defun apply-to-result-tree-fragment (ctx thunk)
461 (let ((document
462 (with-xml-output (make-stpx-builder)
463 (with-element ("fragment" "")
464 (funcall thunk ctx)))))
465 (make-result-tree-fragment (stp:document-element document))))
467 (define-instruction let (args env)
468 (destructuring-bind ((&rest forms) &rest body) args
469 (let* ((old-top (length *lexical-variable-declarations*))
470 (vars-and-names (compile-var-bindings/nointern forms env))
471 (vars-and-positions
472 (loop for ((local-name . uri) thunk) in vars-and-names
473 collect
474 (list (push-variable local-name
476 *lexical-variable-declarations*)
477 thunk))))
478 (let ((thunk (compile-instruction `(progn ,@body) env)))
479 (fill *lexical-variable-declarations* nil :start old-top)
480 (lambda (ctx)
481 (loop for (index var-thunk) in vars-and-positions
482 do (setf (lexical-variable-value index)
483 (funcall var-thunk ctx)))
484 (funcall thunk ctx))))))
486 (define-instruction let* (args env)
487 (destructuring-bind ((&rest forms) &rest body) args
488 (if forms
489 (compile-instruction `(let (,(car forms))
490 (let* (,@(cdr forms))
491 ,@body))
492 env)
493 (compile-instruction `(progn ,@body) env))))
495 (define-instruction xsl:message (args env)
496 (compile-message #'warn args env))
498 (define-instruction xsl:terminate (args env)
499 (compile-message #'error args env))
501 (defun namespaces-as-alist (element)
502 (let ((namespaces '()))
503 (do-pipe (ns (xpath-protocol:namespace-pipe element))
504 (push (cons (xpath-protocol:local-name ns)
505 (xpath-protocol:node-text ns))
506 namespaces))
507 namespaces))
509 (define-instruction xsl:copy (args env)
510 (let ((body (compile-instruction `(progn ,@args) env)))
511 (lambda (ctx)
512 (let ((node (xpath:context-node ctx)))
513 (cond
514 ((xpath-protocol:node-type-p node :element)
515 (with-element
516 ((xpath-protocol:local-name node)
517 (xpath-protocol:namespace-uri node)
518 :suggested-prefix (xpath-protocol:namespace-prefix node)
519 :extra-namespaces (namespaces-as-alist node))
520 (funcall body ctx)))
521 ((xpath-protocol:node-type-p node :document)
522 (funcall body ctx))
524 (copy-leaf-node node)))))))
526 (defun copy-leaf-node (node)
527 (cond
528 ((xpath-protocol:node-type-p node :text)
529 (etypecase (if (typep node 'stripping-node)
530 (stripping-node-target node)
531 node)
532 (unescaped-text (write-unescaped (xpath-protocol:node-text node)))
533 (stp:text (write-text (xpath-protocol:node-text node)))))
534 ((xpath-protocol:node-type-p node :comment)
535 (write-comment (xpath-protocol:node-text node)))
536 ((xpath-protocol:node-type-p node :processing-instruction)
537 (write-processing-instruction
538 (xpath-protocol:processing-instruction-target node)
539 (xpath-protocol:node-text node)))
540 ((xpath-protocol:node-type-p node :attribute)
541 (write-attribute
542 (xpath-protocol:local-name node)
543 (xpath-protocol:namespace-uri node)
544 (xpath-protocol:node-text node)
545 :suggested-prefix (xpath-protocol:namespace-prefix node)))
546 ((xpath-protocol:node-type-p node :namespace)
547 (write-extra-namespace
548 (xpath-protocol:local-name node)
549 (xpath-protocol:node-text node)
550 nil))
552 (error "don't know how to copy node ~A" node))))
554 (defun compile-message (fn args env)
555 (let ((thunk (compile-instruction `(progn ,@args) env)))
556 (lambda (ctx)
557 (funcall fn
558 (with-xml-output (cxml:make-string-sink)
559 (funcall thunk ctx))))))
561 (define-instruction xsl:apply-templates (args env)
562 (destructuring-bind ((&key select mode) &rest param-binding-specs) args
563 (let* ((decls
564 (when (and (consp (car param-binding-specs))
565 (eq (caar param-binding-specs) 'declare))
566 (cdr (pop param-binding-specs))))
567 (select-thunk
568 (compile-xpath (or select "child::node()") env))
569 (param-bindings
570 (compile-var-bindings param-binding-specs env))
571 (sort-predicate
572 (when decls
573 (make-sort-predicate decls env))))
574 (multiple-value-bind (mode-local-name mode-uri)
575 (and mode (decode-qname mode env nil))
576 (lambda (ctx)
577 (apply-templates/list
578 (xpath::force
579 (xpath::sorted-pipe-of (funcall select-thunk ctx)))
580 :param-bindings
581 (loop for (name nil value-thunk) in param-bindings
582 collect (list name (funcall value-thunk ctx)))
583 :sort-predicate sort-predicate
584 :mode (when mode
585 (or (find-mode *stylesheet*
586 mode-local-name
587 mode-uri)
588 *empty-mode*))))))))
590 (define-instruction xsl:apply-imports (args env)
591 (declare (ignore args env))
592 (lambda (ctx)
593 (declare (ignore ctx))
594 (funcall *apply-imports*)))
596 (define-instruction xsl:call-template (args env)
597 (destructuring-bind (name &rest param-binding-specs) args
598 (let ((param-bindings
599 (compile-var-bindings param-binding-specs env)))
600 (multiple-value-bind (local-name uri)
601 (decode-qname name env nil)
602 (setf name (cons local-name uri)))
603 (lambda (ctx)
604 (call-template ctx name
605 (loop for (name nil value-thunk) in param-bindings
606 collect (list name (funcall value-thunk ctx))))))))
608 ;; fixme: incompatible with XSLT 2.0
609 (define-instruction xsl:document (args env)
610 (destructuring-bind ((href &key method indent doctype-public doctype-system)
611 &body body)
612 args
613 (declare (ignore doctype-public doctype-system)) ;fixme
614 (let ((thunk (compile-instruction `(progn ,@body) env))
615 (href-thunk (compile-avt href env)))
616 (lambda (ctx)
617 (let ((pathname
618 (uri-to-pathname
619 (puri:merge-uris (funcall href-thunk ctx)
620 (xpath-protocol:base-uri
621 (xpath:context-node ctx))))))
622 (ensure-directories-exist pathname) ;really?
623 (invoke-with-output-sink
624 (lambda ()
625 (funcall thunk ctx))
626 (make-output-specification :method (or method "XML") :indent indent)
627 pathname))))))
629 (defun compile-instruction (form env)
630 (xslt-trace-thunk
631 (funcall (or (get (car form) 'xslt-instruction)
632 (error "undefined instruction: ~A" (car form)))
633 (cdr form)
634 env)
635 "instruction ~s" (car form)))
637 ;;: WTF: "A right curly brace inside a Literal in an expression is not
638 ;;; recognized as terminating the expression."
640 ;;; Da hilft nur tagbody.
641 (defun parse-attribute-value-template (template-string)
642 (with-input-from-string (input template-string)
643 (let ((ordinary (make-string-output-stream))
644 (xpath (make-string-output-stream))
645 (tokens '())
646 (c (read-char input nil :eof)))
647 (flet ((emit ()
648 (let ((o (get-output-stream-string ordinary)))
649 (when (plusp (length o))
650 (push (list :data o) tokens)))
651 (let ((x (get-output-stream-string xpath)))
652 (when (plusp (length x))
653 (push (list :xpath x) tokens))))
654 (collect-ordinary ()
655 (write-char c ordinary))
656 (collect-xpath ()
657 (write-char c xpath)))
658 (macrolet ((goto (target)
659 `(progn
660 (setf c (read-char input nil :eof))
661 (go ,target))))
662 (tagbody
663 ordinary
664 (case c
665 (#\{
666 (goto seen{))
667 (#\}
668 (goto seen-stray-}))
669 (:eof
670 (go done)))
671 (collect-ordinary)
672 (goto ordinary)
674 seen{
675 (case c
676 (#\{
677 (collect-ordinary)
678 (goto ordinary))
679 (#\'
680 (collect-xpath)
681 (goto in-single-quote))
682 (:eof
683 (xslt-error "unexpected end of avt")))
684 (emit)
685 (collect-xpath)
686 (goto xpath)
688 xpath
689 (case c
690 (#\'
691 (collect-xpath)
692 (goto in-single-quote))
693 (#\"
694 (collect-xpath)
695 (goto in-double-quote))
696 (#\}
697 (goto seen-closing-}))
698 (:eof
699 (xslt-error "unexpected end of avt")))
700 (collect-xpath)
701 (goto xpath)
703 in-single-quote
704 (case c
705 (#\'
706 (collect-xpath)
707 (goto xpath))
708 (:eof
709 (xslt-error "unexpected end of avt")))
710 (collect-xpath)
711 (goto in-single-quote)
713 in-double-quote
714 (case c
715 (#\"
716 (collect-xpath)
717 (goto xpath))
718 (:eof
719 (xslt-error "unexpected end of avt")))
720 (collect-xpath)
721 (goto in-double-quote)
723 seen-closing-}
724 (case c
725 (#\}
726 (collect-xpath)
727 (goto xpath))
728 (#\{
729 (emit)
730 (goto xpath))
731 (:eof
732 (goto done)))
733 (emit)
734 (collect-ordinary)
735 (goto ordinary)
737 seen-stray-}
738 (case c
739 (#\}
740 (collect-ordinary)
741 (goto ordinary)))
742 (xslt-error "unexpected closing brace in avt")
744 done
745 (emit))))
746 (nreverse tokens))))
748 (defun compile-avt (template-string env)
749 (let* ((constantp t)
750 (fns
751 (mapcar (lambda (x)
752 (ecase (car x)
753 (:data
754 (constantly (second x)))
755 (:xpath
756 (setf constantp nil)
757 (compile-xpath (second x) env))))
758 (parse-attribute-value-template template-string))))
759 (values (lambda (ctx)
760 (with-output-to-string (s)
761 (dolist (fn fns)
762 (write-string (xpath:string-value (funcall fn ctx)) s))))
763 constantp)))
766 ;;;; Indentation for slime
768 (defmacro define-indentation (name (&rest args))
769 (labels ((collect-variables (list)
770 (loop
771 for sub in list
772 append
773 (etypecase sub
774 (list
775 (collect-variables sub))
776 (symbol
777 (if (eql (mismatch "&" (symbol-name sub)) 1)
779 (list sub)))))))
780 `(defmacro ,name (,@args)
781 (declare (ignorable ,@(collect-variables args)))
782 (error "XSL indentation helper ~A used literally in lisp code"
783 ',name))))
785 (define-indentation xsl:element
786 ((name &key namespace use-attribute-sets) &body body))
787 (define-indentation xsl:literal-element ((name &optional uri) &body body))
788 (define-indentation xsl:attribute ((name &key namespace) &body body))
789 (define-indentation xsl:literal-attribute ((name &optional uri) &body body))
790 (define-indentation xsl:text (str))
791 (define-indentation xsl:processing-instruction (name &body body))
792 (define-indentation xsl:comment (&body body))
793 (define-indentation xsl:value-of (xpath))
794 (define-indentation xsl:unescaped-value-of (xpath))
795 (define-indentation xsl:for-each (select &body decls-and-body))
796 (define-indentation xsl:message (&body body))
797 (define-indentation xsl:terminate (&body body))
798 (define-indentation xsl:apply-templates ((&key select mode) &body decls-and-body))
799 (define-indentation xsl:call-template (name &rest parameters))
800 (define-indentation xsl:copy-of (xpath))
802 ;;;;
804 (defun test-instruction (form document)
805 (let ((thunk (compile-instruction form (make-instance 'lexical-environment)))
806 (root (cxml:parse document (stp:make-builder))))
807 (with-xml-output (cxml:make-string-sink)
808 (funcall thunk (xpath:make-context root)))))