Avoid calling xmlSetTreeDoc

Create text nodes with xmlNewDocText or set the document directly to
avoid xmlSetTreeDoc being called when the node is inserted.
This commit is contained in:
Nick Wellnhofer 2022-05-20 23:28:25 +02:00
parent 823bf16156
commit 3e7b4f37aa
9 changed files with 20 additions and 16 deletions

5
SAX2.c
View File

@ -2633,9 +2633,10 @@ xmlSAX2Text(xmlParserCtxtPtr ctxt, const xmlChar *ch, int len,
} }
} else { } else {
/* Mixed content, first time */ /* Mixed content, first time */
if (type == XML_TEXT_NODE) if (type == XML_TEXT_NODE) {
lastChild = xmlSAX2TextNode(ctxt, ch, len); lastChild = xmlSAX2TextNode(ctxt, ch, len);
else lastChild->doc = ctxt->myDoc;
} else
lastChild = xmlNewCDataBlock(ctxt->myDoc, ch, len); lastChild = xmlNewCDataBlock(ctxt->myDoc, ch, len);
if (lastChild != NULL) { if (lastChild != NULL) {
xmlAddChild(ctxt->node, lastChild); xmlAddChild(ctxt->node, lastChild);

View File

@ -25,7 +25,7 @@ main(void)
* Create the document. * Create the document.
*/ */
doc = xmlNewDoc(BAD_CAST "1.0"); doc = xmlNewDoc(BAD_CAST "1.0");
n = xmlNewNode(NULL, BAD_CAST "root"); n = xmlNewDocNode(doc, NULL, BAD_CAST "root", NULL);
xmlNodeSetContent(n, BAD_CAST "content"); xmlNodeSetContent(n, BAD_CAST "content");
xmlDocSetRootElement(doc, n); xmlDocSetRootElement(doc, n);

View File

@ -36,7 +36,7 @@ main(int argc, char **argv)
* Creates a new document, a node and set it as a root node * Creates a new document, a node and set it as a root node
*/ */
doc = xmlNewDoc(BAD_CAST "1.0"); doc = xmlNewDoc(BAD_CAST "1.0");
root_node = xmlNewNode(NULL, BAD_CAST "root"); root_node = xmlNewDocNode(doc, NULL, BAD_CAST "root", NULL);
xmlDocSetRootElement(doc, root_node); xmlDocSetRootElement(doc, root_node);
/* /*
@ -70,8 +70,8 @@ main(int argc, char **argv)
* creates a node and a text node separately. They are "attached" * creates a node and a text node separately. They are "attached"
* by xmlAddChild() * by xmlAddChild()
*/ */
node = xmlNewNode(NULL, BAD_CAST "node4"); node = xmlNewDocNode(doc, NULL, BAD_CAST "node4", NULL);
node1 = xmlNewText(BAD_CAST node1 = xmlNewDocText(doc, BAD_CAST
"other way to create content (which is also a node)"); "other way to create content (which is also a node)");
xmlAddChild(node, node1); xmlAddChild(node, node1);
xmlAddChild(root_node, node); xmlAddChild(root_node, node);

View File

@ -7234,7 +7234,8 @@ xmlParseReference(xmlParserCtxtPtr ctxt) {
ent->owner = 1; ent->owner = 1;
while (list != NULL) { while (list != NULL) {
list->parent = (xmlNodePtr) ent; list->parent = (xmlNodePtr) ent;
xmlSetTreeDoc(list, ent->doc); if (list->doc != ent->doc)
xmlSetTreeDoc(list, ent->doc);
if (list->next == NULL) if (list->next == NULL)
ent->last = list; ent->last = list;
list = list->next; list = list->next;
@ -13583,7 +13584,7 @@ xmlParseInNodeContext(xmlNodePtr node, const char *data, int datalen,
ctxt->input_id = 2; ctxt->input_id = 2;
ctxt->instate = XML_PARSER_CONTENT; ctxt->instate = XML_PARSER_CONTENT;
fake = xmlNewComment(NULL); fake = xmlNewDocComment(node->doc, NULL);
if (fake == NULL) { if (fake == NULL) {
xmlFreeParserCtxt(ctxt); xmlFreeParserCtxt(ctxt);
return(XML_ERR_NO_MEMORY); return(XML_ERR_NO_MEMORY);

View File

@ -7233,7 +7233,7 @@ xmlRelaxNGCleanupTree(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr root)
BAD_CAST "name", NULL); BAD_CAST "name", NULL);
if (node != NULL) { if (node != NULL) {
xmlAddPrevSibling(cur->children, node); xmlAddPrevSibling(cur->children, node);
text = xmlNewText(name); text = xmlNewDocText(node->doc, name);
xmlAddChild(node, text); xmlAddChild(node, text);
text = node; text = node;
} }

2
tree.c
View File

@ -5878,7 +5878,7 @@ xmlNodeAddContentLen(xmlNodePtr cur, const xmlChar *content, int len) {
xmlNodePtr last, newNode, tmp; xmlNodePtr last, newNode, tmp;
last = cur->last; last = cur->last;
newNode = xmlNewTextLen(content, len); newNode = xmlNewDocTextLen(cur->doc, content, len);
if (newNode != NULL) { if (newNode != NULL) {
tmp = xmlAddChild(cur, newNode); tmp = xmlAddChild(cur, newNode);
if (tmp != newNode) if (tmp != newNode)

View File

@ -1849,7 +1849,7 @@ xmlXIncludeLoadTxt(xmlXIncludeCtxtPtr ctxt, const xmlChar *url, int nr) {
*/ */
for (i = 0; i < ctxt->txtNr; i++) { for (i = 0; i < ctxt->txtNr; i++) {
if (xmlStrEqual(URL, ctxt->txturlTab[i])) { if (xmlStrEqual(URL, ctxt->txturlTab[i])) {
node = xmlNewText(ctxt->txtTab[i]); node = xmlNewDocText(ctxt->doc, ctxt->txtTab[i]);
goto loaded; goto loaded;
} }
} }
@ -1898,7 +1898,7 @@ xmlXIncludeLoadTxt(xmlXIncludeCtxtPtr ctxt, const xmlChar *url, int nr) {
if (buf->encoder) if (buf->encoder)
xmlCharEncCloseFunc(buf->encoder); xmlCharEncCloseFunc(buf->encoder);
buf->encoder = xmlGetCharEncodingHandler(enc); buf->encoder = xmlGetCharEncodingHandler(enc);
node = xmlNewText(NULL); node = xmlNewDocText(ctxt->doc, NULL);
/* /*
* Scan all chars from the resource and add the to the node * Scan all chars from the resource and add the to the node

View File

@ -1379,7 +1379,7 @@ xhtmlAttrListDumpOutput(xmlSaveCtxtPtr ctxt, xmlAttrPtr cur) {
(htmlIsBooleanAttr(cur->name))) { (htmlIsBooleanAttr(cur->name))) {
if (cur->children != NULL) if (cur->children != NULL)
xmlFreeNode(cur->children); xmlFreeNode(cur->children);
cur->children = xmlNewText(cur->name); cur->children = xmlNewDocText(cur->doc, cur->name);
if (cur->children != NULL) if (cur->children != NULL)
cur->children->parent = (xmlNodePtr) cur; cur->children->parent = (xmlNodePtr) cur;
} }

View File

@ -26467,13 +26467,15 @@ default_psvi:
normValue = xmlSchemaNormalizeValue(inode->typeDef, normValue = xmlSchemaNormalizeValue(inode->typeDef,
inode->decl->value); inode->decl->value);
if (normValue != NULL) { if (normValue != NULL) {
textChild = xmlNewText(BAD_CAST normValue); textChild = xmlNewDocText(inode->node->doc,
BAD_CAST normValue);
xmlFree(normValue); xmlFree(normValue);
} else } else
textChild = xmlNewText(inode->decl->value); textChild = xmlNewDocText(inode->node->doc,
inode->decl->value);
if (textChild == NULL) { if (textChild == NULL) {
VERROR_INT("xmlSchemaValidatorPopElem", VERROR_INT("xmlSchemaValidatorPopElem",
"calling xmlNewText()"); "calling xmlNewDocText()");
goto internal_error; goto internal_error;
} else } else
xmlAddChild(inode->node, textChild); xmlAddChild(inode->node, textChild);