aboutsummaryrefslogtreecommitdiff
path: root/module/sxml/namespaced.scm
blob: 846f8f25a5f9fe62c153056aa34167af7302ac5a (plain)
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
(define-module (sxml namespaced)
  :use-module (sxml ssax)
  :use-module (sxml util)
  :use-module (ice-9 match)
  :use-module (srfi srfi-1)
  :use-module (srfi srfi-9)
  :use-module (srfi srfi-9 gnu)
  :use-module (srfi srfi-71)
  :use-module (srfi srfi-88)
  :use-module (hnh util state-monad)
  :use-module ((hnh util io) :select (->port))
  :export (xml->namespaced-sxml
           namespaced-sxml->xml
           namespaced-sxml->sxml
           namespaced-sxml->sxml/namespaces
           sxml->namespaced-sxml
           xml

           make-xml-element
           xml-element?
           xml-element-tagname xml-element-namespace xml-element-attributes

           make-pi-element
           pi-element?
           pi-tag
           pi-body
           ))

;; XML processing instruction elements (and other things with identical syntax)
;; For example: <?xml version="1.0" encoding="utf-8"?> would be encoded as
;; (make-pi-element 'xml "version=\"1.0\" encoding=\"utf-8\"")
;; tag should always be a symbol
;; body should always be a string
(define-record-type <pi-element>
  (make-pi-element tag body)
  pi-element?
  (tag pi-tag)
  (body pi-body))


(define-record-type <xml-element>
  (make-xml-element tagname namespace attributes)
  xml-element?
  (tagname xml-element-tagname)
  (namespace xml-element-namespace)
  (attributes xml-element-attributes))


(define xml
  (case-lambda
    ((tag) (make-xml-element tag #f '()))
    ((ns tag) (make-xml-element tag ns '()))
    ((ns tag attrs) (make-xml-element tag ns attrs))))


(define* (parser key: trim-whitespace?)
 (ssax:make-parser

  ;; DOCTYPE
  ;; (lambda (port docname systemid internal-subset? seed)
  ;;   (format (current-error-port)
  ;;           "doctype: port=~s, docname=~s, systemid=~s, internal-subset?=~s, seed=~s~%"
  ;;           port docname systemid internal-subset? seed)
  ;;   (values #f '() '() seed))

  ;; UNDECL-ROOT
  ;; (lambda (elem-gi seed)
  ;;   (format (current-error-port) "Undecl-root: ~s~%" elem-gi)
  ;;   (values #f '() '() seed))

  ;; DECL-ROOT
  ;; (lambda (elem-gi seed)
  ;;   (format (current-error-port) "Decl-root: ~s~%" elem-gi)
  ;;   seed)

  NEW-LEVEL-SEED
  (lambda (elem-gi attributes namespaces expected-content seed)
    (cons
     (list
      (match elem-gi
        ((ns . tag) (make-xml-element tag ns attributes))
        (tag (make-xml-element tag #f attributes))))
     seed))

  FINISH-ELEMENT
  (lambda (elem-gi attributes namespaces parent-seed seed)
    (match seed
      (((self . self-children) (parent . children) . rest)
       `((,parent (,self ,@(reverse self-children)) ,@children)
         ,@rest))))

  CHAR-DATA-HANDLER
  (lambda (str1 str2 seed)
    (define s
      (if trim-whitespace?
          (string-trim-both (string-append str1 str2))
          (string-append str1 str2)))
    (cond ((string-null? s) seed)
          (else
           (match seed
             (((parent . children) . rest)
              `((,parent ,(string-append str1 str2)
                         ,@children)
                ,@rest))))))

  PI
  ((*DEFAULT* . (lambda (port pi-tag seed)
                  (let ((body (ssax:read-pi-body-as-string port)))
                    (match seed
                      (((parent . children) . rest)
                       `((,parent ,(make-pi-element pi-tag body) ,@children)
                         ,@rest)))))))
  ))


(define* (xml->namespaced-sxml port-or-string key: (trim-whitespace? #t))
  (match (with-ssax-error-to-port
          (current-error-port)
          (lambda () ((parser trim-whitespace?: trim-whitespace?)
                 (->port port-or-string)
                 '((*TOP*)))))
    ((('*TOP* . items))
     `(*TOP* ,@(reverse items)))))

(define (pi-element->sxml pi)
  `(*PI* ,(pi-tag pi) ,(pi-body pi)))



(define (ns-pair->attribute pair)
  (let ((fqdn short (car+cdr pair)))
    (list (string->symbol (format #f "xmlns:~a" short))
          (symbol->string fqdn))))

;; Takes an association list from full namespace names (as symbols), to their
;; short forms, and returns a list containing xmlns:x-attributes suitable for
;; splicing into scheme's "regular" sxml.
(define (ns-alist->attributes ns)
  (map ns-pair->attribute ns))



(define (get-prefix ns)
  (do namespaces <- (get)
      (cond ((assq-ref namespaces ns) => return)
            (else (do prefix = (gensym "ns")
                      (put (acons ns prefix namespaces))
                      (return prefix))))))


(define (xml-element->sxml el)
  (do tag <- (cond ((xml-element-namespace el)
                    => (lambda (ns)
                         (do pre <- (get-prefix ns)
                             (return
                              (string->symbol
                               (format #f "~a:~a" pre (xml-element-tagname el)))))))
                   (else (return (xml-element-tagname el))))
      (return
       (lambda (children)
         (cond ((null? (xml-element-attributes el))
                `(,tag ,@children))
               (else
                `(,tag (@ ,@(map (lambda (p)
                                   (call-with-values (lambda () (car+cdr p)) list))
                                 (xml-element-attributes el)))
                       ,@children)))))))

(define (sxml->xml-element el namespaces)
  (lambda (children)
    (let ((tag-symb attrs
                    (match el
                      ((tag ('@ attrs ...))
                       (values tag (map (lambda (p) (apply cons p)) attrs)))
                      ((tag) (values tag '())))))
      (let ((parts (string-split (symbol->string tag-symb) #\:)))
        (cons (case (length parts)
                ((1) (xml (assoc-ref namespaces #f)
                          (string->symbol (car parts)) attrs))
                ((2)
                 (cond ((assoc-ref namespaces (string->symbol (car parts)))
                        => (lambda (ns) (xml ns (string->symbol (cadr parts)) attrs)))
                       (else (scm-error 'missing-namespace "sxml->xml-element"
                                        "Unknown namespace prefix encountered: ~s (on tag ~s)"
                                        (list (car parts) (cadr parts))
                                        #f))))
                (else (scm-error 'misc-error "sxml->xml-element"
                                 "Invalid QName: more than one colon ~s"
                                 (list tag-symb) #f)))
              children)))))


(define (namespaced-sxml->sxml* tree)
  (cond ((null? tree)   (return tree))
        ((string? tree) (return tree))
        ((pi-element? tree) (return (pi-element->sxml tree)))
        ((not (pair? tree)) (return tree))
        ((car tree) symbol?
         => (lambda (symb)
              (case symb
                ((*TOP*) (do children <- (sequence (map namespaced-sxml->sxml*
                                                        (cdr tree)))

                             (return (cons '*TOP* children))))
                (else (return tree)))))
        ((xml-element? (car tree))
         (do proc <- (xml-element->sxml (car tree))
             children <- (sequence (map namespaced-sxml->sxml* (cdr tree)))
             (return (proc children))))

        ;; list of xml-element?
        (else (scm-error 'misc-error "namespaced-sxml->sxml*"
                         "Unexpected token in tree: ~s"
                         (list tree)
                         #f))))


;; Takes a tree of namespaced-sxml, and optionally an assoc list from namespace symbols, to prefered prefix.
;; Returns a sxml tree, with xmlns:<prefix>=namespace attributes
(define* (namespaced-sxml->sxml tree optional: (namespace-prefixes '()))
  (let ((tree ns ((namespaced-sxml->sxml* tree) namespace-prefixes)))
    ((get-root-element tree)
     (lambda (root)
       (add-attributes root (ns-alist->attributes ns))))))

(define* (namespaced-sxml->xml tree key:
                               (namespaces '())
                               (port (current-output-port)))
  ((@ (sxml simple) sxml->xml) (namespaced-sxml->sxml tree namespaces) port))

;; Takes a tree of namespaced-sxml, and optionally an assoc list from namespace symbols, to prefered prefix.
;; Returns two values: a sxml tree without declared namespaces
;;      and a association list from namespace symbols, to used prefixes
(define* (namespaced-sxml->sxml/namespaces tree optional: (namespace-prefixes '()))
  ((namespaced-sxml->sxml* tree) namespace-prefixes))

;; Takes an sxml tree, and an association list from prefixes to namespaces
;; Returns a namespaced sxml tree
(define (sxml->namespaced-sxml tree namespaces)
  (match tree
    (('*PI* tag body) (make-pi-element tag body))
    (('*TOP* rest ...)
     `(*TOP* ,@(map (lambda (r) (sxml->namespaced-sxml r namespaces))
                    rest)))
    ((el ('@ attrs ...) rest ...)
     ((sxml->xml-element `(,el (@ ,@attrs)) namespaces)
      (map (lambda (el) (sxml->namespaced-sxml el namespaces))
           rest)))
    ((el rest ...)
     ((sxml->xml-element `(,el) namespaces)
      (map (lambda (el) (sxml->namespaced-sxml el namespaces))
           rest)))
    (atom atom)))

;;; TODO read intro-comment in SSAX file
;;; TODO Figure out how to still use (sxml match) and (sxml xpath) with these
;;;      new trees (probably rewriting to a "regular" sxml tree, and keeping
;;;      a strict mapping of namespaces)