blob: e361eff5f1c64e7bc89bf55bc0c1e4912c1368fc [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",
71 "XML",
Thomas Wouters0e3f5912006-08-11 14:57:12 +000072 "XMLParser", "XMLTreeBuilder",
Armin Rigo9ed73062005-12-14 18:10:45 +000073 ]
74
Florent Xiclunaf15351d2010-03-13 23:24:31 +000075VERSION = "1.3.0"
76
Armin Rigo9ed73062005-12-14 18:10:45 +000077##
78# The <b>Element</b> type is a flexible container object, designed to
79# store hierarchical data structures in memory. The type can be
80# described as a cross between a list and a dictionary.
81# <p>
82# Each element has a number of properties associated with it:
83# <ul>
84# <li>a <i>tag</i>. This is a string identifying what kind of data
85# this element represents (the element type, in other words).</li>
86# <li>a number of <i>attributes</i>, stored in a Python dictionary.</li>
87# <li>a <i>text</i> string.</li>
88# <li>an optional <i>tail</i> string.</li>
89# <li>a number of <i>child elements</i>, stored in a Python sequence</li>
90# </ul>
91#
Florent Xiclunaf15351d2010-03-13 23:24:31 +000092# To create an element instance, use the {@link #Element} constructor
93# or the {@link #SubElement} factory function.
Armin Rigo9ed73062005-12-14 18:10:45 +000094# <p>
95# The {@link #ElementTree} class can be used to wrap an element
96# structure, and convert it from and to XML.
97##
98
Florent Xiclunaf15351d2010-03-13 23:24:31 +000099import sys
100import re
101import warnings
Armin Rigo9ed73062005-12-14 18:10:45 +0000102
Armin Rigo9ed73062005-12-14 18:10:45 +0000103
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000104class _SimpleElementPath:
105 # emulate pre-1.2 find/findtext/findall behaviour
106 def find(self, element, tag, namespaces=None):
107 for elem in element:
108 if elem.tag == tag:
109 return elem
110 return None
111 def findtext(self, element, tag, default=None, namespaces=None):
112 elem = self.find(element, tag)
113 if elem is None:
114 return default
115 return elem.text or ""
116 def iterfind(self, element, tag, namespaces=None):
117 if tag[:3] == ".//":
118 for elem in element.iter(tag[3:]):
119 yield elem
120 for elem in element:
121 if elem.tag == tag:
122 yield elem
123 def findall(self, element, tag, namespaces=None):
124 return list(self.iterfind(element, tag, namespaces))
Armin Rigo9ed73062005-12-14 18:10:45 +0000125
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000126try:
127 from . import ElementPath
128except ImportError:
129 ElementPath = _SimpleElementPath()
Armin Rigo9ed73062005-12-14 18:10:45 +0000130
131##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000132# Parser error. This is a subclass of <b>SyntaxError</b>.
Armin Rigo9ed73062005-12-14 18:10:45 +0000133# <p>
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000134# In addition to the exception value, an exception instance contains a
135# specific exception code in the <b>code</b> attribute, and the line and
136# column of the error in the <b>position</b> attribute.
137
138class ParseError(SyntaxError):
139 pass
140
141# --------------------------------------------------------------------
142
143##
144# Checks if an object appears to be a valid element object.
Armin Rigo9ed73062005-12-14 18:10:45 +0000145#
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000146# @param An element instance.
147# @return A true value if this is an element object.
148# @defreturn flag
149
150def iselement(element):
151 # FIXME: not sure about this; might be a better idea to look
152 # for tag/attrib/text attributes
153 return isinstance(element, Element) or hasattr(element, "tag")
154
155##
156# Element class. This class defines the Element interface, and
157# provides a reference implementation of this interface.
158# <p>
159# The element name, attribute names, and attribute values can be
160# either ASCII strings (ordinary Python strings containing only 7-bit
161# ASCII characters) or Unicode strings.
162#
163# @param tag The element name.
164# @param attrib An optional dictionary, containing element attributes.
165# @param **extra Additional attributes, given as keyword arguments.
Armin Rigo9ed73062005-12-14 18:10:45 +0000166# @see Element
167# @see SubElement
168# @see Comment
169# @see ProcessingInstruction
170
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000171class Element:
Armin Rigo9ed73062005-12-14 18:10:45 +0000172 # <tag attrib>text<child/>...</tag>tail
173
174 ##
175 # (Attribute) Element tag.
176
177 tag = None
178
179 ##
180 # (Attribute) Element attribute dictionary. Where possible, use
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000181 # {@link #Element.get},
182 # {@link #Element.set},
183 # {@link #Element.keys}, and
184 # {@link #Element.items} to access
Armin Rigo9ed73062005-12-14 18:10:45 +0000185 # element attributes.
186
187 attrib = None
188
189 ##
190 # (Attribute) Text before first subelement. This is either a
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000191 # string or the value None. Note that if there was no text, this
192 # attribute may be either None or an empty string, depending on
193 # the parser.
Armin Rigo9ed73062005-12-14 18:10:45 +0000194
195 text = None
196
197 ##
198 # (Attribute) Text after this element's end tag, but before the
199 # next sibling element's start tag. This is either a string or
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000200 # the value None. Note that if there was no text, this attribute
201 # may be either None or an empty string, depending on the parser.
Armin Rigo9ed73062005-12-14 18:10:45 +0000202
203 tail = None # text after end tag, if any
204
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000205 # constructor
206
207 def __init__(self, tag, attrib={}, **extra):
208 attrib = attrib.copy()
209 attrib.update(extra)
Armin Rigo9ed73062005-12-14 18:10:45 +0000210 self.tag = tag
211 self.attrib = attrib
212 self._children = []
213
214 def __repr__(self):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000215 return "<Element %s at 0x%x>" % (repr(self.tag), id(self))
Armin Rigo9ed73062005-12-14 18:10:45 +0000216
217 ##
218 # Creates a new element object of the same type as this element.
219 #
220 # @param tag Element tag.
221 # @param attrib Element attributes, given as a dictionary.
222 # @return A new element instance.
223
224 def makeelement(self, tag, attrib):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000225 return self.__class__(tag, attrib)
Armin Rigo9ed73062005-12-14 18:10:45 +0000226
227 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000228 # (Experimental) Copies the current element. This creates a
229 # shallow copy; subelements will be shared with the original tree.
230 #
231 # @return A new element instance.
232
233 def copy(self):
234 elem = self.makeelement(self.tag, self.attrib)
235 elem.text = self.text
236 elem.tail = self.tail
237 elem[:] = self
238 return elem
239
240 ##
241 # Returns the number of subelements. Note that this only counts
242 # full elements; to check if there's any content in an element, you
243 # have to check both the length and the <b>text</b> attribute.
Armin Rigo9ed73062005-12-14 18:10:45 +0000244 #
245 # @return The number of subelements.
246
247 def __len__(self):
248 return len(self._children)
249
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000250 def __bool__(self):
251 warnings.warn(
252 "The behavior of this method will change in future versions. "
253 "Use specific 'len(elem)' or 'elem is not None' test instead.",
254 FutureWarning, stacklevel=2
255 )
256 return len(self._children) != 0 # emulate old behaviour, for now
257
Armin Rigo9ed73062005-12-14 18:10:45 +0000258 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000259 # Returns the given subelement, by index.
Armin Rigo9ed73062005-12-14 18:10:45 +0000260 #
261 # @param index What subelement to return.
262 # @return The given subelement.
263 # @exception IndexError If the given element does not exist.
264
265 def __getitem__(self, index):
266 return self._children[index]
267
268 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000269 # Replaces the given subelement, by index.
Armin Rigo9ed73062005-12-14 18:10:45 +0000270 #
271 # @param index What subelement to replace.
272 # @param element The new element value.
273 # @exception IndexError If the given element does not exist.
Armin Rigo9ed73062005-12-14 18:10:45 +0000274
275 def __setitem__(self, index, element):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000276 # if isinstance(index, slice):
277 # for elt in element:
278 # assert iselement(elt)
279 # else:
280 # assert iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000281 self._children[index] = element
282
283 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000284 # Deletes the given subelement, by index.
Armin Rigo9ed73062005-12-14 18:10:45 +0000285 #
286 # @param index What subelement to delete.
287 # @exception IndexError If the given element does not exist.
288
289 def __delitem__(self, index):
290 del self._children[index]
291
292 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000293 # Adds a subelement to the end of this element. In document order,
294 # the new element will appear after the last existing subelement (or
295 # directly after the text, if it's the first subelement), but before
296 # the end tag for this element.
Armin Rigo9ed73062005-12-14 18:10:45 +0000297 #
298 # @param element The element to add.
Armin Rigo9ed73062005-12-14 18:10:45 +0000299
300 def append(self, element):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000301 # assert iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000302 self._children.append(element)
303
304 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000305 # Appends subelements from a sequence.
306 #
307 # @param elements A sequence object with zero or more elements.
308 # @since 1.3
309
310 def extend(self, elements):
311 # for element in elements:
312 # assert iselement(element)
313 self._children.extend(elements)
314
315 ##
Armin Rigo9ed73062005-12-14 18:10:45 +0000316 # Inserts a subelement at the given position in this element.
317 #
318 # @param index Where to insert the new subelement.
Armin Rigo9ed73062005-12-14 18:10:45 +0000319
320 def insert(self, index, element):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000321 # assert iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000322 self._children.insert(index, element)
323
324 ##
325 # Removes a matching subelement. Unlike the <b>find</b> methods,
326 # this method compares elements based on identity, not on tag
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000327 # value or contents. To remove subelements by other means, the
328 # easiest way is often to use a list comprehension to select what
329 # elements to keep, and use slice assignment to update the parent
330 # element.
Armin Rigo9ed73062005-12-14 18:10:45 +0000331 #
332 # @param element What element to remove.
333 # @exception ValueError If a matching element could not be found.
Armin Rigo9ed73062005-12-14 18:10:45 +0000334
335 def remove(self, element):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000336 # assert iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000337 self._children.remove(element)
338
339 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000340 # (Deprecated) Returns all subelements. The elements are returned
341 # in document order.
Armin Rigo9ed73062005-12-14 18:10:45 +0000342 #
343 # @return A list of subelements.
344 # @defreturn list of Element instances
345
346 def getchildren(self):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000347 warnings.warn(
348 "This method will be removed in future versions. "
349 "Use 'list(elem)' or iteration over elem instead.",
350 DeprecationWarning, stacklevel=2
351 )
Armin Rigo9ed73062005-12-14 18:10:45 +0000352 return self._children
353
354 ##
355 # Finds the first matching subelement, by tag name or path.
356 #
357 # @param path What element to look for.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000358 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000359 # @return The first matching element, or None if no element was found.
360 # @defreturn Element or None
361
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000362 def find(self, path, namespaces=None):
363 return ElementPath.find(self, path, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000364
365 ##
366 # Finds text for the first matching subelement, by tag name or path.
367 #
368 # @param path What element to look for.
369 # @param default What to return if the element was not found.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000370 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000371 # @return The text content of the first matching element, or the
372 # default value no element was found. Note that if the element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000373 # is found, but has no text content, this method returns an
Armin Rigo9ed73062005-12-14 18:10:45 +0000374 # empty string.
375 # @defreturn string
376
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000377 def findtext(self, path, default=None, namespaces=None):
378 return ElementPath.findtext(self, path, default, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000379
380 ##
381 # Finds all matching subelements, by tag name or path.
382 #
383 # @param path What element to look for.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000384 # @keyparam namespaces Optional namespace prefix map.
385 # @return A list or other sequence containing all matching elements,
Armin Rigo9ed73062005-12-14 18:10:45 +0000386 # in document order.
387 # @defreturn list of Element instances
388
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000389 def findall(self, path, namespaces=None):
390 return ElementPath.findall(self, path, namespaces)
391
392 ##
393 # Finds all matching subelements, by tag name or path.
394 #
395 # @param path What element to look for.
396 # @keyparam namespaces Optional namespace prefix map.
397 # @return An iterator or sequence containing all matching elements,
398 # in document order.
399 # @defreturn a generated sequence of Element instances
400
401 def iterfind(self, path, namespaces=None):
402 return ElementPath.iterfind(self, path, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000403
404 ##
405 # Resets an element. This function removes all subelements, clears
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000406 # all attributes, and sets the <b>text</b> and <b>tail</b> attributes
407 # to None.
Armin Rigo9ed73062005-12-14 18:10:45 +0000408
409 def clear(self):
410 self.attrib.clear()
411 self._children = []
412 self.text = self.tail = None
413
414 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000415 # Gets an element attribute. Equivalent to <b>attrib.get</b>, but
416 # some implementations may handle this a bit more efficiently.
Armin Rigo9ed73062005-12-14 18:10:45 +0000417 #
418 # @param key What attribute to look for.
419 # @param default What to return if the attribute was not found.
420 # @return The attribute value, or the default value, if the
421 # attribute was not found.
422 # @defreturn string or None
423
424 def get(self, key, default=None):
425 return self.attrib.get(key, default)
426
427 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000428 # Sets an element attribute. Equivalent to <b>attrib[key] = value</b>,
429 # but some implementations may handle this a bit more efficiently.
Armin Rigo9ed73062005-12-14 18:10:45 +0000430 #
431 # @param key What attribute to set.
432 # @param value The attribute value.
433
434 def set(self, key, value):
435 self.attrib[key] = value
436
437 ##
438 # Gets a list of attribute names. The names are returned in an
439 # arbitrary order (just like for an ordinary Python dictionary).
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000440 # Equivalent to <b>attrib.keys()</b>.
Armin Rigo9ed73062005-12-14 18:10:45 +0000441 #
442 # @return A list of element attribute names.
443 # @defreturn list of strings
444
445 def keys(self):
446 return self.attrib.keys()
447
448 ##
449 # Gets element attributes, as a sequence. The attributes are
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000450 # returned in an arbitrary order. Equivalent to <b>attrib.items()</b>.
Armin Rigo9ed73062005-12-14 18:10:45 +0000451 #
452 # @return A list of (name, value) tuples for all attributes.
453 # @defreturn list of (string, string) tuples
454
455 def items(self):
456 return self.attrib.items()
457
458 ##
459 # Creates a tree iterator. The iterator loops over this element
460 # and all subelements, in document order, and returns all elements
461 # with a matching tag.
462 # <p>
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000463 # If the tree structure is modified during iteration, new or removed
464 # elements may or may not be included. To get a stable set, use the
465 # list() function on the iterator, and loop over the resulting list.
Armin Rigo9ed73062005-12-14 18:10:45 +0000466 #
467 # @param tag What tags to look for (default is to return all elements).
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000468 # @return An iterator containing all the matching elements.
469 # @defreturn iterator
Armin Rigo9ed73062005-12-14 18:10:45 +0000470
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000471 def iter(self, tag=None):
Armin Rigo9ed73062005-12-14 18:10:45 +0000472 if tag == "*":
473 tag = None
474 if tag is None or self.tag == tag:
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000475 yield self
476 for e in self._children:
477 for e in e.iter(tag):
478 yield e
479
480 # compatibility
481 def getiterator(self, tag=None):
482 # Change for a DeprecationWarning in 1.4
483 warnings.warn(
484 "This method will be removed in future versions. "
485 "Use 'elem.iter()' or 'list(elem.iter())' instead.",
486 PendingDeprecationWarning, stacklevel=2
487 )
488 return list(self.iter(tag))
489
490 ##
491 # Creates a text iterator. The iterator loops over this element
492 # and all subelements, in document order, and returns all inner
493 # text.
494 #
495 # @return An iterator containing all inner text.
496 # @defreturn iterator
497
498 def itertext(self):
499 tag = self.tag
500 if not isinstance(tag, str) and tag is not None:
501 return
502 if self.text:
503 yield self.text
504 for e in self:
505 for s in e.itertext():
506 yield s
507 if e.tail:
508 yield e.tail
Armin Rigo9ed73062005-12-14 18:10:45 +0000509
510# compatibility
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000511_Element = _ElementInterface = Element
Armin Rigo9ed73062005-12-14 18:10:45 +0000512
513##
514# Subelement factory. This function creates an element instance, and
515# appends it to an existing element.
516# <p>
517# The element name, attribute names, and attribute values can be
518# either 8-bit ASCII strings or Unicode strings.
519#
520# @param parent The parent element.
521# @param tag The subelement name.
522# @param attrib An optional dictionary, containing element attributes.
523# @param **extra Additional attributes, given as keyword arguments.
524# @return An element instance.
525# @defreturn Element
526
527def SubElement(parent, tag, attrib={}, **extra):
528 attrib = attrib.copy()
529 attrib.update(extra)
530 element = parent.makeelement(tag, attrib)
531 parent.append(element)
532 return element
533
534##
535# Comment element factory. This factory function creates a special
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000536# element that will be serialized as an XML comment by the standard
537# serializer.
Armin Rigo9ed73062005-12-14 18:10:45 +0000538# <p>
539# The comment string can be either an 8-bit ASCII string or a Unicode
540# string.
541#
542# @param text A string containing the comment string.
543# @return An element instance, representing a comment.
544# @defreturn Element
545
546def Comment(text=None):
547 element = Element(Comment)
548 element.text = text
549 return element
550
551##
552# PI element factory. This factory function creates a special element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000553# that will be serialized as an XML processing instruction by the standard
554# serializer.
Armin Rigo9ed73062005-12-14 18:10:45 +0000555#
556# @param target A string containing the PI target.
557# @param text A string containing the PI contents, if any.
558# @return An element instance, representing a PI.
559# @defreturn Element
560
561def ProcessingInstruction(target, text=None):
562 element = Element(ProcessingInstruction)
563 element.text = target
564 if text:
565 element.text = element.text + " " + text
566 return element
567
568PI = ProcessingInstruction
569
570##
571# QName wrapper. This can be used to wrap a QName attribute value, in
572# order to get proper namespace handling on output.
573#
574# @param text A string containing the QName value, in the form {uri}local,
575# or, if the tag argument is given, the URI part of a QName.
576# @param tag Optional tag. If given, the first argument is interpreted as
577# an URI, and this argument is interpreted as a local name.
578# @return An opaque object, representing the QName.
579
580class QName:
581 def __init__(self, text_or_uri, tag=None):
582 if tag:
583 text_or_uri = "{%s}%s" % (text_or_uri, tag)
584 self.text = text_or_uri
585 def __str__(self):
586 return self.text
Georg Brandlb56c0e22010-12-09 18:10:27 +0000587 def __repr__(self):
Georg Brandlc95c9182010-12-09 18:26:02 +0000588 return '<QName %r>' % (self.text,)
Armin Rigo9ed73062005-12-14 18:10:45 +0000589 def __hash__(self):
590 return hash(self.text)
Mark Dickinsona56c4672009-01-27 18:17:45 +0000591 def __le__(self, other):
Armin Rigo9ed73062005-12-14 18:10:45 +0000592 if isinstance(other, QName):
Mark Dickinsona56c4672009-01-27 18:17:45 +0000593 return self.text <= other.text
594 return self.text <= other
595 def __lt__(self, other):
596 if isinstance(other, QName):
597 return self.text < other.text
598 return self.text < other
599 def __ge__(self, other):
600 if isinstance(other, QName):
601 return self.text >= other.text
602 return self.text >= other
603 def __gt__(self, other):
604 if isinstance(other, QName):
605 return self.text > other.text
606 return self.text > other
607 def __eq__(self, other):
608 if isinstance(other, QName):
609 return self.text == other.text
610 return self.text == other
611 def __ne__(self, other):
612 if isinstance(other, QName):
613 return self.text != other.text
614 return self.text != other
Armin Rigo9ed73062005-12-14 18:10:45 +0000615
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000616# --------------------------------------------------------------------
617
Armin Rigo9ed73062005-12-14 18:10:45 +0000618##
619# ElementTree wrapper class. This class represents an entire element
620# hierarchy, and adds some extra support for serialization to and from
621# standard XML.
622#
623# @param element Optional root element.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000624# @keyparam file Optional file handle or file name. If given, the
Armin Rigo9ed73062005-12-14 18:10:45 +0000625# tree is initialized with the contents of this XML file.
626
627class ElementTree:
628
629 def __init__(self, element=None, file=None):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000630 # assert element is None or iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000631 self._root = element # first node
632 if file:
633 self.parse(file)
634
635 ##
636 # Gets the root element for this tree.
637 #
638 # @return An element instance.
639 # @defreturn Element
640
641 def getroot(self):
642 return self._root
643
644 ##
645 # Replaces the root element for this tree. This discards the
646 # current contents of the tree, and replaces it with the given
647 # element. Use with care.
648 #
649 # @param element An element instance.
650
651 def _setroot(self, element):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000652 # assert iselement(element)
Armin Rigo9ed73062005-12-14 18:10:45 +0000653 self._root = element
654
655 ##
656 # Loads an external XML document into this element tree.
657 #
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000658 # @param source A file name or file object. If a file object is
659 # given, it only has to implement a <b>read(n)</b> method.
660 # @keyparam parser An optional parser instance. If not given, the
661 # standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +0000662 # @return The document root element.
663 # @defreturn Element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000664 # @exception ParseError If the parser fails to parse the document.
Armin Rigo9ed73062005-12-14 18:10:45 +0000665
666 def parse(self, source, parser=None):
Antoine Pitroue033e062010-10-29 10:38:18 +0000667 close_source = False
Armin Rigo9ed73062005-12-14 18:10:45 +0000668 if not hasattr(source, "read"):
669 source = open(source, "rb")
Antoine Pitroue033e062010-10-29 10:38:18 +0000670 close_source = True
671 try:
672 if not parser:
673 parser = XMLParser(target=TreeBuilder())
674 while 1:
675 data = source.read(65536)
676 if not data:
677 break
678 parser.feed(data)
679 self._root = parser.close()
680 return self._root
681 finally:
682 if close_source:
683 source.close()
Armin Rigo9ed73062005-12-14 18:10:45 +0000684
685 ##
686 # Creates a tree iterator for the root element. The iterator loops
687 # over all elements in this tree, in document order.
688 #
689 # @param tag What tags to look for (default is to return all elements)
690 # @return An iterator.
691 # @defreturn iterator
692
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000693 def iter(self, tag=None):
694 # assert self._root is not None
695 return self._root.iter(tag)
696
697 # compatibility
Armin Rigo9ed73062005-12-14 18:10:45 +0000698 def getiterator(self, tag=None):
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000699 # Change for a DeprecationWarning in 1.4
700 warnings.warn(
701 "This method will be removed in future versions. "
702 "Use 'tree.iter()' or 'list(tree.iter())' instead.",
703 PendingDeprecationWarning, stacklevel=2
704 )
705 return list(self.iter(tag))
Armin Rigo9ed73062005-12-14 18:10:45 +0000706
707 ##
Eli Bendersky7343cb02013-03-12 06:01:22 -0700708 # Same as getroot().find(path), starting at the root of the tree.
Armin Rigo9ed73062005-12-14 18:10:45 +0000709 #
710 # @param path What element to look for.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000711 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000712 # @return The first matching element, or None if no element was found.
713 # @defreturn Element or None
714
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000715 def find(self, path, namespaces=None):
716 # assert self._root is not None
Armin Rigo9ed73062005-12-14 18:10:45 +0000717 if path[:1] == "/":
718 path = "." + path
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000719 warnings.warn(
720 "This search is broken in 1.3 and earlier, and will be "
721 "fixed in a future version. If you rely on the current "
722 "behaviour, change it to %r" % path,
723 FutureWarning, stacklevel=2
724 )
725 return self._root.find(path, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000726
727 ##
Eli Bendersky7343cb02013-03-12 06:01:22 -0700728 # Same as getroot().findtext(path), starting at the root of the tree.
Armin Rigo9ed73062005-12-14 18:10:45 +0000729 #
Eli Bendersky7343cb02013-03-12 06:01:22 -0700730 # @param path What element to look for.
Armin Rigo9ed73062005-12-14 18:10:45 +0000731 # @param default What to return if the element was not found.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000732 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000733 # @return The text content of the first matching element, or the
734 # default value no element was found. Note that if the element
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000735 # is found, but has no text content, this method returns an
Armin Rigo9ed73062005-12-14 18:10:45 +0000736 # empty string.
737 # @defreturn string
738
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000739 def findtext(self, path, default=None, namespaces=None):
740 # assert self._root is not None
Armin Rigo9ed73062005-12-14 18:10:45 +0000741 if path[:1] == "/":
742 path = "." + path
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000743 warnings.warn(
744 "This search is broken in 1.3 and earlier, and will be "
745 "fixed in a future version. If you rely on the current "
746 "behaviour, change it to %r" % path,
747 FutureWarning, stacklevel=2
748 )
749 return self._root.findtext(path, default, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000750
751 ##
Eli Bendersky7343cb02013-03-12 06:01:22 -0700752 # Same as getroot().findall(path), starting at the root of the tree.
Armin Rigo9ed73062005-12-14 18:10:45 +0000753 #
754 # @param path What element to look for.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000755 # @keyparam namespaces Optional namespace prefix map.
Armin Rigo9ed73062005-12-14 18:10:45 +0000756 # @return A list or iterator containing all matching elements,
757 # in document order.
758 # @defreturn list of Element instances
759
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000760 def findall(self, path, namespaces=None):
761 # assert self._root is not None
Armin Rigo9ed73062005-12-14 18:10:45 +0000762 if path[:1] == "/":
763 path = "." + path
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000764 warnings.warn(
765 "This search is broken in 1.3 and earlier, and will be "
766 "fixed in a future version. If you rely on the current "
767 "behaviour, change it to %r" % path,
768 FutureWarning, stacklevel=2
769 )
770 return self._root.findall(path, namespaces)
771
772 ##
773 # Finds all matching subelements, by tag name or path.
774 # Same as getroot().iterfind(path).
775 #
776 # @param path What element to look for.
777 # @keyparam namespaces Optional namespace prefix map.
778 # @return An iterator or sequence containing all matching elements,
779 # in document order.
780 # @defreturn a generated sequence of Element instances
781
782 def iterfind(self, path, namespaces=None):
783 # assert self._root is not None
784 if path[:1] == "/":
785 path = "." + path
786 warnings.warn(
787 "This search is broken in 1.3 and earlier, and will be "
788 "fixed in a future version. If you rely on the current "
789 "behaviour, change it to %r" % path,
790 FutureWarning, stacklevel=2
791 )
792 return self._root.iterfind(path, namespaces)
Armin Rigo9ed73062005-12-14 18:10:45 +0000793
794 ##
795 # Writes the element tree to a file, as XML.
796 #
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000797 # @def write(file, **options)
Armin Rigo9ed73062005-12-14 18:10:45 +0000798 # @param file A file name, or a file object opened for writing.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000799 # @param **options Options, given as keyword arguments.
Florent Xiclunac17f1722010-08-08 19:48:29 +0000800 # @keyparam encoding Optional output encoding (default is US-ASCII).
801 # Use "unicode" to return a Unicode string.
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000802 # @keyparam xml_declaration Controls if an XML declaration should
803 # be added to the file. Use False for never, True for always,
Florent Xiclunac17f1722010-08-08 19:48:29 +0000804 # None for only if not US-ASCII or UTF-8 or Unicode. None is default.
Serhiy Storchaka03530b92013-01-13 21:58:04 +0200805 # @keyparam default_namespace Sets the default XML namespace (for "xmlns").
806 # @keyparam method Optional output method ("xml", "html", "text" or
807 # "c14n"; default is "xml").
Armin Rigo9ed73062005-12-14 18:10:45 +0000808
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000809 def write(self, file_or_filename,
810 # keyword arguments
811 encoding=None,
812 xml_declaration=None,
813 default_namespace=None,
814 method=None):
815 # assert self._root is not None
816 if not method:
817 method = "xml"
818 elif method not in _serialize:
819 # FIXME: raise an ImportError for c14n if ElementC14N is missing?
820 raise ValueError("unknown method %r" % method)
Florent Xiclunac17f1722010-08-08 19:48:29 +0000821 if not encoding:
822 if method == "c14n":
823 encoding = "utf-8"
824 else:
825 encoding = "us-ascii"
826 elif encoding == str: # lxml.etree compatibility.
827 encoding = "unicode"
828 else:
829 encoding = encoding.lower()
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000830 if hasattr(file_or_filename, "write"):
831 file = file_or_filename
Armin Rigo9ed73062005-12-14 18:10:45 +0000832 else:
Florent Xiclunac17f1722010-08-08 19:48:29 +0000833 if encoding != "unicode":
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000834 file = open(file_or_filename, "wb")
Armin Rigo9ed73062005-12-14 18:10:45 +0000835 else:
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000836 file = open(file_or_filename, "w")
Florent Xiclunac17f1722010-08-08 19:48:29 +0000837 if encoding != "unicode":
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000838 def write(text):
839 try:
840 return file.write(text.encode(encoding,
841 "xmlcharrefreplace"))
842 except (TypeError, AttributeError):
843 _raise_serialization_error(text)
844 else:
845 write = file.write
Florent Xiclunac17f1722010-08-08 19:48:29 +0000846 if method == "xml" and (xml_declaration or
847 (xml_declaration is None and
848 encoding not in ("utf-8", "us-ascii", "unicode"))):
849 declared_encoding = encoding
850 if encoding == "unicode":
851 # Retrieve the default encoding for the xml declaration
852 import locale
853 declared_encoding = locale.getpreferredencoding()
854 write("<?xml version='1.0' encoding='%s'?>\n" % declared_encoding)
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000855 if method == "text":
856 _serialize_text(write, self._root)
857 else:
858 qnames, namespaces = _namespaces(self._root, default_namespace)
859 serialize = _serialize[method]
860 serialize(write, self._root, qnames, namespaces)
861 if file_or_filename is not file:
862 file.close()
863
864 def write_c14n(self, file):
865 # lxml.etree compatibility. use output method instead
866 return self.write(file, method="c14n")
Armin Rigo9ed73062005-12-14 18:10:45 +0000867
868# --------------------------------------------------------------------
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000869# serialization support
870
871def _namespaces(elem, default_namespace=None):
872 # identify namespaces used in this tree
873
874 # maps qnames to *encoded* prefix:local names
875 qnames = {None: None}
876
877 # maps uri:s to prefixes
878 namespaces = {}
879 if default_namespace:
880 namespaces[default_namespace] = ""
881
882 def add_qname(qname):
883 # calculate serialized qname representation
884 try:
885 if qname[:1] == "{":
886 uri, tag = qname[1:].rsplit("}", 1)
887 prefix = namespaces.get(uri)
888 if prefix is None:
889 prefix = _namespace_map.get(uri)
890 if prefix is None:
891 prefix = "ns%d" % len(namespaces)
892 if prefix != "xml":
893 namespaces[uri] = prefix
894 if prefix:
895 qnames[qname] = "%s:%s" % (prefix, tag)
896 else:
897 qnames[qname] = tag # default element
898 else:
899 if default_namespace:
900 # FIXME: can this be handled in XML 1.0?
901 raise ValueError(
902 "cannot use non-qualified names with "
903 "default_namespace option"
904 )
905 qnames[qname] = qname
906 except TypeError:
907 _raise_serialization_error(qname)
908
909 # populate qname and namespaces table
910 try:
911 iterate = elem.iter
912 except AttributeError:
913 iterate = elem.getiterator # cET compatibility
914 for elem in iterate():
915 tag = elem.tag
Senthil Kumaranec30b3d2010-11-09 02:36:59 +0000916 if isinstance(tag, QName):
917 if tag.text not in qnames:
918 add_qname(tag.text)
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000919 elif isinstance(tag, str):
920 if tag not in qnames:
921 add_qname(tag)
922 elif tag is not None and tag is not Comment and tag is not PI:
923 _raise_serialization_error(tag)
924 for key, value in elem.items():
925 if isinstance(key, QName):
926 key = key.text
927 if key not in qnames:
928 add_qname(key)
929 if isinstance(value, QName) and value.text not in qnames:
930 add_qname(value.text)
931 text = elem.text
932 if isinstance(text, QName) and text.text not in qnames:
933 add_qname(text.text)
934 return qnames, namespaces
935
936def _serialize_xml(write, elem, qnames, namespaces):
937 tag = elem.tag
938 text = elem.text
939 if tag is Comment:
940 write("<!--%s-->" % text)
941 elif tag is ProcessingInstruction:
942 write("<?%s?>" % text)
943 else:
944 tag = qnames[tag]
945 if tag is None:
946 if text:
947 write(_escape_cdata(text))
948 for e in elem:
949 _serialize_xml(write, e, qnames, None)
950 else:
951 write("<" + tag)
952 items = list(elem.items())
953 if items or namespaces:
954 if namespaces:
955 for v, k in sorted(namespaces.items(),
956 key=lambda x: x[1]): # sort on prefix
957 if k:
958 k = ":" + k
959 write(" xmlns%s=\"%s\"" % (
960 k,
961 _escape_attrib(v)
962 ))
963 for k, v in sorted(items): # lexical order
964 if isinstance(k, QName):
965 k = k.text
966 if isinstance(v, QName):
967 v = qnames[v.text]
968 else:
969 v = _escape_attrib(v)
970 write(" %s=\"%s\"" % (qnames[k], v))
971 if text or len(elem):
972 write(">")
973 if text:
974 write(_escape_cdata(text))
975 for e in elem:
976 _serialize_xml(write, e, qnames, None)
977 write("</" + tag + ">")
978 else:
979 write(" />")
980 if elem.tail:
981 write(_escape_cdata(elem.tail))
982
983HTML_EMPTY = ("area", "base", "basefont", "br", "col", "frame", "hr",
Ezio Melottic90111f2012-09-19 08:19:12 +0300984 "img", "input", "isindex", "link", "meta", "param")
Florent Xiclunaf15351d2010-03-13 23:24:31 +0000985
986try:
987 HTML_EMPTY = set(HTML_EMPTY)
988except NameError:
989 pass
990
991def _serialize_html(write, elem, qnames, namespaces):
992 tag = elem.tag
993 text = elem.text
994 if tag is Comment:
995 write("<!--%s-->" % _escape_cdata(text))
996 elif tag is ProcessingInstruction:
997 write("<?%s?>" % _escape_cdata(text))
998 else:
999 tag = qnames[tag]
1000 if tag is None:
1001 if text:
1002 write(_escape_cdata(text))
1003 for e in elem:
1004 _serialize_html(write, e, qnames, None)
1005 else:
1006 write("<" + tag)
1007 items = list(elem.items())
1008 if items or namespaces:
1009 if namespaces:
1010 for v, k in sorted(namespaces.items(),
1011 key=lambda x: x[1]): # sort on prefix
1012 if k:
1013 k = ":" + k
1014 write(" xmlns%s=\"%s\"" % (
1015 k,
1016 _escape_attrib(v)
1017 ))
1018 for k, v in sorted(items): # lexical order
1019 if isinstance(k, QName):
1020 k = k.text
1021 if isinstance(v, QName):
1022 v = qnames[v.text]
1023 else:
1024 v = _escape_attrib_html(v)
1025 # FIXME: handle boolean attributes
1026 write(" %s=\"%s\"" % (qnames[k], v))
1027 write(">")
1028 tag = tag.lower()
1029 if text:
1030 if tag == "script" or tag == "style":
1031 write(text)
1032 else:
1033 write(_escape_cdata(text))
1034 for e in elem:
1035 _serialize_html(write, e, qnames, None)
1036 if tag not in HTML_EMPTY:
1037 write("</" + tag + ">")
1038 if elem.tail:
1039 write(_escape_cdata(elem.tail))
1040
1041def _serialize_text(write, elem):
1042 for part in elem.itertext():
1043 write(part)
1044 if elem.tail:
1045 write(elem.tail)
1046
1047_serialize = {
1048 "xml": _serialize_xml,
1049 "html": _serialize_html,
1050 "text": _serialize_text,
1051# this optional method is imported at the end of the module
1052# "c14n": _serialize_c14n,
1053}
Armin Rigo9ed73062005-12-14 18:10:45 +00001054
1055##
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001056# Registers a namespace prefix. The registry is global, and any
1057# existing mapping for either the given prefix or the namespace URI
1058# will be removed.
Armin Rigo9ed73062005-12-14 18:10:45 +00001059#
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001060# @param prefix Namespace prefix.
1061# @param uri Namespace uri. Tags and attributes in this namespace
1062# will be serialized with the given prefix, if at all possible.
1063# @exception ValueError If the prefix is reserved, or is otherwise
1064# invalid.
Armin Rigo9ed73062005-12-14 18:10:45 +00001065
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001066def register_namespace(prefix, uri):
1067 if re.match("ns\d+$", prefix):
1068 raise ValueError("Prefix format reserved for internal use")
Georg Brandl90b20672010-12-28 10:38:33 +00001069 for k, v in list(_namespace_map.items()):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001070 if k == uri or v == prefix:
1071 del _namespace_map[k]
1072 _namespace_map[uri] = prefix
1073
1074_namespace_map = {
1075 # "well-known" namespace prefixes
1076 "http://www.w3.org/XML/1998/namespace": "xml",
1077 "http://www.w3.org/1999/xhtml": "html",
1078 "http://www.w3.org/1999/02/22-rdf-syntax-ns#": "rdf",
1079 "http://schemas.xmlsoap.org/wsdl/": "wsdl",
1080 # xml schema
1081 "http://www.w3.org/2001/XMLSchema": "xs",
1082 "http://www.w3.org/2001/XMLSchema-instance": "xsi",
1083 # dublin core
1084 "http://purl.org/dc/elements/1.1/": "dc",
1085}
1086
1087def _raise_serialization_error(text):
1088 raise TypeError(
1089 "cannot serialize %r (type %s)" % (text, type(text).__name__)
1090 )
1091
1092def _escape_cdata(text):
1093 # escape character data
1094 try:
1095 # it's worth avoiding do-nothing calls for strings that are
1096 # shorter than 500 character, or so. assume that's, by far,
1097 # the most common case in most applications.
1098 if "&" in text:
1099 text = text.replace("&", "&amp;")
1100 if "<" in text:
1101 text = text.replace("<", "&lt;")
1102 if ">" in text:
1103 text = text.replace(">", "&gt;")
1104 return text
1105 except (TypeError, AttributeError):
1106 _raise_serialization_error(text)
1107
1108def _escape_attrib(text):
1109 # escape attribute value
1110 try:
1111 if "&" in text:
1112 text = text.replace("&", "&amp;")
1113 if "<" in text:
1114 text = text.replace("<", "&lt;")
1115 if ">" in text:
1116 text = text.replace(">", "&gt;")
1117 if "\"" in text:
1118 text = text.replace("\"", "&quot;")
1119 if "\n" in text:
1120 text = text.replace("\n", "&#10;")
1121 return text
1122 except (TypeError, AttributeError):
1123 _raise_serialization_error(text)
1124
1125def _escape_attrib_html(text):
1126 # escape attribute value
1127 try:
1128 if "&" in text:
1129 text = text.replace("&", "&amp;")
1130 if ">" in text:
1131 text = text.replace(">", "&gt;")
1132 if "\"" in text:
1133 text = text.replace("\"", "&quot;")
1134 return text
1135 except (TypeError, AttributeError):
1136 _raise_serialization_error(text)
1137
1138# --------------------------------------------------------------------
1139
1140##
1141# Generates a string representation of an XML element, including all
Florent Xiclunac17f1722010-08-08 19:48:29 +00001142# subelements. If encoding is "unicode", the return type is a string;
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001143# otherwise it is a bytes array.
1144#
1145# @param element An Element instance.
Florent Xiclunac17f1722010-08-08 19:48:29 +00001146# @keyparam encoding Optional output encoding (default is US-ASCII).
1147# Use "unicode" to return a Unicode string.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001148# @keyparam method Optional output method ("xml", "html", "text" or
1149# "c14n"; default is "xml").
1150# @return An (optionally) encoded string containing the XML data.
1151# @defreturn string
1152
1153def tostring(element, encoding=None, method=None):
1154 class dummy:
1155 pass
1156 data = []
1157 file = dummy()
1158 file.write = data.append
1159 ElementTree(element).write(file, encoding, method=method)
Florent Xiclunac17f1722010-08-08 19:48:29 +00001160 if encoding in (str, "unicode"):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001161 return "".join(data)
Florent Xiclunac17f1722010-08-08 19:48:29 +00001162 else:
1163 return b"".join(data)
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001164
1165##
1166# Generates a string representation of an XML element, including all
Florent Xiclunac17f1722010-08-08 19:48:29 +00001167# subelements. If encoding is False, the string is returned as a
1168# sequence of string fragments; otherwise it is a sequence of
1169# bytestrings.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001170#
1171# @param element An Element instance.
1172# @keyparam encoding Optional output encoding (default is US-ASCII).
Florent Xiclunac17f1722010-08-08 19:48:29 +00001173# Use "unicode" to return a Unicode string.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001174# @keyparam method Optional output method ("xml", "html", "text" or
1175# "c14n"; default is "xml").
1176# @return A sequence object containing the XML data.
1177# @defreturn sequence
1178# @since 1.3
1179
1180def tostringlist(element, encoding=None, method=None):
1181 class dummy:
1182 pass
1183 data = []
1184 file = dummy()
1185 file.write = data.append
1186 ElementTree(element).write(file, encoding, method=method)
1187 # FIXME: merge small fragments into larger parts
1188 return data
Armin Rigo9ed73062005-12-14 18:10:45 +00001189
1190##
1191# Writes an element tree or element structure to sys.stdout. This
1192# function should be used for debugging only.
1193# <p>
1194# The exact output format is implementation dependent. In this
1195# version, it's written as an ordinary XML file.
1196#
1197# @param elem An element tree or an individual element.
1198
1199def dump(elem):
1200 # debugging
1201 if not isinstance(elem, ElementTree):
1202 elem = ElementTree(elem)
Florent Xiclunac17f1722010-08-08 19:48:29 +00001203 elem.write(sys.stdout, encoding="unicode")
Armin Rigo9ed73062005-12-14 18:10:45 +00001204 tail = elem.getroot().tail
1205 if not tail or tail[-1] != "\n":
1206 sys.stdout.write("\n")
1207
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001208# --------------------------------------------------------------------
1209# parsing
Armin Rigo9ed73062005-12-14 18:10:45 +00001210
1211##
1212# Parses an XML document into an element tree.
1213#
1214# @param source A filename or file object containing XML data.
1215# @param parser An optional parser instance. If not given, the
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001216# standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +00001217# @return An ElementTree instance
1218
1219def parse(source, parser=None):
1220 tree = ElementTree()
1221 tree.parse(source, parser)
1222 return tree
1223
1224##
1225# Parses an XML document into an element tree incrementally, and reports
1226# what's going on to the user.
1227#
1228# @param source A filename or file object containing XML data.
1229# @param events A list of events to report back. If omitted, only "end"
1230# events are reported.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001231# @param parser An optional parser instance. If not given, the
1232# standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +00001233# @return A (event, elem) iterator.
1234
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001235def iterparse(source, events=None, parser=None):
Antoine Pitroue033e062010-10-29 10:38:18 +00001236 close_source = False
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001237 if not hasattr(source, "read"):
1238 source = open(source, "rb")
Antoine Pitroue033e062010-10-29 10:38:18 +00001239 close_source = True
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001240 if not parser:
1241 parser = XMLParser(target=TreeBuilder())
Antoine Pitroue033e062010-10-29 10:38:18 +00001242 return _IterParseIterator(source, events, parser, close_source)
Armin Rigo9ed73062005-12-14 18:10:45 +00001243
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001244class _IterParseIterator:
1245
Antoine Pitroue033e062010-10-29 10:38:18 +00001246 def __init__(self, source, events, parser, close_source=False):
Armin Rigo9ed73062005-12-14 18:10:45 +00001247 self._file = source
Antoine Pitroue033e062010-10-29 10:38:18 +00001248 self._close_file = close_source
Armin Rigo9ed73062005-12-14 18:10:45 +00001249 self._events = []
1250 self._index = 0
Florent Xicluna91d51932011-11-01 23:31:09 +01001251 self._error = None
Armin Rigo9ed73062005-12-14 18:10:45 +00001252 self.root = self._root = None
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001253 self._parser = parser
Armin Rigo9ed73062005-12-14 18:10:45 +00001254 # wire up the parser for event reporting
1255 parser = self._parser._parser
1256 append = self._events.append
1257 if events is None:
1258 events = ["end"]
1259 for event in events:
1260 if event == "start":
1261 try:
1262 parser.ordered_attributes = 1
1263 parser.specified_attributes = 1
1264 def handler(tag, attrib_in, event=event, append=append,
1265 start=self._parser._start_list):
1266 append((event, start(tag, attrib_in)))
1267 parser.StartElementHandler = handler
1268 except AttributeError:
1269 def handler(tag, attrib_in, event=event, append=append,
1270 start=self._parser._start):
1271 append((event, start(tag, attrib_in)))
1272 parser.StartElementHandler = handler
1273 elif event == "end":
1274 def handler(tag, event=event, append=append,
1275 end=self._parser._end):
1276 append((event, end(tag)))
1277 parser.EndElementHandler = handler
1278 elif event == "start-ns":
1279 def handler(prefix, uri, event=event, append=append):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001280 append((event, (prefix or "", uri or "")))
Armin Rigo9ed73062005-12-14 18:10:45 +00001281 parser.StartNamespaceDeclHandler = handler
1282 elif event == "end-ns":
1283 def handler(prefix, event=event, append=append):
1284 append((event, None))
1285 parser.EndNamespaceDeclHandler = handler
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001286 else:
1287 raise ValueError("unknown event %r" % event)
Armin Rigo9ed73062005-12-14 18:10:45 +00001288
Georg Brandla18af4e2007-04-21 15:47:16 +00001289 def __next__(self):
Armin Rigo9ed73062005-12-14 18:10:45 +00001290 while 1:
1291 try:
1292 item = self._events[self._index]
Florent Xicluna91d51932011-11-01 23:31:09 +01001293 self._index += 1
Armin Rigo9ed73062005-12-14 18:10:45 +00001294 return item
Florent Xicluna91d51932011-11-01 23:31:09 +01001295 except IndexError:
1296 pass
1297 if self._error:
1298 e = self._error
1299 self._error = None
1300 raise e
1301 if self._parser is None:
1302 self.root = self._root
1303 if self._close_file:
1304 self._file.close()
1305 raise StopIteration
1306 # load event buffer
1307 del self._events[:]
1308 self._index = 0
1309 data = self._file.read(16384)
1310 if data:
1311 try:
1312 self._parser.feed(data)
1313 except SyntaxError as exc:
1314 self._error = exc
1315 else:
1316 self._root = self._parser.close()
1317 self._parser = None
Armin Rigo9ed73062005-12-14 18:10:45 +00001318
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001319 def __iter__(self):
1320 return self
Armin Rigo9ed73062005-12-14 18:10:45 +00001321
1322##
1323# Parses an XML document from a string constant. This function can
1324# be used to embed "XML literals" in Python code.
1325#
1326# @param source A string containing XML data.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001327# @param parser An optional parser instance. If not given, the
1328# standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +00001329# @return An Element instance.
1330# @defreturn Element
1331
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001332def XML(text, parser=None):
1333 if not parser:
1334 parser = XMLParser(target=TreeBuilder())
Armin Rigo9ed73062005-12-14 18:10:45 +00001335 parser.feed(text)
1336 return parser.close()
1337
1338##
1339# Parses an XML document from a string constant, and also returns
1340# a dictionary which maps from element id:s to elements.
1341#
1342# @param source A string containing XML data.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001343# @param parser An optional parser instance. If not given, the
1344# standard {@link XMLParser} parser is used.
Armin Rigo9ed73062005-12-14 18:10:45 +00001345# @return A tuple containing an Element instance and a dictionary.
1346# @defreturn (Element, dictionary)
1347
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001348def XMLID(text, parser=None):
1349 if not parser:
1350 parser = XMLParser(target=TreeBuilder())
Armin Rigo9ed73062005-12-14 18:10:45 +00001351 parser.feed(text)
1352 tree = parser.close()
1353 ids = {}
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001354 for elem in tree.iter():
Armin Rigo9ed73062005-12-14 18:10:45 +00001355 id = elem.get("id")
1356 if id:
1357 ids[id] = elem
1358 return tree, ids
1359
1360##
1361# Parses an XML document from a string constant. Same as {@link #XML}.
1362#
1363# @def fromstring(text)
1364# @param source A string containing XML data.
1365# @return An Element instance.
1366# @defreturn Element
1367
1368fromstring = XML
1369
1370##
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001371# Parses an XML document from a sequence of string fragments.
Armin Rigo9ed73062005-12-14 18:10:45 +00001372#
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001373# @param sequence A list or other sequence containing XML data fragments.
1374# @param parser An optional parser instance. If not given, the
1375# standard {@link XMLParser} parser is used.
1376# @return An Element instance.
1377# @defreturn Element
1378# @since 1.3
Armin Rigo9ed73062005-12-14 18:10:45 +00001379
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001380def fromstringlist(sequence, parser=None):
1381 if not parser:
1382 parser = XMLParser(target=TreeBuilder())
1383 for text in sequence:
1384 parser.feed(text)
1385 return parser.close()
1386
1387# --------------------------------------------------------------------
Armin Rigo9ed73062005-12-14 18:10:45 +00001388
1389##
1390# Generic element structure builder. This builder converts a sequence
1391# of {@link #TreeBuilder.start}, {@link #TreeBuilder.data}, and {@link
1392# #TreeBuilder.end} method calls to a well-formed element structure.
1393# <p>
1394# You can use this class to build an element structure using a custom XML
1395# parser, or a parser for some other XML-like format.
1396#
1397# @param element_factory Optional element factory. This factory
1398# is called to create new Element instances, as necessary.
1399
1400class TreeBuilder:
1401
1402 def __init__(self, element_factory=None):
1403 self._data = [] # data collector
1404 self._elem = [] # element stack
1405 self._last = None # last element
1406 self._tail = None # true if we're after an end tag
1407 if element_factory is None:
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001408 element_factory = Element
Armin Rigo9ed73062005-12-14 18:10:45 +00001409 self._factory = element_factory
1410
1411 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001412 # Flushes the builder buffers, and returns the toplevel document
Armin Rigo9ed73062005-12-14 18:10:45 +00001413 # element.
1414 #
1415 # @return An Element instance.
1416 # @defreturn Element
1417
1418 def close(self):
1419 assert len(self._elem) == 0, "missing end tags"
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001420 assert self._last is not None, "missing toplevel element"
Armin Rigo9ed73062005-12-14 18:10:45 +00001421 return self._last
1422
1423 def _flush(self):
1424 if self._data:
1425 if self._last is not None:
Neal Norwitz9d72bb42007-04-17 08:48:32 +00001426 text = "".join(self._data)
Armin Rigo9ed73062005-12-14 18:10:45 +00001427 if self._tail:
1428 assert self._last.tail is None, "internal error (tail)"
1429 self._last.tail = text
1430 else:
1431 assert self._last.text is None, "internal error (text)"
1432 self._last.text = text
1433 self._data = []
1434
1435 ##
1436 # Adds text to the current element.
1437 #
1438 # @param data A string. This should be either an 8-bit string
1439 # containing ASCII text, or a Unicode string.
1440
1441 def data(self, data):
1442 self._data.append(data)
1443
1444 ##
1445 # Opens a new element.
1446 #
1447 # @param tag The element name.
1448 # @param attrib A dictionary containing element attributes.
1449 # @return The opened element.
1450 # @defreturn Element
1451
1452 def start(self, tag, attrs):
1453 self._flush()
1454 self._last = elem = self._factory(tag, attrs)
1455 if self._elem:
1456 self._elem[-1].append(elem)
1457 self._elem.append(elem)
1458 self._tail = 0
1459 return elem
1460
1461 ##
1462 # Closes the current element.
1463 #
1464 # @param tag The element name.
1465 # @return The closed element.
1466 # @defreturn Element
1467
1468 def end(self, tag):
1469 self._flush()
1470 self._last = self._elem.pop()
1471 assert self._last.tag == tag,\
1472 "end tag mismatch (expected %s, got %s)" % (
1473 self._last.tag, tag)
1474 self._tail = 1
1475 return self._last
1476
1477##
1478# Element structure builder for XML source data, based on the
1479# <b>expat</b> parser.
1480#
1481# @keyparam target Target object. If omitted, the builder uses an
1482# instance of the standard {@link #TreeBuilder} class.
1483# @keyparam html Predefine HTML entities. This flag is not supported
1484# by the current implementation.
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001485# @keyparam encoding Optional encoding. If given, the value overrides
1486# the encoding specified in the XML file.
Armin Rigo9ed73062005-12-14 18:10:45 +00001487# @see #ElementTree
1488# @see #TreeBuilder
1489
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001490class XMLParser:
Armin Rigo9ed73062005-12-14 18:10:45 +00001491
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001492 def __init__(self, html=0, target=None, encoding=None):
Armin Rigo9ed73062005-12-14 18:10:45 +00001493 try:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001494 from xml.parsers import expat
Armin Rigo9ed73062005-12-14 18:10:45 +00001495 except ImportError:
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001496 try:
1497 import pyexpat as expat
1498 except ImportError:
1499 raise ImportError(
1500 "No module named expat; use SimpleXMLTreeBuilder instead"
1501 )
1502 parser = expat.ParserCreate(encoding, "}")
Armin Rigo9ed73062005-12-14 18:10:45 +00001503 if target is None:
1504 target = TreeBuilder()
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001505 # underscored names are provided for compatibility only
1506 self.parser = self._parser = parser
1507 self.target = self._target = target
1508 self._error = expat.error
Armin Rigo9ed73062005-12-14 18:10:45 +00001509 self._names = {} # name memo cache
1510 # callbacks
1511 parser.DefaultHandlerExpand = self._default
1512 parser.StartElementHandler = self._start
1513 parser.EndElementHandler = self._end
1514 parser.CharacterDataHandler = self._data
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001515 # optional callbacks
1516 parser.CommentHandler = self._comment
1517 parser.ProcessingInstructionHandler = self._pi
Armin Rigo9ed73062005-12-14 18:10:45 +00001518 # let expat do the buffering, if supported
1519 try:
1520 self._parser.buffer_text = 1
1521 except AttributeError:
1522 pass
1523 # use new-style attribute handling, if supported
1524 try:
1525 self._parser.ordered_attributes = 1
1526 self._parser.specified_attributes = 1
1527 parser.StartElementHandler = self._start_list
1528 except AttributeError:
1529 pass
Armin Rigo9ed73062005-12-14 18:10:45 +00001530 self._doctype = None
1531 self.entity = {}
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001532 try:
1533 self.version = "Expat %d.%d.%d" % expat.version_info
1534 except AttributeError:
1535 pass # unknown
1536
1537 def _raiseerror(self, value):
1538 err = ParseError(value)
1539 err.code = value.code
1540 err.position = value.lineno, value.offset
1541 raise err
Armin Rigo9ed73062005-12-14 18:10:45 +00001542
Armin Rigo9ed73062005-12-14 18:10:45 +00001543 def _fixname(self, key):
1544 # expand qname, and convert name string to ascii, if possible
1545 try:
1546 name = self._names[key]
1547 except KeyError:
1548 name = key
1549 if "}" in name:
1550 name = "{" + name
Martin v. Löwisf30bb0e2007-07-28 11:40:46 +00001551 self._names[key] = name
Armin Rigo9ed73062005-12-14 18:10:45 +00001552 return name
1553
1554 def _start(self, tag, attrib_in):
1555 fixname = self._fixname
1556 tag = fixname(tag)
1557 attrib = {}
1558 for key, value in attrib_in.items():
Martin v. Löwisf30bb0e2007-07-28 11:40:46 +00001559 attrib[fixname(key)] = value
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001560 return self.target.start(tag, attrib)
Armin Rigo9ed73062005-12-14 18:10:45 +00001561
1562 def _start_list(self, tag, attrib_in):
1563 fixname = self._fixname
1564 tag = fixname(tag)
1565 attrib = {}
1566 if attrib_in:
1567 for i in range(0, len(attrib_in), 2):
Martin v. Löwisf30bb0e2007-07-28 11:40:46 +00001568 attrib[fixname(attrib_in[i])] = attrib_in[i+1]
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001569 return self.target.start(tag, attrib)
Armin Rigo9ed73062005-12-14 18:10:45 +00001570
1571 def _data(self, text):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001572 return self.target.data(text)
Armin Rigo9ed73062005-12-14 18:10:45 +00001573
1574 def _end(self, tag):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001575 return self.target.end(self._fixname(tag))
1576
1577 def _comment(self, data):
1578 try:
1579 comment = self.target.comment
1580 except AttributeError:
1581 pass
1582 else:
1583 return comment(data)
1584
1585 def _pi(self, target, data):
1586 try:
1587 pi = self.target.pi
1588 except AttributeError:
1589 pass
1590 else:
1591 return pi(target, data)
Armin Rigo9ed73062005-12-14 18:10:45 +00001592
1593 def _default(self, text):
1594 prefix = text[:1]
1595 if prefix == "&":
1596 # deal with undefined entities
1597 try:
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001598 self.target.data(self.entity[text[1:-1]])
Armin Rigo9ed73062005-12-14 18:10:45 +00001599 except KeyError:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001600 from xml.parsers import expat
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001601 err = expat.error(
Armin Rigo9ed73062005-12-14 18:10:45 +00001602 "undefined entity %s: line %d, column %d" %
1603 (text, self._parser.ErrorLineNumber,
1604 self._parser.ErrorColumnNumber)
1605 )
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001606 err.code = 11 # XML_ERROR_UNDEFINED_ENTITY
1607 err.lineno = self._parser.ErrorLineNumber
1608 err.offset = self._parser.ErrorColumnNumber
1609 raise err
Armin Rigo9ed73062005-12-14 18:10:45 +00001610 elif prefix == "<" and text[:9] == "<!DOCTYPE":
1611 self._doctype = [] # inside a doctype declaration
1612 elif self._doctype is not None:
1613 # parse doctype contents
1614 if prefix == ">":
1615 self._doctype = None
1616 return
Neal Norwitz9d72bb42007-04-17 08:48:32 +00001617 text = text.strip()
Armin Rigo9ed73062005-12-14 18:10:45 +00001618 if not text:
1619 return
1620 self._doctype.append(text)
1621 n = len(self._doctype)
1622 if n > 2:
1623 type = self._doctype[1]
1624 if type == "PUBLIC" and n == 4:
1625 name, type, pubid, system = self._doctype
1626 elif type == "SYSTEM" and n == 3:
1627 name, type, system = self._doctype
1628 pubid = None
1629 else:
1630 return
1631 if pubid:
1632 pubid = pubid[1:-1]
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001633 if hasattr(self.target, "doctype"):
1634 self.target.doctype(name, pubid, system[1:-1])
1635 elif self.doctype is not self._XMLParser__doctype:
1636 # warn about deprecated call
1637 self._XMLParser__doctype(name, pubid, system[1:-1])
1638 self.doctype(name, pubid, system[1:-1])
Armin Rigo9ed73062005-12-14 18:10:45 +00001639 self._doctype = None
1640
1641 ##
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001642 # (Deprecated) Handles a doctype declaration.
Armin Rigo9ed73062005-12-14 18:10:45 +00001643 #
1644 # @param name Doctype name.
1645 # @param pubid Public identifier.
1646 # @param system System identifier.
1647
1648 def doctype(self, name, pubid, system):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001649 """This method of XMLParser is deprecated."""
1650 warnings.warn(
1651 "This method of XMLParser is deprecated. Define doctype() "
1652 "method on the TreeBuilder target.",
1653 DeprecationWarning,
1654 )
1655
1656 # sentinel, if doctype is redefined in a subclass
1657 __doctype = doctype
Armin Rigo9ed73062005-12-14 18:10:45 +00001658
1659 ##
1660 # Feeds data to the parser.
1661 #
1662 # @param data Encoded data.
1663
1664 def feed(self, data):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001665 try:
1666 self._parser.Parse(data, 0)
1667 except self._error as v:
1668 self._raiseerror(v)
Armin Rigo9ed73062005-12-14 18:10:45 +00001669
1670 ##
1671 # Finishes feeding data to the parser.
1672 #
1673 # @return An element structure.
1674 # @defreturn Element
1675
1676 def close(self):
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001677 try:
1678 self._parser.Parse("", 1) # end of data
1679 except self._error as v:
1680 self._raiseerror(v)
1681 tree = self.target.close()
1682 del self.target, self._parser # get rid of circular references
Armin Rigo9ed73062005-12-14 18:10:45 +00001683 return tree
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001684
1685# compatibility
Florent Xiclunaf15351d2010-03-13 23:24:31 +00001686XMLTreeBuilder = XMLParser
1687
1688# workaround circular import.
1689try:
1690 from ElementC14N import _serialize_c14n
1691 _serialize["c14n"] = _serialize_c14n
1692except ImportError:
1693 pass