1338 lines
36 KiB
C
Raw Normal View History

2001-02-23 17:55:21 +00:00
/*
* Summary: interfaces for tree manipulation
* Description: this module describes the structures found in an tree resulting
* from an XML or HTML parsing, as well as the API provided for
* various processing on that tree
2001-02-23 17:55:21 +00:00
*
* Copy: See Copyright for the status of this software.
2001-02-23 17:55:21 +00:00
*
* Author: Daniel Veillard
2001-02-23 17:55:21 +00:00
*/
#ifndef XML_TREE_INTERNALS
/*
* Emulate circular dependency for backward compatibility
*/
#include <libxml/parser.h>
#else /* XML_TREE_INTERNALS */
2001-02-23 17:55:21 +00:00
#ifndef __XML_TREE_H__
#define __XML_TREE_H__
#include <stdio.h>
#include <limits.h>
2001-02-23 17:55:21 +00:00
#include <libxml/xmlversion.h>
#include <libxml/xmlstring.h>
#include <libxml/xmlmemory.h>
#include <libxml/xmlregexp.h>
2002-11-08 17:18:52 +00:00
2001-02-23 17:55:21 +00:00
#ifdef __cplusplus
extern "C" {
#endif
/*
* Some of the basic types pointer to structures:
*/
/* xmlIO.h */
typedef struct _xmlParserInputBuffer xmlParserInputBuffer;
typedef xmlParserInputBuffer *xmlParserInputBufferPtr;
typedef struct _xmlOutputBuffer xmlOutputBuffer;
typedef xmlOutputBuffer *xmlOutputBufferPtr;
/* parser.h */
typedef struct _xmlParserInput xmlParserInput;
typedef xmlParserInput *xmlParserInputPtr;
typedef struct _xmlParserCtxt xmlParserCtxt;
typedef xmlParserCtxt *xmlParserCtxtPtr;
typedef struct _xmlSAXLocator xmlSAXLocator;
typedef xmlSAXLocator *xmlSAXLocatorPtr;
typedef struct _xmlSAXHandler xmlSAXHandler;
typedef xmlSAXHandler *xmlSAXHandlerPtr;
/* entities.h */
typedef struct _xmlEntity xmlEntity;
typedef xmlEntity *xmlEntityPtr;
/**
* BASE_BUFFER_SIZE:
*
* default buffer size 4000.
*/
#define BASE_BUFFER_SIZE 4096
/**
* LIBXML_NAMESPACE_DICT:
*
* Defines experimental behaviour:
* 1) xmlNs gets an additional field @context (a xmlDoc)
* 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc.
*/
/* #define LIBXML_NAMESPACE_DICT */
/**
* xmlBufferAllocationScheme:
*
* A buffer allocation scheme can be defined to either match exactly the
* need or double it's allocated size each time it is found too small.
*/
typedef enum {
XML_BUFFER_ALLOC_DOUBLEIT, /* double each time one need to grow */
XML_BUFFER_ALLOC_EXACT, /* grow only to the minimal size */
XML_BUFFER_ALLOC_IMMUTABLE, /* immutable buffer, deprecated */
Use a hybrid allocation scheme in xmlNodeSetContent On Fri, May 11, 2012 at 9:10 AM, Daniel Veillard <veillard@redhat.com> wrote: >  Hi Conrad, > > that's interesting ! I was initially afraid of a sudden explosion of > memory allocations for building a tree since by default buffers tend to > "waste" memory by using doubling allocations, but that's not the case. >  xmllint --noout doc/libxml2-api.xml > when compiled with memory debug produce > > paphio:~/XML -> cat .memdump >      MEMORY ALLOCATED : 0, MAX was 12756699 > > and without your patch 12755657, i.e. the increase is minimal. Heh, I thought that too. Actually you're looking at the result with XML_ALLOC_EXACT! This is because EXACT adds 10bytes "spare" on each alloc, and that interestingly wastes about the same amount of space as XML_ALLOC_DOUBLEIT on this example (see below). So it turns out that the default realloc() on my system actually handles this case really well — and I guess that all the time in xmlRealloc() was actually in xmlStrlen, not the underlying realloc() after all (sorry for misleading you). If you replace the realloc() with a bad one (like valgrind's), then the performance degrades severely. This patch implements a HYBRID allocator which has the behaviour you describe (it's like EXACT to start with, though without the spare 10 bytes; and switches to DOUBLEIT after 4kb) — that gets the memory back down to 12755657, with no noticeable impact on the performance of the synthetic pathological example under valgrind. In summary: max_memory on ./xmllint --noout doc/libxml2-api.xml, valgrind time on https://gist.github.com/2656940 max_memory valgrind time before | 12755657 | 29:18.2 EXACT | 12756699 | 2:58.6 <-- this is the state after the first patch. DOUBLEIT | 12756727 | 0:02.7 HYBRID | 12755754 | 0:02.7 <-- this is the state with both patches. > > There is also the cost of creating the buffers all the time. > I need to read the code and check but I may be interested in an hybrid > approach where we switch to buffer only when the text node starts to > become too big (4k would remove nearly all usuall types of "document" > usage, i.e. not blocks of data) I tried to avoid too much buffer creation by introducing the xmlBufferDetach function, which allows re-using one buffer to construct many strings. It's maybe a bit of a "hack" in API terms though I thought the gains would be worth it. Conrad ------8<------ To keep memory usage tight in normal conditions it's desirable to only allocate as much space as is needed. Unfortunately this can lead to problems when constructing a long string out of small chunks, because every chunk you add will need to resize the buffer. To fix this XML_ALLOC_HYBRID will switch (when the buffer is 4kb big) from using exact allocations to doubling buffer size every time it is full. This limits the number of buffer resizes to O(log n) (down from O(n)), and thus greatly increases the performance of constructing very large strings in this manner.
2012-05-14 14:18:58 +08:00
XML_BUFFER_ALLOC_IO, /* special allocation scheme used for I/O */
XML_BUFFER_ALLOC_HYBRID, /* exact up to a threshold, and doubleit thereafter */
XML_BUFFER_ALLOC_BOUNDED /* limit the upper size of the buffer */
} xmlBufferAllocationScheme;
/**
* xmlBuffer:
*
* A buffer structure, this old construct is limited to 2GB and
* is being deprecated, use API with xmlBuf instead
*/
typedef struct _xmlBuffer xmlBuffer;
typedef xmlBuffer *xmlBufferPtr;
struct _xmlBuffer {
2024-06-10 23:20:22 +02:00
/* The buffer content UTF8 */
xmlChar *content XML_DEPRECATED_MEMBER;
/* The buffer size used */
unsigned int use XML_DEPRECATED_MEMBER;
/* The buffer size */
unsigned int size XML_DEPRECATED_MEMBER;
/* The realloc method */
xmlBufferAllocationScheme alloc XML_DEPRECATED_MEMBER;
/* in IO mode we may have a different base */
xmlChar *contentIO XML_DEPRECATED_MEMBER;
};
/**
* xmlBuf:
*
* A buffer structure, new one, the actual structure internals are not public
*/
typedef struct _xmlBuf xmlBuf;
/**
* xmlBufPtr:
*
* A pointer to a buffer structure, the actual structure internals are not
* public
*/
typedef xmlBuf *xmlBufPtr;
/*
* A few public routines for xmlBuf. As those are expected to be used
* mostly internally the bulk of the routines are internal in buf.h
*/
XMLPUBFUN xmlChar* xmlBufContent (const xmlBuf* buf);
XMLPUBFUN xmlChar* xmlBufEnd (xmlBufPtr buf);
XMLPUBFUN size_t xmlBufUse (const xmlBufPtr buf);
XMLPUBFUN size_t xmlBufShrink (xmlBufPtr buf, size_t len);
/*
* LIBXML2_NEW_BUFFER:
*
* Macro used to express that the API use the new buffers for
* xmlParserInputBuffer and xmlOutputBuffer. The change was
* introduced in 2.9.0.
*/
#define LIBXML2_NEW_BUFFER
/**
* XML_XML_NAMESPACE:
*
* This is the namespace for the special xml: prefix predefined in the
* XML Namespace specification.
*/
2001-02-23 17:55:21 +00:00
#define XML_XML_NAMESPACE \
(const xmlChar *) "http://www.w3.org/XML/1998/namespace"
/**
* XML_XML_ID:
*
* This is the name for the special xml:id attribute
*/
#define XML_XML_ID (const xmlChar *) "xml:id"
2001-02-23 17:55:21 +00:00
/*
* The different element types carried by an XML tree.
2001-02-23 17:55:21 +00:00
*
* NOTE: This is synchronized with DOM Level1 values
* See http://www.w3.org/TR/REC-DOM-Level-1/
*
* Actually this had diverged a bit, and now XML_DOCUMENT_TYPE_NODE should
* be deprecated to use an XML_DTD_NODE.
*/
typedef enum {
XML_ELEMENT_NODE= 1,
XML_ATTRIBUTE_NODE= 2,
XML_TEXT_NODE= 3,
XML_CDATA_SECTION_NODE= 4,
XML_ENTITY_REF_NODE= 5,
2024-03-07 17:47:06 +01:00
XML_ENTITY_NODE= 6, /* unused */
2001-02-23 17:55:21 +00:00
XML_PI_NODE= 7,
XML_COMMENT_NODE= 8,
XML_DOCUMENT_NODE= 9,
2024-03-07 17:47:06 +01:00
XML_DOCUMENT_TYPE_NODE= 10, /* unused */
2001-02-23 17:55:21 +00:00
XML_DOCUMENT_FRAG_NODE= 11,
2024-03-07 17:47:06 +01:00
XML_NOTATION_NODE= 12, /* unused */
2001-02-23 17:55:21 +00:00
XML_HTML_DOCUMENT_NODE= 13,
XML_DTD_NODE= 14,
XML_ELEMENT_DECL= 15,
XML_ATTRIBUTE_DECL= 16,
XML_ENTITY_DECL= 17,
XML_NAMESPACE_DECL= 18,
XML_XINCLUDE_START= 19,
XML_XINCLUDE_END= 20
/* XML_DOCB_DOCUMENT_NODE= 21 */ /* removed */
2001-02-23 17:55:21 +00:00
} xmlElementType;
2022-08-18 20:17:27 +02:00
/** DOC_DISABLE */
/* For backward compatibility */
#define XML_DOCB_DOCUMENT_NODE 21
2022-08-18 20:17:27 +02:00
/** DOC_ENABLE */
2001-02-23 17:55:21 +00:00
/**
* xmlNotation:
*
* A DTD Notation definition.
2001-02-23 17:55:21 +00:00
*/
typedef struct _xmlNotation xmlNotation;
typedef xmlNotation *xmlNotationPtr;
struct _xmlNotation {
const xmlChar *name; /* Notation name */
2001-02-23 17:55:21 +00:00
const xmlChar *PublicID; /* Public identifier, if any */
const xmlChar *SystemID; /* System identifier, if any */
};
/**
* xmlAttributeType:
*
* A DTD Attribute type definition.
2001-02-23 17:55:21 +00:00
*/
typedef enum {
XML_ATTRIBUTE_CDATA = 1,
XML_ATTRIBUTE_ID,
XML_ATTRIBUTE_IDREF ,
XML_ATTRIBUTE_IDREFS,
XML_ATTRIBUTE_ENTITY,
XML_ATTRIBUTE_ENTITIES,
XML_ATTRIBUTE_NMTOKEN,
XML_ATTRIBUTE_NMTOKENS,
XML_ATTRIBUTE_ENUMERATION,
XML_ATTRIBUTE_NOTATION
} xmlAttributeType;
/**
* xmlAttributeDefault:
*
* A DTD Attribute default definition.
*/
2001-02-23 17:55:21 +00:00
typedef enum {
XML_ATTRIBUTE_NONE = 1,
XML_ATTRIBUTE_REQUIRED,
XML_ATTRIBUTE_IMPLIED,
XML_ATTRIBUTE_FIXED
} xmlAttributeDefault;
/**
* xmlEnumeration:
*
* List structure used when there is an enumeration in DTDs.
*/
2001-02-23 17:55:21 +00:00
typedef struct _xmlEnumeration xmlEnumeration;
typedef xmlEnumeration *xmlEnumerationPtr;
struct _xmlEnumeration {
struct _xmlEnumeration *next; /* next one */
const xmlChar *name; /* Enumeration name */
};
/**
* xmlAttribute:
*
* An Attribute declaration in a DTD.
*/
2001-02-23 17:55:21 +00:00
typedef struct _xmlAttribute xmlAttribute;
typedef xmlAttribute *xmlAttributePtr;
struct _xmlAttribute {
void *_private; /* application data */
2001-02-23 17:55:21 +00:00
xmlElementType type; /* XML_ATTRIBUTE_DECL, must be second ! */
const xmlChar *name; /* Attribute name */
struct _xmlNode *children; /* NULL */
struct _xmlNode *last; /* NULL */
struct _xmlDtd *parent; /* -> DTD */
struct _xmlNode *next; /* next sibling link */
struct _xmlNode *prev; /* previous sibling link */
struct _xmlDoc *doc; /* the containing document */
struct _xmlAttribute *nexth; /* next in hash table */
xmlAttributeType atype; /* The attribute type */
xmlAttributeDefault def; /* the default */
const xmlChar *defaultValue; /* or the default value */
xmlEnumerationPtr tree; /* or the enumeration tree if any */
const xmlChar *prefix; /* the namespace prefix if any */
const xmlChar *elem; /* Element holding the attribute */
};
/**
* xmlElementContentType:
*
* Possible definitions of element content types.
2001-02-23 17:55:21 +00:00
*/
typedef enum {
XML_ELEMENT_CONTENT_PCDATA = 1,
XML_ELEMENT_CONTENT_ELEMENT,
XML_ELEMENT_CONTENT_SEQ,
XML_ELEMENT_CONTENT_OR
} xmlElementContentType;
/**
* xmlElementContentOccur:
*
* Possible definitions of element content occurrences.
*/
2001-02-23 17:55:21 +00:00
typedef enum {
XML_ELEMENT_CONTENT_ONCE = 1,
XML_ELEMENT_CONTENT_OPT,
XML_ELEMENT_CONTENT_MULT,
XML_ELEMENT_CONTENT_PLUS
} xmlElementContentOccur;
/**
* xmlElementContent:
*
* An XML Element content as stored after parsing an element definition
* in a DTD.
*/
2001-02-23 17:55:21 +00:00
typedef struct _xmlElementContent xmlElementContent;
typedef xmlElementContent *xmlElementContentPtr;
struct _xmlElementContent {
xmlElementContentType type; /* PCDATA, ELEMENT, SEQ or OR */
xmlElementContentOccur ocur; /* ONCE, OPT, MULT or PLUS */
const xmlChar *name; /* Element name */
2001-02-23 17:55:21 +00:00
struct _xmlElementContent *c1; /* first child */
struct _xmlElementContent *c2; /* second child */
struct _xmlElementContent *parent; /* parent */
const xmlChar *prefix; /* Namespace prefix */
2001-02-23 17:55:21 +00:00
};
/**
* xmlElementTypeVal:
*
* The different possibilities for an element content type.
*/
2001-02-23 17:55:21 +00:00
typedef enum {
XML_ELEMENT_TYPE_UNDEFINED = 0,
2001-02-23 17:55:21 +00:00
XML_ELEMENT_TYPE_EMPTY = 1,
XML_ELEMENT_TYPE_ANY,
XML_ELEMENT_TYPE_MIXED,
XML_ELEMENT_TYPE_ELEMENT
} xmlElementTypeVal;
/**
* xmlElement:
*
* An XML Element declaration from a DTD.
*/
2001-02-23 17:55:21 +00:00
typedef struct _xmlElement xmlElement;
typedef xmlElement *xmlElementPtr;
struct _xmlElement {
void *_private; /* application data */
2001-02-23 17:55:21 +00:00
xmlElementType type; /* XML_ELEMENT_DECL, must be second ! */
const xmlChar *name; /* Element name */
struct _xmlNode *children; /* NULL */
struct _xmlNode *last; /* NULL */
struct _xmlDtd *parent; /* -> DTD */
struct _xmlNode *next; /* next sibling link */
struct _xmlNode *prev; /* previous sibling link */
struct _xmlDoc *doc; /* the containing document */
xmlElementTypeVal etype; /* The type */
xmlElementContentPtr content; /* the allowed element content */
xmlAttributePtr attributes; /* List of the declared attributes */
const xmlChar *prefix; /* the namespace prefix if any */
#ifdef LIBXML_REGEXP_ENABLED
xmlRegexpPtr contModel; /* the validating regexp */
#else
void *contModel;
#endif
2001-02-23 17:55:21 +00:00
};
/**
* XML_LOCAL_NAMESPACE:
*
* A namespace declaration node.
*/
#define XML_LOCAL_NAMESPACE XML_NAMESPACE_DECL
typedef xmlElementType xmlNsType;
/**
* xmlNs:
*
2001-02-23 17:55:21 +00:00
* An XML namespace.
* Note that prefix == NULL is valid, it defines the default namespace
* within the subtree (until overridden).
2001-02-23 17:55:21 +00:00
*
* xmlNsType is unified with xmlElementType.
2001-02-23 17:55:21 +00:00
*/
typedef struct _xmlNs xmlNs;
typedef xmlNs *xmlNsPtr;
struct _xmlNs {
struct _xmlNs *next; /* next Ns link for this node */
xmlNsType type; /* global or local */
const xmlChar *href; /* URL for the namespace */
const xmlChar *prefix; /* prefix for the namespace */
void *_private; /* application data */
struct _xmlDoc *context; /* normally an xmlDoc */
2001-02-23 17:55:21 +00:00
};
/**
* xmlDtd:
*
* An XML DTD, as defined by <!DOCTYPE ... There is actually one for
* the internal subset and for the external subset.
2001-02-23 17:55:21 +00:00
*/
typedef struct _xmlDtd xmlDtd;
typedef xmlDtd *xmlDtdPtr;
struct _xmlDtd {
void *_private; /* application data */
2001-02-23 17:55:21 +00:00
xmlElementType type; /* XML_DTD_NODE, must be second ! */
const xmlChar *name; /* Name of the DTD */
struct _xmlNode *children; /* the value of the property link */
struct _xmlNode *last; /* last child link */
struct _xmlDoc *parent; /* child->parent link */
struct _xmlNode *next; /* next sibling link */
struct _xmlNode *prev; /* previous sibling link */
struct _xmlDoc *doc; /* the containing document */
/* End of common part */
void *notations; /* Hash table for notations if any */
void *elements; /* Hash table for elements if any */
void *attributes; /* Hash table for attributes if any */
void *entities; /* Hash table for entities if any */
const xmlChar *ExternalID; /* External identifier for PUBLIC DTD */
const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC DTD */
void *pentities; /* Hash table for param entities if any */
};
/**
* xmlAttr:
*
* An attribute on an XML node.
2001-02-23 17:55:21 +00:00
*/
typedef struct _xmlAttr xmlAttr;
typedef xmlAttr *xmlAttrPtr;
struct _xmlAttr {
void *_private; /* application data */
2001-02-23 17:55:21 +00:00
xmlElementType type; /* XML_ATTRIBUTE_NODE, must be second ! */
const xmlChar *name; /* the name of the property */
struct _xmlNode *children; /* the value of the property */
struct _xmlNode *last; /* NULL */
struct _xmlNode *parent; /* child->parent link */
struct _xmlAttr *next; /* next sibling link */
struct _xmlAttr *prev; /* previous sibling link */
struct _xmlDoc *doc; /* the containing document */
xmlNs *ns; /* pointer to the associated namespace */
xmlAttributeType atype; /* the attribute type if validating */
2020-03-08 17:19:42 +01:00
void *psvi; /* for type/PSVI information */
struct _xmlID *id; /* the ID struct */
2001-02-23 17:55:21 +00:00
};
/**
* xmlID:
*
2001-02-23 17:55:21 +00:00
* An XML ID instance.
*/
typedef struct _xmlID xmlID;
typedef xmlID *xmlIDPtr;
struct _xmlID {
struct _xmlID *next; /* next ID */
const xmlChar *value; /* The ID name */
xmlAttrPtr attr; /* The attribute holding it */
const xmlChar *name; /* The attribute if attr is not available */
int lineno; /* The line number if attr is not available */
struct _xmlDoc *doc; /* The document holding the ID */
2001-02-23 17:55:21 +00:00
};
/**
* xmlRef:
*
2001-02-23 17:55:21 +00:00
* An XML IDREF instance.
*/
typedef struct _xmlRef xmlRef;
typedef xmlRef *xmlRefPtr;
struct _xmlRef {
struct _xmlRef *next; /* next Ref */
const xmlChar *value; /* The Ref name */
xmlAttrPtr attr; /* The attribute holding it */
const xmlChar *name; /* The attribute if attr is not available */
int lineno; /* The line number if attr is not available */
2001-02-23 17:55:21 +00:00
};
/**
* xmlNode:
*
2001-02-23 17:55:21 +00:00
* A node in an XML tree.
*/
typedef struct _xmlNode xmlNode;
typedef xmlNode *xmlNodePtr;
struct _xmlNode {
void *_private; /* application data */
2001-02-23 17:55:21 +00:00
xmlElementType type; /* type number, must be second ! */
const xmlChar *name; /* the name of the node, or the entity */
struct _xmlNode *children; /* parent->childs link */
struct _xmlNode *last; /* last child link */
struct _xmlNode *parent; /* child->parent link */
struct _xmlNode *next; /* next sibling link */
struct _xmlNode *prev; /* previous sibling link */
struct _xmlDoc *doc; /* the containing document */
/* End of common part */
2001-02-23 17:55:21 +00:00
xmlNs *ns; /* pointer to the associated namespace */
xmlChar *content; /* the content */
struct _xmlAttr *properties;/* properties list */
xmlNs *nsDef; /* namespace definitions on this node */
2020-03-08 17:19:42 +01:00
void *psvi; /* for type/PSVI information */
unsigned short line; /* line number */
unsigned short extra; /* extra data for XPath/XSLT */
2001-02-23 17:55:21 +00:00
};
/**
* XML_GET_CONTENT:
*
* Macro to extract the content pointer of a node.
*/
#define XML_GET_CONTENT(n) \
((n)->type == XML_ELEMENT_NODE ? NULL : (n)->content)
/**
* XML_GET_LINE:
*
* Macro to extract the line number of an element node.
*/
#define XML_GET_LINE(n) \
(xmlGetLineNo(n))
/**
* xmlDocProperty
*
* Set of properties of the document as found by the parser
2019-09-30 17:04:54 +02:00
* Some of them are linked to similarly named xmlParserOption
*/
typedef enum {
XML_DOC_WELLFORMED = 1<<0, /* document is XML well formed */
XML_DOC_NSVALID = 1<<1, /* document is Namespace valid */
XML_DOC_OLD10 = 1<<2, /* parsed with old XML-1.0 parser */
XML_DOC_DTDVALID = 1<<3, /* DTD validation was successful */
XML_DOC_XINCLUDE = 1<<4, /* XInclude substitution was done */
XML_DOC_USERBUILT = 1<<5, /* Document was built using the API
and not by parsing an instance */
XML_DOC_INTERNAL = 1<<6, /* built for internal processing */
XML_DOC_HTML = 1<<7 /* parsed or built HTML document */
} xmlDocProperties;
/**
* xmlDoc:
*
2001-02-23 17:55:21 +00:00
* An XML document.
*/
typedef struct _xmlDoc xmlDoc;
typedef xmlDoc *xmlDocPtr;
struct _xmlDoc {
void *_private; /* application data */
2001-02-23 17:55:21 +00:00
xmlElementType type; /* XML_DOCUMENT_NODE, must be second ! */
char *name; /* name/filename/URI of the document */
struct _xmlNode *children; /* the document tree */
struct _xmlNode *last; /* last child link */
struct _xmlNode *parent; /* child->parent link */
struct _xmlNode *next; /* next sibling link */
struct _xmlNode *prev; /* previous sibling link */
struct _xmlDoc *doc; /* autoreference to itself */
/* End of common part */
int compression;/* level of zlib compression */
int standalone; /* standalone document (no external refs)
1 if standalone="yes"
0 if standalone="no"
-1 if there is no XML declaration
-2 if there is an XML declaration, but no
standalone attribute was specified */
2001-02-23 17:55:21 +00:00
struct _xmlDtd *intSubset; /* the document internal subset */
struct _xmlDtd *extSubset; /* the document external subset */
struct _xmlNs *oldNs; /* Global namespace, the old way */
const xmlChar *version; /* the XML version string */
const xmlChar *encoding; /* actual encoding, if any */
2001-02-23 17:55:21 +00:00
void *ids; /* Hash table for ID attributes if any */
void *refs; /* Hash table for IDREFs attributes if any */
const xmlChar *URL; /* The URI for that document */
2023-08-08 15:19:46 +02:00
int charset; /* unused */
struct _xmlDict *dict; /* dict used to allocate names or NULL */
2020-03-08 17:19:42 +01:00
void *psvi; /* for type/PSVI information */
int parseFlags; /* set of xmlParserOption used to parse the
document */
int properties; /* set of xmlDocProperties for this document
set at the end of parsing */
2001-02-23 17:55:21 +00:00
};
typedef struct _xmlDOMWrapCtxt xmlDOMWrapCtxt;
typedef xmlDOMWrapCtxt *xmlDOMWrapCtxtPtr;
/**
* xmlDOMWrapAcquireNsFunction:
* @ctxt: a DOM wrapper context
* @node: the context node (element or attribute)
* @nsName: the requested namespace name
* @nsPrefix: the requested namespace prefix
*
* A function called to acquire namespaces (xmlNs) from the wrapper.
*
* Returns an xmlNsPtr or NULL in case of an error.
*/
typedef xmlNsPtr (*xmlDOMWrapAcquireNsFunction) (xmlDOMWrapCtxtPtr ctxt,
xmlNodePtr node,
const xmlChar *nsName,
const xmlChar *nsPrefix);
/**
* xmlDOMWrapCtxt:
*
* Context for DOM wrapper-operations.
*/
struct _xmlDOMWrapCtxt {
void * _private;
/*
* The type of this context, just in case we need specialized
* contexts in the future.
*/
int type;
/*
* Internal namespace map used for various operations.
*/
void * namespaceMap;
/*
* Use this one to acquire an xmlNsPtr intended for node->ns.
* (Note that this is not intended for elem->nsDef).
*/
xmlDOMWrapAcquireNsFunction getNsForNodeFunc;
};
/**
* xmlRegisterNodeFunc:
* @node: the current node
*
* Signature for the registration callback of a created node
*/
typedef void (*xmlRegisterNodeFunc) (xmlNodePtr node);
/**
* xmlDeregisterNodeFunc:
* @node: the current node
*
* Signature for the deregistration callback of a discarded node
*/
typedef void (*xmlDeregisterNodeFunc) (xmlNodePtr node);
/**
* xmlChildrenNode:
*
* Macro for compatibility naming layer with libxml1. Maps
* to "children."
2001-02-23 17:55:21 +00:00
*/
#ifndef xmlChildrenNode
#define xmlChildrenNode children
#endif
/**
* xmlRootNode:
*
* Macro for compatibility naming layer with libxml1. Maps
* to "children".
*/
#ifndef xmlRootNode
2001-02-23 17:55:21 +00:00
#define xmlRootNode children
#endif
/*
* Variables.
*/
/** DOC_DISABLE */
XML_DEPRECATED
XMLPUBVAR const xmlBufferAllocationScheme xmlBufferAllocScheme;
XML_DEPRECATED
XMLPUBVAR const int xmlDefaultBufferSize;
XML_DEPRECATED
XMLPUBFUN xmlRegisterNodeFunc *__xmlRegisterNodeDefaultValue(void);
XML_DEPRECATED
XMLPUBFUN xmlDeregisterNodeFunc *__xmlDeregisterNodeDefaultValue(void);
#ifndef XML_GLOBALS_NO_REDEFINITION
#define xmlRegisterNodeDefaultValue \
(*__xmlRegisterNodeDefaultValue())
#define xmlDeregisterNodeDefaultValue \
(*__xmlDeregisterNodeDefaultValue())
#endif
2023-09-21 22:57:33 +02:00
/** DOC_ENABLE */
/*
* Some helper functions
*/
XMLPUBFUN int
2003-08-25 09:05:12 +00:00
xmlValidateNCName (const xmlChar *value,
int space);
2005-01-02 09:53:13 +00:00
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlValidateQName (const xmlChar *value,
int space);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlValidateName (const xmlChar *value,
int space);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlValidateNMToken (const xmlChar *value,
int space);
XMLPUBFUN xmlChar *
2003-08-27 08:59:58 +00:00
xmlBuildQName (const xmlChar *ncname,
const xmlChar *prefix,
xmlChar *memory,
int len);
XMLPUBFUN xmlChar *
2003-08-27 08:59:58 +00:00
xmlSplitQName2 (const xmlChar *name,
xmlChar **prefix);
XMLPUBFUN const xmlChar *
2003-08-27 08:59:58 +00:00
xmlSplitQName3 (const xmlChar *name,
int *len);
2001-02-23 17:55:21 +00:00
/*
* Handling Buffers, the old ones see @xmlBuf for the new ones.
2001-02-23 17:55:21 +00:00
*/
XML_DEPRECATED
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlSetBufferAllocationScheme(xmlBufferAllocationScheme scheme);
XML_DEPRECATED
XMLPUBFUN xmlBufferAllocationScheme
2003-08-27 08:59:58 +00:00
xmlGetBufferAllocationScheme(void);
XMLPUBFUN xmlBufferPtr
2003-08-27 08:59:58 +00:00
xmlBufferCreate (void);
XMLPUBFUN xmlBufferPtr
2003-08-27 08:59:58 +00:00
xmlBufferCreateSize (size_t size);
XMLPUBFUN xmlBufferPtr
xmlBufferCreateStatic (void *mem,
size_t size);
XML_DEPRECATED
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlBufferResize (xmlBufferPtr buf,
unsigned int size);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlBufferFree (xmlBufferPtr buf);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlBufferDump (FILE *file,
2001-02-23 17:55:21 +00:00
xmlBufferPtr buf);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlBufferAdd (xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
const xmlChar *str,
int len);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlBufferAddHead (xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
const xmlChar *str,
int len);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlBufferCat (xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
const xmlChar *str);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlBufferCCat (xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
const char *str);
XML_DEPRECATED
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlBufferShrink (xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
unsigned int len);
XML_DEPRECATED
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlBufferGrow (xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
unsigned int len);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlBufferEmpty (xmlBufferPtr buf);
XMLPUBFUN const xmlChar*
xmlBufferContent (const xmlBuffer *buf);
XMLPUBFUN xmlChar*
xmlBufferDetach (xmlBufferPtr buf);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlBufferSetAllocationScheme(xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
xmlBufferAllocationScheme scheme);
XMLPUBFUN int
xmlBufferLength (const xmlBuffer *buf);
2001-02-23 17:55:21 +00:00
/*
* Creating/freeing new structures.
2001-02-23 17:55:21 +00:00
*/
XMLPUBFUN xmlDtdPtr
2003-08-27 08:59:58 +00:00
xmlCreateIntSubset (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
const xmlChar *name,
const xmlChar *ExternalID,
const xmlChar *SystemID);
XMLPUBFUN xmlDtdPtr
2003-08-27 08:59:58 +00:00
xmlNewDtd (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
const xmlChar *name,
const xmlChar *ExternalID,
const xmlChar *SystemID);
XMLPUBFUN xmlDtdPtr
xmlGetIntSubset (const xmlDoc *doc);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlFreeDtd (xmlDtdPtr cur);
XMLPUBFUN xmlNsPtr
2003-08-27 08:59:58 +00:00
xmlNewNs (xmlNodePtr node,
2001-02-23 17:55:21 +00:00
const xmlChar *href,
const xmlChar *prefix);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlFreeNs (xmlNsPtr cur);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlFreeNsList (xmlNsPtr cur);
XMLPUBFUN xmlDocPtr
2003-08-27 08:59:58 +00:00
xmlNewDoc (const xmlChar *version);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlFreeDoc (xmlDocPtr cur);
XMLPUBFUN xmlAttrPtr
2003-08-27 08:59:58 +00:00
xmlNewDocProp (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
const xmlChar *name,
const xmlChar *value);
XMLPUBFUN xmlAttrPtr
2003-08-27 08:59:58 +00:00
xmlNewProp (xmlNodePtr node,
2001-02-23 17:55:21 +00:00
const xmlChar *name,
const xmlChar *value);
XMLPUBFUN xmlAttrPtr
2003-08-27 08:59:58 +00:00
xmlNewNsProp (xmlNodePtr node,
2001-02-23 17:55:21 +00:00
xmlNsPtr ns,
const xmlChar *name,
const xmlChar *value);
XMLPUBFUN xmlAttrPtr
2003-08-27 08:59:58 +00:00
xmlNewNsPropEatName (xmlNodePtr node,
xmlNsPtr ns,
xmlChar *name,
const xmlChar *value);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlFreePropList (xmlAttrPtr cur);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlFreeProp (xmlAttrPtr cur);
XMLPUBFUN xmlAttrPtr
2003-08-27 08:59:58 +00:00
xmlCopyProp (xmlNodePtr target,
2001-02-23 17:55:21 +00:00
xmlAttrPtr cur);
XMLPUBFUN xmlAttrPtr
2003-08-27 08:59:58 +00:00
xmlCopyPropList (xmlNodePtr target,
2001-02-23 17:55:21 +00:00
xmlAttrPtr cur);
XMLPUBFUN xmlDtdPtr
2003-08-27 08:59:58 +00:00
xmlCopyDtd (xmlDtdPtr dtd);
XMLPUBFUN xmlDocPtr
2003-08-27 08:59:58 +00:00
xmlCopyDoc (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
int recursive);
/*
* Creating new nodes.
2001-02-23 17:55:21 +00:00
*/
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewDocNode (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
xmlNsPtr ns,
const xmlChar *name,
const xmlChar *content);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewDocNodeEatName (xmlDocPtr doc,
xmlNsPtr ns,
xmlChar *name,
const xmlChar *content);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewNode (xmlNsPtr ns,
2001-02-23 17:55:21 +00:00
const xmlChar *name);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewNodeEatName (xmlNsPtr ns,
xmlChar *name);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewChild (xmlNodePtr parent,
2001-02-23 17:55:21 +00:00
xmlNsPtr ns,
const xmlChar *name,
const xmlChar *content);
XMLPUBFUN xmlNodePtr
xmlNewDocText (const xmlDoc *doc,
2001-02-23 17:55:21 +00:00
const xmlChar *content);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewText (const xmlChar *content);
XMLPUBFUN xmlNodePtr
xmlNewDocPI (xmlDocPtr doc,
const xmlChar *name,
const xmlChar *content);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewPI (const xmlChar *name,
2001-02-23 17:55:21 +00:00
const xmlChar *content);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewDocTextLen (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
const xmlChar *content,
int len);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewTextLen (const xmlChar *content,
2001-02-23 17:55:21 +00:00
int len);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewDocComment (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
const xmlChar *content);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewComment (const xmlChar *content);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewCDataBlock (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
const xmlChar *content,
int len);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewCharRef (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
const xmlChar *name);
XMLPUBFUN xmlNodePtr
xmlNewReference (const xmlDoc *doc,
2001-02-23 17:55:21 +00:00
const xmlChar *name);
XMLPUBFUN xmlNodePtr
xmlCopyNode (xmlNodePtr node,
2001-02-23 17:55:21 +00:00
int recursive);
XMLPUBFUN xmlNodePtr
xmlDocCopyNode (xmlNodePtr node,
xmlDocPtr doc,
int recursive);
XMLPUBFUN xmlNodePtr
xmlDocCopyNodeList (xmlDocPtr doc,
xmlNodePtr node);
XMLPUBFUN xmlNodePtr
xmlCopyNodeList (xmlNodePtr node);
XMLPUBFUN xmlNodePtr
2005-01-02 09:53:13 +00:00
xmlNewTextChild (xmlNodePtr parent,
xmlNsPtr ns,
const xmlChar *name,
const xmlChar *content);
XMLPUBFUN xmlNodePtr
2005-01-02 09:53:13 +00:00
xmlNewDocRawNode (xmlDocPtr doc,
xmlNsPtr ns,
const xmlChar *name,
const xmlChar *content);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlNewDocFragment (xmlDocPtr doc);
2001-02-23 17:55:21 +00:00
/*
* Navigating.
2001-02-23 17:55:21 +00:00
*/
XMLPUBFUN long
xmlGetLineNo (const xmlNode *node);
XMLPUBFUN xmlChar *
xmlGetNodePath (const xmlNode *node);
XMLPUBFUN xmlNodePtr
xmlDocGetRootElement (const xmlDoc *doc);
XMLPUBFUN xmlNodePtr
xmlGetLastChild (const xmlNode *parent);
XMLPUBFUN int
xmlNodeIsText (const xmlNode *node);
XMLPUBFUN int
xmlIsBlankNode (const xmlNode *node);
2001-02-23 17:55:21 +00:00
/*
* Changing the structure.
2001-02-23 17:55:21 +00:00
*/
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlDocSetRootElement (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
xmlNodePtr root);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlNodeSetName (xmlNodePtr cur,
2001-02-23 17:55:21 +00:00
const xmlChar *name);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlAddChild (xmlNodePtr parent,
2001-02-23 17:55:21 +00:00
xmlNodePtr cur);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlAddChildList (xmlNodePtr parent,
2001-02-23 17:55:21 +00:00
xmlNodePtr cur);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlReplaceNode (xmlNodePtr old,
2001-02-23 17:55:21 +00:00
xmlNodePtr cur);
XMLPUBFUN xmlNodePtr
xmlAddPrevSibling (xmlNodePtr cur,
2001-02-23 17:55:21 +00:00
xmlNodePtr elem);
XMLPUBFUN xmlNodePtr
xmlAddSibling (xmlNodePtr cur,
2001-02-23 17:55:21 +00:00
xmlNodePtr elem);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlAddNextSibling (xmlNodePtr cur,
2001-02-23 17:55:21 +00:00
xmlNodePtr elem);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlUnlinkNode (xmlNodePtr cur);
XMLPUBFUN xmlNodePtr
2003-08-27 08:59:58 +00:00
xmlTextMerge (xmlNodePtr first,
2001-02-23 17:55:21 +00:00
xmlNodePtr second);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlTextConcat (xmlNodePtr node,
2001-02-23 17:55:21 +00:00
const xmlChar *content,
int len);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlFreeNodeList (xmlNodePtr cur);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlFreeNode (xmlNodePtr cur);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlSetTreeDoc (xmlNodePtr tree,
2001-02-23 17:55:21 +00:00
xmlDocPtr doc);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlSetListDoc (xmlNodePtr list,
2001-02-23 17:55:21 +00:00
xmlDocPtr doc);
/*
* Namespaces.
2001-02-23 17:55:21 +00:00
*/
XMLPUBFUN xmlNsPtr
2003-08-27 08:59:58 +00:00
xmlSearchNs (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
xmlNodePtr node,
const xmlChar *nameSpace);
XMLPUBFUN xmlNsPtr
2003-08-27 08:59:58 +00:00
xmlSearchNsByHref (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
xmlNodePtr node,
const xmlChar *href);
XMLPUBFUN int
xmlGetNsListSafe (const xmlDoc *doc,
const xmlNode *node,
xmlNsPtr **out);
XMLPUBFUN xmlNsPtr *
xmlGetNsList (const xmlDoc *doc,
const xmlNode *node);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlSetNs (xmlNodePtr node,
2001-02-23 17:55:21 +00:00
xmlNsPtr ns);
XMLPUBFUN xmlNsPtr
2003-08-27 08:59:58 +00:00
xmlCopyNamespace (xmlNsPtr cur);
XMLPUBFUN xmlNsPtr
2003-08-27 08:59:58 +00:00
xmlCopyNamespaceList (xmlNsPtr cur);
2001-02-23 17:55:21 +00:00
/*
* Changing the content.
*/
XMLPUBFUN xmlAttrPtr
2003-08-27 08:59:58 +00:00
xmlSetProp (xmlNodePtr node,
2001-02-23 17:55:21 +00:00
const xmlChar *name,
const xmlChar *value);
XMLPUBFUN xmlAttrPtr
2005-01-02 09:53:13 +00:00
xmlSetNsProp (xmlNodePtr node,
xmlNsPtr ns,
const xmlChar *name,
const xmlChar *value);
XMLPUBFUN int
xmlNodeGetAttrValue (const xmlNode *node,
const xmlChar *name,
const xmlChar *nsUri,
xmlChar **out);
XMLPUBFUN xmlChar *
xmlGetNoNsProp (const xmlNode *node,
2001-02-23 17:55:21 +00:00
const xmlChar *name);
XMLPUBFUN xmlChar *
xmlGetProp (const xmlNode *node,
const xmlChar *name);
XMLPUBFUN xmlAttrPtr
xmlHasProp (const xmlNode *node,
2001-02-23 17:55:21 +00:00
const xmlChar *name);
XMLPUBFUN xmlAttrPtr
xmlHasNsProp (const xmlNode *node,
const xmlChar *name,
const xmlChar *nameSpace);
XMLPUBFUN xmlChar *
xmlGetNsProp (const xmlNode *node,
2001-02-23 17:55:21 +00:00
const xmlChar *name,
const xmlChar *nameSpace);
XMLPUBFUN xmlNodePtr
xmlStringGetNodeList (const xmlDoc *doc,
2001-02-23 17:55:21 +00:00
const xmlChar *value);
XMLPUBFUN xmlNodePtr
xmlStringLenGetNodeList (const xmlDoc *doc,
2001-02-23 17:55:21 +00:00
const xmlChar *value,
int len);
XMLPUBFUN xmlChar *
2003-08-27 08:59:58 +00:00
xmlNodeListGetString (xmlDocPtr doc,
const xmlNode *list,
2001-02-23 17:55:21 +00:00
int inLine);
XMLPUBFUN xmlChar *
xmlNodeListGetRawString (const xmlDoc *doc,
const xmlNode *list,
2001-02-23 17:55:21 +00:00
int inLine);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlNodeSetContent (xmlNodePtr cur,
2001-02-23 17:55:21 +00:00
const xmlChar *content);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlNodeSetContentLen (xmlNodePtr cur,
2001-02-23 17:55:21 +00:00
const xmlChar *content,
int len);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlNodeAddContent (xmlNodePtr cur,
2001-02-23 17:55:21 +00:00
const xmlChar *content);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlNodeAddContentLen (xmlNodePtr cur,
2001-02-23 17:55:21 +00:00
const xmlChar *content,
int len);
XMLPUBFUN xmlChar *
xmlNodeGetContent (const xmlNode *cur);
XMLPUBFUN int
xmlNodeBufGetContent (xmlBufferPtr buffer,
const xmlNode *cur);
XMLPUBFUN int
xmlBufGetNodeContent (xmlBufPtr buf,
const xmlNode *cur);
XMLPUBFUN xmlChar *
xmlNodeGetLang (const xmlNode *cur);
XMLPUBFUN int
xmlNodeGetSpacePreserve (const xmlNode *cur);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlNodeSetLang (xmlNodePtr cur,
2001-02-23 17:55:21 +00:00
const xmlChar *lang);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlNodeSetSpacePreserve (xmlNodePtr cur,
int val);
XMLPUBFUN int
xmlNodeGetBaseSafe (const xmlDoc *doc,
const xmlNode *cur,
xmlChar **baseOut);
XMLPUBFUN xmlChar *
xmlNodeGetBase (const xmlDoc *doc,
const xmlNode *cur);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlNodeSetBase (xmlNodePtr cur,
const xmlChar *uri);
2001-02-23 17:55:21 +00:00
/*
* Removing content.
*/
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlRemoveProp (xmlAttrPtr cur);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlUnsetNsProp (xmlNodePtr node,
xmlNsPtr ns,
const xmlChar *name);
XMLPUBFUN int
2005-01-02 09:53:13 +00:00
xmlUnsetProp (xmlNodePtr node,
const xmlChar *name);
2001-02-23 17:55:21 +00:00
/*
* Internal, don't use.
2001-02-23 17:55:21 +00:00
*/
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlBufferWriteCHAR (xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
const xmlChar *string);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlBufferWriteChar (xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
const char *string);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlBufferWriteQuotedString(xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
const xmlChar *string);
2005-01-02 09:53:13 +00:00
#ifdef LIBXML_OUTPUT_ENABLED
XMLPUBFUN void xmlAttrSerializeTxtContent(xmlBufferPtr buf,
xmlDocPtr doc,
xmlAttrPtr attr,
const xmlChar *string);
2005-01-02 09:53:13 +00:00
#endif /* LIBXML_OUTPUT_ENABLED */
2001-02-23 17:55:21 +00:00
/*
* Namespace handling.
2001-02-23 17:55:21 +00:00
*/
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlReconciliateNs (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
xmlNodePtr tree);
#ifdef LIBXML_OUTPUT_ENABLED
2001-02-23 17:55:21 +00:00
/*
* Saving.
2001-02-23 17:55:21 +00:00
*/
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlDocDumpFormatMemory (xmlDocPtr cur,
xmlChar **mem,
2001-02-23 17:55:21 +00:00
int *size,
int format);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlDocDumpMemory (xmlDocPtr cur,
xmlChar **mem,
2001-02-23 17:55:21 +00:00
int *size);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlDocDumpMemoryEnc (xmlDocPtr out_doc,
2001-02-23 17:55:21 +00:00
xmlChar **doc_txt_ptr,
int * doc_txt_len,
const char *txt_encoding);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlDocDumpFormatMemoryEnc(xmlDocPtr out_doc,
2001-02-23 17:55:21 +00:00
xmlChar **doc_txt_ptr,
int * doc_txt_len,
const char *txt_encoding,
int format);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlDocFormatDump (FILE *f,
xmlDocPtr cur,
int format);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlDocDump (FILE *f,
2001-02-23 17:55:21 +00:00
xmlDocPtr cur);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlElemDump (FILE *f,
2001-02-23 17:55:21 +00:00
xmlDocPtr doc,
xmlNodePtr cur);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlSaveFile (const char *filename,
2001-02-23 17:55:21 +00:00
xmlDocPtr cur);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlSaveFormatFile (const char *filename,
xmlDocPtr cur,
int format);
XMLPUBFUN size_t
xmlBufNodeDump (xmlBufPtr buf,
xmlDocPtr doc,
xmlNodePtr cur,
int level,
int format);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlNodeDump (xmlBufferPtr buf,
2001-02-23 17:55:21 +00:00
xmlDocPtr doc,
xmlNodePtr cur,
int level,
int format);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlSaveFileTo (xmlOutputBufferPtr buf,
xmlDocPtr cur,
const char *encoding);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlSaveFormatFileTo (xmlOutputBufferPtr buf,
2001-02-23 17:55:21 +00:00
xmlDocPtr cur,
const char *encoding,
int format);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlNodeDumpOutput (xmlOutputBufferPtr buf,
xmlDocPtr doc,
xmlNodePtr cur,
int level,
int format,
2001-02-23 17:55:21 +00:00
const char *encoding);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlSaveFormatFileEnc (const char *filename,
xmlDocPtr cur,
const char *encoding,
int format);
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlSaveFileEnc (const char *filename,
2001-02-23 17:55:21 +00:00
xmlDocPtr cur,
const char *encoding);
#endif /* LIBXML_OUTPUT_ENABLED */
/*
* XHTML
*/
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlIsXHTML (const xmlChar *systemID,
const xmlChar *publicID);
2001-02-23 17:55:21 +00:00
/*
* Compression.
2001-02-23 17:55:21 +00:00
*/
XMLPUBFUN int
xmlGetDocCompressMode (const xmlDoc *doc);
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlSetDocCompressMode (xmlDocPtr doc,
2001-02-23 17:55:21 +00:00
int mode);
2024-04-28 17:54:36 +02:00
XML_DEPRECATED
XMLPUBFUN int
2003-08-27 08:59:58 +00:00
xmlGetCompressMode (void);
2024-04-28 17:54:36 +02:00
XML_DEPRECATED
XMLPUBFUN void
2003-08-27 08:59:58 +00:00
xmlSetCompressMode (int mode);
2001-02-23 17:55:21 +00:00
/*
* DOM-wrapper helper functions.
*/
XMLPUBFUN xmlDOMWrapCtxtPtr
xmlDOMWrapNewCtxt (void);
XMLPUBFUN void
xmlDOMWrapFreeCtxt (xmlDOMWrapCtxtPtr ctxt);
XMLPUBFUN int
xmlDOMWrapReconcileNamespaces(xmlDOMWrapCtxtPtr ctxt,
xmlNodePtr elem,
int options);
XMLPUBFUN int
xmlDOMWrapAdoptNode (xmlDOMWrapCtxtPtr ctxt,
xmlDocPtr sourceDoc,
xmlNodePtr node,
xmlDocPtr destDoc,
xmlNodePtr destParent,
int options);
XMLPUBFUN int
xmlDOMWrapRemoveNode (xmlDOMWrapCtxtPtr ctxt,
xmlDocPtr doc,
xmlNodePtr node,
int options);
XMLPUBFUN int
xmlDOMWrapCloneNode (xmlDOMWrapCtxtPtr ctxt,
xmlDocPtr sourceDoc,
xmlNodePtr node,
xmlNodePtr *clonedNode,
xmlDocPtr destDoc,
xmlNodePtr destParent,
int deep,
int options);
/*
* 5 interfaces from DOM ElementTraversal, but different in entities
* traversal.
*/
XMLPUBFUN unsigned long
xmlChildElementCount (xmlNodePtr parent);
XMLPUBFUN xmlNodePtr
xmlNextElementSibling (xmlNodePtr node);
XMLPUBFUN xmlNodePtr
xmlFirstElementChild (xmlNodePtr parent);
XMLPUBFUN xmlNodePtr
xmlLastElementChild (xmlNodePtr parent);
XMLPUBFUN xmlNodePtr
xmlPreviousElementSibling (xmlNodePtr node);
XML_DEPRECATED
XMLPUBFUN xmlRegisterNodeFunc
xmlRegisterNodeDefault (xmlRegisterNodeFunc func);
XML_DEPRECATED
XMLPUBFUN xmlDeregisterNodeFunc
xmlDeregisterNodeDefault (xmlDeregisterNodeFunc func);
XML_DEPRECATED
XMLPUBFUN xmlRegisterNodeFunc
xmlThrDefRegisterNodeDefault(xmlRegisterNodeFunc func);
XML_DEPRECATED
XMLPUBFUN xmlDeregisterNodeFunc
xmlThrDefDeregisterNodeDefault(xmlDeregisterNodeFunc func);
XML_DEPRECATED XMLPUBFUN xmlBufferAllocationScheme
xmlThrDefBufferAllocScheme (xmlBufferAllocationScheme v);
XML_DEPRECATED XMLPUBFUN int
xmlThrDefDefaultBufferSize (int v);
2001-02-23 17:55:21 +00:00
#ifdef __cplusplus
}
#endif
#endif /* __XML_TREE_H__ */
#endif /* XML_TREE_INTERNALS */