[cl-xml-cvs] r17 - trunk/code/xparser

janderson at common-lisp.net janderson at common-lisp.net
Mon May 28 16:09:11 UTC 2007


Author: janderson
Date: Mon May 28 12:09:07 2007
New Revision: 17

Modified:
   trunk/code/xparser/xml-stream-coding.lisp
Log:
several changes for runtime compatibility; corrections to coding functions; eol-> nl.

Modified: trunk/code/xparser/xml-stream-coding.lisp
==============================================================================
--- trunk/code/xparser/xml-stream-coding.lisp	(original)
+++ trunk/code/xparser/xml-stream-coding.lisp	Mon May 28 12:09:07 2007
@@ -1 +1,800 @@
-;;; -*- Mode: lisp; Syntax: ansi-common-lisp; Base: 10; Package: xml-parser; -*-


#|
<DOCUMENTATION>
 <DESCRIPTION>
  <P>
  this implementes stream readers which perform decoding/encoding in the case
  of a binary stream. the correct decoder is selected by first examining the type of
  input element which the stream will offer and the, in the case of binary streams,
  by examining the initial byte sequence.
  no attempt is made to distinguish the encoder based on the stream's class.
  the detection methods return a reader function together with its argument, the
  detected decoding and, where it is necessary to read an initial byte sequence, that
  sequence as a string to be reread.
  </P>
  </DESCRIPTION>
 <COPYRIGHT YEAR='2001' AUTHOR='james adam anderson' MARK='(C)'
            href='file://xml/sysdcl.lisp' />
 <CHRONOLOGY>
  <DELTA DATE='20010328' AUTHOR='JAA'>
   adapted from version 0.4*</DELTA>
  <DELTA DATE='20010605' AUTHOR='MS'>
   LispWorks conformance</DELTA>
  <DELTA DATE='20010621'>added a method to encode UTF-8 for character streams</DELTA>
  <DELTA DATE='20010907'>
   <ul><li><code>*xml-verbose*</code></li>
       <li>fixed incorrect decoding for re-read sequence by recognized UTF-1612/21 BOM</li></ul></DELTA>
  <DELTA DATE='20010914'>provisional us-ascii encoding method</DELTA>
  <DELTA DATE='20020118'>corrections to encoding-stream-writer for non-mcl;
   fixed autodetect code to recognize allegro :EOF; fixed us-ascii stream-reader for same.</DELTA>
  <DELTA DATE='20030602'>provisioins for allegro simple-streams with character element-type</DELTA>
  </CHRONOLOGY>
 </DOCUMENTATION>
|#

(in-package "XML-PARSER")

#+(or ALLEGRO LispWorks CormanLisp CMU sbcl)
(defMacro lsh (x y) `(ash ,x ,y))

#+(and allegro allegro-version>= (not (version>= 6 0)))
(progn
  ;; acl 5.0 versions

  (defMethod stream-reader ((stream excl:fundamental-character-input-stream))
    (let ((methods (compute-applicable-methods #'excl:stream-read-char (list stream))))
      (values (if (= (length methods) 1)
		  (clos:method-function (first methods))
		#'(lambda (arg)
		    (setf arg (excl:stream-read-char arg))
		    (unless (eq arg :eof) arg)))
	      stream)))

  (defMethod stream-reader ((stream excl:fundamental-binary-input-stream))
    (let ((methods (compute-applicable-methods #'excl:stream-read-byte (list stream))))
      (values (if (= (length methods) 1)
		  (clos:method-function (first methods))
		#'(lambda (arg)
		    (setf arg (excl:stream-read-byte arg))
		    (unless (eq arg :eof) arg)))
	      stream)))

  (defMethod stream-writer ((stream excl:fundamental-character-output-stream))
    (let ((methods (compute-applicable-methods #'excl:stream-write-char (list stream))))
      (values (if (= (length methods) 1)
		  (clos:method-function (first methods))
		#'excl:stream-write-char)
	      stream)))

  (defMethod stream-writer ((stream excl:fundamental-binary-output-stream))
    (let ((methods (compute-applicable-methods #'excl:stream-write-byte (list stream))))
      (values (if (= (length methods) 1)
		  (clos:method-function (first methods))
		#'excl:stream-write-byte)
	      stream)))
  ;; end acl5.0 versions
  )

#+(and allegro allegro-version>= (version>= 6 0))
(progn
  ;; originally allegro 6.0 version
  (defmethod stream-reader ((stream excl:fundamental-stream))
    (values #'(lambda (stream) (read-byte stream nil nil))
	    stream))
  (defmethod stream-writer ((stream excl:fundamental-stream))
    (values #'(lambda (stream byte) (write-byte byte stream))
	    stream))
  
  
  ;; originally allegro 6.1 version; Bob Rogers <rogers at rgrjr.dyndns.org> remarked, that
  ;; they're present in 6.0 as well
  (defmethod stream-reader ((stream excl:simple-stream))
    (values (if (subtypep (stream-element-type stream) 'character)
              #'(lambda (stream) (read-char stream nil nil))
              #'(lambda (stream) (read-byte stream nil nil)))
            stream))
  (defMethod stream-writer ((stream excl:simple-stream))
    (values (if (subtypep (stream-element-type stream) 'character)
              #'(lambda (stream char) (write-char char stream))
	      #'(lambda (stream byte) (write-byte byte stream)))
            stream))
  )

#+LispWorks
(defMethod stream-reader ((stream stream:fundamental-stream))
  (values (if (subtypep (stream-element-type stream) 'character)
            #'(lambda (stream) (read-char stream nil nil))
	    #'(lambda (stream) (read-byte stream nil nil)))
          stream))
#+LispWorks
(defMethod stream-writer ((stream stream:fundamental-stream))
  (values (if (subtypep (stream-element-type stream) 'character)
            #'(lambda (stream char) (write-char char stream))
	    #'(lambda (stream byte) (write-byte byte stream)))
          stream))

#+CormanLisp
(defMethod stream-reader ((stream stream:fundamental-stream))
  (values (if (subtypep (stream-element-type stream) 'character)
	      #'(lambda (stream)
		  (read-char stream nil nil))
	    #'(lambda (stream)
		(read-byte stream nil nil)))
          stream))
#+CormanLisp
(defMethod stream-writer ((stream stream:fundamental-stream))
  (values (if (subtypep (stream-element-type stream) 'character)
	      #'(lambda (stream char)
		  (write-char char stream))
	    #'(lambda (stream byte)
		(write-byte byte stream)))
          stream))

#+(and mcl (not digitool))
(defMethod stream-reader ((stream fundamental-stream))
  (values (if (subtypep (stream-element-type stream) 'character)
	      #'(lambda (stream)
		  (read-char stream nil nil))
	    #'(lambda (stream)
		(read-byte stream nil nil)))
          stream))

#+(and mcl (not digitool))
(defMethod stream-writer ((stream fundamental-stream))
  (values (if (subtypep (stream-element-type stream) 'character)
	      #'(lambda (stream char)
		  (write-char char stream))
	    #'(lambda (stream byte)
		(write-byte byte stream)))
          stream))

#+CMU
(defmethod stream-element-type ((stream stream))
  ;  (cl::fd-stream-element-type stream)
  '(unsigned-byte 8))

#+CMU
(defMethod stream-reader ((stream stream))
  (values (if (subtypep (stream-element-type stream) 'character)
            #'(lambda (stream)
                (read-char stream nil nil))
 	    #'(lambda (stream)
 		(read-byte stream nil nil)))
          stream))
#+CMU
(defMethod stream-writer ((stream stream))
  (values (if (subtypep (stream-element-type stream) 'character)
            #'(lambda (stream char)
                (write-char char stream))
 	    #'(lambda (stream byte)
 		(write-byte byte stream)))
          stream))

#+sbcl
(defmethod stream-element-type ((stream stream))
  ;  (cl::fd-stream-element-type stream)
  '(unsigned-byte 8))

#+sbcl
(defMethod stream-reader ((stream stream))
  (values (if (subtypep (stream-element-type stream) 'character)
            #'(lambda (stream)
                (read-char stream nil nil))
 	    #'(lambda (stream)
 		(read-byte stream nil nil)))
          stream))
#+sbcl
(defMethod stream-writer ((stream stream))
  (values (if (subtypep (stream-element-type stream) 'character)
            #'(lambda (stream char)
                (write-char char stream))
 	    #'(lambda (stream byte)
 		(write-byte byte stream)))
          stream))



;; adapted from cl-http:mcl;server;tcp-ot-stream for the strictly binary case
;; the first case comes into play without cl-http. connections are made with a simple tcp stream
;; the second case takes into account, that chunking decoding extends the generic function
#+(and mcl mactcp-compatibility)
(defMethod stream-reader ((stream ccl::binary-tcp-stream))
  (values #'ccl::io-buffer-read-byte (ccl::stream-io-buffer stream)))

#+(and MCL CL-HTTP)
(defmethod stream-reader ((stream ccl::modal-ascii-or-binary-tcp-stream-mixin))
  (values (case (ccl::input-mode stream)
            (:ascii #'stream-tyi)
            ((:binary nil)
             (let ((method-combination (ccl::generic-function-method-combination #'ccl::stream-read-byte))
                   (methods (compute-applicable-methods #'ccl::stream-read-byte (list stream))))
               (ccl::compute-effective-method-function #'ccl::stream-read-byte
                                                       method-combination
                                                       methods))))
          stream))

#+(and mcl mactcp-compatibility)
(defmethod stream-writer ((stream ccl::binary-tcp-stream))
  (flet ((io-buffer-tyo-byte (io-buffer byte)
           ;; ? not sure that continuability is a good idea, but
	   (unless (typep io-buffer 'ccl::io-buffer)
	     (setq io-buffer (require-type io-buffer 'ccl::io-buffer)))
           (if (characterp byte) (setf byte (char-code byte)))
	   (ccl::%io-buffer-write-byte io-buffer byte)))
    (values #'io-buffer-tyo-byte (ccl::stream-io-buffer stream))))


#+(and mcl mactcp-compatibility)
(defMethod stream-element-type ((stream ccl::binary-tcp-stream))
  ;; mcl 4.2 yielded BASE-CHARACTER for this class and produced a character reader ...?
  'unsigned-byte)

;; determine whether the stream supports binary operations

(defGeneric is-binary-stream (stream)
  #-allegro
  (:method ((stream stream)) (subtypep (stream-element-type stream) 'unsigned-byte))
  ;; allegro 6 "simple streams" can always do the byte operations
  #+allegro
  (:method ((stream string-stream)) nil)
  #+allegro
  (:method ((stream stream))
           #+(and allegro-version>= (version>= 6 0)) t
           #+(and allegro-version>= (not (version>= 6 0))) (subtypep (stream-element-type stream) 'unsigned-byte)
           ))

(defGeneric decoding-stream-reader (stream encoding)
  (:method ((stream stream) (encoding null))
           (decoding-stream-reader stream (stream-element-type stream)))
  (:method ((stream stream) (type cons))
           (decoding-stream-reader stream (first type)))
  (:method ((stream stream) (encoding string) &aux canonical-encoding)
           (cond ((setf canonical-encoding (canonical-encoding encoding))
                  (when *xml-verbose* 
                    (warn "assuming ~a encoding for stream: ~s." canonical-encoding stream))
                  (decoding-stream-reader stream canonical-encoding))
                 (t
                  (warn "no decoding defined for operation on stream: ~s: ~s." stream encoding)
                  (values nil nil encoding))))
  (:method ((stream stream) (encoding symbol) &aux canonical-encoding)
           (cond ((setf canonical-encoding (canonical-encoding encoding))
                  (when *xml-verbose* 
                    (warn "assuming ~a encoding for stream: ~s." canonical-encoding stream))
                  (decoding-stream-reader stream canonical-encoding))
                 ((subtypep encoding 'integer)
                  (decoding-stream-reader stream :autodetect))
                 ((subtypep encoding 'character)
                  (decoding-stream-reader stream *default-character-encoding*))
                 (t
                  (warn "no decoding defined for operation on stream: ~s: ~s." stream encoding)
                  (values nil nil encoding)))))

(defGeneric encoding-stream-writer (stream encoding)
  (:method ((stream t) (encoding t))
           (warn "no decoding defined for operation on stream: ~s: ~s." encoding stream)
           (values nil nil))
  (:method ((stream stream) (encoding null) &aux (type (stream-element-type stream)))
           (unless type
             (warn "assuming element type character for stream: ~s." stream)
             (setf type 'character))
           (encoding-stream-writer stream type))
  (:method ((stream stream) (type cons))
           (encoding-stream-writer stream (first type)))
  (:method ((stream stream) (encoding string) &aux canonical-encoding)
           (cond ((setf canonical-encoding (canonical-encoding encoding))
                  (when *xml-verbose* 
                    (warn "assuming ~a encoding for stream: ~s." canonical-encoding stream))
                  (encoding-stream-writer stream canonical-encoding))
                 (t
                  (warn "no decoding defined for operation on stream: ~s: ~s." stream encoding)
                  (values nil nil encoding))))
  (:method ((stream stream) (encoding symbol) &aux canonical-encoding)
           (cond ((setf canonical-encoding (canonical-encoding encoding))
                  (when *xml-verbose* 
                    (warn "assuming ~a encoding for stream: ~s." canonical-encoding stream))
                  (encoding-stream-writer stream canonical-encoding))
                 ((subtypep encoding 'integer)
                  (encoding-stream-writer stream *default-binary-encoding*))
                 ((subtypep encoding 'character)
                  (encoding-stream-writer stream *default-character-encoding*))
                 (t
                  (warn "no encoding defined for operation on stream: ~s: ~s." stream encoding)
                  (values nil nil encoding)))))


(defMacro funcall-function.arg (function.arg &rest args)
  `(funcall (first ,function.arg) (rest ,function.arg) , at args))

(defun change-stream-decoding (new-encoding)
  (etypecase new-encoding
    (keyword t)
    ((or string (and symbol (not null)))
     (setf new-encoding (intern (string-upcase new-encoding) "KEYWORD"))))
  (if (or (eq new-encoding *input-encoding*)
          (and (eq new-encoding :utf-16)
               (member *input-encoding* '(:utf-16-12 :utf-16-21))))
    (values *input-encoding* nil)
    (multiple-value-bind (function arg detected-encoding to-reread)
                         (decoding-stream-reader *input-source* new-encoding)
      (unless (and (eq detected-encoding new-encoding)
                   (null to-reread))
        (error "can't change encoding: ~s: ~s -> ~s = ~s/~s."
               *input-source*
               *input-encoding* new-encoding detected-encoding to-reread))
      (unless function (error "no reader for encoding: ~s." new-encoding))
      (setf *input-reader* function
            *input-reader-arg* arg
            *input-encoding* new-encoding)
      ;; return the new encoding
      (values new-encoding t))))

;;
;;
;; UTF-8 is computed

(defMethod decoding-stream-reader
           ((stream stream) (encoding (eql :UTF-8)))
  (unless (is-binary-stream stream)
    (warn "stream type not compatible with encoding: ~s: ~s."
          (stream-element-type stream) encoding))
  (multiple-value-bind (function arg)
                       (stream-reader stream)
    (values #'(lambda (function.arg &aux byte1)
                (block read-utf-8-datum
                  (flet ((read-byte-code (&aux byte)
                           (setf byte (funcall-function.arg function.arg))
                           (if (integerp byte) byte
                               (return-from read-utf-8-datum nil))))
                    (declare (type fixnum byte1)
                             (ftype (function () fixnum) read-byte-code)
                             (optimize (speed 3) (safety 0)))
                    (setf byte1 (read-byte-code))
                    (cond ((= 0 (logand #x80 byte1))
                           byte1)
                          ((= #xc0 (logand #xe0 byte1))
                           (logior (lsh (logand byte1 #x1f) 6)
                                   (logand (read-byte-code) #x3f)))
                          ((= #xe0 (logand #xf0 byte1))
                           (logior (logior (lsh (logand byte1 #x0f) 12)
                                           (lsh (logand (read-byte-code) #x3f) 6))
                                   (logand (read-byte-code) #x3f)))
                          ((= #xf0 (logand #xf8 byte1))
                           (let ((byte2 (read-byte-code))
                                 (byte3 (read-byte-code))
                                 (byte4 (read-byte-code)))
                             (xml-error "unsupported unicode datum: ~s."
                                            (list byte1 byte2 byte3 byte4))))
                          (t
                           (xml-error "illegal UTF-8 data: x~2,'0x." byte1))))))
            (cons function arg)
            :UTF-8)))


(defMethod encoding-stream-writer
           ((stream stream) (encoding (eql :UTF-8)))
  (if (is-binary-stream stream)
    (multiple-value-bind (function arg)
                         (stream-writer stream)
      (values #'(lambda (function.arg char &aux (code (char-code char)))
                  (cond ((<= code 255)
                         (funcall-function.arg function.arg code))
                        ((<= code #x03ff)
                         (funcall-function.arg function.arg (logior #b11000000 (lsh code -6)))
                         (funcall-function.arg function.arg (logior #b10000000 (logand code #b00111111))))
                        ((<= code #xffff)
                         (funcall-function.arg function.arg (logior #b11100000 (lsh code -12)))
                         (funcall-function.arg function.arg (logior #b10000000 (logand (lsh code -6) #b00111111)))
                         (funcall-function.arg function.arg (logior #b10000000 (logand code #b00111111))))
                        (t
                         (xml-error "unsupported unicode datum: ~s." code))))
              (cons function arg)))
    (multiple-value-bind (function arg)
                         (stream-writer stream)
      (values #'(lambda (function.arg char &aux (code (char-code char)))
                  (cond ((<= code 255)
                         (funcall-function.arg function.arg char))
                        (t
                         (let ((string (format nil "&#~d" code)))
                           (dotimes (x (length string))
                             (funcall-function.arg function.arg (char string x)))))))
              (cons function arg)))))

;;
;;
;; ISO-8859-1 is direct

(defMethod decoding-stream-reader
           ((stream stream) (encoding (eql :ISO-8859-1)))
  (multiple-value-bind (function arg)
                       (stream-reader stream)
    (if (is-binary-stream stream)
      #-(or MCL LispWorks)
      (multiple-value-bind (reader arg)
                           (stream-reader stream)
        (values #'(lambda (function.arg &aux byte)
                    (setf byte (funcall-function.arg function.arg))
                    (when (integerp byte) byte))
                (cons reader arg)
                encoding))
      #+(or MCL LispWorks)
      (values function arg encoding)
      ;; character streams must be mapped back to binary
      (values #'(lambda (function.arg &aux char)
                  (setf char (funcall-function.arg function.arg))
                  (when (characterp char)
                    ;; hardcore tracing 
                    ;; (write-char char *trace-output*)
                    (char-code char)))
              (cons function arg)
              encoding))))

(defMethod decoding-stream-reader
           ((stream stream) (encoding (eql :US-ASCII)))
  (multiple-value-bind (function arg)
                       (stream-reader stream)
    (if (is-binary-stream stream)
      #-(or MCL LispWorks)
      (multiple-value-bind (reader arg)
                           (stream-reader stream)
        (values #'(lambda (function.arg &aux byte)
                    (setf byte (funcall-function.arg function.arg))
                    (when (integerp byte) byte))
                (cons reader arg)
                encoding))
      #+(or MCL LispWorks)
      (values function arg encoding)
      ;; character streams must be mapped back to binary
      (values #'(lambda (function.arg &aux char)
                  (setf char (funcall-function.arg function.arg))
                  (when (characterp char)
                    (char-code char)))
              (cons function arg)
              encoding))))

#+digitool ;; fix eol
(defMethod encoding-stream-writer
           ((stream stream) (encoding (eql :ISO-8859-1)))
  (multiple-value-bind (function arg)
                       (stream-writer stream)
    (if (is-binary-stream stream)
      (values #'(lambda (function.arg char)
                  (funcall-function.arg function.arg 
                                        (if (= (char-code char) #x0a)
                                          #x0d
                                          (char-code char))))
              (cons function arg)
              encoding)
      (values #'(lambda (function.arg char)
                  (funcall-function.arg function.arg 
                                        (if (= (char-code char) #x0a)
                                          #.(code-char #x0d)
                                          char)))
              (cons function arg)
              encoding))))

#-digitool
(defMethod encoding-stream-writer
           ((stream stream) (encoding (eql :ISO-8859-1)))
  (if (is-binary-stream stream)
    (multiple-value-bind (function arg)
                         (stream-writer stream)
      (values #'(lambda (function.arg char)
                  (funcall-function.arg function.arg (char-code char)))
              (cons function arg)
              encoding))
    (multiple-value-bind (function arg)
                         (stream-writer stream)
      (values function arg encoding))))

(defMethod encoding-stream-writer
           ((stream stream) (encoding (eql :US-ASCII)))
  (multiple-value-bind (function arg)
                       (stream-writer stream)
    #+digitool
    (if (is-binary-stream stream)
      (values #'(lambda (function.arg char)
                  (funcall-function.arg function.arg 
                                        (if (= (char-code char) #x0a)
                                          #x0d
                                          (char-code char))))
              (cons function arg)
              encoding)
      (values #'(lambda (function.arg char)
                  (funcall-function.arg function.arg 
                                        (if (= (char-code char) #x0a)
                                          #.(code-char #x0d)
                                          char)))
              (cons function arg)
              encoding))
    #-digitool
    (if (is-binary-stream stream)
      (values #'(lambda (function.arg char)
                  (funcall-function.arg function.arg (char-code char)))
              (cons function arg)
              encoding)
      (values function arg encoding))))

;;
;;
;; UTF-16 distinguishes encoding order:
;; UTF-16LE is UTF16 in "little-endian" byte order. (order mark is 0xFF 0xFE)
;; UTF-16BE is UTF16 in "big-endian" byte order. (order mark is 0xFE 0xFF)

(defMethod decoding-stream-reader
           ((stream stream) (encoding (eql :UTF-16)))
  (decoding-stream-reader stream *default-utf-16-encoding*))

(defMethod encoding-stream-writer
           ((stream stream) (encoding (eql :UTF-16)))
  (encoding-stream-writer stream *default-utf-16-encoding*))


(defMethod decoding-stream-reader
           ((stream stream) (encoding (eql :UTF-16-12)))
  (unless (is-binary-stream stream)
    (warn "stream type not compatible with encoding: ~s: ~s."
          (stream-element-type stream) encoding))
  (multiple-value-bind (function arg)
                       (stream-reader stream)
    (values #'(lambda (function.arg)
                (declare (ftype (function () fixnum) read-byte-code)
                         (optimize (speed 3) (safety 0)))
                (block read-utf-16-datum
                  (flet ((read-byte-code (&aux byte)
                           (setf byte (funcall-function.arg function.arg))
                           (if (integerp byte) byte
                               (return-from read-utf-16-datum nil))))
                    (+ (lsh (read-byte-code) 8) (read-byte-code)))))
            (cons function arg)
            encoding)))

(defMethod encoding-stream-writer
           ((stream stream) (encoding (eql :UTF-16-12)))
  (unless (is-binary-stream stream)
    (warn "stream type not compatible with encoding: ~s: ~s."
          (stream-element-type stream) encoding))
  (multiple-value-bind (function arg)
                       (stream-writer stream)
    (values #'(lambda (function.arg datum)
                (setf datum (char-code datum))
                (funcall-function.arg function.arg (logand #xff (lsh datum -8)))
                (funcall-function.arg function.arg (logand #xff datum)))
            (cons function arg))))


(defMethod decoding-stream-reader
           ((stream stream) (encoding (eql :UTF-16-21)))
  (unless (is-binary-stream stream)
    (warn "stream type not compatible with encoding: ~s: ~s."
          (stream-element-type stream) encoding))
  (multiple-value-bind (function arg)
                       (stream-reader stream)
    (values #'(lambda (function.arg)
                (declare (ftype (function () fixnum) read-byte-code)
                         (optimize (speed 3) (safety 0)))
                (block read-utf-16-datum
                  (flet ((read-byte-code (&aux byte)
                           (setf byte (funcall-function.arg function.arg))
                           (if (integerp byte) byte
                               (return-from read-utf-16-datum nil))))
                    (+ (read-byte-code) (lsh (read-byte-code) 8)))))
            (cons function arg)
            encoding)))

(defMethod encoding-stream-writer
           ((stream stream) (encoding (eql :UTF-16-21)))
  (unless (is-binary-stream stream)
    (warn "stream type not compatible with encoding: ~s: ~s."
          (stream-element-type stream) encoding))
  (multiple-value-bind (function arg)
                       (stream-writer stream)
    (values #'(lambda (function.arg datum)
                (setf datum (char-code datum))
                (funcall-function.arg function.arg (logand #xff datum))
                (funcall-function.arg function.arg (logand #xff (lsh datum -8))))
            (cons function arg))))



;;
;;
;; detect encoding by reading the initial content. works for binary streams only

(defMethod decoding-stream-reader
       ((stream stream) (encoding (eql :autodetect)) &aux byte0 byte1 to-reread)
  "see PR-xml Appendix F"
  (multiple-value-bind (reader arg) (stream-reader stream)
    (flet ((next-byte (&aux (byte (funcall reader arg)))
             (typecase byte
               (fixnum byte)
               (t nil))))
      (case (setf byte0 (next-byte))
        (#x00 (case (next-byte)
                (#x00 (case (next-byte)
                        (#x3c (if (= (next-byte) #x00)
                                (setf encoding :UCS-4-2143 to-reread "<")
                                (error "markup stream corrupt: ~s." stream)))
                        (#x00 (if (= (next-byte) #x3c)
                                (setf encoding :UCS-4-1234 to-reread "<")
                                (error "markup stream corrupt: ~s." stream)))
                        (#xFE (if (= (next-byte) #xFF)
                                (setf encoding :UCS-4-1234 to-reread nil)
                                (error "markup stream corrupt: ~s." stream)))
                        (#xFF (if (= (next-byte) #xFE)
                                (setf encoding :UCS-4-2143 to-reread nil)
                                (error "markup stream corrupt: ~s." stream)))
                        (t (error "markup stream corrupt: ~s." stream))))
                (#x3c (if (= (setf byte1 (next-byte)) #x00)
                        (case (setf byte1 (next-byte))
                          (#x00 (setf encoding :UCS-4-3412 to-reread "<"))
                          (#x3f
                           (when *xml-verbose*
                             (warn "assuming UTF-16-21 encoding for stream: ~s." stream))
                           (setf encoding :UTF-16-21 to-reread "<?"))
                          (t (|EC: Byte Order Mark| :data (list #x00 #x3c #x00 byte1))))
                        (|EC: Byte Order Mark| :data (list #x00 #x3c byte1))))
                (t
                 (error "markup stream corrupt: ~s." stream))))
        (#x3c (case (setf byte1 (next-byte))
                (#x00 (case (setf byte1 (next-byte))
                        (#x3f (case (setf byte1 (next-byte))
                                (#x00
                                 (when *xml-verbose*
                                   (warn "assuming UTF-16-12 encoding for stream: ~s." stream))
                                 (setf encoding :UTF-16-12 to-reread "<?"))
                                (t
                                 (|EC: Byte Order Mark| :data (list #x3c #x00 #x3f byte1)))))
                        (#x00 (if (= (next-byte) #x00)
                                (setf encoding :UCS-4-4321 to-reread "<")
                                (|EC: Byte Order Mark| :data (list #x3c #x00 #x00 byte1))))
                        (t
                         (|EC: Byte Order Mark| :data (list #x3c #x00 byte1)))))
                (#x3f (setf encoding *default-binary-encoding* to-reread "<?"))
                (t
                 (unless (or (xml-initial-namechar? byte1) (= byte1 #.(char-code #\!)))
                   (when *xml-verbose* 
                     (warn "assuming UTF-8 encoding for stream: ~s." stream)))
                 (setf encoding *default-binary-encoding* to-reread (list byte0 byte1)))))
        (#xEF (case (setf byte1 (next-byte))
                (#xBB (if (= (setf byte1 (next-byte)) #xBF)
                        (setf encoding :UTF-8 to-reread nil)
                        (|EC: Byte Order Mark| :data (list #xEF #xBB byte1))))
                (t
                 (|EC: Byte Order Mark| :data (list #xEF byte1)))))
        (#xff
         (if (= (setf byte1 (next-byte)) #xfe)
           (let ((byte2 (next-byte)) (byte3 (next-byte)))
             (if (and (= byte2 0) (= byte3 0))
               (setf encoding :UCS4-4321 to-reread nil)
               (setf encoding :UTF-16-21 to-reread (list (+ byte2 (lsh byte3 8))))))
           (|EC: Byte Order Mark| :data (list #xff byte1))))
        (#xfe
         (if (= (setf byte1 (next-byte)) #xff)
           (let ((byte2 (next-byte)) (byte3 (next-byte)))
             (if (and (= byte2 0) (= byte3 0))
               (setf encoding :UCS4-3412 to-reread nil)
               (setf encoding :UTF-16-12 to-reread (list (+ (lsh byte2 8) byte3)))))
           (|EC: Byte Order Mark| :data (list #xfe byte1))))
        ((nil) ;; no data in stream
         (setf encoding :UTF-8 to-reread nil))
        (t
         (when *xml-verbose* 
           (warn "assuming UTF-8 encoding for stream: ~s." stream))
         (setf encoding :UTF-8 to-reread (list byte0))))
      (multiple-value-bind (reader arg encoding) (decoding-stream-reader stream encoding)
        (values reader arg encoding to-reread)))))
    


#|

(defun utf-8-decoding (byte1 &optional (byte2 0) (byte3 0) (byte4 0))
  (cond ((= 0 (logand #x80 byte1))
         byte1)
        ((= #xc0 (logand #xe0 byte1))
         (logior (lsh (logand byte1 #x1f) 6) (logand byte2 #x3f)))
        ((= #xe0 (logand #xf0 byte1))
         (logior (logior (lsh (logand byte1 #x0f) 12) (lsh (logand byte2 #x3f) 6)) (logand byte3 #x3f)))
        ((= #xf0 (logand #xf8 byte1))
         (xml-error "unsupported unicode datum: ~s."
                    (list byte1 byte2 byte3 byte4)))
        (t
         (xml-error "illegal UTF-8 data: #x~2,'0x." byte1))))
(xml-namechar? (utf-8-decoding 194 183 0 0))
(xml-space? (utf-8-decoding 239 187 191))

(apply #'utf-8-decoding (map 'list #'char-code "༤"))

(defun utf-8-decodingXstring (string)
  (handler-case
    (apply #'utf-8-decoding (map 'list #'char-code string))
    (error (condition) (format nil "~s(~{~2,'0x~}) -> ~a"
                               string (map 'list #'char-code string)
                               condition))))

(format nil "~{~8,'0x~^~%~}" (mapcar #'utf-8-decodingXstring
                                    '("퟿" "氏" "" "�" "ð€")))

from the 3.1 unicode report

                              Table 3.1.
                                                  UTF-8 Bit Distribution
      Scalar Value      UTF-16           1st Byte   2nd Byte   3rd Byte   4th Byte
    00000000 0xxxxxxx 00000000 0xxxxxxx  0xxxxxxx

    00000yyy yyxxxxxx 00000yyy yyxxxxxx  110yyyyy   10xxxxxx

    zzzzyyyy yyxxxxxx zzzzyyyy yyxxxxxx  1110zzzz   10yyyyyy   10xxxxxx
            
    000uuuuu zzzzyyyy 110110ww wwzzzzyy  11110uuu   10uuzzzz   10yyyyyy   10xxxxxx
    yyxxxxxx          110111yy yyxxxxxx 
                    
Where uuuuu = wwww + 1 (to account for addition of 1000016 as in Section 3.7, Surrogates). 

|#
:EOF
\ No newline at end of file
+;;; -*- Mode: lisp; Syntax: ansi-common-lisp; Base: 10; Package: xml-parser; -*-
+
+
+#|
+<DOCUMENTATION>
+ <DESCRIPTION>
+  <P>
+  this implementes stream readers which perform decoding/encoding in the case
+  of a binary stream. the correct decoder is selected by first examining the type of
+  input element which the stream will offer and the, in the case of binary streams,
+  by examining the initial byte sequence.
+  no attempt is made to distinguish the encoder based on the stream's class.
+  the detection methods return a reader function together with its argument, the
+  detected decoding and, where it is necessary to read an initial byte sequence, that
+  sequence as a string to be reread.
+  </P>
+  </DESCRIPTION>
+ <COPYRIGHT YEAR='2001' AUTHOR='james adam anderson' MARK='(C)'
+            href='file://xml/sysdcl.lisp' />
+ <CHRONOLOGY>
+  <DELTA DATE='20010328' AUTHOR='JAA'>
+   adapted from version 0.4*</DELTA>
+  <DELTA DATE='20010605' AUTHOR='MS'>
+   LispWorks conformance</DELTA>
+  <DELTA DATE='20010621'>added a method to encode UTF-8 for character streams</DELTA>
+  <DELTA DATE='20010907'>
+   <ul><li><code>*xml-verbose*</code></li>
+       <li>fixed incorrect decoding for re-read sequence by recognized UTF-1612/21 BOM</li></ul></DELTA>
+  <DELTA DATE='20010914'>provisional us-ascii encoding method</DELTA>
+  <DELTA DATE='20020118'>corrections to encoding-stream-writer for non-mcl;
+   fixed autodetect code to recognize allegro :EOF; fixed us-ascii stream-reader for same.</DELTA>
+  <DELTA DATE='20030602'>provisions for allegro simple-streams with character element-type</DELTA>
+  <DELTA DATE='20030602'>scl</DELTA>
+  <DELTA DATE='20040123'>correction to utf-16-{21,12} order discovered from initial declaration
+   bytes rather than from BOM.</DELTA>
+  <DELTA DATE='20060116'>lsh ccl-specific</DELTA>
+  <DELTA DATE='20070415'>corrected utf-8 encoding bounds.</DELTA>
+  </CHRONOLOGY>
+ </DOCUMENTATION>
+|#
+
+(in-package "XML-PARSER")
+
+(defvar *illegal-utf-data-condition* nil)
+
+#+(or ALLEGRO LispWorks CormanLisp CMU sbcl scl)
+(defMacro lsh (x y) `(ash ,x ,y))
+
+#+ccl
+(unless (eq (symbol-package 'lsh) (find-package :ccl))
+  (defmacro lsh (x y) `(ccl:lsh ,x ,y)))
+
+#+(and allegro allegro-version>= (not (version>= 6 0)))
+(progn
+  ;; acl 5.0 versions
+
+  (defMethod stream-reader ((stream excl:fundamental-character-input-stream))
+    (let ((methods (compute-applicable-methods #'excl:stream-read-char (list stream))))
+      (values (if (= (length methods) 1)
+		  (clos:method-function (first methods))
+		#'(lambda (arg)
+		    (setf arg (excl:stream-read-char arg))
+		    (unless (eq arg :eof) arg)))
+	      stream)))
+
+  (defMethod stream-reader ((stream excl:fundamental-binary-input-stream))
+    (let ((methods (compute-applicable-methods #'excl:stream-read-byte (list stream))))
+      (values (if (= (length methods) 1)
+		  (clos:method-function (first methods))
+		#'(lambda (arg)
+		    (setf arg (excl:stream-read-byte arg))
+		    (unless (eq arg :eof) arg)))
+	      stream)))
+
+  (defMethod stream-writer ((stream excl:fundamental-character-output-stream))
+    (let ((methods (compute-applicable-methods #'excl:stream-write-char (list stream))))
+      (values (if (= (length methods) 1)
+		  (clos:method-function (first methods))
+		#'excl:stream-write-char)
+	      stream)))
+
+  (defMethod stream-writer ((stream excl:fundamental-binary-output-stream))
+    (let ((methods (compute-applicable-methods #'excl:stream-write-byte (list stream))))
+      (values (if (= (length methods) 1)
+		  (clos:method-function (first methods))
+		#'excl:stream-write-byte)
+	      stream)))
+  ;; end acl5.0 versions
+  )
+
+#+(and allegro allegro-version>= (version>= 6 0))
+(progn
+  ;; originally allegro 6.0 version
+  (defmethod stream-reader ((stream excl:fundamental-stream))
+    (values #'(lambda (stream) (read-byte stream nil nil))
+	    stream))
+  (defmethod stream-writer ((stream excl:fundamental-stream))
+    (values #'(lambda (stream byte) (write-byte byte stream))
+	    stream))
+  
+  
+  ;; originally allegro 6.1 version; Bob Rogers <rogers at rgrjr.dyndns.org> remarked, that
+  ;; they're present in 6.0 as well
+  (defmethod stream-reader ((stream excl:simple-stream))
+    (values (if (subtypep (stream-element-type stream) 'character)
+              #'(lambda (stream) (read-char stream nil nil))
+              #'(lambda (stream) (read-byte stream nil nil)))
+            stream))
+  (defMethod stream-writer ((stream excl:simple-stream))
+    (values (if (subtypep (stream-element-type stream) 'character)
+              #'(lambda (stream char) (write-char char stream))
+	      #'(lambda (stream byte) (write-byte byte stream)))
+            stream))
+  )
+
+#+LispWorks
+(defMethod stream-reader ((stream stream:fundamental-stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+            #'(lambda (stream) (read-char stream nil nil))
+	    #'(lambda (stream) (read-byte stream nil nil)))
+          stream))
+#+LispWorks
+(defMethod stream-writer ((stream stream:fundamental-stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+            #'(lambda (stream char) (write-char char stream))
+	    #'(lambda (stream byte) (write-byte byte stream)))
+          stream))
+
+#+CormanLisp
+(defMethod stream-reader ((stream stream:fundamental-stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+	      #'(lambda (stream)
+		  (read-char stream nil nil))
+	    #'(lambda (stream)
+		(read-byte stream nil nil)))
+          stream))
+#+CormanLisp
+(defMethod stream-writer ((stream stream:fundamental-stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+	      #'(lambda (stream char)
+		  (write-char char stream))
+	    #'(lambda (stream byte)
+		(write-byte byte stream)))
+          stream))
+
+#+(and mcl (not digitool))
+(defMethod stream-reader ((stream fundamental-stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+	      #'(lambda (stream)
+		  (read-char stream nil nil))
+	    #'(lambda (stream)
+		(read-byte stream nil nil)))
+          stream))
+
+#+(and mcl (not digitool))
+(defMethod stream-writer ((stream fundamental-stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+	      #'(lambda (stream char)
+		  (write-char char stream))
+	    #'(lambda (stream byte)
+		(write-byte byte stream)))
+          stream))
+
+#+CMU
+(defmethod stream-element-type ((stream stream))
+  ;  (cl::fd-stream-element-type stream)
+  '(unsigned-byte 8))
+
+#+CMU
+(defMethod stream-reader ((stream stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+            #'(lambda (stream)
+                (read-char stream nil nil))
+ 	    #'(lambda (stream)
+ 		(read-byte stream nil nil)))
+          stream))
+#+CMU
+(defMethod stream-writer ((stream stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+            #'(lambda (stream char)
+                (write-char char stream))
+ 	    #'(lambda (stream byte)
+ 		(write-byte byte stream)))
+          stream))
+
+#+scl
+(defMethod stream-reader ((stream stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+            #'(lambda (stream)
+                (read-char stream nil nil))
+          #'(lambda (stream)
+              (read-byte stream nil nil)))
+          stream))
+#+scl
+(defMethod stream-writer ((stream stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+            #'(lambda (stream char)
+                (write-char char stream))
+          #'(lambda (stream byte)
+              (write-byte byte stream)))
+          stream))
+
+
+#+sbcl
+(defmethod stream-element-type ((stream stream))
+  ;  (cl::fd-stream-element-type stream)
+  '(unsigned-byte 8))
+
+#+sbcl
+(defMethod stream-reader ((stream stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+            #'(lambda (stream)
+                (read-char stream nil nil))
+ 	    #'(lambda (stream)
+ 		(read-byte stream nil nil)))
+          stream))
+#+sbcl
+(defMethod stream-writer ((stream stream))
+  (values (if (subtypep (stream-element-type stream) 'character)
+            #'(lambda (stream char)
+                (write-char char stream))
+ 	    #'(lambda (stream byte)
+ 		(write-byte byte stream)))
+          stream))
+
+
+
+;; adapted from cl-http:mcl;server;tcp-ot-stream for the strictly binary case
+;; the first case comes into play without cl-http. connections are made with a simple tcp stream
+;; the second case takes into account, that chunking decoding extends the generic function
+#+(and mcl mactcp-compatibility)
+(defMethod stream-reader ((stream ccl::binary-tcp-stream))
+  (values #'ccl::io-buffer-read-byte (ccl::stream-io-buffer stream)))
+
+#+(and MCL CL-HTTP)
+(defmethod stream-reader ((stream ccl::modal-ascii-or-binary-tcp-stream-mixin))
+  (values (case (ccl::input-mode stream)
+            (:ascii #'stream-tyi)
+            ((:binary nil)
+             (let ((method-combination (ccl::generic-function-method-combination #'ccl::stream-read-byte))
+                   (methods (compute-applicable-methods #'ccl::stream-read-byte (list stream))))
+               (ccl::compute-effective-method-function #'ccl::stream-read-byte
+                                                       method-combination
+                                                       methods))))
+          stream))
+
+#+(and mcl mactcp-compatibility)
+(defmethod stream-writer ((stream ccl::binary-tcp-stream))
+  (flet ((io-buffer-tyo-byte (io-buffer byte)
+           ;; ? not sure that continuability is a good idea, but
+	   (unless (typep io-buffer 'ccl::io-buffer)
+	     (setq io-buffer (ccl:require-type io-buffer 'ccl::io-buffer)))
+           (if (characterp byte) (setf byte (char-code byte)))
+	   (ccl::%io-buffer-write-byte io-buffer byte)))
+    (values #'io-buffer-tyo-byte (ccl::stream-io-buffer stream))))
+
+
+#+(and mcl mactcp-compatibility)
+(defMethod stream-element-type ((stream ccl::binary-tcp-stream))
+  ;; mcl 4.2 yielded BASE-CHARACTER for this class and produced a character reader ...?
+  'unsigned-byte)
+
+;; determine whether the stream supports binary operations
+
+(defGeneric is-binary-stream (stream)
+  #-allegro
+  (:method ((stream stream)) (subtypep (stream-element-type stream) 'unsigned-byte))
+  ;; allegro 6 "simple streams" can always do the byte operations
+  #+allegro
+  (:method ((stream string-stream)) nil)
+  #+allegro
+  (:method ((stream stream))
+           #+(and allegro-version>= (version>= 6 0)) t
+           #+(and allegro-version>= (not (version>= 6 0))) (subtypep (stream-element-type stream) 'unsigned-byte)
+           ))
+
+(defGeneric decoding-stream-reader (stream encoding)
+  (:method ((stream stream) (encoding null))
+           (decoding-stream-reader stream (stream-element-type stream)))
+  (:method ((stream stream) (type cons))
+           (decoding-stream-reader stream (first type)))
+  (:method ((stream stream) (encoding string) &aux canonical-encoding)
+           (cond ((setf canonical-encoding (canonical-encoding encoding))
+                  (when *xml-verbose* 
+                    (warn "assuming ~a encoding for stream: ~s." canonical-encoding stream))
+                  (decoding-stream-reader stream canonical-encoding))
+                 (t
+                  (warn "no decoding defined for operation on stream: ~s: ~s." stream encoding)
+                  (values nil nil encoding))))
+  (:method ((stream stream) (encoding symbol) &aux canonical-encoding)
+           (cond ((setf canonical-encoding (canonical-encoding encoding))
+                  (when *xml-verbose* 
+                    (warn "assuming ~a encoding for stream: ~s." canonical-encoding stream))
+                  (decoding-stream-reader stream canonical-encoding))
+                 ((subtypep encoding 'integer)
+                  (decoding-stream-reader stream :autodetect))
+                 ((subtypep encoding 'character)
+                  (decoding-stream-reader stream *default-character-encoding*))
+                 (t
+                  (warn "no decoding defined for operation on stream: ~s: ~s." stream encoding)
+                  (values nil nil encoding)))))
+
+(defGeneric encoding-stream-writer (stream encoding)
+  (:method ((stream t) (encoding t))
+           (warn "no decoding defined for operation on stream: ~s: ~s." encoding stream)
+           (values nil nil))
+  (:method ((stream stream) (encoding null) &aux (type (stream-element-type stream)))
+           (unless type
+             (warn "assuming element type character for stream: ~s." stream)
+             (setf type 'character))
+           (encoding-stream-writer stream type))
+  (:method ((stream stream) (type cons))
+           (encoding-stream-writer stream (first type)))
+  (:method ((stream stream) (encoding string) &aux canonical-encoding)
+           (cond ((setf canonical-encoding (canonical-encoding encoding))
+                  (when *xml-verbose* 
+                    (warn "assuming ~a encoding for stream: ~s." canonical-encoding stream))
+                  (encoding-stream-writer stream canonical-encoding))
+                 (t
+                  (warn "no decoding defined for operation on stream: ~s: ~s." stream encoding)
+                  (values nil nil encoding))))
+  (:method ((stream stream) (encoding symbol) &aux canonical-encoding)
+           (cond ((setf canonical-encoding (canonical-encoding encoding))
+                  (when *xml-verbose* 
+                    (warn "assuming ~a encoding for stream: ~s." canonical-encoding stream))
+                  (encoding-stream-writer stream canonical-encoding))
+                 ((subtypep encoding 'integer)
+                  (encoding-stream-writer stream *default-binary-encoding*))
+                 ((subtypep encoding 'character)
+                  (encoding-stream-writer stream *default-character-encoding*))
+                 (t
+                  (warn "no encoding defined for operation on stream: ~s: ~s." stream encoding)
+                  (values nil nil encoding)))))
+
+
+(defMacro funcall-function.arg (function.arg &rest args)
+  `(funcall (first ,function.arg) (rest ,function.arg) , at args))
+
+(defun change-stream-decoding (new-encoding)
+  (etypecase new-encoding
+    (keyword t)
+    ((or string (and symbol (not null)))
+     (setf new-encoding (intern (string-upcase new-encoding) "KEYWORD"))))
+  (if (or (eq new-encoding *input-encoding*)
+          (and (eq new-encoding :utf-16)
+               (member *input-encoding* '(:utf-16-12 :utf-16-21))))
+    (values *input-encoding* nil)
+    (multiple-value-bind (function arg detected-encoding to-reread)
+                         (decoding-stream-reader *input-source* new-encoding)
+      (unless (and (eq detected-encoding new-encoding)
+                   (null to-reread))
+        (error "can't change encoding: ~s: ~s -> ~s = ~s/~s."
+               *input-source*
+               *input-encoding* new-encoding detected-encoding to-reread))
+      (unless function (error "no reader for encoding: ~s." new-encoding))
+      (setf *input-reader* function
+            *input-reader-arg* arg
+            *input-encoding* new-encoding)
+      ;; return the new encoding
+      (values new-encoding t))))
+
+;;
+;;
+;; UTF-8 is computed
+
+(defMethod decoding-stream-reader
+           ((stream stream) (encoding (eql :UTF-8)))
+  (unless (is-binary-stream stream)
+    (warn "stream type not compatible with encoding: ~s: ~s."
+          (stream-element-type stream) encoding))
+  (multiple-value-bind (function arg)
+                       (stream-reader stream)
+    (let ((reader nil))
+      (setf reader #'(lambda (function.arg &aux byte1)
+                       (block read-utf-8-datum
+                         (flet ((read-byte-code (&aux byte)
+                                  (setf byte (funcall-function.arg function.arg))
+                                  (if (integerp byte) byte
+                                      (return-from read-utf-8-datum nil))))
+                           (declare (type fixnum byte1)
+                                    (ftype (function () fixnum) read-byte-code)
+                                    (optimize (speed 3) (safety 0)))
+                           (setf byte1 (read-byte-code))
+                           (cond ((= 0 (logand #x80 byte1))
+                                  byte1)
+                                 ((= #xc0 (logand #xe0 byte1))
+                                  (logior (lsh (logand byte1 #x1f) 6)
+                                          (logand (read-byte-code) #x3f)))
+                                 ((= #xe0 (logand #xf0 byte1))
+                                  (logior (logior (lsh (logand byte1 #x0f) 12)
+                                                  (lsh (logand (read-byte-code) #x3f) 6))
+                                          (logand (read-byte-code) #x3f)))
+                                 ((= #xf0 (logand #xf8 byte1))
+                                  (let ((byte2 (read-byte-code))
+                                        (byte3 (read-byte-code))
+                                        (byte4 (read-byte-code)))
+                                    (xml-error "unsupported unicode datum: ~s."
+                                               (list byte1 byte2 byte3 byte4))))
+                                 (t
+                                  (ecase *illegal-utf-data-condition*
+                                    ((nil) (funcall reader function.arg))
+                                    (error (xml-error "illegal UTF-8 data: x~2,'0x." byte1))
+                                    (warning (xml-warn "illegal UTF-8 data: x~2,'0x." byte1)
+                                             (funcall reader function.arg)))))))))
+      (values reader
+              (cons function arg)
+              :UTF-8))))
+
+
+(defMethod encoding-stream-writer
+           ((stream stream) (encoding (eql :UTF-8)))
+  (if (is-binary-stream stream)
+    (multiple-value-bind (function arg)
+                         (stream-writer stream)
+      (values #'(lambda (function.arg char &aux (code (char-code char)))
+                  (cond ((<= code #x007f)
+                         (funcall-function.arg function.arg code))
+                        ((<= code #x07ff)
+                         (funcall-function.arg function.arg (logior #b11000000 (lsh code -6)))
+                         (funcall-function.arg function.arg (logior #b10000000 (logand code #b00111111))))
+                        ((<= code #xffff)
+                         (funcall-function.arg function.arg (logior #b11100000 (lsh code -12)))
+                         (funcall-function.arg function.arg (logior #b10000000 (logand (lsh code -6) #b00111111)))
+                         (funcall-function.arg function.arg (logior #b10000000 (logand code #b00111111))))
+                        (t
+                         (xml-error "unsupported unicode datum: ~s." code))))
+              (cons function arg)))
+    (multiple-value-bind (function arg)
+                         (stream-writer stream)
+      (values #'(lambda (function.arg char &aux (code (char-code char)))
+                  (cond ((<= code 255)
+                         (funcall-function.arg function.arg char))
+                        (t
+                         (let ((string (format nil "&#~d" code)))
+                           (dotimes (x (length string))
+                             (funcall-function.arg function.arg (char string x)))))))
+              (cons function arg)))))
+
+;;
+;;
+;; ISO-8859-1 is direct
+
+(defMethod decoding-stream-reader
+           ((stream stream) (encoding (eql :ISO-8859-1)))
+  (multiple-value-bind (function arg)
+                       (stream-reader stream)
+    (if (is-binary-stream stream)
+      #-(or MCL LispWorks)
+      (multiple-value-bind (reader arg)
+                           (stream-reader stream)
+        (values #'(lambda (function.arg &aux byte)
+                    (setf byte (funcall-function.arg function.arg))
+                    (when (integerp byte) byte))
+                (cons reader arg)
+                encoding))
+      #+(or MCL LispWorks)
+      (values function arg encoding)
+      ;; character streams must be mapped back to binary
+      (values #'(lambda (function.arg &aux char)
+                  (setf char (funcall-function.arg function.arg))
+                  (when (characterp char)
+                    ;; hardcore tracing 
+                    ;; (write-char char *trace-output*)
+                    (char-code char)))
+              (cons function arg)
+              encoding))))
+
+(defMethod decoding-stream-reader
+           ((stream stream) (encoding (eql :US-ASCII)))
+  (multiple-value-bind (function arg)
+                       (stream-reader stream)
+    (if (is-binary-stream stream)
+      #-(or MCL LispWorks)
+      (multiple-value-bind (reader arg)
+                           (stream-reader stream)
+        (values #'(lambda (function.arg &aux byte)
+                    (setf byte (funcall-function.arg function.arg))
+                    (when (integerp byte) byte))
+                (cons reader arg)
+                encoding))
+      #+(or MCL LispWorks)
+      (values function arg encoding)
+      ;; character streams must be mapped back to binary
+      (values #'(lambda (function.arg &aux char)
+                  (setf char (funcall-function.arg function.arg))
+                  (when (characterp char)
+                    (char-code char)))
+              (cons function arg)
+              encoding))))
+
+#+digitool ;; fix eol
+(defMethod encoding-stream-writer
+           ((stream stream) (encoding (eql :ISO-8859-1)))
+  (multiple-value-bind (function arg)
+                       (stream-writer stream)
+    (if (is-binary-stream stream)
+      (values #'(lambda (function.arg char)
+                  (funcall-function.arg function.arg 
+                                        (if (= (char-code char) #x0a)
+                                          #x0d
+                                          (char-code char))))
+              (cons function arg)
+              encoding)
+      (values #'(lambda (function.arg char)
+                  (funcall-function.arg function.arg 
+                                        (if (= (char-code char) #x0a)
+                                          #.(code-char #x0d)
+                                          char)))
+              (cons function arg)
+              encoding))))
+
+#-digitool
+(defMethod encoding-stream-writer
+           ((stream stream) (encoding (eql :ISO-8859-1)))
+  (if (is-binary-stream stream)
+    (multiple-value-bind (function arg)
+                         (stream-writer stream)
+      (values #'(lambda (function.arg char)
+                  (funcall-function.arg function.arg (char-code char)))
+              (cons function arg)
+              encoding))
+    (multiple-value-bind (function arg)
+                         (stream-writer stream)
+      (values function arg encoding))))
+
+(defMethod encoding-stream-writer
+           ((stream stream) (encoding (eql :US-ASCII)))
+  (multiple-value-bind (function arg)
+                       (stream-writer stream)
+    #+digitool
+    (if (is-binary-stream stream)
+      (values #'(lambda (function.arg char)
+                  (funcall-function.arg function.arg 
+                                        (if (= (char-code char) #x0a)
+                                          #x0d
+                                          (char-code char))))
+              (cons function arg)
+              encoding)
+      (values #'(lambda (function.arg char)
+                  (funcall-function.arg function.arg 
+                                        (if (= (char-code char) #x0a)
+                                          #.(code-char #x0d)
+                                          char)))
+              (cons function arg)
+              encoding))
+    #-digitool
+    (if (is-binary-stream stream)
+      (values #'(lambda (function.arg char)
+                  (funcall-function.arg function.arg (char-code char)))
+              (cons function arg)
+              encoding)
+      (values function arg encoding))))
+
+;;
+;;
+;; UTF-16 distinguishes encoding order:
+;; UTF-16LE is UTF16 in "little-endian" byte order. (order mark is 0xFF 0xFE)
+;; UTF-16BE is UTF16 in "big-endian" byte order. (order mark is 0xFE 0xFF)
+
+(defMethod decoding-stream-reader
+           ((stream stream) (encoding (eql :UTF-16)))
+  (decoding-stream-reader stream *default-utf-16-encoding*))
+
+(defMethod encoding-stream-writer
+           ((stream stream) (encoding (eql :UTF-16)))
+  (encoding-stream-writer stream *default-utf-16-encoding*))
+
+
+(defMethod decoding-stream-reader
+           ((stream stream) (encoding (eql :UTF-16-12)))
+  (unless (is-binary-stream stream)
+    (warn "stream type not compatible with encoding: ~s: ~s."
+          (stream-element-type stream) encoding))
+  (multiple-value-bind (function arg)
+                       (stream-reader stream)
+    (values #'(lambda (function.arg)
+                (declare (optimize (speed 3) (safety 0)))
+                (block read-utf-16-datum
+                  (flet ((read-byte-code (&aux byte)
+                           (setf byte (funcall-function.arg function.arg))
+                           (if (integerp byte) byte
+                               (return-from read-utf-16-datum nil))))
+                    (declare (ftype (function () fixnum) read-byte-code))
+                    (+ (lsh (read-byte-code) 8) (read-byte-code)))))
+            (cons function arg)
+            encoding)))
+
+(defMethod encoding-stream-writer
+           ((stream stream) (encoding (eql :UTF-16-12)))
+  (unless (is-binary-stream stream)
+    (warn "stream type not compatible with encoding: ~s: ~s."
+          (stream-element-type stream) encoding))
+  (multiple-value-bind (function arg)
+                       (stream-writer stream)
+    (values #'(lambda (function.arg datum)
+                (setf datum (char-code datum))
+                (funcall-function.arg function.arg (logand #xff (lsh datum -8)))
+                (funcall-function.arg function.arg (logand #xff datum)))
+            (cons function arg))))
+
+
+(defMethod decoding-stream-reader
+           ((stream stream) (encoding (eql :UTF-16-21)))
+  (unless (is-binary-stream stream)
+    (warn "stream type not compatible with encoding: ~s: ~s."
+          (stream-element-type stream) encoding))
+  (multiple-value-bind (function arg)
+                       (stream-reader stream)
+    (values #'(lambda (function.arg)
+                (declare (optimize (speed 3) (safety 0)))
+                (block read-utf-16-datum
+                  (flet ((read-byte-code (&aux byte)
+                           (setf byte (funcall-function.arg function.arg))
+                           (if (integerp byte) byte
+                               (return-from read-utf-16-datum nil))))
+                    (declare (ftype (function () fixnum) read-byte-code))
+                    (+ (read-byte-code) (lsh (read-byte-code) 8)))))
+            (cons function arg)
+            encoding)))
+
+(defMethod encoding-stream-writer
+           ((stream stream) (encoding (eql :UTF-16-21)))
+  (unless (is-binary-stream stream)
+    (warn "stream type not compatible with encoding: ~s: ~s."
+          (stream-element-type stream) encoding))
+  (multiple-value-bind (function arg)
+                       (stream-writer stream)
+    (values #'(lambda (function.arg datum)
+                (setf datum (char-code datum))
+                (funcall-function.arg function.arg (logand #xff datum))
+                (funcall-function.arg function.arg (logand #xff (lsh datum -8))))
+            (cons function arg))))
+
+
+
+;;
+;;
+;; detect encoding by reading the initial content. works for binary streams only
+
+(defMethod decoding-stream-reader
+       ((stream stream) (encoding (eql :autodetect)) &aux byte0 byte1 to-reread)
+  "see PR-xml Appendix F"
+  (multiple-value-bind (reader arg) (stream-reader stream)
+    (flet ((next-byte (&aux (byte (funcall reader arg)))
+             (typecase byte
+               (fixnum byte)
+               (t nil))))
+      (case (setf byte0 (next-byte))
+        (#x00 (case (next-byte)
+                (#x00 (case (next-byte)
+                        (#x3c (if (= (next-byte) #x00)
+                                (setf encoding :UCS-4-2143 to-reread "<")
+                                (error "markup stream corrupt: ~s." stream)))
+                        (#x00 (if (= (next-byte) #x3c)
+                                (setf encoding :UCS-4-1234 to-reread "<")
+                                (error "markup stream corrupt: ~s." stream)))
+                        (#xFE (if (= (next-byte) #xFF)
+                                (setf encoding :UCS-4-1234 to-reread nil)
+                                (error "markup stream corrupt: ~s." stream)))
+                        (#xFF (if (= (next-byte) #xFE)
+                                (setf encoding :UCS-4-2143 to-reread nil)
+                                (error "markup stream corrupt: ~s." stream)))
+                        (t (error "markup stream corrupt: ~s." stream))))
+                (#x3c (if (= (setf byte1 (next-byte)) #x00)
+                        (case (setf byte1 (next-byte))
+                          (#x00 (setf encoding :UCS-4-3412 to-reread "<"))
+                          (#x3f
+                           (when *xml-verbose*
+                             (warn "assuming UTF-16-12 encoding for stream: ~s." stream))
+                           (setf encoding :UTF-16-12 to-reread "<?"))
+                          (t (|EC: Byte Order Mark| :data (list #x00 #x3c #x00 byte1))))
+                        (|EC: Byte Order Mark| :data (list #x00 #x3c byte1))))
+                (t
+                 (error "markup stream corrupt: ~s." stream))))
+        (#x3c (case (setf byte1 (next-byte))
+                (#x00 (case (setf byte1 (next-byte))
+                        (#x3f (case (setf byte1 (next-byte))
+                                (#x00
+                                 (when *xml-verbose*
+                                   (warn "assuming UTF-16-21 encoding for stream: ~s." stream))
+                                 (setf encoding :UTF-16-21 to-reread "<?"))
+                                (t
+                                 (|EC: Byte Order Mark| :data (list #x3c #x00 #x3f byte1)))))
+                        (#x00 (if (= (next-byte) #x00)
+                                (setf encoding :UCS-4-4321 to-reread "<")
+                                (|EC: Byte Order Mark| :data (list #x3c #x00 #x00 byte1))))
+                        (t
+                         (|EC: Byte Order Mark| :data (list #x3c #x00 byte1)))))
+                (#x3f (setf encoding *default-binary-encoding* to-reread "<?"))
+                (t
+                 (unless (or (xml-initial-namechar? byte1) (= byte1 #.(char-code #\!)))
+                   (when *xml-verbose* 
+                     (warn "assuming UTF-8 encoding for stream: ~s." stream)))
+                 (setf encoding *default-binary-encoding* to-reread (list byte0 byte1)))))
+        (#xEF (case (setf byte1 (next-byte))
+                (#xBB (if (= (setf byte1 (next-byte)) #xBF)
+                        (setf encoding :UTF-8 to-reread nil)
+                        (|EC: Byte Order Mark| :data (list #xEF #xBB byte1))))
+                (t
+                 (|EC: Byte Order Mark| :data (list #xEF byte1)))))
+        (#xff
+         (if (= (setf byte1 (next-byte)) #xfe)
+           (let ((byte2 (next-byte)) (byte3 (next-byte)))
+             (if (and (= byte2 0) (= byte3 0))
+               (setf encoding :UCS4-4321 to-reread nil)
+               (setf encoding :UTF-16-21 to-reread (list (+ byte2 (lsh byte3 8))))))
+           (|EC: Byte Order Mark| :data (list #xff byte1))))
+        (#xfe
+         (if (= (setf byte1 (next-byte)) #xff)
+           (let ((byte2 (next-byte)) (byte3 (next-byte)))
+             (if (and (= byte2 0) (= byte3 0))
+               (setf encoding :UCS4-3412 to-reread nil)
+               (setf encoding :UTF-16-12 to-reread (list (+ (lsh byte2 8) byte3)))))
+           (|EC: Byte Order Mark| :data (list #xfe byte1))))
+        ((nil) ;; no data in stream
+         (setf encoding :UTF-8 to-reread nil))
+        (t
+         (when *xml-verbose* 
+           (warn "assuming UTF-8 encoding for stream: ~s." stream))
+         (setf encoding :UTF-8 to-reread (list byte0))))
+      (multiple-value-bind (reader arg encoding) (decoding-stream-reader stream encoding)
+        (values reader arg encoding to-reread)))))
+    
+
+
+#|
+
+(defun utf-8-decoding (byte1 &optional (byte2 0) (byte3 0) (byte4 0) &rest ignore)
+  (declare (ignore ignore))
+  (cond ((= 0 (logand #x80 byte1))
+         (values byte1 1))
+        ((= #xc0 (logand #xe0 byte1))
+         (values (logior (lsh (logand byte1 #x1f) 6) (logand byte2 #x3f))
+                 2))
+        ((= #xe0 (logand #xf0 byte1))
+         (values (logior (logior (lsh (logand byte1 #x0f) 12) (lsh (logand byte2 #x3f) 6)) (logand byte3 #x3f))
+                 3))
+        ((= #xf0 (logand #xf8 byte1))
+         (values (logior (logior (lsh (logand byte1 #x03) 18)
+                                 (lsh (logand byte2 #x3f) 12))
+                         (logior (lsh (logand byte3 #x3f) 6)
+                                 (logand byte4 #x3f)))
+                 4))
+        (t
+         (xml-error "illegal UTF-8 data: #x~2,'0x." byte1))))
+
+(xml-namechar? (utf-8-decoding 194 183 0 0))
+(xml-space? (utf-8-decoding 239 187 191))
+
+(apply #'utf-8-decoding (map 'list #'char-code "༤"))
+
+(defun utf-8-decodingXstring (string)
+  (handler-case
+    (apply #'utf-8-decoding (map 'list #'char-code string))
+    (error (condition) (format nil "~s(~{~2,'0x~}) -> ~a"
+                               string (map 'list #'char-code string)
+                               condition))))
+
+(format nil "~{~8,'0x~^~%~}" (mapcar #'(lambda (string) (multiple-value-list
+                                                         (utf-8-decodingXstring string)))
+                                    '("퟿" "氏" "" "�" "ð€")))
+
+(defGeneric decode-utf8 (source)
+  (:method ((string string)) (decode-utf8 (map 'list #'char-code string)))
+  (:method ((vector vector)) (decode-utf8 (map 'list #'identity vector)))
+  (:method ((source list))
+           (let ((result nil))
+             (loop (unless source (return (reverse result)))
+                   (multiple-value-bind (decoded code-unit-count)
+                                        (apply #'utf-8-decoding source)
+                     (push (cons (if (< decoded char-code-limit)
+                                   (cons (code-char decoded) (format nil "#u~4,'0x" decoded))
+                                   (format nil "#u~4,'0x" decoded))
+                                 code-unit-count)
+                           result)
+                     (setf source (nthcdr code-unit-count source)))))))
+
+(decode-utf8 "asdfqwer")
+(decode-utf8 "퟿")
+(decode-utf8 #(#x3c #x42 #x69 #x72 #x74 #x68 #x43 #x69 #x74 #x79 #x3e #x4b #xef #xbf #xbd #x2f
+               #x42 #x69 #x72 #x74 #x68 #x43 #x69 #x74 #x79 #x3e))
+
+from the 3.1 unicode report
+
+                              Table 3.1.
+                                                  UTF-8 Bit Distribution
+      Scalar Value      UTF-16           1st Byte   2nd Byte   3rd Byte   4th Byte
+    00000000 0xxxxxxx 00000000 0xxxxxxx  0xxxxxxx
+
+    00000yyy yyxxxxxx 00000yyy yyxxxxxx  110yyyyy   10xxxxxx
+
+    zzzzyyyy yyxxxxxx zzzzyyyy yyxxxxxx  1110zzzz   10yyyyyy   10xxxxxx
+            
+    000uuuuu zzzzyyyy 110110ww wwzzzzyy  11110uuu   10uuzzzz   10yyyyyy   10xxxxxx
+    yyxxxxxx          110111yy yyxxxxxx 
+                    
+Where uuuuu = wwww + 1 (to account for addition of 1000016 as in Section 3.7, Surrogates). 
+
+|#
+:EOF



More information about the Cl-xml-cvs mailing list