1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
|
# iterparse -- event-driven parsing
DEF __ITERPARSE_CHUNK_SIZE = 32768
ctypedef enum _IterparseEventFilter:
ITERPARSE_FILTER_START = 1
ITERPARSE_FILTER_END = 2
ITERPARSE_FILTER_START_NS = 4
ITERPARSE_FILTER_END_NS = 8
ITERPARSE_FILTER_COMMENT = 16
ITERPARSE_FILTER_PI = 32
cdef int _buildIterparseEventFilter(events) except -1:
cdef int event_filter
event_filter = 0
for event in events:
if event == u'start':
event_filter |= ITERPARSE_FILTER_START
elif event == u'end':
event_filter |= ITERPARSE_FILTER_END
elif event == u'start-ns':
event_filter |= ITERPARSE_FILTER_START_NS
elif event == u'end-ns':
event_filter |= ITERPARSE_FILTER_END_NS
elif event == u'comment':
event_filter |= ITERPARSE_FILTER_COMMENT
elif event == u'pi':
event_filter |= ITERPARSE_FILTER_PI
else:
raise ValueError, u"invalid event name '%s'" % event
return event_filter
cdef int _countNsDefs(xmlNode* c_node):
cdef xmlNs* c_ns
cdef int count
count = 0
c_ns = c_node.nsDef
while c_ns is not NULL:
count += 1
c_ns = c_ns.next
return count
cdef int _appendStartNsEvents(xmlNode* c_node, list event_list):
cdef xmlNs* c_ns
cdef int count
count = 0
c_ns = c_node.nsDef
while c_ns is not NULL:
ns_tuple = (funicode(c_ns.prefix) if c_ns.prefix is not NULL else '',
funicode(c_ns.href))
event_list.append( (u"start-ns", ns_tuple) )
count += 1
c_ns = c_ns.next
return count
@cython.final
@cython.internal
cdef class _IterparseContext(_ParserContext):
cdef xmlparser.startElementNsSAX2Func _origSaxStart
cdef xmlparser.endElementNsSAX2Func _origSaxEnd
cdef xmlparser.startElementSAXFunc _origSaxStartNoNs
cdef xmlparser.endElementSAXFunc _origSaxEndNoNs
cdef xmlparser.startDocumentSAXFunc _origSaxStartDocument
cdef xmlparser.commentSAXFunc _origSaxComment
cdef xmlparser.processingInstructionSAXFunc _origSaxPI
cdef _Element _root
cdef _Document _doc
cdef int _event_filter
cdef int _event_index
cdef list _events
cdef list _ns_stack
cdef list _node_stack
cdef tuple _tag_tuple
cdef _MultiTagMatcher _matcher
def __cinit__(self):
self._ns_stack = []
self._node_stack = []
self._events = []
self._event_index = 0
cdef void _initParserContext(self, xmlparser.xmlParserCtxt* c_ctxt):
u"""wrap original SAX2 callbacks"""
cdef xmlparser.xmlSAXHandler* sax
_ParserContext._initParserContext(self, c_ctxt)
sax = c_ctxt.sax
self._origSaxStartDocument = sax.startDocument
sax.startDocument = _iterparseSaxStartDocument
self._origSaxStart = sax.startElementNs
self._origSaxStartNoNs = sax.startElement
# only override start event handler if needed
if self._event_filter == 0 or \
self._event_filter & (ITERPARSE_FILTER_START |
ITERPARSE_FILTER_START_NS |
ITERPARSE_FILTER_END_NS):
sax.startElementNs = <xmlparser.startElementNsSAX2Func>_iterparseSaxStart
sax.startElement = <xmlparser.startElementSAXFunc>_iterparseSaxStartNoNs
self._origSaxEnd = sax.endElementNs
self._origSaxEndNoNs = sax.endElement
# only override end event handler if needed
if self._event_filter == 0 or \
self._event_filter & (ITERPARSE_FILTER_END |
ITERPARSE_FILTER_END_NS):
sax.endElementNs = <xmlparser.endElementNsSAX2Func>_iterparseSaxEnd
sax.endElement = <xmlparser.endElementSAXFunc>_iterparseSaxEndNoNs
self._origSaxComment = sax.comment
if self._event_filter & ITERPARSE_FILTER_COMMENT:
sax.comment = <xmlparser.commentSAXFunc>_iterparseSaxComment
self._origSaxPI = sax.processingInstruction
if self._event_filter & ITERPARSE_FILTER_PI:
sax.processingInstruction = <xmlparser.processingInstructionSAXFunc>_iterparseSaxPI
cdef _setEventFilter(self, events, tag):
self._event_filter = _buildIterparseEventFilter(events)
if tag is None or tag == '*':
self._matcher = None
else:
self._matcher = _MultiTagMatcher(tag)
cdef int startDocument(self, xmlDoc* c_doc) except -1:
self._doc = _documentFactory(c_doc, None)
if self._matcher is not None:
self._matcher.cacheTags(self._doc, True) # force entry in libxml2 dict
return 0
cdef int startNode(self, xmlNode* c_node) except -1:
cdef xmlNs* c_ns
cdef int ns_count = 0
if self._event_filter & ITERPARSE_FILTER_START_NS:
ns_count = _appendStartNsEvents(c_node, self._events)
elif self._event_filter & ITERPARSE_FILTER_END_NS:
ns_count = _countNsDefs(c_node)
if self._event_filter & ITERPARSE_FILTER_END_NS:
self._ns_stack.append(ns_count)
if self._root is None:
self._root = self._doc.getroot()
if self._matcher is None or self._matcher.matches(c_node):
node = _elementFactory(self._doc, c_node)
if self._event_filter & ITERPARSE_FILTER_END:
self._node_stack.append(node)
if self._event_filter & ITERPARSE_FILTER_START:
self._events.append( (u"start", node) )
return 0
cdef int endNode(self, xmlNode* c_node) except -1:
cdef xmlNs* c_ns
cdef int ns_count
if self._event_filter & ITERPARSE_FILTER_END:
if self._matcher is None or self._matcher.matches(c_node):
if self._event_filter & (ITERPARSE_FILTER_START |
ITERPARSE_FILTER_START_NS |
ITERPARSE_FILTER_END_NS):
node = self._node_stack.pop()
else:
if self._root is None:
self._root = self._doc.getroot()
node = _elementFactory(self._doc, c_node)
self._events.append( (u"end", node) )
if self._event_filter & ITERPARSE_FILTER_END_NS:
ns_count = self._ns_stack.pop()
if ns_count > 0:
event = (u"end-ns", None)
for i from 0 <= i < ns_count:
self._events.append(event)
return 0
cdef int pushEvent(self, event, xmlNode* c_node) except -1:
cdef _Element root
if self._root is None:
root = self._doc.getroot()
if root is not None and root._c_node.type == tree.XML_ELEMENT_NODE:
self._root = root
node = _elementFactory(self._doc, c_node)
self._events.append( (event, node) )
return 0
cdef void _assureDocGetsFreed(self):
if self._c_ctxt.myDoc is not NULL and self._doc is None:
tree.xmlFreeDoc(self._c_ctxt.myDoc)
self._c_ctxt.myDoc = NULL
cdef inline void _pushSaxStartDocument(_IterparseContext context,
xmlDoc* c_doc):
try:
context.startDocument(c_doc)
except:
if context._c_ctxt.errNo == xmlerror.XML_ERR_OK:
context._c_ctxt.errNo = xmlerror.XML_ERR_INTERNAL_ERROR
context._c_ctxt.disableSAX = 1
context._store_raised()
cdef inline void _pushSaxStartEvent(_IterparseContext context,
xmlNode* c_node):
try:
if context._c_ctxt.html:
_fixHtmlDictNodeNames(context._c_ctxt.dict, c_node)
context.startNode(c_node)
except:
if context._c_ctxt.errNo == xmlerror.XML_ERR_OK:
context._c_ctxt.errNo = xmlerror.XML_ERR_INTERNAL_ERROR
context._c_ctxt.disableSAX = 1
context._store_raised()
cdef inline void _pushSaxEndEvent(_IterparseContext context,
xmlNode* c_node):
try:
context.endNode(c_node)
except:
if context._c_ctxt.errNo == xmlerror.XML_ERR_OK:
context._c_ctxt.errNo = xmlerror.XML_ERR_INTERNAL_ERROR
context._c_ctxt.disableSAX = 1
context._store_raised()
cdef inline void _pushSaxEvent(_IterparseContext context,
event, xmlNode* c_node):
try:
context.pushEvent(event, c_node)
except:
if context._c_ctxt.errNo == xmlerror.XML_ERR_OK:
context._c_ctxt.errNo = xmlerror.XML_ERR_INTERNAL_ERROR
context._c_ctxt.disableSAX = 1
context._store_raised()
cdef void _iterparseSaxStartDocument(void* ctxt):
cdef xmlparser.xmlParserCtxt* c_ctxt
c_ctxt = <xmlparser.xmlParserCtxt*>ctxt
context = <_IterparseContext>c_ctxt._private
context._origSaxStartDocument(ctxt)
if c_ctxt.myDoc and c_ctxt.dict and not c_ctxt.myDoc.dict:
# I have no idea why libxml2 disables this - we need it
c_ctxt.dictNames = 1
c_ctxt.myDoc.dict = c_ctxt.dict
_pushSaxStartDocument(context, c_ctxt.myDoc)
cdef void _iterparseSaxStart(void* ctxt, char* localname, char* prefix,
char* URI, int nb_namespaces, char** namespaces,
int nb_attributes, int nb_defaulted,
char** attributes):
cdef xmlparser.xmlParserCtxt* c_ctxt
cdef _IterparseContext context
c_ctxt = <xmlparser.xmlParserCtxt*>ctxt
context = <_IterparseContext>c_ctxt._private
context._origSaxStart(
ctxt, localname, prefix, URI,
nb_namespaces, namespaces,
nb_attributes, nb_defaulted, attributes)
_pushSaxStartEvent(context, c_ctxt.node)
cdef void _iterparseSaxEnd(void* ctxt, char* localname, char* prefix, char* URI):
cdef xmlparser.xmlParserCtxt* c_ctxt
cdef _IterparseContext context
c_ctxt = <xmlparser.xmlParserCtxt*>ctxt
context = <_IterparseContext>c_ctxt._private
_pushSaxEndEvent(context, c_ctxt.node)
context._origSaxEnd(ctxt, localname, prefix, URI)
cdef void _iterparseSaxStartNoNs(void* ctxt, char* name, char** attributes):
cdef xmlparser.xmlParserCtxt* c_ctxt
cdef _IterparseContext context
c_ctxt = <xmlparser.xmlParserCtxt*>ctxt
context = <_IterparseContext>c_ctxt._private
context._origSaxStartNoNs(ctxt, name, attributes)
_pushSaxStartEvent(context, c_ctxt.node)
cdef void _iterparseSaxEndNoNs(void* ctxt, char* name):
cdef xmlparser.xmlParserCtxt* c_ctxt
cdef _IterparseContext context
c_ctxt = <xmlparser.xmlParserCtxt*>ctxt
context = <_IterparseContext>c_ctxt._private
_pushSaxEndEvent(context, c_ctxt.node)
context._origSaxEndNoNs(ctxt, name)
cdef void _iterparseSaxComment(void* ctxt, char* text):
cdef xmlNode* c_node
cdef xmlparser.xmlParserCtxt* c_ctxt
cdef _IterparseContext context
c_ctxt = <xmlparser.xmlParserCtxt*>ctxt
context = <_IterparseContext>c_ctxt._private
context._origSaxComment(ctxt, text)
c_node = _iterparseFindLastNode(c_ctxt)
if c_node is not NULL:
_pushSaxEvent(context, u"comment", c_node)
cdef void _iterparseSaxPI(void* ctxt, char* target, char* data):
cdef xmlNode* c_node
cdef xmlparser.xmlParserCtxt* c_ctxt
cdef _IterparseContext context
c_ctxt = <xmlparser.xmlParserCtxt*>ctxt
context = <_IterparseContext>c_ctxt._private
context._origSaxPI(ctxt, target, data)
c_node = _iterparseFindLastNode(c_ctxt)
if c_node is not NULL:
_pushSaxEvent(context, u"pi", c_node)
cdef inline xmlNode* _iterparseFindLastNode(xmlparser.xmlParserCtxt* c_ctxt):
# this mimics what libxml2 creates for comments/PIs
if c_ctxt.inSubset == 1:
return c_ctxt.myDoc.intSubset.last
elif c_ctxt.inSubset == 2:
return c_ctxt.myDoc.extSubset.last
elif c_ctxt.node is NULL:
return c_ctxt.myDoc.last
elif c_ctxt.node.type == tree.XML_ELEMENT_NODE:
return c_ctxt.node.last
else:
return c_ctxt.node.next
cdef class iterparse(_BaseParser):
u"""iterparse(self, source, events=("end",), tag=None, attribute_defaults=False, dtd_validation=False, load_dtd=False, no_network=True, remove_blank_text=False, remove_comments=False, remove_pis=False, encoding=None, html=False, huge_tree=False, schema=None)
Incremental parser.
Parses XML into a tree and generates tuples (event, element) in a
SAX-like fashion. ``event`` is any of 'start', 'end', 'start-ns',
'end-ns'.
For 'start' and 'end', ``element`` is the Element that the parser just
found opening or closing. For 'start-ns', it is a tuple (prefix, URI) of
a new namespace declaration. For 'end-ns', it is simply None. Note that
all start and end events are guaranteed to be properly nested.
The keyword argument ``events`` specifies a sequence of event type names
that should be generated. By default, only 'end' events will be
generated.
The additional ``tag`` argument restricts the 'start' and 'end' events to
those elements that match the given tag. By default, events are generated
for all elements. Note that the 'start-ns' and 'end-ns' events are not
impacted by this restriction.
The other keyword arguments in the constructor are mainly based on the
libxml2 parser configuration. A DTD will also be loaded if validation or
attribute default values are requested.
Available boolean keyword arguments:
- attribute_defaults: read default attributes from DTD
- dtd_validation: validate (if DTD is available)
- load_dtd: use DTD for parsing
- no_network: prevent network access for related files
- remove_blank_text: discard blank text nodes
- remove_comments: discard comments
- remove_pis: discard processing instructions
- strip_cdata: replace CDATA sections by normal text content (default: True)
- compact: safe memory for short text content (default: True)
- resolve_entities: replace entities by their text value (default: True)
- huge_tree: disable security restrictions and support very deep trees
and very long text content (only affects libxml2 2.7+)
Other keyword arguments:
- encoding: override the document encoding
- schema: an XMLSchema to validate against
"""
cdef object _tag
cdef object _events
cdef readonly object root
cdef object _source
cdef object _buffer
cdef int (*_parse_chunk)(xmlparser.xmlParserCtxt* ctxt,
char* chunk, int size, int terminate) nogil
cdef bint _close_source_after_read
def __init__(self, source, events=(u"end",), *, tag=None,
attribute_defaults=False, dtd_validation=False,
load_dtd=False, no_network=True, remove_blank_text=False,
compact=True, resolve_entities=True, remove_comments=False,
remove_pis=False, strip_cdata=True, encoding=None,
html=False, huge_tree=False, XMLSchema schema=None):
cdef _IterparseContext context
cdef char* c_encoding
cdef int parse_options
if not hasattr(source, 'read'):
filename = _encodeFilename(source)
if not python.IS_PYTHON3:
source = filename
source = open(source, 'rb')
self._close_source_after_read = True
else:
filename = _encodeFilename(_getFilenameForFile(source))
self._close_source_after_read = False
self._source = source
if html:
# make sure we're not looking for namespaces
events = tuple([ event for event in events
if event != u'start-ns' and event != u'end-ns' ])
self._events = events
self._tag = tag
parse_options = _XML_DEFAULT_PARSE_OPTIONS
if load_dtd:
parse_options = parse_options | xmlparser.XML_PARSE_DTDLOAD
if dtd_validation:
parse_options = parse_options | (xmlparser.XML_PARSE_DTDVALID |
xmlparser.XML_PARSE_DTDLOAD)
if attribute_defaults:
parse_options = parse_options | (xmlparser.XML_PARSE_DTDATTR |
xmlparser.XML_PARSE_DTDLOAD)
if remove_blank_text:
parse_options = parse_options | xmlparser.XML_PARSE_NOBLANKS
if huge_tree:
parse_options = parse_options | xmlparser.XML_PARSE_HUGE
if not no_network:
parse_options = parse_options ^ xmlparser.XML_PARSE_NONET
if not compact:
parse_options = parse_options ^ xmlparser.XML_PARSE_COMPACT
if not resolve_entities:
parse_options = parse_options ^ xmlparser.XML_PARSE_NOENT
if not strip_cdata:
parse_options = parse_options ^ xmlparser.XML_PARSE_NOCDATA
_BaseParser.__init__(self, parse_options, html, schema,
remove_comments, remove_pis, strip_cdata,
None, filename, encoding)
if self._for_html:
self._parse_chunk = htmlparser.htmlParseChunk
else:
self._parse_chunk = xmlparser.xmlParseChunk
context = <_IterparseContext>self._getPushParserContext()
__GLOBAL_PARSER_CONTEXT.initParserDict(context._c_ctxt)
if self._default_encoding is not None:
if self._for_html:
error = _htmlCtxtResetPush(
context._c_ctxt, NULL, 0,
_cstr(self._default_encoding), self._parse_options)
else:
xmlparser.xmlCtxtUseOptions(
context._c_ctxt, self._parse_options)
error = xmlparser.xmlCtxtResetPush(
context._c_ctxt, NULL, 0, NULL,
_cstr(self._default_encoding))
context.prepare()
# parser will not be unlocked - no other methods supported
property error_log:
u"""The error log of the last (or current) parser run.
"""
def __get__(self):
cdef _ParserContext context
context = self._getPushParserContext()
return context._error_log.copy()
cdef _ParserContext _createContext(self, target):
cdef _IterparseContext context
context = _IterparseContext()
context._setEventFilter(self._events, self._tag)
return context
cdef _close_source(self):
if self._source is None or not self._close_source_after_read:
return
try:
close = self._source.close
except AttributeError:
close = None
finally:
self._source = None
if close is not None:
close()
def copy(self):
raise TypeError, u"iterparse parsers cannot be copied"
def __iter__(self):
return self
def __next__(self):
cdef _IterparseContext context
if self._source is None:
raise StopIteration
context = <_IterparseContext>self._push_parser_context
events = context._events
if len(events) <= context._event_index:
self._read_more_events(context)
item = events[context._event_index]
context._event_index += 1
return item
cdef _read_more_events(self, _IterparseContext context):
cdef stdio.FILE* c_stream
cdef char* c_data
cdef Py_ssize_t c_data_len
cdef xmlparser.xmlParserCtxt* pctxt = context._c_ctxt
cdef int error = 0, done = 0
events = context._events
del events[:]
context._event_index = 0
c_stream = python.PyFile_AsFile(self._source)
while not events:
if c_stream is NULL:
data = self._source.read(__ITERPARSE_CHUNK_SIZE)
if not python.PyBytes_Check(data):
self._close_source()
raise TypeError, u"reading file objects must return plain strings"
c_data_len = python.PyBytes_GET_SIZE(data)
c_data = _cstr(data)
done = (c_data_len == 0)
error = self._parse_chunk(pctxt, c_data, c_data_len, done)
else:
if self._buffer is None:
self._buffer = python.PyBytes_FromStringAndSize(
NULL, __ITERPARSE_CHUNK_SIZE)
c_data = _cstr(self._buffer)
with nogil:
c_data_len = stdio.fread(
c_data, 1, __ITERPARSE_CHUNK_SIZE, c_stream)
if c_data_len < __ITERPARSE_CHUNK_SIZE:
if stdio.ferror(c_stream):
error = 1
elif stdio.feof(c_stream):
done = 1
if not error:
error = self._parse_chunk(
pctxt, c_data, c_data_len, done)
if error or done:
self._buffer = None
break
if not error and context._validator is not None:
error = not context._validator.isvalid()
if error:
self._close_source()
del events[:]
context._assureDocGetsFreed()
_raiseParseError(pctxt, self._filename, context._error_log)
if not events:
self.root = context._root
self._close_source()
raise StopIteration
cdef class iterwalk:
u"""iterwalk(self, element_or_tree, events=("end",), tag=None)
A tree walker that generates events from an existing tree as if it
was parsing XML data with ``iterparse()``.
"""
cdef _MultiTagMatcher _matcher
cdef list _node_stack
cdef int _index
cdef list _events
cdef object _pop_event
cdef int _event_filter
def __init__(self, element_or_tree, events=(u"end",), tag=None):
cdef _Element root
cdef int ns_count
root = _rootNodeOrRaise(element_or_tree)
self._event_filter = _buildIterparseEventFilter(events)
if tag is None or tag == '*':
self._matcher = None
else:
self._matcher = _MultiTagMatcher(tag)
self._node_stack = []
self._events = []
self._pop_event = self._events.pop
if self._event_filter:
self._index = 0
ns_count = self._start_node(root)
self._node_stack.append( (root, ns_count) )
else:
self._index = -1
def __iter__(self):
return self
def __next__(self):
cdef xmlNode* c_child
cdef _Element node
cdef _Element next_node
cdef int ns_count = 0
if self._events:
return self._pop_event(0)
if self._matcher is not None and self._index >= 0:
node = self._node_stack[self._index][0]
self._matcher.cacheTags(node._doc)
# find next node
while self._index >= 0:
node = self._node_stack[self._index][0]
c_child = _findChildForwards(node._c_node, 0)
if c_child is not NULL:
# try children
next_node = _elementFactory(node._doc, c_child)
else:
# back off
next_node = None
while next_node is None:
# back off through parents
self._index -= 1
node = self._end_node()
if self._index < 0:
break
next_node = node.getnext()
if next_node is not None:
if self._event_filter & (ITERPARSE_FILTER_START |
ITERPARSE_FILTER_START_NS):
ns_count = self._start_node(next_node)
elif self._event_filter & ITERPARSE_FILTER_END_NS:
ns_count = _countNsDefs(next_node._c_node)
self._node_stack.append( (next_node, ns_count) )
self._index += 1
if self._events:
return self._pop_event(0)
raise StopIteration
cdef int _start_node(self, _Element node):
cdef int ns_count
if self._event_filter & ITERPARSE_FILTER_START_NS:
ns_count = _appendStartNsEvents(node._c_node, self._events)
elif self._event_filter & ITERPARSE_FILTER_END_NS:
ns_count = _countNsDefs(node._c_node)
else:
ns_count = 0
if self._event_filter & ITERPARSE_FILTER_START:
if self._matcher is None or self._matcher.matches(node._c_node):
self._events.append( (u"start", node) )
return ns_count
cdef _Element _end_node(self):
cdef _Element node
cdef int i, ns_count
node, ns_count = self._node_stack.pop()
if self._event_filter & ITERPARSE_FILTER_END:
if self._matcher is None or self._matcher.matches(node._c_node):
self._events.append( (u"end", node) )
if self._event_filter & ITERPARSE_FILTER_END_NS:
event = (u"end-ns", None)
for i from 0 <= i < ns_count:
self._events.append(event)
return node
|