mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

Unlike iconv or the internal converters, ICU consumes truncated multi- byte sequences at the end of an input buffer. We currently check for a non-empty raw input buffer to detect truncated sequences, so this fails with ICU. It might be possible to inspect the pivot buffer pointers, but it seems cleaner to implement a `flush` flag for some encoding and I/O functions. After flushing, we can check for U_TRUNCATED_CHAR_FOUND with ICU, or detect remaining input with other converters. Also fix detection of truncated sequences for HTML, XML content and DTDs with iconv.
20 lines
536 B
C
20 lines
536 B
C
#ifndef XML_ENC_H_PRIVATE__
|
|
#define XML_ENC_H_PRIVATE__
|
|
|
|
#include <libxml/encoding.h>
|
|
#include <libxml/tree.h>
|
|
|
|
XML_HIDDEN void
|
|
xmlInitEncodingInternal(void);
|
|
|
|
XML_HIDDEN int
|
|
xmlEncInputChunk(xmlCharEncodingHandler *handler, unsigned char *out,
|
|
int *outlen, const unsigned char *in, int *inlen,
|
|
int flush);
|
|
XML_HIDDEN int
|
|
xmlCharEncInput(xmlParserInputBufferPtr input, size_t *sizeOut, int flush);
|
|
XML_HIDDEN int
|
|
xmlCharEncOutput(xmlOutputBufferPtr output, int init);
|
|
|
|
#endif /* XML_ENC_H_PRIVATE__ */
|