* font.c (font_style_to_value, font_style_symbolic)
[bpt/emacs.git] / lisp / xml.el
CommitLineData
1cd7adc6 1;;; xml.el --- XML parser
47db06aa 2
acaf905b 3;; Copyright (C) 2000-2012 Free Software Foundation, Inc.
47db06aa
GM
4
5;; Author: Emmanuel Briot <briot@gnat.com>
720058f2 6;; Maintainer: Mark A. Hershberger <mah@everybody.org>
a98e819b 7;; Keywords: xml, data
47db06aa
GM
8
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
47db06aa 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
47db06aa
GM
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
47db06aa
GM
23
24;;; Commentary:
25
a98e819b
DL
26;; This file contains a somewhat incomplete non-validating XML parser. It
27;; parses a file, and returns a list that can be used internally by
a1dfa9a3 28;; any other Lisp libraries.
47db06aa
GM
29
30;;; FILE FORMAT
31
a98e819b
DL
32;; The document type declaration may either be ignored or (optionally)
33;; parsed, but currently the parsing will only accept element
a1dfa9a3 34;; declarations. The XML file is assumed to be well-formed. In case
a98e819b
DL
35;; of error, the parsing stops and the XML file is shown where the
36;; parsing stopped.
47db06aa 37;;
a98e819b 38;; It also knows how to ignore comments and processing instructions.
47db06aa
GM
39;;
40;; The XML file should have the following format:
653558a1
GM
41;; <node1 attr1="name1" attr2="name2" ...>value
42;; <node2 attr3="name3" attr4="name4">value2</node2>
43;; <node3 attr5="name5" attr6="name6">value3</node3>
47db06aa 44;; </node1>
a1dfa9a3 45;; Of course, the name of the nodes and attributes can be anything. There can
47db06aa
GM
46;; be any number of attributes (or none), as well as any number of children
47;; below the nodes.
48;;
49;; There can be only top level node, but with any number of children below.
50
51;;; LIST FORMAT
52
c7f8d055
SM
53;; The functions `xml-parse-file', `xml-parse-region' and
54;; `xml-parse-tag' return a list with the following format:
47db06aa
GM
55;;
56;; xml-list ::= (node node ...)
c7f8d055 57;; node ::= (qname attribute-list . child_node_list)
47db06aa
GM
58;; child_node_list ::= child_node child_node ...
59;; child_node ::= node | string
c7f8d055
SM
60;; qname ::= (:namespace-uri . "name") | "name"
61;; attribute_list ::= ((qname . "value") (qname . "value") ...)
47db06aa
GM
62;; | nil
63;; string ::= "..."
64;;
a98e819b
DL
65;; Some macros are provided to ease the parsing of this list.
66;; Whitespace is preserved. Fixme: There should be a tree-walker that
67;; can remove it.
47db06aa 68
c7f8d055
SM
69;; TODO:
70;; * xml:base, xml:space support
71;; * more complete DOCTYPE parsing
72;; * pi support
73
47db06aa
GM
74;;; Code:
75
f6fcdfff
CY
76;; Note that buffer-substring and match-string were formerly used in
77;; several places, because the -no-properties variants remove
78;; composition info. However, after some discussion on emacs-devel,
79;; the consensus was that the speed of the -no-properties variants was
80;; a worthwhile tradeoff especially since we're usually parsing files
81;; instead of hand-crafted XML.
a98e819b 82
47db06aa
GM
83;;*******************************************************************
84;;**
85;;** Macros to parse the list
86;;**
87;;*******************************************************************
88
f8ab034e
MH
89(defconst xml-undefined-entity "?"
90 "What to substitute for undefined entities")
91
6d12a4df
MH
92(defvar xml-entity-alist
93 '(("lt" . "<")
94 ("gt" . ">")
95 ("apos" . "'")
96 ("quot" . "\"")
97 ("amp" . "&"))
98 "The defined entities. Entities are added to this when the DTD is parsed.")
99
100(defvar xml-sub-parser nil
101 "Dynamically set this to a non-nil value if you want to parse an XML fragment.")
102
103(defvar xml-validating-parser nil
104 "Set to non-nil to get validity checking.")
105
971489ea 106(defsubst xml-node-name (node)
47db06aa 107 "Return the tag associated with NODE.
a1dfa9a3
SM
108Without namespace-aware parsing, the tag is a symbol.
109
110With namespace-aware parsing, the tag is a cons of a string
111representing the uri of the namespace with the local name of the
112tag. For example,
113
114 <foo>
115
116would be represented by
117
118 '(\"\" . \"foo\")."
119
971489ea 120 (car node))
47db06aa 121
971489ea 122(defsubst xml-node-attributes (node)
47db06aa
GM
123 "Return the list of attributes of NODE.
124The list can be nil."
971489ea 125 (nth 1 node))
47db06aa 126
971489ea 127(defsubst xml-node-children (node)
47db06aa
GM
128 "Return the list of children of NODE.
129This is a list of nodes, and it can be nil."
971489ea 130 (cddr node))
47db06aa
GM
131
132(defun xml-get-children (node child-name)
133 "Return the children of NODE whose tag is CHILD-NAME.
a1dfa9a3 134CHILD-NAME should match the value returned by `xml-node-name'."
971489ea
SM
135 (let ((match ()))
136 (dolist (child (xml-node-children node))
a1dfa9a3
SM
137 (if (and (listp child)
138 (equal (xml-node-name child) child-name))
139 (push child match)))
971489ea 140 (nreverse match)))
47db06aa 141
9bcd6a7e 142(defun xml-get-attribute-or-nil (node attribute)
47db06aa 143 "Get from NODE the value of ATTRIBUTE.
a1dfa9a3 144Return nil if the attribute was not found.
9bcd6a7e
EZ
145
146See also `xml-get-attribute'."
2e9bdf15 147 (cdr (assoc attribute (xml-node-attributes node))))
9bcd6a7e
EZ
148
149(defsubst xml-get-attribute (node attribute)
150 "Get from NODE the value of ATTRIBUTE.
151An empty string is returned if the attribute was not found.
152
153See also `xml-get-attribute-or-nil'."
154 (or (xml-get-attribute-or-nil node attribute) ""))
47db06aa
GM
155
156;;*******************************************************************
157;;**
158;;** Creating the list
159;;**
160;;*******************************************************************
161
a98e819b 162;;;###autoload
2d42509a 163(defun xml-parse-file (file &optional parse-dtd parse-ns)
a98e819b
DL
164 "Parse the well-formed XML file FILE.
165If FILE is already visited, use its buffer and don't kill it.
47db06aa 166Returns the top node with all its children.
2d42509a
JB
167If PARSE-DTD is non-nil, the DTD is parsed rather than skipped.
168If PARSE-NS is non-nil, then QNAMES are expanded."
882cb60d
RS
169 (if (get-file-buffer file)
170 (with-current-buffer (get-file-buffer file)
171 (save-excursion
172 (xml-parse-region (point-min)
173 (point-max)
174 (current-buffer)
175 parse-dtd parse-ns)))
176 (with-temp-buffer
177 (insert-file-contents file)
178 (xml-parse-region (point-min)
179 (point-max)
180 (current-buffer)
181 parse-dtd parse-ns))))
47db06aa 182
6d12a4df 183
5ed32352
RS
184(defvar xml-name-re)
185(defvar xml-entity-value-re)
0bf41002 186(defvar xml-att-def-re)
63b446bc 187(let* ((start-chars (concat "[:alpha:]:_"))
6d12a4df 188 (name-chars (concat "-[:digit:]." start-chars))
5178753d 189 ;;[3] S ::= (#x20 | #x9 | #xD | #xA)+
6d12a4df 190 (whitespace "[ \t\n\r]"))
06b60517 191 ;;[4] NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6]
5178753d
MH
192 ;; | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF]
193 ;; | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF]
194 ;; | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]
6d12a4df 195 (defvar xml-name-start-char-re (concat "[" start-chars "]"))
5178753d 196 ;;[4a] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040]
6d12a4df 197 (defvar xml-name-char-re (concat "[" name-chars "]"))
5178753d 198 ;;[5] Name ::= NameStartChar (NameChar)*
6d12a4df 199 (defvar xml-name-re (concat xml-name-start-char-re xml-name-char-re "*"))
5178753d 200 ;;[6] Names ::= Name (#x20 Name)*
6d12a4df 201 (defvar xml-names-re (concat xml-name-re "\\(?: " xml-name-re "\\)*"))
5178753d 202 ;;[7] Nmtoken ::= (NameChar)+
6d12a4df 203 (defvar xml-nmtoken-re (concat xml-name-char-re "+"))
5178753d 204 ;;[8] Nmtokens ::= Nmtoken (#x20 Nmtoken)*
6d12a4df 205 (defvar xml-nmtokens-re (concat xml-nmtoken-re "\\(?: " xml-name-re "\\)*"))
5178753d 206 ;;[66] CharRef ::= '&#' [0-9]+ ';' | '&#x' [0-9a-fA-F]+ ';'
6d12a4df 207 (defvar xml-char-ref-re "\\(?:&#[0-9]+;\\|&#x[0-9a-fA-F]+;\\)")
5178753d 208 ;;[68] EntityRef ::= '&' Name ';'
6d12a4df 209 (defvar xml-entity-ref (concat "&" xml-name-re ";"))
5178753d 210 ;;[69] PEReference ::= '%' Name ';'
6d12a4df 211 (defvar xml-pe-reference-re (concat "%" xml-name-re ";"))
5178753d 212 ;;[67] Reference ::= EntityRef | CharRef
6d12a4df 213 (defvar xml-reference-re (concat "\\(?:" xml-entity-ref "\\|" xml-char-ref-re "\\)"))
5178753d 214 ;;[10] AttValue ::= '"' ([^<&"] | Reference)* '"' | "'" ([^<&'] | Reference)* "'"
23d519e4
MH
215 (defvar xml-att-value-re (concat "\\(?:\"\\(?:[^&\"]\\|" xml-reference-re "\\)*\"\\|"
216 "'\\(?:[^&']\\|" xml-reference-re "\\)*'\\)"))
5178753d
MH
217 ;;[56] TokenizedType ::= 'ID' [VC: ID] [VC: One ID per Element Type] [VC: ID Attribute Default]
218 ;; | 'IDREF' [VC: IDREF]
219 ;; | 'IDREFS' [VC: IDREF]
220 ;; | 'ENTITY' [VC: Entity Name]
221 ;; | 'ENTITIES' [VC: Entity Name]
222 ;; | 'NMTOKEN' [VC: Name Token]
223 ;; | 'NMTOKENS' [VC: Name Token]
23d519e4 224 (defvar xml-tokenized-type-re "\\(?:ID\\|IDREF\\|IDREFS\\|ENTITY\\|ENTITIES\\|NMTOKEN\\|NMTOKENS\\)")
5178753d 225 ;;[58] NotationType ::= 'NOTATION' S '(' S? Name (S? '|' S? Name)* S? ')'
23d519e4
MH
226 (defvar xml-notation-type-re (concat "\\(?:NOTATION" whitespace "(" whitespace "*" xml-name-re
227 "\\(?:" whitespace "*|" whitespace "*" xml-name-re "\\)*" whitespace "*)\\)"))
5178753d 228 ;;[59] Enumeration ::= '(' S? Nmtoken (S? '|' S? Nmtoken)* S? ')' [VC: Enumeration] [VC: No Duplicate Tokens]
06b60517 229 (defvar xml-enumeration-re (concat "\\(?:(" whitespace "*" xml-nmtoken-re
23d519e4
MH
230 "\\(?:" whitespace "*|" whitespace "*" xml-nmtoken-re "\\)*"
231 whitespace ")\\)"))
5178753d 232 ;;[57] EnumeratedType ::= NotationType | Enumeration
23d519e4 233 (defvar xml-enumerated-type-re (concat "\\(?:" xml-notation-type-re "\\|" xml-enumeration-re "\\)"))
5178753d
MH
234 ;;[54] AttType ::= StringType | TokenizedType | EnumeratedType
235 ;;[55] StringType ::= 'CDATA'
23d519e4 236 (defvar xml-att-type-re (concat "\\(?:CDATA\\|" xml-tokenized-type-re "\\|" xml-notation-type-re"\\|" xml-enumerated-type-re "\\)"))
5178753d 237 ;;[60] DefaultDecl ::= '#REQUIRED' | '#IMPLIED' | (('#FIXED' S)? AttValue)
23d519e4 238 (defvar xml-default-decl-re (concat "\\(?:#REQUIRED\\|#IMPLIED\\|\\(?:#FIXED" whitespace "\\)*" xml-att-value-re "\\)"))
5178753d 239 ;;[53] AttDef ::= S Name S AttType S DefaultDecl
23d519e4
MH
240 (defvar xml-att-def-re (concat "\\(?:" whitespace "*" xml-name-re
241 whitespace "*" xml-att-type-re
242 whitespace "*" xml-default-decl-re "\\)"))
5178753d
MH
243 ;;[9] EntityValue ::= '"' ([^%&"] | PEReference | Reference)* '"'
244 ;; | "'" ([^%&'] | PEReference | Reference)* "'"
6d12a4df
MH
245 (defvar xml-entity-value-re (concat "\\(?:\"\\(?:[^%&\"]\\|" xml-pe-reference-re
246 "\\|" xml-reference-re "\\)*\"\\|'\\(?:[^%&']\\|"
247 xml-pe-reference-re "\\|" xml-reference-re "\\)*'\\)")))
248;;[75] ExternalID ::= 'SYSTEM' S SystemLiteral
249;; | 'PUBLIC' S PubidLiteral S SystemLiteral
06b60517 250;;[76] NDataDecl ::= S 'NDATA' S
6d12a4df
MH
251;;[73] EntityDef ::= EntityValue| (ExternalID NDataDecl?)
252;;[71] GEDecl ::= '<!ENTITY' S Name S EntityDef S? '>'
253;;[74] PEDef ::= EntityValue | ExternalID
254;;[72] PEDecl ::= '<!ENTITY' S '%' S Name S PEDef S? '>'
255;;[70] EntityDecl ::= GEDecl | PEDecl
256
a98e819b
DL
257;; Note that this is setup so that we can do whitespace-skipping with
258;; `(skip-syntax-forward " ")', inter alia. Previously this was slow
259;; compared with `re-search-forward', but that has been fixed. Also
260;; note that the standard syntax table contains other characters with
261;; whitespace syntax, like NBSP, but they are invalid in contexts in
262;; which we might skip whitespace -- specifically, they're not
263;; NameChars [XML 4].
264
265(defvar xml-syntax-table
266 (let ((table (make-syntax-table)))
267 ;; Get space syntax correct per XML [3].
268 (dotimes (c 31)
269 (modify-syntax-entry c "." table)) ; all are space in standard table
5178753d 270 (dolist (c '(?\t ?\n ?\r)) ; these should be space
a98e819b
DL
271 (modify-syntax-entry c " " table))
272 ;; For skipping attributes.
273 (modify-syntax-entry ?\" "\"" table)
274 (modify-syntax-entry ?' "\"" table)
275 ;; Non-alnum name chars should be symbol constituents (`-' and `_'
276 ;; are OK by default).
277 (modify-syntax-entry ?. "_" table)
278 (modify-syntax-entry ?: "_" table)
279 ;; XML [89]
aaaa8abb
MH
280 (unless (featurep 'xemacs)
281 (dolist (c '(#x00B7 #x02D0 #x02D1 #x0387 #x0640 #x0E46 #x0EC6 #x3005
282 #x3031 #x3032 #x3033 #x3034 #x3035 #x309D #x309E #x30FC
283 #x30FD #x30FE))
284 (modify-syntax-entry (decode-char 'ucs c) "w" table)))
a98e819b
DL
285 ;; Fixme: rest of [4]
286 table)
287 "Syntax table used by `xml-parse-region'.")
288
289;; XML [5]
290;; Note that [:alpha:] matches all multibyte chars with word syntax.
ab161457
JPW
291(eval-and-compile
292 (defconst xml-name-regexp "[[:alpha:]_:][[:alnum:]._:-]*"))
a98e819b
DL
293
294;; Fixme: This needs re-writing to deal with the XML grammar properly, i.e.
295;; document ::= prolog element Misc*
296;; prolog ::= XMLDecl? Misc* (doctypedecl Misc*)?
297
298;;;###autoload
2d42509a 299(defun xml-parse-region (beg end &optional buffer parse-dtd parse-ns)
47db06aa
GM
300 "Parse the region from BEG to END in BUFFER.
301If BUFFER is nil, it defaults to the current buffer.
302Returns the XML list for the region, or raises an error if the region
2d42509a 303is not well-formed XML.
47db06aa 304If PARSE-DTD is non-nil, the DTD is parsed rather than skipped,
2d42509a
JB
305and returned as the first element of the list.
306If PARSE-NS is non-nil, then QNAMES are expanded."
39d58fc0
MH
307 ;; Use fixed syntax table to ensure regexp char classes and syntax
308 ;; specs DTRT.
309 (with-syntax-table (standard-syntax-table)
310 (let ((case-fold-search nil) ; XML is case-sensitive.
311 xml result dtd)
312 (save-excursion
313 (if buffer
314 (set-buffer buffer))
315 (save-restriction
316 (narrow-to-region beg end)
a98e819b
DL
317 (goto-char (point-min))
318 (while (not (eobp))
319 (if (search-forward "<" nil t)
320 (progn
321 (forward-char -1)
34638996 322 (setq result (xml-parse-tag parse-dtd parse-ns))
01b229d1
CY
323 (cond
324 ((null result)
325 ;; Not looking at an xml start tag.
18edb22d
CY
326 (unless (eobp)
327 (forward-char 1)))
01b229d1
CY
328 ((and xml (not xml-sub-parser))
329 ;; Translation of rule [1] of XML specifications
330 (error "XML: (Not Well-Formed) Only one root tag allowed"))
331 ((and (listp (car result))
332 parse-dtd)
333 (setq dtd (car result))
334 (if (cdr result) ; possible leading comment
335 (add-to-list 'xml (cdr result))))
336 (t
337 (add-to-list 'xml result))))
a98e819b
DL
338 (goto-char (point-max))))
339 (if parse-dtd
340 (cons dtd (nreverse xml))
341 (nreverse xml)))))))
47db06aa 342
c7f8d055 343(defun xml-maybe-do-ns (name default xml-ns)
a1dfa9a3
SM
344 "Perform any namespace expansion.
345NAME is the name to perform the expansion on.
c7f8d055
SM
346DEFAULT is the default namespace. XML-NS is a cons of namespace
347names to uris. When namespace-aware parsing is off, then XML-NS
348is nil.
349
350During namespace-aware parsing, any name without a namespace is
351put into the namespace identified by DEFAULT. nil is used to
352specify that the name shouldn't be given a namespace."
353 (if (consp xml-ns)
354 (let* ((nsp (string-match ":" name))
355 (lname (if nsp (substring name (match-end 0)) name))
356 (prefix (if nsp (substring name 0 (match-beginning 0)) default))
357 (special (and (string-equal lname "xmlns") (not prefix)))
358 ;; Setting default to nil will insure that there is not
359 ;; matching cons in xml-ns. In which case we
360 (ns (or (cdr (assoc (if special "xmlns" prefix)
361 xml-ns))
6d12a4df 362 "")))
c7f8d055
SM
363 (cons ns (if special "" lname)))
364 (intern name)))
47db06aa 365
6d12a4df
MH
366(defun xml-parse-fragment (&optional parse-dtd parse-ns)
367 "Parse xml-like fragments."
368 (let ((xml-sub-parser t)
369 children)
370 (while (not (eobp))
371 (let ((bit (xml-parse-tag
372 parse-dtd parse-ns)))
373 (if children
374 (setq children (append (list bit) children))
375 (if (stringp bit)
376 (setq children (list bit))
377 (setq children bit)))))
378 (reverse children)))
379
2d42509a 380(defun xml-parse-tag (&optional parse-dtd parse-ns)
a98e819b 381 "Parse the tag at point.
47db06aa
GM
382If PARSE-DTD is non-nil, the DTD of the document, if any, is parsed and
383returned as the first element in the list.
2d42509a 384If PARSE-NS is non-nil, then QNAMES are expanded.
47db06aa 385Returns one of:
a98e819b
DL
386 - a list : the matching node
387 - nil : the point is not looking at a tag.
388 - a pair : the first element is the DTD, the second is the node."
6d12a4df
MH
389 (let ((xml-validating-parser (or parse-dtd xml-validating-parser))
390 (xml-ns (if (consp parse-ns)
2d42509a
JB
391 parse-ns
392 (if parse-ns
393 (list
5178753d 394 ;; Default for empty prefix is no namespace
6d12a4df 395 (cons "" "")
c7f8d055 396 ;; "xml" namespace
6d12a4df 397 (cons "xml" "http://www.w3.org/XML/1998/namespace")
2d42509a 398 ;; We need to seed the xmlns namespace
6d12a4df 399 (cons "xmlns" "http://www.w3.org/2000/xmlns/"))))))
2d42509a
JB
400 (cond
401 ;; Processing instructions (like the <?xml version="1.0"?> tag at the
402 ;; beginning of a document).
403 ((looking-at "<\\?")
404 (search-forward "?>")
405 (skip-syntax-forward " ")
406 (xml-parse-tag parse-dtd xml-ns))
407 ;; Character data (CDATA) sections, in which no tag should be interpreted
408 ((looking-at "<!\\[CDATA\\[")
409 (let ((pos (match-end 0)))
410 (unless (search-forward "]]>" nil t)
6d12a4df 411 (error "XML: (Not Well Formed) CDATA section does not end anywhere in the document"))
ae026110 412 (concat
f6fcdfff 413 (buffer-substring-no-properties pos (match-beginning 0))
ae026110 414 (xml-parse-string))))
2d42509a
JB
415 ;; DTD for the document
416 ((looking-at "<!DOCTYPE")
6d12a4df
MH
417 (let ((dtd (xml-parse-dtd parse-ns)))
418 (skip-syntax-forward " ")
419 (if xml-validating-parser
420 (cons dtd (xml-parse-tag nil xml-ns))
421 (xml-parse-tag nil xml-ns))))
2d42509a
JB
422 ;; skip comments
423 ((looking-at "<!--")
424 (search-forward "-->")
a268160b 425 (skip-syntax-forward " ")
18edb22d 426 (unless (eobp)
772b2e2c
CY
427 (let ((xml-sub-parser t))
428 (xml-parse-tag parse-dtd xml-ns))))
2d42509a
JB
429 ;; end tag
430 ((looking-at "</")
431 '())
432 ;; opening tag
433 ((looking-at "<\\([^/>[:space:]]+\\)")
434 (goto-char (match-end 1))
34638996
EZ
435
436 ;; Parse this node
f6fcdfff 437 (let* ((node-name (match-string-no-properties 1))
5178753d
MH
438 ;; Parse the attribute list.
439 (attrs (xml-parse-attlist xml-ns))
06b60517 440 children)
c7f8d055 441
5178753d
MH
442 ;; add the xmlns:* attrs to our cache
443 (when (consp xml-ns)
c7f8d055
SM
444 (dolist (attr attrs)
445 (when (and (consp (car attr))
6d12a4df
MH
446 (equal "http://www.w3.org/2000/xmlns/"
447 (caar attr)))
448 (push (cons (cdar attr) (cdr attr))
c7f8d055
SM
449 xml-ns))))
450
5178753d 451 (setq children (list attrs (xml-maybe-do-ns node-name "" xml-ns)))
c7f8d055 452
2d42509a
JB
453 ;; is this an empty element ?
454 (if (looking-at "/>")
47db06aa 455 (progn
6d12a4df 456 (forward-char 2)
971489ea 457 (nreverse children))
6d12a4df
MH
458
459 ;; is this a valid start tag ?
460 (if (eq (char-after) ?>)
461 (progn
462 (forward-char 1)
463 ;; Now check that we have the right end-tag. Note that this
464 ;; one might contain spaces after the tag name
465 (let ((end (concat "</" node-name "\\s-*>")))
466 (while (not (looking-at end))
467 (cond
468 ((looking-at "</")
469 (error "XML: (Not Well-Formed) Invalid end tag (expecting %s) at pos %d"
470 node-name (point)))
471 ((= (char-after) ?<)
472 (let ((tag (xml-parse-tag nil xml-ns)))
473 (when tag
474 (push tag children))))
475 (t
476 (let ((expansion (xml-parse-string)))
477 (setq children
478 (if (stringp expansion)
479 (if (stringp (car children))
480 ;; The two strings were separated by a comment.
aaaa8abb 481 (setq children (append (list (concat (car children) expansion))
6d12a4df
MH
482 (cdr children)))
483 (setq children (append (list expansion) children)))
484 (setq children (append expansion children))))))))
485
486 (goto-char (match-end 0))
487 (nreverse children)))
488 ;; This was an invalid start tag (Expected ">", but didn't see it.)
489 (error "XML: (Well-Formed) Couldn't parse tag: %s"
f6fcdfff 490 (buffer-substring-no-properties (- (point) 10) (+ (point) 1)))))))
6d12a4df
MH
491 (t ;; (Not one of PI, CDATA, Comment, End tag, or Start tag)
492 (unless xml-sub-parser ; Usually, we error out.
493 (error "XML: (Well-Formed) Invalid character"))
494
495 ;; However, if we're parsing incrementally, then we need to deal
496 ;; with stray CDATA.
497 (xml-parse-string)))))
498
499(defun xml-parse-string ()
500 "Parse the next whatever. Could be a string, or an element."
5178753d 501 (let* ((pos (point))
98b69232 502 (string (progn (skip-chars-forward "^<")
f6fcdfff 503 (buffer-substring-no-properties pos (point)))))
5178753d
MH
504 ;; Clean up the string. As per XML specifications, the XML
505 ;; processor should always pass the whole string to the
506 ;; application. But \r's should be replaced:
507 ;; http://www.w3.org/TR/2000/REC-xml-20001006#sec-line-ends
508 (setq pos 0)
509 (while (string-match "\r\n?" string pos)
510 (setq string (replace-match "\n" t t string))
511 (setq pos (1+ (match-beginning 0))))
512
513 (xml-substitute-special string)))
47db06aa 514
c7f8d055 515(defun xml-parse-attlist (&optional xml-ns)
a1dfa9a3
SM
516 "Return the attribute-list after point.
517Leave point at the first non-blank character after the tag."
971489ea 518 (let ((attlist ())
34638996 519 end-pos name)
a98e819b
DL
520 (skip-syntax-forward " ")
521 (while (looking-at (eval-when-compile
522 (concat "\\(" xml-name-regexp "\\)\\s-*=\\s-*")))
c7f8d055 523 (setq end-pos (match-end 0))
f6fcdfff 524 (setq name (xml-maybe-do-ns (match-string-no-properties 1) nil xml-ns))
c7f8d055 525 (goto-char end-pos)
47db06aa 526
a158ff81
JB
527 ;; See also: http://www.w3.org/TR/2000/REC-xml-20001006#AVNormalize
528
47db06aa
GM
529 ;; Do we have a string between quotes (or double-quotes),
530 ;; or a simple word ?
a158ff81 531 (if (looking-at "\"\\([^\"]*\\)\"")
34638996 532 (setq end-pos (match-end 0))
f0ec1711 533 (if (looking-at "'\\([^']*\\)'")
34638996 534 (setq end-pos (match-end 0))
6d12a4df 535 (error "XML: (Not Well-Formed) Attribute values must be given between quotes")))
47db06aa
GM
536
537 ;; Each attribute must be unique within a given element
538 (if (assoc name attlist)
6d12a4df 539 (error "XML: (Not Well-Formed) Each attribute must be unique within an element"))
524425ae 540
a158ff81
JB
541 ;; Multiple whitespace characters should be replaced with a single one
542 ;; in the attributes
06b60517 543 (let ((string (match-string-no-properties 1)))
a98e819b 544 (replace-regexp-in-string "\\s-\\{2,\\}" " " string)
6d12a4df
MH
545 (let ((expansion (xml-substitute-special string)))
546 (unless (stringp expansion)
91af3942 547 ; We say this is the constraint. It is actually that neither
5178753d 548 ; external entities nor "<" can be in an attribute value.
6d12a4df
MH
549 (error "XML: (Not Well-Formed) Entities in attributes cannot expand into elements"))
550 (push (cons name expansion) attlist)))
a158ff81 551
34638996 552 (goto-char end-pos)
a98e819b 553 (skip-syntax-forward " "))
971489ea 554 (nreverse attlist)))
47db06aa
GM
555
556;;*******************************************************************
557;;**
558;;** The DTD (document type declaration)
559;;** The following functions know how to skip or parse the DTD of
560;;** a document
561;;**
562;;*******************************************************************
563
a98e819b
DL
564;; Fixme: This fails at least if the DTD contains conditional sections.
565
566(defun xml-skip-dtd ()
567 "Skip the DTD at point.
47db06aa 568This follows the rule [28] in the XML specifications."
6d12a4df
MH
569 (let ((xml-validating-parser nil))
570 (xml-parse-dtd)))
47db06aa 571
6d12a4df 572(defun xml-parse-dtd (&optional parse-ns)
a98e819b
DL
573 "Parse the DTD at point."
574 (forward-char (eval-when-compile (length "<!DOCTYPE")))
575 (skip-syntax-forward " ")
6d12a4df
MH
576 (if (and (looking-at ">")
577 xml-validating-parser)
578 (error "XML: (Validity) Invalid DTD (expecting name of the document)"))
524425ae 579
971489ea 580 ;; Get the name of the document
a98e819b 581 (looking-at xml-name-regexp)
f6fcdfff 582 (let ((dtd (list (match-string-no-properties 0) 'dtd))
971489ea 583 type element end-pos)
47db06aa
GM
584 (goto-char (match-end 0))
585
a98e819b
DL
586 (skip-syntax-forward " ")
587 ;; XML [75]
588 (cond ((looking-at "PUBLIC\\s-+")
589 (goto-char (match-end 0))
590 (unless (or (re-search-forward
591 "\\=\"\\([[:space:][:alnum:]-'()+,./:=?;!*#@$_%]*\\)\""
592 nil t)
593 (re-search-forward
594 "\\='\\([[:space:][:alnum:]-()+,./:=?;!*#@$_%]*\\)'"
595 nil t))
6d12a4df 596 (error "XML: Missing Public ID"))
f6fcdfff 597 (let ((pubid (match-string-no-properties 1)))
6d12a4df 598 (skip-syntax-forward " ")
a98e819b
DL
599 (unless (or (re-search-forward "\\='\\([^']*\\)'" nil t)
600 (re-search-forward "\\=\"\\([^\"]*\\)\"" nil t))
6d12a4df 601 (error "XML: Missing System ID"))
f6fcdfff 602 (push (list pubid (match-string-no-properties 1) 'public) dtd)))
a98e819b
DL
603 ((looking-at "SYSTEM\\s-+")
604 (goto-char (match-end 0))
605 (unless (or (re-search-forward "\\='\\([^']*\\)'" nil t)
606 (re-search-forward "\\=\"\\([^\"]*\\)\"" nil t))
6d12a4df 607 (error "XML: Missing System ID"))
f6fcdfff 608 (push (list (match-string-no-properties 1) 'system) dtd)))
a98e819b
DL
609 (skip-syntax-forward " ")
610 (if (eq ?> (char-after))
611 (forward-char)
a98e819b 612 (if (not (eq (char-after) ?\[))
6d12a4df 613 (error "XML: Bad DTD")
a98e819b
DL
614 (forward-char)
615 ;; Parse the rest of the DTD
23d519e4 616 ;; Fixme: Deal with NOTATION, PIs.
a98e819b
DL
617 (while (not (looking-at "\\s-*\\]"))
618 (skip-syntax-forward " ")
619 (cond
620
621 ;; Translation of rule [45] of XML specifications
622 ((looking-at
623 "<!ELEMENT\\s-+\\([[:alnum:].%;]+\\)\\s-+\\([^>]+\\)>")
624
f6fcdfff 625 (setq element (match-string-no-properties 1)
a98e819b
DL
626 type (match-string-no-properties 2))
627 (setq end-pos (match-end 0))
628
629 ;; Translation of rule [46] of XML specifications
630 (cond
631 ((string-match "^EMPTY[ \t\n\r]*$" type) ;; empty declaration
632 (setq type 'empty))
633 ((string-match "^ANY[ \t\n\r]*$" type) ;; any type of contents
634 (setq type 'any))
635 ((string-match "^(\\(.*\\))[ \t\n\r]*$" type) ;; children ([47])
f6fcdfff 636 (setq type (xml-parse-elem-type (match-string-no-properties 1 type))))
a98e819b
DL
637 ((string-match "^%[^;]+;[ \t\n\r]*$" type) ;; substitution
638 nil)
639 (t
06b60517 640 (if xml-validating-parser
07f7e9ae 641 (error "XML: (Validity) Invalid element type in the DTD"))))
27720433 642
a98e819b 643 ;; rule [45]: the element declaration must be unique
6d12a4df
MH
644 (if (and (assoc element dtd)
645 xml-validating-parser)
646 (error "XML: (Validity) Element declarations must be unique in a DTD (<%s>)"
461f3ad0 647 element))
a98e819b
DL
648
649 ;; Store the element in the DTD
650 (push (list element type) dtd)
651 (goto-char end-pos))
23d519e4
MH
652
653 ;; Translation of rule [52] of XML specifications
654 ((looking-at (concat "<!ATTLIST[ \t\n\r]*\\(" xml-name-re
655 "\\)[ \t\n\r]*\\(" xml-att-def-re
656 "\\)*[ \t\n\r]*>"))
657
658 ;; We don't do anything with ATTLIST currently
659 (goto-char (match-end 0)))
660
a98e819b
DL
661 ((looking-at "<!--")
662 (search-forward "-->"))
6d12a4df
MH
663 ((looking-at (concat "<!ENTITY[ \t\n\r]*\\(" xml-name-re
664 "\\)[ \t\n\r]*\\(" xml-entity-value-re
665 "\\)[ \t\n\r]*>"))
f6fcdfff
CY
666 (let ((name (match-string-no-properties 1))
667 (value (substring (match-string-no-properties 2) 1
668 (- (length (match-string-no-properties 2)) 1))))
23d519e4 669 (goto-char (match-end 0))
6d12a4df
MH
670 (setq xml-entity-alist
671 (append xml-entity-alist
06b60517 672 (list (cons name
6d12a4df
MH
673 (with-temp-buffer
674 (insert value)
675 (goto-char (point-min))
676 (xml-parse-fragment
677 xml-validating-parser
678 parse-ns))))))))
679 ((or (looking-at (concat "<!ENTITY[ \t\n\r]+\\(" xml-name-re
680 "\\)[ \t\n\r]+SYSTEM[ \t\n\r]+"
681 "\\(\"[^\"]*\"\\|'[^']*'\\)[ \t\n\r]*>"))
682 (looking-at (concat "<!ENTITY[ \t\n\r]+\\(" xml-name-re
683 "\\)[ \t\n\r]+PUBLIC[ \t\n\r]+"
684 "\"[- \r\na-zA-Z0-9'()+,./:=?;!*#@$_%]*\""
685 "\\|'[- \r\na-zA-Z0-9()+,./:=?;!*#@$_%]*'"
686 "[ \t\n\r]+\\(\"[^\"]*\"\\|'[^']*'\\)"
687 "[ \t\n\r]*>")))
f6fcdfff
CY
688 (let ((name (match-string-no-properties 1))
689 (file (substring (match-string-no-properties 2) 1
690 (- (length (match-string-no-properties 2)) 1))))
23d519e4 691 (goto-char (match-end 0))
6d12a4df
MH
692 (setq xml-entity-alist
693 (append xml-entity-alist
694 (list (cons name (with-temp-buffer
695 (insert-file-contents file)
696 (goto-char (point-min))
697 (xml-parse-fragment
698 xml-validating-parser
699 parse-ns))))))))
63b446bc
MH
700 ;; skip parameter entity declarations
701 ((or (looking-at (concat "<!ENTITY[ \t\n\r]+%[ \t\n\r]+\\(" xml-name-re
702 "\\)[ \t\n\r]+SYSTEM[ \t\n\r]+"
703 "\\(\"[^\"]*\"\\|'[^']*'\\)[ \t\n\r]*>"))
704 (looking-at (concat "<!ENTITY[ \t\n\r]+"
705 "%[ \t\n\r]+"
706 "\\(" xml-name-re "\\)[ \t\n\r]+"
707 "PUBLIC[ \t\n\r]+"
708 "\\(\"[- \r\na-zA-Z0-9'()+,./:=?;!*#@$_%]*\""
709 "\\|'[- \r\na-zA-Z0-9()+,./:=?;!*#@$_%]*'\\)[ \t\n\r]+"
710 "\\(\"[^\"]+\"\\|'[^']+'\\)"
711 "[ \t\n\r]*>")))
712 (goto-char (match-end 0)))
713 ;; skip parameter entities
714 ((looking-at (concat "%" xml-name-re ";"))
715 (goto-char (match-end 0)))
a98e819b 716 (t
7e0f1123 717 (when xml-validating-parser
27720433 718 (error "XML: (Validity) Invalid DTD item"))))))
6d12a4df 719 (if (looking-at "\\s-*]>")
23d519e4 720 (goto-char (match-end 0))))
461f3ad0 721 (nreverse dtd)))
47db06aa
GM
722
723(defun xml-parse-elem-type (string)
a98e819b 724 "Convert element type STRING into a Lisp structure."
47db06aa
GM
725
726 (let (elem modifier)
727 (if (string-match "(\\([^)]+\\))\\([+*?]?\\)" string)
728 (progn
f6fcdfff
CY
729 (setq elem (match-string-no-properties 1 string)
730 modifier (match-string-no-properties 2 string))
47db06aa 731 (if (string-match "|" elem)
971489ea 732 (setq elem (cons 'choice
47db06aa
GM
733 (mapcar 'xml-parse-elem-type
734 (split-string elem "|"))))
735 (if (string-match "," elem)
971489ea 736 (setq elem (cons 'seq
47db06aa 737 (mapcar 'xml-parse-elem-type
a98e819b 738 (split-string elem ",")))))))
a158ff81 739 (if (string-match "[ \t\n\r]*\\([^+*?]+\\)\\([+*?]?\\)" string)
f6fcdfff
CY
740 (setq elem (match-string-no-properties 1 string)
741 modifier (match-string-no-properties 2 string))))
47db06aa 742
971489ea
SM
743 (if (and (stringp elem) (string= elem "#PCDATA"))
744 (setq elem 'pcdata))
524425ae 745
971489ea
SM
746 (cond
747 ((string= modifier "+")
748 (list '+ elem))
749 ((string= modifier "*")
750 (list '* elem))
751 ((string= modifier "?")
0fa6f70c 752 (list '\? elem))
971489ea
SM
753 (t
754 elem))))
47db06aa 755
47db06aa
GM
756;;*******************************************************************
757;;**
758;;** Substituting special XML sequences
759;;**
760;;*******************************************************************
761
762(defun xml-substitute-special (string)
cd1181db 763 "Return STRING, after substituting entity references."
a98e819b
DL
764 ;; This originally made repeated passes through the string from the
765 ;; beginning, which isn't correct, since then either "&amp;amp;" or
766 ;; "&#38;amp;" won't DTRT.
47db06aa 767
6d12a4df
MH
768 (let ((point 0)
769 children end-point)
ae026110 770 (while (string-match "&\\([^;]*\\);" string point)
6d12a4df 771 (setq end-point (match-end 0))
f6fcdfff 772 (let* ((this-part (match-string-no-properties 1 string))
6d12a4df
MH
773 (prev-part (substring string point (match-beginning 0)))
774 (entity (assoc this-part xml-entity-alist))
06b60517 775 (expansion
6d12a4df
MH
776 (cond ((string-match "#\\([0-9]+\\)" this-part)
777 (let ((c (decode-char
778 'ucs
f6fcdfff 779 (string-to-number (match-string-no-properties 1 this-part)))))
6d12a4df
MH
780 (if c (string c))))
781 ((string-match "#x\\([[:xdigit:]]+\\)" this-part)
782 (let ((c (decode-char
783 'ucs
f6fcdfff 784 (string-to-number (match-string-no-properties 1 this-part) 16))))
6d12a4df
MH
785 (if c (string c))))
786 (entity
787 (cdr entity))
ae026110 788 ((eq (length this-part) 0)
27720433 789 (error "XML: (Not Well-Formed) No entity given"))
6d12a4df 790 (t
f8ab034e 791 (if xml-validating-parser
6d12a4df 792 (error "XML: (Validity) Undefined entity `%s'"
f8ab034e
MH
793 this-part)
794 xml-undefined-entity)))))
6d12a4df
MH
795
796 (cond ((null children)
f0d49437
MH
797 ;; FIXME: If we have an entity that expands into XML, this won't work.
798 (setq children
799 (concat prev-part expansion)))
6d12a4df
MH
800 ((stringp children)
801 (if (stringp expansion)
802 (setq children (concat children prev-part expansion))
803 (setq children (list expansion (concat prev-part children)))))
804 ((and (stringp expansion)
805 (stringp (car children)))
806 (setcar children (concat prev-part expansion (car children))))
807 ((stringp expansion)
808 (setq children (append (concat prev-part expansion)
809 children)))
810 ((stringp (car children))
811 (setcar children (concat (car children) prev-part))
812 (setq children (append expansion children)))
813 (t
814 (setq children (list expansion
815 prev-part
816 children))))
817 (setq point end-point)))
818 (cond ((stringp children)
819 (concat children (substring string point)))
820 ((stringp (car (last children)))
a3110b5d 821 (concat (car (last children)) (substring string point)))
6d12a4df
MH
822 ((null children)
823 string)
824 (t
a3110b5d
MH
825 (concat (mapconcat 'identity
826 (nreverse children)
827 "")
828 (substring string point))))))
829
571855b6
UJ
830(defun xml-substitute-numeric-entities (string)
831 "Substitute SGML numeric entities by their respective utf characters.
832This function replaces numeric entities in the input STRING and
833returns the modified string. For example \"&#42;\" gets replaced
834by \"*\"."
835 (if (and string (stringp string))
836 (let ((start 0))
837 (while (string-match "&#\\([0-9]+\\);" string start)
838 (condition-case nil
839 (setq string (replace-match
840 (string (read (substring string
841 (match-beginning 1)
842 (match-end 1))))
843 nil nil string))
844 (error nil))
845 (setq start (1+ (match-beginning 0))))
846 string)
847 nil))
848
47db06aa
GM
849;;*******************************************************************
850;;**
851;;** Printing a tree.
852;;** This function is intended mainly for debugging purposes.
853;;**
854;;*******************************************************************
855
27240aa4
AS
856(defun xml-debug-print (xml &optional indent-string)
857 "Outputs the XML in the current buffer.
858XML can be a tree or a list of nodes.
859The first line is indented with the optional INDENT-STRING."
860 (setq indent-string (or indent-string ""))
971489ea 861 (dolist (node xml)
27240aa4
AS
862 (xml-debug-print-internal node indent-string)))
863
864(defalias 'xml-print 'xml-debug-print)
47db06aa 865
7731c9f4 866(defun xml-escape-string (string)
a1884c78
MH
867 "Return the string with entity substitutions made from
868xml-entity-alist."
7731c9f4
MH
869 (mapconcat (lambda (byte)
870 (let ((char (char-to-string byte)))
871 (if (rassoc char xml-entity-alist)
872 (concat "&" (car (rassoc char xml-entity-alist)) ";")
873 char)))
76a6127f
MH
874 ;; This differs from the non-unicode branch. Just
875 ;; grabbing the string works here.
876 string ""))
7731c9f4 877
971489ea 878(defun xml-debug-print-internal (xml indent-string)
47db06aa 879 "Outputs the XML tree in the current buffer.
a98e819b 880The first line is indented with INDENT-STRING."
47db06aa
GM
881 (let ((tree xml)
882 attlist)
a98e819b 883 (insert indent-string ?< (symbol-name (xml-node-name tree)))
524425ae 884
47db06aa 885 ;; output the attribute list
971489ea 886 (setq attlist (xml-node-attributes tree))
47db06aa 887 (while attlist
7731c9f4
MH
888 (insert ?\ (symbol-name (caar attlist)) "=\""
889 (xml-escape-string (cdar attlist)) ?\")
971489ea 890 (setq attlist (cdr attlist)))
524425ae 891
971489ea 892 (setq tree (xml-node-children tree))
47db06aa 893
27240aa4
AS
894 (if (null tree)
895 (insert ?/ ?>)
896 (insert ?>)
897
898 ;; output the children
899 (dolist (node tree)
900 (cond
901 ((listp node)
902 (insert ?\n)
903 (xml-debug-print-internal node (concat indent-string " ")))
7731c9f4
MH
904 ((stringp node)
905 (insert (xml-escape-string node)))
27240aa4
AS
906 (t
907 (error "Invalid XML tree"))))
908
909 (when (not (and (null (cdr tree))
910 (stringp (car tree))))
911 (insert ?\n indent-string))
912 (insert ?< ?/ (symbol-name (xml-node-name xml)) ?>))))
47db06aa
GM
913
914(provide 'xml)
915
916;;; xml.el ends here