1 ;;; -*- show-trailing-whitespace: t; indent-tabs-mode: nil -*-
3 ;;; Copyright (c) 2007,2008 David Lichteblau, Ivan Shvedunov.
4 ;;; Copyright (c) 2004 David Lichteblau (for headcraft.de)
5 ;;; All rights reserved.
7 ;;; Redistribution and use in source and binary forms, with or without
8 ;;; modification, are permitted provided that the following conditions
11 ;;; * Redistributions of source code must retain the above copyright
12 ;;; notice, this list of conditions and the following disclaimer.
14 ;;; * Redistributions in binary form must reproduce the above
15 ;;; copyright notice, this list of conditions and the following
16 ;;; disclaimer in the documentation and/or other materials
17 ;;; provided with the distribution.
19 ;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
20 ;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 ;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 ;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
23 ;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 ;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
25 ;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 ;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 ;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 ;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 ;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 (in-package :xuriella
)
34 ;;; Convenience functions for serialization to SAX, similar in syntax
35 ;;; to what cxml offers, but with namespace handling as required for XSLT.
37 (defvar *current-element
*)
39 (defvar *start-tag-written-p
*)
41 (defmacro with-xml-output
(sink &body body
)
42 `(invoke-with-xml-output (lambda () ,@body
) ,sink
))
44 (defmacro with-output-sink-bound
((var) &body body
)
45 `(invoke-with-output-sink-bound (lambda (,var
) ,@body
)))
47 (defun invoke-with-xml-output (fn sink
)
49 (*current-element
* nil
)
50 (*start-tag-written-p
* t
))
51 (sax:start-document
*sink
*)
53 (sax:end-document
*sink
*)))
55 (defun invoke-with-output-sink-bound (fn)
56 (maybe-emit-start-tag)
59 (defmacro with-element
60 ((local-name uri
&key suggested-prefix extra-namespaces process-aliases
)
62 `(invoke-with-element (lambda () ,@body
)
65 :suggested-prefix
,suggested-prefix
66 :extra-namespaces
,extra-namespaces
67 :process-aliases
,process-aliases
))
69 (defun doctype (name public-id system-id
&optional internal-subset
)
70 (sax:start-dtd
*sink
* name public-id system-id
)
72 (sax:unparsed-internal-subset
*sink
* internal-subset
))
75 (defun maybe-emit-start-tag ()
76 (let ((elt *current-element
*))
77 (when (and elt
(not *start-tag-written-p
*))
78 (setf *start-tag-written-p
* t
)
79 (let* ((local-name (sink-element-local-name elt
))
80 (uri (sink-element-uri elt
))
81 (suggested-prefix (sink-element-suggested-prefix elt
))
82 (prefix (ensure-prefix-for-uri elt uri suggested-prefix
))
83 (qname (if (plusp (length prefix
))
84 (concatenate 'string prefix
":" local-name
)
87 (setf (sink-element-actual-qname elt
) qname
)
88 (dolist (attr (sink-element-attributes elt
))
89 (push (convert-attribute elt attr
) attrs
))
91 for
(prefix . uri
) in
(sink-element-new-namespaces elt
) do
92 (sax:start-prefix-mapping
*sink
* prefix uri
)
93 (push (make-xmlns-attribute prefix uri
) attrs
))
94 (sax:start-element
*sink
* uri local-name qname attrs
)))))
96 (defun convert-attribute (elt attr
)
97 (let* ((local-name (sink-attribute-local-name attr
))
98 (uri (sink-attribute-uri attr
))
99 (suggested-prefix (sink-attribute-suggested-prefix attr
))
100 (prefix (ensure-prefix-for-uri elt uri suggested-prefix
))
101 (qname (if (plusp (length prefix
))
102 (concatenate 'string prefix
":" local-name
)
104 (sax:make-attribute
:namespace-uri uri
105 :local-name local-name
107 :value
(sink-attribute-value attr
))))
109 (defun sink-element-find-uri (prefix elt
)
112 (sink-element-all-namespaces elt
)
116 (defun ensure-prefix-for-uri (elt uri
&optional suggested-prefix
)
119 (sink-element-all-namespaces elt
)
122 (prefix (car prefix-cons
))
125 (sink-element-find-uri prefix elt
))))
126 (if (and prefix-cons
(equal cross-check uri
))
130 for prefix
= suggested-prefix then
(format nil
"ns-~D" i
)
132 (sink-element-find-uri prefix elt
)
134 (push-sink-element-namespace elt prefix uri
)
137 (defun make-xmlns-attribute (prefix uri
)
139 :namespace-uri
#"http://www.w3.org/2000/xmlns/"
141 :qname
(if (zerop (length prefix
))
143 (concatenate 'string
"xmlns:" prefix
))
146 (defstruct sink-element
155 (defstruct sink-attribute
161 (defparameter *initial-namespaces
*
163 ("xmlns" .
#"http://www.w3.org/2000/xmlns/")
164 ("xml" .
#"http://www.w3.org/XML/1998/namespace")))
166 (defun invoke-with-element
167 (fn local-name uri
&key suggested-prefix extra-namespaces process-aliases
)
168 (check-type local-name string
)
169 (check-type uri string
)
170 (check-type suggested-prefix
(or null string
))
171 (maybe-emit-start-tag)
172 (when process-aliases
173 (setf uri
(unalias-uri uri
)))
174 (let* ((parent *current-element
*)
175 (elt (make-sink-element
176 :local-name local-name
178 :suggested-prefix suggested-prefix
179 :all-namespaces
(if parent
180 (sink-element-all-namespaces parent
)
181 *initial-namespaces
*)
184 (*current-element
* elt
)
185 (*start-tag-written-p
* nil
))
186 (process-extra-namespaces elt extra-namespaces process-aliases
)
187 (multiple-value-prog1
189 (maybe-emit-start-tag)
190 (sax:end-element
*sink
* uri local-name
(sink-element-actual-qname elt
))
192 for
(prefix . uri
) in
(sink-element-new-namespaces elt
) do
193 (sax:end-prefix-mapping
*sink
* prefix
)))))
195 (defun process-extra-namespace (elt prefix uri process-aliases
)
196 (when process-aliases
197 (setf uri
(unalias-uri uri
)))
199 ;; allow earlier conses in extra-namespaces to hide later ones.
200 ;; FIXME: add a good explanation here why we need to do this both
201 ;; here and in remove-extra-namespaces.
203 (sink-element-new-namespaces elt
)
206 (let ((previous (sink-element-find-uri prefix elt
)))
208 ;; no need to declare what has already been done
210 (push-sink-element-namespace elt prefix uri
)))))
212 (defun process-extra-namespaces (elt extra-namespaces process-aliases
)
213 (loop for
(prefix . uri
) in extra-namespaces do
214 (process-extra-namespace elt prefix uri process-aliases
)))
216 (defun push-sink-element-namespace (elt prefix uri
)
218 ((equal prefix
"xml")
219 (assert (equal uri
"http://www.w3.org/XML/1998/namespace")))
220 ((equal prefix
"xmlns")
221 (assert (equal uri
"http://www.w3.org/2000/xmlns/")))
223 (let ((cons (cons prefix uri
)))
224 (push cons
(sink-element-all-namespaces elt
))
225 (push cons
(sink-element-new-namespaces elt
))))))
227 (defun write-attribute
228 (local-name uri value
&key suggested-prefix process-aliases
)
229 (check-type local-name string
)
230 (check-type uri string
)
231 (check-type value string
)
232 (check-type suggested-prefix
(or null string
))
233 (when process-aliases
234 (setf uri
(unalias-uri uri
)))
236 ((null *current-element
*)
237 (xslt-error "attribute outside of element"))
238 (*start-tag-written-p
*
239 (xslt-cerror "attribute after start tag"))
240 ((equal local-name
"xmlns")
241 (xslt-error "attribute named xmlns"))
243 (setf (sink-element-attributes *current-element
*)
244 (cons (make-sink-attribute :local-name local-name
246 :suggested-prefix suggested-prefix
248 (delete-if (lambda (x)
249 (and (equal (sink-attribute-local-name x
)
251 (equal (sink-attribute-uri x
) uri
)))
252 (sink-element-attributes *current-element
*)))))))
254 (defun write-extra-namespace (prefix uri process-aliases
)
255 (check-type prefix string
)
256 (check-type uri string
)
258 ((null *current-element
*)
259 (xslt-error "attribute outside of element"))
260 (*start-tag-written-p
*
261 (xslt-cerror "namespace after start tag"))
263 (process-extra-namespace *current-element
* prefix uri process-aliases
))))
265 (defun write-text (data)
266 (maybe-emit-start-tag)
267 (sax:characters
*sink
* data
)
270 (defun write-comment (data)
271 (maybe-emit-start-tag)
272 (sax:comment
*sink
* data
)
275 (defun write-processing-instruction (target data
)
276 (maybe-emit-start-tag)
277 (sax:processing-instruction
*sink
* target data
)
280 (defun write-unescaped (str)
281 (maybe-emit-start-tag)
282 (sax:unescaped
*sink
* str
))