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
|
# XML serialization and output functions
class SerialisationError(LxmlError):
u"""A libxml2 error that occurred during serialisation.
"""
cdef enum _OutputMethods:
OUTPUT_METHOD_XML
OUTPUT_METHOD_HTML
OUTPUT_METHOD_TEXT
cdef int _findOutputMethod(method) except -1:
if method is None:
return OUTPUT_METHOD_XML
method = method.lower()
if method == u"xml":
return OUTPUT_METHOD_XML
if method == u"html":
return OUTPUT_METHOD_HTML
if method == u"text":
return OUTPUT_METHOD_TEXT
raise ValueError, u"unknown output method %r" % method
cdef _textToString(xmlNode* c_node, encoding, bint with_tail):
cdef bint needs_conversion
cdef const_xmlChar* c_text
cdef xmlNode* c_text_node
cdef tree.xmlBuffer* c_buffer
cdef int error_result
c_buffer = tree.xmlBufferCreate()
if c_buffer is NULL:
raise MemoryError()
with nogil:
error_result = tree.xmlNodeBufGetContent(c_buffer, c_node)
if with_tail:
c_text_node = _textNodeOrSkip(c_node.next)
while c_text_node is not NULL:
tree.xmlBufferWriteChar(c_buffer, <const_char*>c_text_node.content)
c_text_node = _textNodeOrSkip(c_text_node.next)
c_text = tree.xmlBufferContent(c_buffer)
if error_result < 0 or c_text is NULL:
tree.xmlBufferFree(c_buffer)
raise SerialisationError, u"Error during serialisation (out of memory?)"
try:
needs_conversion = 0
if encoding is _unicode:
needs_conversion = 1
elif encoding is not None:
# Python prefers lower case encoding names
encoding = encoding.lower()
if encoding not in (u'utf8', u'utf-8'):
if encoding == u'ascii':
if isutf8(c_text):
# will raise a decode error below
needs_conversion = 1
else:
needs_conversion = 1
if needs_conversion:
text = python.PyUnicode_DecodeUTF8(
<const_char*>c_text, tree.xmlBufferLength(c_buffer), 'strict')
if encoding is not _unicode:
encoding = _utf8(encoding)
text = python.PyUnicode_AsEncodedString(
text, encoding, 'strict')
else:
text = (<unsigned char*>c_text)[:tree.xmlBufferLength(c_buffer)]
finally:
tree.xmlBufferFree(c_buffer)
return text
cdef _tostring(_Element element, encoding, doctype, method,
bint write_xml_declaration, bint write_complete_document,
bint pretty_print, bint with_tail, int standalone):
u"""Serialize an element to an encoded string representation of its XML
tree.
"""
cdef tree.xmlOutputBuffer* c_buffer
cdef tree.xmlBuffer* c_result_buffer
cdef tree.xmlCharEncodingHandler* enchandler
cdef const_char* c_enc
cdef const_xmlChar* c_version
cdef const_xmlChar* c_doctype
cdef int c_method
cdef int error_result
if element is None:
return None
_assertValidNode(element)
c_method = _findOutputMethod(method)
if c_method == OUTPUT_METHOD_TEXT:
return _textToString(element._c_node, encoding, with_tail)
if encoding is None or encoding is _unicode:
c_enc = NULL
else:
encoding = _utf8(encoding)
c_enc = _cstr(encoding)
if doctype is None:
c_doctype = NULL
else:
doctype = _utf8(doctype)
c_doctype = _xcstr(doctype)
# it is necessary to *and* find the encoding handler *and* use
# encoding during output
enchandler = tree.xmlFindCharEncodingHandler(c_enc)
if enchandler is NULL and c_enc is not NULL:
if encoding is not None:
encoding = encoding.decode('UTF-8')
raise LookupError, u"unknown encoding: '%s'" % encoding
c_buffer = tree.xmlAllocOutputBuffer(enchandler)
if c_buffer is NULL:
tree.xmlCharEncCloseFunc(enchandler)
raise MemoryError()
with nogil:
_writeNodeToBuffer(c_buffer, element._c_node, c_enc, c_doctype, c_method,
write_xml_declaration, write_complete_document,
pretty_print, with_tail, standalone)
tree.xmlOutputBufferFlush(c_buffer)
if c_buffer.conv is not NULL:
c_result_buffer = c_buffer.conv
else:
c_result_buffer = c_buffer.buffer
error_result = c_buffer.error
if error_result != xmlerror.XML_ERR_OK:
tree.xmlOutputBufferClose(c_buffer)
_raiseSerialisationError(error_result)
try:
if encoding is _unicode:
result = (<unsigned char*>tree.xmlBufferContent(
c_result_buffer))[:tree.xmlBufferLength(c_result_buffer)].decode('UTF-8')
else:
result = <bytes>(<unsigned char*>tree.xmlBufferContent(
c_result_buffer))[:tree.xmlBufferLength(c_result_buffer)]
finally:
error_result = tree.xmlOutputBufferClose(c_buffer)
if error_result < 0:
_raiseSerialisationError(error_result)
return result
cdef bytes _tostringC14N(element_or_tree, bint exclusive, bint with_comments):
cdef xmlDoc* c_doc
cdef xmlChar* c_buffer = NULL
cdef int byte_count = -1
cdef bytes result
cdef _Document doc
cdef _Element element
if isinstance(element_or_tree, _Element):
_assertValidNode(<_Element>element_or_tree)
doc = (<_Element>element_or_tree)._doc
c_doc = _plainFakeRootDoc(doc._c_doc, (<_Element>element_or_tree)._c_node, 0)
else:
doc = _documentOrRaise(element_or_tree)
_assertValidDoc(doc)
c_doc = doc._c_doc
with nogil:
byte_count = c14n.xmlC14NDocDumpMemory(
c_doc, NULL, exclusive, NULL, with_comments, &c_buffer)
_destroyFakeDoc(doc._c_doc, c_doc)
if byte_count < 0 or c_buffer is NULL:
if c_buffer is not NULL:
tree.xmlFree(<char*>c_buffer)
raise C14NError, u"C14N failed"
try:
result = c_buffer[:byte_count]
finally:
tree.xmlFree(<char*>c_buffer)
return result
cdef _raiseSerialisationError(int error_result):
if error_result == xmlerror.XML_ERR_NO_MEMORY:
raise MemoryError()
message = ErrorTypes._getName(error_result)
if message is None:
message = u"unknown error %d" % error_result
raise SerialisationError, message
############################################################
# low-level serialisation functions
cdef void _writeNodeToBuffer(tree.xmlOutputBuffer* c_buffer,
xmlNode* c_node, const_char* encoding, const_xmlChar* c_doctype,
int c_method, bint write_xml_declaration,
bint write_complete_document,
bint pretty_print, bint with_tail,
int standalone) nogil:
cdef xmlDoc* c_doc
cdef xmlNode* c_nsdecl_node
c_doc = c_node.doc
if write_xml_declaration and c_method == OUTPUT_METHOD_XML:
_writeDeclarationToBuffer(c_buffer, c_doc.version, encoding, standalone)
if c_doctype is not NULL:
tree.xmlOutputBufferWrite(c_buffer, tree.xmlStrlen(c_doctype),
<const_char*>c_doctype)
tree.xmlOutputBufferWriteString(c_buffer, "\n")
# write internal DTD subset, preceding PIs/comments, etc.
if write_complete_document:
if c_doctype is NULL:
_writeDtdToBuffer(c_buffer, c_doc, c_node.name, encoding)
_writePrevSiblings(c_buffer, c_node, encoding, pretty_print)
c_nsdecl_node = c_node
if c_node.parent is NULL or c_node.parent.type != tree.XML_DOCUMENT_NODE:
# copy the node and add namespaces from parents
# this is required to make libxml write them
c_nsdecl_node = tree.xmlCopyNode(c_node, 2)
if c_nsdecl_node is NULL:
c_buffer.error = xmlerror.XML_ERR_NO_MEMORY
return
_copyParentNamespaces(c_node, c_nsdecl_node)
c_nsdecl_node.parent = c_node.parent
c_nsdecl_node.children = c_node.children
c_nsdecl_node.last = c_node.last
# write node
if c_method == OUTPUT_METHOD_HTML:
tree.htmlNodeDumpFormatOutput(
c_buffer, c_doc, c_nsdecl_node, encoding, pretty_print)
else:
tree.xmlNodeDumpOutput(
c_buffer, c_doc, c_nsdecl_node, 0, pretty_print, encoding)
if c_nsdecl_node is not c_node:
# clean up
c_nsdecl_node.children = c_nsdecl_node.last = NULL
tree.xmlFreeNode(c_nsdecl_node)
# write tail, trailing comments, etc.
if with_tail:
_writeTail(c_buffer, c_node, encoding, pretty_print)
if write_complete_document:
_writeNextSiblings(c_buffer, c_node, encoding, pretty_print)
if pretty_print:
tree.xmlOutputBufferWrite(c_buffer, 1, "\n")
cdef void _writeDeclarationToBuffer(tree.xmlOutputBuffer* c_buffer,
const_xmlChar* version, const_char* encoding,
int standalone) nogil:
if version is NULL:
version = <unsigned char*>"1.0"
tree.xmlOutputBufferWrite(c_buffer, 15, "<?xml version='")
tree.xmlOutputBufferWriteString(c_buffer, <const_char*>version)
tree.xmlOutputBufferWrite(c_buffer, 12, "' encoding='")
tree.xmlOutputBufferWriteString(c_buffer, encoding)
if standalone == 0:
tree.xmlOutputBufferWrite(c_buffer, 20, "' standalone='no'?>\n")
elif standalone == 1:
tree.xmlOutputBufferWrite(c_buffer, 21, "' standalone='yes'?>\n")
else:
tree.xmlOutputBufferWrite(c_buffer, 4, "'?>\n")
cdef void _writeDtdToBuffer(tree.xmlOutputBuffer* c_buffer,
xmlDoc* c_doc, const_xmlChar* c_root_name,
const_char* encoding) nogil:
cdef tree.xmlDtd* c_dtd
cdef xmlNode* c_node
c_dtd = c_doc.intSubset
if c_dtd is NULL or c_dtd.name is NULL:
return
if tree.xmlStrcmp(c_root_name, c_dtd.name) != 0:
return
tree.xmlOutputBufferWrite(c_buffer, 10, "<!DOCTYPE ")
tree.xmlOutputBufferWriteString(c_buffer, <const_char*>c_dtd.name)
if c_dtd.SystemID != NULL and c_dtd.SystemID[0] != c'\0':
if c_dtd.ExternalID != NULL and c_dtd.ExternalID[0] != c'\0':
tree.xmlOutputBufferWrite(c_buffer, 9, ' PUBLIC "')
tree.xmlOutputBufferWriteString(c_buffer, <const_char*>c_dtd.ExternalID)
tree.xmlOutputBufferWrite(c_buffer, 3, '" "')
else:
tree.xmlOutputBufferWrite(c_buffer, 9, ' SYSTEM "')
tree.xmlOutputBufferWriteString(c_buffer, <const_char*>c_dtd.SystemID)
tree.xmlOutputBufferWrite(c_buffer, 1, '"')
if c_dtd.entities == NULL and c_dtd.elements == NULL and \
c_dtd.attributes == NULL and c_dtd.notations == NULL and \
c_dtd.pentities == NULL:
tree.xmlOutputBufferWrite(c_buffer, 2, '>\n')
return
tree.xmlOutputBufferWrite(c_buffer, 3, ' [\n')
if c_dtd.notations != NULL:
tree.xmlDumpNotationTable(c_buffer.buffer,
<tree.xmlNotationTable*>c_dtd.notations)
c_node = c_dtd.children
while c_node is not NULL:
tree.xmlNodeDumpOutput(c_buffer, c_node.doc, c_node, 0, 0, encoding)
c_node = c_node.next
tree.xmlOutputBufferWrite(c_buffer, 3, "]>\n")
cdef void _writeTail(tree.xmlOutputBuffer* c_buffer, xmlNode* c_node,
const_char* encoding, bint pretty_print) nogil:
u"Write the element tail."
c_node = c_node.next
while c_node is not NULL and c_node.type == tree.XML_TEXT_NODE:
tree.xmlNodeDumpOutput(c_buffer, c_node.doc, c_node, 0,
pretty_print, encoding)
c_node = c_node.next
cdef void _writePrevSiblings(tree.xmlOutputBuffer* c_buffer, xmlNode* c_node,
const_char* encoding, bint pretty_print) nogil:
cdef xmlNode* c_sibling
if c_node.parent is not NULL and _isElement(c_node.parent):
return
# we are at a root node, so add PI and comment siblings
c_sibling = c_node
while c_sibling.prev != NULL and \
(c_sibling.prev.type == tree.XML_PI_NODE or \
c_sibling.prev.type == tree.XML_COMMENT_NODE):
c_sibling = c_sibling.prev
while c_sibling != c_node:
tree.xmlNodeDumpOutput(c_buffer, c_node.doc, c_sibling, 0,
pretty_print, encoding)
if pretty_print:
tree.xmlOutputBufferWriteString(c_buffer, "\n")
c_sibling = c_sibling.next
cdef void _writeNextSiblings(tree.xmlOutputBuffer* c_buffer, xmlNode* c_node,
const_char* encoding, bint pretty_print) nogil:
cdef xmlNode* c_sibling
if c_node.parent is not NULL and _isElement(c_node.parent):
return
# we are at a root node, so add PI and comment siblings
c_sibling = c_node.next
while c_sibling != NULL and \
(c_sibling.type == tree.XML_PI_NODE or \
c_sibling.type == tree.XML_COMMENT_NODE):
if pretty_print:
tree.xmlOutputBufferWriteString(c_buffer, "\n")
tree.xmlNodeDumpOutput(c_buffer, c_node.doc, c_sibling, 0,
pretty_print, encoding)
c_sibling = c_sibling.next
############################################################
# output to file-like objects
@cython.final
@cython.internal
cdef class _FilelikeWriter:
cdef object _filelike
cdef object _close_filelike
cdef _ExceptionContext _exc_context
cdef _ErrorLog error_log
def __cinit__(self, filelike, exc_context=None, compression=None):
if compression is not None and compression > 0:
filelike = gzip.GzipFile(
fileobj=filelike, mode=u'wb', compresslevel=compression)
self._close_filelike = filelike.close
self._filelike = filelike
if exc_context is None:
self._exc_context = _ExceptionContext()
else:
self._exc_context = exc_context
self.error_log = _ErrorLog()
cdef tree.xmlOutputBuffer* _createOutputBuffer(
self, tree.xmlCharEncodingHandler* enchandler) except NULL:
cdef tree.xmlOutputBuffer* c_buffer
c_buffer = tree.xmlOutputBufferCreateIO(
<tree.xmlOutputWriteCallback>_writeFilelikeWriter, _closeFilelikeWriter,
<python.PyObject*>self, enchandler)
if c_buffer is NULL:
raise IOError, u"Could not create I/O writer context."
return c_buffer
cdef int write(self, char* c_buffer, int size):
try:
if self._filelike is None:
raise IOError, u"File is already closed"
py_buffer = <bytes>c_buffer[:size]
self._filelike.write(py_buffer)
return size
except:
self._exc_context._store_raised()
return -1
cdef int close(self):
try:
if self._close_filelike is not None:
self._close_filelike()
# we should not close the file here as we didn't open it
self._filelike = None
return 0
except:
self._exc_context._store_raised()
return -1
cdef int _writeFilelikeWriter(void* ctxt, char* c_buffer, int len):
return (<_FilelikeWriter>ctxt).write(c_buffer, len)
cdef int _closeFilelikeWriter(void* ctxt):
return (<_FilelikeWriter>ctxt).close()
cdef _tofilelike(f, _Element element, encoding, doctype, method,
bint write_xml_declaration, bint write_doctype,
bint pretty_print, bint with_tail, int standalone,
int compression):
cdef python.PyThreadState* state = NULL
cdef _FilelikeWriter writer = None
cdef tree.xmlOutputBuffer* c_buffer
cdef tree.xmlCharEncodingHandler* enchandler
cdef const_char* c_enc
cdef const_xmlChar* c_doctype
cdef int error_result
if encoding is None:
c_enc = NULL
else:
encoding = _utf8(encoding)
c_enc = _cstr(encoding)
if doctype is None:
c_doctype = NULL
else:
doctype = _utf8(doctype)
c_doctype = _xcstr(doctype)
c_method = _findOutputMethod(method)
if c_method == OUTPUT_METHOD_TEXT:
data = _textToString(element._c_node, encoding, with_tail)
if compression:
bytes_out = BytesIO()
gzip_file = gzip.GzipFile(
fileobj=bytes_out, mode=u'wb', compresslevel=compression)
try:
gzip_file.write(data)
finally:
gzip_file.close()
data = bytes_out
if _isString(f):
filename8 = _encodeFilename(f)
f = open(filename8, u'wb')
try:
f.write(data)
finally:
f.close()
else:
f.write(data)
return
enchandler = tree.xmlFindCharEncodingHandler(c_enc)
if enchandler is NULL:
if encoding is not None:
encoding = encoding.decode(u'UTF-8')
raise LookupError, u"unknown encoding: '%s'" % encoding
if _isString(f):
filename8 = _encodeFilename(f)
c_buffer = tree.xmlOutputBufferCreateFilename(
_cstr(filename8), enchandler, compression)
if c_buffer is NULL:
return python.PyErr_SetFromErrno(IOError)
state = python.PyEval_SaveThread()
elif hasattr(f, u'write'):
writer = _FilelikeWriter(f, compression=compression)
c_buffer = writer._createOutputBuffer(enchandler)
else:
tree.xmlCharEncCloseFunc(enchandler)
raise TypeError, \
u"File or filename expected, got '%s'" % python._fqtypename(f).decode('UTF-8')
_writeNodeToBuffer(c_buffer, element._c_node, c_enc, c_doctype, c_method,
write_xml_declaration, write_doctype,
pretty_print, with_tail, standalone)
error_result = c_buffer.error
if error_result == xmlerror.XML_ERR_OK:
error_result = tree.xmlOutputBufferClose(c_buffer)
if error_result > 0:
error_result = xmlerror.XML_ERR_OK
else:
tree.xmlOutputBufferClose(c_buffer)
if writer is None:
python.PyEval_RestoreThread(state)
else:
writer._exc_context._raise_if_stored()
if error_result != xmlerror.XML_ERR_OK:
_raiseSerialisationError(error_result)
cdef _tofilelikeC14N(f, _Element element, bint exclusive, bint with_comments,
int compression):
cdef _FilelikeWriter writer = None
cdef tree.xmlOutputBuffer* c_buffer
cdef char* c_filename
cdef xmlDoc* c_base_doc
cdef xmlDoc* c_doc
cdef int bytes = -1
c_base_doc = element._c_node.doc
c_doc = _fakeRootDoc(c_base_doc, element._c_node)
try:
if _isString(f):
filename8 = _encodeFilename(f)
c_filename = _cstr(filename8)
with nogil:
bytes = c14n.xmlC14NDocSave(c_doc, NULL, exclusive, NULL,
with_comments, c_filename, compression)
elif hasattr(f, u'write'):
writer = _FilelikeWriter(f, compression=compression)
c_buffer = writer._createOutputBuffer(NULL)
with writer.error_log:
bytes = c14n.xmlC14NDocSaveTo(c_doc, NULL, exclusive, NULL,
with_comments, c_buffer)
if bytes >= 0:
bytes = tree.xmlOutputBufferClose(c_buffer)
else:
tree.xmlOutputBufferClose(c_buffer)
else:
raise TypeError, \
u"File or filename expected, got '%s'" % python._fqtypename(f).decode('UTF-8')
finally:
_destroyFakeDoc(c_base_doc, c_doc)
if writer is not None:
writer._exc_context._raise_if_stored()
if bytes < 0:
message = u"C14N failed"
if writer is not None:
errors = writer.error_log
if len(errors):
message = errors[0].message
raise C14NError, message
# dump node to file (mainly for debug)
cdef _dumpToFile(f, xmlNode* c_node, bint pretty_print, bint with_tail):
cdef tree.xmlOutputBuffer* c_buffer
cdef stdio.FILE* c_file
c_file = python.PyFile_AsFile(f)
if c_file is NULL:
raise ValueError, u"not a file"
c_buffer = tree.xmlOutputBufferCreateFile(c_file, NULL)
tree.xmlNodeDumpOutput(c_buffer, c_node.doc, c_node, 0, pretty_print, NULL)
if with_tail:
_writeTail(c_buffer, c_node, NULL, 0)
if not pretty_print:
# not written yet
tree.xmlOutputBufferWriteString(c_buffer, '\n')
tree.xmlOutputBufferFlush(c_buffer)
|