2001-07-14 11:21:08 +00:00
|
|
|
;;; xml.el --- XML parser
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2005-08-06 22:13:43 +00:00
|
|
|
;; Copyright (C) 2000, 2001, 2002, 2003, 2004,
|
2008-01-07 02:45:14 +00:00
|
|
|
;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
;; Author: Emmanuel Briot <briot@gnat.com>
|
2003-06-30 10:34:50 +00:00
|
|
|
;; Maintainer: Mark A. Hershberger <mah@everybody.org>
|
2003-05-19 16:03:45 +00:00
|
|
|
;; Keywords: xml, data
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2000-07-19 15:52:13 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2003-05-19 16:03:45 +00:00
|
|
|
;; This file contains a somewhat incomplete non-validating XML parser. It
|
|
|
|
;; parses a file, and returns a list that can be used internally by
|
2004-04-16 22:46:26 +00:00
|
|
|
;; any other Lisp libraries.
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
;;; FILE FORMAT
|
|
|
|
|
2003-05-19 16:03:45 +00:00
|
|
|
;; The document type declaration may either be ignored or (optionally)
|
|
|
|
;; parsed, but currently the parsing will only accept element
|
2004-04-16 22:46:26 +00:00
|
|
|
;; declarations. The XML file is assumed to be well-formed. In case
|
2003-05-19 16:03:45 +00:00
|
|
|
;; of error, the parsing stops and the XML file is shown where the
|
|
|
|
;; parsing stopped.
|
2000-07-19 15:52:13 +00:00
|
|
|
;;
|
2003-05-19 16:03:45 +00:00
|
|
|
;; It also knows how to ignore comments and processing instructions.
|
2000-07-19 15:52:13 +00:00
|
|
|
;;
|
|
|
|
;; The XML file should have the following format:
|
2000-12-22 12:20:46 +00:00
|
|
|
;; <node1 attr1="name1" attr2="name2" ...>value
|
|
|
|
;; <node2 attr3="name3" attr4="name4">value2</node2>
|
|
|
|
;; <node3 attr5="name5" attr6="name6">value3</node3>
|
2000-07-19 15:52:13 +00:00
|
|
|
;; </node1>
|
2004-04-16 22:46:26 +00:00
|
|
|
;; Of course, the name of the nodes and attributes can be anything. There can
|
2000-07-19 15:52:13 +00:00
|
|
|
;; be any number of attributes (or none), as well as any number of children
|
|
|
|
;; below the nodes.
|
|
|
|
;;
|
|
|
|
;; There can be only top level node, but with any number of children below.
|
|
|
|
|
|
|
|
;;; LIST FORMAT
|
|
|
|
|
2004-04-14 18:36:14 +00:00
|
|
|
;; The functions `xml-parse-file', `xml-parse-region' and
|
|
|
|
;; `xml-parse-tag' return a list with the following format:
|
2000-07-19 15:52:13 +00:00
|
|
|
;;
|
|
|
|
;; xml-list ::= (node node ...)
|
2004-04-14 18:36:14 +00:00
|
|
|
;; node ::= (qname attribute-list . child_node_list)
|
2000-07-19 15:52:13 +00:00
|
|
|
;; child_node_list ::= child_node child_node ...
|
|
|
|
;; child_node ::= node | string
|
2004-04-14 18:36:14 +00:00
|
|
|
;; qname ::= (:namespace-uri . "name") | "name"
|
|
|
|
;; attribute_list ::= ((qname . "value") (qname . "value") ...)
|
2000-07-19 15:52:13 +00:00
|
|
|
;; | nil
|
|
|
|
;; string ::= "..."
|
|
|
|
;;
|
2003-05-19 16:03:45 +00:00
|
|
|
;; Some macros are provided to ease the parsing of this list.
|
|
|
|
;; Whitespace is preserved. Fixme: There should be a tree-walker that
|
|
|
|
;; can remove it.
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2004-04-14 18:36:14 +00:00
|
|
|
;; TODO:
|
|
|
|
;; * xml:base, xml:space support
|
|
|
|
;; * more complete DOCTYPE parsing
|
|
|
|
;; * pi support
|
|
|
|
|
2000-07-19 15:52:13 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2007-03-17 18:55:52 +00:00
|
|
|
;; Note that buffer-substring and match-string were formerly used in
|
|
|
|
;; several places, because the -no-properties variants remove
|
|
|
|
;; composition info. However, after some discussion on emacs-devel,
|
|
|
|
;; the consensus was that the speed of the -no-properties variants was
|
|
|
|
;; a worthwhile tradeoff especially since we're usually parsing files
|
|
|
|
;; instead of hand-crafted XML.
|
2003-05-19 16:03:45 +00:00
|
|
|
|
2000-07-19 15:52:13 +00:00
|
|
|
;;*******************************************************************
|
|
|
|
;;**
|
|
|
|
;;** Macros to parse the list
|
|
|
|
;;**
|
|
|
|
;;*******************************************************************
|
|
|
|
|
2005-05-26 14:35:47 +00:00
|
|
|
(defconst xml-undefined-entity "?"
|
|
|
|
"What to substitute for undefined entities")
|
|
|
|
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-entity-alist
|
|
|
|
'(("lt" . "<")
|
|
|
|
("gt" . ">")
|
|
|
|
("apos" . "'")
|
|
|
|
("quot" . "\"")
|
|
|
|
("amp" . "&"))
|
|
|
|
"The defined entities. Entities are added to this when the DTD is parsed.")
|
|
|
|
|
|
|
|
(defvar xml-sub-parser nil
|
|
|
|
"Dynamically set this to a non-nil value if you want to parse an XML fragment.")
|
|
|
|
|
|
|
|
(defvar xml-validating-parser nil
|
|
|
|
"Set to non-nil to get validity checking.")
|
|
|
|
|
2001-12-14 22:12:30 +00:00
|
|
|
(defsubst xml-node-name (node)
|
2000-07-19 15:52:13 +00:00
|
|
|
"Return the tag associated with NODE.
|
2004-04-16 22:46:26 +00:00
|
|
|
Without namespace-aware parsing, the tag is a symbol.
|
|
|
|
|
|
|
|
With namespace-aware parsing, the tag is a cons of a string
|
|
|
|
representing the uri of the namespace with the local name of the
|
|
|
|
tag. For example,
|
|
|
|
|
|
|
|
<foo>
|
|
|
|
|
|
|
|
would be represented by
|
|
|
|
|
|
|
|
'(\"\" . \"foo\")."
|
|
|
|
|
2001-12-14 22:12:30 +00:00
|
|
|
(car node))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2001-12-14 22:12:30 +00:00
|
|
|
(defsubst xml-node-attributes (node)
|
2000-07-19 15:52:13 +00:00
|
|
|
"Return the list of attributes of NODE.
|
|
|
|
The list can be nil."
|
2001-12-14 22:12:30 +00:00
|
|
|
(nth 1 node))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2001-12-14 22:12:30 +00:00
|
|
|
(defsubst xml-node-children (node)
|
2000-07-19 15:52:13 +00:00
|
|
|
"Return the list of children of NODE.
|
|
|
|
This is a list of nodes, and it can be nil."
|
2001-12-14 22:12:30 +00:00
|
|
|
(cddr node))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
(defun xml-get-children (node child-name)
|
|
|
|
"Return the children of NODE whose tag is CHILD-NAME.
|
2004-04-16 22:46:26 +00:00
|
|
|
CHILD-NAME should match the value returned by `xml-node-name'."
|
2001-12-14 22:12:30 +00:00
|
|
|
(let ((match ()))
|
|
|
|
(dolist (child (xml-node-children node))
|
2004-04-16 22:46:26 +00:00
|
|
|
(if (and (listp child)
|
|
|
|
(equal (xml-node-name child) child-name))
|
|
|
|
(push child match)))
|
2001-12-14 22:12:30 +00:00
|
|
|
(nreverse match)))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2003-12-29 12:13:27 +00:00
|
|
|
(defun xml-get-attribute-or-nil (node attribute)
|
2000-07-19 15:52:13 +00:00
|
|
|
"Get from NODE the value of ATTRIBUTE.
|
2004-04-16 22:46:26 +00:00
|
|
|
Return nil if the attribute was not found.
|
2003-12-29 12:13:27 +00:00
|
|
|
|
|
|
|
See also `xml-get-attribute'."
|
2004-03-02 21:45:06 +00:00
|
|
|
(cdr (assoc attribute (xml-node-attributes node))))
|
2003-12-29 12:13:27 +00:00
|
|
|
|
|
|
|
(defsubst xml-get-attribute (node attribute)
|
|
|
|
"Get from NODE the value of ATTRIBUTE.
|
|
|
|
An empty string is returned if the attribute was not found.
|
|
|
|
|
|
|
|
See also `xml-get-attribute-or-nil'."
|
|
|
|
(or (xml-get-attribute-or-nil node attribute) ""))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
;;*******************************************************************
|
|
|
|
;;**
|
|
|
|
;;** Creating the list
|
|
|
|
;;**
|
|
|
|
;;*******************************************************************
|
|
|
|
|
2003-05-19 16:03:45 +00:00
|
|
|
;;;###autoload
|
2003-07-14 20:45:43 +00:00
|
|
|
(defun xml-parse-file (file &optional parse-dtd parse-ns)
|
2003-05-19 16:03:45 +00:00
|
|
|
"Parse the well-formed XML file FILE.
|
|
|
|
If FILE is already visited, use its buffer and don't kill it.
|
2000-07-19 15:52:13 +00:00
|
|
|
Returns the top node with all its children.
|
2003-07-14 20:45:43 +00:00
|
|
|
If PARSE-DTD is non-nil, the DTD is parsed rather than skipped.
|
|
|
|
If PARSE-NS is non-nil, then QNAMES are expanded."
|
2006-07-24 18:02:10 +00:00
|
|
|
(if (get-file-buffer file)
|
|
|
|
(with-current-buffer (get-file-buffer file)
|
|
|
|
(save-excursion
|
|
|
|
(xml-parse-region (point-min)
|
|
|
|
(point-max)
|
|
|
|
(current-buffer)
|
|
|
|
parse-dtd parse-ns)))
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert-file-contents file)
|
|
|
|
(xml-parse-region (point-min)
|
|
|
|
(point-max)
|
|
|
|
(current-buffer)
|
|
|
|
parse-dtd parse-ns))))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2004-07-09 14:22:33 +00:00
|
|
|
|
2004-12-13 19:37:32 +00:00
|
|
|
(defvar xml-name-re)
|
|
|
|
(defvar xml-entity-value-re)
|
2005-08-09 02:52:15 +00:00
|
|
|
(defvar xml-att-def-re)
|
2004-12-02 07:48:25 +00:00
|
|
|
(let* ((start-chars (concat "[:alpha:]:_"))
|
2004-07-09 14:22:33 +00:00
|
|
|
(name-chars (concat "-[:digit:]." start-chars))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[3] S ::= (#x20 | #x9 | #xD | #xA)+
|
2004-07-09 14:22:33 +00:00
|
|
|
(whitespace "[ \t\n\r]"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[4] NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6]
|
|
|
|
;; | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF]
|
|
|
|
;; | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF]
|
|
|
|
;; | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-name-start-char-re (concat "[" start-chars "]"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[4a] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040]
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-name-char-re (concat "[" name-chars "]"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[5] Name ::= NameStartChar (NameChar)*
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-name-re (concat xml-name-start-char-re xml-name-char-re "*"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[6] Names ::= Name (#x20 Name)*
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-names-re (concat xml-name-re "\\(?: " xml-name-re "\\)*"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[7] Nmtoken ::= (NameChar)+
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-nmtoken-re (concat xml-name-char-re "+"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[8] Nmtokens ::= Nmtoken (#x20 Nmtoken)*
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-nmtokens-re (concat xml-nmtoken-re "\\(?: " xml-name-re "\\)*"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[66] CharRef ::= '&#' [0-9]+ ';' | '&#x' [0-9a-fA-F]+ ';'
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-char-ref-re "\\(?:&#[0-9]+;\\|&#x[0-9a-fA-F]+;\\)")
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[68] EntityRef ::= '&' Name ';'
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-entity-ref (concat "&" xml-name-re ";"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[69] PEReference ::= '%' Name ';'
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-pe-reference-re (concat "%" xml-name-re ";"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[67] Reference ::= EntityRef | CharRef
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-reference-re (concat "\\(?:" xml-entity-ref "\\|" xml-char-ref-re "\\)"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[10] AttValue ::= '"' ([^<&"] | Reference)* '"' | "'" ([^<&'] | Reference)* "'"
|
2005-06-10 15:37:37 +00:00
|
|
|
(defvar xml-att-value-re (concat "\\(?:\"\\(?:[^&\"]\\|" xml-reference-re "\\)*\"\\|"
|
|
|
|
"'\\(?:[^&']\\|" xml-reference-re "\\)*'\\)"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[56] TokenizedType ::= 'ID' [VC: ID] [VC: One ID per Element Type] [VC: ID Attribute Default]
|
|
|
|
;; | 'IDREF' [VC: IDREF]
|
|
|
|
;; | 'IDREFS' [VC: IDREF]
|
|
|
|
;; | 'ENTITY' [VC: Entity Name]
|
|
|
|
;; | 'ENTITIES' [VC: Entity Name]
|
|
|
|
;; | 'NMTOKEN' [VC: Name Token]
|
|
|
|
;; | 'NMTOKENS' [VC: Name Token]
|
2005-06-10 15:37:37 +00:00
|
|
|
(defvar xml-tokenized-type-re "\\(?:ID\\|IDREF\\|IDREFS\\|ENTITY\\|ENTITIES\\|NMTOKEN\\|NMTOKENS\\)")
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[58] NotationType ::= 'NOTATION' S '(' S? Name (S? '|' S? Name)* S? ')'
|
2005-06-10 15:37:37 +00:00
|
|
|
(defvar xml-notation-type-re (concat "\\(?:NOTATION" whitespace "(" whitespace "*" xml-name-re
|
|
|
|
"\\(?:" whitespace "*|" whitespace "*" xml-name-re "\\)*" whitespace "*)\\)"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[59] Enumeration ::= '(' S? Nmtoken (S? '|' S? Nmtoken)* S? ')' [VC: Enumeration] [VC: No Duplicate Tokens]
|
2005-06-10 15:37:37 +00:00
|
|
|
(defvar xml-enumeration-re (concat "\\(?:(" whitespace "*" xml-nmtoken-re
|
|
|
|
"\\(?:" whitespace "*|" whitespace "*" xml-nmtoken-re "\\)*"
|
|
|
|
whitespace ")\\)"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[57] EnumeratedType ::= NotationType | Enumeration
|
2005-06-10 15:37:37 +00:00
|
|
|
(defvar xml-enumerated-type-re (concat "\\(?:" xml-notation-type-re "\\|" xml-enumeration-re "\\)"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[54] AttType ::= StringType | TokenizedType | EnumeratedType
|
|
|
|
;;[55] StringType ::= 'CDATA'
|
2005-06-10 15:37:37 +00:00
|
|
|
(defvar xml-att-type-re (concat "\\(?:CDATA\\|" xml-tokenized-type-re "\\|" xml-notation-type-re"\\|" xml-enumerated-type-re "\\)"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[60] DefaultDecl ::= '#REQUIRED' | '#IMPLIED' | (('#FIXED' S)? AttValue)
|
2005-06-10 15:37:37 +00:00
|
|
|
(defvar xml-default-decl-re (concat "\\(?:#REQUIRED\\|#IMPLIED\\|\\(?:#FIXED" whitespace "\\)*" xml-att-value-re "\\)"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[53] AttDef ::= S Name S AttType S DefaultDecl
|
2005-06-10 15:37:37 +00:00
|
|
|
(defvar xml-att-def-re (concat "\\(?:" whitespace "*" xml-name-re
|
|
|
|
whitespace "*" xml-att-type-re
|
|
|
|
whitespace "*" xml-default-decl-re "\\)"))
|
2006-02-02 01:02:31 +00:00
|
|
|
;;[9] EntityValue ::= '"' ([^%&"] | PEReference | Reference)* '"'
|
|
|
|
;; | "'" ([^%&'] | PEReference | Reference)* "'"
|
2004-07-09 14:22:33 +00:00
|
|
|
(defvar xml-entity-value-re (concat "\\(?:\"\\(?:[^%&\"]\\|" xml-pe-reference-re
|
|
|
|
"\\|" xml-reference-re "\\)*\"\\|'\\(?:[^%&']\\|"
|
|
|
|
xml-pe-reference-re "\\|" xml-reference-re "\\)*'\\)")))
|
|
|
|
;;[75] ExternalID ::= 'SYSTEM' S SystemLiteral
|
|
|
|
;; | 'PUBLIC' S PubidLiteral S SystemLiteral
|
|
|
|
;;[76] NDataDecl ::= S 'NDATA' S
|
|
|
|
;;[73] EntityDef ::= EntityValue| (ExternalID NDataDecl?)
|
|
|
|
;;[71] GEDecl ::= '<!ENTITY' S Name S EntityDef S? '>'
|
|
|
|
;;[74] PEDef ::= EntityValue | ExternalID
|
|
|
|
;;[72] PEDecl ::= '<!ENTITY' S '%' S Name S PEDef S? '>'
|
|
|
|
;;[70] EntityDecl ::= GEDecl | PEDecl
|
|
|
|
|
2003-05-19 16:03:45 +00:00
|
|
|
;; Note that this is setup so that we can do whitespace-skipping with
|
|
|
|
;; `(skip-syntax-forward " ")', inter alia. Previously this was slow
|
|
|
|
;; compared with `re-search-forward', but that has been fixed. Also
|
|
|
|
;; note that the standard syntax table contains other characters with
|
|
|
|
;; whitespace syntax, like NBSP, but they are invalid in contexts in
|
|
|
|
;; which we might skip whitespace -- specifically, they're not
|
|
|
|
;; NameChars [XML 4].
|
|
|
|
|
|
|
|
(defvar xml-syntax-table
|
|
|
|
(let ((table (make-syntax-table)))
|
|
|
|
;; Get space syntax correct per XML [3].
|
|
|
|
(dotimes (c 31)
|
|
|
|
(modify-syntax-entry c "." table)) ; all are space in standard table
|
2006-02-02 01:02:31 +00:00
|
|
|
(dolist (c '(?\t ?\n ?\r)) ; these should be space
|
2003-05-19 16:03:45 +00:00
|
|
|
(modify-syntax-entry c " " table))
|
|
|
|
;; For skipping attributes.
|
|
|
|
(modify-syntax-entry ?\" "\"" table)
|
|
|
|
(modify-syntax-entry ?' "\"" table)
|
|
|
|
;; Non-alnum name chars should be symbol constituents (`-' and `_'
|
|
|
|
;; are OK by default).
|
|
|
|
(modify-syntax-entry ?. "_" table)
|
|
|
|
(modify-syntax-entry ?: "_" table)
|
|
|
|
;; XML [89]
|
2005-11-03 03:56:38 +00:00
|
|
|
(unless (featurep 'xemacs)
|
|
|
|
(dolist (c '(#x00B7 #x02D0 #x02D1 #x0387 #x0640 #x0E46 #x0EC6 #x3005
|
|
|
|
#x3031 #x3032 #x3033 #x3034 #x3035 #x309D #x309E #x30FC
|
|
|
|
#x30FD #x30FE))
|
|
|
|
(modify-syntax-entry (decode-char 'ucs c) "w" table)))
|
2003-05-19 16:03:45 +00:00
|
|
|
;; Fixme: rest of [4]
|
|
|
|
table)
|
|
|
|
"Syntax table used by `xml-parse-region'.")
|
|
|
|
|
|
|
|
;; XML [5]
|
|
|
|
;; Note that [:alpha:] matches all multibyte chars with word syntax.
|
2003-05-19 17:45:27 +00:00
|
|
|
(eval-and-compile
|
|
|
|
(defconst xml-name-regexp "[[:alpha:]_:][[:alnum:]._:-]*"))
|
2003-05-19 16:03:45 +00:00
|
|
|
|
|
|
|
;; Fixme: This needs re-writing to deal with the XML grammar properly, i.e.
|
|
|
|
;; document ::= prolog element Misc*
|
|
|
|
;; prolog ::= XMLDecl? Misc* (doctypedecl Misc*)?
|
|
|
|
|
|
|
|
;;;###autoload
|
2003-07-14 20:45:43 +00:00
|
|
|
(defun xml-parse-region (beg end &optional buffer parse-dtd parse-ns)
|
2000-07-19 15:52:13 +00:00
|
|
|
"Parse the region from BEG to END in BUFFER.
|
|
|
|
If BUFFER is nil, it defaults to the current buffer.
|
|
|
|
Returns the XML list for the region, or raises an error if the region
|
2003-07-14 20:45:43 +00:00
|
|
|
is not well-formed XML.
|
2000-07-19 15:52:13 +00:00
|
|
|
If PARSE-DTD is non-nil, the DTD is parsed rather than skipped,
|
2003-07-14 20:45:43 +00:00
|
|
|
and returned as the first element of the list.
|
|
|
|
If PARSE-NS is non-nil, then QNAMES are expanded."
|
2006-02-02 01:07:11 +00:00
|
|
|
;; Use fixed syntax table to ensure regexp char classes and syntax
|
|
|
|
;; specs DTRT.
|
|
|
|
(with-syntax-table (standard-syntax-table)
|
|
|
|
(let ((case-fold-search nil) ; XML is case-sensitive.
|
|
|
|
xml result dtd)
|
|
|
|
(save-excursion
|
|
|
|
(if buffer
|
|
|
|
(set-buffer buffer))
|
|
|
|
(save-restriction
|
|
|
|
(narrow-to-region beg end)
|
2003-05-19 16:03:45 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
(while (not (eobp))
|
|
|
|
(if (search-forward "<" nil t)
|
|
|
|
(progn
|
|
|
|
(forward-char -1)
|
2003-11-01 17:56:08 +00:00
|
|
|
(setq result (xml-parse-tag parse-dtd parse-ns))
|
2004-07-09 14:22:33 +00:00
|
|
|
(if (and xml result (not xml-sub-parser))
|
2003-05-19 16:03:45 +00:00
|
|
|
;; translation of rule [1] of XML specifications
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: (Not Well-Formed) Only one root tag allowed")
|
2000-07-19 15:52:13 +00:00
|
|
|
(cond
|
2001-12-14 22:12:30 +00:00
|
|
|
((null result))
|
2003-11-01 17:56:08 +00:00
|
|
|
((and (listp (car result))
|
|
|
|
parse-dtd)
|
2001-12-14 22:12:30 +00:00
|
|
|
(setq dtd (car result))
|
2003-05-19 16:03:45 +00:00
|
|
|
(if (cdr result) ; possible leading comment
|
|
|
|
(add-to-list 'xml (cdr result))))
|
2000-07-19 15:52:13 +00:00
|
|
|
(t
|
2003-05-19 16:03:45 +00:00
|
|
|
(add-to-list 'xml result)))))
|
|
|
|
(goto-char (point-max))))
|
|
|
|
(if parse-dtd
|
|
|
|
(cons dtd (nreverse xml))
|
|
|
|
(nreverse xml)))))))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2004-04-14 18:36:14 +00:00
|
|
|
(defun xml-maybe-do-ns (name default xml-ns)
|
2004-04-16 22:46:26 +00:00
|
|
|
"Perform any namespace expansion.
|
|
|
|
NAME is the name to perform the expansion on.
|
2004-04-14 18:36:14 +00:00
|
|
|
DEFAULT is the default namespace. XML-NS is a cons of namespace
|
|
|
|
names to uris. When namespace-aware parsing is off, then XML-NS
|
|
|
|
is nil.
|
|
|
|
|
|
|
|
During namespace-aware parsing, any name without a namespace is
|
|
|
|
put into the namespace identified by DEFAULT. nil is used to
|
|
|
|
specify that the name shouldn't be given a namespace."
|
|
|
|
(if (consp xml-ns)
|
|
|
|
(let* ((nsp (string-match ":" name))
|
|
|
|
(lname (if nsp (substring name (match-end 0)) name))
|
|
|
|
(prefix (if nsp (substring name 0 (match-beginning 0)) default))
|
|
|
|
(special (and (string-equal lname "xmlns") (not prefix)))
|
|
|
|
;; Setting default to nil will insure that there is not
|
|
|
|
;; matching cons in xml-ns. In which case we
|
|
|
|
(ns (or (cdr (assoc (if special "xmlns" prefix)
|
|
|
|
xml-ns))
|
2004-07-09 14:22:33 +00:00
|
|
|
"")))
|
2004-04-14 18:36:14 +00:00
|
|
|
(cons ns (if special "" lname)))
|
|
|
|
(intern name)))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2004-07-09 14:22:33 +00:00
|
|
|
(defun xml-parse-fragment (&optional parse-dtd parse-ns)
|
|
|
|
"Parse xml-like fragments."
|
|
|
|
(let ((xml-sub-parser t)
|
|
|
|
children)
|
|
|
|
(while (not (eobp))
|
|
|
|
(let ((bit (xml-parse-tag
|
|
|
|
parse-dtd parse-ns)))
|
|
|
|
(if children
|
|
|
|
(setq children (append (list bit) children))
|
|
|
|
(if (stringp bit)
|
|
|
|
(setq children (list bit))
|
|
|
|
(setq children bit)))))
|
|
|
|
(reverse children)))
|
|
|
|
|
2003-07-14 20:45:43 +00:00
|
|
|
(defun xml-parse-tag (&optional parse-dtd parse-ns)
|
2003-05-19 16:03:45 +00:00
|
|
|
"Parse the tag at point.
|
2000-07-19 15:52:13 +00:00
|
|
|
If PARSE-DTD is non-nil, the DTD of the document, if any, is parsed and
|
|
|
|
returned as the first element in the list.
|
2003-07-14 20:45:43 +00:00
|
|
|
If PARSE-NS is non-nil, then QNAMES are expanded.
|
2000-07-19 15:52:13 +00:00
|
|
|
Returns one of:
|
2003-05-19 16:03:45 +00:00
|
|
|
- a list : the matching node
|
|
|
|
- nil : the point is not looking at a tag.
|
|
|
|
- a pair : the first element is the DTD, the second is the node."
|
2004-07-09 14:22:33 +00:00
|
|
|
(let ((xml-validating-parser (or parse-dtd xml-validating-parser))
|
|
|
|
(xml-ns (if (consp parse-ns)
|
2003-07-14 20:45:43 +00:00
|
|
|
parse-ns
|
|
|
|
(if parse-ns
|
|
|
|
(list
|
2006-02-02 01:02:31 +00:00
|
|
|
;; Default for empty prefix is no namespace
|
2004-07-09 14:22:33 +00:00
|
|
|
(cons "" "")
|
2004-04-14 18:36:14 +00:00
|
|
|
;; "xml" namespace
|
2004-07-09 14:22:33 +00:00
|
|
|
(cons "xml" "http://www.w3.org/XML/1998/namespace")
|
2003-07-14 20:45:43 +00:00
|
|
|
;; We need to seed the xmlns namespace
|
2004-07-09 14:22:33 +00:00
|
|
|
(cons "xmlns" "http://www.w3.org/2000/xmlns/"))))))
|
2003-07-14 20:45:43 +00:00
|
|
|
(cond
|
|
|
|
;; Processing instructions (like the <?xml version="1.0"?> tag at the
|
|
|
|
;; beginning of a document).
|
|
|
|
((looking-at "<\\?")
|
|
|
|
(search-forward "?>")
|
|
|
|
(skip-syntax-forward " ")
|
|
|
|
(xml-parse-tag parse-dtd xml-ns))
|
|
|
|
;; Character data (CDATA) sections, in which no tag should be interpreted
|
|
|
|
((looking-at "<!\\[CDATA\\[")
|
|
|
|
(let ((pos (match-end 0)))
|
|
|
|
(unless (search-forward "]]>" nil t)
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: (Not Well Formed) CDATA section does not end anywhere in the document"))
|
2004-12-01 04:45:08 +00:00
|
|
|
(concat
|
2007-03-17 18:55:52 +00:00
|
|
|
(buffer-substring-no-properties pos (match-beginning 0))
|
2004-12-01 04:45:08 +00:00
|
|
|
(xml-parse-string))))
|
2003-07-14 20:45:43 +00:00
|
|
|
;; DTD for the document
|
|
|
|
((looking-at "<!DOCTYPE")
|
2004-07-09 14:22:33 +00:00
|
|
|
(let ((dtd (xml-parse-dtd parse-ns)))
|
|
|
|
(skip-syntax-forward " ")
|
|
|
|
(if xml-validating-parser
|
|
|
|
(cons dtd (xml-parse-tag nil xml-ns))
|
|
|
|
(xml-parse-tag nil xml-ns))))
|
2003-07-14 20:45:43 +00:00
|
|
|
;; skip comments
|
|
|
|
((looking-at "<!--")
|
|
|
|
(search-forward "-->")
|
|
|
|
nil)
|
|
|
|
;; end tag
|
|
|
|
((looking-at "</")
|
|
|
|
'())
|
|
|
|
;; opening tag
|
|
|
|
((looking-at "<\\([^/>[:space:]]+\\)")
|
|
|
|
(goto-char (match-end 1))
|
2003-11-01 17:56:08 +00:00
|
|
|
|
|
|
|
;; Parse this node
|
2007-03-17 18:55:52 +00:00
|
|
|
(let* ((node-name (match-string-no-properties 1))
|
2006-02-02 01:02:31 +00:00
|
|
|
;; Parse the attribute list.
|
|
|
|
(attrs (xml-parse-attlist xml-ns))
|
|
|
|
children pos)
|
2004-04-14 18:36:14 +00:00
|
|
|
|
2006-02-02 01:02:31 +00:00
|
|
|
;; add the xmlns:* attrs to our cache
|
|
|
|
(when (consp xml-ns)
|
2004-04-14 18:36:14 +00:00
|
|
|
(dolist (attr attrs)
|
|
|
|
(when (and (consp (car attr))
|
2004-07-09 14:22:33 +00:00
|
|
|
(equal "http://www.w3.org/2000/xmlns/"
|
|
|
|
(caar attr)))
|
|
|
|
(push (cons (cdar attr) (cdr attr))
|
2004-04-14 18:36:14 +00:00
|
|
|
xml-ns))))
|
|
|
|
|
2006-02-02 01:02:31 +00:00
|
|
|
(setq children (list attrs (xml-maybe-do-ns node-name "" xml-ns)))
|
2004-04-14 18:36:14 +00:00
|
|
|
|
2003-07-14 20:45:43 +00:00
|
|
|
;; is this an empty element ?
|
|
|
|
(if (looking-at "/>")
|
2000-07-19 15:52:13 +00:00
|
|
|
(progn
|
2004-07-09 14:22:33 +00:00
|
|
|
(forward-char 2)
|
2001-12-14 22:12:30 +00:00
|
|
|
(nreverse children))
|
2004-07-09 14:22:33 +00:00
|
|
|
|
|
|
|
;; is this a valid start tag ?
|
|
|
|
(if (eq (char-after) ?>)
|
|
|
|
(progn
|
|
|
|
(forward-char 1)
|
|
|
|
;; Now check that we have the right end-tag. Note that this
|
|
|
|
;; one might contain spaces after the tag name
|
|
|
|
(let ((end (concat "</" node-name "\\s-*>")))
|
|
|
|
(while (not (looking-at end))
|
|
|
|
(cond
|
|
|
|
((looking-at "</")
|
|
|
|
(error "XML: (Not Well-Formed) Invalid end tag (expecting %s) at pos %d"
|
|
|
|
node-name (point)))
|
|
|
|
((= (char-after) ?<)
|
|
|
|
(let ((tag (xml-parse-tag nil xml-ns)))
|
|
|
|
(when tag
|
|
|
|
(push tag children))))
|
|
|
|
(t
|
|
|
|
(let ((expansion (xml-parse-string)))
|
|
|
|
(setq children
|
|
|
|
(if (stringp expansion)
|
|
|
|
(if (stringp (car children))
|
|
|
|
;; The two strings were separated by a comment.
|
2005-11-03 03:56:38 +00:00
|
|
|
(setq children (append (list (concat (car children) expansion))
|
2004-07-09 14:22:33 +00:00
|
|
|
(cdr children)))
|
|
|
|
(setq children (append (list expansion) children)))
|
|
|
|
(setq children (append expansion children))))))))
|
|
|
|
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
(nreverse children)))
|
|
|
|
;; This was an invalid start tag (Expected ">", but didn't see it.)
|
|
|
|
(error "XML: (Well-Formed) Couldn't parse tag: %s"
|
2007-03-17 18:55:52 +00:00
|
|
|
(buffer-substring-no-properties (- (point) 10) (+ (point) 1)))))))
|
2004-07-09 14:22:33 +00:00
|
|
|
(t ;; (Not one of PI, CDATA, Comment, End tag, or Start tag)
|
|
|
|
(unless xml-sub-parser ; Usually, we error out.
|
|
|
|
(error "XML: (Well-Formed) Invalid character"))
|
|
|
|
|
|
|
|
;; However, if we're parsing incrementally, then we need to deal
|
|
|
|
;; with stray CDATA.
|
|
|
|
(xml-parse-string)))))
|
|
|
|
|
|
|
|
(defun xml-parse-string ()
|
|
|
|
"Parse the next whatever. Could be a string, or an element."
|
2006-02-02 01:02:31 +00:00
|
|
|
(let* ((pos (point))
|
2008-10-05 19:01:53 +00:00
|
|
|
(string (progn (skip-chars-forward "^<")
|
2007-03-17 18:55:52 +00:00
|
|
|
(buffer-substring-no-properties pos (point)))))
|
2006-02-02 01:02:31 +00:00
|
|
|
;; Clean up the string. As per XML specifications, the XML
|
|
|
|
;; processor should always pass the whole string to the
|
|
|
|
;; application. But \r's should be replaced:
|
|
|
|
;; http://www.w3.org/TR/2000/REC-xml-20001006#sec-line-ends
|
|
|
|
(setq pos 0)
|
|
|
|
(while (string-match "\r\n?" string pos)
|
|
|
|
(setq string (replace-match "\n" t t string))
|
|
|
|
(setq pos (1+ (match-beginning 0))))
|
|
|
|
|
|
|
|
(xml-substitute-special string)))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2004-04-14 18:36:14 +00:00
|
|
|
(defun xml-parse-attlist (&optional xml-ns)
|
2004-04-16 22:46:26 +00:00
|
|
|
"Return the attribute-list after point.
|
|
|
|
Leave point at the first non-blank character after the tag."
|
2001-12-14 22:12:30 +00:00
|
|
|
(let ((attlist ())
|
2003-11-01 17:56:08 +00:00
|
|
|
end-pos name)
|
2003-05-19 16:03:45 +00:00
|
|
|
(skip-syntax-forward " ")
|
|
|
|
(while (looking-at (eval-when-compile
|
|
|
|
(concat "\\(" xml-name-regexp "\\)\\s-*=\\s-*")))
|
2004-04-14 18:36:14 +00:00
|
|
|
(setq end-pos (match-end 0))
|
2007-03-17 18:55:52 +00:00
|
|
|
(setq name (xml-maybe-do-ns (match-string-no-properties 1) nil xml-ns))
|
2004-04-14 18:36:14 +00:00
|
|
|
(goto-char end-pos)
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2003-03-16 10:48:34 +00:00
|
|
|
;; See also: http://www.w3.org/TR/2000/REC-xml-20001006#AVNormalize
|
|
|
|
|
2000-07-19 15:52:13 +00:00
|
|
|
;; Do we have a string between quotes (or double-quotes),
|
|
|
|
;; or a simple word ?
|
2003-03-16 10:48:34 +00:00
|
|
|
(if (looking-at "\"\\([^\"]*\\)\"")
|
2003-11-01 17:56:08 +00:00
|
|
|
(setq end-pos (match-end 0))
|
2003-03-20 18:01:58 +00:00
|
|
|
(if (looking-at "'\\([^']*\\)'")
|
2003-11-01 17:56:08 +00:00
|
|
|
(setq end-pos (match-end 0))
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: (Not Well-Formed) Attribute values must be given between quotes")))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
;; Each attribute must be unique within a given element
|
|
|
|
(if (assoc name attlist)
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: (Not Well-Formed) Each attribute must be unique within an element"))
|
2003-01-04 09:32:17 +00:00
|
|
|
|
2003-03-16 10:48:34 +00:00
|
|
|
;; Multiple whitespace characters should be replaced with a single one
|
|
|
|
;; in the attributes
|
2007-03-17 18:55:52 +00:00
|
|
|
(let ((string (match-string-no-properties 1))
|
2003-03-16 10:48:34 +00:00
|
|
|
(pos 0))
|
2003-05-19 16:03:45 +00:00
|
|
|
(replace-regexp-in-string "\\s-\\{2,\\}" " " string)
|
2004-07-09 14:22:33 +00:00
|
|
|
(let ((expansion (xml-substitute-special string)))
|
|
|
|
(unless (stringp expansion)
|
2006-02-02 01:02:31 +00:00
|
|
|
; We say this is the constraint. It is acctually that
|
|
|
|
; external entities nor "<" can be in an attribute value.
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: (Not Well-Formed) Entities in attributes cannot expand into elements"))
|
|
|
|
(push (cons name expansion) attlist)))
|
2003-03-16 10:48:34 +00:00
|
|
|
|
2003-11-01 17:56:08 +00:00
|
|
|
(goto-char end-pos)
|
2003-05-19 16:03:45 +00:00
|
|
|
(skip-syntax-forward " "))
|
2001-12-14 22:12:30 +00:00
|
|
|
(nreverse attlist)))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
;;*******************************************************************
|
|
|
|
;;**
|
|
|
|
;;** The DTD (document type declaration)
|
|
|
|
;;** The following functions know how to skip or parse the DTD of
|
|
|
|
;;** a document
|
|
|
|
;;**
|
|
|
|
;;*******************************************************************
|
|
|
|
|
2003-05-19 16:03:45 +00:00
|
|
|
;; Fixme: This fails at least if the DTD contains conditional sections.
|
|
|
|
|
|
|
|
(defun xml-skip-dtd ()
|
|
|
|
"Skip the DTD at point.
|
2000-07-19 15:52:13 +00:00
|
|
|
This follows the rule [28] in the XML specifications."
|
2004-07-09 14:22:33 +00:00
|
|
|
(let ((xml-validating-parser nil))
|
|
|
|
(xml-parse-dtd)))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2004-07-09 14:22:33 +00:00
|
|
|
(defun xml-parse-dtd (&optional parse-ns)
|
2003-05-19 16:03:45 +00:00
|
|
|
"Parse the DTD at point."
|
|
|
|
(forward-char (eval-when-compile (length "<!DOCTYPE")))
|
|
|
|
(skip-syntax-forward " ")
|
2004-07-09 14:22:33 +00:00
|
|
|
(if (and (looking-at ">")
|
|
|
|
xml-validating-parser)
|
|
|
|
(error "XML: (Validity) Invalid DTD (expecting name of the document)"))
|
2003-01-04 09:32:17 +00:00
|
|
|
|
2001-12-14 22:12:30 +00:00
|
|
|
;; Get the name of the document
|
2003-05-19 16:03:45 +00:00
|
|
|
(looking-at xml-name-regexp)
|
2007-03-17 18:55:52 +00:00
|
|
|
(let ((dtd (list (match-string-no-properties 0) 'dtd))
|
2001-12-14 22:12:30 +00:00
|
|
|
type element end-pos)
|
2000-07-19 15:52:13 +00:00
|
|
|
(goto-char (match-end 0))
|
|
|
|
|
2003-05-19 16:03:45 +00:00
|
|
|
(skip-syntax-forward " ")
|
|
|
|
;; XML [75]
|
|
|
|
(cond ((looking-at "PUBLIC\\s-+")
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
(unless (or (re-search-forward
|
|
|
|
"\\=\"\\([[:space:][:alnum:]-'()+,./:=?;!*#@$_%]*\\)\""
|
|
|
|
nil t)
|
|
|
|
(re-search-forward
|
|
|
|
"\\='\\([[:space:][:alnum:]-()+,./:=?;!*#@$_%]*\\)'"
|
|
|
|
nil t))
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: Missing Public ID"))
|
2007-03-17 18:55:52 +00:00
|
|
|
(let ((pubid (match-string-no-properties 1)))
|
2004-07-09 14:22:33 +00:00
|
|
|
(skip-syntax-forward " ")
|
2003-05-19 16:03:45 +00:00
|
|
|
(unless (or (re-search-forward "\\='\\([^']*\\)'" nil t)
|
|
|
|
(re-search-forward "\\=\"\\([^\"]*\\)\"" nil t))
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: Missing System ID"))
|
2007-03-17 18:55:52 +00:00
|
|
|
(push (list pubid (match-string-no-properties 1) 'public) dtd)))
|
2003-05-19 16:03:45 +00:00
|
|
|
((looking-at "SYSTEM\\s-+")
|
|
|
|
(goto-char (match-end 0))
|
|
|
|
(unless (or (re-search-forward "\\='\\([^']*\\)'" nil t)
|
|
|
|
(re-search-forward "\\=\"\\([^\"]*\\)\"" nil t))
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: Missing System ID"))
|
2007-03-17 18:55:52 +00:00
|
|
|
(push (list (match-string-no-properties 1) 'system) dtd)))
|
2003-05-19 16:03:45 +00:00
|
|
|
(skip-syntax-forward " ")
|
|
|
|
(if (eq ?> (char-after))
|
|
|
|
(forward-char)
|
|
|
|
(if (not (eq (char-after) ?\[))
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: Bad DTD")
|
2003-05-19 16:03:45 +00:00
|
|
|
(forward-char)
|
|
|
|
;; Parse the rest of the DTD
|
2005-06-10 15:37:37 +00:00
|
|
|
;; Fixme: Deal with NOTATION, PIs.
|
2003-05-19 16:03:45 +00:00
|
|
|
(while (not (looking-at "\\s-*\\]"))
|
|
|
|
(skip-syntax-forward " ")
|
|
|
|
(cond
|
|
|
|
|
|
|
|
;; Translation of rule [45] of XML specifications
|
|
|
|
((looking-at
|
|
|
|
"<!ELEMENT\\s-+\\([[:alnum:].%;]+\\)\\s-+\\([^>]+\\)>")
|
|
|
|
|
2007-03-17 18:55:52 +00:00
|
|
|
(setq element (match-string-no-properties 1)
|
2003-05-19 16:03:45 +00:00
|
|
|
type (match-string-no-properties 2))
|
|
|
|
(setq end-pos (match-end 0))
|
|
|
|
|
|
|
|
;; Translation of rule [46] of XML specifications
|
|
|
|
(cond
|
|
|
|
((string-match "^EMPTY[ \t\n\r]*$" type) ;; empty declaration
|
|
|
|
(setq type 'empty))
|
|
|
|
((string-match "^ANY[ \t\n\r]*$" type) ;; any type of contents
|
|
|
|
(setq type 'any))
|
|
|
|
((string-match "^(\\(.*\\))[ \t\n\r]*$" type) ;; children ([47])
|
2007-03-17 18:55:52 +00:00
|
|
|
(setq type (xml-parse-elem-type (match-string-no-properties 1 type))))
|
2003-05-19 16:03:45 +00:00
|
|
|
((string-match "^%[^;]+;[ \t\n\r]*$" type) ;; substitution
|
|
|
|
nil)
|
|
|
|
(t
|
2004-07-09 14:22:33 +00:00
|
|
|
(if xml-validating-parser
|
2004-10-06 06:04:41 +00:00
|
|
|
(error "XML: (Validity) Invalid element type in the DTD"))))
|
2004-12-02 07:19:03 +00:00
|
|
|
|
2003-05-19 16:03:45 +00:00
|
|
|
;; rule [45]: the element declaration must be unique
|
2004-07-09 14:22:33 +00:00
|
|
|
(if (and (assoc element dtd)
|
|
|
|
xml-validating-parser)
|
|
|
|
(error "XML: (Validity) Element declarations must be unique in a DTD (<%s>)"
|
2003-11-07 16:05:26 +00:00
|
|
|
element))
|
2003-05-19 16:03:45 +00:00
|
|
|
|
|
|
|
;; Store the element in the DTD
|
|
|
|
(push (list element type) dtd)
|
|
|
|
(goto-char end-pos))
|
2005-06-10 15:37:37 +00:00
|
|
|
|
|
|
|
;; Translation of rule [52] of XML specifications
|
|
|
|
((looking-at (concat "<!ATTLIST[ \t\n\r]*\\(" xml-name-re
|
|
|
|
"\\)[ \t\n\r]*\\(" xml-att-def-re
|
|
|
|
"\\)*[ \t\n\r]*>"))
|
|
|
|
|
|
|
|
;; We don't do anything with ATTLIST currently
|
|
|
|
(goto-char (match-end 0)))
|
|
|
|
|
2003-05-19 16:03:45 +00:00
|
|
|
((looking-at "<!--")
|
|
|
|
(search-forward "-->"))
|
2004-07-09 14:22:33 +00:00
|
|
|
((looking-at (concat "<!ENTITY[ \t\n\r]*\\(" xml-name-re
|
|
|
|
"\\)[ \t\n\r]*\\(" xml-entity-value-re
|
|
|
|
"\\)[ \t\n\r]*>"))
|
2007-03-17 18:55:52 +00:00
|
|
|
(let ((name (match-string-no-properties 1))
|
|
|
|
(value (substring (match-string-no-properties 2) 1
|
|
|
|
(- (length (match-string-no-properties 2)) 1))))
|
2005-06-10 15:37:37 +00:00
|
|
|
(goto-char (match-end 0))
|
2004-07-09 14:22:33 +00:00
|
|
|
(setq xml-entity-alist
|
|
|
|
(append xml-entity-alist
|
|
|
|
(list (cons name
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert value)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(xml-parse-fragment
|
|
|
|
xml-validating-parser
|
|
|
|
parse-ns))))))))
|
|
|
|
((or (looking-at (concat "<!ENTITY[ \t\n\r]+\\(" xml-name-re
|
|
|
|
"\\)[ \t\n\r]+SYSTEM[ \t\n\r]+"
|
|
|
|
"\\(\"[^\"]*\"\\|'[^']*'\\)[ \t\n\r]*>"))
|
|
|
|
(looking-at (concat "<!ENTITY[ \t\n\r]+\\(" xml-name-re
|
|
|
|
"\\)[ \t\n\r]+PUBLIC[ \t\n\r]+"
|
|
|
|
"\"[- \r\na-zA-Z0-9'()+,./:=?;!*#@$_%]*\""
|
|
|
|
"\\|'[- \r\na-zA-Z0-9()+,./:=?;!*#@$_%]*'"
|
|
|
|
"[ \t\n\r]+\\(\"[^\"]*\"\\|'[^']*'\\)"
|
|
|
|
"[ \t\n\r]*>")))
|
2007-03-17 18:55:52 +00:00
|
|
|
(let ((name (match-string-no-properties 1))
|
|
|
|
(file (substring (match-string-no-properties 2) 1
|
|
|
|
(- (length (match-string-no-properties 2)) 1))))
|
2005-06-10 15:37:37 +00:00
|
|
|
(goto-char (match-end 0))
|
2004-07-09 14:22:33 +00:00
|
|
|
(setq xml-entity-alist
|
|
|
|
(append xml-entity-alist
|
|
|
|
(list (cons name (with-temp-buffer
|
|
|
|
(insert-file-contents file)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(xml-parse-fragment
|
|
|
|
xml-validating-parser
|
|
|
|
parse-ns))))))))
|
2004-12-02 07:48:25 +00:00
|
|
|
;; skip parameter entity declarations
|
|
|
|
((or (looking-at (concat "<!ENTITY[ \t\n\r]+%[ \t\n\r]+\\(" xml-name-re
|
|
|
|
"\\)[ \t\n\r]+SYSTEM[ \t\n\r]+"
|
|
|
|
"\\(\"[^\"]*\"\\|'[^']*'\\)[ \t\n\r]*>"))
|
|
|
|
(looking-at (concat "<!ENTITY[ \t\n\r]+"
|
|
|
|
"%[ \t\n\r]+"
|
|
|
|
"\\(" xml-name-re "\\)[ \t\n\r]+"
|
|
|
|
"PUBLIC[ \t\n\r]+"
|
|
|
|
"\\(\"[- \r\na-zA-Z0-9'()+,./:=?;!*#@$_%]*\""
|
|
|
|
"\\|'[- \r\na-zA-Z0-9()+,./:=?;!*#@$_%]*'\\)[ \t\n\r]+"
|
|
|
|
"\\(\"[^\"]+\"\\|'[^']+'\\)"
|
|
|
|
"[ \t\n\r]*>")))
|
|
|
|
(goto-char (match-end 0)))
|
|
|
|
;; skip parameter entities
|
|
|
|
((looking-at (concat "%" xml-name-re ";"))
|
|
|
|
(goto-char (match-end 0)))
|
2003-05-19 16:03:45 +00:00
|
|
|
(t
|
2004-12-02 06:53:43 +00:00
|
|
|
(when xml-validating-parser
|
2004-12-02 07:19:03 +00:00
|
|
|
(error "XML: (Validity) Invalid DTD item"))))))
|
2004-07-09 14:22:33 +00:00
|
|
|
(if (looking-at "\\s-*]>")
|
2005-06-10 15:37:37 +00:00
|
|
|
(goto-char (match-end 0))))
|
2003-11-07 16:05:26 +00:00
|
|
|
(nreverse dtd)))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
(defun xml-parse-elem-type (string)
|
2003-05-19 16:03:45 +00:00
|
|
|
"Convert element type STRING into a Lisp structure."
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
(let (elem modifier)
|
|
|
|
(if (string-match "(\\([^)]+\\))\\([+*?]?\\)" string)
|
|
|
|
(progn
|
2007-03-17 18:55:52 +00:00
|
|
|
(setq elem (match-string-no-properties 1 string)
|
|
|
|
modifier (match-string-no-properties 2 string))
|
2000-07-19 15:52:13 +00:00
|
|
|
(if (string-match "|" elem)
|
2001-12-14 22:12:30 +00:00
|
|
|
(setq elem (cons 'choice
|
2000-07-19 15:52:13 +00:00
|
|
|
(mapcar 'xml-parse-elem-type
|
|
|
|
(split-string elem "|"))))
|
|
|
|
(if (string-match "," elem)
|
2001-12-14 22:12:30 +00:00
|
|
|
(setq elem (cons 'seq
|
2000-07-19 15:52:13 +00:00
|
|
|
(mapcar 'xml-parse-elem-type
|
2003-05-19 16:03:45 +00:00
|
|
|
(split-string elem ",")))))))
|
2003-03-16 10:48:34 +00:00
|
|
|
(if (string-match "[ \t\n\r]*\\([^+*?]+\\)\\([+*?]?\\)" string)
|
2007-03-17 18:55:52 +00:00
|
|
|
(setq elem (match-string-no-properties 1 string)
|
|
|
|
modifier (match-string-no-properties 2 string))))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2001-12-14 22:12:30 +00:00
|
|
|
(if (and (stringp elem) (string= elem "#PCDATA"))
|
|
|
|
(setq elem 'pcdata))
|
2003-01-04 09:32:17 +00:00
|
|
|
|
2001-12-14 22:12:30 +00:00
|
|
|
(cond
|
|
|
|
((string= modifier "+")
|
|
|
|
(list '+ elem))
|
|
|
|
((string= modifier "*")
|
|
|
|
(list '* elem))
|
|
|
|
((string= modifier "?")
|
2003-02-14 09:58:04 +00:00
|
|
|
(list '\? elem))
|
2001-12-14 22:12:30 +00:00
|
|
|
(t
|
|
|
|
elem))))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
;;*******************************************************************
|
|
|
|
;;**
|
|
|
|
;;** Substituting special XML sequences
|
|
|
|
;;**
|
|
|
|
;;*******************************************************************
|
|
|
|
|
|
|
|
(defun xml-substitute-special (string)
|
2003-05-19 16:03:45 +00:00
|
|
|
"Return STRING, after subsituting entity references."
|
|
|
|
;; This originally made repeated passes through the string from the
|
|
|
|
;; beginning, which isn't correct, since then either "&amp;" or
|
|
|
|
;; "&amp;" won't DTRT.
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2004-07-09 14:22:33 +00:00
|
|
|
(let ((point 0)
|
|
|
|
children end-point)
|
2004-12-01 04:45:08 +00:00
|
|
|
(while (string-match "&\\([^;]*\\);" string point)
|
2004-07-09 14:22:33 +00:00
|
|
|
(setq end-point (match-end 0))
|
2007-03-17 18:55:52 +00:00
|
|
|
(let* ((this-part (match-string-no-properties 1 string))
|
2004-07-09 14:22:33 +00:00
|
|
|
(prev-part (substring string point (match-beginning 0)))
|
|
|
|
(entity (assoc this-part xml-entity-alist))
|
|
|
|
(expansion
|
|
|
|
(cond ((string-match "#\\([0-9]+\\)" this-part)
|
|
|
|
(let ((c (decode-char
|
|
|
|
'ucs
|
2007-03-17 18:55:52 +00:00
|
|
|
(string-to-number (match-string-no-properties 1 this-part)))))
|
2004-07-09 14:22:33 +00:00
|
|
|
(if c (string c))))
|
|
|
|
((string-match "#x\\([[:xdigit:]]+\\)" this-part)
|
|
|
|
(let ((c (decode-char
|
|
|
|
'ucs
|
2007-03-17 18:55:52 +00:00
|
|
|
(string-to-number (match-string-no-properties 1 this-part) 16))))
|
2004-07-09 14:22:33 +00:00
|
|
|
(if c (string c))))
|
|
|
|
(entity
|
|
|
|
(cdr entity))
|
2004-12-01 04:45:08 +00:00
|
|
|
((eq (length this-part) 0)
|
2004-12-02 07:19:03 +00:00
|
|
|
(error "XML: (Not Well-Formed) No entity given"))
|
2004-07-09 14:22:33 +00:00
|
|
|
(t
|
2005-05-26 14:35:47 +00:00
|
|
|
(if xml-validating-parser
|
2004-07-09 14:22:33 +00:00
|
|
|
(error "XML: (Validity) Undefined entity `%s'"
|
2005-05-26 14:35:47 +00:00
|
|
|
this-part)
|
|
|
|
xml-undefined-entity)))))
|
2004-07-09 14:22:33 +00:00
|
|
|
|
|
|
|
(cond ((null children)
|
2004-10-07 18:13:43 +00:00
|
|
|
;; FIXME: If we have an entity that expands into XML, this won't work.
|
|
|
|
(setq children
|
|
|
|
(concat prev-part expansion)))
|
2004-07-09 14:22:33 +00:00
|
|
|
((stringp children)
|
|
|
|
(if (stringp expansion)
|
|
|
|
(setq children (concat children prev-part expansion))
|
|
|
|
(setq children (list expansion (concat prev-part children)))))
|
|
|
|
((and (stringp expansion)
|
|
|
|
(stringp (car children)))
|
|
|
|
(setcar children (concat prev-part expansion (car children))))
|
|
|
|
((stringp expansion)
|
|
|
|
(setq children (append (concat prev-part expansion)
|
|
|
|
children)))
|
|
|
|
((stringp (car children))
|
|
|
|
(setcar children (concat (car children) prev-part))
|
|
|
|
(setq children (append expansion children)))
|
|
|
|
(t
|
|
|
|
(setq children (list expansion
|
|
|
|
prev-part
|
|
|
|
children))))
|
|
|
|
(setq point end-point)))
|
|
|
|
(cond ((stringp children)
|
|
|
|
(concat children (substring string point)))
|
|
|
|
((stringp (car (last children)))
|
2004-10-06 00:58:29 +00:00
|
|
|
(concat (car (last children)) (substring string point)))
|
2004-07-09 14:22:33 +00:00
|
|
|
((null children)
|
|
|
|
string)
|
|
|
|
(t
|
2004-10-06 00:58:29 +00:00
|
|
|
(concat (mapconcat 'identity
|
|
|
|
(nreverse children)
|
|
|
|
"")
|
|
|
|
(substring string point))))))
|
|
|
|
|
2000-07-19 15:52:13 +00:00
|
|
|
;;*******************************************************************
|
|
|
|
;;**
|
|
|
|
;;** Printing a tree.
|
|
|
|
;;** This function is intended mainly for debugging purposes.
|
|
|
|
;;**
|
|
|
|
;;*******************************************************************
|
|
|
|
|
2004-04-30 20:00:19 +00:00
|
|
|
(defun xml-debug-print (xml &optional indent-string)
|
|
|
|
"Outputs the XML in the current buffer.
|
|
|
|
XML can be a tree or a list of nodes.
|
|
|
|
The first line is indented with the optional INDENT-STRING."
|
|
|
|
(setq indent-string (or indent-string ""))
|
2001-12-14 22:12:30 +00:00
|
|
|
(dolist (node xml)
|
2004-04-30 20:00:19 +00:00
|
|
|
(xml-debug-print-internal node indent-string)))
|
|
|
|
|
|
|
|
(defalias 'xml-print 'xml-debug-print)
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2007-12-18 03:22:05 +00:00
|
|
|
(defun xml-escape-string (string)
|
2007-12-18 03:29:10 +00:00
|
|
|
"Return the string with entity substitutions made from
|
|
|
|
xml-entity-alist."
|
2007-12-18 03:22:05 +00:00
|
|
|
(mapconcat (lambda (byte)
|
|
|
|
(let ((char (char-to-string byte)))
|
|
|
|
(if (rassoc char xml-entity-alist)
|
|
|
|
(concat "&" (car (rassoc char xml-entity-alist)) ";")
|
|
|
|
char)))
|
2008-01-17 17:21:34 +00:00
|
|
|
;; This differs from the non-unicode branch. Just
|
|
|
|
;; grabbing the string works here.
|
|
|
|
string ""))
|
2007-12-18 03:22:05 +00:00
|
|
|
|
2001-12-14 22:12:30 +00:00
|
|
|
(defun xml-debug-print-internal (xml indent-string)
|
2000-07-19 15:52:13 +00:00
|
|
|
"Outputs the XML tree in the current buffer.
|
2003-05-19 16:03:45 +00:00
|
|
|
The first line is indented with INDENT-STRING."
|
2000-07-19 15:52:13 +00:00
|
|
|
(let ((tree xml)
|
|
|
|
attlist)
|
2003-05-19 16:03:45 +00:00
|
|
|
(insert indent-string ?< (symbol-name (xml-node-name tree)))
|
2003-01-04 09:32:17 +00:00
|
|
|
|
2000-07-19 15:52:13 +00:00
|
|
|
;; output the attribute list
|
2001-12-14 22:12:30 +00:00
|
|
|
(setq attlist (xml-node-attributes tree))
|
2000-07-19 15:52:13 +00:00
|
|
|
(while attlist
|
2007-12-18 03:22:05 +00:00
|
|
|
(insert ?\ (symbol-name (caar attlist)) "=\""
|
|
|
|
(xml-escape-string (cdar attlist)) ?\")
|
2001-12-14 22:12:30 +00:00
|
|
|
(setq attlist (cdr attlist)))
|
2003-01-04 09:32:17 +00:00
|
|
|
|
2001-12-14 22:12:30 +00:00
|
|
|
(setq tree (xml-node-children tree))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
2004-04-30 20:00:19 +00:00
|
|
|
(if (null tree)
|
|
|
|
(insert ?/ ?>)
|
|
|
|
(insert ?>)
|
|
|
|
|
|
|
|
;; output the children
|
|
|
|
(dolist (node tree)
|
|
|
|
(cond
|
|
|
|
((listp node)
|
|
|
|
(insert ?\n)
|
|
|
|
(xml-debug-print-internal node (concat indent-string " ")))
|
2007-12-18 03:22:05 +00:00
|
|
|
((stringp node)
|
|
|
|
(insert (xml-escape-string node)))
|
2004-04-30 20:00:19 +00:00
|
|
|
(t
|
|
|
|
(error "Invalid XML tree"))))
|
|
|
|
|
|
|
|
(when (not (and (null (cdr tree))
|
|
|
|
(stringp (car tree))))
|
|
|
|
(insert ?\n indent-string))
|
|
|
|
(insert ?< ?/ (symbol-name (xml-node-name xml)) ?>))))
|
2000-07-19 15:52:13 +00:00
|
|
|
|
|
|
|
(provide 'xml)
|
|
|
|
|
2004-05-02 17:26:52 +00:00
|
|
|
;; arch-tag: 5864b283-5a68-4b59-a20d-36a72b353b9b
|
2000-07-19 15:52:13 +00:00
|
|
|
;;; xml.el ends here
|