1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-23 02:50:08 +03:00

io: Deprecate a few functions

This commit is contained in:
Nick Wellnhofer 2024-07-07 23:15:54 +02:00
parent 97680d6c08
commit eb66d03ef7
5 changed files with 17 additions and 6 deletions

View File

@ -77,7 +77,7 @@ fuzzResourceRecorder(void *data ATTRIBUTE_UNUSED, const char *URL,
}
do {
len = xmlParserInputBufferGrow(in->buf, chunkSize);
len = xmlParserInputGrow(in, chunkSize);
if (len < 0) {
fprintf(stderr, "Error reading %s\n", URL);
xmlFreeInputStream(in);

View File

@ -1066,7 +1066,6 @@ XML_DEPRECATED
XMLPUBFUN int
xmlParserInputRead (xmlParserInputPtr in,
int len);
XML_DEPRECATED
XMLPUBFUN int
xmlParserInputGrow (xmlParserInputPtr in,
int len);

View File

@ -229,12 +229,15 @@ XMLPUBFUN xmlParserInputBufferPtr
xmlInputCloseCallback ioclose,
void *ioctx,
xmlCharEncoding enc);
XML_DEPRECATED
XMLPUBFUN int
xmlParserInputBufferRead (xmlParserInputBufferPtr in,
int len);
XML_DEPRECATED
XMLPUBFUN int
xmlParserInputBufferGrow (xmlParserInputBufferPtr in,
int len);
XML_DEPRECATED
XMLPUBFUN int
xmlParserInputBufferPush (xmlParserInputBufferPtr in,
int len,

View File

@ -356,6 +356,9 @@ deprecated_funcs = {
'xmlParseVersionNum': True,
'xmlParseXMLDecl': True,
'xmlParserHandlePEReference': True,
'xmlParserInputBufferGrow': True,
'xmlParserInputBufferPush': True,
'xmlParserInputBufferRead': True,
'xmlParserSetLineNumbers': True,
'xmlParserSetLoadSubset': True,
'xmlParserSetPedantic': True,

14
xmlIO.c
View File

@ -1895,7 +1895,9 @@ xmlParserInputBufferCreateStatic(const char *mem, int size,
* @str: C string
* @flags: flags
*
* Create an input buffer for a null-teriminated C string.
* DEPRECATED: Use xmlNewInputFromString.
*
* Create an input buffer for a null-terminated C string.
*
* Returns the new input buffer or NULL.
*/
@ -2067,6 +2069,8 @@ xmlOutputBufferCreateFilenameDefault(xmlOutputBufferCreateFilenameFunc func)
* @len: the size in bytes of the array.
* @buf: an char array
*
* DEPRECATED: Internal function, don't use.
*
* Push the content of the arry in the input buffer
* This routine handle the I18N transcoding to internal UTF-8
* This is used when operating the parser in progressive (push) mode.
@ -2136,6 +2140,8 @@ endOfInput (void * context ATTRIBUTE_UNUSED,
* @in: a buffered parser input
* @len: indicative value of the amount of chars to read
*
* DEPRECATED: Internal function, don't use.
*
* Grow up the content of the input buffer, the old data are preserved
* This routine handle the I18N transcoding to internal UTF-8
* This routine is used when operating the parser in normal (pull) mode
@ -2224,9 +2230,9 @@ xmlParserInputBufferGrow(xmlParserInputBufferPtr in, int len) {
* @in: a buffered parser input
* @len: indicative value of the amount of chars to read
*
* Refresh the content of the input buffer, the old data are considered
* consumed
* This routine handle the I18N transcoding to internal UTF-8
* DEPRECATED: Internal function, don't use.
*
* Same as xmlParserInputBufferGrow.
*
* Returns the number of chars read and stored in the buffer, or -1
* in case of error.