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 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
|
;;; -*- Mode: Lisp; Syntax: Common-Lisp; Package: CXML; readtable: runes; Encoding: utf-8; -*-
;;; ---------------------------------------------------------------------------
;;; Title: Unparse XML
;;; Title: (including support for canonic XML according to J.Clark)
;;; Created: 1999-09-09
;;; Author: Gilbert Baumann <unk6@rz.uni-karlsruhe.de>
;;; Author: David Lichteblau <david@lichteblau.com>
;;; License: Lisp-LGPL (See file COPYING for details).
;;; ---------------------------------------------------------------------------
;;; (c) copyright 1999 by Gilbert Baumann
;;; (c) copyright 2004 by knowledgeTools Int. GmbH
;;; (c) copyright 2004 by David Lichteblau (for headcraft.de)
;;; (c) copyright 2005-2008 by David Lichteblau
;;; This library is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU Library General Public
;;; License as published by the Free Software Foundation; either
;;; version 2 of the License, or (at your option) any later version.
;;;
;;; This library is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;; Library General Public License for more details.
;;;
;;; You should have received a copy of the GNU Library General Public
;;; License along with this library; if not, write to the
;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;;; Boston, MA 02111-1307 USA.
(in-package :cxml)
;;
;; | Canonical XML
;; | =============
;; |
;; | This document defines a subset of XML called canonical XML. The
;; | intended use of canonical XML is in testing XML processors, as a
;; | representation of the result of parsing an XML document.
;; |
;; | Every well-formed XML document has a unique structurally equivalent
;; | canonical XML document. Two structurally equivalent XML documents have
;; | a byte-for-byte identical canonical XML document. Canonicalizing an
;; | XML document requires only information that an XML processor is
;; | required to make available to an application.
;; |
;; | A canonical XML document conforms to the following grammar:
;; |
;; | CanonXML ::= Pi* element Pi*
;; | element ::= Stag (Datachar | Pi | element)* Etag
;; | Stag ::= '<' Name Atts '>'
;; | Etag ::= '</' Name '>'
;; | Pi ::= '<?' Name ' ' (((Char - S) Char*)? - (Char* '?>' Char*)) '?>'
;; | Atts ::= (' ' Name '=' '"' Datachar* '"')*
;; | Datachar ::= '&' | '<' | '>' | '"'
;; | | '	'| ' '| ' '
;; | | (Char - ('&' | '<' | '>' | '"' | #x9 | #xA | #xD))
;; | Name ::= (see XML spec)
;; | Char ::= (see XML spec)
;; | S ::= (see XML spec)
;; |
;; | Attributes are in lexicographical order (in Unicode bit order).
;; |
;; | A canonical XML document is encoded in UTF-8.
;; |
;; | Ignorable white space is considered significant and is treated
;; | equivalently to data.
;;
;; -- James Clark (jjc@jclark.com)
;;;; SINK: an xml output sink
(defclass sink (sax:content-handler)
((ystream :initarg :ystream :accessor sink-ystream)
(width :initform 79 :initarg :width :accessor width)
(canonical :initform nil :initarg :canonical :accessor canonical)
(indentation :initform nil :initarg :indentation :accessor indentation)
(current-indentation :initform 0 :accessor current-indentation)
(notations :initform (make-buffer :element-type t) :accessor notations)
(name-for-dtd :accessor name-for-dtd)
(previous-notation :initform nil :accessor previous-notation)
(have-doctype :initform nil :accessor have-doctype)
(have-internal-subset :initform nil :accessor have-internal-subset)
(stack :initform nil :accessor stack)
(sink-omit-xml-declaration-p :initform nil
:initarg :omit-xml-declaration-p
:accessor sink-omit-xml-declaration-p)
(encoding :initarg :encoding :reader sink-encoding)))
#-rune-is-character
(defmethod hax:%want-strings-p ((handler sink))
nil)
(defmethod initialize-instance :after ((instance sink) &key)
(when (eq (canonical instance) t)
(setf (canonical instance) 1))
(unless (member (canonical instance) '(nil 1 2))
(error "Invalid canonical form: ~A" (canonical instance)))
(when (and (canonical instance) (indentation instance))
(error "Cannot indent XML in canonical mode"))
(when (and (canonical instance)
(not (eq (ystream-encoding (sink-ystream instance)) :utf-8)))
(error "Cannot use non-UTF-8 encoding in canonical mode"))
(when (let ((encoding (ystream-encoding (sink-ystream instance))))
(and (not (symbolp encoding))
(eq (babel-encodings:enc-name encoding) :utf-16)))
(sink-write-rune #/U+FEFF instance)))
(defun make-buffer (&key (element-type '(unsigned-byte 8)))
(make-array 1
:element-type element-type
:adjustable t
:fill-pointer 0))
;; bisschen unschoen hier die ganze api zu duplizieren, aber die
;; ystreams sind noch undokumentiert
(macrolet ((define-maker (make-sink make-ystream &rest args)
`(defun ,make-sink (,@args &rest initargs
&key encoding &allow-other-keys)
(let* ((encoding (or encoding "UTF-8"))
(ystream (,make-ystream ,@args)))
(setf (ystream-encoding ystream)
(runes:find-output-encoding encoding))
(apply #'make-instance
'sink
:ystream ystream
:encoding encoding
initargs)))))
(define-maker make-octet-vector-sink make-octet-vector-ystream)
(define-maker make-octet-stream-sink make-octet-stream-ystream stream)
(define-maker make-rod-sink make-rod-ystream)
#+rune-is-character
(define-maker make-character-stream-sink make-character-stream-ystream stream)
#-rune-is-character
(define-maker make-string-sink/utf8 make-string-ystream/utf8)
#-rune-is-character
(define-maker make-character-stream-sink/utf8
make-character-stream-ystream/utf8
stream))
#+rune-is-character
(defun make-string-sink (&rest args)
"@return{A serialization sink, i.e. a @class{SAX handler}}
Returns a handler that writes processes SAX events by writing an
equivalent XML document to a newly allocated string of unicode
characters.
The sink will return the string as a result from
@fun{sax:end-document}.
All sink creation functions share the same keyword arguments.
Refer to @fun{make-octet-vector-sink} for details on keyword
arguments."
(apply #'make-rod-sink args))
(defmethod sax:end-document ((sink sink))
(close-ystream (sink-ystream sink)))
(setf (documentation #'make-octet-vector-sink 'function)
"@arg[canonical]{canonical form, one of NIL, T, 1, 2. If specified,
serialization in canonical form is enabled. The two canonical
forms are useful to allow comparisons of XML documents and their
content model by character-by-character comparisons of
their serialized representation.}
@arg[indentation]{indentation level. An integer or nil. If
specified, a pretty-printing indentation mode is enabled. Note
that indentation as implemented currently changes the content model
unconditionally, and is usually helpful only for debugging purposes.}
@arg[encoding]{the character encoding to use. A string or
keyword. Values are interpreted by Babel. nil is also allowed
and means UTF-8.}
@arg[omit-xml-declaration]{Boolean. If true, no XML declaration
is written.}
@return{A serialization sink, i.e. a @class{SAX handler}}
Returns a handler that writes processes SAX events by writing an
equivalent XML document to a newly allocated vector of
@code{(unsigned-byte 8)}.
The following values for @code{canonical} are allowed:
@begin{itemize}
@item{t or 1: Canonical XML}
@item{2: Second Canonical Form}
@item{NIL: Use a more readable non-canonical representation.}
@end{itemize}
The sink will return the vector as a result from
@fun{sax:end-document}.
An internal subset will be included in the result regardless of the
canonical setting. It is the responsibility of the caller to not
report an internal subset for canonical <= 1, or only notations as
required for canonical = 2. For example, the include-doctype argument
to dom:map-document should be set to nil for the former behaviour and
:canonical-notations for the latter. ")
(setf (documentation #'make-octet-stream-sink 'function)
"@arg[stream]{An (unsigned-byte 8) stream.}
@return{A serialization sink, i.e. a @class{SAX handler}}
Returns a handler that writes processes SAX events by writing an
equivalent XML document to @var{stream}.
The sink will return @var{stream} as a result from
@fun{sax:end-document}.
All sink creation functions share the same keyword arguments.
Refer to @fun{make-octet-vector-sink} for details on keyword
arguments.")
(setf (documentation #'make-rod-sink 'function)
"@return{A serialization sink, i.e. a @class{SAX handler}}
Returns a handler that writes processes SAX events by writing an
equivalent XML document to a newly allocated string of unicode
characters (or on implementations without unicode support: a rod).
The sink will return the string (or rod) as a result from
@fun{sax:end-document}.
All sink creation functions share the same keyword arguments.
Refer to @fun{make-octet-vector-sink} for details on keyword
arguments.")
(setf (documentation #'make-character-stream-sink 'function)
"@arg[stream]{A character stream.}
@return{A serialization sink, i.e. a @class{SAX handler}}
Returns a handler that writes processes SAX events by writing an
equivalent XML document to @var{stream}.
The sink will return @var{stream} as a result from
@fun{sax:end-document}.
All sink creation functions share the same keyword arguments.
Refer to @fun{make-octet-vector-sink} for details on keyword
arguments.")
;;;; doctype and notations
(defmethod sax:start-document ((sink sink))
(unless (or (canonical sink)
(sink-omit-xml-declaration-p sink))
(sink-write-rod #"<?xml version=\"1.0\" encoding=\"" sink)
(sink-write-rod (rod (sink-encoding sink)) sink)
(sink-write-rod #"\"?>" sink)
(sink-write-rune #/U+000A sink)))
(defmethod sax:start-dtd ((sink sink) name public-id system-id)
(setf (name-for-dtd sink) name)
(unless (canonical sink)
(ensure-doctype sink public-id system-id)))
(defun ensure-doctype (sink &optional public-id system-id)
(unless (have-doctype sink)
(setf (have-doctype sink) t)
(sink-write-rod #"<!DOCTYPE " sink)
(sink-write-rod (name-for-dtd sink) sink)
(cond
((not (zerop (length public-id)))
(sink-write-rod #" PUBLIC \"" sink)
(sink-write-escapable-rod public-id sink)
(sink-write-rod #"\" \"" sink)
(sink-write-escapable-rod system-id sink)
(sink-write-rod #"\"" sink))
((not (zerop (length system-id)))
(sink-write-rod #" SYSTEM \"" sink)
(sink-write-escapable-rod system-id sink)
(sink-write-rod #"\"" sink)))))
(defmethod sax:start-internal-subset ((sink sink))
(when (have-internal-subset sink)
(error "duplicate internal subset"))
(setf (have-internal-subset sink) t)
(ensure-doctype sink)
(sink-write-rod #" [" sink)
(sink-write-rune #/U+000A sink))
(defmethod sax:end-internal-subset ((sink sink))
(ensure-doctype sink)
(sink-write-rod #"]" sink))
(defmethod sax:unparsed-internal-subset ((sink sink) str)
(when (have-internal-subset sink)
(error "duplicate internal subset"))
(setf (have-internal-subset sink) t)
(ensure-doctype sink)
(sink-write-rod #" [" sink)
(sink-write-rune #/U+000A sink)
(sink-write-rod str sink)
(sink-write-rod #"]" sink))
;; for the benefit of the XML test suite, prefer ' over "
(defun write-quoted-rod (x sink)
(let ((q (if (find #/' x) #/" #/'
;; '" (thanks you Emacs indentation, the if ends here)
)))
(sink-write-rune q sink)
(sink-write-rod x sink)
(sink-write-rune q sink)))
(defmethod sax:notation-declaration ((sink sink) name public-id system-id)
(let ((prev (previous-notation sink)))
(when (and (and (canonical sink) (>= (canonical sink) 2))
prev
(not (rod< prev name)))
(error "misordered notations; cannot unparse canonically"))
(setf (previous-notation sink) name))
(sink-write-rod #"<!NOTATION " sink)
(sink-write-rod name sink)
(cond
((zerop (length public-id))
(sink-write-rod #" SYSTEM " sink)
(write-quoted-rod system-id sink))
((zerop (length system-id))
(sink-write-rod #" PUBLIC " sink)
(write-quoted-rod public-id sink))
(t
(sink-write-rod #" PUBLIC " sink)
(write-quoted-rod public-id sink)
(sink-write-rod #" " sink)
(write-quoted-rod system-id sink)))
(sink-write-rune #/> sink)
(sink-write-rune #/U+000A sink))
(defmethod sax:unparsed-entity-declaration
((sink sink) name public-id system-id notation-name)
(unless (and (canonical sink) (< (canonical sink) 3))
(sink-write-rod #"<!ENTITY " sink)
(sink-write-rod name sink)
(cond
((zerop (length public-id))
(sink-write-rod #" SYSTEM " sink)
(write-quoted-rod system-id sink))
((zerop (length system-id))
(sink-write-rod #" PUBLIC " sink)
(write-quoted-rod public-id sink))
(t
(sink-write-rod #" PUBLIC " sink)
(write-quoted-rod public-id sink)
(sink-write-rod #" " sink)
(write-quoted-rod system-id sink)))
(sink-write-rod #" NDATA " sink)
(sink-write-rod notation-name sink)
(sink-write-rune #/> sink)
(sink-write-rune #/U+000A sink)))
(defmethod sax:external-entity-declaration
((sink sink) kind name public-id system-id)
(when (canonical sink)
(error "cannot serialize parsed entities in canonical mode"))
(sink-write-rod #"<!ENTITY " sink)
(when (eq kind :parameter)
(sink-write-rod #" % " sink))
(sink-write-rod name sink)
(cond
((zerop (length public-id))
(sink-write-rod #" SYSTEM " sink)
(write-quoted-rod system-id sink))
((zerop (length system-id))
(sink-write-rod #" PUBLIC " sink)
(write-quoted-rod public-id sink))
(t
(sink-write-rod #" PUBLIC " sink)
(write-quoted-rod public-id sink)
(sink-write-rod #" " sink)
(write-quoted-rod system-id sink)))
(sink-write-rune #/> sink)
(sink-write-rune #/U+000A sink))
(defmethod sax:internal-entity-declaration ((sink sink) kind name value)
(when (canonical sink)
(error "cannot serialize parsed entities in canonical mode"))
(sink-write-rod #"<!ENTITY " sink)
(when (eq kind :parameter)
(sink-write-rod #" % " sink))
(sink-write-rod name sink)
(sink-write-rune #/U+0020 sink)
(sink-write-rune #/\" sink)
(sink-write-escapable-rod/dtd value sink)
(sink-write-rune #/\" sink)
(sink-write-rune #/> sink)
(sink-write-rune #/U+000A sink))
(defmethod sax:element-declaration ((sink sink) name model)
(when (canonical sink)
(error "cannot serialize element type declarations in canonical mode"))
(sink-write-rod #"<!ELEMENT " sink)
(sink-write-rod name sink)
(sink-write-rune #/U+0020 sink)
(labels ((walk (m)
(cond
((eq m :EMPTY)
(sink-write-rod "EMPTY" sink))
((eq m :PCDATA)
(sink-write-rod "#PCDATA" sink))
((eq m :ANY)
(sink-write-rod "ANY" sink))
((atom m)
(sink-write-escapable-rod m sink))
(t
(ecase (car m)
(and
(sink-write-rune #/\( sink)
(loop for (n . rest) on (cdr m) do
(walk n)
(when rest
(sink-write-rune #\, sink)))
(sink-write-rune #/\) sink))
(or
(sink-write-rune #/\( sink)
(loop for (n . rest) on (cdr m) do
(walk n)
(when rest
(sink-write-rune #\| sink)))
(sink-write-rune #/\) sink))
(*
(walk (second m))
(sink-write-rune #/* sink))
(+
(walk (second m))
(sink-write-rune #/+ sink))
(?
(walk (second m))
(sink-write-rune #/? sink)))))))
(walk model))
(sink-write-rune #/> sink)
(sink-write-rune #/U+000A sink))
(defmethod sax:attribute-declaration ((sink sink) ename aname type default)
(when (canonical sink)
(error "cannot serialize attribute type declarations in canonical mode"))
(sink-write-rod #"<!ATTLIST " sink)
(sink-write-rod ename sink)
(sink-write-rune #/U+0020 sink)
(sink-write-rod aname sink)
(sink-write-rune #/U+0020 sink)
(cond
((atom type)
(sink-write-rod (rod (string-upcase (symbol-name type))) sink))
(t
(when (eq :NOTATION (car type))
(sink-write-rod #"NOTATION " sink))
(sink-write-rune #/\( sink)
(loop for (n . rest) on (cdr type) do
(sink-write-rod n sink)
(when rest
(sink-write-rune #\| sink)))
(sink-write-rune #/\) sink)))
(sink-write-rune #/U+0020 sink)
(cond
((atom default)
(sink-write-rune #/# sink)
(sink-write-rod (rod (string-upcase (symbol-name default))) sink))
(t
(when (eq :FIXED (car default))
(sink-write-rod #"#FIXED " sink))
(sink-write-rune #/\" sink)
(sink-write-escapable-rod (second default) sink)
(sink-write-rune #/\" sink)))
(sink-write-rune #/> sink)
(sink-write-rune #/U+000A sink))
(defmethod sax:end-dtd ((sink sink))
(when (have-doctype sink)
(sink-write-rod #">" sink)
(sink-write-rune #/U+000A sink)))
;;;; elements
(defstruct (tag (:constructor make-tag (name)))
name
(n-children 0)
(have-gt nil))
(defun sink-fresh-line (sink)
(unless (zerop (ystream-column (sink-ystream sink)))
(sink-write-rune #/U+000A sink) ;newline
(indent sink)))
(defun maybe-close-tag (sink)
(let ((tag (car (stack sink))))
(when (and (tag-p tag) (not (tag-have-gt tag)))
(setf (tag-have-gt tag) t)
(sink-write-rune #/> sink))))
(defmethod sax:start-element
((sink sink) namespace-uri local-name qname attributes)
(declare (ignore namespace-uri local-name))
(maybe-close-tag sink)
(when (stack sink)
(incf (tag-n-children (first (stack sink)))))
(push (make-tag qname) (stack sink))
(when (indentation sink)
(sink-fresh-line sink)
(start-indentation-block sink))
(sink-write-rune #/< sink)
(sink-write-rod qname sink)
(dolist (a (if (canonical sink)
(sort (copy-list attributes)
#'rod<
:key #'sax:attribute-qname)
attributes))
(sink-write-rune #/space sink)
(sink-write-rod (sax:attribute-qname a) sink)
(sink-write-rune #/= sink)
(sink-write-rune #/\" sink)
(if (canonical sink)
(sink-write-escapable-rod/canonical (sax:attribute-value a) sink)
(sink-write-escapable-rod/attribute (sax:attribute-value a) sink))
(sink-write-rune #/\" sink))
(when (canonical sink)
(maybe-close-tag sink)))
(defmethod sax:end-element
((sink sink) namespace-uri local-name qname)
(declare (ignore namespace-uri local-name))
(let ((tag (pop (stack sink))))
(unless (tag-p tag)
(error "output does not nest: not in an element"))
(unless (rod= (tag-name tag) qname)
(error "output does not nest: expected ~A but got ~A"
(rod qname) (rod (tag-name tag))))
(when (indentation sink)
(end-indentation-block sink)
(unless (zerop (tag-n-children tag))
(sink-fresh-line sink)))
(cond
((tag-have-gt tag)
(sink-write-rod '#.(string-rod "</") sink)
(sink-write-rod qname sink)
(sink-write-rod '#.(string-rod ">") sink))
(t
(sink-write-rod #"/>" sink)))))
(defmethod sax:processing-instruction ((sink sink) target data)
(maybe-close-tag sink)
(unless (rod-equal target '#.(string-rod "xml"))
(sink-write-rod '#.(string-rod "<?") sink)
(sink-write-rod target sink)
(cond
((plusp (length data))
(sink-write-rune #/space sink)
(sink-write-rod data sink))
((canonical sink)
(sink-write-rune #/space sink)))
(sink-write-rod '#.(string-rod "?>") sink)))
(defmethod sax:start-cdata ((sink sink))
(maybe-close-tag sink)
(push :cdata (stack sink)))
(defmethod sax:characters ((sink sink) data)
(maybe-close-tag sink)
(cond
((and (eq (car (stack sink)) :cdata)
(not (canonical sink))
(not (search #"]]" data)))
(when (indentation sink)
(sink-fresh-line sink))
(sink-write-rod #"<![CDATA[" sink)
;; XXX signal error if body is unprintable?
;; zzz no, in that case, split into multiple CDATA sections
(map nil (lambda (c) (sink-write-rune c sink)) data)
(sink-write-rod #"]]>" sink))
(t
(if (indentation sink)
(unparse-indented-text data sink)
(if (canonical sink)
(sink-write-escapable-rod/canonical data sink)
(sink-write-escapable-rod data sink))))))
(defmethod sax:unescaped ((sink sink) data)
(maybe-close-tag sink)
(sink-write-rod data sink))
(defmethod sax:comment ((sink sink) data)
(maybe-close-tag sink)
(unless (canonical sink)
;; XXX signal error if body is unprintable?
(sink-write-rod #"<!--" sink)
(map nil (lambda (c) (sink-write-rune c sink)) data)
(sink-write-rod #"-->" sink)))
(defmethod sax:end-cdata ((sink sink))
(unless (eq (pop (stack sink)) :cdata)
(error "output does not nest: not in a cdata section")))
(defun indent (sink)
(dotimes (x (current-indentation sink))
(sink-write-rune #/U+0020 sink)))
(defun start-indentation-block (sink)
(incf (current-indentation sink) (indentation sink)))
(defun end-indentation-block (sink)
(decf (current-indentation sink) (indentation sink)))
(defun unparse-indented-text (data sink)
(flet ((whitespacep (x)
(or (rune= x #/U+000A) (rune= x #/U+0020))))
(let* ((n (length data))
(pos (position-if-not #'whitespacep data))
(need-whitespace-p nil))
(cond
((zerop n))
(pos
(sink-fresh-line sink)
(while (< pos n)
(let* ((w (or (position-if #'whitespacep data :start (1+ pos)) n))
(next (or (position-if-not #'whitespacep data :start w) n)))
(when need-whitespace-p
(if (< (+ (ystream-column (sink-ystream sink)) w (- pos))
(width sink))
(sink-write-rune #/U+0020 sink)
(sink-fresh-line sink)))
(sink-write-escapable-rod data sink :start pos :end w)
(setf need-whitespace-p (< w n))
(setf pos next))))
(t
(sink-write-rune #/U+0020 sink))))))
(defun sink-write-escapable-rod (rod sink &key (start 0) (end (length rod)))
;;
;; OPTIMIZE ME
;;
(let ((y (sink-ystream sink)))
(loop
for i from start below end
for c = (rune rod i)
do
(case c
(#/& (ystream-write-escapable-rod #.(string-rod "&") y))
(#/< (ystream-write-escapable-rod #.(string-rod "<") y))
;; there's no need to escape > per se, but we're supposed to
;; escape -->, which is harder to check for
(#/> (ystream-write-escapable-rod #.(string-rod ">") y))
(#/U+000D (ystream-write-escapable-rod #.(string-rod " ") y))
(t (ystream-write-escapable-rune c y))))))
(defun sink-write-escapable-rod/attribute
(rod sink &key (start 0) (end (length rod)))
;;
;; OPTIMIZE ME
;;
(let ((y (sink-ystream sink)))
(loop
for i from start below end
for c = (rune rod i)
do
(case c
(#/& (ystream-write-escapable-rod #.(string-rod "&") y))
(#/< (ystream-write-escapable-rod #.(string-rod "<") y))
;; there's no need to escape > per se, but we're supposed to
;; escape -->, which is harder to check for
(#/> (ystream-write-escapable-rod #.(string-rod ">") y))
(#/\" (ystream-write-escapable-rod #.(string-rod """) y))
(#/U+0009 (ystream-write-escapable-rod #.(string-rod "	") y))
(#/U+000A (ystream-write-escapable-rod #.(string-rod " ") y))
(#/U+000D (ystream-write-escapable-rod #.(string-rod " ") y))
(t (ystream-write-escapable-rune c y))))))
(defun sink-write-escapable-rod/canonical
(rod sink &key (start 0) (end (length rod)))
;;
;; OPTIMIZE ME
;;
(let ((y (sink-ystream sink)))
(loop
for i from start below end
for c = (rune rod i)
do
(case c
(#/& (ystream-write-escapable-rod #.(string-rod "&") y))
(#/< (ystream-write-escapable-rod #.(string-rod "<") y))
(#/> (ystream-write-escapable-rod #.(string-rod ">") y))
(#/\" (ystream-write-escapable-rod #.(string-rod """) y))
(#/U+0009 (ystream-write-escapable-rod #.(string-rod "	") y))
(#/U+000A (ystream-write-escapable-rod #.(string-rod " ") y))
(#/U+000D (ystream-write-escapable-rod #.(string-rod " ") y))
(t (ystream-write-escapable-rune c y))))))
(defun sink-write-escapable-rod/dtd
(rod sink &key (start 0) (end (length rod)))
(let ((y (sink-ystream sink)))
(loop
for i from start below end
for c = (rune rod i)
do
(case c
(#/% (ystream-write-escapable-rod #.(string-rod "%") y))
(#/& (ystream-write-escapable-rod #.(string-rod "&") y))
(#/< (ystream-write-escapable-rod #.(string-rod "<") y))
(#/> (ystream-write-escapable-rod #.(string-rod ">") y))
(#/\" (ystream-write-escapable-rod #.(string-rod """) y))
(#/U+0009 (ystream-write-escapable-rod #.(string-rod "	") y))
(#/U+000A (ystream-write-escapable-rod #.(string-rod " ") y))
(#/U+000D (ystream-write-escapable-rod #.(string-rod " ") y))
(t (ystream-write-escapable-rune c y))))))
(defun sink-write-rune (c sink)
(ystream-write-rune c (sink-ystream sink)))
(defun sink-write-rod (r sink)
(ystream-write-rod r (sink-ystream sink)))
;;;; convenience functions for DOMless XML serialization
(defvar *current-element*)
(defvar *sink*)
(defvar *unparse-namespace-bindings*)
(defvar *current-namespace-bindings*)
(defmacro with-xml-output (sink &body body)
"@arg[sink]{A @class{SAX handler}, evaluated}
@arg[body]{forms}
@return{The result of calling @code{sax:end-document} on @code{sink}.}
Evaluates sink and establishes it as the current output sink for
the following \"convenience serialization\" macros and functions:
@fun{with-element}, @fun{with-namespace}, @fun{doctype},
@fun{with-element*}, @fun{attribute}, @fun{attribute*}, @fun{text}
@fun{comment}, @fun{processing-instruction}, @fun{unescaped}.
Before @code{body} is evaluated, @fun{sax:start-document} is signalled
to the @code{sink}. Afterwards, @fun{sax:end-document} is signalled.
Note that convenience serialization delays some serialization events.
For example, @fun{with-element} delays signalling an opening tag
using @fun{sax:start-element} until it has information about all
possible attributes of the element. Because of this delay, it is
not usually safe to signal SAX events to the sink during the extent
of @code{with-xml-output}. However, @fun{with-output-sink} can be
used to force output of delayed events, allowing direct use of the
sink.
Example:
@pre{(with-xml-output (make-octet-stream-sink stream)
(with-element \"foo\"
(attribute \"xyz\" \"abc\")
(with-element \"bar\"
(attribute \"blub\" \"bla\"))
(text \"Hi there.\")))}"
`(invoke-with-xml-output (lambda () ,@body) ,sink))
(defmacro with-output-sink ((var) &body body)
"@arg[var]{A symbol, not evaluated.}
@arg[body]{forms, an implicit progn}
@return{The result of @code{body}.}
Allows safe use of manual calls to SAX functions during the extent
of @fun{with-xml-output},
Determines the current output sink established by @fun{with-xml-output},
as used by convenience serialization functions. Writes delayed
serialization events to the sink. Binds local variable @code{var} to the
sink and evaluates @code{body} as an implicit progn.
The consequences are undefined if this macro is used outside of the
extent of a call to @fun{with-xml-output}.
See @fun{with-xml-output} for details on delayed events."
`(invoke-with-output-sink (lambda (,var) ,@body)))
(defun invoke-with-xml-output (fn sink)
(let ((*sink* sink)
(*current-element* nil)
(*unparse-namespace-bindings* *initial-namespace-bindings*)
(*current-namespace-bindings* nil))
(sax:start-document *sink*)
(funcall fn)
(sax:end-document *sink*)))
(defun invoke-with-output-sink (fn)
(maybe-emit-start-tag)
(funcall fn *sink*))
(defmacro with-element (qname &body body)
"@arg[qname]{A string, evaluated.}
@arg[body]{forms, an implicit progn}
@return{The result of @code{body}.}
Writes an element to the current output sink.
This macro is a convenience wrapper around @fun{with-element*}.
@var{qname} is parsed to determine the element's namespace prefix
and local name. Then @fun{with-element*} is called on @var{body} using
the resulting values."
`(invoke-with-element (lambda () ,@body) ,qname))
(defmacro with-element* ((prefix lname) &body body)
"@arg[prefix]{Namespace prefix, a string (evaluated).}
@arg[lname]{Local name, a string (evaluated).}
@arg[body]{forms, an implicit progn}
@return{The result of @code{body}.}
Writes an element to the current output sink.
First, @var{prefix} is resolved to a namespace URI using the bindings
established by @fun{with-namespace}.
Next, body is evaluated as an implicit progn. During this time,
attributes for the element can be specified using @fun{attribute}.
Once information on the start tag is complete, @fun{start-element}
on the current output sink, using the specified namespace prefix and
local name specified by the arguments, the namespace URI computed as
described above,and including all attributes collected so far.
Information on the start tag is considered complete once the first of
the following situations occurs:
@begin{itemize}
@item{Before any child node of the element is written, e.g. using an
inner call of @fun{with-element},}
@item{Before the body of @fun{with-ouptut-sink} is evaluated.}
@item{After the end of @var{body} has been reached.}
@end{itemize}
Finally, sax:end-element is used to write an end tag, using the same
qualified name and namespace information as above."
`(invoke-with-element* (lambda () ,@body) ,prefix ,lname))
(defmacro with-namespace ((prefix uri) &body body)
"@arg[prefix]{Namespace prefix, a string (evaluated).}
@arg[uri]{Namespace URI, a string (evaluated).}
@arg[body]{forms, an implicit progn}
@return{The result of @code{body}.}
Registers @code{prefix} as a name for the namespace URI @code{uri}
for the extent of body.
Namespace bindings established by @code{with-namespace} are used by
@fun{with-element} and @fun{with-element*} as well as @fun{attribute}
and @fun{attribute*}."
`(invoke-with-namespace (lambda () ,@body) ,prefix ,uri))
(defun doctype (name public-id system-id &optional internal-subset)
"@arg[name]{Element name, a string.}
@arg[public-id]{String}
@arg[system-id]{A system ID as a @class{puri:uri}.}
@arg[internal-subset]{nil or a string}
@return{undocumented}
Writes a doctype declaration to the current output sink, using the
specified name, public ID, system ID, and optionally an internal subset."
(sax:start-dtd *sink* name public-id system-id)
(when internal-subset
(sax:unparsed-internal-subset *sink* internal-subset))
(sax:end-dtd *sink*))
(defun maybe-emit-start-tag ()
(when *current-element*
;; starting child node, need to emit opening tag of parent first:
(destructuring-bind ((uri lname qname) &rest attributes) *current-element*
(sax:start-element *sink* uri lname qname (reverse attributes)))
(setf *current-element* nil)))
(defun invoke-with-namespace (fn prefix uri)
(let ((*unparse-namespace-bindings*
(acons prefix uri *unparse-namespace-bindings*))
(*current-namespace-bindings*
(acons prefix uri *current-namespace-bindings*)))
(sax:start-prefix-mapping *sink* prefix uri)
(multiple-value-prog1
(funcall fn)
(sax:end-prefix-mapping *sink* prefix))))
(defun invoke-with-element (fn qname)
(setf qname (rod qname))
(multiple-value-bind (prefix lname)
(split-qname qname)
(invoke-with-element* fn prefix lname qname)))
(defun find-unparse-namespace (prefix)
(cdr (assoc prefix *unparse-namespace-bindings* :test 'equal)))
(defun invoke-with-element* (fn prefix lname &optional qname)
(setf prefix (when prefix (rod prefix)))
(setf lname (rod lname))
(maybe-emit-start-tag)
(let* ((qname (or qname
(if prefix (concatenate 'rod prefix #":" lname) lname)))
(uri (find-unparse-namespace (or prefix #"")))
(*current-element*
(cons (list uri lname qname)
(mapcar (lambda (x)
(destructuring-bind (prefix &rest uri) x
(sax:make-attribute
:namespace-uri #"http://www.w3.org/2000/xmlns/"
:local-name prefix
:qname (if (zerop (length prefix))
#"xmlns"
(concatenate 'rod #"xmlns:" prefix))
:value uri)))
*current-namespace-bindings*))))
(multiple-value-prog1
(let ((*current-namespace-bindings* nil))
(funcall fn))
(maybe-emit-start-tag)
(sax:end-element *sink* uri lname qname))))
(defgeneric unparse-attribute (value))
(defmethod unparse-attribute ((value string)) value)
(defmethod unparse-attribute ((value null)) nil)
(defmethod unparse-attribute ((value integer)) (write-to-string value))
(defun attribute (qname value)
"@arg[qname]{Qualified name, a string.}
@arg[value]{Any value understood by @fun{unparse-attribute}, in particular
strings.}
@return{undocumented}
Collects an attribute for the start tag that is currently being written.
This function may only be called during the extent of a use of
@fun{with-element} or @fun{with-element*}, and only before the first
child node has been written.
An attribute for the current element is recorded using the namespace prefix
and local name specified by @var{qname}. The attribute's namespace prefix
is resolved to a namespace URI using the bindings established by
@fun{with-namespace},and that namespace URI is used for the attribute."
(setf qname (rod qname))
(multiple-value-bind (prefix lname)
(split-qname qname)
(attribute* prefix lname value qname)))
(defun attribute* (prefix lname value &optional qname)
"@arg[prefix]{Namespace prefix, a string.}
@arg[lname]{Local name, a string.}
@arg[value]{Any value understood by @fun{unparse-attribute}, in particular
strings.}
@return{undocumented}
Collects an attribute for the start tag that is currently being written.
This function may only be called during the extent of a use of
@fun{with-element} or @fun{with-element*}, and only before the first
child node has been written.
An attribute for the current element is recorded using the namespace prefix
and local name specified by arguments. @var{prefix} is resolved to a
namespace URI using the bindings established by @fun{with-namespace},
and that namespace URI is used for the attribute."
(setf value (unparse-attribute value))
(when value
(setf prefix (when prefix (rod prefix)))
(setf lname (rod lname))
(push (sax:make-attribute
:namespace-uri (find-unparse-namespace prefix)
:local-name lname
:qname (or qname
(if prefix (concatenate 'rod prefix #":" lname) lname))
:value (rod value))
(cdr *current-element*))))
(defun cdata (data)
"@arg[data]{String.}
@return{undocumented}
Writes a CDATA section to the current output sink, using @code{data} as
its contents.
Note: It is currently the caller's responsibily to ensure that the CDATA
section will not contain forbidden character sequences."
(maybe-emit-start-tag)
(sax:start-cdata *sink*)
(sax:characters *sink* (rod data))
(sax:end-cdata *sink*)
data)
(defun text (data)
"@arg[data]{String.}
@return{undocumented}
Writes a text node to the current output sink, using @code{data} as
its contents.
Note: It is currently the caller's responsibily to ensure that @code{data}
does not contain characters forbidden for character data."
(maybe-emit-start-tag)
(sax:characters *sink* (rod data))
data)
(defun comment (data)
"@arg[data]{String.}
@return{undocumented}
Writes a comment to the current output sink, using @code{data} as
its contents.
Note: It is currently the caller's responsibily to ensure that @code{data}
does not contain character sequences forbidden for comments."
(maybe-emit-start-tag)
(sax:comment *sink* (rod data))
data)
(defun processing-instruction (target data)
"@arg[target]{String.}
@arg[data]{String.}
@return{undocumented}
Writes a processing instruction to the current output sink, using
@code{target} and @code{data} as its contents.
Note: It is currently the caller's responsibily to ensure that
@code{target} and @code{data} do not contain character sequences
forbidden for processing instruction contents."
(maybe-emit-start-tag)
(sax:processing-instruction *sink* (rod target) (rod data))
data)
(defun unescaped (str)
"@arg[data]{String.}
@return{undocumented}
If supported by the current output sink, writes character data directly
to the sink's target.
Use of this function is often an indicator of bad design. Avoid it
if you can. (Implementation note: This function is supported because
XSLT's XML output method requires it.)"
(maybe-emit-start-tag)
(sax:unescaped *sink* (rod str)))
|