blob: 9553c51f6c56636893bbff40debf83b577668e4e [file] [log] [blame]
Armin Rigo9ed73062005-12-14 18:10:45 +00001#
2# ElementTree
Florent Xiclunaf15351d2010-03-13 23:24:31 +00003# $Id: ElementTree.py 3440 2008-07-18 14:45:01Z fredrik $
Armin Rigo9ed73062005-12-14 18:10:45 +00004#
Florent Xiclunaf15351d2010-03-13 23:24:31 +00005# light-weight XML support for Python 2.3 and later.
Armin Rigo9ed73062005-12-14 18:10:45 +00006#
Florent Xiclunaf15351d2010-03-13 23:24:31 +00007# history (since 1.2.6):
8# 2005-11-12 fl added tostringlist/fromstringlist helpers
9# 2006-07-05 fl merged in selected changes from the 1.3 sandbox
10# 2006-07-05 fl removed support for 2.1 and earlier
11# 2007-06-21 fl added deprecation/future warnings
12# 2007-08-25 fl added doctype hook, added parser version attribute etc
13# 2007-08-26 fl added new serializer code (better namespace handling, etc)
14# 2007-08-27 fl warn for broken /tag searches on tree level
15# 2007-09-02 fl added html/text methods to serializer (experimental)
16# 2007-09-05 fl added method argument to tostring/tostringlist
17# 2007-09-06 fl improved error handling
18# 2007-09-13 fl added itertext, iterfind; assorted cleanups
19# 2007-12-15 fl added C14N hooks, copy method (experimental)
Armin Rigo9ed73062005-12-14 18:10:45 +000020#
Florent Xiclunaf15351d2010-03-13 23:24:31 +000021# Copyright (c) 1999-2008 by Fredrik Lundh. All rights reserved.
Armin Rigo9ed73062005-12-14 18:10:45 +000022#
23# fredrik@pythonware.com
24# http://www.pythonware.com
25#
26# --------------------------------------------------------------------
27# The ElementTree toolkit is
28#
Florent Xiclunaf15351d2010-03-13 23:24:31 +000029# Copyright (c) 1999-2008 by Fredrik Lundh
Armin Rigo9ed73062005-12-14 18:10:45 +000030#
31# By obtaining, using, and/or copying this software and/or its
32# associated documentation, you agree that you have read, understood,
33# and will comply with the following terms and conditions:
34#
35# Permission to use, copy, modify, and distribute this software and
36# its associated documentation for any purpose and without fee is
37# hereby granted, provided that the above copyright notice appears in
38# all copies, and that both that copyright notice and this permission
39# notice appear in supporting documentation, and that the name of
40# Secret Labs AB or the author not be used in advertising or publicity
41# pertaining to distribution of the software without specific, written
42# prior permission.
43#
44# SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
45# TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANT-
46# ABILITY AND FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR
47# BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY
48# DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
49# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
50# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
51# OF THIS SOFTWARE.
52# --------------------------------------------------------------------
53
Fredrik Lundh63168a52005-12-14 22:29:34 +000054# Licensed to PSF under a Contributor Agreement.
Florent Xiclunaf15351d2010-03-13 23:24:31 +000055# See http://www.python.org/psf/license for licensing details.
Fredrik Lundh63168a52005-12-14 22:29:34 +000056
Armin Rigo9ed73062005-12-14 18:10:45 +000057__all__ = [
58 # public symbols
59 "Comment",
60 "dump",
61 "Element", "ElementTree",
Florent Xiclunaf15351d2010-03-13 23:24:31 +000062 "fromstring", "fromstringlist",
Armin Rigo9ed73062005-12-14 18:10:45 +000063 "iselement", "iterparse",
Florent Xiclunaf15351d2010-03-13 23:24:31 +000064 "parse", "ParseError",
Armin Rigo9ed73062005-12-14 18:10:45 +000065 "PI", "ProcessingInstruction",
66 "QName",
67 "SubElement",
Florent Xiclunaf15351d2010-03-13 23:24:31 +000068 "tostring", "tostringlist",
Armin Rigo9ed73062005-12-14 18:10:45 +000069 "TreeBuilder",
Florent Xiclunaf15351d2010-03-13 23:24:31 +000070 "VERSION",
Florent Xiclunaa72a98f2012-02-13 11:03:30 +010071 "XML", "XMLID",
Thomas Wouters0e3f5912006-08-11 14:57:12 +000072 "XMLParser", "XMLTreeBuilder",
Florent Xiclunaa72a98f2012-02-13 11:03:30 +010073 "register_namespace",
Armin Rigo9ed73062005-12-14 18:10:45 +000074 ]
75
Florent Xiclunaf15351d2010-03-13 23:24:31 +000076VERSION = "1.3.0"
77
Armin Rigo9ed73062005-12-14 18:10:45 +000078##
79# The <b>Element</b> type is a flexible container object, designed to
80# store hierarchical data structures in memory. The type can be
81# described as a cross between a list and a dictionary.
82# <p>
83# Each element has a number of properties associated with it:
84# <ul>
85# <li>a <i>tag</i>. This is a string identifying what kind of data
86# this element represents (the element type, in other words).</li>
87# <li>a number of <i>attributes</i>, stored in a Python dictionary.</li>
88# <li>a <i>text</i> string.</li>
89# <li>an optional <i>tail</i> string.</li>
90# <li>a number of <i>child elements</i>, stored in a Python sequence</li>
91# </ul>
92#
Florent Xiclunaf15351d2010-03-13 23:24:31 +000093# To create an element instance, use the {@link #Element} constructor
94# or the {@link #SubElement} factory function.
Armin Rigo9ed73062005-12-14 18:10:45 +000095# <p>
96# The {@link #ElementTree} class can be used to wrap an element
97# structure, and convert it from and to XML.
98##
99
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000100import sys
101import re
102import warnings
Eli Bendersky00f402b2012-07-15 06:02:22 +0300103import io
104import contextlib
Armin Rigo9ed73062005-12-14 18:10:45 +0000105
Eli Bendersky27cbb192012-06-15 09:03:19 +0300106from . import ElementPath
Armin Rigo9ed73062005-12-14 18:10:45 +0000107
Armin Rigo9ed73062005-12-14 18:10:45 +0000108
109##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000110# Parser error. This is a subclass of <b>SyntaxError</b>.
Armin Rigo9ed73062005-12-14 18:10:45 +0000111# <p>
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000112# In addition to the exception value, an exception instance contains a
113# specific exception code in the <b>code</b> attribute, and the line and
114# column of the error in the <b>position</b> attribute.
115
116class ParseError(SyntaxError):
117 pass
118
119# --------------------------------------------------------------------
120
121##
122# Checks if an object appears to be a valid element object.
Armin Rigo9ed73062005-12-14 18:10:45 +0000123#
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000124# @param An element instance.
125# @return A true value if this is an element object.
126# @defreturn flag
127
128def iselement(element):
Florent Xiclunaa72a98f2012-02-13 11:03:30 +0100129 # FIXME: not sure about this;
130 # isinstance(element, Element) or look for tag/attrib/text attributes
131 return hasattr(element, 'tag')
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000132
133##
134# Element class. This class defines the Element interface, and
135# provides a reference implementation of this interface.
136# <p>
137# The element name, attribute names, and attribute values can be
138# either ASCII strings (ordinary Python strings containing only 7-bit
139# ASCII characters) or Unicode strings.
140#
141# @param tag The element name.
142# @param attrib An optional dictionary, containing element attributes.
143# @param **extra Additional attributes, given as keyword arguments.
Armin Rigo9ed73062005-12-14 18:10:45 +0000144# @see Element
145# @see SubElement
146# @see Comment
147# @see ProcessingInstruction
148
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000149class Element:
Armin Rigo9ed73062005-12-14 18:10:45 +0000150 # <tag attrib>text<child/>...</tag>tail
151
152 ##
153 # (Attribute) Element tag.
154
155 tag = None
156
157 ##
158 # (Attribute) Element attribute dictionary. Where possible, use
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000159 # {@link #Element.get},
160 # {@link #Element.set},
161 # {@link #Element.keys}, and
162 # {@link #Element.items} to access
Armin Rigo9ed73062005-12-14 18:10:45 +0000163 # element attributes.
164
165 attrib = None
166
167 ##
168 # (Attribute) Text before first subelement. This is either a
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000169 # string or the value None. Note that if there was no text, this
170 # attribute may be either None or an empty string, depending on
171 # the parser.
Armin Rigo9ed73062005-12-14 18:10:45 +0000172
173 text = None
174
175 ##
176 # (Attribute) Text after this element's end tag, but before the
177 # next sibling element's start tag. This is either a string or
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000178 # the value None. Note that if there was no text, this attribute
179 # may be either None or an empty string, depending on the parser.
Armin Rigo9ed73062005-12-14 18:10:45 +0000180
181 tail = None # text after end tag, if any
182
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000183 # constructor
184
185 def __init__(self, tag, attrib={}, **extra):
Eli Bendersky737b1732012-05-29 06:02:56 +0300186 if not isinstance(attrib, dict):
187 raise TypeError("attrib must be dict, not %s" % (
188 attrib.__class__.__name__,))
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000189 attrib = attrib.copy()
190 attrib.update(extra)
Armin Rigo9ed73062005-12-14 18:10:45 +0000191 self.tag = tag
192 self.attrib = attrib
193 self._children = []
194
195 def __repr__(self):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000196 return "<Element %s at 0x%x>" % (repr(self.tag), id(self))
Armin Rigo9ed73062005-12-14 18:10:45 +0000197
198 ##
199 # Creates a new element object of the same type as this element.
200 #
201 # @param tag Element tag.
202 # @param attrib Element attributes, given as a dictionary.
203 # @return A new element instance.
204
205 def makeelement(self, tag, attrib):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000206 return self.__class__(tag, attrib)
Armin Rigo9ed73062005-12-14 18:10:45 +0000207
208 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000209 # (Experimental) Copies the current element. This creates a
210 # shallow copy; subelements will be shared with the original tree.
211 #
212 # @return A new element instance.
213
214 def copy(self):
215 elem = self.makeelement(self.tag, self.attrib)
216 elem.text = self.text
217 elem.tail = self.tail
218 elem[:] = self
219 return elem
220
221 ##
222 # Returns the number of subelements. Note that this only counts
223 # full elements; to check if there's any content in an element, you
224 # have to check both the length and the <b>text</b> attribute.
Armin Rigo9ed73062005-12-14 18:10:45 +0000225 #
226 # @return The number of subelements.
227
228 def __len__(self):
229 return len(self._children)
230
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000231 def __bool__(self):
232 warnings.warn(
233 "The behavior of this method will change in future versions. "
234 "Use specific 'len(elem)' or 'elem is not None' test instead.",
235 FutureWarning, stacklevel=2
236 )
237 return len(self._children) != 0 # emulate old behaviour, for now
238
Armin Rigo9ed73062005-12-14 18:10:45 +0000239 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000240 # Returns the given subelement, by index.
Armin Rigo9ed73062005-12-14 18:10:45 +0000241 #
242 # @param index What subelement to return.
243 # @return The given subelement.
244 # @exception IndexError If the given element does not exist.
245
246 def __getitem__(self, index):
247 return self._children[index]
248
249 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000250 # Replaces the given subelement, by index.
Armin Rigo9ed73062005-12-14 18:10:45 +0000251 #
252 # @param index What subelement to replace.
253 # @param element The new element value.
254 # @exception IndexError If the given element does not exist.
Armin Rigo9ed73062005-12-14 18:10:45 +0000255
256 def __setitem__(self, index, element):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000257 # if isinstance(index, slice):
258 # for elt in element:
259 # assert iselement(elt)
260 # else:
261 # assert iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000262 self._children[index] = element
263
264 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000265 # Deletes the given subelement, by index.
Armin Rigo9ed73062005-12-14 18:10:45 +0000266 #
267 # @param index What subelement to delete.
268 # @exception IndexError If the given element does not exist.
269
270 def __delitem__(self, index):
271 del self._children[index]
272
273 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000274 # Adds a subelement to the end of this element. In document order,
275 # the new element will appear after the last existing subelement (or
276 # directly after the text, if it's the first subelement), but before
277 # the end tag for this element.
Armin Rigo9ed73062005-12-14 18:10:45 +0000278 #
279 # @param element The element to add.
Armin Rigo9ed73062005-12-14 18:10:45 +0000280
281 def append(self, element):
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200282 self._assert_is_element(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000283 self._children.append(element)
284
285 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000286 # Appends subelements from a sequence.
287 #
288 # @param elements A sequence object with zero or more elements.
289 # @since 1.3
290
291 def extend(self, elements):
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200292 for element in elements:
293 self._assert_is_element(element)
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000294 self._children.extend(elements)
295
296 ##
Armin Rigo9ed73062005-12-14 18:10:45 +0000297 # Inserts a subelement at the given position in this element.
298 #
299 # @param index Where to insert the new subelement.
Armin Rigo9ed73062005-12-14 18:10:45 +0000300
301 def insert(self, index, element):
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200302 self._assert_is_element(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000303 self._children.insert(index, element)
304
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200305 def _assert_is_element(self, e):
Antoine Pitrouee329312012-10-04 19:53:29 +0200306 # Need to refer to the actual Python implementation, not the
307 # shadowing C implementation.
308 if not isinstance(e, _Element):
Eli Bendersky396e8fc2012-03-23 14:24:20 +0200309 raise TypeError('expected an Element, not %s' % type(e).__name__)
310
Armin Rigo9ed73062005-12-14 18:10:45 +0000311 ##
312 # Removes a matching subelement. Unlike the <b>find</b> methods,
313 # this method compares elements based on identity, not on tag
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000314 # value or contents. To remove subelements by other means, the
315 # easiest way is often to use a list comprehension to select what
316 # elements to keep, and use slice assignment to update the parent
317 # element.
Armin Rigo9ed73062005-12-14 18:10:45 +0000318 #
319 # @param element What element to remove.
320 # @exception ValueError If a matching element could not be found.
Armin Rigo9ed73062005-12-14 18:10:45 +0000321
322 def remove(self, element):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000323 # assert iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000324 self._children.remove(element)
325
326 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000327 # (Deprecated) Returns all subelements. The elements are returned
328 # in document order.
Armin Rigo9ed73062005-12-14 18:10:45 +0000329 #
330 # @return A list of subelements.
331 # @defreturn list of Element instances
332
333 def getchildren(self):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000334 warnings.warn(
335 "This method will be removed in future versions. "
336 "Use 'list(elem)' or iteration over elem instead.",
337 DeprecationWarning, stacklevel=2
338 )
Armin Rigo9ed73062005-12-14 18:10:45 +0000339 return self._children
340
341 ##
342 # Finds the first matching subelement, by tag name or path.
343 #
344 # @param path What element to look for.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000345 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000346 # @return The first matching element, or None if no element was found.
347 # @defreturn Element or None
348
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000349 def find(self, path, namespaces=None):
350 return ElementPath.find(self, path, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000351
352 ##
353 # Finds text for the first matching subelement, by tag name or path.
354 #
355 # @param path What element to look for.
356 # @param default What to return if the element was not found.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000357 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000358 # @return The text content of the first matching element, or the
359 # default value no element was found. Note that if the element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000360 # is found, but has no text content, this method returns an
Armin Rigo9ed73062005-12-14 18:10:45 +0000361 # empty string.
362 # @defreturn string
363
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000364 def findtext(self, path, default=None, namespaces=None):
365 return ElementPath.findtext(self, path, default, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000366
367 ##
368 # Finds all matching subelements, by tag name or path.
369 #
370 # @param path What element to look for.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000371 # @keyparam namespaces Optional namespace prefix map.
372 # @return A list or other sequence containing all matching elements,
Armin Rigo9ed73062005-12-14 18:10:45 +0000373 # in document order.
374 # @defreturn list of Element instances
375
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000376 def findall(self, path, namespaces=None):
377 return ElementPath.findall(self, path, namespaces)
378
379 ##
380 # Finds all matching subelements, by tag name or path.
381 #
382 # @param path What element to look for.
383 # @keyparam namespaces Optional namespace prefix map.
384 # @return An iterator or sequence containing all matching elements,
385 # in document order.
386 # @defreturn a generated sequence of Element instances
387
388 def iterfind(self, path, namespaces=None):
389 return ElementPath.iterfind(self, path, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000390
391 ##
392 # Resets an element. This function removes all subelements, clears
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000393 # all attributes, and sets the <b>text</b> and <b>tail</b> attributes
394 # to None.
Armin Rigo9ed73062005-12-14 18:10:45 +0000395
396 def clear(self):
397 self.attrib.clear()
398 self._children = []
399 self.text = self.tail = None
400
401 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000402 # Gets an element attribute. Equivalent to <b>attrib.get</b>, but
403 # some implementations may handle this a bit more efficiently.
Armin Rigo9ed73062005-12-14 18:10:45 +0000404 #
405 # @param key What attribute to look for.
406 # @param default What to return if the attribute was not found.
407 # @return The attribute value, or the default value, if the
408 # attribute was not found.
409 # @defreturn string or None
410
411 def get(self, key, default=None):
412 return self.attrib.get(key, default)
413
414 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000415 # Sets an element attribute. Equivalent to <b>attrib[key] = value</b>,
416 # but some implementations may handle this a bit more efficiently.
Armin Rigo9ed73062005-12-14 18:10:45 +0000417 #
418 # @param key What attribute to set.
419 # @param value The attribute value.
420
421 def set(self, key, value):
422 self.attrib[key] = value
423
424 ##
425 # Gets a list of attribute names. The names are returned in an
426 # arbitrary order (just like for an ordinary Python dictionary).
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000427 # Equivalent to <b>attrib.keys()</b>.
Armin Rigo9ed73062005-12-14 18:10:45 +0000428 #
429 # @return A list of element attribute names.
430 # @defreturn list of strings
431
432 def keys(self):
433 return self.attrib.keys()
434
435 ##
436 # Gets element attributes, as a sequence. The attributes are
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000437 # returned in an arbitrary order. Equivalent to <b>attrib.items()</b>.
Armin Rigo9ed73062005-12-14 18:10:45 +0000438 #
439 # @return A list of (name, value) tuples for all attributes.
440 # @defreturn list of (string, string) tuples
441
442 def items(self):
443 return self.attrib.items()
444
445 ##
446 # Creates a tree iterator. The iterator loops over this element
447 # and all subelements, in document order, and returns all elements
448 # with a matching tag.
449 # <p>
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000450 # If the tree structure is modified during iteration, new or removed
451 # elements may or may not be included. To get a stable set, use the
452 # list() function on the iterator, and loop over the resulting list.
Armin Rigo9ed73062005-12-14 18:10:45 +0000453 #
454 # @param tag What tags to look for (default is to return all elements).
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000455 # @return An iterator containing all the matching elements.
456 # @defreturn iterator
Armin Rigo9ed73062005-12-14 18:10:45 +0000457
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000458 def iter(self, tag=None):
Armin Rigo9ed73062005-12-14 18:10:45 +0000459 if tag == "*":
460 tag = None
461 if tag is None or self.tag == tag:
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000462 yield self
463 for e in self._children:
464 for e in e.iter(tag):
465 yield e
466
467 # compatibility
468 def getiterator(self, tag=None):
469 # Change for a DeprecationWarning in 1.4
470 warnings.warn(
471 "This method will be removed in future versions. "
472 "Use 'elem.iter()' or 'list(elem.iter())' instead.",
473 PendingDeprecationWarning, stacklevel=2
474 )
475 return list(self.iter(tag))
476
477 ##
478 # Creates a text iterator. The iterator loops over this element
479 # and all subelements, in document order, and returns all inner
480 # text.
481 #
482 # @return An iterator containing all inner text.
483 # @defreturn iterator
484
485 def itertext(self):
486 tag = self.tag
487 if not isinstance(tag, str) and tag is not None:
488 return
489 if self.text:
490 yield self.text
491 for e in self:
492 for s in e.itertext():
493 yield s
494 if e.tail:
495 yield e.tail
Armin Rigo9ed73062005-12-14 18:10:45 +0000496
497# compatibility
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000498_Element = _ElementInterface = Element
Armin Rigo9ed73062005-12-14 18:10:45 +0000499
500##
501# Subelement factory. This function creates an element instance, and
502# appends it to an existing element.
503# <p>
504# The element name, attribute names, and attribute values can be
505# either 8-bit ASCII strings or Unicode strings.
506#
507# @param parent The parent element.
508# @param tag The subelement name.
509# @param attrib An optional dictionary, containing element attributes.
510# @param **extra Additional attributes, given as keyword arguments.
511# @return An element instance.
512# @defreturn Element
513
514def SubElement(parent, tag, attrib={}, **extra):
515 attrib = attrib.copy()
516 attrib.update(extra)
517 element = parent.makeelement(tag, attrib)
518 parent.append(element)
519 return element
520
521##
522# Comment element factory. This factory function creates a special
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000523# element that will be serialized as an XML comment by the standard
524# serializer.
Armin Rigo9ed73062005-12-14 18:10:45 +0000525# <p>
526# The comment string can be either an 8-bit ASCII string or a Unicode
527# string.
528#
529# @param text A string containing the comment string.
530# @return An element instance, representing a comment.
531# @defreturn Element
532
533def Comment(text=None):
534 element = Element(Comment)
535 element.text = text
536 return element
537
538##
539# PI element factory. This factory function creates a special element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000540# that will be serialized as an XML processing instruction by the standard
541# serializer.
Armin Rigo9ed73062005-12-14 18:10:45 +0000542#
543# @param target A string containing the PI target.
544# @param text A string containing the PI contents, if any.
545# @return An element instance, representing a PI.
546# @defreturn Element
547
548def ProcessingInstruction(target, text=None):
549 element = Element(ProcessingInstruction)
550 element.text = target
551 if text:
552 element.text = element.text + " " + text
553 return element
554
555PI = ProcessingInstruction
556
557##
558# QName wrapper. This can be used to wrap a QName attribute value, in
559# order to get proper namespace handling on output.
560#
561# @param text A string containing the QName value, in the form {uri}local,
562# or, if the tag argument is given, the URI part of a QName.
563# @param tag Optional tag. If given, the first argument is interpreted as
564# an URI, and this argument is interpreted as a local name.
565# @return An opaque object, representing the QName.
566
567class QName:
568 def __init__(self, text_or_uri, tag=None):
569 if tag:
570 text_or_uri = "{%s}%s" % (text_or_uri, tag)
571 self.text = text_or_uri
572 def __str__(self):
573 return self.text
Georg Brandlb56c0e22010-12-09 18:10:27 +0000574 def __repr__(self):
Georg Brandlc95c9182010-12-09 18:26:02 +0000575 return '<QName %r>' % (self.text,)
Armin Rigo9ed73062005-12-14 18:10:45 +0000576 def __hash__(self):
577 return hash(self.text)
Mark Dickinsona56c4672009-01-27 18:17:45 +0000578 def __le__(self, other):
Armin Rigo9ed73062005-12-14 18:10:45 +0000579 if isinstance(other, QName):
Mark Dickinsona56c4672009-01-27 18:17:45 +0000580 return self.text <= other.text
581 return self.text <= other
582 def __lt__(self, other):
583 if isinstance(other, QName):
584 return self.text < other.text
585 return self.text < other
586 def __ge__(self, other):
587 if isinstance(other, QName):
588 return self.text >= other.text
589 return self.text >= other
590 def __gt__(self, other):
591 if isinstance(other, QName):
592 return self.text > other.text
593 return self.text > other
594 def __eq__(self, other):
595 if isinstance(other, QName):
596 return self.text == other.text
597 return self.text == other
598 def __ne__(self, other):
599 if isinstance(other, QName):
600 return self.text != other.text
601 return self.text != other
Armin Rigo9ed73062005-12-14 18:10:45 +0000602
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000603# --------------------------------------------------------------------
604
Armin Rigo9ed73062005-12-14 18:10:45 +0000605##
606# ElementTree wrapper class. This class represents an entire element
607# hierarchy, and adds some extra support for serialization to and from
608# standard XML.
609#
610# @param element Optional root element.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000611# @keyparam file Optional file handle or file name. If given, the
Armin Rigo9ed73062005-12-14 18:10:45 +0000612# tree is initialized with the contents of this XML file.
613
614class ElementTree:
615
616 def __init__(self, element=None, file=None):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000617 # assert element is None or iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000618 self._root = element # first node
619 if file:
620 self.parse(file)
621
622 ##
623 # Gets the root element for this tree.
624 #
625 # @return An element instance.
626 # @defreturn Element
627
628 def getroot(self):
629 return self._root
630
631 ##
632 # Replaces the root element for this tree. This discards the
633 # current contents of the tree, and replaces it with the given
634 # element. Use with care.
635 #
636 # @param element An element instance.
637
638 def _setroot(self, element):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000639 # assert iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000640 self._root = element
641
642 ##
643 # Loads an external XML document into this element tree.
644 #
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000645 # @param source A file name or file object. If a file object is
646 # given, it only has to implement a <b>read(n)</b> method.
647 # @keyparam parser An optional parser instance. If not given, the
648 # standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +0000649 # @return The document root element.
650 # @defreturn Element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000651 # @exception ParseError If the parser fails to parse the document.
Armin Rigo9ed73062005-12-14 18:10:45 +0000652
653 def parse(self, source, parser=None):
Antoine Pitroue033e062010-10-29 10:38:18 +0000654 close_source = False
Armin Rigo9ed73062005-12-14 18:10:45 +0000655 if not hasattr(source, "read"):
656 source = open(source, "rb")
Antoine Pitroue033e062010-10-29 10:38:18 +0000657 close_source = True
658 try:
659 if not parser:
660 parser = XMLParser(target=TreeBuilder())
661 while 1:
662 data = source.read(65536)
663 if not data:
664 break
665 parser.feed(data)
666 self._root = parser.close()
667 return self._root
668 finally:
669 if close_source:
670 source.close()
Armin Rigo9ed73062005-12-14 18:10:45 +0000671
672 ##
673 # Creates a tree iterator for the root element. The iterator loops
674 # over all elements in this tree, in document order.
675 #
676 # @param tag What tags to look for (default is to return all elements)
677 # @return An iterator.
678 # @defreturn iterator
679
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000680 def iter(self, tag=None):
681 # assert self._root is not None
682 return self._root.iter(tag)
683
684 # compatibility
Armin Rigo9ed73062005-12-14 18:10:45 +0000685 def getiterator(self, tag=None):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000686 # Change for a DeprecationWarning in 1.4
687 warnings.warn(
688 "This method will be removed in future versions. "
689 "Use 'tree.iter()' or 'list(tree.iter())' instead.",
690 PendingDeprecationWarning, stacklevel=2
691 )
692 return list(self.iter(tag))
Armin Rigo9ed73062005-12-14 18:10:45 +0000693
694 ##
695 # Finds the first toplevel element with given tag.
696 # Same as getroot().find(path).
697 #
698 # @param path What element to look for.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000699 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000700 # @return The first matching element, or None if no element was found.
701 # @defreturn Element or None
702
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000703 def find(self, path, namespaces=None):
704 # assert self._root is not None
Armin Rigo9ed73062005-12-14 18:10:45 +0000705 if path[:1] == "/":
706 path = "." + path
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000707 warnings.warn(
708 "This search is broken in 1.3 and earlier, and will be "
709 "fixed in a future version. If you rely on the current "
710 "behaviour, change it to %r" % path,
711 FutureWarning, stacklevel=2
712 )
713 return self._root.find(path, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000714
715 ##
716 # Finds the element text for the first toplevel element with given
717 # tag. Same as getroot().findtext(path).
718 #
719 # @param path What toplevel element to look for.
720 # @param default What to return if the element was not found.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000721 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000722 # @return The text content of the first matching element, or the
723 # default value no element was found. Note that if the element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000724 # is found, but has no text content, this method returns an
Armin Rigo9ed73062005-12-14 18:10:45 +0000725 # empty string.
726 # @defreturn string
727
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000728 def findtext(self, path, default=None, namespaces=None):
729 # assert self._root is not None
Armin Rigo9ed73062005-12-14 18:10:45 +0000730 if path[:1] == "/":
731 path = "." + path
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000732 warnings.warn(
733 "This search is broken in 1.3 and earlier, and will be "
734 "fixed in a future version. If you rely on the current "
735 "behaviour, change it to %r" % path,
736 FutureWarning, stacklevel=2
737 )
738 return self._root.findtext(path, default, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000739
740 ##
741 # Finds all toplevel elements with the given tag.
742 # Same as getroot().findall(path).
743 #
744 # @param path What element to look for.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000745 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000746 # @return A list or iterator containing all matching elements,
747 # in document order.
748 # @defreturn list of Element instances
749
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000750 def findall(self, path, namespaces=None):
751 # assert self._root is not None
Armin Rigo9ed73062005-12-14 18:10:45 +0000752 if path[:1] == "/":
753 path = "." + path
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000754 warnings.warn(
755 "This search is broken in 1.3 and earlier, and will be "
756 "fixed in a future version. If you rely on the current "
757 "behaviour, change it to %r" % path,
758 FutureWarning, stacklevel=2
759 )
760 return self._root.findall(path, namespaces)
761
762 ##
763 # Finds all matching subelements, by tag name or path.
764 # Same as getroot().iterfind(path).
765 #
766 # @param path What element to look for.
767 # @keyparam namespaces Optional namespace prefix map.
768 # @return An iterator or sequence containing all matching elements,
769 # in document order.
770 # @defreturn a generated sequence of Element instances
771
772 def iterfind(self, path, namespaces=None):
773 # assert self._root is not None
774 if path[:1] == "/":
775 path = "." + path
776 warnings.warn(
777 "This search is broken in 1.3 and earlier, and will be "
778 "fixed in a future version. If you rely on the current "
779 "behaviour, change it to %r" % path,
780 FutureWarning, stacklevel=2
781 )
782 return self._root.iterfind(path, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000783
784 ##
785 # Writes the element tree to a file, as XML.
786 #
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000787 # @def write(file, **options)
Armin Rigo9ed73062005-12-14 18:10:45 +0000788 # @param file A file name, or a file object opened for writing.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000789 # @param **options Options, given as keyword arguments.
Florent Xiclunac17f1722010-08-08 19:48:29 +0000790 # @keyparam encoding Optional output encoding (default is US-ASCII).
791 # Use "unicode" to return a Unicode string.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000792 # @keyparam method Optional output method ("xml", "html", "text" or
793 # "c14n"; default is "xml").
794 # @keyparam xml_declaration Controls if an XML declaration should
795 # be added to the file. Use False for never, True for always,
Florent Xiclunac17f1722010-08-08 19:48:29 +0000796 # None for only if not US-ASCII or UTF-8 or Unicode. None is default.
Armin Rigo9ed73062005-12-14 18:10:45 +0000797
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000798 def write(self, file_or_filename,
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000799 encoding=None,
800 xml_declaration=None,
801 default_namespace=None,
802 method=None):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000803 if not method:
804 method = "xml"
805 elif method not in _serialize:
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000806 raise ValueError("unknown method %r" % method)
Florent Xiclunac17f1722010-08-08 19:48:29 +0000807 if not encoding:
808 if method == "c14n":
809 encoding = "utf-8"
810 else:
811 encoding = "us-ascii"
Florent Xiclunac17f1722010-08-08 19:48:29 +0000812 else:
813 encoding = encoding.lower()
Eli Bendersky00f402b2012-07-15 06:02:22 +0300814 with _get_writer(file_or_filename, encoding) as write:
815 if method == "xml" and (xml_declaration or
816 (xml_declaration is None and
817 encoding not in ("utf-8", "us-ascii", "unicode"))):
818 declared_encoding = encoding
819 if encoding == "unicode":
820 # Retrieve the default encoding for the xml declaration
821 import locale
822 declared_encoding = locale.getpreferredencoding()
823 write("<?xml version='1.0' encoding='%s'?>\n" % (
824 declared_encoding,))
825 if method == "text":
826 _serialize_text(write, self._root)
Armin Rigo9ed73062005-12-14 18:10:45 +0000827 else:
Eli Bendersky00f402b2012-07-15 06:02:22 +0300828 qnames, namespaces = _namespaces(self._root, default_namespace)
829 serialize = _serialize[method]
830 serialize(write, self._root, qnames, namespaces)
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000831
832 def write_c14n(self, file):
833 # lxml.etree compatibility. use output method instead
834 return self.write(file, method="c14n")
Armin Rigo9ed73062005-12-14 18:10:45 +0000835
836# --------------------------------------------------------------------
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000837# serialization support
838
Eli Bendersky00f402b2012-07-15 06:02:22 +0300839@contextlib.contextmanager
840def _get_writer(file_or_filename, encoding):
841 # returns text write method and release all resourses after using
842 try:
843 write = file_or_filename.write
844 except AttributeError:
845 # file_or_filename is a file name
846 if encoding == "unicode":
847 file = open(file_or_filename, "w")
848 else:
849 file = open(file_or_filename, "w", encoding=encoding,
850 errors="xmlcharrefreplace")
851 with file:
852 yield file.write
853 else:
854 # file_or_filename is a file-like object
855 # encoding determines if it is a text or binary writer
856 if encoding == "unicode":
857 # use a text writer as is
858 yield write
859 else:
860 # wrap a binary writer with TextIOWrapper
861 with contextlib.ExitStack() as stack:
862 if isinstance(file_or_filename, io.BufferedIOBase):
863 file = file_or_filename
864 elif isinstance(file_or_filename, io.RawIOBase):
865 file = io.BufferedWriter(file_or_filename)
866 # Keep the original file open when the BufferedWriter is
867 # destroyed
868 stack.callback(file.detach)
869 else:
870 # This is to handle passed objects that aren't in the
871 # IOBase hierarchy, but just have a write method
872 file = io.BufferedIOBase()
873 file.writable = lambda: True
874 file.write = write
875 try:
876 # TextIOWrapper uses this methods to determine
877 # if BOM (for UTF-16, etc) should be added
878 file.seekable = file_or_filename.seekable
879 file.tell = file_or_filename.tell
880 except AttributeError:
881 pass
882 file = io.TextIOWrapper(file,
883 encoding=encoding,
884 errors="xmlcharrefreplace",
885 newline="\n")
886 # Keep the original file open when the TextIOWrapper is
887 # destroyed
888 stack.callback(file.detach)
889 yield file.write
890
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000891def _namespaces(elem, default_namespace=None):
892 # identify namespaces used in this tree
893
894 # maps qnames to *encoded* prefix:local names
895 qnames = {None: None}
896
897 # maps uri:s to prefixes
898 namespaces = {}
899 if default_namespace:
900 namespaces[default_namespace] = ""
901
902 def add_qname(qname):
903 # calculate serialized qname representation
904 try:
905 if qname[:1] == "{":
906 uri, tag = qname[1:].rsplit("}", 1)
907 prefix = namespaces.get(uri)
908 if prefix is None:
909 prefix = _namespace_map.get(uri)
910 if prefix is None:
911 prefix = "ns%d" % len(namespaces)
912 if prefix != "xml":
913 namespaces[uri] = prefix
914 if prefix:
915 qnames[qname] = "%s:%s" % (prefix, tag)
916 else:
917 qnames[qname] = tag # default element
918 else:
919 if default_namespace:
920 # FIXME: can this be handled in XML 1.0?
921 raise ValueError(
922 "cannot use non-qualified names with "
923 "default_namespace option"
924 )
925 qnames[qname] = qname
926 except TypeError:
927 _raise_serialization_error(qname)
928
929 # populate qname and namespaces table
Eli Bendersky64d11e62012-06-15 07:42:50 +0300930 for elem in elem.iter():
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000931 tag = elem.tag
Senthil Kumaranec30b3d2010-11-09 02:36:59 +0000932 if isinstance(tag, QName):
933 if tag.text not in qnames:
934 add_qname(tag.text)
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000935 elif isinstance(tag, str):
936 if tag not in qnames:
937 add_qname(tag)
938 elif tag is not None and tag is not Comment and tag is not PI:
939 _raise_serialization_error(tag)
940 for key, value in elem.items():
941 if isinstance(key, QName):
942 key = key.text
943 if key not in qnames:
944 add_qname(key)
945 if isinstance(value, QName) and value.text not in qnames:
946 add_qname(value.text)
947 text = elem.text
948 if isinstance(text, QName) and text.text not in qnames:
949 add_qname(text.text)
950 return qnames, namespaces
951
952def _serialize_xml(write, elem, qnames, namespaces):
953 tag = elem.tag
954 text = elem.text
955 if tag is Comment:
956 write("<!--%s-->" % text)
957 elif tag is ProcessingInstruction:
958 write("<?%s?>" % text)
959 else:
960 tag = qnames[tag]
961 if tag is None:
962 if text:
963 write(_escape_cdata(text))
964 for e in elem:
965 _serialize_xml(write, e, qnames, None)
966 else:
967 write("<" + tag)
968 items = list(elem.items())
969 if items or namespaces:
970 if namespaces:
971 for v, k in sorted(namespaces.items(),
972 key=lambda x: x[1]): # sort on prefix
973 if k:
974 k = ":" + k
975 write(" xmlns%s=\"%s\"" % (
976 k,
977 _escape_attrib(v)
978 ))
979 for k, v in sorted(items): # lexical order
980 if isinstance(k, QName):
981 k = k.text
982 if isinstance(v, QName):
983 v = qnames[v.text]
984 else:
985 v = _escape_attrib(v)
986 write(" %s=\"%s\"" % (qnames[k], v))
987 if text or len(elem):
988 write(">")
989 if text:
990 write(_escape_cdata(text))
991 for e in elem:
992 _serialize_xml(write, e, qnames, None)
993 write("</" + tag + ">")
994 else:
995 write(" />")
996 if elem.tail:
997 write(_escape_cdata(elem.tail))
998
999HTML_EMPTY = ("area", "base", "basefont", "br", "col", "frame", "hr",
Ezio Melottic90111f2012-09-19 08:19:12 +03001000 "img", "input", "isindex", "link", "meta", "param")
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001001
1002try:
1003 HTML_EMPTY = set(HTML_EMPTY)
1004except NameError:
1005 pass
1006
1007def _serialize_html(write, elem, qnames, namespaces):
1008 tag = elem.tag
1009 text = elem.text
1010 if tag is Comment:
1011 write("<!--%s-->" % _escape_cdata(text))
1012 elif tag is ProcessingInstruction:
1013 write("<?%s?>" % _escape_cdata(text))
1014 else:
1015 tag = qnames[tag]
1016 if tag is None:
1017 if text:
1018 write(_escape_cdata(text))
1019 for e in elem:
1020 _serialize_html(write, e, qnames, None)
1021 else:
1022 write("<" + tag)
1023 items = list(elem.items())
1024 if items or namespaces:
1025 if namespaces:
1026 for v, k in sorted(namespaces.items(),
1027 key=lambda x: x[1]): # sort on prefix
1028 if k:
1029 k = ":" + k
1030 write(" xmlns%s=\"%s\"" % (
1031 k,
1032 _escape_attrib(v)
1033 ))
1034 for k, v in sorted(items): # lexical order
1035 if isinstance(k, QName):
1036 k = k.text
1037 if isinstance(v, QName):
1038 v = qnames[v.text]
1039 else:
1040 v = _escape_attrib_html(v)
1041 # FIXME: handle boolean attributes
1042 write(" %s=\"%s\"" % (qnames[k], v))
1043 write(">")
1044 tag = tag.lower()
1045 if text:
1046 if tag == "script" or tag == "style":
1047 write(text)
1048 else:
1049 write(_escape_cdata(text))
1050 for e in elem:
1051 _serialize_html(write, e, qnames, None)
1052 if tag not in HTML_EMPTY:
1053 write("</" + tag + ">")
1054 if elem.tail:
1055 write(_escape_cdata(elem.tail))
1056
1057def _serialize_text(write, elem):
1058 for part in elem.itertext():
1059 write(part)
1060 if elem.tail:
1061 write(elem.tail)
1062
1063_serialize = {
1064 "xml": _serialize_xml,
1065 "html": _serialize_html,
1066 "text": _serialize_text,
1067# this optional method is imported at the end of the module
1068# "c14n": _serialize_c14n,
1069}
Armin Rigo9ed73062005-12-14 18:10:45 +00001070
1071##
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001072# Registers a namespace prefix. The registry is global, and any
1073# existing mapping for either the given prefix or the namespace URI
1074# will be removed.
Armin Rigo9ed73062005-12-14 18:10:45 +00001075#
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001076# @param prefix Namespace prefix.
1077# @param uri Namespace uri. Tags and attributes in this namespace
1078# will be serialized with the given prefix, if at all possible.
1079# @exception ValueError If the prefix is reserved, or is otherwise
1080# invalid.
Armin Rigo9ed73062005-12-14 18:10:45 +00001081
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001082def register_namespace(prefix, uri):
1083 if re.match("ns\d+$", prefix):
1084 raise ValueError("Prefix format reserved for internal use")
Georg Brandl90b20672010-12-28 10:38:33 +00001085 for k, v in list(_namespace_map.items()):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001086 if k == uri or v == prefix:
1087 del _namespace_map[k]
1088 _namespace_map[uri] = prefix
1089
1090_namespace_map = {
1091 # "well-known" namespace prefixes
1092 "http://www.w3.org/XML/1998/namespace": "xml",
1093 "http://www.w3.org/1999/xhtml": "html",
1094 "http://www.w3.org/1999/02/22-rdf-syntax-ns#": "rdf",
1095 "http://schemas.xmlsoap.org/wsdl/": "wsdl",
1096 # xml schema
1097 "http://www.w3.org/2001/XMLSchema": "xs",
1098 "http://www.w3.org/2001/XMLSchema-instance": "xsi",
1099 # dublin core
1100 "http://purl.org/dc/elements/1.1/": "dc",
1101}
Florent Xicluna16395052012-02-16 23:28:35 +01001102# For tests and troubleshooting
1103register_namespace._namespace_map = _namespace_map
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001104
1105def _raise_serialization_error(text):
1106 raise TypeError(
1107 "cannot serialize %r (type %s)" % (text, type(text).__name__)
1108 )
1109
1110def _escape_cdata(text):
1111 # escape character data
1112 try:
1113 # it's worth avoiding do-nothing calls for strings that are
1114 # shorter than 500 character, or so. assume that's, by far,
1115 # the most common case in most applications.
1116 if "&" in text:
1117 text = text.replace("&", "&amp;")
1118 if "<" in text:
1119 text = text.replace("<", "&lt;")
1120 if ">" in text:
1121 text = text.replace(">", "&gt;")
1122 return text
1123 except (TypeError, AttributeError):
1124 _raise_serialization_error(text)
1125
1126def _escape_attrib(text):
1127 # escape attribute value
1128 try:
1129 if "&" in text:
1130 text = text.replace("&", "&amp;")
1131 if "<" in text:
1132 text = text.replace("<", "&lt;")
1133 if ">" in text:
1134 text = text.replace(">", "&gt;")
1135 if "\"" in text:
1136 text = text.replace("\"", "&quot;")
1137 if "\n" in text:
1138 text = text.replace("\n", "&#10;")
1139 return text
1140 except (TypeError, AttributeError):
1141 _raise_serialization_error(text)
1142
1143def _escape_attrib_html(text):
1144 # escape attribute value
1145 try:
1146 if "&" in text:
1147 text = text.replace("&", "&amp;")
1148 if ">" in text:
1149 text = text.replace(">", "&gt;")
1150 if "\"" in text:
1151 text = text.replace("\"", "&quot;")
1152 return text
1153 except (TypeError, AttributeError):
1154 _raise_serialization_error(text)
1155
1156# --------------------------------------------------------------------
1157
1158##
1159# Generates a string representation of an XML element, including all
Florent Xiclunac17f1722010-08-08 19:48:29 +00001160# subelements. If encoding is "unicode", the return type is a string;
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001161# otherwise it is a bytes array.
1162#
1163# @param element An Element instance.
Florent Xiclunac17f1722010-08-08 19:48:29 +00001164# @keyparam encoding Optional output encoding (default is US-ASCII).
1165# Use "unicode" to return a Unicode string.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001166# @keyparam method Optional output method ("xml", "html", "text" or
1167# "c14n"; default is "xml").
1168# @return An (optionally) encoded string containing the XML data.
1169# @defreturn string
1170
1171def tostring(element, encoding=None, method=None):
Eli Bendersky00f402b2012-07-15 06:02:22 +03001172 stream = io.StringIO() if encoding == 'unicode' else io.BytesIO()
1173 ElementTree(element).write(stream, encoding, method=method)
1174 return stream.getvalue()
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001175
1176##
1177# Generates a string representation of an XML element, including all
Eli Bendersky00f402b2012-07-15 06:02:22 +03001178# subelements.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001179#
1180# @param element An Element instance.
1181# @keyparam encoding Optional output encoding (default is US-ASCII).
Florent Xiclunac17f1722010-08-08 19:48:29 +00001182# Use "unicode" to return a Unicode string.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001183# @keyparam method Optional output method ("xml", "html", "text" or
1184# "c14n"; default is "xml").
1185# @return A sequence object containing the XML data.
1186# @defreturn sequence
1187# @since 1.3
1188
Eli Bendersky43cc5f22012-07-17 15:09:12 +03001189class _ListDataStream(io.BufferedIOBase):
1190 """ An auxiliary stream accumulating into a list reference
1191 """
1192 def __init__(self, lst):
1193 self.lst = lst
Eli Benderskyf90fc682012-07-17 15:09:56 +03001194
Eli Bendersky43cc5f22012-07-17 15:09:12 +03001195 def writable(self):
1196 return True
1197
1198 def seekable(self):
1199 return True
1200
1201 def write(self, b):
1202 self.lst.append(b)
1203
1204 def tell(self):
1205 return len(self.lst)
1206
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001207def tostringlist(element, encoding=None, method=None):
Eli Bendersky43cc5f22012-07-17 15:09:12 +03001208 lst = []
1209 stream = _ListDataStream(lst)
1210 ElementTree(element).write(stream, encoding, method=method)
1211 return lst
Armin Rigo9ed73062005-12-14 18:10:45 +00001212
1213##
1214# Writes an element tree or element structure to sys.stdout. This
1215# function should be used for debugging only.
1216# <p>
1217# The exact output format is implementation dependent. In this
1218# version, it's written as an ordinary XML file.
1219#
1220# @param elem An element tree or an individual element.
1221
1222def dump(elem):
1223 # debugging
1224 if not isinstance(elem, ElementTree):
1225 elem = ElementTree(elem)
Florent Xiclunac17f1722010-08-08 19:48:29 +00001226 elem.write(sys.stdout, encoding="unicode")
Armin Rigo9ed73062005-12-14 18:10:45 +00001227 tail = elem.getroot().tail
1228 if not tail or tail[-1] != "\n":
1229 sys.stdout.write("\n")
1230
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001231# --------------------------------------------------------------------
1232# parsing
Armin Rigo9ed73062005-12-14 18:10:45 +00001233
1234##
1235# Parses an XML document into an element tree.
1236#
1237# @param source A filename or file object containing XML data.
1238# @param parser An optional parser instance. If not given, the
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001239# standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +00001240# @return An ElementTree instance
1241
1242def parse(source, parser=None):
1243 tree = ElementTree()
1244 tree.parse(source, parser)
1245 return tree
1246
1247##
1248# Parses an XML document into an element tree incrementally, and reports
1249# what's going on to the user.
1250#
1251# @param source A filename or file object containing XML data.
1252# @param events A list of events to report back. If omitted, only "end"
1253# events are reported.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001254# @param parser An optional parser instance. If not given, the
1255# standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +00001256# @return A (event, elem) iterator.
1257
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001258def iterparse(source, events=None, parser=None):
Antoine Pitroue033e062010-10-29 10:38:18 +00001259 close_source = False
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001260 if not hasattr(source, "read"):
1261 source = open(source, "rb")
Antoine Pitroue033e062010-10-29 10:38:18 +00001262 close_source = True
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001263 if not parser:
1264 parser = XMLParser(target=TreeBuilder())
Antoine Pitroue033e062010-10-29 10:38:18 +00001265 return _IterParseIterator(source, events, parser, close_source)
Armin Rigo9ed73062005-12-14 18:10:45 +00001266
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001267class _IterParseIterator:
1268
Antoine Pitroue033e062010-10-29 10:38:18 +00001269 def __init__(self, source, events, parser, close_source=False):
Armin Rigo9ed73062005-12-14 18:10:45 +00001270 self._file = source
Antoine Pitroue033e062010-10-29 10:38:18 +00001271 self._close_file = close_source
Armin Rigo9ed73062005-12-14 18:10:45 +00001272 self._events = []
1273 self._index = 0
Florent Xicluna91d51932011-11-01 23:31:09 +01001274 self._error = None
Armin Rigo9ed73062005-12-14 18:10:45 +00001275 self.root = self._root = None
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001276 self._parser = parser
Armin Rigo9ed73062005-12-14 18:10:45 +00001277 # wire up the parser for event reporting
1278 parser = self._parser._parser
1279 append = self._events.append
1280 if events is None:
1281 events = ["end"]
1282 for event in events:
1283 if event == "start":
1284 try:
1285 parser.ordered_attributes = 1
1286 parser.specified_attributes = 1
1287 def handler(tag, attrib_in, event=event, append=append,
1288 start=self._parser._start_list):
1289 append((event, start(tag, attrib_in)))
1290 parser.StartElementHandler = handler
1291 except AttributeError:
1292 def handler(tag, attrib_in, event=event, append=append,
1293 start=self._parser._start):
1294 append((event, start(tag, attrib_in)))
1295 parser.StartElementHandler = handler
1296 elif event == "end":
1297 def handler(tag, event=event, append=append,
1298 end=self._parser._end):
1299 append((event, end(tag)))
1300 parser.EndElementHandler = handler
1301 elif event == "start-ns":
1302 def handler(prefix, uri, event=event, append=append):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001303 append((event, (prefix or "", uri or "")))
Armin Rigo9ed73062005-12-14 18:10:45 +00001304 parser.StartNamespaceDeclHandler = handler
1305 elif event == "end-ns":
1306 def handler(prefix, event=event, append=append):
1307 append((event, None))
1308 parser.EndNamespaceDeclHandler = handler
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001309 else:
1310 raise ValueError("unknown event %r" % event)
Armin Rigo9ed73062005-12-14 18:10:45 +00001311
Georg Brandla18af4e2007-04-21 15:47:16 +00001312 def __next__(self):
Armin Rigo9ed73062005-12-14 18:10:45 +00001313 while 1:
1314 try:
1315 item = self._events[self._index]
Florent Xicluna91d51932011-11-01 23:31:09 +01001316 self._index += 1
Armin Rigo9ed73062005-12-14 18:10:45 +00001317 return item
Florent Xicluna91d51932011-11-01 23:31:09 +01001318 except IndexError:
1319 pass
1320 if self._error:
1321 e = self._error
1322 self._error = None
1323 raise e
1324 if self._parser is None:
1325 self.root = self._root
1326 if self._close_file:
1327 self._file.close()
1328 raise StopIteration
1329 # load event buffer
1330 del self._events[:]
1331 self._index = 0
1332 data = self._file.read(16384)
1333 if data:
1334 try:
1335 self._parser.feed(data)
1336 except SyntaxError as exc:
1337 self._error = exc
1338 else:
1339 self._root = self._parser.close()
1340 self._parser = None
Armin Rigo9ed73062005-12-14 18:10:45 +00001341
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001342 def __iter__(self):
1343 return self
Armin Rigo9ed73062005-12-14 18:10:45 +00001344
1345##
1346# Parses an XML document from a string constant. This function can
1347# be used to embed "XML literals" in Python code.
1348#
1349# @param source A string containing XML data.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001350# @param parser An optional parser instance. If not given, the
1351# standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +00001352# @return An Element instance.
1353# @defreturn Element
1354
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001355def XML(text, parser=None):
1356 if not parser:
1357 parser = XMLParser(target=TreeBuilder())
Armin Rigo9ed73062005-12-14 18:10:45 +00001358 parser.feed(text)
1359 return parser.close()
1360
1361##
1362# Parses an XML document from a string constant, and also returns
1363# a dictionary which maps from element id:s to elements.
1364#
1365# @param source A string containing XML data.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001366# @param parser An optional parser instance. If not given, the
1367# standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +00001368# @return A tuple containing an Element instance and a dictionary.
1369# @defreturn (Element, dictionary)
1370
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001371def XMLID(text, parser=None):
1372 if not parser:
1373 parser = XMLParser(target=TreeBuilder())
Armin Rigo9ed73062005-12-14 18:10:45 +00001374 parser.feed(text)
1375 tree = parser.close()
1376 ids = {}
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001377 for elem in tree.iter():
Armin Rigo9ed73062005-12-14 18:10:45 +00001378 id = elem.get("id")
1379 if id:
1380 ids[id] = elem
1381 return tree, ids
1382
1383##
1384# Parses an XML document from a string constant. Same as {@link #XML}.
1385#
1386# @def fromstring(text)
1387# @param source A string containing XML data.
1388# @return An Element instance.
1389# @defreturn Element
1390
1391fromstring = XML
1392
1393##
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001394# Parses an XML document from a sequence of string fragments.
Armin Rigo9ed73062005-12-14 18:10:45 +00001395#
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001396# @param sequence A list or other sequence containing XML data fragments.
1397# @param parser An optional parser instance. If not given, the
1398# standard {@link XMLParser} parser is used.
1399# @return An Element instance.
1400# @defreturn Element
1401# @since 1.3
Armin Rigo9ed73062005-12-14 18:10:45 +00001402
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001403def fromstringlist(sequence, parser=None):
1404 if not parser:
1405 parser = XMLParser(target=TreeBuilder())
1406 for text in sequence:
1407 parser.feed(text)
1408 return parser.close()
1409
1410# --------------------------------------------------------------------
Armin Rigo9ed73062005-12-14 18:10:45 +00001411
1412##
1413# Generic element structure builder. This builder converts a sequence
1414# of {@link #TreeBuilder.start}, {@link #TreeBuilder.data}, and {@link
1415# #TreeBuilder.end} method calls to a well-formed element structure.
1416# <p>
1417# You can use this class to build an element structure using a custom XML
1418# parser, or a parser for some other XML-like format.
1419#
1420# @param element_factory Optional element factory. This factory
1421# is called to create new Element instances, as necessary.
1422
1423class TreeBuilder:
1424
1425 def __init__(self, element_factory=None):
1426 self._data = [] # data collector
1427 self._elem = [] # element stack
1428 self._last = None # last element
1429 self._tail = None # true if we're after an end tag
1430 if element_factory is None:
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001431 element_factory = Element
Armin Rigo9ed73062005-12-14 18:10:45 +00001432 self._factory = element_factory
1433
1434 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001435 # Flushes the builder buffers, and returns the toplevel document
Armin Rigo9ed73062005-12-14 18:10:45 +00001436 # element.
1437 #
1438 # @return An Element instance.
1439 # @defreturn Element
1440
1441 def close(self):
1442 assert len(self._elem) == 0, "missing end tags"
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001443 assert self._last is not None, "missing toplevel element"
Armin Rigo9ed73062005-12-14 18:10:45 +00001444 return self._last
1445
1446 def _flush(self):
1447 if self._data:
1448 if self._last is not None:
Neal Norwitz9d72bb42007-04-17 08:48:32 +00001449 text = "".join(self._data)
Armin Rigo9ed73062005-12-14 18:10:45 +00001450 if self._tail:
1451 assert self._last.tail is None, "internal error (tail)"
1452 self._last.tail = text
1453 else:
1454 assert self._last.text is None, "internal error (text)"
1455 self._last.text = text
1456 self._data = []
1457
1458 ##
1459 # Adds text to the current element.
1460 #
1461 # @param data A string. This should be either an 8-bit string
1462 # containing ASCII text, or a Unicode string.
1463
1464 def data(self, data):
1465 self._data.append(data)
1466
1467 ##
1468 # Opens a new element.
1469 #
1470 # @param tag The element name.
1471 # @param attrib A dictionary containing element attributes.
1472 # @return The opened element.
1473 # @defreturn Element
1474
1475 def start(self, tag, attrs):
1476 self._flush()
1477 self._last = elem = self._factory(tag, attrs)
1478 if self._elem:
1479 self._elem[-1].append(elem)
1480 self._elem.append(elem)
1481 self._tail = 0
1482 return elem
1483
1484 ##
1485 # Closes the current element.
1486 #
1487 # @param tag The element name.
1488 # @return The closed element.
1489 # @defreturn Element
1490
1491 def end(self, tag):
1492 self._flush()
1493 self._last = self._elem.pop()
1494 assert self._last.tag == tag,\
1495 "end tag mismatch (expected %s, got %s)" % (
1496 self._last.tag, tag)
1497 self._tail = 1
1498 return self._last
1499
1500##
1501# Element structure builder for XML source data, based on the
1502# <b>expat</b> parser.
1503#
1504# @keyparam target Target object. If omitted, the builder uses an
1505# instance of the standard {@link #TreeBuilder} class.
1506# @keyparam html Predefine HTML entities. This flag is not supported
1507# by the current implementation.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001508# @keyparam encoding Optional encoding. If given, the value overrides
1509# the encoding specified in the XML file.
Armin Rigo9ed73062005-12-14 18:10:45 +00001510# @see #ElementTree
1511# @see #TreeBuilder
1512
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001513class XMLParser:
Armin Rigo9ed73062005-12-14 18:10:45 +00001514
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001515 def __init__(self, html=0, target=None, encoding=None):
Armin Rigo9ed73062005-12-14 18:10:45 +00001516 try:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001517 from xml.parsers import expat
Armin Rigo9ed73062005-12-14 18:10:45 +00001518 except ImportError:
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001519 try:
1520 import pyexpat as expat
1521 except ImportError:
1522 raise ImportError(
1523 "No module named expat; use SimpleXMLTreeBuilder instead"
1524 )
1525 parser = expat.ParserCreate(encoding, "}")
Armin Rigo9ed73062005-12-14 18:10:45 +00001526 if target is None:
1527 target = TreeBuilder()
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001528 # underscored names are provided for compatibility only
1529 self.parser = self._parser = parser
1530 self.target = self._target = target
1531 self._error = expat.error
Armin Rigo9ed73062005-12-14 18:10:45 +00001532 self._names = {} # name memo cache
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001533 # main callbacks
Armin Rigo9ed73062005-12-14 18:10:45 +00001534 parser.DefaultHandlerExpand = self._default
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001535 if hasattr(target, 'start'):
1536 parser.StartElementHandler = self._start
1537 if hasattr(target, 'end'):
1538 parser.EndElementHandler = self._end
1539 if hasattr(target, 'data'):
1540 parser.CharacterDataHandler = target.data
1541 # miscellaneous callbacks
1542 if hasattr(target, 'comment'):
1543 parser.CommentHandler = target.comment
1544 if hasattr(target, 'pi'):
1545 parser.ProcessingInstructionHandler = target.pi
Armin Rigo9ed73062005-12-14 18:10:45 +00001546 # let expat do the buffering, if supported
1547 try:
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001548 parser.buffer_text = 1
Armin Rigo9ed73062005-12-14 18:10:45 +00001549 except AttributeError:
1550 pass
1551 # use new-style attribute handling, if supported
1552 try:
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001553 parser.ordered_attributes = 1
1554 parser.specified_attributes = 1
1555 if hasattr(target, 'start'):
1556 parser.StartElementHandler = self._start_list
Armin Rigo9ed73062005-12-14 18:10:45 +00001557 except AttributeError:
1558 pass
Armin Rigo9ed73062005-12-14 18:10:45 +00001559 self._doctype = None
1560 self.entity = {}
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001561 try:
1562 self.version = "Expat %d.%d.%d" % expat.version_info
1563 except AttributeError:
1564 pass # unknown
1565
1566 def _raiseerror(self, value):
1567 err = ParseError(value)
1568 err.code = value.code
1569 err.position = value.lineno, value.offset
1570 raise err
Armin Rigo9ed73062005-12-14 18:10:45 +00001571
Armin Rigo9ed73062005-12-14 18:10:45 +00001572 def _fixname(self, key):
1573 # expand qname, and convert name string to ascii, if possible
1574 try:
1575 name = self._names[key]
1576 except KeyError:
1577 name = key
1578 if "}" in name:
1579 name = "{" + name
Martin v. Löwisf30bb0e2007-07-28 11:40:46 +00001580 self._names[key] = name
Armin Rigo9ed73062005-12-14 18:10:45 +00001581 return name
1582
1583 def _start(self, tag, attrib_in):
1584 fixname = self._fixname
1585 tag = fixname(tag)
1586 attrib = {}
1587 for key, value in attrib_in.items():
Martin v. Löwisf30bb0e2007-07-28 11:40:46 +00001588 attrib[fixname(key)] = value
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001589 return self.target.start(tag, attrib)
Armin Rigo9ed73062005-12-14 18:10:45 +00001590
1591 def _start_list(self, tag, attrib_in):
1592 fixname = self._fixname
1593 tag = fixname(tag)
1594 attrib = {}
1595 if attrib_in:
1596 for i in range(0, len(attrib_in), 2):
Martin v. Löwisf30bb0e2007-07-28 11:40:46 +00001597 attrib[fixname(attrib_in[i])] = attrib_in[i+1]
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001598 return self.target.start(tag, attrib)
Armin Rigo9ed73062005-12-14 18:10:45 +00001599
Armin Rigo9ed73062005-12-14 18:10:45 +00001600 def _end(self, tag):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001601 return self.target.end(self._fixname(tag))
1602
Armin Rigo9ed73062005-12-14 18:10:45 +00001603 def _default(self, text):
1604 prefix = text[:1]
1605 if prefix == "&":
1606 # deal with undefined entities
1607 try:
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001608 data_handler = self.target.data
1609 except AttributeError:
1610 return
1611 try:
1612 data_handler(self.entity[text[1:-1]])
Armin Rigo9ed73062005-12-14 18:10:45 +00001613 except KeyError:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001614 from xml.parsers import expat
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001615 err = expat.error(
Armin Rigo9ed73062005-12-14 18:10:45 +00001616 "undefined entity %s: line %d, column %d" %
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001617 (text, self.parser.ErrorLineNumber,
1618 self.parser.ErrorColumnNumber)
Armin Rigo9ed73062005-12-14 18:10:45 +00001619 )
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001620 err.code = 11 # XML_ERROR_UNDEFINED_ENTITY
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001621 err.lineno = self.parser.ErrorLineNumber
1622 err.offset = self.parser.ErrorColumnNumber
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001623 raise err
Armin Rigo9ed73062005-12-14 18:10:45 +00001624 elif prefix == "<" and text[:9] == "<!DOCTYPE":
1625 self._doctype = [] # inside a doctype declaration
1626 elif self._doctype is not None:
1627 # parse doctype contents
1628 if prefix == ">":
1629 self._doctype = None
1630 return
Neal Norwitz9d72bb42007-04-17 08:48:32 +00001631 text = text.strip()
Armin Rigo9ed73062005-12-14 18:10:45 +00001632 if not text:
1633 return
1634 self._doctype.append(text)
1635 n = len(self._doctype)
1636 if n > 2:
1637 type = self._doctype[1]
1638 if type == "PUBLIC" and n == 4:
1639 name, type, pubid, system = self._doctype
Florent Xiclunaa1c974a2012-07-07 13:16:44 +02001640 if pubid:
1641 pubid = pubid[1:-1]
Armin Rigo9ed73062005-12-14 18:10:45 +00001642 elif type == "SYSTEM" and n == 3:
1643 name, type, system = self._doctype
1644 pubid = None
1645 else:
1646 return
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001647 if hasattr(self.target, "doctype"):
1648 self.target.doctype(name, pubid, system[1:-1])
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001649 elif self.doctype != self._XMLParser__doctype:
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001650 # warn about deprecated call
1651 self._XMLParser__doctype(name, pubid, system[1:-1])
1652 self.doctype(name, pubid, system[1:-1])
Armin Rigo9ed73062005-12-14 18:10:45 +00001653 self._doctype = None
1654
1655 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001656 # (Deprecated) Handles a doctype declaration.
Armin Rigo9ed73062005-12-14 18:10:45 +00001657 #
1658 # @param name Doctype name.
1659 # @param pubid Public identifier.
1660 # @param system System identifier.
1661
1662 def doctype(self, name, pubid, system):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001663 """This method of XMLParser is deprecated."""
1664 warnings.warn(
1665 "This method of XMLParser is deprecated. Define doctype() "
1666 "method on the TreeBuilder target.",
1667 DeprecationWarning,
1668 )
1669
1670 # sentinel, if doctype is redefined in a subclass
1671 __doctype = doctype
Armin Rigo9ed73062005-12-14 18:10:45 +00001672
1673 ##
1674 # Feeds data to the parser.
1675 #
1676 # @param data Encoded data.
1677
1678 def feed(self, data):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001679 try:
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001680 self.parser.Parse(data, 0)
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001681 except self._error as v:
1682 self._raiseerror(v)
Armin Rigo9ed73062005-12-14 18:10:45 +00001683
1684 ##
1685 # Finishes feeding data to the parser.
1686 #
1687 # @return An element structure.
1688 # @defreturn Element
1689
1690 def close(self):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001691 try:
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001692 self.parser.Parse("", 1) # end of data
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001693 except self._error as v:
1694 self._raiseerror(v)
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001695 try:
Florent Xiclunafb067462012-03-05 11:42:49 +01001696 close_handler = self.target.close
1697 except AttributeError:
1698 pass
1699 else:
1700 return close_handler()
Florent Xicluna75b5e7e2012-03-05 10:42:19 +01001701 finally:
1702 # get rid of circular references
1703 del self.parser, self._parser
1704 del self.target, self._target
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001705
Florent Xiclunaa72a98f2012-02-13 11:03:30 +01001706
1707# Import the C accelerators
1708try:
1709 # Element, SubElement, ParseError, TreeBuilder, XMLParser
1710 from _elementtree import *
1711except ImportError:
1712 pass
1713else:
1714 # Overwrite 'ElementTree.parse' and 'iterparse' to use the C XMLParser
1715
1716 class ElementTree(ElementTree):
1717 def parse(self, source, parser=None):
1718 close_source = False
1719 if not hasattr(source, 'read'):
1720 source = open(source, 'rb')
1721 close_source = True
1722 try:
1723 if parser is not None:
1724 while True:
1725 data = source.read(65536)
1726 if not data:
1727 break
1728 parser.feed(data)
1729 self._root = parser.close()
1730 else:
1731 parser = XMLParser()
1732 self._root = parser._parse(source)
1733 return self._root
1734 finally:
1735 if close_source:
1736 source.close()
1737
1738 class iterparse:
1739 root = None
1740 def __init__(self, file, events=None):
1741 self._close_file = False
1742 if not hasattr(file, 'read'):
1743 file = open(file, 'rb')
1744 self._close_file = True
1745 self._file = file
1746 self._events = []
1747 self._index = 0
1748 self._error = None
1749 self.root = self._root = None
1750 b = TreeBuilder()
1751 self._parser = XMLParser(b)
1752 self._parser._setevents(self._events, events)
1753
1754 def __next__(self):
1755 while True:
1756 try:
1757 item = self._events[self._index]
1758 self._index += 1
1759 return item
1760 except IndexError:
1761 pass
1762 if self._error:
1763 e = self._error
1764 self._error = None
1765 raise e
1766 if self._parser is None:
1767 self.root = self._root
1768 if self._close_file:
1769 self._file.close()
1770 raise StopIteration
1771 # load event buffer
1772 del self._events[:]
1773 self._index = 0
1774 data = self._file.read(16384)
1775 if data:
1776 try:
1777 self._parser.feed(data)
1778 except SyntaxError as exc:
1779 self._error = exc
1780 else:
1781 self._root = self._parser.close()
1782 self._parser = None
1783
1784 def __iter__(self):
1785 return self
1786
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001787# compatibility
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001788XMLTreeBuilder = XMLParser
1789
1790# workaround circular import.
1791try:
1792 from ElementC14N import _serialize_c14n
1793 _serialize["c14n"] = _serialize_c14n
1794except ImportError:
1795 pass