blob: a5d813f932ace36e2dbf8afcd780ca48551a3b81 [file] [log] [blame]
Ezio Melottida4b5b82013-01-22 22:47:57 +02001"""Simple implementation of the Level 1 DOM.
2
3Namespaces and other minor Level 2 features are also supported.
Fred Drake55c38192000-06-29 19:39:57 +00004
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +00005parse("foo.xml")
Paul Prescod623511b2000-07-21 22:05:49 +00006
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +00007parseString("<foo><bar/></foo>")
Paul Prescod623511b2000-07-21 22:05:49 +00008
Fred Drake55c38192000-06-29 19:39:57 +00009Todo:
10=====
11 * convenience methods for getting elements and text.
12 * more testing
13 * bring some of the writer and linearizer code into conformance with this
14 interface
15 * SAX 2 namespaces
16"""
17
Guido van Rossum3e1f85e2007-07-27 18:03:11 +000018import io
Thomas Wouters0e3f5912006-08-11 14:57:12 +000019import xml.dom
Fred Drake55c38192000-06-29 19:39:57 +000020
Thomas Wouters0e3f5912006-08-11 14:57:12 +000021from xml.dom import EMPTY_NAMESPACE, EMPTY_PREFIX, XMLNS_NAMESPACE, domreg
22from xml.dom.minicompat import *
23from xml.dom.xmlbuilder import DOMImplementationLS, DocumentLS
Fred Drake3ac6a092001-09-28 04:33:06 +000024
Martin v. Löwis787354c2003-01-25 15:28:29 +000025# This is used by the ID-cache invalidation checks; the list isn't
26# actually complete, since the nodes being checked will never be the
27# DOCUMENT_NODE or DOCUMENT_FRAGMENT_NODE. (The node being checked is
28# the node being added or removed, not the node being modified.)
29#
Thomas Wouters0e3f5912006-08-11 14:57:12 +000030_nodeTypes_with_children = (xml.dom.Node.ELEMENT_NODE,
31 xml.dom.Node.ENTITY_REFERENCE_NODE)
Martin v. Löwis95700f72002-03-15 13:51:59 +000032
Fred Drake3ac6a092001-09-28 04:33:06 +000033
Thomas Wouters0e3f5912006-08-11 14:57:12 +000034class Node(xml.dom.Node):
Martin v. Löwis126f2f62001-03-13 10:50:13 +000035 namespaceURI = None # this is non-null only for elements and attributes
Fred Drake575712e2001-09-28 20:25:45 +000036 parentNode = None
37 ownerDocument = None
Martin v. Löwis787354c2003-01-25 15:28:29 +000038 nextSibling = None
39 previousSibling = None
Martin v. Löwis52ce0d02001-01-27 08:47:37 +000040
Martin v. Löwis787354c2003-01-25 15:28:29 +000041 prefix = EMPTY_PREFIX # non-null only for NS elements and attributes
Fred Drake55c38192000-06-29 19:39:57 +000042
Jack Diederich4dafcc42006-11-28 19:15:13 +000043 def __bool__(self):
Martin v. Löwis787354c2003-01-25 15:28:29 +000044 return True
Fred Drake55c38192000-06-29 19:39:57 +000045
Georg Brandlfe991052009-09-16 15:54:04 +000046 def toxml(self, encoding=None):
Martin v. Löwis7d650ca2002-06-30 15:05:00 +000047 return self.toprettyxml("", "", encoding)
Fred Drake55c38192000-06-29 19:39:57 +000048
Guido van Rossum3e1f85e2007-07-27 18:03:11 +000049 def toprettyxml(self, indent="\t", newl="\n", encoding=None):
Eli Bendersky8a805022012-07-13 09:52:39 +030050 if encoding is None:
51 writer = io.StringIO()
52 else:
53 writer = io.TextIOWrapper(io.BytesIO(),
54 encoding=encoding,
55 errors="xmlcharrefreplace",
56 newline='\n')
Martin v. Löwis7d650ca2002-06-30 15:05:00 +000057 if self.nodeType == Node.DOCUMENT_NODE:
58 # Can pass encoding only to document, to put it into XML header
59 self.writexml(writer, "", indent, newl, encoding)
60 else:
61 self.writexml(writer, "", indent, newl)
Guido van Rossum3e1f85e2007-07-27 18:03:11 +000062 if encoding is None:
Eli Bendersky8a805022012-07-13 09:52:39 +030063 return writer.getvalue()
Guido van Rossum3e1f85e2007-07-27 18:03:11 +000064 else:
Eli Bendersky8a805022012-07-13 09:52:39 +030065 return writer.detach().getvalue()
Martin v. Löwis46fa39a2001-02-06 00:14:08 +000066
Fred Drake1f549022000-09-24 05:21:58 +000067 def hasChildNodes(self):
Florent Xicluna8cf4b512012-03-05 12:37:02 +010068 return bool(self.childNodes)
Martin v. Löwis787354c2003-01-25 15:28:29 +000069
70 def _get_childNodes(self):
71 return self.childNodes
Fred Drake55c38192000-06-29 19:39:57 +000072
Fred Drake1f549022000-09-24 05:21:58 +000073 def _get_firstChild(self):
Fred Drake4ccf4a12000-11-21 22:02:22 +000074 if self.childNodes:
75 return self.childNodes[0]
Paul Prescod73678da2000-07-01 04:58:47 +000076
Fred Drake1f549022000-09-24 05:21:58 +000077 def _get_lastChild(self):
Fred Drake4ccf4a12000-11-21 22:02:22 +000078 if self.childNodes:
79 return self.childNodes[-1]
Paul Prescod73678da2000-07-01 04:58:47 +000080
Fred Drake1f549022000-09-24 05:21:58 +000081 def insertBefore(self, newChild, refChild):
Martin v. Löwis126f2f62001-03-13 10:50:13 +000082 if newChild.nodeType == self.DOCUMENT_FRAGMENT_NODE:
Fred Drakee50959a2001-12-06 04:32:18 +000083 for c in tuple(newChild.childNodes):
Martin v. Löwis126f2f62001-03-13 10:50:13 +000084 self.insertBefore(c, refChild)
85 ### The DOM does not clearly specify what to return in this case
86 return newChild
Martin v. Löwis787354c2003-01-25 15:28:29 +000087 if newChild.nodeType not in self._child_node_types:
Thomas Wouters0e3f5912006-08-11 14:57:12 +000088 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +000089 "%s cannot be child of %s" % (repr(newChild), repr(self)))
Andrew M. Kuchling04a45e92000-12-20 14:47:24 +000090 if newChild.parentNode is not None:
91 newChild.parentNode.removeChild(newChild)
Fred Drake4ccf4a12000-11-21 22:02:22 +000092 if refChild is None:
93 self.appendChild(newChild)
94 else:
Martin v. Löwis787354c2003-01-25 15:28:29 +000095 try:
96 index = self.childNodes.index(refChild)
97 except ValueError:
Thomas Wouters0e3f5912006-08-11 14:57:12 +000098 raise xml.dom.NotFoundErr()
Martin v. Löwis787354c2003-01-25 15:28:29 +000099 if newChild.nodeType in _nodeTypes_with_children:
100 _clear_id_cache(self)
Fred Drake4ccf4a12000-11-21 22:02:22 +0000101 self.childNodes.insert(index, newChild)
102 newChild.nextSibling = refChild
103 refChild.previousSibling = newChild
104 if index:
105 node = self.childNodes[index-1]
106 node.nextSibling = newChild
107 newChild.previousSibling = node
108 else:
109 newChild.previousSibling = None
Martin v. Löwis787354c2003-01-25 15:28:29 +0000110 newChild.parentNode = self
Fred Drake4ccf4a12000-11-21 22:02:22 +0000111 return newChild
Fred Drake55c38192000-06-29 19:39:57 +0000112
Fred Drake1f549022000-09-24 05:21:58 +0000113 def appendChild(self, node):
Martin v. Löwis126f2f62001-03-13 10:50:13 +0000114 if node.nodeType == self.DOCUMENT_FRAGMENT_NODE:
Fred Drakee50959a2001-12-06 04:32:18 +0000115 for c in tuple(node.childNodes):
Martin v. Löwis126f2f62001-03-13 10:50:13 +0000116 self.appendChild(c)
117 ### The DOM does not clearly specify what to return in this case
118 return node
Martin v. Löwis787354c2003-01-25 15:28:29 +0000119 if node.nodeType not in self._child_node_types:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000120 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +0000121 "%s cannot be child of %s" % (repr(node), repr(self)))
122 elif node.nodeType in _nodeTypes_with_children:
123 _clear_id_cache(self)
Andrew M. Kuchling04a45e92000-12-20 14:47:24 +0000124 if node.parentNode is not None:
125 node.parentNode.removeChild(node)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000126 _append_child(self, node)
Fred Drake13a30692000-10-09 20:04:16 +0000127 node.nextSibling = None
Paul Prescod73678da2000-07-01 04:58:47 +0000128 return node
129
Fred Drake1f549022000-09-24 05:21:58 +0000130 def replaceChild(self, newChild, oldChild):
Martin v. Löwis126f2f62001-03-13 10:50:13 +0000131 if newChild.nodeType == self.DOCUMENT_FRAGMENT_NODE:
132 refChild = oldChild.nextSibling
133 self.removeChild(oldChild)
134 return self.insertBefore(newChild, refChild)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000135 if newChild.nodeType not in self._child_node_types:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000136 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +0000137 "%s cannot be child of %s" % (repr(newChild), repr(self)))
Fred Drake4ccf4a12000-11-21 22:02:22 +0000138 if newChild is oldChild:
139 return
Andrew M. Kuchling841d25e2005-11-22 19:03:16 +0000140 if newChild.parentNode is not None:
141 newChild.parentNode.removeChild(newChild)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000142 try:
143 index = self.childNodes.index(oldChild)
144 except ValueError:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000145 raise xml.dom.NotFoundErr()
Fred Drake4ccf4a12000-11-21 22:02:22 +0000146 self.childNodes[index] = newChild
Martin v. Löwis787354c2003-01-25 15:28:29 +0000147 newChild.parentNode = self
148 oldChild.parentNode = None
149 if (newChild.nodeType in _nodeTypes_with_children
150 or oldChild.nodeType in _nodeTypes_with_children):
151 _clear_id_cache(self)
Fred Drake4ccf4a12000-11-21 22:02:22 +0000152 newChild.nextSibling = oldChild.nextSibling
153 newChild.previousSibling = oldChild.previousSibling
Martin v. Löwis156c3372000-12-28 18:40:56 +0000154 oldChild.nextSibling = None
Fred Drake4ccf4a12000-11-21 22:02:22 +0000155 oldChild.previousSibling = None
Martin v. Löwis156c3372000-12-28 18:40:56 +0000156 if newChild.previousSibling:
157 newChild.previousSibling.nextSibling = newChild
158 if newChild.nextSibling:
159 newChild.nextSibling.previousSibling = newChild
Fred Drake4ccf4a12000-11-21 22:02:22 +0000160 return oldChild
Paul Prescod73678da2000-07-01 04:58:47 +0000161
Fred Drake1f549022000-09-24 05:21:58 +0000162 def removeChild(self, oldChild):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000163 try:
164 self.childNodes.remove(oldChild)
165 except ValueError:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000166 raise xml.dom.NotFoundErr()
Andrew M. Kuchling04a45e92000-12-20 14:47:24 +0000167 if oldChild.nextSibling is not None:
168 oldChild.nextSibling.previousSibling = oldChild.previousSibling
169 if oldChild.previousSibling is not None:
Martin v. Löwis52ce0d02001-01-27 08:47:37 +0000170 oldChild.previousSibling.nextSibling = oldChild.nextSibling
Andrew M. Kuchling04a45e92000-12-20 14:47:24 +0000171 oldChild.nextSibling = oldChild.previousSibling = None
Martin v. Löwis787354c2003-01-25 15:28:29 +0000172 if oldChild.nodeType in _nodeTypes_with_children:
173 _clear_id_cache(self)
Martin v. Löwis52ce0d02001-01-27 08:47:37 +0000174
Martin v. Löwis787354c2003-01-25 15:28:29 +0000175 oldChild.parentNode = None
Fred Drake4ccf4a12000-11-21 22:02:22 +0000176 return oldChild
177
178 def normalize(self):
Fred Drakef7cf40d2000-12-14 18:16:11 +0000179 L = []
180 for child in self.childNodes:
181 if child.nodeType == Node.TEXT_NODE:
R. David Murraydc6da8a2009-04-09 22:16:43 +0000182 if not child.data:
183 # empty text node; discard
184 if L:
185 L[-1].nextSibling = child.nextSibling
186 if child.nextSibling:
187 child.nextSibling.previousSibling = child.previousSibling
188 child.unlink()
189 elif L and L[-1].nodeType == child.nodeType:
Fred Drake4ccf4a12000-11-21 22:02:22 +0000190 # collapse text node
191 node = L[-1]
Martin v. Löwis787354c2003-01-25 15:28:29 +0000192 node.data = node.data + child.data
Fred Drake4ccf4a12000-11-21 22:02:22 +0000193 node.nextSibling = child.nextSibling
R. David Murraydc6da8a2009-04-09 22:16:43 +0000194 if child.nextSibling:
195 child.nextSibling.previousSibling = node
Fred Drake4ccf4a12000-11-21 22:02:22 +0000196 child.unlink()
R. David Murraydc6da8a2009-04-09 22:16:43 +0000197 else:
Fred Drakef7cf40d2000-12-14 18:16:11 +0000198 L.append(child)
Fred Drakef7cf40d2000-12-14 18:16:11 +0000199 else:
Fred Drakef7cf40d2000-12-14 18:16:11 +0000200 L.append(child)
201 if child.nodeType == Node.ELEMENT_NODE:
Fred Drake4ccf4a12000-11-21 22:02:22 +0000202 child.normalize()
Fred Drakef7cf40d2000-12-14 18:16:11 +0000203 self.childNodes[:] = L
Paul Prescod73678da2000-07-01 04:58:47 +0000204
Fred Drake1f549022000-09-24 05:21:58 +0000205 def cloneNode(self, deep):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000206 return _clone_node(self, deep, self.ownerDocument or self)
Fred Drake55c38192000-06-29 19:39:57 +0000207
Martin v. Löwis787354c2003-01-25 15:28:29 +0000208 def isSupported(self, feature, version):
209 return self.ownerDocument.implementation.hasFeature(feature, version)
210
211 def _get_localName(self):
212 # Overridden in Element and Attr where localName can be Non-Null
213 return None
214
215 # Node interfaces from Level 3 (WD 9 April 2002)
Fred Drake25239772001-02-02 19:40:19 +0000216
217 def isSameNode(self, other):
218 return self is other
219
Martin v. Löwis787354c2003-01-25 15:28:29 +0000220 def getInterface(self, feature):
221 if self.isSupported(feature, None):
222 return self
223 else:
224 return None
225
226 # The "user data" functions use a dictionary that is only present
227 # if some user data has been set, so be careful not to assume it
228 # exists.
229
230 def getUserData(self, key):
231 try:
232 return self._user_data[key][0]
233 except (AttributeError, KeyError):
234 return None
235
236 def setUserData(self, key, data, handler):
237 old = None
238 try:
239 d = self._user_data
240 except AttributeError:
241 d = {}
242 self._user_data = d
Guido van Rossum1b01e5c2006-08-19 02:45:06 +0000243 if key in d:
Martin v. Löwis787354c2003-01-25 15:28:29 +0000244 old = d[key][0]
245 if data is None:
246 # ignore handlers passed for None
247 handler = None
248 if old is not None:
249 del d[key]
250 else:
251 d[key] = (data, handler)
252 return old
253
254 def _call_user_data_handler(self, operation, src, dst):
255 if hasattr(self, "_user_data"):
Brett Cannon861fd6f2007-02-21 22:05:37 +0000256 for key, (data, handler) in list(self._user_data.items()):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000257 if handler is not None:
258 handler.handle(operation, key, data, src, dst)
259
Fred Drake25239772001-02-02 19:40:19 +0000260 # minidom-specific API:
261
Fred Drake1f549022000-09-24 05:21:58 +0000262 def unlink(self):
Martin v. Löwis126f2f62001-03-13 10:50:13 +0000263 self.parentNode = self.ownerDocument = None
Martin v. Löwis787354c2003-01-25 15:28:29 +0000264 if self.childNodes:
265 for child in self.childNodes:
266 child.unlink()
267 self.childNodes = NodeList()
Paul Prescod4221ff02000-10-13 20:11:42 +0000268 self.previousSibling = None
269 self.nextSibling = None
Martin v. Löwis787354c2003-01-25 15:28:29 +0000270
Kristján Valur Jónsson17173cf2010-06-09 08:13:42 +0000271 # A Node is its own context manager, to ensure that an unlink() call occurs.
272 # This is similar to how a file object works.
273 def __enter__(self):
274 return self
275
276 def __exit__(self, et, ev, tb):
277 self.unlink()
278
Martin v. Löwis787354c2003-01-25 15:28:29 +0000279defproperty(Node, "firstChild", doc="First child node, or None.")
280defproperty(Node, "lastChild", doc="Last child node, or None.")
281defproperty(Node, "localName", doc="Namespace-local name of this node.")
282
283
284def _append_child(self, node):
285 # fast path with less checks; usable by DOM builders if careful
286 childNodes = self.childNodes
287 if childNodes:
288 last = childNodes[-1]
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100289 node.previousSibling = last
290 last.nextSibling = node
Martin v. Löwis787354c2003-01-25 15:28:29 +0000291 childNodes.append(node)
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100292 node.parentNode = self
Martin v. Löwis787354c2003-01-25 15:28:29 +0000293
294def _in_document(node):
295 # return True iff node is part of a document tree
296 while node is not None:
297 if node.nodeType == Node.DOCUMENT_NODE:
298 return True
299 node = node.parentNode
300 return False
Fred Drake55c38192000-06-29 19:39:57 +0000301
Fred Drake1f549022000-09-24 05:21:58 +0000302def _write_data(writer, data):
Fred Drake55c38192000-06-29 19:39:57 +0000303 "Writes datachars to writer."
Georg Brandlb9cd72a2010-10-15 17:58:45 +0000304 if data:
305 data = data.replace("&", "&amp;").replace("<", "&lt;"). \
306 replace("\"", "&quot;").replace(">", "&gt;")
307 writer.write(data)
Fred Drake55c38192000-06-29 19:39:57 +0000308
Martin v. Löwis787354c2003-01-25 15:28:29 +0000309def _get_elements_by_tagName_helper(parent, name, rc):
Fred Drake55c38192000-06-29 19:39:57 +0000310 for node in parent.childNodes:
Fred Drake1f549022000-09-24 05:21:58 +0000311 if node.nodeType == Node.ELEMENT_NODE and \
312 (name == "*" or node.tagName == name):
313 rc.append(node)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000314 _get_elements_by_tagName_helper(node, name, rc)
Fred Drake55c38192000-06-29 19:39:57 +0000315 return rc
316
Martin v. Löwis787354c2003-01-25 15:28:29 +0000317def _get_elements_by_tagName_ns_helper(parent, nsURI, localName, rc):
Fred Drake55c38192000-06-29 19:39:57 +0000318 for node in parent.childNodes:
Fred Drake1f549022000-09-24 05:21:58 +0000319 if node.nodeType == Node.ELEMENT_NODE:
Martin v. Löwised525fb2001-06-03 14:06:42 +0000320 if ((localName == "*" or node.localName == localName) and
Fred Drake1f549022000-09-24 05:21:58 +0000321 (nsURI == "*" or node.namespaceURI == nsURI)):
322 rc.append(node)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000323 _get_elements_by_tagName_ns_helper(node, nsURI, localName, rc)
Fred Drakef7cf40d2000-12-14 18:16:11 +0000324 return rc
Fred Drake55c38192000-06-29 19:39:57 +0000325
Martin v. Löwis126f2f62001-03-13 10:50:13 +0000326class DocumentFragment(Node):
327 nodeType = Node.DOCUMENT_FRAGMENT_NODE
328 nodeName = "#document-fragment"
329 nodeValue = None
330 attributes = None
331 parentNode = None
Martin v. Löwis787354c2003-01-25 15:28:29 +0000332 _child_node_types = (Node.ELEMENT_NODE,
333 Node.TEXT_NODE,
334 Node.CDATA_SECTION_NODE,
335 Node.ENTITY_REFERENCE_NODE,
336 Node.PROCESSING_INSTRUCTION_NODE,
337 Node.COMMENT_NODE,
338 Node.NOTATION_NODE)
339
340 def __init__(self):
341 self.childNodes = NodeList()
Martin v. Löwis126f2f62001-03-13 10:50:13 +0000342
343
Fred Drake55c38192000-06-29 19:39:57 +0000344class Attr(Node):
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100345 __slots__=('_name', '_value', 'namespaceURI',
346 '_prefix', 'childNodes', '_localName', 'ownerDocument', 'ownerElement')
Fred Drake1f549022000-09-24 05:21:58 +0000347 nodeType = Node.ATTRIBUTE_NODE
Fred Drake4ccf4a12000-11-21 22:02:22 +0000348 attributes = None
Martin v. Löwis787354c2003-01-25 15:28:29 +0000349 specified = False
350 _is_id = False
Martin v. Löwis52ce0d02001-01-27 08:47:37 +0000351
Martin v. Löwis787354c2003-01-25 15:28:29 +0000352 _child_node_types = (Node.TEXT_NODE, Node.ENTITY_REFERENCE_NODE)
353
354 def __init__(self, qName, namespaceURI=EMPTY_NAMESPACE, localName=None,
355 prefix=None):
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100356 self.ownerElement = None
357 self._name = qName
358 self.namespaceURI = namespaceURI
359 self._prefix = prefix
360 self.childNodes = NodeList()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000361
362 # Add the single child node that represents the value of the attr
363 self.childNodes.append(Text())
364
Paul Prescod73678da2000-07-01 04:58:47 +0000365 # nodeValue and value are set elsewhere
Fred Drake55c38192000-06-29 19:39:57 +0000366
Martin v. Löwis787354c2003-01-25 15:28:29 +0000367 def _get_localName(self):
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100368 try:
369 return self._localName
370 except AttributeError:
371 return self.nodeName.split(":", 1)[-1]
Martin v. Löwis787354c2003-01-25 15:28:29 +0000372
Martin v. Löwis787354c2003-01-25 15:28:29 +0000373 def _get_specified(self):
374 return self.specified
375
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100376 def _get_name(self):
377 return self._name
378
379 def _set_name(self, value):
380 self._name = value
381 if self.ownerElement is not None:
382 _clear_id_cache(self.ownerElement)
383
384 nodeName = name = property(_get_name, _set_name)
385
386 def _get_value(self):
387 return self._value
388
389 def _set_value(self, value):
390 self._value = value
391 self.childNodes[0].data = value
392 if self.ownerElement is not None:
393 _clear_id_cache(self.ownerElement)
394 self.childNodes[0].data = value
395
396 nodeValue = value = property(_get_value, _set_value)
397
398 def _get_prefix(self):
399 return self._prefix
Fred Drake55c38192000-06-29 19:39:57 +0000400
Martin v. Löwis995359c2003-01-26 08:59:32 +0000401 def _set_prefix(self, prefix):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000402 nsuri = self.namespaceURI
Martin v. Löwis995359c2003-01-26 08:59:32 +0000403 if prefix == "xmlns":
404 if nsuri and nsuri != XMLNS_NAMESPACE:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000405 raise xml.dom.NamespaceErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +0000406 "illegal use of 'xmlns' prefix for the wrong namespace")
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100407 self._prefix = prefix
Martin v. Löwis787354c2003-01-25 15:28:29 +0000408 if prefix is None:
409 newName = self.localName
410 else:
Martin v. Löwis995359c2003-01-26 08:59:32 +0000411 newName = "%s:%s" % (prefix, self.localName)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000412 if self.ownerElement:
413 _clear_id_cache(self.ownerElement)
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100414 self.name = newName
Martin v. Löwis787354c2003-01-25 15:28:29 +0000415
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100416 prefix = property(_get_prefix, _set_prefix)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000417
418 def unlink(self):
419 # This implementation does not call the base implementation
420 # since most of that is not needed, and the expense of the
421 # method call is not warranted. We duplicate the removal of
422 # children, but that's all we needed from the base class.
423 elem = self.ownerElement
424 if elem is not None:
425 del elem._attrs[self.nodeName]
426 del elem._attrsNS[(self.namespaceURI, self.localName)]
427 if self._is_id:
428 self._is_id = False
429 elem._magic_id_nodes -= 1
430 self.ownerDocument._magic_id_count -= 1
431 for child in self.childNodes:
432 child.unlink()
433 del self.childNodes[:]
434
435 def _get_isId(self):
436 if self._is_id:
437 return True
438 doc = self.ownerDocument
439 elem = self.ownerElement
440 if doc is None or elem is None:
441 return False
442
443 info = doc._get_elem_info(elem)
444 if info is None:
445 return False
446 if self.namespaceURI:
447 return info.isIdNS(self.namespaceURI, self.localName)
448 else:
449 return info.isId(self.nodeName)
450
451 def _get_schemaType(self):
452 doc = self.ownerDocument
453 elem = self.ownerElement
454 if doc is None or elem is None:
455 return _no_type
456
457 info = doc._get_elem_info(elem)
458 if info is None:
459 return _no_type
460 if self.namespaceURI:
461 return info.getAttributeTypeNS(self.namespaceURI, self.localName)
462 else:
463 return info.getAttributeType(self.nodeName)
464
465defproperty(Attr, "isId", doc="True if this attribute is an ID.")
466defproperty(Attr, "localName", doc="Namespace-local name of this attribute.")
467defproperty(Attr, "schemaType", doc="Schema type for this attribute.")
Fred Drake4ccf4a12000-11-21 22:02:22 +0000468
Fred Drakef7cf40d2000-12-14 18:16:11 +0000469
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000470class NamedNodeMap(object):
Fred Drake4ccf4a12000-11-21 22:02:22 +0000471 """The attribute list is a transient interface to the underlying
472 dictionaries. Mutations here will change the underlying element's
Fred Drakef7cf40d2000-12-14 18:16:11 +0000473 dictionary.
474
475 Ordering is imposed artificially and does not reflect the order of
476 attributes as found in an input document.
477 """
Fred Drake4ccf4a12000-11-21 22:02:22 +0000478
Martin v. Löwis787354c2003-01-25 15:28:29 +0000479 __slots__ = ('_attrs', '_attrsNS', '_ownerElement')
480
Fred Drake2998a552001-12-06 18:27:48 +0000481 def __init__(self, attrs, attrsNS, ownerElement):
Fred Drake1f549022000-09-24 05:21:58 +0000482 self._attrs = attrs
483 self._attrsNS = attrsNS
Fred Drake2998a552001-12-06 18:27:48 +0000484 self._ownerElement = ownerElement
Fred Drakef7cf40d2000-12-14 18:16:11 +0000485
Martin v. Löwis787354c2003-01-25 15:28:29 +0000486 def _get_length(self):
487 return len(self._attrs)
Fred Drake55c38192000-06-29 19:39:57 +0000488
Fred Drake1f549022000-09-24 05:21:58 +0000489 def item(self, index):
Fred Drake55c38192000-06-29 19:39:57 +0000490 try:
Brett Cannon861fd6f2007-02-21 22:05:37 +0000491 return self[list(self._attrs.keys())[index]]
Fred Drake55c38192000-06-29 19:39:57 +0000492 except IndexError:
493 return None
Fred Drake55c38192000-06-29 19:39:57 +0000494
Fred Drake1f549022000-09-24 05:21:58 +0000495 def items(self):
Fred Drake4ccf4a12000-11-21 22:02:22 +0000496 L = []
497 for node in self._attrs.values():
Martin v. Löwisd5fb58f2001-01-27 08:38:34 +0000498 L.append((node.nodeName, node.value))
Fred Drake4ccf4a12000-11-21 22:02:22 +0000499 return L
Fred Drake1f549022000-09-24 05:21:58 +0000500
501 def itemsNS(self):
Fred Drake4ccf4a12000-11-21 22:02:22 +0000502 L = []
503 for node in self._attrs.values():
Fred Drake49a5d032001-11-30 22:21:58 +0000504 L.append(((node.namespaceURI, node.localName), node.value))
Fred Drake4ccf4a12000-11-21 22:02:22 +0000505 return L
Fred Drake16f63292000-10-23 18:09:50 +0000506
Guido van Rossum1b01e5c2006-08-19 02:45:06 +0000507 def __contains__(self, key):
Christian Heimesc9543e42007-11-28 08:28:28 +0000508 if isinstance(key, str):
Guido van Rossum1b01e5c2006-08-19 02:45:06 +0000509 return key in self._attrs
Martin v. Löwis787354c2003-01-25 15:28:29 +0000510 else:
Guido van Rossum1b01e5c2006-08-19 02:45:06 +0000511 return key in self._attrsNS
Martin v. Löwis787354c2003-01-25 15:28:29 +0000512
Fred Drake1f549022000-09-24 05:21:58 +0000513 def keys(self):
Paul Prescod73678da2000-07-01 04:58:47 +0000514 return self._attrs.keys()
Fred Drake55c38192000-06-29 19:39:57 +0000515
Fred Drake1f549022000-09-24 05:21:58 +0000516 def keysNS(self):
Paul Prescod73678da2000-07-01 04:58:47 +0000517 return self._attrsNS.keys()
Fred Drake55c38192000-06-29 19:39:57 +0000518
Fred Drake1f549022000-09-24 05:21:58 +0000519 def values(self):
Paul Prescod73678da2000-07-01 04:58:47 +0000520 return self._attrs.values()
Fred Drake55c38192000-06-29 19:39:57 +0000521
Martin v. Löwis787354c2003-01-25 15:28:29 +0000522 def get(self, name, value=None):
Martin v. Löwisd5fb58f2001-01-27 08:38:34 +0000523 return self._attrs.get(name, value)
524
Martin v. Löwis787354c2003-01-25 15:28:29 +0000525 __len__ = _get_length
Fred Drake55c38192000-06-29 19:39:57 +0000526
Mark Dickinsona56c4672009-01-27 18:17:45 +0000527 def _cmp(self, other):
Fred Drake1f549022000-09-24 05:21:58 +0000528 if self._attrs is getattr(other, "_attrs", None):
Fred Drake55c38192000-06-29 19:39:57 +0000529 return 0
Fred Drake16f63292000-10-23 18:09:50 +0000530 else:
Mark Dickinsona56c4672009-01-27 18:17:45 +0000531 return (id(self) > id(other)) - (id(self) < id(other))
532
533 def __eq__(self, other):
534 return self._cmp(other) == 0
535
536 def __ge__(self, other):
537 return self._cmp(other) >= 0
538
539 def __gt__(self, other):
540 return self._cmp(other) > 0
541
542 def __le__(self, other):
543 return self._cmp(other) <= 0
544
545 def __lt__(self, other):
546 return self._cmp(other) < 0
547
Fred Drake1f549022000-09-24 05:21:58 +0000548 def __getitem__(self, attname_or_tuple):
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000549 if isinstance(attname_or_tuple, tuple):
Paul Prescod73678da2000-07-01 04:58:47 +0000550 return self._attrsNS[attname_or_tuple]
Fred Drake55c38192000-06-29 19:39:57 +0000551 else:
Paul Prescod73678da2000-07-01 04:58:47 +0000552 return self._attrs[attname_or_tuple]
Fred Drake55c38192000-06-29 19:39:57 +0000553
Paul Prescod1e688272000-07-01 19:21:47 +0000554 # same as set
Fred Drake1f549022000-09-24 05:21:58 +0000555 def __setitem__(self, attname, value):
Christian Heimesc9543e42007-11-28 08:28:28 +0000556 if isinstance(value, str):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000557 try:
558 node = self._attrs[attname]
559 except KeyError:
560 node = Attr(attname)
561 node.ownerDocument = self._ownerElement.ownerDocument
Martin v. Löwis995359c2003-01-26 08:59:32 +0000562 self.setNamedItem(node)
Fred Drake4ccf4a12000-11-21 22:02:22 +0000563 node.value = value
Paul Prescod1e688272000-07-01 19:21:47 +0000564 else:
Fred Drake4ccf4a12000-11-21 22:02:22 +0000565 if not isinstance(value, Attr):
Collin Winter70e79802007-08-24 18:57:22 +0000566 raise TypeError("value must be a string or Attr object")
Fred Drake1f549022000-09-24 05:21:58 +0000567 node = value
Martin v. Löwis787354c2003-01-25 15:28:29 +0000568 self.setNamedItem(node)
569
570 def getNamedItem(self, name):
571 try:
572 return self._attrs[name]
573 except KeyError:
574 return None
575
576 def getNamedItemNS(self, namespaceURI, localName):
577 try:
578 return self._attrsNS[(namespaceURI, localName)]
579 except KeyError:
580 return None
581
582 def removeNamedItem(self, name):
583 n = self.getNamedItem(name)
584 if n is not None:
585 _clear_id_cache(self._ownerElement)
586 del self._attrs[n.nodeName]
587 del self._attrsNS[(n.namespaceURI, n.localName)]
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100588 if hasattr(n, 'ownerElement'):
589 n.ownerElement = None
Martin v. Löwis787354c2003-01-25 15:28:29 +0000590 return n
591 else:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000592 raise xml.dom.NotFoundErr()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000593
594 def removeNamedItemNS(self, namespaceURI, localName):
595 n = self.getNamedItemNS(namespaceURI, localName)
596 if n is not None:
597 _clear_id_cache(self._ownerElement)
598 del self._attrsNS[(n.namespaceURI, n.localName)]
599 del self._attrs[n.nodeName]
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100600 if hasattr(n, 'ownerElement'):
601 n.ownerElement = None
Martin v. Löwis787354c2003-01-25 15:28:29 +0000602 return n
603 else:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000604 raise xml.dom.NotFoundErr()
Fred Drakef7cf40d2000-12-14 18:16:11 +0000605
606 def setNamedItem(self, node):
Andrew M. Kuchlingbc8f72c2001-02-21 01:30:26 +0000607 if not isinstance(node, Attr):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000608 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +0000609 "%s cannot be child of %s" % (repr(node), repr(self)))
Fred Drakef7cf40d2000-12-14 18:16:11 +0000610 old = self._attrs.get(node.name)
Paul Prescod1e688272000-07-01 19:21:47 +0000611 if old:
612 old.unlink()
Fred Drake1f549022000-09-24 05:21:58 +0000613 self._attrs[node.name] = node
614 self._attrsNS[(node.namespaceURI, node.localName)] = node
Fred Drake2998a552001-12-06 18:27:48 +0000615 node.ownerElement = self._ownerElement
Martin v. Löwis787354c2003-01-25 15:28:29 +0000616 _clear_id_cache(node.ownerElement)
Fred Drakef7cf40d2000-12-14 18:16:11 +0000617 return old
618
619 def setNamedItemNS(self, node):
620 return self.setNamedItem(node)
Paul Prescod73678da2000-07-01 04:58:47 +0000621
Fred Drake1f549022000-09-24 05:21:58 +0000622 def __delitem__(self, attname_or_tuple):
623 node = self[attname_or_tuple]
Martin v. Löwis787354c2003-01-25 15:28:29 +0000624 _clear_id_cache(node.ownerElement)
Paul Prescod73678da2000-07-01 04:58:47 +0000625 node.unlink()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000626
627 def __getstate__(self):
628 return self._attrs, self._attrsNS, self._ownerElement
629
630 def __setstate__(self, state):
631 self._attrs, self._attrsNS, self._ownerElement = state
632
633defproperty(NamedNodeMap, "length",
634 doc="Number of nodes in the NamedNodeMap.")
Fred Drakef7cf40d2000-12-14 18:16:11 +0000635
636AttributeList = NamedNodeMap
637
Fred Drake1f549022000-09-24 05:21:58 +0000638
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000639class TypeInfo(object):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000640 __slots__ = 'namespace', 'name'
641
642 def __init__(self, namespace, name):
643 self.namespace = namespace
644 self.name = name
645
646 def __repr__(self):
647 if self.namespace:
Serhiy Storchaka465e60e2014-07-25 23:36:00 +0300648 return "<%s %r (from %r)>" % (self.__class__.__name__, self.name,
649 self.namespace)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000650 else:
Serhiy Storchaka465e60e2014-07-25 23:36:00 +0300651 return "<%s %r>" % (self.__class__.__name__, self.name)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000652
653 def _get_name(self):
654 return self.name
655
656 def _get_namespace(self):
657 return self.namespace
658
659_no_type = TypeInfo(None, None)
660
Martin v. Löwisa2fda0d2000-10-07 12:10:28 +0000661class Element(Node):
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100662 __slots__=('ownerDocument', 'parentNode', 'tagName', 'nodeName', 'prefix',
663 'namespaceURI', '_localName', 'childNodes', '_attrs', '_attrsNS',
664 'nextSibling', 'previousSibling')
Fred Drake1f549022000-09-24 05:21:58 +0000665 nodeType = Node.ELEMENT_NODE
Martin v. Löwis787354c2003-01-25 15:28:29 +0000666 nodeValue = None
667 schemaType = _no_type
668
669 _magic_id_nodes = 0
670
671 _child_node_types = (Node.ELEMENT_NODE,
672 Node.PROCESSING_INSTRUCTION_NODE,
673 Node.COMMENT_NODE,
674 Node.TEXT_NODE,
675 Node.CDATA_SECTION_NODE,
676 Node.ENTITY_REFERENCE_NODE)
Martin v. Löwis52ce0d02001-01-27 08:47:37 +0000677
Fred Drake49a5d032001-11-30 22:21:58 +0000678 def __init__(self, tagName, namespaceURI=EMPTY_NAMESPACE, prefix=None,
Fred Drake1f549022000-09-24 05:21:58 +0000679 localName=None):
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100680 self.parentNode = None
Fred Drake55c38192000-06-29 19:39:57 +0000681 self.tagName = self.nodeName = tagName
Fred Drake1f549022000-09-24 05:21:58 +0000682 self.prefix = prefix
683 self.namespaceURI = namespaceURI
Martin v. Löwis787354c2003-01-25 15:28:29 +0000684 self.childNodes = NodeList()
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100685 self.nextSibling = self.previousSibling = None
Fred Drake55c38192000-06-29 19:39:57 +0000686
Martin v. Löwis7b771882012-02-19 20:55:05 +0100687 # Attribute dictionaries are lazily created
688 # attributes are double-indexed:
689 # tagName -> Attribute
690 # URI,localName -> Attribute
691 # in the future: consider lazy generation
692 # of attribute objects this is too tricky
693 # for now because of headaches with
694 # namespaces.
695 self._attrs = None
696 self._attrsNS = None
697
698 def _ensure_attributes(self):
699 if self._attrs is None:
700 self._attrs = {}
701 self._attrsNS = {}
Fred Drake4ccf4a12000-11-21 22:02:22 +0000702
Martin v. Löwis787354c2003-01-25 15:28:29 +0000703 def _get_localName(self):
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100704 try:
705 return self._localName
706 except AttributeError:
707 return self.tagName.split(":", 1)[-1]
Martin v. Löwis787354c2003-01-25 15:28:29 +0000708
709 def _get_tagName(self):
710 return self.tagName
Fred Drake4ccf4a12000-11-21 22:02:22 +0000711
712 def unlink(self):
Martin v. Löwis7b771882012-02-19 20:55:05 +0100713 if self._attrs is not None:
714 for attr in list(self._attrs.values()):
715 attr.unlink()
Fred Drake4ccf4a12000-11-21 22:02:22 +0000716 self._attrs = None
717 self._attrsNS = None
718 Node.unlink(self)
Fred Drake55c38192000-06-29 19:39:57 +0000719
Fred Drake1f549022000-09-24 05:21:58 +0000720 def getAttribute(self, attname):
Martin v. Löwis67245a62012-03-05 07:01:49 +0100721 if self._attrs is None:
722 return ""
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +0000723 try:
724 return self._attrs[attname].value
725 except KeyError:
726 return ""
Fred Drake55c38192000-06-29 19:39:57 +0000727
Fred Drake1f549022000-09-24 05:21:58 +0000728 def getAttributeNS(self, namespaceURI, localName):
Martin v. Löwis67245a62012-03-05 07:01:49 +0100729 if self._attrsNS is None:
730 return ""
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +0000731 try:
732 return self._attrsNS[(namespaceURI, localName)].value
733 except KeyError:
734 return ""
Fred Drake1f549022000-09-24 05:21:58 +0000735
736 def setAttribute(self, attname, value):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000737 attr = self.getAttributeNode(attname)
738 if attr is None:
739 attr = Attr(attname)
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100740 attr.value = value # also sets nodeValue
741 attr.ownerDocument = self.ownerDocument
Martin v. Löwis787354c2003-01-25 15:28:29 +0000742 self.setAttributeNode(attr)
743 elif value != attr.value:
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100744 attr.value = value
Martin v. Löwis787354c2003-01-25 15:28:29 +0000745 if attr.isId:
746 _clear_id_cache(self)
Fred Drake55c38192000-06-29 19:39:57 +0000747
Fred Drake1f549022000-09-24 05:21:58 +0000748 def setAttributeNS(self, namespaceURI, qualifiedName, value):
749 prefix, localname = _nssplit(qualifiedName)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000750 attr = self.getAttributeNodeNS(namespaceURI, localname)
751 if attr is None:
Martin v. Löwis787354c2003-01-25 15:28:29 +0000752 attr = Attr(qualifiedName, namespaceURI, localname, prefix)
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100753 attr.value = value
754 attr.ownerDocument = self.ownerDocument
Martin v. Löwis787354c2003-01-25 15:28:29 +0000755 self.setAttributeNode(attr)
756 else:
Martin v. Löwis787354c2003-01-25 15:28:29 +0000757 if value != attr.value:
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100758 attr.value = value
Martin v. Löwis787354c2003-01-25 15:28:29 +0000759 if attr.isId:
760 _clear_id_cache(self)
761 if attr.prefix != prefix:
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100762 attr.prefix = prefix
763 attr.nodeName = qualifiedName
Fred Drake55c38192000-06-29 19:39:57 +0000764
Fred Drake1f549022000-09-24 05:21:58 +0000765 def getAttributeNode(self, attrname):
Martin v. Löwis7b771882012-02-19 20:55:05 +0100766 if self._attrs is None:
767 return None
Fred Drake1f549022000-09-24 05:21:58 +0000768 return self._attrs.get(attrname)
Paul Prescod73678da2000-07-01 04:58:47 +0000769
Fred Drake1f549022000-09-24 05:21:58 +0000770 def getAttributeNodeNS(self, namespaceURI, localName):
Martin v. Löwis7b771882012-02-19 20:55:05 +0100771 if self._attrsNS is None:
772 return None
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +0000773 return self._attrsNS.get((namespaceURI, localName))
Paul Prescod73678da2000-07-01 04:58:47 +0000774
Fred Drake1f549022000-09-24 05:21:58 +0000775 def setAttributeNode(self, attr):
Fred Drake4ccf4a12000-11-21 22:02:22 +0000776 if attr.ownerElement not in (None, self):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000777 raise xml.dom.InuseAttributeErr("attribute node already owned")
Martin v. Löwis7b771882012-02-19 20:55:05 +0100778 self._ensure_attributes()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000779 old1 = self._attrs.get(attr.name, None)
780 if old1 is not None:
781 self.removeAttributeNode(old1)
782 old2 = self._attrsNS.get((attr.namespaceURI, attr.localName), None)
783 if old2 is not None and old2 is not old1:
784 self.removeAttributeNode(old2)
785 _set_attribute_node(self, attr)
Fred Drake4ccf4a12000-11-21 22:02:22 +0000786
Martin v. Löwis787354c2003-01-25 15:28:29 +0000787 if old1 is not attr:
Fred Drake4ccf4a12000-11-21 22:02:22 +0000788 # It might have already been part of this node, in which case
789 # it doesn't represent a change, and should not be returned.
Martin v. Löwis787354c2003-01-25 15:28:29 +0000790 return old1
791 if old2 is not attr:
792 return old2
Fred Drake55c38192000-06-29 19:39:57 +0000793
Martin v. Löwis126f2f62001-03-13 10:50:13 +0000794 setAttributeNodeNS = setAttributeNode
795
Fred Drake1f549022000-09-24 05:21:58 +0000796 def removeAttribute(self, name):
Martin v. Löwis7b771882012-02-19 20:55:05 +0100797 if self._attrsNS is None:
798 raise xml.dom.NotFoundErr()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000799 try:
800 attr = self._attrs[name]
801 except KeyError:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000802 raise xml.dom.NotFoundErr()
Fred Drake1f549022000-09-24 05:21:58 +0000803 self.removeAttributeNode(attr)
Fred Drake55c38192000-06-29 19:39:57 +0000804
Fred Drake1f549022000-09-24 05:21:58 +0000805 def removeAttributeNS(self, namespaceURI, localName):
Martin v. Löwis7b771882012-02-19 20:55:05 +0100806 if self._attrsNS is None:
807 raise xml.dom.NotFoundErr()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000808 try:
809 attr = self._attrsNS[(namespaceURI, localName)]
810 except KeyError:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000811 raise xml.dom.NotFoundErr()
Fred Drake1f549022000-09-24 05:21:58 +0000812 self.removeAttributeNode(attr)
Fred Drake55c38192000-06-29 19:39:57 +0000813
Fred Drake1f549022000-09-24 05:21:58 +0000814 def removeAttributeNode(self, node):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000815 if node is None:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000816 raise xml.dom.NotFoundErr()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000817 try:
818 self._attrs[node.name]
819 except KeyError:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000820 raise xml.dom.NotFoundErr()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000821 _clear_id_cache(self)
Paul Prescod73678da2000-07-01 04:58:47 +0000822 node.unlink()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000823 # Restore this since the node is still useful and otherwise
824 # unlinked
825 node.ownerDocument = self.ownerDocument
Fred Drake16f63292000-10-23 18:09:50 +0000826
Martin v. Löwis126f2f62001-03-13 10:50:13 +0000827 removeAttributeNodeNS = removeAttributeNode
828
Martin v. Löwis156c3372000-12-28 18:40:56 +0000829 def hasAttribute(self, name):
Martin v. Löwis7b771882012-02-19 20:55:05 +0100830 if self._attrs is None:
831 return False
Guido van Rossum1b01e5c2006-08-19 02:45:06 +0000832 return name in self._attrs
Martin v. Löwis52ce0d02001-01-27 08:47:37 +0000833
Martin v. Löwis156c3372000-12-28 18:40:56 +0000834 def hasAttributeNS(self, namespaceURI, localName):
Martin v. Löwis7b771882012-02-19 20:55:05 +0100835 if self._attrsNS is None:
836 return False
Guido van Rossum1b01e5c2006-08-19 02:45:06 +0000837 return (namespaceURI, localName) in self._attrsNS
Martin v. Löwis52ce0d02001-01-27 08:47:37 +0000838
Fred Drake1f549022000-09-24 05:21:58 +0000839 def getElementsByTagName(self, name):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000840 return _get_elements_by_tagName_helper(self, name, NodeList())
Fred Drake55c38192000-06-29 19:39:57 +0000841
Fred Drake1f549022000-09-24 05:21:58 +0000842 def getElementsByTagNameNS(self, namespaceURI, localName):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000843 return _get_elements_by_tagName_ns_helper(
844 self, namespaceURI, localName, NodeList())
Fred Drake55c38192000-06-29 19:39:57 +0000845
Fred Drake1f549022000-09-24 05:21:58 +0000846 def __repr__(self):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000847 return "<DOM Element: %s at %#x>" % (self.tagName, id(self))
Fred Drake55c38192000-06-29 19:39:57 +0000848
Martin v. Löwis46fa39a2001-02-06 00:14:08 +0000849 def writexml(self, writer, indent="", addindent="", newl=""):
850 # indent = current indentation
851 # addindent = indentation to add to higher levels
852 # newl = newline string
853 writer.write(indent+"<" + self.tagName)
Fred Drake16f63292000-10-23 18:09:50 +0000854
Fred Drake4ccf4a12000-11-21 22:02:22 +0000855 attrs = self._get_attributes()
Brett Cannon861fd6f2007-02-21 22:05:37 +0000856 a_names = sorted(attrs.keys())
Fred Drake55c38192000-06-29 19:39:57 +0000857
858 for a_name in a_names:
Fred Drake1f549022000-09-24 05:21:58 +0000859 writer.write(" %s=\"" % a_name)
Fred Drake4ccf4a12000-11-21 22:02:22 +0000860 _write_data(writer, attrs[a_name].value)
Fred Drake55c38192000-06-29 19:39:57 +0000861 writer.write("\"")
862 if self.childNodes:
R David Murray791744b2011-10-01 16:19:51 -0400863 writer.write(">")
Ezio Melotti8008f2a2011-11-18 17:34:26 +0200864 if (len(self.childNodes) == 1 and
865 self.childNodes[0].nodeType == Node.TEXT_NODE):
866 self.childNodes[0].writexml(writer, '', '', '')
867 else:
R David Murray791744b2011-10-01 16:19:51 -0400868 writer.write(newl)
Ezio Melotti8008f2a2011-11-18 17:34:26 +0200869 for node in self.childNodes:
870 node.writexml(writer, indent+addindent, addindent, newl)
871 writer.write(indent)
872 writer.write("</%s>%s" % (self.tagName, newl))
Fred Drake55c38192000-06-29 19:39:57 +0000873 else:
Martin v. Löwis46fa39a2001-02-06 00:14:08 +0000874 writer.write("/>%s"%(newl))
Fred Drake55c38192000-06-29 19:39:57 +0000875
Fred Drake1f549022000-09-24 05:21:58 +0000876 def _get_attributes(self):
Martin v. Löwis7b771882012-02-19 20:55:05 +0100877 self._ensure_attributes()
Fred Drake2998a552001-12-06 18:27:48 +0000878 return NamedNodeMap(self._attrs, self._attrsNS, self)
Fred Drake55c38192000-06-29 19:39:57 +0000879
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +0000880 def hasAttributes(self):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000881 if self._attrs:
882 return True
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +0000883 else:
Martin v. Löwis787354c2003-01-25 15:28:29 +0000884 return False
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +0000885
Martin v. Löwis787354c2003-01-25 15:28:29 +0000886 # DOM Level 3 attributes, based on the 22 Oct 2002 draft
887
888 def setIdAttribute(self, name):
889 idAttr = self.getAttributeNode(name)
890 self.setIdAttributeNode(idAttr)
891
892 def setIdAttributeNS(self, namespaceURI, localName):
893 idAttr = self.getAttributeNodeNS(namespaceURI, localName)
894 self.setIdAttributeNode(idAttr)
895
896 def setIdAttributeNode(self, idAttr):
897 if idAttr is None or not self.isSameNode(idAttr.ownerElement):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000898 raise xml.dom.NotFoundErr()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000899 if _get_containing_entref(self) is not None:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000900 raise xml.dom.NoModificationAllowedErr()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000901 if not idAttr._is_id:
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100902 idAttr._is_id = True
Martin v. Löwis787354c2003-01-25 15:28:29 +0000903 self._magic_id_nodes += 1
904 self.ownerDocument._magic_id_count += 1
905 _clear_id_cache(self)
906
907defproperty(Element, "attributes",
908 doc="NamedNodeMap of attributes on the element.")
909defproperty(Element, "localName",
910 doc="Namespace-local name of this element.")
911
912
913def _set_attribute_node(element, attr):
914 _clear_id_cache(element)
Martin v. Löwis7b771882012-02-19 20:55:05 +0100915 element._ensure_attributes()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000916 element._attrs[attr.name] = attr
917 element._attrsNS[(attr.namespaceURI, attr.localName)] = attr
918
919 # This creates a circular reference, but Element.unlink()
920 # breaks the cycle since the references to the attribute
921 # dictionaries are tossed.
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100922 attr.ownerElement = element
Martin v. Löwis787354c2003-01-25 15:28:29 +0000923
924class Childless:
925 """Mixin that makes childless-ness easy to implement and avoids
926 the complexity of the Node methods that deal with children.
927 """
Florent Xicluna8cf4b512012-03-05 12:37:02 +0100928 __slots__ = ()
Martin v. Löwis787354c2003-01-25 15:28:29 +0000929
Fred Drake4ccf4a12000-11-21 22:02:22 +0000930 attributes = None
Martin v. Löwis787354c2003-01-25 15:28:29 +0000931 childNodes = EmptyNodeList()
932 firstChild = None
933 lastChild = None
Martin v. Löwis52ce0d02001-01-27 08:47:37 +0000934
Martin v. Löwis787354c2003-01-25 15:28:29 +0000935 def _get_firstChild(self):
936 return None
Fred Drake55c38192000-06-29 19:39:57 +0000937
Martin v. Löwis787354c2003-01-25 15:28:29 +0000938 def _get_lastChild(self):
939 return None
Fred Drake1f549022000-09-24 05:21:58 +0000940
Martin v. Löwis787354c2003-01-25 15:28:29 +0000941 def appendChild(self, node):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000942 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +0000943 self.nodeName + " nodes cannot have children")
944
945 def hasChildNodes(self):
946 return False
947
948 def insertBefore(self, newChild, refChild):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000949 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +0000950 self.nodeName + " nodes do not have children")
951
952 def removeChild(self, oldChild):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000953 raise xml.dom.NotFoundErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +0000954 self.nodeName + " nodes do not have children")
955
Andrew M. Kuchling688b9e32010-07-25 23:38:47 +0000956 def normalize(self):
957 # For childless nodes, normalize() has nothing to do.
958 pass
959
Martin v. Löwis787354c2003-01-25 15:28:29 +0000960 def replaceChild(self, newChild, oldChild):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000961 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +0000962 self.nodeName + " nodes do not have children")
963
964
965class ProcessingInstruction(Childless, Node):
Fred Drake1f549022000-09-24 05:21:58 +0000966 nodeType = Node.PROCESSING_INSTRUCTION_NODE
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100967 __slots__ = ('target', 'data')
Martin v. Löwis52ce0d02001-01-27 08:47:37 +0000968
Fred Drake1f549022000-09-24 05:21:58 +0000969 def __init__(self, target, data):
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100970 self.target = target
971 self.data = data
Fred Drake55c38192000-06-29 19:39:57 +0000972
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100973 # nodeValue is an alias for data
974 def _get_nodeValue(self):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000975 return self.data
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100976 def _set_nodeValue(self, value):
Raymond Hettinger92a40552014-06-15 14:48:19 -0700977 self.data = value
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100978 nodeValue = property(_get_nodeValue, _set_nodeValue)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000979
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100980 # nodeName is an alias for target
981 def _get_nodeName(self):
Martin v. Löwis787354c2003-01-25 15:28:29 +0000982 return self.target
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100983 def _set_nodeName(self, value):
984 self.target = value
985 nodeName = property(_get_nodeName, _set_nodeName)
Martin v. Löwis787354c2003-01-25 15:28:29 +0000986
Martin v. Löwis46fa39a2001-02-06 00:14:08 +0000987 def writexml(self, writer, indent="", addindent="", newl=""):
988 writer.write("%s<?%s %s?>%s" % (indent,self.target, self.data, newl))
Fred Drake55c38192000-06-29 19:39:57 +0000989
Martin v. Löwis787354c2003-01-25 15:28:29 +0000990
991class CharacterData(Childless, Node):
Martin v. Löwis14aa2802012-02-19 20:25:12 +0100992 __slots__=('_data', 'ownerDocument','parentNode', 'previousSibling', 'nextSibling')
993
994 def __init__(self):
995 self.ownerDocument = self.parentNode = None
996 self.previousSibling = self.nextSibling = None
997 self._data = ''
998 Node.__init__(self)
999
Martin v. Löwis787354c2003-01-25 15:28:29 +00001000 def _get_length(self):
1001 return len(self.data)
1002 __len__ = _get_length
1003
1004 def _get_data(self):
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001005 return self._data
Martin v. Löwis787354c2003-01-25 15:28:29 +00001006 def _set_data(self, data):
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001007 self._data = data
Martin v. Löwis787354c2003-01-25 15:28:29 +00001008
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001009 data = nodeValue = property(_get_data, _set_data)
Fred Drake87432f42001-04-04 14:09:46 +00001010
Fred Drake55c38192000-06-29 19:39:57 +00001011 def __repr__(self):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001012 data = self.data
1013 if len(data) > 10:
Fred Drake1f549022000-09-24 05:21:58 +00001014 dotdotdot = "..."
Fred Drake55c38192000-06-29 19:39:57 +00001015 else:
Fred Drake1f549022000-09-24 05:21:58 +00001016 dotdotdot = ""
Guido van Rossum8ce8a782007-11-01 19:42:39 +00001017 return '<DOM %s node "%r%s">' % (
Martin v. Löwis787354c2003-01-25 15:28:29 +00001018 self.__class__.__name__, data[0:10], dotdotdot)
Fred Drake87432f42001-04-04 14:09:46 +00001019
1020 def substringData(self, offset, count):
1021 if offset < 0:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001022 raise xml.dom.IndexSizeErr("offset cannot be negative")
Fred Drake87432f42001-04-04 14:09:46 +00001023 if offset >= len(self.data):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001024 raise xml.dom.IndexSizeErr("offset cannot be beyond end of data")
Fred Drake87432f42001-04-04 14:09:46 +00001025 if count < 0:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001026 raise xml.dom.IndexSizeErr("count cannot be negative")
Fred Drake87432f42001-04-04 14:09:46 +00001027 return self.data[offset:offset+count]
1028
1029 def appendData(self, arg):
1030 self.data = self.data + arg
Fred Drake87432f42001-04-04 14:09:46 +00001031
1032 def insertData(self, offset, arg):
1033 if offset < 0:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001034 raise xml.dom.IndexSizeErr("offset cannot be negative")
Fred Drake87432f42001-04-04 14:09:46 +00001035 if offset >= len(self.data):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001036 raise xml.dom.IndexSizeErr("offset cannot be beyond end of data")
Fred Drake87432f42001-04-04 14:09:46 +00001037 if arg:
1038 self.data = "%s%s%s" % (
1039 self.data[:offset], arg, self.data[offset:])
Fred Drake87432f42001-04-04 14:09:46 +00001040
1041 def deleteData(self, offset, count):
1042 if offset < 0:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001043 raise xml.dom.IndexSizeErr("offset cannot be negative")
Fred Drake87432f42001-04-04 14:09:46 +00001044 if offset >= len(self.data):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001045 raise xml.dom.IndexSizeErr("offset cannot be beyond end of data")
Fred Drake87432f42001-04-04 14:09:46 +00001046 if count < 0:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001047 raise xml.dom.IndexSizeErr("count cannot be negative")
Fred Drake87432f42001-04-04 14:09:46 +00001048 if count:
1049 self.data = self.data[:offset] + self.data[offset+count:]
Fred Drake87432f42001-04-04 14:09:46 +00001050
1051 def replaceData(self, offset, count, arg):
1052 if offset < 0:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001053 raise xml.dom.IndexSizeErr("offset cannot be negative")
Fred Drake87432f42001-04-04 14:09:46 +00001054 if offset >= len(self.data):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001055 raise xml.dom.IndexSizeErr("offset cannot be beyond end of data")
Fred Drake87432f42001-04-04 14:09:46 +00001056 if count < 0:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001057 raise xml.dom.IndexSizeErr("count cannot be negative")
Fred Drake87432f42001-04-04 14:09:46 +00001058 if count:
1059 self.data = "%s%s%s" % (
1060 self.data[:offset], arg, self.data[offset+count:])
Martin v. Löwis787354c2003-01-25 15:28:29 +00001061
1062defproperty(CharacterData, "length", doc="Length of the string data.")
1063
Fred Drake87432f42001-04-04 14:09:46 +00001064
1065class Text(CharacterData):
Florent Xicluna8cf4b512012-03-05 12:37:02 +01001066 __slots__ = ()
1067
Fred Drake87432f42001-04-04 14:09:46 +00001068 nodeType = Node.TEXT_NODE
1069 nodeName = "#text"
1070 attributes = None
Fred Drake55c38192000-06-29 19:39:57 +00001071
Fred Drakef7cf40d2000-12-14 18:16:11 +00001072 def splitText(self, offset):
1073 if offset < 0 or offset > len(self.data):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001074 raise xml.dom.IndexSizeErr("illegal offset value")
Martin v. Löwis787354c2003-01-25 15:28:29 +00001075 newText = self.__class__()
1076 newText.data = self.data[offset:]
1077 newText.ownerDocument = self.ownerDocument
Fred Drakef7cf40d2000-12-14 18:16:11 +00001078 next = self.nextSibling
1079 if self.parentNode and self in self.parentNode.childNodes:
1080 if next is None:
1081 self.parentNode.appendChild(newText)
1082 else:
1083 self.parentNode.insertBefore(newText, next)
1084 self.data = self.data[:offset]
1085 return newText
1086
Martin v. Löwis46fa39a2001-02-06 00:14:08 +00001087 def writexml(self, writer, indent="", addindent="", newl=""):
Ezio Melotti8008f2a2011-11-18 17:34:26 +02001088 _write_data(writer, "%s%s%s" % (indent, self.data, newl))
Fred Drake55c38192000-06-29 19:39:57 +00001089
Martin v. Löwis787354c2003-01-25 15:28:29 +00001090 # DOM Level 3 (WD 9 April 2002)
1091
1092 def _get_wholeText(self):
1093 L = [self.data]
1094 n = self.previousSibling
1095 while n is not None:
1096 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1097 L.insert(0, n.data)
1098 n = n.previousSibling
1099 else:
1100 break
1101 n = self.nextSibling
1102 while n is not None:
1103 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1104 L.append(n.data)
1105 n = n.nextSibling
1106 else:
1107 break
1108 return ''.join(L)
1109
1110 def replaceWholeText(self, content):
1111 # XXX This needs to be seriously changed if minidom ever
1112 # supports EntityReference nodes.
1113 parent = self.parentNode
1114 n = self.previousSibling
1115 while n is not None:
1116 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1117 next = n.previousSibling
1118 parent.removeChild(n)
1119 n = next
1120 else:
1121 break
1122 n = self.nextSibling
1123 if not content:
1124 parent.removeChild(self)
1125 while n is not None:
1126 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1127 next = n.nextSibling
1128 parent.removeChild(n)
1129 n = next
1130 else:
1131 break
1132 if content:
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001133 self.data = content
Martin v. Löwis787354c2003-01-25 15:28:29 +00001134 return self
1135 else:
1136 return None
1137
1138 def _get_isWhitespaceInElementContent(self):
1139 if self.data.strip():
1140 return False
1141 elem = _get_containing_element(self)
1142 if elem is None:
1143 return False
1144 info = self.ownerDocument._get_elem_info(elem)
1145 if info is None:
1146 return False
1147 else:
1148 return info.isElementContent()
1149
1150defproperty(Text, "isWhitespaceInElementContent",
1151 doc="True iff this text node contains only whitespace"
1152 " and is in element content.")
1153defproperty(Text, "wholeText",
1154 doc="The text of all logically-adjacent text nodes.")
1155
1156
1157def _get_containing_element(node):
1158 c = node.parentNode
1159 while c is not None:
1160 if c.nodeType == Node.ELEMENT_NODE:
1161 return c
1162 c = c.parentNode
1163 return None
1164
1165def _get_containing_entref(node):
1166 c = node.parentNode
1167 while c is not None:
1168 if c.nodeType == Node.ENTITY_REFERENCE_NODE:
1169 return c
1170 c = c.parentNode
1171 return None
1172
1173
Alex Martelli0ee43512006-08-21 19:53:20 +00001174class Comment(CharacterData):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001175 nodeType = Node.COMMENT_NODE
1176 nodeName = "#comment"
1177
1178 def __init__(self, data):
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001179 CharacterData.__init__(self)
1180 self._data = data
Martin v. Löwis787354c2003-01-25 15:28:29 +00001181
1182 def writexml(self, writer, indent="", addindent="", newl=""):
Benjamin Peterson2b7411d2008-05-26 17:36:47 +00001183 if "--" in self.data:
1184 raise ValueError("'--' is not allowed in a comment node")
Martin v. Löwis787354c2003-01-25 15:28:29 +00001185 writer.write("%s<!--%s-->%s" % (indent, self.data, newl))
1186
Fred Drake87432f42001-04-04 14:09:46 +00001187
1188class CDATASection(Text):
Florent Xicluna8cf4b512012-03-05 12:37:02 +01001189 __slots__ = ()
1190
Fred Drake87432f42001-04-04 14:09:46 +00001191 nodeType = Node.CDATA_SECTION_NODE
1192 nodeName = "#cdata-section"
1193
1194 def writexml(self, writer, indent="", addindent="", newl=""):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001195 if self.data.find("]]>") >= 0:
1196 raise ValueError("']]>' not allowed in a CDATA section")
Guido van Rossum5b5e0b92001-09-19 13:28:25 +00001197 writer.write("<![CDATA[%s]]>" % self.data)
Fred Drake87432f42001-04-04 14:09:46 +00001198
1199
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001200class ReadOnlySequentialNamedNodeMap(object):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001201 __slots__ = '_seq',
1202
1203 def __init__(self, seq=()):
1204 # seq should be a list or tuple
1205 self._seq = seq
1206
1207 def __len__(self):
1208 return len(self._seq)
1209
1210 def _get_length(self):
1211 return len(self._seq)
1212
1213 def getNamedItem(self, name):
1214 for n in self._seq:
1215 if n.nodeName == name:
1216 return n
1217
1218 def getNamedItemNS(self, namespaceURI, localName):
1219 for n in self._seq:
1220 if n.namespaceURI == namespaceURI and n.localName == localName:
1221 return n
1222
1223 def __getitem__(self, name_or_tuple):
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001224 if isinstance(name_or_tuple, tuple):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001225 node = self.getNamedItemNS(*name_or_tuple)
1226 else:
1227 node = self.getNamedItem(name_or_tuple)
1228 if node is None:
Collin Winter70e79802007-08-24 18:57:22 +00001229 raise KeyError(name_or_tuple)
Martin v. Löwis787354c2003-01-25 15:28:29 +00001230 return node
1231
1232 def item(self, index):
1233 if index < 0:
1234 return None
1235 try:
1236 return self._seq[index]
1237 except IndexError:
1238 return None
1239
1240 def removeNamedItem(self, name):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001241 raise xml.dom.NoModificationAllowedErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001242 "NamedNodeMap instance is read-only")
1243
1244 def removeNamedItemNS(self, namespaceURI, localName):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001245 raise xml.dom.NoModificationAllowedErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001246 "NamedNodeMap instance is read-only")
1247
1248 def setNamedItem(self, node):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001249 raise xml.dom.NoModificationAllowedErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001250 "NamedNodeMap instance is read-only")
1251
1252 def setNamedItemNS(self, node):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001253 raise xml.dom.NoModificationAllowedErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001254 "NamedNodeMap instance is read-only")
1255
1256 def __getstate__(self):
1257 return [self._seq]
1258
1259 def __setstate__(self, state):
1260 self._seq = state[0]
1261
1262defproperty(ReadOnlySequentialNamedNodeMap, "length",
1263 doc="Number of entries in the NamedNodeMap.")
Paul Prescod73678da2000-07-01 04:58:47 +00001264
Fred Drakef7cf40d2000-12-14 18:16:11 +00001265
Martin v. Löwis787354c2003-01-25 15:28:29 +00001266class Identified:
1267 """Mix-in class that supports the publicId and systemId attributes."""
1268
Florent Xicluna8cf4b512012-03-05 12:37:02 +01001269 __slots__ = 'publicId', 'systemId'
Martin v. Löwis787354c2003-01-25 15:28:29 +00001270
1271 def _identified_mixin_init(self, publicId, systemId):
1272 self.publicId = publicId
1273 self.systemId = systemId
1274
1275 def _get_publicId(self):
1276 return self.publicId
1277
1278 def _get_systemId(self):
1279 return self.systemId
1280
1281class DocumentType(Identified, Childless, Node):
Fred Drakef7cf40d2000-12-14 18:16:11 +00001282 nodeType = Node.DOCUMENT_TYPE_NODE
1283 nodeValue = None
Fred Drakef7cf40d2000-12-14 18:16:11 +00001284 name = None
1285 publicId = None
1286 systemId = None
Fred Drakedc806702001-04-05 14:41:30 +00001287 internalSubset = None
Fred Drakef7cf40d2000-12-14 18:16:11 +00001288
1289 def __init__(self, qualifiedName):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001290 self.entities = ReadOnlySequentialNamedNodeMap()
1291 self.notations = ReadOnlySequentialNamedNodeMap()
Fred Drakef7cf40d2000-12-14 18:16:11 +00001292 if qualifiedName:
1293 prefix, localname = _nssplit(qualifiedName)
1294 self.name = localname
Martin v. Löwis787354c2003-01-25 15:28:29 +00001295 self.nodeName = self.name
1296
1297 def _get_internalSubset(self):
1298 return self.internalSubset
1299
1300 def cloneNode(self, deep):
1301 if self.ownerDocument is None:
1302 # it's ok
1303 clone = DocumentType(None)
1304 clone.name = self.name
1305 clone.nodeName = self.name
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001306 operation = xml.dom.UserDataHandler.NODE_CLONED
Martin v. Löwis787354c2003-01-25 15:28:29 +00001307 if deep:
1308 clone.entities._seq = []
1309 clone.notations._seq = []
1310 for n in self.notations._seq:
1311 notation = Notation(n.nodeName, n.publicId, n.systemId)
1312 clone.notations._seq.append(notation)
1313 n._call_user_data_handler(operation, n, notation)
1314 for e in self.entities._seq:
1315 entity = Entity(e.nodeName, e.publicId, e.systemId,
1316 e.notationName)
1317 entity.actualEncoding = e.actualEncoding
1318 entity.encoding = e.encoding
1319 entity.version = e.version
1320 clone.entities._seq.append(entity)
1321 e._call_user_data_handler(operation, n, entity)
1322 self._call_user_data_handler(operation, self, clone)
1323 return clone
1324 else:
1325 return None
1326
1327 def writexml(self, writer, indent="", addindent="", newl=""):
1328 writer.write("<!DOCTYPE ")
1329 writer.write(self.name)
1330 if self.publicId:
Georg Brandl175a7dc2005-08-25 22:02:43 +00001331 writer.write("%s PUBLIC '%s'%s '%s'"
1332 % (newl, self.publicId, newl, self.systemId))
Martin v. Löwis787354c2003-01-25 15:28:29 +00001333 elif self.systemId:
Georg Brandl175a7dc2005-08-25 22:02:43 +00001334 writer.write("%s SYSTEM '%s'" % (newl, self.systemId))
Martin v. Löwis787354c2003-01-25 15:28:29 +00001335 if self.internalSubset is not None:
1336 writer.write(" [")
1337 writer.write(self.internalSubset)
1338 writer.write("]")
Georg Brandl175a7dc2005-08-25 22:02:43 +00001339 writer.write(">"+newl)
Martin v. Löwis787354c2003-01-25 15:28:29 +00001340
1341class Entity(Identified, Node):
1342 attributes = None
1343 nodeType = Node.ENTITY_NODE
1344 nodeValue = None
1345
1346 actualEncoding = None
1347 encoding = None
1348 version = None
1349
1350 def __init__(self, name, publicId, systemId, notation):
1351 self.nodeName = name
1352 self.notationName = notation
1353 self.childNodes = NodeList()
1354 self._identified_mixin_init(publicId, systemId)
1355
1356 def _get_actualEncoding(self):
1357 return self.actualEncoding
1358
1359 def _get_encoding(self):
1360 return self.encoding
1361
1362 def _get_version(self):
1363 return self.version
1364
1365 def appendChild(self, newChild):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001366 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001367 "cannot append children to an entity node")
1368
1369 def insertBefore(self, newChild, refChild):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001370 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001371 "cannot insert children below an entity node")
1372
1373 def removeChild(self, oldChild):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001374 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001375 "cannot remove children from an entity node")
1376
1377 def replaceChild(self, newChild, oldChild):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001378 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001379 "cannot replace children of an entity node")
1380
1381class Notation(Identified, Childless, Node):
1382 nodeType = Node.NOTATION_NODE
1383 nodeValue = None
1384
1385 def __init__(self, name, publicId, systemId):
1386 self.nodeName = name
1387 self._identified_mixin_init(publicId, systemId)
Fred Drakef7cf40d2000-12-14 18:16:11 +00001388
1389
Martin v. Löwis787354c2003-01-25 15:28:29 +00001390class DOMImplementation(DOMImplementationLS):
1391 _features = [("core", "1.0"),
1392 ("core", "2.0"),
Martin v. Löwis787354c2003-01-25 15:28:29 +00001393 ("core", None),
1394 ("xml", "1.0"),
1395 ("xml", "2.0"),
Martin v. Löwis787354c2003-01-25 15:28:29 +00001396 ("xml", None),
1397 ("ls-load", "3.0"),
1398 ("ls-load", None),
1399 ]
1400
Fred Drakef7cf40d2000-12-14 18:16:11 +00001401 def hasFeature(self, feature, version):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001402 if version == "":
1403 version = None
1404 return (feature.lower(), version) in self._features
Fred Drakef7cf40d2000-12-14 18:16:11 +00001405
1406 def createDocument(self, namespaceURI, qualifiedName, doctype):
1407 if doctype and doctype.parentNode is not None:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001408 raise xml.dom.WrongDocumentErr(
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +00001409 "doctype object owned by another DOM tree")
Martin v. Löwis787354c2003-01-25 15:28:29 +00001410 doc = self._create_document()
1411
1412 add_root_element = not (namespaceURI is None
1413 and qualifiedName is None
1414 and doctype is None)
1415
1416 if not qualifiedName and add_root_element:
Martin v. Löwisb417be22001-02-06 01:16:06 +00001417 # The spec is unclear what to raise here; SyntaxErr
1418 # would be the other obvious candidate. Since Xerces raises
1419 # InvalidCharacterErr, and since SyntaxErr is not listed
1420 # for createDocument, that seems to be the better choice.
1421 # XXX: need to check for illegal characters here and in
1422 # createElement.
Martin v. Löwis787354c2003-01-25 15:28:29 +00001423
1424 # DOM Level III clears this up when talking about the return value
1425 # of this function. If namespaceURI, qName and DocType are
1426 # Null the document is returned without a document element
1427 # Otherwise if doctype or namespaceURI are not None
1428 # Then we go back to the above problem
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001429 raise xml.dom.InvalidCharacterErr("Element with no name")
Martin v. Löwis787354c2003-01-25 15:28:29 +00001430
1431 if add_root_element:
1432 prefix, localname = _nssplit(qualifiedName)
1433 if prefix == "xml" \
1434 and namespaceURI != "http://www.w3.org/XML/1998/namespace":
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001435 raise xml.dom.NamespaceErr("illegal use of 'xml' prefix")
Martin v. Löwis787354c2003-01-25 15:28:29 +00001436 if prefix and not namespaceURI:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001437 raise xml.dom.NamespaceErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001438 "illegal use of prefix without namespaces")
1439 element = doc.createElementNS(namespaceURI, qualifiedName)
1440 if doctype:
1441 doc.appendChild(doctype)
1442 doc.appendChild(element)
1443
1444 if doctype:
1445 doctype.parentNode = doctype.ownerDocument = doc
1446
Fred Drakef7cf40d2000-12-14 18:16:11 +00001447 doc.doctype = doctype
1448 doc.implementation = self
1449 return doc
1450
1451 def createDocumentType(self, qualifiedName, publicId, systemId):
1452 doctype = DocumentType(qualifiedName)
1453 doctype.publicId = publicId
1454 doctype.systemId = systemId
1455 return doctype
1456
Martin v. Löwis787354c2003-01-25 15:28:29 +00001457 # DOM Level 3 (WD 9 April 2002)
1458
1459 def getInterface(self, feature):
1460 if self.hasFeature(feature, None):
1461 return self
1462 else:
1463 return None
1464
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001465 # internal
Martin v. Löwis787354c2003-01-25 15:28:29 +00001466 def _create_document(self):
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001467 return Document()
Fred Drakef7cf40d2000-12-14 18:16:11 +00001468
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001469class ElementInfo(object):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001470 """Object that represents content-model information for an element.
1471
1472 This implementation is not expected to be used in practice; DOM
1473 builders should provide implementations which do the right thing
1474 using information available to it.
1475
1476 """
1477
1478 __slots__ = 'tagName',
1479
1480 def __init__(self, name):
1481 self.tagName = name
1482
1483 def getAttributeType(self, aname):
1484 return _no_type
1485
1486 def getAttributeTypeNS(self, namespaceURI, localName):
1487 return _no_type
1488
1489 def isElementContent(self):
1490 return False
1491
1492 def isEmpty(self):
1493 """Returns true iff this element is declared to have an EMPTY
1494 content model."""
1495 return False
1496
1497 def isId(self, aname):
Ezio Melotti42da6632011-03-15 05:18:48 +02001498 """Returns true iff the named attribute is a DTD-style ID."""
Martin v. Löwis787354c2003-01-25 15:28:29 +00001499 return False
1500
1501 def isIdNS(self, namespaceURI, localName):
1502 """Returns true iff the identified attribute is a DTD-style ID."""
1503 return False
1504
1505 def __getstate__(self):
1506 return self.tagName
1507
1508 def __setstate__(self, state):
1509 self.tagName = state
1510
1511def _clear_id_cache(node):
1512 if node.nodeType == Node.DOCUMENT_NODE:
1513 node._id_cache.clear()
1514 node._id_search_stack = None
1515 elif _in_document(node):
1516 node.ownerDocument._id_cache.clear()
1517 node.ownerDocument._id_search_stack= None
1518
1519class Document(Node, DocumentLS):
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001520 __slots__ = ('_elem_info', 'doctype',
1521 '_id_search_stack', 'childNodes', '_id_cache')
Martin v. Löwis787354c2003-01-25 15:28:29 +00001522 _child_node_types = (Node.ELEMENT_NODE, Node.PROCESSING_INSTRUCTION_NODE,
1523 Node.COMMENT_NODE, Node.DOCUMENT_TYPE_NODE)
1524
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001525 implementation = DOMImplementation()
Fred Drake1f549022000-09-24 05:21:58 +00001526 nodeType = Node.DOCUMENT_NODE
Fred Drake4ccf4a12000-11-21 22:02:22 +00001527 nodeName = "#document"
1528 nodeValue = None
1529 attributes = None
Fred Drakef7cf40d2000-12-14 18:16:11 +00001530 parentNode = None
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001531 previousSibling = nextSibling = None
Fred Drakef7cf40d2000-12-14 18:16:11 +00001532
Martin v. Löwis787354c2003-01-25 15:28:29 +00001533
1534 # Document attributes from Level 3 (WD 9 April 2002)
1535
1536 actualEncoding = None
1537 encoding = None
1538 standalone = None
1539 version = None
1540 strictErrorChecking = False
1541 errorHandler = None
1542 documentURI = None
1543
1544 _magic_id_count = 0
1545
1546 def __init__(self):
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001547 self.doctype = None
Martin v. Löwis787354c2003-01-25 15:28:29 +00001548 self.childNodes = NodeList()
1549 # mapping of (namespaceURI, localName) -> ElementInfo
1550 # and tagName -> ElementInfo
1551 self._elem_info = {}
1552 self._id_cache = {}
1553 self._id_search_stack = None
1554
1555 def _get_elem_info(self, element):
1556 if element.namespaceURI:
1557 key = element.namespaceURI, element.localName
1558 else:
1559 key = element.tagName
1560 return self._elem_info.get(key)
1561
1562 def _get_actualEncoding(self):
1563 return self.actualEncoding
1564
1565 def _get_doctype(self):
1566 return self.doctype
1567
1568 def _get_documentURI(self):
1569 return self.documentURI
1570
1571 def _get_encoding(self):
1572 return self.encoding
1573
1574 def _get_errorHandler(self):
1575 return self.errorHandler
1576
1577 def _get_standalone(self):
1578 return self.standalone
1579
1580 def _get_strictErrorChecking(self):
1581 return self.strictErrorChecking
1582
1583 def _get_version(self):
1584 return self.version
Fred Drake55c38192000-06-29 19:39:57 +00001585
Fred Drake1f549022000-09-24 05:21:58 +00001586 def appendChild(self, node):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001587 if node.nodeType not in self._child_node_types:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001588 raise xml.dom.HierarchyRequestErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001589 "%s cannot be child of %s" % (repr(node), repr(self)))
Andrew M. Kuchling04a45e92000-12-20 14:47:24 +00001590 if node.parentNode is not None:
Martin v. Löwis787354c2003-01-25 15:28:29 +00001591 # This needs to be done before the next test since this
1592 # may *be* the document element, in which case it should
1593 # end up re-ordered to the end.
Andrew M. Kuchling04a45e92000-12-20 14:47:24 +00001594 node.parentNode.removeChild(node)
1595
Fred Drakef7cf40d2000-12-14 18:16:11 +00001596 if node.nodeType == Node.ELEMENT_NODE \
1597 and self._get_documentElement():
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001598 raise xml.dom.HierarchyRequestErr(
Guido van Rossum9e1fe1e2001-02-05 19:17:50 +00001599 "two document elements disallowed")
Fred Drake4ccf4a12000-11-21 22:02:22 +00001600 return Node.appendChild(self, node)
Paul Prescod73678da2000-07-01 04:58:47 +00001601
Andrew M. Kuchling04a45e92000-12-20 14:47:24 +00001602 def removeChild(self, oldChild):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001603 try:
1604 self.childNodes.remove(oldChild)
1605 except ValueError:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001606 raise xml.dom.NotFoundErr()
Andrew M. Kuchling04a45e92000-12-20 14:47:24 +00001607 oldChild.nextSibling = oldChild.previousSibling = None
1608 oldChild.parentNode = None
1609 if self.documentElement is oldChild:
1610 self.documentElement = None
Martin v. Löwis52ce0d02001-01-27 08:47:37 +00001611
Andrew M. Kuchling04a45e92000-12-20 14:47:24 +00001612 return oldChild
1613
Fred Drakef7cf40d2000-12-14 18:16:11 +00001614 def _get_documentElement(self):
1615 for node in self.childNodes:
1616 if node.nodeType == Node.ELEMENT_NODE:
1617 return node
1618
1619 def unlink(self):
1620 if self.doctype is not None:
1621 self.doctype.unlink()
1622 self.doctype = None
1623 Node.unlink(self)
1624
Martin v. Löwis787354c2003-01-25 15:28:29 +00001625 def cloneNode(self, deep):
1626 if not deep:
1627 return None
1628 clone = self.implementation.createDocument(None, None, None)
1629 clone.encoding = self.encoding
1630 clone.standalone = self.standalone
1631 clone.version = self.version
1632 for n in self.childNodes:
1633 childclone = _clone_node(n, deep, clone)
1634 assert childclone.ownerDocument.isSameNode(clone)
1635 clone.childNodes.append(childclone)
1636 if childclone.nodeType == Node.DOCUMENT_NODE:
1637 assert clone.documentElement is None
1638 elif childclone.nodeType == Node.DOCUMENT_TYPE_NODE:
1639 assert clone.doctype is None
1640 clone.doctype = childclone
1641 childclone.parentNode = clone
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001642 self._call_user_data_handler(xml.dom.UserDataHandler.NODE_CLONED,
Martin v. Löwis787354c2003-01-25 15:28:29 +00001643 self, clone)
1644 return clone
1645
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001646 def createDocumentFragment(self):
1647 d = DocumentFragment()
Martin v. Löwis787354c2003-01-25 15:28:29 +00001648 d.ownerDocument = self
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001649 return d
Fred Drake55c38192000-06-29 19:39:57 +00001650
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001651 def createElement(self, tagName):
1652 e = Element(tagName)
1653 e.ownerDocument = self
1654 return e
Fred Drake55c38192000-06-29 19:39:57 +00001655
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001656 def createTextNode(self, data):
Christian Heimesc9543e42007-11-28 08:28:28 +00001657 if not isinstance(data, str):
Collin Winter70e79802007-08-24 18:57:22 +00001658 raise TypeError("node contents must be a string")
Martin v. Löwis787354c2003-01-25 15:28:29 +00001659 t = Text()
1660 t.data = data
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001661 t.ownerDocument = self
1662 return t
Fred Drake55c38192000-06-29 19:39:57 +00001663
Fred Drake87432f42001-04-04 14:09:46 +00001664 def createCDATASection(self, data):
Christian Heimesc9543e42007-11-28 08:28:28 +00001665 if not isinstance(data, str):
Collin Winter70e79802007-08-24 18:57:22 +00001666 raise TypeError("node contents must be a string")
Martin v. Löwis787354c2003-01-25 15:28:29 +00001667 c = CDATASection()
1668 c.data = data
Fred Drake87432f42001-04-04 14:09:46 +00001669 c.ownerDocument = self
1670 return c
1671
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001672 def createComment(self, data):
1673 c = Comment(data)
1674 c.ownerDocument = self
1675 return c
Fred Drake55c38192000-06-29 19:39:57 +00001676
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001677 def createProcessingInstruction(self, target, data):
1678 p = ProcessingInstruction(target, data)
1679 p.ownerDocument = self
1680 return p
1681
1682 def createAttribute(self, qName):
1683 a = Attr(qName)
1684 a.ownerDocument = self
Martin v. Löwiscb67ea12001-03-31 16:30:40 +00001685 a.value = ""
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001686 return a
Fred Drake55c38192000-06-29 19:39:57 +00001687
1688 def createElementNS(self, namespaceURI, qualifiedName):
Fred Drake4ccf4a12000-11-21 22:02:22 +00001689 prefix, localName = _nssplit(qualifiedName)
Martin v. Löwis787354c2003-01-25 15:28:29 +00001690 e = Element(qualifiedName, namespaceURI, prefix)
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001691 e.ownerDocument = self
1692 return e
Fred Drake55c38192000-06-29 19:39:57 +00001693
1694 def createAttributeNS(self, namespaceURI, qualifiedName):
Fred Drake4ccf4a12000-11-21 22:02:22 +00001695 prefix, localName = _nssplit(qualifiedName)
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001696 a = Attr(qualifiedName, namespaceURI, localName, prefix)
1697 a.ownerDocument = self
Martin v. Löwiscb67ea12001-03-31 16:30:40 +00001698 a.value = ""
Martin v. Löwis126f2f62001-03-13 10:50:13 +00001699 return a
Fred Drake55c38192000-06-29 19:39:57 +00001700
Martin v. Löwis787354c2003-01-25 15:28:29 +00001701 # A couple of implementation-specific helpers to create node types
1702 # not supported by the W3C DOM specs:
1703
1704 def _create_entity(self, name, publicId, systemId, notationName):
1705 e = Entity(name, publicId, systemId, notationName)
1706 e.ownerDocument = self
1707 return e
1708
1709 def _create_notation(self, name, publicId, systemId):
1710 n = Notation(name, publicId, systemId)
1711 n.ownerDocument = self
1712 return n
1713
1714 def getElementById(self, id):
Guido van Rossum1b01e5c2006-08-19 02:45:06 +00001715 if id in self._id_cache:
Martin v. Löwis787354c2003-01-25 15:28:29 +00001716 return self._id_cache[id]
1717 if not (self._elem_info or self._magic_id_count):
1718 return None
1719
1720 stack = self._id_search_stack
1721 if stack is None:
1722 # we never searched before, or the cache has been cleared
1723 stack = [self.documentElement]
1724 self._id_search_stack = stack
1725 elif not stack:
1726 # Previous search was completed and cache is still valid;
1727 # no matching node.
1728 return None
1729
1730 result = None
1731 while stack:
1732 node = stack.pop()
1733 # add child elements to stack for continued searching
1734 stack.extend([child for child in node.childNodes
1735 if child.nodeType in _nodeTypes_with_children])
1736 # check this node
1737 info = self._get_elem_info(node)
1738 if info:
1739 # We have to process all ID attributes before
1740 # returning in order to get all the attributes set to
1741 # be IDs using Element.setIdAttribute*().
1742 for attr in node.attributes.values():
1743 if attr.namespaceURI:
1744 if info.isIdNS(attr.namespaceURI, attr.localName):
1745 self._id_cache[attr.value] = node
1746 if attr.value == id:
1747 result = node
1748 elif not node._magic_id_nodes:
1749 break
1750 elif info.isId(attr.name):
1751 self._id_cache[attr.value] = node
1752 if attr.value == id:
1753 result = node
1754 elif not node._magic_id_nodes:
1755 break
1756 elif attr._is_id:
1757 self._id_cache[attr.value] = node
1758 if attr.value == id:
1759 result = node
1760 elif node._magic_id_nodes == 1:
1761 break
1762 elif node._magic_id_nodes:
1763 for attr in node.attributes.values():
1764 if attr._is_id:
1765 self._id_cache[attr.value] = node
1766 if attr.value == id:
1767 result = node
1768 if result is not None:
1769 break
1770 return result
1771
Fred Drake1f549022000-09-24 05:21:58 +00001772 def getElementsByTagName(self, name):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001773 return _get_elements_by_tagName_helper(self, name, NodeList())
Fred Drakefbe7b4f2001-07-04 06:25:53 +00001774
1775 def getElementsByTagNameNS(self, namespaceURI, localName):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001776 return _get_elements_by_tagName_ns_helper(
1777 self, namespaceURI, localName, NodeList())
1778
1779 def isSupported(self, feature, version):
1780 return self.implementation.hasFeature(feature, version)
1781
1782 def importNode(self, node, deep):
1783 if node.nodeType == Node.DOCUMENT_NODE:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001784 raise xml.dom.NotSupportedErr("cannot import document nodes")
Martin v. Löwis787354c2003-01-25 15:28:29 +00001785 elif node.nodeType == Node.DOCUMENT_TYPE_NODE:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001786 raise xml.dom.NotSupportedErr("cannot import document type nodes")
Martin v. Löwis787354c2003-01-25 15:28:29 +00001787 return _clone_node(node, deep, self)
Fred Drake55c38192000-06-29 19:39:57 +00001788
Eli Bendersky8a805022012-07-13 09:52:39 +03001789 def writexml(self, writer, indent="", addindent="", newl="", encoding=None):
Martin v. Löwis7d650ca2002-06-30 15:05:00 +00001790 if encoding is None:
Georg Brandl175a7dc2005-08-25 22:02:43 +00001791 writer.write('<?xml version="1.0" ?>'+newl)
Martin v. Löwis7d650ca2002-06-30 15:05:00 +00001792 else:
Eli Bendersky8a805022012-07-13 09:52:39 +03001793 writer.write('<?xml version="1.0" encoding="%s"?>%s' % (
1794 encoding, newl))
Fred Drake55c38192000-06-29 19:39:57 +00001795 for node in self.childNodes:
Martin v. Löwis46fa39a2001-02-06 00:14:08 +00001796 node.writexml(writer, indent, addindent, newl)
Fred Drake55c38192000-06-29 19:39:57 +00001797
Martin v. Löwis787354c2003-01-25 15:28:29 +00001798 # DOM Level 3 (WD 9 April 2002)
1799
1800 def renameNode(self, n, namespaceURI, name):
1801 if n.ownerDocument is not self:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001802 raise xml.dom.WrongDocumentErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001803 "cannot rename nodes from other documents;\n"
1804 "expected %s,\nfound %s" % (self, n.ownerDocument))
1805 if n.nodeType not in (Node.ELEMENT_NODE, Node.ATTRIBUTE_NODE):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001806 raise xml.dom.NotSupportedErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001807 "renameNode() only applies to element and attribute nodes")
1808 if namespaceURI != EMPTY_NAMESPACE:
1809 if ':' in name:
1810 prefix, localName = name.split(':', 1)
1811 if ( prefix == "xmlns"
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001812 and namespaceURI != xml.dom.XMLNS_NAMESPACE):
1813 raise xml.dom.NamespaceErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001814 "illegal use of 'xmlns' prefix")
1815 else:
1816 if ( name == "xmlns"
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001817 and namespaceURI != xml.dom.XMLNS_NAMESPACE
Martin v. Löwis787354c2003-01-25 15:28:29 +00001818 and n.nodeType == Node.ATTRIBUTE_NODE):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001819 raise xml.dom.NamespaceErr(
Martin v. Löwis787354c2003-01-25 15:28:29 +00001820 "illegal use of the 'xmlns' attribute")
1821 prefix = None
1822 localName = name
1823 else:
1824 prefix = None
1825 localName = None
1826 if n.nodeType == Node.ATTRIBUTE_NODE:
1827 element = n.ownerElement
1828 if element is not None:
1829 is_id = n._is_id
1830 element.removeAttributeNode(n)
1831 else:
1832 element = None
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001833 n.prefix = prefix
1834 n._localName = localName
1835 n.namespaceURI = namespaceURI
1836 n.nodeName = name
Martin v. Löwis787354c2003-01-25 15:28:29 +00001837 if n.nodeType == Node.ELEMENT_NODE:
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001838 n.tagName = name
Martin v. Löwis787354c2003-01-25 15:28:29 +00001839 else:
1840 # attribute node
Martin v. Löwis14aa2802012-02-19 20:25:12 +01001841 n.name = name
Martin v. Löwis787354c2003-01-25 15:28:29 +00001842 if element is not None:
1843 element.setAttributeNode(n)
1844 if is_id:
1845 element.setIdAttributeNode(n)
1846 # It's not clear from a semantic perspective whether we should
1847 # call the user data handlers for the NODE_RENAMED event since
1848 # we're re-using the existing node. The draft spec has been
1849 # interpreted as meaning "no, don't call the handler unless a
1850 # new node is created."
1851 return n
1852
1853defproperty(Document, "documentElement",
1854 doc="Top-level element of this document.")
1855
1856
1857def _clone_node(node, deep, newOwnerDocument):
1858 """
1859 Clone a node and give it the new owner document.
1860 Called by Node.cloneNode and Document.importNode
1861 """
1862 if node.ownerDocument.isSameNode(newOwnerDocument):
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001863 operation = xml.dom.UserDataHandler.NODE_CLONED
Martin v. Löwis787354c2003-01-25 15:28:29 +00001864 else:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001865 operation = xml.dom.UserDataHandler.NODE_IMPORTED
Martin v. Löwis787354c2003-01-25 15:28:29 +00001866 if node.nodeType == Node.ELEMENT_NODE:
1867 clone = newOwnerDocument.createElementNS(node.namespaceURI,
1868 node.nodeName)
1869 for attr in node.attributes.values():
1870 clone.setAttributeNS(attr.namespaceURI, attr.nodeName, attr.value)
1871 a = clone.getAttributeNodeNS(attr.namespaceURI, attr.localName)
1872 a.specified = attr.specified
1873
1874 if deep:
1875 for child in node.childNodes:
1876 c = _clone_node(child, deep, newOwnerDocument)
1877 clone.appendChild(c)
1878
1879 elif node.nodeType == Node.DOCUMENT_FRAGMENT_NODE:
1880 clone = newOwnerDocument.createDocumentFragment()
1881 if deep:
1882 for child in node.childNodes:
1883 c = _clone_node(child, deep, newOwnerDocument)
1884 clone.appendChild(c)
1885
1886 elif node.nodeType == Node.TEXT_NODE:
1887 clone = newOwnerDocument.createTextNode(node.data)
1888 elif node.nodeType == Node.CDATA_SECTION_NODE:
1889 clone = newOwnerDocument.createCDATASection(node.data)
1890 elif node.nodeType == Node.PROCESSING_INSTRUCTION_NODE:
1891 clone = newOwnerDocument.createProcessingInstruction(node.target,
1892 node.data)
1893 elif node.nodeType == Node.COMMENT_NODE:
1894 clone = newOwnerDocument.createComment(node.data)
1895 elif node.nodeType == Node.ATTRIBUTE_NODE:
1896 clone = newOwnerDocument.createAttributeNS(node.namespaceURI,
1897 node.nodeName)
1898 clone.specified = True
1899 clone.value = node.value
1900 elif node.nodeType == Node.DOCUMENT_TYPE_NODE:
1901 assert node.ownerDocument is not newOwnerDocument
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001902 operation = xml.dom.UserDataHandler.NODE_IMPORTED
Martin v. Löwis787354c2003-01-25 15:28:29 +00001903 clone = newOwnerDocument.implementation.createDocumentType(
1904 node.name, node.publicId, node.systemId)
1905 clone.ownerDocument = newOwnerDocument
1906 if deep:
1907 clone.entities._seq = []
1908 clone.notations._seq = []
1909 for n in node.notations._seq:
1910 notation = Notation(n.nodeName, n.publicId, n.systemId)
1911 notation.ownerDocument = newOwnerDocument
1912 clone.notations._seq.append(notation)
1913 if hasattr(n, '_call_user_data_handler'):
1914 n._call_user_data_handler(operation, n, notation)
1915 for e in node.entities._seq:
1916 entity = Entity(e.nodeName, e.publicId, e.systemId,
1917 e.notationName)
1918 entity.actualEncoding = e.actualEncoding
1919 entity.encoding = e.encoding
1920 entity.version = e.version
1921 entity.ownerDocument = newOwnerDocument
1922 clone.entities._seq.append(entity)
1923 if hasattr(e, '_call_user_data_handler'):
1924 e._call_user_data_handler(operation, n, entity)
1925 else:
1926 # Note the cloning of Document and DocumentType nodes is
Ezio Melotti13925002011-03-16 11:05:33 +02001927 # implementation specific. minidom handles those cases
Martin v. Löwis787354c2003-01-25 15:28:29 +00001928 # directly in the cloneNode() methods.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001929 raise xml.dom.NotSupportedErr("Cannot clone node %s" % repr(node))
Martin v. Löwis787354c2003-01-25 15:28:29 +00001930
1931 # Check for _call_user_data_handler() since this could conceivably
1932 # used with other DOM implementations (one of the FourThought
1933 # DOMs, perhaps?).
1934 if hasattr(node, '_call_user_data_handler'):
1935 node._call_user_data_handler(operation, node, clone)
1936 return clone
1937
1938
1939def _nssplit(qualifiedName):
1940 fields = qualifiedName.split(':', 1)
1941 if len(fields) == 2:
1942 return fields
1943 else:
1944 return (None, fields[0])
1945
1946
Martin v. Löwis787354c2003-01-25 15:28:29 +00001947def _do_pulldom_parse(func, args, kwargs):
Raymond Hettingerff41c482003-04-06 09:01:11 +00001948 events = func(*args, **kwargs)
Fred Drake1f549022000-09-24 05:21:58 +00001949 toktype, rootNode = events.getEvent()
1950 events.expandNode(rootNode)
Martin v. Löwisb417be22001-02-06 01:16:06 +00001951 events.clear()
Fred Drake55c38192000-06-29 19:39:57 +00001952 return rootNode
1953
Martin v. Löwis787354c2003-01-25 15:28:29 +00001954def parse(file, parser=None, bufsize=None):
Fred Drakef7cf40d2000-12-14 18:16:11 +00001955 """Parse a file into a DOM by filename or file object."""
Martin v. Löwis787354c2003-01-25 15:28:29 +00001956 if parser is None and not bufsize:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001957 from xml.dom import expatbuilder
Martin v. Löwis787354c2003-01-25 15:28:29 +00001958 return expatbuilder.parse(file)
1959 else:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001960 from xml.dom import pulldom
Raymond Hettingerff41c482003-04-06 09:01:11 +00001961 return _do_pulldom_parse(pulldom.parse, (file,),
Martin v. Löwis787354c2003-01-25 15:28:29 +00001962 {'parser': parser, 'bufsize': bufsize})
Fred Drake55c38192000-06-29 19:39:57 +00001963
Martin v. Löwis787354c2003-01-25 15:28:29 +00001964def parseString(string, parser=None):
Fred Drakef7cf40d2000-12-14 18:16:11 +00001965 """Parse a file into a DOM from a string."""
Martin v. Löwis787354c2003-01-25 15:28:29 +00001966 if parser is None:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001967 from xml.dom import expatbuilder
Martin v. Löwis787354c2003-01-25 15:28:29 +00001968 return expatbuilder.parseString(string)
1969 else:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001970 from xml.dom import pulldom
Martin v. Löwis787354c2003-01-25 15:28:29 +00001971 return _do_pulldom_parse(pulldom.parseString, (string,),
1972 {'parser': parser})
Martin v. Löwis7edbd4f2001-02-22 14:05:50 +00001973
Martin v. Löwis787354c2003-01-25 15:28:29 +00001974def getDOMImplementation(features=None):
1975 if features:
Christian Heimesc9543e42007-11-28 08:28:28 +00001976 if isinstance(features, str):
Martin v. Löwis787354c2003-01-25 15:28:29 +00001977 features = domreg._parse_feature_string(features)
1978 for f, v in features:
1979 if not Document.implementation.hasFeature(f, v):
1980 return None
Martin v. Löwis7edbd4f2001-02-22 14:05:50 +00001981 return Document.implementation