2001-02-23 17:55:21 +00:00
|
|
|
/*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Summary: the core parser module
|
|
|
|
* Description: Interfaces, constants and types related to the XML parser
|
2001-02-23 17:55:21 +00:00
|
|
|
*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Copy: See Copyright for the status of this software.
|
2001-02-23 17:55:21 +00:00
|
|
|
*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Author: Daniel Veillard
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XML_PARSER_H__
|
|
|
|
#define __XML_PARSER_H__
|
|
|
|
|
2024-06-16 19:56:08 +02:00
|
|
|
/** DOC_DISABLE */
|
2003-08-25 09:05:12 +00:00
|
|
|
#include <libxml/xmlversion.h>
|
2023-12-06 18:35:30 +01:00
|
|
|
#define XML_TREE_INTERNALS
|
2001-02-23 17:55:21 +00:00
|
|
|
#include <libxml/tree.h>
|
2023-12-06 18:35:30 +01:00
|
|
|
#undef XML_TREE_INTERNALS
|
2003-08-18 12:15:38 +00:00
|
|
|
#include <libxml/dict.h>
|
2003-09-10 10:51:05 +00:00
|
|
|
#include <libxml/hash.h>
|
2001-02-23 17:55:21 +00:00
|
|
|
#include <libxml/valid.h>
|
|
|
|
#include <libxml/entities.h>
|
2003-10-02 22:28:19 +00:00
|
|
|
#include <libxml/xmlerror.h>
|
moved string and UTF8 routines out of parser.c and encoding.c into a new
* encoding.c, parser.c, xmlstring.c, Makefile.am,
include/libxml/Makefile.am, include/libxml/catalog.c,
include/libxml/chvalid.h, include/libxml/encoding.h,
include/libxml/parser.h, include/libxml/relaxng.h,
include/libxml/tree.h, include/libxml/xmlwriter.h,
include/libxml/xmlstring.h:
moved string and UTF8 routines out of parser.c and encoding.c
into a new module xmlstring.c with include file
include/libxml/xmlstring.h mostly using patches from Reid
Spencer. Since xmlChar now defined in xmlstring.h, several
include files needed to have a #include added for safety.
* doc/apibuild.py: added some additional sorting for various
references displayed in the APIxxx.html files. Rebuilt the
docs, and also added new file for xmlstring module.
* configure.in: small addition to help my testing; no effect on
normal usage.
* doc/search.php: added $_GET[query] so that persistent globals
can be disabled (for recent versions of PHP)
2004-01-06 11:52:13 +00:00
|
|
|
#include <libxml/xmlstring.h>
|
2023-09-20 17:00:50 +02:00
|
|
|
#include <libxml/xmlmemory.h>
|
2023-09-20 17:54:48 +02:00
|
|
|
#include <libxml/encoding.h>
|
|
|
|
#include <libxml/xmlIO.h>
|
2023-09-21 14:52:14 +02:00
|
|
|
/* for compatibility */
|
|
|
|
#include <libxml/SAX2.h>
|
|
|
|
#include <libxml/threads.h>
|
2024-06-16 19:56:08 +02:00
|
|
|
/** DOC_ENABLE */
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2001-07-18 19:30:27 +00:00
|
|
|
/**
|
|
|
|
* XML_DEFAULT_VERSION:
|
|
|
|
*
|
|
|
|
* The default version of XML used: 1.0
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
#define XML_DEFAULT_VERSION "1.0"
|
|
|
|
|
2024-06-11 19:10:41 +02:00
|
|
|
typedef enum {
|
|
|
|
XML_RESOURCE_UNKNOWN = 0,
|
|
|
|
XML_RESOURCE_MAIN_DOCUMENT,
|
|
|
|
XML_RESOURCE_DTD,
|
|
|
|
XML_RESOURCE_GENERAL_ENTITY,
|
|
|
|
XML_RESOURCE_PARAMETER_ENTITY,
|
|
|
|
XML_RESOURCE_XINCLUDE,
|
|
|
|
XML_RESOURCE_XINCLUDE_TEXT
|
|
|
|
} xmlResourceType;
|
|
|
|
|
2001-02-23 17:55:21 +00:00
|
|
|
/**
|
2001-05-19 13:24:56 +00:00
|
|
|
* xmlParserInput:
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* An xmlParserInput is an input flow for the XML processor.
|
2001-02-23 17:55:21 +00:00
|
|
|
* Each entity parsed is associated an xmlParserInput (except the
|
|
|
|
* few predefined ones). This is the case both for internal entities
|
|
|
|
* - in which case the flow is already completely in memory - or
|
|
|
|
* external entities - in which case we use the buf structure for
|
|
|
|
* progressive reading and I18N conversions to the internal UTF-8 format.
|
|
|
|
*/
|
|
|
|
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlParserInputDeallocate:
|
|
|
|
* @str: the string to deallocate
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Callback for freeing some parser input allocations.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
|
|
|
typedef void (* xmlParserInputDeallocate)(xmlChar *str);
|
2001-07-18 19:30:27 +00:00
|
|
|
|
2001-02-23 17:55:21 +00:00
|
|
|
struct _xmlParserInput {
|
|
|
|
/* Input buffer */
|
2024-06-10 23:06:13 +02:00
|
|
|
xmlParserInputBufferPtr buf;
|
|
|
|
/* The file analyzed, if any */
|
|
|
|
const char *filename;
|
|
|
|
/* unused */
|
|
|
|
const char *directory XML_DEPRECATED_MEMBER;
|
|
|
|
/* Base of the array to parse */
|
|
|
|
const xmlChar *base XML_DEPRECATED_MEMBER;
|
|
|
|
/* Current char being parsed */
|
|
|
|
const xmlChar *cur XML_DEPRECATED_MEMBER;
|
|
|
|
/* end of the array to parse */
|
|
|
|
const xmlChar *end XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
int length XML_DEPRECATED_MEMBER;
|
|
|
|
/* Current line */
|
2024-06-21 18:25:11 +02:00
|
|
|
int line;
|
2024-06-10 23:06:13 +02:00
|
|
|
/* Current column */
|
2024-06-21 18:25:11 +02:00
|
|
|
int col;
|
2024-06-10 23:06:13 +02:00
|
|
|
/* How many xmlChars already consumed */
|
|
|
|
unsigned long consumed XML_DEPRECATED_MEMBER;
|
|
|
|
/* function to deallocate the base */
|
|
|
|
xmlParserInputDeallocate free XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
const xmlChar *encoding XML_DEPRECATED_MEMBER;
|
|
|
|
/* the version string for entity */
|
|
|
|
const xmlChar *version XML_DEPRECATED_MEMBER;
|
|
|
|
/* Flags */
|
|
|
|
int flags XML_DEPRECATED_MEMBER;
|
|
|
|
/* an unique identifier for the entity */
|
|
|
|
int id XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
unsigned long parentConsumed XML_DEPRECATED_MEMBER;
|
|
|
|
/* entity, if any */
|
|
|
|
xmlEntityPtr entity XML_DEPRECATED_MEMBER;
|
2001-02-23 17:55:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2001-05-19 13:24:56 +00:00
|
|
|
* xmlParserNodeInfo:
|
|
|
|
*
|
2020-03-08 17:19:42 +01:00
|
|
|
* The parser can be asked to collect Node information, i.e. at what
|
2012-09-11 13:26:36 +08:00
|
|
|
* place in the file they were detected.
|
2001-02-23 17:55:21 +00:00
|
|
|
* NOTE: This is off by default and not very well tested.
|
|
|
|
*/
|
|
|
|
typedef struct _xmlParserNodeInfo xmlParserNodeInfo;
|
|
|
|
typedef xmlParserNodeInfo *xmlParserNodeInfoPtr;
|
|
|
|
|
|
|
|
struct _xmlParserNodeInfo {
|
|
|
|
const struct _xmlNode* node;
|
|
|
|
/* Position & line # that text that created the node begins & ends on */
|
|
|
|
unsigned long begin_pos;
|
|
|
|
unsigned long begin_line;
|
|
|
|
unsigned long end_pos;
|
|
|
|
unsigned long end_line;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _xmlParserNodeInfoSeq xmlParserNodeInfoSeq;
|
|
|
|
typedef xmlParserNodeInfoSeq *xmlParserNodeInfoSeqPtr;
|
|
|
|
struct _xmlParserNodeInfoSeq {
|
|
|
|
unsigned long maximum;
|
|
|
|
unsigned long length;
|
|
|
|
xmlParserNodeInfo* buffer;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2001-05-19 13:24:56 +00:00
|
|
|
* xmlParserInputState:
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* The parser is now working also as a state based parser.
|
|
|
|
* The recursive one use the state info for entities processing.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
XML_PARSER_EOF = -1, /* nothing is to be parsed */
|
|
|
|
XML_PARSER_START = 0, /* nothing has been parsed */
|
|
|
|
XML_PARSER_MISC, /* Misc* before int subset */
|
2001-12-31 16:16:02 +00:00
|
|
|
XML_PARSER_PI, /* Within a processing instruction */
|
2001-02-23 17:55:21 +00:00
|
|
|
XML_PARSER_DTD, /* within some DTD content */
|
|
|
|
XML_PARSER_PROLOG, /* Misc* after internal subset */
|
|
|
|
XML_PARSER_COMMENT, /* within a comment */
|
|
|
|
XML_PARSER_START_TAG, /* within a start tag */
|
|
|
|
XML_PARSER_CONTENT, /* within the content */
|
|
|
|
XML_PARSER_CDATA_SECTION, /* within a CDATA section */
|
|
|
|
XML_PARSER_END_TAG, /* within a closing tag */
|
|
|
|
XML_PARSER_ENTITY_DECL, /* within an entity declaration */
|
|
|
|
XML_PARSER_ENTITY_VALUE, /* within an entity value in a decl */
|
|
|
|
XML_PARSER_ATTRIBUTE_VALUE, /* within an attribute value */
|
|
|
|
XML_PARSER_SYSTEM_LITERAL, /* within a SYSTEM value */
|
2012-09-11 13:26:36 +08:00
|
|
|
XML_PARSER_EPILOG, /* the Misc* after the last end tag */
|
2002-02-18 19:18:17 +00:00
|
|
|
XML_PARSER_IGNORE, /* within an IGNORED section */
|
parser: Rework encoding detection
Introduce XML_INPUT_HAS_ENCODING flag for xmlParserInput which is set
when xmlSwitchEncoding is called. The parser can use the flag to
reliably detect whether an encoding was already set via user override,
BOM or other auto-detection. In this case, the encoding declaration
won't be used to switch the encoding.
Before, an inscrutable mix of ctxt->charset, ctxt->input->encoding
and ctxt->input->buf->encoder was used.
Introduce private helper functions to switch encodings used by both the
XML and HTML parser:
- xmlDetectEncoding which skips over the BOM, allowing to remove the
BOM checks from other encoding functions.
- xmlSetDeclaredEncoding, replacing htmlCheckEncodingDirect, which warns
about encoding mismatches.
If users override the encoding, store the declared instead of the actual
encoding in xmlDoc. In this case, the actual encoding is known and the
raw value from the doc is more useful.
Also use the input flags to store the ISO-8859-1 fallback state.
Restrict the fallback to cases where no encoding was specified. (The
fallback is only useful in recovery mode and these days broken UTF-8 is
probably more likely than ISO-8859-1, so it might eventually be removed
completely.)
The 'charset' member of xmlParserCtxt is now unused. The 'encoding'
member of xmlParserInput is now unused.
The 'standalone' member of xmlParserInput is renamed to 'flags'.
A new parser state XML_PARSER_XML_DECL is added for the push parser.
2023-08-08 15:19:46 +02:00
|
|
|
XML_PARSER_PUBLIC_LITERAL, /* within a PUBLIC value */
|
|
|
|
XML_PARSER_XML_DECL /* before XML decl (but after BOM) */
|
2001-02-23 17:55:21 +00:00
|
|
|
} xmlParserInputState;
|
|
|
|
|
2024-01-05 01:14:28 +01:00
|
|
|
/** DOC_DISABLE */
|
|
|
|
/*
|
|
|
|
* Internal bits in the 'loadsubset' context member
|
2001-05-23 13:44:21 +00:00
|
|
|
*/
|
|
|
|
#define XML_DETECT_IDS 2
|
|
|
|
#define XML_COMPLETE_ATTRS 4
|
2003-03-23 12:02:56 +00:00
|
|
|
#define XML_SKIP_IDS 8
|
2024-01-05 01:14:28 +01:00
|
|
|
/** DOC_ENABLE */
|
2003-03-23 12:02:56 +00:00
|
|
|
|
2004-06-08 12:03:41 +00:00
|
|
|
/**
|
|
|
|
* xmlParserMode:
|
|
|
|
*
|
|
|
|
* A parser can operate in various modes
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
XML_PARSE_UNKNOWN = 0,
|
|
|
|
XML_PARSE_DOM = 1,
|
|
|
|
XML_PARSE_SAX = 2,
|
|
|
|
XML_PARSE_PUSH_DOM = 3,
|
|
|
|
XML_PARSE_PUSH_SAX = 4,
|
|
|
|
XML_PARSE_READER = 5
|
|
|
|
} xmlParserMode;
|
|
|
|
|
2021-05-08 21:20:05 +02:00
|
|
|
typedef struct _xmlStartTag xmlStartTag;
|
2023-09-29 00:18:44 +02:00
|
|
|
typedef struct _xmlParserNsData xmlParserNsData;
|
|
|
|
typedef struct _xmlAttrHashBucket xmlAttrHashBucket;
|
2021-05-08 21:20:05 +02:00
|
|
|
|
2024-06-11 03:51:43 +02:00
|
|
|
typedef int
|
|
|
|
(*xmlResourceLoader)(void *ctxt, const char *url, const char *publicId,
|
2024-06-11 19:10:41 +02:00
|
|
|
xmlResourceType type, int flags, xmlParserInputPtr *out);
|
2024-06-11 03:51:43 +02:00
|
|
|
|
2001-02-23 17:55:21 +00:00
|
|
|
/**
|
2001-05-19 13:24:56 +00:00
|
|
|
* xmlParserCtxt:
|
|
|
|
*
|
2001-02-23 17:55:21 +00:00
|
|
|
* The parser context.
|
2002-03-12 18:46:39 +00:00
|
|
|
* NOTE This doesn't completely define the parser state, the (current ?)
|
2001-02-23 17:55:21 +00:00
|
|
|
* design of the parser uses recursive function calls since this allow
|
|
|
|
* and easy mapping from the production rules of the specification
|
|
|
|
* to the actual code. The drawback is that the actual function call
|
|
|
|
* also reflect the parser state. However most of the parsing routines
|
|
|
|
* takes as the only argument the parser context pointer, so migrating
|
|
|
|
* to a state based parser for progressive parsing shouldn't be too hard.
|
|
|
|
*/
|
|
|
|
struct _xmlParserCtxt {
|
2024-06-10 23:06:13 +02:00
|
|
|
/* The SAX handler */
|
|
|
|
struct _xmlSAXHandler *sax;
|
|
|
|
/* For SAX interface only, used by DOM build */
|
|
|
|
void *userData;
|
|
|
|
/* the document being built */
|
|
|
|
xmlDocPtr myDoc;
|
|
|
|
/* is the document well formed */
|
|
|
|
int wellFormed;
|
|
|
|
/* shall we replace entities ? */
|
|
|
|
int replaceEntities XML_DEPRECATED_MEMBER;
|
|
|
|
/* the XML version string */
|
2024-06-21 18:17:11 +02:00
|
|
|
const xmlChar *version;
|
2024-06-10 23:06:13 +02:00
|
|
|
/* the declared encoding, if any */
|
2024-06-21 18:17:11 +02:00
|
|
|
const xmlChar *encoding;
|
2024-06-10 23:06:13 +02:00
|
|
|
/* standalone document */
|
2024-06-21 18:17:11 +02:00
|
|
|
int standalone;
|
2024-06-10 23:06:13 +02:00
|
|
|
|
|
|
|
/* an HTML(1) document
|
|
|
|
* 3 is HTML after <head>
|
|
|
|
* 10 is HTML after <body>
|
|
|
|
*/
|
2024-06-21 18:17:11 +02:00
|
|
|
int html;
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
/* Input stream stack */
|
|
|
|
|
2024-06-10 23:06:13 +02:00
|
|
|
/* Current input stream */
|
|
|
|
xmlParserInputPtr input;
|
|
|
|
/* Number of current input streams */
|
|
|
|
int inputNr;
|
|
|
|
/* Max number of input streams */
|
|
|
|
int inputMax XML_DEPRECATED_MEMBER;
|
|
|
|
/* stack of inputs */
|
|
|
|
xmlParserInputPtr *inputTab;
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2024-06-10 23:06:13 +02:00
|
|
|
/* Node analysis stack only used for DOM building */
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2024-06-10 23:06:13 +02:00
|
|
|
/* Current parsed Node */
|
|
|
|
xmlNodePtr node XML_DEPRECATED_MEMBER;
|
|
|
|
/* Depth of the parsing stack */
|
|
|
|
int nodeNr XML_DEPRECATED_MEMBER;
|
|
|
|
/* Max depth of the parsing stack */
|
|
|
|
int nodeMax XML_DEPRECATED_MEMBER;
|
|
|
|
/* array of nodes */
|
|
|
|
xmlNodePtr *nodeTab XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
/* Whether node info should be kept */
|
|
|
|
int record_info;
|
|
|
|
/* info about each node parsed */
|
|
|
|
xmlParserNodeInfoSeq node_seq XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
/* error code */
|
|
|
|
int errNo;
|
|
|
|
|
|
|
|
/* reference and external subset */
|
|
|
|
int hasExternalSubset XML_DEPRECATED_MEMBER;
|
|
|
|
/* the internal subset has PE refs */
|
|
|
|
int hasPErefs XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
int external XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
/* is the document valid */
|
|
|
|
int valid;
|
|
|
|
/* shall we try to validate ? */
|
|
|
|
int validate XML_DEPRECATED_MEMBER;
|
|
|
|
/* The validity context */
|
|
|
|
xmlValidCtxt vctxt;
|
|
|
|
|
|
|
|
/* push parser state */
|
|
|
|
xmlParserInputState instate XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
int token XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
/* unused */
|
|
|
|
char *directory XML_DEPRECATED_MEMBER;
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
/* Node name stack */
|
2024-06-10 23:06:13 +02:00
|
|
|
|
|
|
|
/* Current parsed Node */
|
|
|
|
const xmlChar *name XML_DEPRECATED_MEMBER;
|
|
|
|
/* Depth of the parsing stack */
|
|
|
|
int nameNr XML_DEPRECATED_MEMBER;
|
|
|
|
/* Max depth of the parsing stack */
|
|
|
|
int nameMax XML_DEPRECATED_MEMBER;
|
|
|
|
/* array of nodes */
|
|
|
|
const xmlChar **nameTab XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
/* unused */
|
|
|
|
long nbChars XML_DEPRECATED_MEMBER;
|
|
|
|
/* used by progressive parsing lookup */
|
|
|
|
long checkIndex XML_DEPRECATED_MEMBER;
|
|
|
|
/* ugly but ... */
|
|
|
|
int keepBlanks XML_DEPRECATED_MEMBER;
|
|
|
|
/* SAX callbacks are disabled */
|
|
|
|
int disableSAX XML_DEPRECATED_MEMBER;
|
|
|
|
/* Parsing is in int 1/ext 2 subset */
|
|
|
|
int inSubset XML_DEPRECATED_MEMBER;
|
|
|
|
/* name of subset */
|
|
|
|
const xmlChar *intSubName XML_DEPRECATED_MEMBER;
|
|
|
|
/* URI of external subset */
|
|
|
|
xmlChar *extSubURI XML_DEPRECATED_MEMBER;
|
|
|
|
/* SYSTEM ID of external subset */
|
|
|
|
xmlChar *extSubSystem XML_DEPRECATED_MEMBER;
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
/* xml:space values */
|
2024-06-10 23:06:13 +02:00
|
|
|
|
|
|
|
/* Should the parser preserve spaces */
|
|
|
|
int *space XML_DEPRECATED_MEMBER;
|
|
|
|
/* Depth of the parsing stack */
|
|
|
|
int spaceNr XML_DEPRECATED_MEMBER;
|
|
|
|
/* Max depth of the parsing stack */
|
|
|
|
int spaceMax XML_DEPRECATED_MEMBER;
|
|
|
|
/* array of space infos */
|
|
|
|
int *spaceTab XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
/* to prevent entity substitution loops */
|
|
|
|
int depth XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
xmlParserInputPtr entity XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
int charset XML_DEPRECATED_MEMBER;
|
|
|
|
/* Those two fields are there to */
|
|
|
|
int nodelen XML_DEPRECATED_MEMBER;
|
|
|
|
/* Speed up large node parsing */
|
|
|
|
int nodemem XML_DEPRECATED_MEMBER;
|
|
|
|
/* signal pedantic warnings */
|
|
|
|
int pedantic XML_DEPRECATED_MEMBER;
|
|
|
|
/* For user data, libxml won't touch it */
|
|
|
|
void *_private;
|
|
|
|
|
|
|
|
/* should the external subset be loaded */
|
|
|
|
int loadsubset XML_DEPRECATED_MEMBER;
|
|
|
|
/* set line number in element content */
|
|
|
|
int linenumbers XML_DEPRECATED_MEMBER;
|
|
|
|
/* document's own catalog */
|
2024-06-26 04:32:49 +02:00
|
|
|
void *catalogs XML_DEPRECATED_MEMBER;
|
2024-06-10 23:06:13 +02:00
|
|
|
/* run in recovery mode */
|
|
|
|
int recovery XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
int progressive XML_DEPRECATED_MEMBER;
|
|
|
|
/* dictionary for the parser */
|
|
|
|
xmlDictPtr dict;
|
|
|
|
/* array for the attributes callbacks */
|
|
|
|
const xmlChar **atts XML_DEPRECATED_MEMBER;
|
|
|
|
/* the size of the array */
|
|
|
|
int maxatts XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
int docdict XML_DEPRECATED_MEMBER;
|
2003-09-07 09:14:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* pre-interned strings
|
|
|
|
*/
|
2024-06-10 23:06:13 +02:00
|
|
|
const xmlChar *str_xml XML_DEPRECATED_MEMBER;
|
|
|
|
const xmlChar *str_xmlns XML_DEPRECATED_MEMBER;
|
|
|
|
const xmlChar *str_xml_ns XML_DEPRECATED_MEMBER;
|
2003-09-07 09:14:37 +00:00
|
|
|
|
|
|
|
/*
|
2003-09-10 10:51:05 +00:00
|
|
|
* Everything below is used only by the new SAX mode
|
2003-09-07 09:14:37 +00:00
|
|
|
*/
|
2024-06-10 23:06:13 +02:00
|
|
|
|
|
|
|
/* operating in the new SAX mode */
|
|
|
|
int sax2 XML_DEPRECATED_MEMBER;
|
|
|
|
/* the number of inherited namespaces */
|
|
|
|
int nsNr XML_DEPRECATED_MEMBER;
|
|
|
|
/* the size of the arrays */
|
|
|
|
int nsMax XML_DEPRECATED_MEMBER;
|
|
|
|
/* the array of prefix/namespace name */
|
|
|
|
const xmlChar **nsTab XML_DEPRECATED_MEMBER;
|
|
|
|
/* which attribute were allocated */
|
|
|
|
unsigned *attallocs XML_DEPRECATED_MEMBER;
|
|
|
|
/* array of data for push */
|
|
|
|
xmlStartTag *pushTab XML_DEPRECATED_MEMBER;
|
|
|
|
/* defaulted attributes if any */
|
|
|
|
xmlHashTablePtr attsDefault XML_DEPRECATED_MEMBER;
|
|
|
|
/* non-CDATA attributes if any */
|
|
|
|
xmlHashTablePtr attsSpecial XML_DEPRECATED_MEMBER;
|
|
|
|
/* is the document XML Namespace okay */
|
|
|
|
int nsWellFormed;
|
|
|
|
/* Extra options */
|
|
|
|
int options XML_DEPRECATED_MEMBER;
|
2003-09-15 14:50:06 +00:00
|
|
|
|
|
|
|
/*
|
2019-09-30 17:04:54 +02:00
|
|
|
* Those fields are needed only for streaming parsing so far
|
2003-09-15 14:50:06 +00:00
|
|
|
*/
|
2024-06-10 23:06:13 +02:00
|
|
|
|
|
|
|
/* Use dictionary names for the tree */
|
|
|
|
int dictNames XML_DEPRECATED_MEMBER;
|
|
|
|
/* number of freed element nodes */
|
|
|
|
int freeElemsNr XML_DEPRECATED_MEMBER;
|
|
|
|
/* List of freed element nodes */
|
|
|
|
xmlNodePtr freeElems XML_DEPRECATED_MEMBER;
|
|
|
|
/* number of freed attributes nodes */
|
|
|
|
int freeAttrsNr XML_DEPRECATED_MEMBER;
|
|
|
|
/* List of freed attributes nodes */
|
|
|
|
xmlAttrPtr freeAttrs XML_DEPRECATED_MEMBER;
|
2003-10-02 22:28:19 +00:00
|
|
|
|
|
|
|
/*
|
2020-03-08 17:19:42 +01:00
|
|
|
* the complete error information for the last error.
|
2003-10-02 22:28:19 +00:00
|
|
|
*/
|
2024-06-21 18:22:04 +02:00
|
|
|
xmlError lastError XML_DEPRECATED_MEMBER;
|
2024-06-10 23:06:13 +02:00
|
|
|
/* the parser mode */
|
|
|
|
xmlParserMode parseMode XML_DEPRECATED_MEMBER;
|
|
|
|
/* unused */
|
|
|
|
unsigned long nbentities XML_DEPRECATED_MEMBER;
|
|
|
|
/* size of external entities */
|
|
|
|
unsigned long sizeentities XML_DEPRECATED_MEMBER;
|
2010-03-15 15:16:02 +01:00
|
|
|
|
|
|
|
/* for use by HTML non-recursive parser */
|
2024-06-10 23:06:13 +02:00
|
|
|
/* Current NodeInfo */
|
|
|
|
xmlParserNodeInfo *nodeInfo XML_DEPRECATED_MEMBER;
|
|
|
|
/* Depth of the parsing stack */
|
|
|
|
int nodeInfoNr XML_DEPRECATED_MEMBER;
|
|
|
|
/* Max depth of the parsing stack */
|
|
|
|
int nodeInfoMax XML_DEPRECATED_MEMBER;
|
|
|
|
/* array of nodeInfos */
|
|
|
|
xmlParserNodeInfo *nodeInfoTab XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
/* we need to label inputs */
|
|
|
|
int input_id XML_DEPRECATED_MEMBER;
|
|
|
|
/* volume of entity copy */
|
|
|
|
unsigned long sizeentcopy XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
/* quote state for push parser */
|
|
|
|
int endCheckState XML_DEPRECATED_MEMBER;
|
|
|
|
/* number of errors */
|
|
|
|
unsigned short nbErrors XML_DEPRECATED_MEMBER;
|
|
|
|
/* number of warnings */
|
|
|
|
unsigned short nbWarnings XML_DEPRECATED_MEMBER;
|
|
|
|
/* maximum amplification factor */
|
|
|
|
unsigned maxAmpl XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
/* namespace database */
|
|
|
|
xmlParserNsData *nsdb XML_DEPRECATED_MEMBER;
|
|
|
|
/* allocated size */
|
|
|
|
unsigned attrHashMax XML_DEPRECATED_MEMBER;
|
|
|
|
/* atttribute hash table */
|
|
|
|
xmlAttrHashBucket *attrHash XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
xmlStructuredErrorFunc errorHandler XML_DEPRECATED_MEMBER;
|
|
|
|
void *errorCtxt XML_DEPRECATED_MEMBER;
|
|
|
|
|
|
|
|
xmlResourceLoader resourceLoader XML_DEPRECATED_MEMBER;
|
|
|
|
void *resourceCtxt XML_DEPRECATED_MEMBER;
|
2001-02-23 17:55:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2001-05-19 13:24:56 +00:00
|
|
|
* xmlSAXLocator:
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* A SAX Locator.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
struct _xmlSAXLocator {
|
|
|
|
const xmlChar *(*getPublicId)(void *ctx);
|
|
|
|
const xmlChar *(*getSystemId)(void *ctx);
|
|
|
|
int (*getLineNumber)(void *ctx);
|
|
|
|
int (*getColumnNumber)(void *ctx);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2001-05-19 13:24:56 +00:00
|
|
|
* xmlSAXHandler:
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* A SAX handler is bunch of callbacks called by the parser when processing
|
2020-03-08 17:19:42 +01:00
|
|
|
* of the input generate data or structure information.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* resolveEntitySAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @publicId: The public ID of the entity
|
|
|
|
* @systemId: The system ID of the entity
|
|
|
|
*
|
|
|
|
* Callback:
|
|
|
|
* The entity loader, to control the loading of external entities,
|
|
|
|
* the application can either:
|
|
|
|
* - override this resolveEntity() callback in the SAX block
|
|
|
|
* - or better use the xmlSetExternalEntityLoader() function to
|
|
|
|
* set up it's own entity resolution routine
|
|
|
|
*
|
|
|
|
* Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour.
|
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef xmlParserInputPtr (*resolveEntitySAXFunc) (void *ctx,
|
2002-01-22 18:15:52 +00:00
|
|
|
const xmlChar *publicId,
|
|
|
|
const xmlChar *systemId);
|
|
|
|
/**
|
|
|
|
* internalSubsetSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: the root element name
|
|
|
|
* @ExternalID: the external ID
|
|
|
|
* @SystemID: the SYSTEM ID (e.g. filename or URL)
|
|
|
|
*
|
|
|
|
* Callback on internal subset declaration.
|
|
|
|
*/
|
|
|
|
typedef void (*internalSubsetSAXFunc) (void *ctx,
|
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *ExternalID,
|
|
|
|
const xmlChar *SystemID);
|
|
|
|
/**
|
|
|
|
* externalSubsetSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: the root element name
|
|
|
|
* @ExternalID: the external ID
|
|
|
|
* @SystemID: the SYSTEM ID (e.g. filename or URL)
|
|
|
|
*
|
|
|
|
* Callback on external subset declaration.
|
|
|
|
*/
|
|
|
|
typedef void (*externalSubsetSAXFunc) (void *ctx,
|
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *ExternalID,
|
|
|
|
const xmlChar *SystemID);
|
|
|
|
/**
|
|
|
|
* getEntitySAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: The entity name
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Get an entity by name.
|
2002-01-22 18:15:52 +00:00
|
|
|
*
|
|
|
|
* Returns the xmlEntityPtr if found.
|
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef xmlEntityPtr (*getEntitySAXFunc) (void *ctx,
|
2002-01-22 18:15:52 +00:00
|
|
|
const xmlChar *name);
|
|
|
|
/**
|
|
|
|
* getParameterEntitySAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: The entity name
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Get a parameter entity by name.
|
2002-01-22 18:15:52 +00:00
|
|
|
*
|
|
|
|
* Returns the xmlEntityPtr if found.
|
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef xmlEntityPtr (*getParameterEntitySAXFunc) (void *ctx,
|
2002-01-22 18:15:52 +00:00
|
|
|
const xmlChar *name);
|
|
|
|
/**
|
|
|
|
* entityDeclSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
2012-09-11 13:26:36 +08:00
|
|
|
* @name: the entity name
|
|
|
|
* @type: the entity type
|
2002-01-22 18:15:52 +00:00
|
|
|
* @publicId: The public ID of the entity
|
|
|
|
* @systemId: The system ID of the entity
|
|
|
|
* @content: the entity value (without processing).
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* An entity definition has been parsed.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef void (*entityDeclSAXFunc) (void *ctx,
|
2002-01-22 18:15:52 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
int type,
|
|
|
|
const xmlChar *publicId,
|
|
|
|
const xmlChar *systemId,
|
|
|
|
xmlChar *content);
|
|
|
|
/**
|
|
|
|
* notationDeclSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: The name of the notation
|
|
|
|
* @publicId: The public ID of the entity
|
|
|
|
* @systemId: The system ID of the entity
|
|
|
|
*
|
|
|
|
* What to do when a notation declaration has been parsed.
|
|
|
|
*/
|
|
|
|
typedef void (*notationDeclSAXFunc)(void *ctx,
|
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *publicId,
|
|
|
|
const xmlChar *systemId);
|
|
|
|
/**
|
|
|
|
* attributeDeclSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @elem: the name of the element
|
2012-09-11 13:26:36 +08:00
|
|
|
* @fullname: the attribute name
|
|
|
|
* @type: the attribute type
|
2002-01-22 18:15:52 +00:00
|
|
|
* @def: the type of default value
|
|
|
|
* @defaultValue: the attribute default value
|
|
|
|
* @tree: the tree of enumerated value set
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* An attribute definition has been parsed.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
|
|
|
typedef void (*attributeDeclSAXFunc)(void *ctx,
|
|
|
|
const xmlChar *elem,
|
|
|
|
const xmlChar *fullname,
|
|
|
|
int type,
|
|
|
|
int def,
|
|
|
|
const xmlChar *defaultValue,
|
|
|
|
xmlEnumerationPtr tree);
|
|
|
|
/**
|
|
|
|
* elementDeclSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
2012-09-11 13:26:36 +08:00
|
|
|
* @name: the element name
|
|
|
|
* @type: the element type
|
2002-01-22 18:15:52 +00:00
|
|
|
* @content: the element value tree
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* An element definition has been parsed.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
|
|
|
typedef void (*elementDeclSAXFunc)(void *ctx,
|
|
|
|
const xmlChar *name,
|
|
|
|
int type,
|
|
|
|
xmlElementContentPtr content);
|
|
|
|
/**
|
|
|
|
* unparsedEntityDeclSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: The name of the entity
|
|
|
|
* @publicId: The public ID of the entity
|
|
|
|
* @systemId: The system ID of the entity
|
|
|
|
* @notationName: the name of the notation
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* What to do when an unparsed entity declaration is parsed.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef void (*unparsedEntityDeclSAXFunc)(void *ctx,
|
2002-01-22 18:15:52 +00:00
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *publicId,
|
|
|
|
const xmlChar *systemId,
|
|
|
|
const xmlChar *notationName);
|
|
|
|
/**
|
|
|
|
* setDocumentLocatorSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @loc: A SAX Locator
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Receive the document locator at startup, actually xmlDefaultSAXLocator.
|
2002-01-22 18:15:52 +00:00
|
|
|
* Everything is available on the context, so this is useless in our case.
|
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef void (*setDocumentLocatorSAXFunc) (void *ctx,
|
2002-01-22 18:15:52 +00:00
|
|
|
xmlSAXLocatorPtr loc);
|
|
|
|
/**
|
|
|
|
* startDocumentSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Called when the document start being processed.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef void (*startDocumentSAXFunc) (void *ctx);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* endDocumentSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Called when the document end has been detected.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef void (*endDocumentSAXFunc) (void *ctx);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* startElementSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: The element name, including namespace prefix
|
|
|
|
* @atts: An array of name/value attributes pairs, NULL terminated
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Called when an opening tag has been processed.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
|
|
|
typedef void (*startElementSAXFunc) (void *ctx,
|
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar **atts);
|
|
|
|
/**
|
|
|
|
* endElementSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: The element name
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Called when the end of an element has been detected.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
|
|
|
typedef void (*endElementSAXFunc) (void *ctx,
|
|
|
|
const xmlChar *name);
|
|
|
|
/**
|
|
|
|
* attributeSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: The attribute name, including namespace prefix
|
|
|
|
* @value: The attribute value
|
|
|
|
*
|
|
|
|
* Handle an attribute that has been read by the parser.
|
|
|
|
* The default handling is to convert the attribute into an
|
|
|
|
* DOM subtree and past it in a new xmlAttr element added to
|
|
|
|
* the element.
|
|
|
|
*/
|
|
|
|
typedef void (*attributeSAXFunc) (void *ctx,
|
|
|
|
const xmlChar *name,
|
|
|
|
const xmlChar *value);
|
|
|
|
/**
|
|
|
|
* referenceSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @name: The entity name
|
|
|
|
*
|
2012-09-11 13:26:36 +08:00
|
|
|
* Called when an entity reference is detected.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
|
|
|
typedef void (*referenceSAXFunc) (void *ctx,
|
|
|
|
const xmlChar *name);
|
|
|
|
/**
|
|
|
|
* charactersSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @ch: a xmlChar string
|
|
|
|
* @len: the number of xmlChar
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Receiving some chars from the parser.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
|
|
|
typedef void (*charactersSAXFunc) (void *ctx,
|
|
|
|
const xmlChar *ch,
|
|
|
|
int len);
|
|
|
|
/**
|
|
|
|
* ignorableWhitespaceSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @ch: a xmlChar string
|
|
|
|
* @len: the number of xmlChar
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Receiving some ignorable whitespaces from the parser.
|
|
|
|
* UNUSED: by default the DOM building will use characters.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef void (*ignorableWhitespaceSAXFunc) (void *ctx,
|
2002-01-22 18:15:52 +00:00
|
|
|
const xmlChar *ch,
|
|
|
|
int len);
|
|
|
|
/**
|
|
|
|
* processingInstructionSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @target: the target name
|
|
|
|
* @data: the PI data's
|
|
|
|
*
|
|
|
|
* A processing instruction has been parsed.
|
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef void (*processingInstructionSAXFunc) (void *ctx,
|
2002-01-22 18:15:52 +00:00
|
|
|
const xmlChar *target,
|
|
|
|
const xmlChar *data);
|
|
|
|
/**
|
|
|
|
* commentSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @value: the comment content
|
|
|
|
*
|
|
|
|
* A comment has been parsed.
|
|
|
|
*/
|
|
|
|
typedef void (*commentSAXFunc) (void *ctx,
|
|
|
|
const xmlChar *value);
|
|
|
|
/**
|
|
|
|
* cdataBlockSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @value: The pcdata content
|
|
|
|
* @len: the block length
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Called when a pcdata block has been parsed.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
|
|
|
typedef void (*cdataBlockSAXFunc) (
|
|
|
|
void *ctx,
|
|
|
|
const xmlChar *value,
|
|
|
|
int len);
|
|
|
|
/**
|
|
|
|
* warningSAXFunc:
|
|
|
|
* @ctx: an XML parser context
|
|
|
|
* @msg: the message to display/transmit
|
|
|
|
* @...: extra parameters for the message display
|
2012-09-11 13:26:36 +08:00
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Display and format a warning messages, callback.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
typedef void (*warningSAXFunc) (void *ctx,
|
2009-04-15 09:20:25 +00:00
|
|
|
const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* errorSAXFunc:
|
|
|
|
* @ctx: an XML parser context
|
|
|
|
* @msg: the message to display/transmit
|
|
|
|
* @...: extra parameters for the message display
|
2012-09-11 13:26:36 +08:00
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Display and format an error messages, callback.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
typedef void (*errorSAXFunc) (void *ctx,
|
2009-04-15 09:20:25 +00:00
|
|
|
const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* fatalErrorSAXFunc:
|
|
|
|
* @ctx: an XML parser context
|
|
|
|
* @msg: the message to display/transmit
|
|
|
|
* @...: extra parameters for the message display
|
2012-09-11 13:26:36 +08:00
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Display and format fatal error messages, callback.
|
2002-11-12 20:57:47 +00:00
|
|
|
* Note: so far fatalError() SAX callbacks are not used, error()
|
|
|
|
* get all the callbacks for errors.
|
2002-01-22 18:15:52 +00:00
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
typedef void (*fatalErrorSAXFunc) (void *ctx,
|
2009-04-15 09:20:25 +00:00
|
|
|
const char *msg, ...) LIBXML_ATTR_FORMAT(2,3);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* isStandaloneSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Is this document tagged standalone?
|
2002-01-22 18:15:52 +00:00
|
|
|
*
|
|
|
|
* Returns 1 if true
|
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef int (*isStandaloneSAXFunc) (void *ctx);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* hasInternalSubsetSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Does this document has an internal subset.
|
2002-01-22 18:15:52 +00:00
|
|
|
*
|
|
|
|
* Returns 1 if true
|
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef int (*hasInternalSubsetSAXFunc) (void *ctx);
|
2003-08-20 22:54:39 +00:00
|
|
|
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* hasExternalSubsetSAXFunc:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Does this document has an external subset?
|
2002-01-22 18:15:52 +00:00
|
|
|
*
|
|
|
|
* Returns 1 if true
|
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
typedef int (*hasExternalSubsetSAXFunc) (void *ctx);
|
|
|
|
|
2003-08-20 22:54:39 +00:00
|
|
|
/************************************************************************
|
|
|
|
* *
|
|
|
|
* The SAX version 2 API extensions *
|
|
|
|
* *
|
|
|
|
************************************************************************/
|
|
|
|
/**
|
|
|
|
* XML_SAX2_MAGIC:
|
|
|
|
*
|
|
|
|
* Special constant found in SAX2 blocks initialized fields
|
|
|
|
*/
|
|
|
|
#define XML_SAX2_MAGIC 0xDEEDBEAF
|
|
|
|
|
|
|
|
/**
|
|
|
|
* startElementNsSAX2Func:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @localname: the local name of the element
|
|
|
|
* @prefix: the element namespace prefix if available
|
|
|
|
* @URI: the element namespace name if available
|
|
|
|
* @nb_namespaces: number of namespace definitions on that node
|
|
|
|
* @namespaces: pointer to the array of prefix/URI pairs namespace definitions
|
|
|
|
* @nb_attributes: the number of attributes on that node
|
2003-09-10 10:51:05 +00:00
|
|
|
* @nb_defaulted: the number of defaulted attributes. The defaulted
|
|
|
|
* ones are at the end of the array
|
|
|
|
* @attributes: pointer to the array of (localname/prefix/URI/value/end)
|
|
|
|
* attribute values.
|
2003-08-20 22:54:39 +00:00
|
|
|
*
|
|
|
|
* SAX2 callback when an element start has been detected by the parser.
|
2020-03-08 17:19:42 +01:00
|
|
|
* It provides the namespace information for the element, as well as
|
2003-08-20 22:54:39 +00:00
|
|
|
* the new namespace declarations on the element.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef void (*startElementNsSAX2Func) (void *ctx,
|
|
|
|
const xmlChar *localname,
|
|
|
|
const xmlChar *prefix,
|
|
|
|
const xmlChar *URI,
|
|
|
|
int nb_namespaces,
|
|
|
|
const xmlChar **namespaces,
|
2003-09-10 10:51:05 +00:00
|
|
|
int nb_attributes,
|
|
|
|
int nb_defaulted,
|
|
|
|
const xmlChar **attributes);
|
2012-09-11 13:26:36 +08:00
|
|
|
|
2003-08-20 22:54:39 +00:00
|
|
|
/**
|
|
|
|
* endElementNsSAX2Func:
|
|
|
|
* @ctx: the user data (XML parser context)
|
|
|
|
* @localname: the local name of the element
|
|
|
|
* @prefix: the element namespace prefix if available
|
|
|
|
* @URI: the element namespace name if available
|
|
|
|
*
|
|
|
|
* SAX2 callback when an element end has been detected by the parser.
|
2020-03-08 17:19:42 +01:00
|
|
|
* It provides the namespace information for the element.
|
2003-08-20 22:54:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
typedef void (*endElementNsSAX2Func) (void *ctx,
|
|
|
|
const xmlChar *localname,
|
|
|
|
const xmlChar *prefix,
|
|
|
|
const xmlChar *URI);
|
|
|
|
|
|
|
|
|
2001-02-23 17:55:21 +00:00
|
|
|
struct _xmlSAXHandler {
|
|
|
|
internalSubsetSAXFunc internalSubset;
|
|
|
|
isStandaloneSAXFunc isStandalone;
|
|
|
|
hasInternalSubsetSAXFunc hasInternalSubset;
|
|
|
|
hasExternalSubsetSAXFunc hasExternalSubset;
|
|
|
|
resolveEntitySAXFunc resolveEntity;
|
|
|
|
getEntitySAXFunc getEntity;
|
|
|
|
entityDeclSAXFunc entityDecl;
|
|
|
|
notationDeclSAXFunc notationDecl;
|
|
|
|
attributeDeclSAXFunc attributeDecl;
|
|
|
|
elementDeclSAXFunc elementDecl;
|
|
|
|
unparsedEntityDeclSAXFunc unparsedEntityDecl;
|
|
|
|
setDocumentLocatorSAXFunc setDocumentLocator;
|
|
|
|
startDocumentSAXFunc startDocument;
|
|
|
|
endDocumentSAXFunc endDocument;
|
2023-11-20 15:20:37 +01:00
|
|
|
/*
|
|
|
|
* `startElement` and `endElement` are only used by the legacy SAX1
|
|
|
|
* interface and should not be used in new software. If you really
|
|
|
|
* have to enable SAX1, the preferred way is set the `initialized`
|
|
|
|
* member to 1 instead of XML_SAX2_MAGIC.
|
|
|
|
*
|
|
|
|
* For backward compatibility, it's also possible to set the
|
|
|
|
* `startElementNs` and `endElementNs` handlers to NULL.
|
|
|
|
*
|
|
|
|
* You can also set the XML_PARSE_SAX1 parser option, but versions
|
|
|
|
* older than 2.12.0 will probably crash if this option is provided
|
|
|
|
* together with custom SAX callbacks.
|
|
|
|
*/
|
2001-02-23 17:55:21 +00:00
|
|
|
startElementSAXFunc startElement;
|
|
|
|
endElementSAXFunc endElement;
|
|
|
|
referenceSAXFunc reference;
|
|
|
|
charactersSAXFunc characters;
|
|
|
|
ignorableWhitespaceSAXFunc ignorableWhitespace;
|
|
|
|
processingInstructionSAXFunc processingInstruction;
|
|
|
|
commentSAXFunc comment;
|
|
|
|
warningSAXFunc warning;
|
|
|
|
errorSAXFunc error;
|
2002-11-12 20:57:47 +00:00
|
|
|
fatalErrorSAXFunc fatalError; /* unused error() get all the errors */
|
2001-02-23 17:55:21 +00:00
|
|
|
getParameterEntitySAXFunc getParameterEntity;
|
|
|
|
cdataBlockSAXFunc cdataBlock;
|
|
|
|
externalSubsetSAXFunc externalSubset;
|
2023-11-20 15:20:37 +01:00
|
|
|
/*
|
|
|
|
* `initialized` should always be set to XML_SAX2_MAGIC to enable the
|
|
|
|
* modern SAX2 interface.
|
|
|
|
*/
|
2003-09-10 10:51:05 +00:00
|
|
|
unsigned int initialized;
|
2023-11-20 15:20:37 +01:00
|
|
|
/*
|
|
|
|
* The following members are only used by the SAX2 interface.
|
|
|
|
*/
|
2003-08-20 22:54:39 +00:00
|
|
|
void *_private;
|
|
|
|
startElementNsSAX2Func startElementNs;
|
|
|
|
endElementNsSAX2Func endElementNs;
|
2003-10-10 14:10:40 +00:00
|
|
|
xmlStructuredErrorFunc serror;
|
2001-02-23 17:55:21 +00:00
|
|
|
};
|
|
|
|
|
2003-09-28 00:19:54 +00:00
|
|
|
/*
|
|
|
|
* SAX Version 1
|
|
|
|
*/
|
|
|
|
typedef struct _xmlSAXHandlerV1 xmlSAXHandlerV1;
|
|
|
|
typedef xmlSAXHandlerV1 *xmlSAXHandlerV1Ptr;
|
|
|
|
struct _xmlSAXHandlerV1 {
|
|
|
|
internalSubsetSAXFunc internalSubset;
|
|
|
|
isStandaloneSAXFunc isStandalone;
|
|
|
|
hasInternalSubsetSAXFunc hasInternalSubset;
|
|
|
|
hasExternalSubsetSAXFunc hasExternalSubset;
|
|
|
|
resolveEntitySAXFunc resolveEntity;
|
|
|
|
getEntitySAXFunc getEntity;
|
|
|
|
entityDeclSAXFunc entityDecl;
|
|
|
|
notationDeclSAXFunc notationDecl;
|
|
|
|
attributeDeclSAXFunc attributeDecl;
|
|
|
|
elementDeclSAXFunc elementDecl;
|
|
|
|
unparsedEntityDeclSAXFunc unparsedEntityDecl;
|
|
|
|
setDocumentLocatorSAXFunc setDocumentLocator;
|
|
|
|
startDocumentSAXFunc startDocument;
|
|
|
|
endDocumentSAXFunc endDocument;
|
|
|
|
startElementSAXFunc startElement;
|
|
|
|
endElementSAXFunc endElement;
|
|
|
|
referenceSAXFunc reference;
|
|
|
|
charactersSAXFunc characters;
|
|
|
|
ignorableWhitespaceSAXFunc ignorableWhitespace;
|
|
|
|
processingInstructionSAXFunc processingInstruction;
|
|
|
|
commentSAXFunc comment;
|
|
|
|
warningSAXFunc warning;
|
|
|
|
errorSAXFunc error;
|
|
|
|
fatalErrorSAXFunc fatalError; /* unused error() get all the errors */
|
|
|
|
getParameterEntitySAXFunc getParameterEntity;
|
|
|
|
cdataBlockSAXFunc cdataBlock;
|
|
|
|
externalSubsetSAXFunc externalSubset;
|
|
|
|
unsigned int initialized;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-02-23 17:55:21 +00:00
|
|
|
/**
|
2001-05-19 13:24:56 +00:00
|
|
|
* xmlExternalEntityLoader:
|
|
|
|
* @URL: The System ID of the resource requested
|
|
|
|
* @ID: The Public ID of the resource requested
|
2012-09-11 13:26:36 +08:00
|
|
|
* @context: the XML parser context
|
2001-05-19 13:24:56 +00:00
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* External entity loaders types.
|
2001-12-31 16:16:02 +00:00
|
|
|
*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Returns the entity input parser.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
2002-01-22 18:15:52 +00:00
|
|
|
typedef xmlParserInputPtr (*xmlExternalEntityLoader) (const char *URL,
|
|
|
|
const char *ID,
|
|
|
|
xmlParserCtxtPtr context);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2023-09-20 14:43:14 +02:00
|
|
|
/*
|
|
|
|
* Variables
|
|
|
|
*/
|
|
|
|
|
2023-09-20 17:54:48 +02:00
|
|
|
XMLPUBVAR const char *const xmlParserVersion;
|
2023-12-06 01:09:31 +01:00
|
|
|
XML_DEPRECATED
|
|
|
|
XMLPUBVAR const int oldXMLWDcompatibility;
|
|
|
|
XML_DEPRECATED
|
2023-12-18 19:31:29 +01:00
|
|
|
XMLPUBVAR const int xmlParserDebugEntities;
|
|
|
|
XML_DEPRECATED
|
2023-12-06 01:09:31 +01:00
|
|
|
XMLPUBVAR const xmlSAXLocator xmlDefaultSAXLocator;
|
|
|
|
#ifdef LIBXML_SAX1_ENABLED
|
|
|
|
XML_DEPRECATED
|
|
|
|
XMLPUBVAR const xmlSAXHandlerV1 xmlDefaultSAXHandler;
|
|
|
|
#endif
|
|
|
|
|
2023-09-20 14:43:14 +02:00
|
|
|
#ifdef LIBXML_THREAD_ENABLED
|
2023-09-20 17:54:48 +02:00
|
|
|
/* backward compatibility */
|
|
|
|
XMLPUBFUN const char *const *__xmlParserVersion(void);
|
2023-12-06 01:09:31 +01:00
|
|
|
XML_DEPRECATED
|
|
|
|
XMLPUBFUN const int *__oldXMLWDcompatibility(void);
|
|
|
|
XML_DEPRECATED
|
2023-12-18 19:31:29 +01:00
|
|
|
XMLPUBFUN const int *__xmlParserDebugEntities(void);
|
|
|
|
XML_DEPRECATED
|
2023-12-06 01:09:31 +01:00
|
|
|
XMLPUBFUN const xmlSAXLocator *__xmlDefaultSAXLocator(void);
|
|
|
|
#ifdef LIBXML_SAX1_ENABLED
|
|
|
|
XML_DEPRECATED
|
|
|
|
XMLPUBFUN const xmlSAXHandlerV1 *__xmlDefaultSAXHandler(void);
|
|
|
|
#endif
|
2023-09-20 14:43:14 +02:00
|
|
|
#endif
|
|
|
|
|
2023-09-21 22:57:33 +02:00
|
|
|
/** DOC_DISABLE */
|
2023-12-14 13:37:25 +01:00
|
|
|
#define XML_GLOBALS_PARSER_CORE \
|
2023-09-20 17:54:48 +02:00
|
|
|
XML_OP(xmlDoValidityCheckingDefaultValue, int, XML_DEPRECATED) \
|
|
|
|
XML_OP(xmlGetWarningsDefaultValue, int, XML_DEPRECATED) \
|
|
|
|
XML_OP(xmlKeepBlanksDefaultValue, int, XML_DEPRECATED) \
|
|
|
|
XML_OP(xmlLineNumbersDefaultValue, int, XML_DEPRECATED) \
|
|
|
|
XML_OP(xmlLoadExtDtdDefaultValue, int, XML_DEPRECATED) \
|
|
|
|
XML_OP(xmlPedanticParserDefaultValue, int, XML_DEPRECATED) \
|
2023-12-14 13:37:25 +01:00
|
|
|
XML_OP(xmlSubstituteEntitiesDefaultValue, int, XML_DEPRECATED)
|
|
|
|
|
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
|
|
#define XML_GLOBALS_PARSER_OUTPUT \
|
|
|
|
XML_OP(xmlIndentTreeOutput, int, XML_NO_ATTR) \
|
|
|
|
XML_OP(xmlTreeIndentString, const char *, XML_NO_ATTR) \
|
|
|
|
XML_OP(xmlSaveNoEmptyTags, int, XML_NO_ATTR)
|
|
|
|
#else
|
|
|
|
#define XML_GLOBALS_PARSER_OUTPUT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define XML_GLOBALS_PARSER \
|
|
|
|
XML_GLOBALS_PARSER_CORE \
|
|
|
|
XML_GLOBALS_PARSER_OUTPUT
|
2023-09-20 17:54:48 +02:00
|
|
|
|
|
|
|
#define XML_OP XML_DECLARE_GLOBAL
|
|
|
|
XML_GLOBALS_PARSER
|
|
|
|
#undef XML_OP
|
|
|
|
|
|
|
|
#if defined(LIBXML_THREAD_ENABLED) && !defined(XML_GLOBALS_NO_REDEFINITION)
|
|
|
|
#define xmlDoValidityCheckingDefaultValue \
|
|
|
|
XML_GLOBAL_MACRO(xmlDoValidityCheckingDefaultValue)
|
|
|
|
#define xmlGetWarningsDefaultValue \
|
|
|
|
XML_GLOBAL_MACRO(xmlGetWarningsDefaultValue)
|
|
|
|
#define xmlKeepBlanksDefaultValue XML_GLOBAL_MACRO(xmlKeepBlanksDefaultValue)
|
|
|
|
#define xmlLineNumbersDefaultValue \
|
|
|
|
XML_GLOBAL_MACRO(xmlLineNumbersDefaultValue)
|
|
|
|
#define xmlLoadExtDtdDefaultValue XML_GLOBAL_MACRO(xmlLoadExtDtdDefaultValue)
|
|
|
|
#define xmlPedanticParserDefaultValue \
|
|
|
|
XML_GLOBAL_MACRO(xmlPedanticParserDefaultValue)
|
|
|
|
#define xmlSubstituteEntitiesDefaultValue \
|
|
|
|
XML_GLOBAL_MACRO(xmlSubstituteEntitiesDefaultValue)
|
2023-12-14 13:37:25 +01:00
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
|
|
#define xmlIndentTreeOutput XML_GLOBAL_MACRO(xmlIndentTreeOutput)
|
|
|
|
#define xmlTreeIndentString XML_GLOBAL_MACRO(xmlTreeIndentString)
|
|
|
|
#define xmlSaveNoEmptyTags XML_GLOBAL_MACRO(xmlSaveNoEmptyTags)
|
|
|
|
#endif
|
2002-02-11 08:54:05 +00:00
|
|
|
#endif
|
2023-09-21 22:57:33 +02:00
|
|
|
/** DOC_ENABLE */
|
2003-08-25 09:05:12 +00:00
|
|
|
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2001-02-23 17:55:21 +00:00
|
|
|
* Init/Cleanup
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlInitParser (void);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlCleanupParser (void);
|
2023-12-07 14:15:29 +01:00
|
|
|
XML_DEPRECATED
|
|
|
|
XMLPUBFUN void
|
|
|
|
xmlInitGlobals (void);
|
|
|
|
XML_DEPRECATED
|
|
|
|
XMLPUBFUN void
|
|
|
|
xmlCleanupGlobals (void);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2001-02-23 17:55:21 +00:00
|
|
|
* Input functions
|
|
|
|
*/
|
2023-03-13 19:19:46 +01:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParserInputRead (xmlParserInputPtr in,
|
2001-02-23 17:55:21 +00:00
|
|
|
int len);
|
2023-03-13 19:19:46 +01:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParserInputGrow (xmlParserInputPtr in,
|
2001-02-23 17:55:21 +00:00
|
|
|
int len);
|
|
|
|
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2001-02-23 17:55:21 +00:00
|
|
|
* Basic parsing Interfaces
|
|
|
|
*/
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#ifdef LIBXML_SAX1_ENABLED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2005-03-31 14:59:00 +00:00
|
|
|
xmlParseDoc (const xmlChar *cur);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
xmlParseFile (const char *filename);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParseMemory (const char *buffer,
|
2001-02-23 17:55:21 +00:00
|
|
|
int size);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#endif /* LIBXML_SAX1_ENABLED */
|
2023-09-20 13:56:16 +02:00
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSubstituteEntitiesDefault(int val);
|
2023-09-20 20:49:59 +02:00
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
|
|
|
xmlThrDefSubstituteEntitiesDefaultValue(int v);
|
2023-09-20 13:56:16 +02:00
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlKeepBlanksDefault (int val);
|
2023-09-20 20:49:59 +02:00
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
|
|
|
xmlThrDefKeepBlanksDefaultValue(int v);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlStopParser (xmlParserCtxtPtr ctxt);
|
2023-09-20 13:56:16 +02:00
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlPedanticParserDefault(int val);
|
2023-09-20 20:49:59 +02:00
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
|
|
|
xmlThrDefPedanticParserDefaultValue(int v);
|
2023-09-20 13:56:16 +02:00
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlLineNumbersDefault (int val);
|
2023-09-20 20:49:59 +02:00
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
|
|
|
xmlThrDefLineNumbersDefaultValue(int v);
|
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
|
|
|
xmlThrDefDoValidityCheckingDefaultValue(int v);
|
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
|
|
|
xmlThrDefGetWarningsDefaultValue(int v);
|
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
|
|
|
xmlThrDefLoadExtDtdDefaultValue(int v);
|
|
|
|
XML_DEPRECATED XMLPUBFUN int
|
|
|
|
xmlThrDefParserDebugEntities(int v);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#ifdef LIBXML_SAX1_ENABLED
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2012-09-11 13:26:36 +08:00
|
|
|
* Recovery mode
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2009-08-20 19:15:08 +02:00
|
|
|
xmlRecoverDoc (const xmlChar *cur);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlRecoverMemory (const char *buffer,
|
2001-02-23 17:55:21 +00:00
|
|
|
int size);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlRecoverFile (const char *filename);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#endif /* LIBXML_SAX1_ENABLED */
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2001-02-23 17:55:21 +00:00
|
|
|
* Less common routines and SAX interfaces
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParseDocument (xmlParserCtxtPtr ctxt);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParseExtParsedEnt (xmlParserCtxtPtr ctxt);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#ifdef LIBXML_SAX1_ENABLED
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSAXUserParseFile (xmlSAXHandlerPtr sax,
|
2001-02-23 17:55:21 +00:00
|
|
|
void *user_data,
|
|
|
|
const char *filename);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSAXUserParseMemory (xmlSAXHandlerPtr sax,
|
2001-02-23 17:55:21 +00:00
|
|
|
void *user_data,
|
2001-05-16 10:57:35 +00:00
|
|
|
const char *buffer,
|
2001-02-23 17:55:21 +00:00
|
|
|
int size);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
xmlSAXParseDoc (xmlSAXHandlerPtr sax,
|
2005-03-31 14:59:00 +00:00
|
|
|
const xmlChar *cur,
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
int recovery);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSAXParseMemory (xmlSAXHandlerPtr sax,
|
2001-07-26 20:05:51 +00:00
|
|
|
const char *buffer,
|
2012-09-11 13:26:36 +08:00
|
|
|
int size,
|
2001-02-23 17:55:21 +00:00
|
|
|
int recovery);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSAXParseMemoryWithData (xmlSAXHandlerPtr sax,
|
2002-11-12 12:36:52 +00:00
|
|
|
const char *buffer,
|
2012-09-11 13:26:36 +08:00
|
|
|
int size,
|
2002-11-12 12:36:52 +00:00
|
|
|
int recovery,
|
|
|
|
void *data);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSAXParseFile (xmlSAXHandlerPtr sax,
|
2001-02-23 17:55:21 +00:00
|
|
|
const char *filename,
|
|
|
|
int recovery);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSAXParseFileWithData (xmlSAXHandlerPtr sax,
|
2001-10-02 13:54:14 +00:00
|
|
|
const char *filename,
|
|
|
|
int recovery,
|
|
|
|
void *data);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSAXParseEntity (xmlSAXHandlerPtr sax,
|
2001-02-23 17:55:21 +00:00
|
|
|
const char *filename);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParseEntity (const char *filename);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#endif /* LIBXML_SAX1_ENABLED */
|
|
|
|
|
|
|
|
#ifdef LIBXML_VALID_ENABLED
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDtdPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSAXParseDTD (xmlSAXHandlerPtr sax,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *ExternalID,
|
|
|
|
const xmlChar *SystemID);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDtdPtr
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
xmlParseDTD (const xmlChar *ExternalID,
|
|
|
|
const xmlChar *SystemID);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDtdPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlIOParseDTD (xmlSAXHandlerPtr sax,
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlParserInputBufferPtr input,
|
|
|
|
xmlCharEncoding enc);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#endif /* LIBXML_VALID_ENABLE */
|
|
|
|
#ifdef LIBXML_SAX1_ENABLED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParseBalancedChunkMemory(xmlDocPtr doc,
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlSAXHandlerPtr sax,
|
|
|
|
void *user_data,
|
|
|
|
int depth,
|
|
|
|
const xmlChar *string,
|
2001-08-21 10:56:31 +00:00
|
|
|
xmlNodePtr *lst);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#endif /* LIBXML_SAX1_ENABLED */
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlParserErrors
|
2004-08-16 00:39:03 +00:00
|
|
|
xmlParseInNodeContext (xmlNodePtr node,
|
|
|
|
const char *data,
|
|
|
|
int datalen,
|
|
|
|
int options,
|
|
|
|
xmlNodePtr *lst);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#ifdef LIBXML_SAX1_ENABLED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParseBalancedChunkMemoryRecover(xmlDocPtr doc,
|
2002-08-02 22:19:49 +00:00
|
|
|
xmlSAXHandlerPtr sax,
|
|
|
|
void *user_data,
|
|
|
|
int depth,
|
|
|
|
const xmlChar *string,
|
|
|
|
xmlNodePtr *lst,
|
|
|
|
int recover);
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParseExternalEntity (xmlDocPtr doc,
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlSAXHandlerPtr sax,
|
|
|
|
void *user_data,
|
|
|
|
int depth,
|
|
|
|
const xmlChar *URL,
|
|
|
|
const xmlChar *ID,
|
2001-08-21 10:56:31 +00:00
|
|
|
xmlNodePtr *lst);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#endif /* LIBXML_SAX1_ENABLED */
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParseCtxtExternalEntity(xmlParserCtxtPtr ctx,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar *URL,
|
|
|
|
const xmlChar *ID,
|
2001-08-21 10:56:31 +00:00
|
|
|
xmlNodePtr *lst);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2001-02-23 17:55:21 +00:00
|
|
|
* Parser contexts handling.
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlParserCtxtPtr
|
2003-10-02 22:28:19 +00:00
|
|
|
xmlNewParserCtxt (void);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlParserCtxtPtr
|
2022-09-01 00:13:19 +02:00
|
|
|
xmlNewSAXParserCtxt (const xmlSAXHandler *sax,
|
|
|
|
void *userData);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlInitParserCtxt (xmlParserCtxtPtr ctxt);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlClearParserCtxt (xmlParserCtxtPtr ctxt);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlFreeParserCtxt (xmlParserCtxtPtr ctxt);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#ifdef LIBXML_SAX1_ENABLED
|
2022-08-25 19:53:04 +02:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSetupParserForBuffer (xmlParserCtxtPtr ctxt,
|
2001-02-23 17:55:21 +00:00
|
|
|
const xmlChar* buffer,
|
2002-01-20 22:08:18 +00:00
|
|
|
const char *filename);
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#endif /* LIBXML_SAX1_ENABLED */
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlParserCtxtPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlCreateDocParserCtxt (const xmlChar *cur);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#ifdef LIBXML_LEGACY_ENABLED
|
2024-06-17 02:42:18 +02:00
|
|
|
/** DOC_DISABLE */
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2001-02-23 17:55:21 +00:00
|
|
|
* Reading/setting optional parsing features.
|
|
|
|
*/
|
2022-02-20 19:56:41 +01:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlGetFeaturesList (int *len,
|
2001-02-23 17:55:21 +00:00
|
|
|
const char **result);
|
2022-02-20 19:56:41 +01:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlGetFeature (xmlParserCtxtPtr ctxt,
|
2001-02-23 17:55:21 +00:00
|
|
|
const char *name,
|
|
|
|
void *result);
|
2022-02-20 19:56:41 +01:00
|
|
|
XML_DEPRECATED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSetFeature (xmlParserCtxtPtr ctxt,
|
2001-02-23 17:55:21 +00:00
|
|
|
const char *name,
|
|
|
|
void *value);
|
2024-06-17 02:42:18 +02:00
|
|
|
/** DOC_ENABLE */
|
Re-examined the problems of configuring a "minimal" library.
Synchronized the header files with the library code in order
to assure that all the various conditionals (LIBXML_xxxx_ENABLED)
were the same in both. Modified the API database content to more
accurately reflect the conditionals. Enhanced the generation
of that database. Although there was no substantial change to
any of the library code's logic, a large number of files were
modified to achieve the above, and the configuration script
was enhanced to do some automatic enabling of features (e.g.
--with-xinclude forces --with-xpath). Additionally, all the format
errors discovered by apibuild.py were corrected.
* configure.in: enhanced cross-checking of options
* doc/apibuild.py, doc/elfgcchack.xsl, doc/libxml2-refs.xml,
doc/libxml2-api.xml, gentest.py: changed the usage of the
<cond> element in module descriptions
* elfgcchack.h, testapi.c: regenerated with proper conditionals
* HTMLparser.c, SAX.c, globals.c, tree.c, xmlschemas.c, xpath.c,
testSAX.c: cleaned up conditionals
* include/libxml/[SAX.h, SAX2.h, debugXML.h, encoding.h, entities.h,
hash.h, parser.h, parserInternals.h, schemasInternals.h, tree.h,
valid.h, xlink.h, xmlIO.h, xmlautomata.h, xmlreader.h, xpath.h]:
synchronized the conditionals with the corresponding module code
* doc/examples/tree2.c, doc/examples/xpath1.c, doc/examples/xpath2.c:
added additional conditions required for compilation
* doc/*.html, doc/html/*.html: rebuilt the docs
2005-01-02 09:53:13 +00:00
|
|
|
#endif /* LIBXML_LEGACY_ENABLED */
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2003-09-30 12:36:01 +00:00
|
|
|
#ifdef LIBXML_PUSH_ENABLED
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Interfaces for the Push mode.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlParserCtxtPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlCreatePushParserCtxt(xmlSAXHandlerPtr sax,
|
2001-02-23 17:55:21 +00:00
|
|
|
void *user_data,
|
|
|
|
const char *chunk,
|
|
|
|
int size,
|
|
|
|
const char *filename);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParseChunk (xmlParserCtxtPtr ctxt,
|
2001-02-23 17:55:21 +00:00
|
|
|
const char *chunk,
|
|
|
|
int size,
|
|
|
|
int terminate);
|
2003-09-30 12:36:01 +00:00
|
|
|
#endif /* LIBXML_PUSH_ENABLED */
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Special I/O mode.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlParserCtxtPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlCreateIOParserCtxt (xmlSAXHandlerPtr sax,
|
2001-02-23 17:55:21 +00:00
|
|
|
void *user_data,
|
|
|
|
xmlInputReadCallback ioread,
|
|
|
|
xmlInputCloseCallback ioclose,
|
|
|
|
void *ioctx,
|
|
|
|
xmlCharEncoding enc);
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlParserInputPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlNewIOInputStream (xmlParserCtxtPtr ctxt,
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlParserInputBufferPtr input,
|
|
|
|
xmlCharEncoding enc);
|
|
|
|
|
2001-05-19 13:24:56 +00:00
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* Node infos.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlParserNodeInfo*
|
2023-11-23 15:22:59 +01:00
|
|
|
xmlParserFindNodeInfo (xmlParserCtxtPtr ctxt,
|
|
|
|
xmlNodePtr node);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlInitNodeInfoSeq (xmlParserNodeInfoSeqPtr seq);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlClearNodeInfoSeq (xmlParserNodeInfoSeqPtr seq);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN unsigned long
|
2023-11-23 15:22:59 +01:00
|
|
|
xmlParserFindNodeInfoIndex(xmlParserNodeInfoSeqPtr seq,
|
|
|
|
xmlNodePtr node);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlParserAddNodeInfo (xmlParserCtxtPtr ctxt,
|
2023-11-23 15:22:59 +01:00
|
|
|
xmlParserNodeInfoPtr info);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
/*
|
2002-03-12 18:46:39 +00:00
|
|
|
* External entities handling actually implemented in xmlIO.
|
2001-02-23 17:55:21 +00:00
|
|
|
*/
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlSetExternalEntityLoader(xmlExternalEntityLoader f);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlExternalEntityLoader
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlGetExternalEntityLoader(void);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlParserInputPtr
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlLoadExternalEntity (const char *URL,
|
|
|
|
const char *ID,
|
2002-01-22 18:15:52 +00:00
|
|
|
xmlParserCtxtPtr ctxt);
|
2004-02-11 13:25:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Index lookup, actually implemented in the encoding module
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN long
|
2004-02-11 13:25:26 +00:00
|
|
|
xmlByteConsumed (xmlParserCtxtPtr ctxt);
|
|
|
|
|
2003-09-23 21:50:54 +00:00
|
|
|
/*
|
|
|
|
* New set of simpler/more flexible APIs
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* xmlParserOption:
|
|
|
|
*
|
|
|
|
* This is the set of XML parser options that can be passed down
|
|
|
|
* to the xmlReadDoc() and similar calls.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
XML_PARSE_RECOVER = 1<<0, /* recover on errors */
|
|
|
|
XML_PARSE_NOENT = 1<<1, /* substitute entities */
|
|
|
|
XML_PARSE_DTDLOAD = 1<<2, /* load the external subset */
|
|
|
|
XML_PARSE_DTDATTR = 1<<3, /* default DTD attributes */
|
|
|
|
XML_PARSE_DTDVALID = 1<<4, /* validate with the DTD */
|
|
|
|
XML_PARSE_NOERROR = 1<<5, /* suppress error reports */
|
|
|
|
XML_PARSE_NOWARNING = 1<<6, /* suppress warning reports */
|
|
|
|
XML_PARSE_PEDANTIC = 1<<7, /* pedantic error reporting */
|
|
|
|
XML_PARSE_NOBLANKS = 1<<8, /* remove blank nodes */
|
|
|
|
XML_PARSE_SAX1 = 1<<9, /* use the SAX1 interface internally */
|
2019-09-30 17:04:54 +02:00
|
|
|
XML_PARSE_XINCLUDE = 1<<10,/* Implement XInclude substitution */
|
2003-09-24 21:23:56 +00:00
|
|
|
XML_PARSE_NONET = 1<<11,/* Forbid network access */
|
2016-04-13 16:56:07 +02:00
|
|
|
XML_PARSE_NODICT = 1<<12,/* Do not reuse the context dictionary */
|
2003-09-26 12:47:50 +00:00
|
|
|
XML_PARSE_NSCLEAN = 1<<13,/* remove redundant namespaces declarations */
|
2004-08-16 12:34:50 +00:00
|
|
|
XML_PARSE_NOCDATA = 1<<14,/* merge CDATA as text nodes */
|
2005-08-25 13:19:21 +00:00
|
|
|
XML_PARSE_NOXINCNODE= 1<<15,/* do not generate XINCLUDE START/END nodes */
|
2008-07-29 09:02:27 +00:00
|
|
|
XML_PARSE_COMPACT = 1<<16,/* compact small text nodes; no modification of
|
2006-06-09 19:46:46 +00:00
|
|
|
the tree allowed afterwards (will possibly
|
|
|
|
crash if you try to modify the tree) */
|
2008-08-26 07:26:55 +00:00
|
|
|
XML_PARSE_OLD10 = 1<<17,/* parse using XML-1.0 before update 5 */
|
2008-08-26 13:05:34 +00:00
|
|
|
XML_PARSE_NOBASEFIX = 1<<18,/* do not fixup XINCLUDE xml:base uris */
|
2011-05-16 16:03:50 +08:00
|
|
|
XML_PARSE_HUGE = 1<<19,/* relax any hardcoded limit from the parser */
|
|
|
|
XML_PARSE_OLDSAX = 1<<20,/* parse using SAX2 interface before 2.7.0 */
|
2012-08-13 12:41:33 +08:00
|
|
|
XML_PARSE_IGNORE_ENC= 1<<21,/* ignore internal document encoding hint */
|
2024-01-05 04:17:14 +01:00
|
|
|
XML_PARSE_BIG_LINES = 1<<22,/* Store big lines numbers in text PSVI field */
|
2024-06-11 00:00:32 +02:00
|
|
|
/* since 2.13.0 */
|
|
|
|
XML_PARSE_NO_XXE = 1<<23,/* disable loading of external content */
|
|
|
|
/* since 2.14.0 */
|
|
|
|
XML_PARSE_NO_UNZIP = 1<<24 /* disable compressed content */
|
2003-09-23 21:50:54 +00:00
|
|
|
} xmlParserOption;
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlCtxtReset (xmlParserCtxtPtr ctxt);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-10-28 21:31:45 +00:00
|
|
|
xmlCtxtResetPush (xmlParserCtxtPtr ctxt,
|
|
|
|
const char *chunk,
|
|
|
|
int size,
|
|
|
|
const char *filename,
|
|
|
|
const char *encoding);
|
2024-06-26 04:32:49 +02:00
|
|
|
XMLPUBFUN int
|
|
|
|
xmlCtxtGetOptions (xmlParserCtxtPtr ctxt);
|
2023-09-07 03:25:45 +02:00
|
|
|
XMLPUBFUN int
|
|
|
|
xmlCtxtSetOptions (xmlParserCtxtPtr ctxt,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlCtxtUseOptions (xmlParserCtxtPtr ctxt,
|
|
|
|
int options);
|
2024-06-26 04:32:49 +02:00
|
|
|
XMLPUBFUN void *
|
|
|
|
xmlCtxtGetPrivate (xmlParserCtxtPtr ctxt);
|
|
|
|
XMLPUBFUN void
|
|
|
|
xmlCtxtSetPrivate (xmlParserCtxtPtr ctxt,
|
|
|
|
void *priv);
|
|
|
|
XMLPUBFUN void *
|
|
|
|
xmlCtxtGetCatalogs (xmlParserCtxtPtr ctxt);
|
|
|
|
XMLPUBFUN void
|
|
|
|
xmlCtxtSetCatalogs (xmlParserCtxtPtr ctxt,
|
|
|
|
void *catalogs);
|
|
|
|
XMLPUBFUN xmlDictPtr
|
|
|
|
xmlCtxtGetDict (xmlParserCtxtPtr ctxt);
|
|
|
|
XMLPUBFUN void
|
|
|
|
xmlCtxtSetDict (xmlParserCtxtPtr ctxt,
|
|
|
|
xmlDictPtr);
|
2024-06-26 02:22:04 +02:00
|
|
|
XMLPUBFUN const xmlChar *
|
|
|
|
xmlCtxtGetVersion (xmlParserCtxtPtr ctxt);
|
|
|
|
XMLPUBFUN const xmlChar *
|
|
|
|
xmlCtxtGetDeclaredEncoding(xmlParserCtxtPtr ctxt);
|
|
|
|
XMLPUBFUN int
|
|
|
|
xmlCtxtGetStandalone (xmlParserCtxtPtr ctxt);
|
2023-12-18 19:31:29 +01:00
|
|
|
XMLPUBFUN void
|
|
|
|
xmlCtxtSetErrorHandler (xmlParserCtxtPtr ctxt,
|
|
|
|
xmlStructuredErrorFunc handler,
|
|
|
|
void *data);
|
2024-06-26 04:32:49 +02:00
|
|
|
XMLPUBFUN void
|
|
|
|
xmlCtxtSetResourceLoader(xmlParserCtxtPtr ctxt,
|
|
|
|
xmlResourceLoader loader,
|
|
|
|
void *vctxt);
|
2023-08-20 20:48:10 +02:00
|
|
|
XMLPUBFUN void
|
|
|
|
xmlCtxtSetMaxAmplification(xmlParserCtxtPtr ctxt,
|
|
|
|
unsigned maxAmpl);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlReadDoc (const xmlChar *cur,
|
2003-09-25 21:05:58 +00:00
|
|
|
const char *URL,
|
2003-09-23 21:50:54 +00:00
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-25 21:05:58 +00:00
|
|
|
xmlReadFile (const char *URL,
|
2003-09-23 21:50:54 +00:00
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlReadMemory (const char *buffer,
|
|
|
|
int size,
|
2003-09-25 21:05:58 +00:00
|
|
|
const char *URL,
|
2003-09-23 21:50:54 +00:00
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlReadFd (int fd,
|
2003-09-25 21:05:58 +00:00
|
|
|
const char *URL,
|
2003-09-23 21:50:54 +00:00
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlReadIO (xmlInputReadCallback ioread,
|
|
|
|
xmlInputCloseCallback ioclose,
|
|
|
|
void *ioctx,
|
2003-09-25 21:05:58 +00:00
|
|
|
const char *URL,
|
2003-09-23 21:50:54 +00:00
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2023-12-27 18:33:30 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2024-01-04 23:25:06 +01:00
|
|
|
xmlCtxtParseDocument (xmlParserCtxtPtr ctxt,
|
|
|
|
xmlParserInputPtr input);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlCtxtReadDoc (xmlParserCtxtPtr ctxt,
|
|
|
|
const xmlChar *cur,
|
2003-09-25 21:05:58 +00:00
|
|
|
const char *URL,
|
2003-09-23 21:50:54 +00:00
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlCtxtReadFile (xmlParserCtxtPtr ctxt,
|
|
|
|
const char *filename,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlCtxtReadMemory (xmlParserCtxtPtr ctxt,
|
|
|
|
const char *buffer,
|
|
|
|
int size,
|
2003-09-25 21:05:58 +00:00
|
|
|
const char *URL,
|
2003-09-23 21:50:54 +00:00
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlCtxtReadFd (xmlParserCtxtPtr ctxt,
|
|
|
|
int fd,
|
2003-09-25 21:05:58 +00:00
|
|
|
const char *URL,
|
2003-09-23 21:50:54 +00:00
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-09-23 21:50:54 +00:00
|
|
|
xmlCtxtReadIO (xmlParserCtxtPtr ctxt,
|
|
|
|
xmlInputReadCallback ioread,
|
|
|
|
xmlInputCloseCallback ioclose,
|
|
|
|
void *ioctx,
|
2003-09-25 21:05:58 +00:00
|
|
|
const char *URL,
|
2003-09-23 21:50:54 +00:00
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2005-09-04 21:39:03 +00:00
|
|
|
/*
|
|
|
|
* Library wide options
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* xmlFeature:
|
|
|
|
*
|
2019-09-30 17:04:54 +02:00
|
|
|
* Used to examine the existence of features that can be enabled
|
2005-09-04 21:39:03 +00:00
|
|
|
* or disabled at compile-time.
|
2005-09-12 09:20:31 +00:00
|
|
|
* They used to be called XML_FEATURE_xxx but this clashed with Expat
|
2005-09-04 21:39:03 +00:00
|
|
|
*/
|
|
|
|
typedef enum {
|
2005-09-12 09:20:31 +00:00
|
|
|
XML_WITH_THREAD = 1,
|
|
|
|
XML_WITH_TREE = 2,
|
|
|
|
XML_WITH_OUTPUT = 3,
|
|
|
|
XML_WITH_PUSH = 4,
|
|
|
|
XML_WITH_READER = 5,
|
|
|
|
XML_WITH_PATTERN = 6,
|
|
|
|
XML_WITH_WRITER = 7,
|
|
|
|
XML_WITH_SAX1 = 8,
|
|
|
|
XML_WITH_FTP = 9,
|
|
|
|
XML_WITH_HTTP = 10,
|
|
|
|
XML_WITH_VALID = 11,
|
|
|
|
XML_WITH_HTML = 12,
|
|
|
|
XML_WITH_LEGACY = 13,
|
|
|
|
XML_WITH_C14N = 14,
|
|
|
|
XML_WITH_CATALOG = 15,
|
|
|
|
XML_WITH_XPATH = 16,
|
|
|
|
XML_WITH_XPTR = 17,
|
|
|
|
XML_WITH_XINCLUDE = 18,
|
|
|
|
XML_WITH_ICONV = 19,
|
|
|
|
XML_WITH_ISO8859X = 20,
|
|
|
|
XML_WITH_UNICODE = 21,
|
|
|
|
XML_WITH_REGEXP = 22,
|
|
|
|
XML_WITH_AUTOMATA = 23,
|
|
|
|
XML_WITH_EXPR = 24,
|
|
|
|
XML_WITH_SCHEMAS = 25,
|
|
|
|
XML_WITH_SCHEMATRON = 26,
|
|
|
|
XML_WITH_MODULES = 27,
|
|
|
|
XML_WITH_DEBUG = 28,
|
|
|
|
XML_WITH_DEBUG_MEM = 29,
|
2024-01-04 17:50:11 +01:00
|
|
|
XML_WITH_DEBUG_RUN = 30, /* unused */
|
2006-07-13 06:29:56 +00:00
|
|
|
XML_WITH_ZLIB = 31,
|
2010-11-04 17:42:42 +01:00
|
|
|
XML_WITH_ICU = 32,
|
2011-09-18 16:59:13 +02:00
|
|
|
XML_WITH_LZMA = 33,
|
2005-09-12 09:20:31 +00:00
|
|
|
XML_WITH_NONE = 99999 /* just to be sure of allocation size */
|
2005-09-04 21:39:03 +00:00
|
|
|
} xmlFeature;
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2005-09-04 21:39:03 +00:00
|
|
|
xmlHasFeature (xmlFeature feature);
|
|
|
|
|
2001-02-23 17:55:21 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* __XML_PARSER_H__ */
|