(module reader mzscheme
  (require (lib "unitsig.ss")
           (lib "list.ss")
           (lib "etc.ss"))
  
  (require "sig.ss")
  
  (provide reader@)
  
  (define reader@
    (unit/sig reader^
      (import xml-structs^)
      
      ;; Start-tag ::= (make-start-tag Location Location Symbol (listof Attribute))
      (define-struct (start-tag source) (name attrs))
      
      ;; End-tag ::= (make-end-tag Location Location Symbol)
      (define-struct (end-tag source) (name))
      
      ;; Token ::= Contents | Start-tag | End-tag | Eof
      
      (define read-comments (make-parameter #f))
      (define collapse-whitespace (make-parameter #f))
      
      ;; read-xml : [Input-port] -> Document
      (define read-xml
        (opt-lambda ([in (current-input-port)])
          (let*-values ([(in pos) (positionify in)]
                        [(misc0 start) (read-misc in pos)])
            (make-document (make-prolog misc0 #f)
                           (read-xml-element-helper pos in start)
                           (let ([loc-before (pos)])
                             (let-values ([(misc1 end-of-file) (read-misc in pos)])
                               (unless (eof-object? end-of-file)
                                 (let ([loc-after (pos)])
                                   (parse-error (list-immutable
                                                 (make-srcloc
                                                  (object-name in)
                                                  #f
                                                  #f
                                                  (location-offset loc-before)
                                                  (- (location-offset loc-after)
                                                     (location-offset loc-before))))
                                                "extra stuff at end of document ~a"
                                                end-of-file)))
                               misc1))))))
      
      ;; read-xml/element : [Input-port] -> Element
      (define read-xml/element
        (opt-lambda ([in (current-input-port)])
          (let-values ([(in pos) (positionify in)])
            (skip-space in)
            (read-xml-element-helper pos in (lex in pos)))))
      
      ;; read-xml-element-helper : Nat Iport Token -> Element
      (define (read-xml-element-helper pos in start)
        (cond
          [(start-tag? start) (read-element start in pos)]
          [(element? start) start]
          [else (parse-error (list-immutable
                              (make-srcloc
                               (object-name in)
                               #f
                               #f
                               1
                               (- (location-offset (pos)) 1)))
                             "expected root element - received ~a"
                             start)]))
      
      ;; read-misc : Input-port (-> Location) -> (listof Misc) Token
      (define (read-misc in pos)
        (let read-more ()
          (let ([x (lex in pos)])
            (cond
              [(pi? x)
               (let-values ([(lst next) (read-more)])
                 (values (cons x lst) next))]
              [(comment? x)
               (let-values ([(lst next) (read-more)])
                 (if (read-comments)
                     (values (cons x lst) next)
                     (values lst next)))]
              [(and (pcdata? x) (andmap char-whitespace? (string->list (pcdata-string x))))
               (read-more)]
              [else (values null x)]))))
      
      ;; read-element : Start-tag Input-port (-> Location) -> Element
      (define (read-element start in pos)
        (let ([name (start-tag-name start)]
              [a (source-start start)]
              [b (source-stop start)])
          (let read-content ([k (lambda (body end-loc)
                                  (make-element
                                   a end-loc name (start-tag-attrs start)
                                   body))])
            (let ([x (lex in pos)])
              (cond
                [(eof-object? x)
                 (parse-error (list-immutable
                               (make-srcloc
                                (object-name in)
                                #f
                                #f
                                (location-offset (source-start start))
                                (- (location-offset (source-stop start))
                                   (location-offset (source-start start)))))
                              "unclosed `~a' tag at [~a ~a]"
                              name
                              (format-source a)
                              (format-source b))]
                [(start-tag? x)
                 (let ([next-el (read-element x in pos)])
                   (read-content (lambda (body end-loc)
                                   (k (cons next-el body)
                                      end-loc))))]
                [(end-tag? x)
                 (let ([end-loc (source-stop x)])
                   (unless (eq? name (end-tag-name x))
                     (parse-error
                      (list-immutable
                       (make-srcloc (object-name in)
                                    #f
                                    #f
                                    (location-offset a)
                                    (- (location-offset b) (location-offset a)))
                       (make-srcloc (object-name in)
                                    #f
                                    #f
                                    (location-offset (source-start x))
                                    (- (location-offset end-loc) (location-offset (source-start x)))))
                      "start tag `~a' at [~a ~a] doesn't match end tag `~a' at [~a ~a]"
                      name
                      (format-source a)
                      (format-source b)
                      (end-tag-name x)
                      (format-source (source-start x))
                      (format-source end-loc)))
                   (k null end-loc))]
                [(entity? x) (read-content (lambda (body end-loc)
                                             (k (cons (expand-entity x) body)
                                                end-loc)))]
                [(comment? x) (if (read-comments)
                                  (read-content (lambda (body end-loc) (k (cons x body) end-loc)))
                                  (read-content k))]
                [else (read-content (lambda (body end-loc) (k (cons x body) end-loc)))])))))
      
      ;; expand-entity : Entity -> (U Entity Pcdata)
      ;; more here - allow expansion of user defined entities
      (define (expand-entity x)
        (let ([expanded (default-entity-table (entity-text x))])
          (if expanded
              (make-pcdata (source-start x) (source-stop x) expanded)
              x)))
      
      ;; default-entity-table : Symbol -> (U #f String)
      (define (default-entity-table name)
        (case name
          [(amp) "&"]
          [(lt) "<"]
          [(gt) ">"]
          [(quot) "\""]
          [(apos) "'"]
          [else #f]))
      
      ;; lex : Input-port (-> Location) -> (U Token special)
      (define (lex in pos)
        (let ([c (peek-char-or-special in)])
          (cond
            [(eof-object? c) c]
            [(eq? c #\&) (lex-entity in pos)]
            [(eq? c #\<) (lex-tag-cdata-pi-comment in pos)]
            [(not (char? c)) (read-char-or-special in)]
            [else (lex-pcdata in pos)])))
      
      ; lex-entity : Input-port (-> Location) -> Entity
      ; pre: the first char is a #\&
      (define (lex-entity in pos)
        (let ([start (pos)])
          (read-char in)
          (let ([data (case (peek-char in)
                        [(#\#)
                         (read-char in)
                         (let ([n (case (peek-char in)
                                    [(#\x) (read-char in)
                                     (string->number (read-until #\; in pos) 16)]
                                    [else (string->number (read-until #\; in pos))])])
                           (unless (number? n)
                             (lex-error in pos "malformed numeric entity"))
                           n)]
                        [else
                         (begin0
                           (lex-name in pos)
                           (unless (eq? (read-char in) #\;)
                             (lex-error in pos "expected ; at the end of an entity")))])])
            (make-entity start (pos) data))))
      
      ; lex-tag-cdata-pi-comment : Input-port (-> Location) -> Start-tag | Element | End-tag | Cdata | Pi | Comment
      ; pre: the first char is a #\<
      (define (lex-tag-cdata-pi-comment in pos)
        (let ([start (pos)])
          (read-char in)
          (case (non-eof peek-char-or-special in pos)
            [(#\!)
             (read-char in)
             (case (non-eof peek-char in pos)
               [(#\-) (read-char in)
                (unless (eq? (read-char-or-special in) #\-)
                  (lex-error in pos "expected second - after <!-"))
                (let ([data (lex-comment-contents in pos)])
                  (unless (eq? (read-char in) #\>)
                    (lex-error in pos "expected > to end comment (\"--\" can't appear in comments)"))
                  ;(make-comment start (pos) data)
                  (make-comment data))]
               [(#\[) (read-char in)
                (unless (string=? (read-string 6 in) "CDATA[")
                  (lex-error in pos "expected CDATA following <["))
                (let ([data (lex-cdata-contents in pos)])
                  (make-cdata start (pos) (format "<![CDATA[~a]]>" data)))]
               [else (skip-dtd in pos)
                     (skip-space in)
                     (unless (eq? (peek-char-or-special in) #\<)
                       (lex-error in pos "expected pi, comment, or element after doctype"))
                     (lex-tag-cdata-pi-comment in pos)])]
            [(#\?) (read-char in)
             (let ([name (lex-name in pos)])
               (skip-space in)
               (let ([data (lex-pi-data in pos)])
                 (make-pi start (pos) name data)))]
            [(#\/) (read-char in)
             (let ([name (lex-name in pos)])
               (skip-space in)
               (unless (eq? (read-char-or-special in) #\>)
                 (lex-error in pos "expected > to close ~a's end tag" name))
               (make-end-tag start (pos) name))]
            [else ; includes 'special, but lex-name will fail in that case
             (let ([name (lex-name in pos)]
                   [attrs (lex-attributes in pos)])
               (skip-space in)
               (case (read-char-or-special in)
                 [(#\/)
                  (unless (eq? (read-char in) #\>)
                    (lex-error in pos "expected > to close empty element ~a" name))
                  (make-element start (pos) name attrs null)]
                 [(#\>) (make-start-tag start (pos) name attrs)]
                 [else (lex-error in pos "expected / or > to close tag `~a'" name)]))])))
      
      ;; lex-attributes : Input-port (-> Location) -> (listof Attribute)
      (define (lex-attributes in pos)
        (sort (let loop ()
                (skip-space in)
                (cond [(name-start? (peek-char-or-special in))
                       (cons (lex-attribute in pos) (loop))]
                      [else null]))
              (lambda (a b)
                (let ([na (attribute-name a)]
                      [nb (attribute-name b)])
                  (cond
                   [(eq? na nb) (lex-error in pos "duplicated attribute name ~a" na)]
                   [else (string<? (symbol->string na) (symbol->string nb))])))))

      ;; lex-attribute : Input-port (-> Location) -> Attribute
      (define (lex-attribute in pos)
        (let ([start (pos)]
              [name (lex-name in pos)])
          (skip-space in)
          (unless (eq? (read-char in) #\=)
            (lex-error in pos "expected = in attribute ~a" name))
          (skip-space in)
          ;; more here - handle entites and disallow "<"
          (let* ([delimiter (read-char-or-special in)]
                 [value (case delimiter
                          [(#\' #\")
                           (list->string
                            (let read-more ()
                              (let ([c (non-eof peek-char-or-special in pos)])
                                (cond
                                  [(eq? c 'special)
                                   (lex-error in pos "attribute values cannot contain non-text values")]
                                  [(eq? c delimiter) (read-char in) null]
                                  [(eq? c #\&)
                                   (let ([entity (expand-entity (lex-entity in pos))])
                                     (if (pcdata? entity)
                                         (append (string->list (pcdata-string entity)) (read-more))
                                         ;; more here - do something with user defined entites
                                         (read-more)))]
                                  [else (read-char in) (cons c (read-more))]))))]
                          [else (if (char? delimiter)
                                    (lex-error in pos "attribute values must be in ''s or in \"\"s")
                                    delimiter)])])
            (make-attribute start (pos) name value))))
      
      ;; skip-space : Input-port -> Void
      ;; deviation - should sometimes insist on at least one space
      (define (skip-space in)
        (let loop ()
          (let ([c (peek-char-or-special in)])
            (when (and (char? c)
                       (char-whitespace? c))
              (read-char in)
              (loop)))))
      
      ;; lex-pcdata : Input-port (-> Location) -> Pcdata
      ;; deviation - disallow ]]> "for compatability" with SGML, sec 2.4 XML spec 
      (define (lex-pcdata in pos)
        (let ([start (pos)]
              [data (let loop ()
                      (let ([next (peek-char-or-special in)])
                        (cond
                          [(or (eof-object? next)
			       (not (char? next))
			       (eq? next #\&)
			       (eq? next #\<))
                           null]
                          [(and (char-whitespace? next) (collapse-whitespace))
                           (skip-space in)
                           (cons #\space (loop))]
                          [else (cons (read-char in) (loop))])))])
          (make-pcdata start
                       (pos)
                       (list->string data))))
      
      ;; lex-name : Input-port (-> Location) -> Symbol
      (define (lex-name in pos)
        (let ([c (non-eof read-char-or-special in pos)])
          (unless (name-start? c)
            (lex-error in pos "expected name, received ~s" c))
          (string->symbol
           (list->string
            (cons c (let lex-rest ()
                      (let ([c (non-eof peek-char-or-special in pos)])
                        (cond
                         [(eq? c 'special)
                          (lex-error in pos "names cannot contain non-text values")]
                         [(name-char? c)
                          (cons (read-char in) (lex-rest))]
                         [else null]))))))))
      
      ;; skip-dtd : Input-port (-> Location) -> Void
      (define (skip-dtd in pos)
        (let skip ()
          (case (non-eof read-char in pos)
            [(#\') (read-until #\' in pos) (skip)]
            [(#\") (read-until #\" in pos) (skip)]
            [(#\<)
             (case (non-eof read-char in pos)
               [(#\!) (case (non-eof read-char in pos)
                        [(#\-) (read-char in) (lex-comment-contents in pos) (read-char in) (skip)]
                        [else (skip) (skip)])]
               [(#\?) (lex-pi-data in pos) (skip)]
               [else (skip) (skip)])]
            [(#\>) (void)]
            [else (skip)])))
      
      ;; name-start? : Char -> Bool
      (define (name-start? ch)
        (and (char? ch)
             (or (char-alphabetic? ch)
                 (eq? ch #\_)
                 (eq? ch #\:))))
      
      ;; name-char? : Char -> Bool
      (define (name-char? ch)
        (and (char? ch)
             (or (name-start? ch)
                 (char-numeric? ch)
                 (eq? ch #\.)
                 (eq? ch #\-))))
      
      ;; read-until : Char Input-port (-> Location) -> String
      ;; discards the stop character, too
      (define (read-until char in pos)
        (list->string
         (let read-more ()
           (let ([c (non-eof read-char in pos)])
             (cond
               [(eq? c char) null]
               [else (cons c (read-more))])))))
      
      ;; non-eof : (Input-port -> (U Char Eof)) Input-port (-> Location) -> Char
      (define (non-eof f in pos)
        (let ([c (f in)])
          (cond
            [(eof-object? c) (lex-error in pos "unexpected eof")]
            [else c])))
      
      ;; gen-read-until-string : String -> Input-port (-> Location) -> String
      ;; uses Knuth-Morris-Pratt from
      ;; Introduction to Algorithms, Cormen, Leiserson, and Rivest, pages 869-876
      ;; discards stop from input
      (define (gen-read-until-string stop)
        (let* ([len (string-length stop)]
               [prefix (make-vector len 0)]
               [fall-back
                (lambda (k c)
                  (let ([k (let loop ([k k])
                             (cond
                               [(and (> k 0) (not (eq? (string-ref stop k) c)))
                                (loop (vector-ref prefix (sub1 k)))]
                               [else k]))])
                    (if (eq? (string-ref stop k) c)
                        (add1 k)
                        k)))])
          (let init ([k 0] [q 1])
            (when (< q len)
              (let ([k (fall-back k (string-ref stop q))])
                (vector-set! prefix q k)
                (init k (add1 q)))))
          ;; (vector-ref prefix x) = the longest suffix that matches a prefix of stop
          (lambda (in pos)
            (list->string
             (let/ec out
               (let loop ([matched 0] [out out])
                 (let* ([c (non-eof read-char in pos)]
                        [matched (fall-back matched c)])
                   (cond
                     [(= matched len) (out null)]
                     [(zero? matched) (cons c (let/ec out (loop matched out)))]
                     [else (cons c (loop matched out))]))))))))
      
      ;; "-->" makes more sense, but "--" follows the spec.
      (define lex-comment-contents (gen-read-until-string "--"))
      (define lex-pi-data (gen-read-until-string "?>"))
      (define lex-cdata-contents (gen-read-until-string "]]>"))
      
      ;; positionify : Input-port -> Input-port (-> Location)
      ; This function predates port-count-lines! and port-next-location.
      ; Otherwise I would have used those directly at the call sites.
      (define (positionify in)
        (port-count-lines! in)
        (values
         in
         (lambda ()
           (let-values ([(line column offset) (port-next-location in)])
             (make-location line column offset)))))
      
      ;; locs : (listof (list number number))
      (define-struct (exn:xml exn:fail:read) ())
      
      ;; lex-error : Input-port String (-> Location) TST* -> alpha
      ;; raises a lexer error, using exn:xml
      (define (lex-error in pos str . rest)
        (let* ([the-pos (pos)]
               [offset (location-offset the-pos)])
          (raise
           (make-exn:xml
            (string->immutable-string
             (format "read-xml: lex-error: at position ~a: ~a" 
                     (format-source the-pos)
                     (apply format str rest)))
            (current-continuation-marks)
            (list-immutable (make-srcloc 
                             (object-name in)
                             #f
                             #f
                             offset
                             1))))))
      
      ;; parse-error : (listof srcloc) (listof TST) *-> alpha
      ;; raises a parsing error, using exn:xml
      (define (parse-error src fmt . args)
        (raise (make-exn:xml
                (string->immutable-string
                 (apply format (string-append "read-xml: parse-error: " fmt) args))
                (current-continuation-marks)
                src)))
      
      ;; format-source : Location -> string
      ;; to format the source location for an error message
      (define (format-source loc)
        (if (location? loc)
            (format "~a.~a/~a" (location-line loc) (location-char loc) (location-offset loc))
            (format "~a" loc))))))
