2 ;;;; Copyright (c) 2008 Zachary Beane, All Rights Reserved
4 ;;;; Redistribution and use in source and binary forms, with or without
5 ;;;; modification, are permitted provided that the following conditions
8 ;;;; * Redistributions of source code must retain the above copyright
9 ;;;; notice, this list of conditions and the following disclaimer.
11 ;;;; * Redistributions in binary form must reproduce the above
12 ;;;; copyright notice, this list of conditions and the following
13 ;;;; disclaimer in the documentation and/or other materials
14 ;;;; provided with the distribution.
16 ;;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
17 ;;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 ;;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 ;;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 ;;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 ;;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
22 ;;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 ;;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ;;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 ;;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 ;;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 (defun skip-document-start (source)
35 (let ((type (klacks:peek source
)))
36 (when (eql :start-document type
)
37 (klacks:consume source
))
40 (defun skip-characters (source)
42 (if (member (klacks:peek source
) '(:characters
:comment
))
43 (klacks:consume source
)
46 (defun collect-characters (source)
47 (with-output-to-string (stream)
49 (multiple-value-bind (type data
)
51 (cond ((eql type
:characters
)
52 (write-string data stream
)
53 (klacks:consume source
))
57 (defun collect-rest-alist (source)
58 "Collect the rest of SOURCE, up to an un-nested closing tag, as an
59 alist of element names and their character contents."
62 (multiple-value-bind (type uri lname
)
64 (declare (ignore uri
))
66 (:characters
(klacks:consume source
))
68 (return (nreverse result
)))
70 (klacks:consume source
)
71 (push (cons lname
(collect-characters source
)) result
)
72 (klacks:find-event source
:end-element
)
73 (klacks:consume source
)))))))
75 ;;; Match failure conditions
77 (define-condition xml-binding-error
()
85 (lambda (condition stream
)
86 (format stream
"Unexpected XML structure: expected ~S, got ~S instead"
88 (actual condition
)))))
91 ;;; Creating the matchers/binders
93 (defvar *current-element-name
*)
95 (defun create-element-start-matcher (element-name kk
)
96 "Return a function that expects to see the start of ELEMENT-NAME
98 (lambda (source bindings k
)
99 (skip-characters source
)
100 (multiple-value-bind (type uri lname qname
)
102 (declare (ignore uri qname
))
103 (when (not (eql type
:start-element
))
104 (error 'xml-binding-error
105 :expected
(list :start-element element-name
)
106 :actual
(list :event type
)))
107 (when (string/= element-name lname
)
108 (error 'xml-binding-error
109 :expected
(list :start-element element-name
)
110 :actual
(list type lname
)))
111 (klacks:consume source
)
112 (funcall kk source bindings k
))))
114 (defun create-element-end-matcher (element-name kk
)
115 "Return a function that expects to see the end of ELEMENT-NAME next in
117 (lambda (source bindings k
)
118 (skip-characters source
)
119 (multiple-value-bind (type uri lname qname
)
121 (declare (ignore uri qname
))
122 (when (not (eql type
:end-element
))
123 (error 'xml-binding-error
124 :expected
(list :end-element element-name
)
125 :actual
(list :event type lname
)))
126 (when (string/= element-name lname
)
127 (error 'xml-binding-error
128 :expected
(list :end-element element-name
)
129 :actual
(list type lname
)))
130 (klacks:consume source
)
131 (funcall kk source bindings k
))))
133 (defun create-bindings-extender (key kk
)
134 "Return a function that extends BINDINGS with KEY and a value of
135 whatever character data is pending in SOURCE."
136 (lambda (source bindings k
)
138 (acons key
(collect-characters source
) bindings
)
141 (defun create-skipper (element-name kk
)
142 "Return a function that skips input in SOURCE until it sees a
143 closing tag for ELEMENT-NAME. Nested occurrences of elements with the
144 same ELEMENT-NAME are also skipped."
146 (lambda (source bindings k
)
148 (multiple-value-bind (type uri lname
)
149 (klacks:consume source
)
150 (declare (ignore uri
))
151 (cond ((and (eql type
:end-element
)
152 (string= lname element-name
))
154 (return (funcall kk source bindings k
))
156 ((and (eql type
:start-element
)
157 (string= lname element-name
))
160 (defun create-bindings-returner ()
161 "Return a function that does nothing but return its BINDINGS,
162 effectively ending matching."
163 (lambda (source bindings k
)
164 (declare (ignore source k
))
165 (nreverse bindings
)))
167 (defun create-sequence-binder (key forms kk
)
168 "Return a function that creates a list of sub-bindings based on a
169 sub-matcher, with KEY as the key."
170 (let ((binder (create-binder forms
(create-bindings-returner)))
171 (element-name (first forms
)))
172 (lambda (source bindings k
)
173 (let ((sub-bindings '()))
175 (skip-characters source
)
176 (multiple-value-bind (type uri lname
)
178 (declare (ignore uri
))
179 (unless (and (eql type
:start-element
)
180 (string= lname element-name
))
181 (return (funcall kk source
(acons key
182 (nreverse sub-bindings
)
185 (push (funcall binder source nil k
) sub-bindings
))))))
187 (defun create-alist-binder (key kk
)
188 "Return a function that returns the rest of SOURCE as an alist of
189 element-name/element-content data."
190 (lambda (source bindings k
)
192 (acons key
(collect-rest-alist source
) bindings
)
195 (defun create-optional-binder (subforms kk
)
196 (let ((binder (create-binder subforms kk
))
197 (element-name (first subforms
)))
198 (lambda (source bindings k
)
199 (skip-characters source
)
200 (multiple-value-bind (type uri lname
)
202 (declare (ignore uri
))
203 (cond ((and (eql type
:start-element
)
204 (string= element-name lname
))
209 (t (funcall kk source bindings k
)))))))
212 (defun create-special-processor (operator form k
)
213 "Handle special pattern processing forms like BIND, SKIP-REST, SEQUENCE,
216 (bind (create-bindings-extender (second form
) k
))
217 (optional (create-optional-binder (second form
) k
))
218 (skip-rest (create-skipper *current-element-name
* k
))
220 (destructuring-bind (key subforms
)
222 (create-sequence-binder key subforms k
)))
224 (create-alist-binder (second form
) k
))))
226 (defun create-binder (form &optional
(k (create-bindings-returner)))
227 "Process FORM as an XML binder pattern and return a closure to
228 process an XML source."
229 (let ((operator (first form
)))
232 (let ((*current-element-name
* operator
))
233 (create-element-start-matcher *current-element-name
*
234 (create-binder (rest form
) k
))))
236 (create-element-end-matcher *current-element-name
*
239 (create-binder operator
(create-binder (rest form
) k
)))
241 (create-special-processor operator form k
)))))
243 (defun xml-source (source)
245 (cxml::cxml-source source
)
246 (t (cxml:make-source source
))))
248 (defun make-binder (form)
250 (let ((binder (create-binder form
(create-bindings-returner)))
251 (source (xml-source source
)))
252 (skip-document-start source
)
256 (create-bindings-returner)))))
258 (defun xml-bind (binder source
)
259 (funcall binder source
))
261 (defun xml-document-element (source)
262 (nth-value 2 (klacks:find-event
(xml-source source
) :start-element
)))
264 (defun bvalue (key bindings
)
265 (cdr (assoc key bindings
)))
269 (bvalue key binding
)))
271 (defmacro alist-bind
(bindings alist
&body body
)
272 (let ((binds (gensym)))
273 (flet ((one-binding (var)
274 (let ((keyword (intern (symbol-name var
) :keyword
)))
275 `(when (eql (caar ,binds
) ,keyword
)
276 (setf ,var
(cdr (pop ,binds
)))))))
278 (let ((,binds
,alist
))
279 ,@(mapcar #'one-binding bindings
)
285 (defgeneric merge-bindings
(object bindings
)
286 (:documentation
"Update OBJECT with the data from BINDINGS."))