From c42b32277d4bc26cb6683609610a8e12641802a9 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Tue, 4 Mar 2025 13:11:18 +0100 Subject: [PATCH] parser: Convert inputPush and inputPop to macros --- doc/libxml2-api.xml | 19 +++----- include/libxml/parserInternals.h | 13 +++--- parser.c | 27 ------------ testapi.c | 75 +------------------------------- 4 files changed, 13 insertions(+), 121 deletions(-) diff --git a/doc/libxml2-api.xml b/doc/libxml2-api.xml index 8ace68eb..4590003d 100644 --- a/doc/libxml2-api.xml +++ b/doc/libxml2-api.xml @@ -829,12 +829,12 @@ + + - - @@ -4315,6 +4315,10 @@ Returns the attributes required for the specified element. + + + + @@ -7413,17 +7417,6 @@ crash if you try to modify the tree)'/> - - Pops the top parser input from the input stack - - - - - Pushes a new parser input on top of the input stack - - - - Callback on internal subset declaration. diff --git a/include/libxml/parserInternals.h b/include/libxml/parserInternals.h index f2748b75..1c0699d9 100644 --- a/include/libxml/parserInternals.h +++ b/include/libxml/parserInternals.h @@ -22,6 +22,12 @@ extern "C" { #endif +/* + * Backward compatibility + */ +#define inputPush xmlCtxtPushInput +#define inputPop xmlCtxtPopInput + /** * xmlParserMaxDepth: * @@ -558,13 +564,6 @@ XMLPUBFUN xmlChar * xmlChar end2, xmlChar end3); -/* - * Generated by MACROS on top of parser.c c.f. PUSH_AND_POP. - */ -XMLPUBFUN int inputPush (xmlParserCtxtPtr ctxt, - xmlParserInputPtr value); -XMLPUBFUN xmlParserInputPtr inputPop (xmlParserCtxtPtr ctxt); - /* * other commodities shared between parser.c and parserInternals. */ diff --git a/parser.c b/parser.c index fa16b54d..81b7e670 100644 --- a/parser.c +++ b/parser.c @@ -2048,33 +2048,6 @@ xmlCtxtPopInput(xmlParserCtxtPtr ctxt) return (ret); } -/** - * inputPush: - * @ctxt: an XML parser context - * @value: the parser input - * - * Pushes a new parser input on top of the input stack - * - * Returns -1 in case of error, the index in the stack otherwise - */ -int -inputPush(xmlParserCtxtPtr ctxt, xmlParserInputPtr value) -{ - return(xmlCtxtPushInput(ctxt, value)); -} -/** - * inputPop: - * @ctxt: an XML parser context - * - * Pops the top parser input from the input stack - * - * Returns the input just removed - */ -xmlParserInputPtr -inputPop(xmlParserCtxtPtr ctxt) -{ - return(xmlCtxtPopInput(ctxt)); -} /** * nodePush: * @ctxt: an XML parser context diff --git a/testapi.c b/testapi.c index bbc14c79..930d413e 100644 --- a/testapi.c +++ b/testapi.c @@ -15625,77 +15625,6 @@ test_parser(void) { return(test_ret); } -static int -test_inputPop(void) { - int test_ret = 0; - - int mem_base; - xmlParserInputPtr ret_val; - xmlParserCtxtPtr ctxt; /* an XML parser context */ - int n_ctxt; - - for (n_ctxt = 0;n_ctxt < gen_nb_xmlParserCtxtPtr;n_ctxt++) { - mem_base = xmlMemBlocks(); - ctxt = gen_xmlParserCtxtPtr(n_ctxt, 0); - - ret_val = inputPop(ctxt); - desret_xmlParserInputPtr(ret_val); - call_tests++; - des_xmlParserCtxtPtr(n_ctxt, ctxt, 0); - xmlResetLastError(); - if (mem_base != xmlMemBlocks()) { - printf("Leak of %d blocks found in inputPop", - xmlMemBlocks() - mem_base); - test_ret++; - printf(" %d", n_ctxt); - printf("\n"); - } - } - function_tests++; - - return(test_ret); -} - - -static int -test_inputPush(void) { - int test_ret = 0; - - int mem_base; - int ret_val; - xmlParserCtxtPtr ctxt; /* an XML parser context */ - int n_ctxt; - xmlParserInputPtr value; /* the parser input */ - int n_value; - - for (n_ctxt = 0;n_ctxt < gen_nb_xmlParserCtxtPtr;n_ctxt++) { - for (n_value = 0;n_value < gen_nb_xmlParserInputPtr;n_value++) { - mem_base = xmlMemBlocks(); - ctxt = gen_xmlParserCtxtPtr(n_ctxt, 0); - value = gen_xmlParserInputPtr(n_value, 1); - - ret_val = inputPush(ctxt, value); - desret_int(ret_val); - call_tests++; - des_xmlParserCtxtPtr(n_ctxt, ctxt, 0); - des_xmlParserInputPtr(n_value, value, 1); - xmlResetLastError(); - if (mem_base != xmlMemBlocks()) { - printf("Leak of %d blocks found in inputPush", - xmlMemBlocks() - mem_base); - test_ret++; - printf(" %d", n_ctxt); - printf(" %d", n_value); - printf("\n"); - } - } - } - function_tests++; - - return(test_ret); -} - - static int test_xmlCheckLanguageID(void) { int test_ret = 0; @@ -16826,9 +16755,7 @@ static int test_parserInternals(void) { int test_ret = 0; - if (quiet == 0) printf("Testing parserInternals : 30 of 77 functions ...\n"); - test_ret += test_inputPop(); - test_ret += test_inputPush(); + if (quiet == 0) printf("Testing parserInternals : 28 of 75 functions ...\n"); test_ret += test_xmlCheckLanguageID(); test_ret += test_xmlCopyChar(); test_ret += test_xmlCopyCharMultiByte();