/usr/share/common-lisp/source/zs3/xml-binding.lisp is in cl-zs3 1.2.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 | ;;;;
;;;; Copyright (c) 2008 Zachary Beane, All Rights Reserved
;;;;
;;;; Redistribution and use in source and binary forms, with or without
;;;; modification, are permitted provided that the following conditions
;;;; are met:
;;;;
;;;; * Redistributions of source code must retain the above copyright
;;;; notice, this list of conditions and the following disclaimer.
;;;;
;;;; * Redistributions in binary form must reproduce the above
;;;; copyright notice, this list of conditions and the following
;;;; disclaimer in the documentation and/or other materials
;;;; provided with the distribution.
;;;;
;;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
;;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
;;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;;;; ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
;;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
;;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
;;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
;;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
;;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
;;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;;;;
;;;; xml-binding.lisp
(in-package #:zs3)
;;; utility
(defun skip-document-start (source)
(let ((type (klacks:peek source)))
(when (eql :start-document type)
(klacks:consume source))
(values)))
(defun skip-characters (source)
(loop
(if (member (klacks:peek source) '(:characters :comment))
(klacks:consume source)
(return))))
(defun collect-characters (source)
(with-output-to-string (stream)
(loop
(multiple-value-bind (type data)
(klacks:peek source)
(cond ((eql type :characters)
(write-string data stream)
(klacks:consume source))
(t
(return)))))))
(defun collect-rest-alist (source)
"Collect the rest of SOURCE, up to an un-nested closing tag, as an
alist of element names and their character contents."
(let ((result '()))
(loop
(multiple-value-bind (type uri lname)
(klacks:peek source)
(declare (ignore uri))
(ecase type
(:characters (klacks:consume source))
(:end-element
(return (nreverse result)))
(:start-element
(klacks:consume source)
(push (cons lname (collect-characters source)) result)
(klacks:find-event source :end-element)
(klacks:consume source)))))))
;;; Match failure conditions
(define-condition xml-binding-error (error)
((expected
:initarg :expected
:accessor expected)
(actual
:initarg :actual
:accessor actual))
(:report
(lambda (condition stream)
(format stream "Unexpected XML structure: expected ~S, got ~S instead"
(expected condition)
(actual condition)))))
;;; API
(defvar *binder-definitions*
(make-hash-table))
(defclass binder ()
((source
:initarg :source
:accessor source)
(closure
:initarg :closure
:accessor closure)))
(defmacro defbinder (name &body source)
`(eval-when (:compile-toplevel :load-toplevel :execute)
(setf (gethash ',name *binder-definitions*)
(make-instance 'binder
:closure (make-binder ',@source)
:source ',@source))))
(defun find-binder (name &optional (errorp t))
(let ((binder (gethash name *binder-definitions*)))
(or binder
(and errorp
(error "No binder named ~S" name)))))
(defun xml-bind (binder-name source)
(funcall (closure (find-binder binder-name)) source))
(defun try-to-xml-bind (binder-name source)
"Like XML-BIND, but catches any XML-BINDING-ERRORs; if any errors
are caught, NIL is the primary value and the error object is the
secondary value."
(handler-case
(xml-bind binder-name source)
(xml-binding-error (c)
(values nil c))))
;;; Creating the matchers/binders
(defvar *current-element-name*)
(defun create-element-start-matcher (element-name kk)
"Return a function that expects to see the start of ELEMENT-NAME
next in SOURCE."
(lambda (source bindings k)
(skip-characters source)
(multiple-value-bind (type uri lname qname)
(klacks:peek source)
(declare (ignore uri qname))
(when (not (eql type :start-element))
(error 'xml-binding-error
:expected (list :start-element element-name)
:actual (list :event type)))
(when (string/= element-name lname)
(error 'xml-binding-error
:expected (list :start-element element-name)
:actual (list type lname)))
(klacks:consume source)
(funcall kk source bindings k))))
(defun create-element-end-matcher (element-name kk)
"Return a function that expects to see the end of ELEMENT-NAME next in
SOURCE."
(lambda (source bindings k)
(skip-characters source)
(multiple-value-bind (type uri lname qname)
(klacks:peek source)
(declare (ignore uri qname))
(when (not (eql type :end-element))
(error 'xml-binding-error
:expected (list :end-element element-name)
:actual (list :event type lname)))
(when (string/= element-name lname)
(error 'xml-binding-error
:expected (list :end-element element-name)
:actual (list type lname)))
(klacks:consume source)
(funcall kk source bindings k))))
(defun create-bindings-extender (key kk)
"Return a function that extends BINDINGS with KEY and a value of
whatever character data is pending in SOURCE."
(lambda (source bindings k)
(funcall kk source
(acons key (collect-characters source) bindings)
k)))
(defun create-skipper (element-name kk)
"Return a function that skips input in SOURCE until it sees a
closing tag for ELEMENT-NAME. Nested occurrences of elements with the
same ELEMENT-NAME are also skipped."
(let ((depth 0))
(lambda (source bindings k)
(loop
(multiple-value-bind (type uri lname)
(klacks:consume source)
(declare (ignore uri))
(cond ((and (eql type :end-element)
(string= lname element-name))
(if (zerop depth)
(return (funcall kk source bindings k))
(decf depth)))
((and (eql type :start-element)
(string= lname element-name))
(incf depth))))))))
(defun create-bindings-returner ()
"Return a function that does nothing but return its BINDINGS,
effectively ending matching."
(lambda (source bindings k)
(declare (ignore source k))
(nreverse bindings)))
(defmacro catching-xml-errors (&body body)
`(handler-case
(progn ,@body)
(xml-binding-error (c)
(values nil c))))
(defun create-sequence-binder (key forms kk)
"Return a function that creates a list of sub-bindings based on a
sub-matcher, with KEY as the key."
(let ((binder (create-binder forms (create-bindings-returner))))
(lambda (source bindings k)
(let ((sub-bindings '()))
(loop
(skip-characters source)
(multiple-value-bind (sub-binding failure)
(catching-xml-errors
(funcall binder source nil k))
(if failure
(return (funcall kk
source
(acons key
(nreverse sub-bindings)
bindings)
k))
(push sub-binding sub-bindings))))))))
(defun create-alist-binder (key kk)
"Return a function that returns the rest of SOURCE as an alist of
element-name/element-content data."
(lambda (source bindings k)
(funcall kk source
(acons key (collect-rest-alist source) bindings)
k)))
(defun create-optional-binder (subforms kk)
(let ((binder (create-binder subforms kk)))
(lambda (source bindings k)
(skip-characters source)
(multiple-value-bind (optional-bindings failure)
(catching-xml-errors (funcall binder source bindings k))
(if failure
(funcall kk source bindings k)
optional-bindings)))))
(defun create-alternate-binder (subforms kk)
(let ((binders (mapcar (lambda (form) (create-binder form kk)) subforms)))
(lambda (source bindings k)
;; FIXME: This xml-binding-error needs :expected and :action
;; ooptions. Can get actual with peeking and expected by getting
;; the cl:cars of subforms...maybe.
(dolist (binder binders (error 'xml-binding-error))
(multiple-value-bind (alt-bindings failure)
(catching-xml-errors (funcall binder source bindings k))
(unless failure
(return alt-bindings)))))))
(defun create-sub-binder-binder (binder-name kk)
(lambda (source bindings k)
(let ((binder (find-binder binder-name)))
(let ((sub-bindings (funcall (closure binder) source)))
(funcall k source (append sub-bindings bindings) kk)))))
(defun create-special-processor (operator form k)
"Handle special pattern processing forms like BIND, SKIP-REST, SEQUENCE,
etc."
(ecase operator
(include (create-sub-binder-binder (second form) k))
(alternate (create-alternate-binder (rest form) k))
(bind (create-bindings-extender (second form) k))
(optional (create-optional-binder (second form) k))
(skip-rest (create-skipper *current-element-name* k))
(sequence
(destructuring-bind (key subforms)
(rest form)
(create-sequence-binder key subforms k)))
(elements-alist
(create-alist-binder (second form) k))))
(defun create-binder (form &optional (k (create-bindings-returner)))
"Process FORM as an XML binder pattern and return a closure to
process an XML source."
(let ((operator (first form)))
(etypecase operator
(string
(let ((*current-element-name* operator))
(create-element-start-matcher *current-element-name*
(create-binder (rest form) k))))
(null
(create-element-end-matcher *current-element-name*
k))
(cons
(create-binder operator (create-binder (rest form) k)))
(symbol
(create-special-processor operator form k)))))
(defun xml-source (source)
(typecase source
(cxml::cxml-source source)
(t (cxml:make-source source))))
(defun make-binder (form)
(let ((binder (create-binder form (create-bindings-returner))))
(lambda (source)
(let ((source (xml-source source)))
(skip-document-start source)
(funcall binder
source
nil
(create-bindings-returner))))))
(defun xml-document-element (source)
(nth-value 2 (klacks:find-event (xml-source source) :start-element)))
(defun bvalue (key bindings)
(cdr (assoc key bindings)))
(defun bfun (key)
(lambda (binding)
(bvalue key binding)))
(defmacro alist-bind (bindings alist &body body)
(let ((binds (gensym)))
(flet ((one-binding (var)
(let ((keyword (intern (symbol-name var) :keyword)))
`(when (eql (caar ,binds) ,keyword)
(setf ,var (cdr (pop ,binds)))))))
`(let ,bindings
(let ((,binds ,alist))
,@(mapcar #'one-binding bindings)
,@body)))))
;;; Protocol
(defgeneric merge-bindings (object bindings)
(:documentation "Update OBJECT with the data from BINDINGS."))
|