blob: 56f545c0e6d83e81eec4859303d937d3b8e9b5cd [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`xml.dom.pulldom` --- Support for building partial DOM trees
2=================================================================
3
4.. module:: xml.dom.pulldom
5 :synopsis: Support for building partial DOM trees from SAX events.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04006
Georg Brandl116aa622007-08-15 14:28:22 +00007.. moduleauthor:: Paul Prescod <paul@prescod.net>
8
Raymond Hettinger3029aff2011-02-10 08:09:36 +00009**Source code:** :source:`Lib/xml/dom/pulldom.py`
10
11--------------
Georg Brandl116aa622007-08-15 14:28:22 +000012
Eli Bendersky3fb05a92012-03-16 14:37:14 +020013The :mod:`xml.dom.pulldom` module provides a "pull parser" which can also be
14asked to produce DOM-accessible fragments of the document where necessary. The
15basic concept involves pulling "events" from a stream of incoming XML and
16processing them. In contrast to SAX which also employs an event-driven
17processing model together with callbacks, the user of a pull parser is
18responsible for explicitly pulling events from the stream, looping over those
19events until either processing is finished or an error condition occurs.
20
Christian Heimes7380a672013-03-26 17:35:55 +010021
22.. warning::
23
24 The :mod:`xml.dom.pulldom` module is not secure against
25 maliciously constructed data. If you need to parse untrusted or
26 unauthenticated data see :ref:`xml-vulnerabilities`.
27
28
Eli Bendersky3fb05a92012-03-16 14:37:14 +020029Example::
30
31 from xml.dom import pulldom
32
33 doc = pulldom.parse('sales_items.xml')
34 for event, node in doc:
35 if event == pulldom.START_ELEMENT and node.tagName == 'item':
36 if int(node.getAttribute('price')) > 50:
37 doc.expandNode(node)
38 print(node.toxml())
39
40``event`` is a constant and can be one of:
41
42* :data:`START_ELEMENT`
43* :data:`END_ELEMENT`
44* :data:`COMMENT`
45* :data:`START_DOCUMENT`
46* :data:`END_DOCUMENT`
47* :data:`CHARACTERS`
48* :data:`PROCESSING_INSTRUCTION`
49* :data:`IGNORABLE_WHITESPACE`
50
Martin Panter7462b6492015-11-02 03:37:02 +000051``node`` is an object of type :class:`xml.dom.minidom.Document`,
Eli Bendersky3fb05a92012-03-16 14:37:14 +020052:class:`xml.dom.minidom.Element` or :class:`xml.dom.minidom.Text`.
53
54Since the document is treated as a "flat" stream of events, the document "tree"
55is implicitly traversed and the desired elements are found regardless of their
Eli Bendersky969b8da2012-03-16 16:49:58 +020056depth in the tree. In other words, one does not need to consider hierarchical
57issues such as recursive searching of the document nodes, although if the
58context of elements were important, one would either need to maintain some
59context-related state (i.e. remembering where one is in the document at any
60given point) or to make use of the :func:`DOMEventStream.expandNode` method
61and switch to DOM-related processing.
Georg Brandl116aa622007-08-15 14:28:22 +000062
63
Eli Bendersky3fb05a92012-03-16 14:37:14 +020064.. class:: PullDom(documentFactory=None)
Georg Brandl116aa622007-08-15 14:28:22 +000065
Eli Bendersky3fb05a92012-03-16 14:37:14 +020066 Subclass of :class:`xml.sax.handler.ContentHandler`.
Georg Brandl116aa622007-08-15 14:28:22 +000067
68
Georg Brandl7f01a132009-09-16 15:58:14 +000069.. class:: SAX2DOM(documentFactory=None)
Georg Brandl116aa622007-08-15 14:28:22 +000070
Eli Bendersky3fb05a92012-03-16 14:37:14 +020071 Subclass of :class:`xml.sax.handler.ContentHandler`.
Georg Brandl116aa622007-08-15 14:28:22 +000072
73
Georg Brandl7f01a132009-09-16 15:58:14 +000074.. function:: parse(stream_or_string, parser=None, bufsize=None)
Georg Brandl116aa622007-08-15 14:28:22 +000075
Eli Bendersky3fb05a92012-03-16 14:37:14 +020076 Return a :class:`DOMEventStream` from the given input. *stream_or_string* may be
Martin Panterd210a702016-08-20 08:03:06 +000077 either a file name, or a file-like object. *parser*, if given, must be an
Serhiy Storchaka15e65902013-08-29 10:28:44 +030078 :class:`~xml.sax.xmlreader.XMLReader` object. This function will change the
79 document handler of the
Eli Bendersky3fb05a92012-03-16 14:37:14 +020080 parser and activate namespace support; other parser configuration (like
81 setting an entity resolver) must have been done in advance.
82
83If you have XML in a string, you can use the :func:`parseString` function instead:
Georg Brandl116aa622007-08-15 14:28:22 +000084
Georg Brandl7f01a132009-09-16 15:58:14 +000085.. function:: parseString(string, parser=None)
Georg Brandl116aa622007-08-15 14:28:22 +000086
Eli Bendersky969b8da2012-03-16 16:49:58 +020087 Return a :class:`DOMEventStream` that represents the (Unicode) *string*.
Georg Brandl116aa622007-08-15 14:28:22 +000088
89.. data:: default_bufsize
90
91 Default value for the *bufsize* parameter to :func:`parse`.
92
Georg Brandl55ac8f02007-09-01 13:51:09 +000093 The value of this variable can be changed before calling :func:`parse` and
94 the new value will take effect.
Georg Brandl116aa622007-08-15 14:28:22 +000095
Georg Brandl116aa622007-08-15 14:28:22 +000096.. _domeventstream-objects:
97
98DOMEventStream Objects
99----------------------
100
Eli Bendersky3fb05a92012-03-16 14:37:14 +0200101.. class:: DOMEventStream(stream, parser, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000102
Berker Peksag84a13fb2018-08-11 09:05:04 +0300103 .. deprecated:: 3.8
104 Support for :meth:`sequence protocol <__getitem__>` is deprecated.
Georg Brandl116aa622007-08-15 14:28:22 +0000105
Eli Bendersky969b8da2012-03-16 16:49:58 +0200106 .. method:: getEvent()
Georg Brandl116aa622007-08-15 14:28:22 +0000107
Eli Bendersky3fb05a92012-03-16 14:37:14 +0200108 Return a tuple containing *event* and the current *node* as
Eli Bendersky969b8da2012-03-16 16:49:58 +0200109 :class:`xml.dom.minidom.Document` if event equals :data:`START_DOCUMENT`,
110 :class:`xml.dom.minidom.Element` if event equals :data:`START_ELEMENT` or
111 :data:`END_ELEMENT` or :class:`xml.dom.minidom.Text` if event equals
112 :data:`CHARACTERS`.
delirious-lettuce3378b202017-05-19 14:37:57 -0600113 The current node does not contain information about its children, unless
Eli Bendersky3fb05a92012-03-16 14:37:14 +0200114 :func:`expandNode` is called.
Georg Brandl116aa622007-08-15 14:28:22 +0000115
Eli Bendersky969b8da2012-03-16 16:49:58 +0200116 .. method:: expandNode(node)
Georg Brandl116aa622007-08-15 14:28:22 +0000117
Eli Bendersky3fb05a92012-03-16 14:37:14 +0200118 Expands all children of *node* into *node*. Example::
Georg Brandl116aa622007-08-15 14:28:22 +0000119
Berker Peksag13b3acd2016-03-30 16:28:43 +0300120 from xml.dom import pulldom
121
Eli Bendersky3fb05a92012-03-16 14:37:14 +0200122 xml = '<html><title>Foo</title> <p>Some text <div>and more</div></p> </html>'
123 doc = pulldom.parseString(xml)
124 for event, node in doc:
125 if event == pulldom.START_ELEMENT and node.tagName == 'p':
126 # Following statement only prints '<p/>'
127 print(node.toxml())
Berker Peksag13b3acd2016-03-30 16:28:43 +0300128 doc.expandNode(node)
Eli Bendersky3fb05a92012-03-16 14:37:14 +0200129 # Following statement prints node with all its children '<p>Some text <div>and more</div></p>'
130 print(node.toxml())
131
132 .. method:: DOMEventStream.reset()
Georg Brandl116aa622007-08-15 14:28:22 +0000133