2002-12-09 14:13:43 +00:00
|
|
|
/*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Summary: the XMLReader implementation
|
|
|
|
* Description: API of the XML streaming API based on C# interfaces.
|
2002-12-09 14:13:43 +00:00
|
|
|
*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Copy: See Copyright for the status of this software.
|
2002-12-09 14:13:43 +00:00
|
|
|
*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Author: Daniel Veillard
|
2002-12-09 14:13:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XML_XMLREADER_H__
|
|
|
|
#define __XML_XMLREADER_H__
|
|
|
|
|
2003-08-25 09:05:12 +00:00
|
|
|
#include <libxml/xmlversion.h>
|
2002-12-09 14:13:43 +00:00
|
|
|
#include <libxml/tree.h>
|
2023-09-16 19:58:42 +02:00
|
|
|
#include <libxml/xmlerror.h>
|
2002-12-09 14:13:43 +00:00
|
|
|
#include <libxml/xmlIO.h>
|
2025-02-25 23:07:19 +01:00
|
|
|
#ifdef LIBXML_RELAXNG_ENABLED
|
2003-04-17 09:09:19 +00:00
|
|
|
#include <libxml/relaxng.h>
|
2025-02-25 23:07:19 +01:00
|
|
|
#endif
|
|
|
|
#ifdef LIBXML_SCHEMAS_ENABLED
|
2005-07-10 19:03:16 +00:00
|
|
|
#include <libxml/xmlschemas.h>
|
2003-04-17 09:09:19 +00:00
|
|
|
#endif
|
2023-09-21 14:52:14 +02:00
|
|
|
#include <libxml/parser.h>
|
2002-12-09 14:13:43 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2008-05-12 12:58:46 +00:00
|
|
|
/**
|
|
|
|
* xmlParserSeverities:
|
|
|
|
*
|
|
|
|
* How severe an error callback is when the per-reader error callback API
|
|
|
|
* is used.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
XML_PARSER_SEVERITY_VALIDITY_WARNING = 1,
|
|
|
|
XML_PARSER_SEVERITY_VALIDITY_ERROR = 2,
|
|
|
|
XML_PARSER_SEVERITY_WARNING = 3,
|
|
|
|
XML_PARSER_SEVERITY_ERROR = 4
|
|
|
|
} xmlParserSeverities;
|
|
|
|
|
|
|
|
#ifdef LIBXML_READER_ENABLED
|
|
|
|
|
2004-04-20 09:45:26 +00:00
|
|
|
/**
|
|
|
|
* xmlTextReaderMode:
|
|
|
|
*
|
|
|
|
* Internal state values for the reader.
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
XML_TEXTREADER_MODE_INITIAL = 0,
|
|
|
|
XML_TEXTREADER_MODE_INTERACTIVE = 1,
|
|
|
|
XML_TEXTREADER_MODE_ERROR = 2,
|
|
|
|
XML_TEXTREADER_MODE_EOF =3,
|
|
|
|
XML_TEXTREADER_MODE_CLOSED = 4,
|
|
|
|
XML_TEXTREADER_MODE_READING = 5
|
|
|
|
} xmlTextReaderMode;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* xmlParserProperties:
|
|
|
|
*
|
|
|
|
* Some common options to use with xmlTextReaderSetParserProp, but it
|
2008-04-11 12:58:43 +00:00
|
|
|
* is better to use xmlParserOption and the xmlReaderNewxxx and
|
2004-04-20 09:45:26 +00:00
|
|
|
* xmlReaderForxxx APIs now.
|
|
|
|
*/
|
2002-12-18 14:53:54 +00:00
|
|
|
typedef enum {
|
|
|
|
XML_PARSER_LOADDTD = 1,
|
2002-12-28 22:56:33 +00:00
|
|
|
XML_PARSER_DEFAULTATTRS = 2,
|
|
|
|
XML_PARSER_VALIDATE = 3,
|
|
|
|
XML_PARSER_SUBST_ENTITIES = 4
|
2002-12-18 14:53:54 +00:00
|
|
|
} xmlParserProperties;
|
|
|
|
|
2004-04-20 09:45:26 +00:00
|
|
|
/**
|
|
|
|
* xmlReaderTypes:
|
|
|
|
*
|
|
|
|
* Predefined constants for the different types of nodes.
|
|
|
|
*/
|
2003-08-09 18:01:53 +00:00
|
|
|
typedef enum {
|
2003-07-30 16:37:18 +00:00
|
|
|
XML_READER_TYPE_NONE = 0,
|
|
|
|
XML_READER_TYPE_ELEMENT = 1,
|
|
|
|
XML_READER_TYPE_ATTRIBUTE = 2,
|
|
|
|
XML_READER_TYPE_TEXT = 3,
|
|
|
|
XML_READER_TYPE_CDATA = 4,
|
|
|
|
XML_READER_TYPE_ENTITY_REFERENCE = 5,
|
|
|
|
XML_READER_TYPE_ENTITY = 6,
|
|
|
|
XML_READER_TYPE_PROCESSING_INSTRUCTION = 7,
|
|
|
|
XML_READER_TYPE_COMMENT = 8,
|
|
|
|
XML_READER_TYPE_DOCUMENT = 9,
|
|
|
|
XML_READER_TYPE_DOCUMENT_TYPE = 10,
|
|
|
|
XML_READER_TYPE_DOCUMENT_FRAGMENT = 11,
|
|
|
|
XML_READER_TYPE_NOTATION = 12,
|
|
|
|
XML_READER_TYPE_WHITESPACE = 13,
|
|
|
|
XML_READER_TYPE_SIGNIFICANT_WHITESPACE = 14,
|
|
|
|
XML_READER_TYPE_END_ELEMENT = 15,
|
|
|
|
XML_READER_TYPE_END_ENTITY = 16,
|
|
|
|
XML_READER_TYPE_XML_DECLARATION = 17
|
2003-08-09 18:01:53 +00:00
|
|
|
} xmlReaderTypes;
|
2003-07-30 16:37:18 +00:00
|
|
|
|
2004-04-20 09:45:26 +00:00
|
|
|
/**
|
|
|
|
* xmlTextReader:
|
|
|
|
*
|
|
|
|
* Structure for an xmlReader context.
|
|
|
|
*/
|
2002-12-09 14:13:43 +00:00
|
|
|
typedef struct _xmlTextReader xmlTextReader;
|
2004-04-20 09:45:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* xmlTextReaderPtr:
|
|
|
|
*
|
|
|
|
* Pointer to an xmlReader context.
|
|
|
|
*/
|
2002-12-09 14:13:43 +00:00
|
|
|
typedef xmlTextReader *xmlTextReaderPtr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constructors & Destructor
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlTextReaderPtr
|
2003-08-25 09:05:12 +00:00
|
|
|
xmlNewTextReader (xmlParserInputBufferPtr input,
|
2002-12-20 00:16:24 +00:00
|
|
|
const char *URI);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlTextReaderPtr
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlNewTextReaderFilename(const char *URI);
|
2007-01-03 23:13:12 +00:00
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlFreeTextReader (xmlTextReaderPtr reader);
|
2002-12-09 14:13:43 +00:00
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2007-01-03 23:13:12 +00:00
|
|
|
xmlTextReaderSetup(xmlTextReaderPtr reader,
|
|
|
|
xmlParserInputBufferPtr input, const char *URL,
|
|
|
|
const char *encoding, int options);
|
2023-08-20 20:48:10 +02:00
|
|
|
XMLPUBFUN void
|
|
|
|
xmlTextReaderSetMaxAmplification(xmlTextReaderPtr reader,
|
|
|
|
unsigned maxAmpl);
|
2023-12-10 18:23:53 +01:00
|
|
|
XMLPUBFUN const xmlError *
|
|
|
|
xmlTextReaderGetLastError(xmlTextReaderPtr reader);
|
2007-01-03 23:13:12 +00:00
|
|
|
|
2002-12-09 14:13:43 +00:00
|
|
|
/*
|
|
|
|
* Iterators
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderRead (xmlTextReaderPtr reader);
|
2006-01-02 10:22:02 +00:00
|
|
|
|
|
|
|
#ifdef LIBXML_WRITER_ENABLED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2012-09-11 13:26:36 +08:00
|
|
|
xmlTextReaderReadInnerXml(xmlTextReaderPtr reader);
|
2008-04-11 12:58:43 +00:00
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2012-09-11 13:26:36 +08:00
|
|
|
xmlTextReaderReadOuterXml(xmlTextReaderPtr reader);
|
2006-01-02 10:22:02 +00:00
|
|
|
#endif
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2012-09-11 13:26:36 +08:00
|
|
|
xmlTextReaderReadString (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2012-09-11 13:26:36 +08:00
|
|
|
xmlTextReaderReadAttributeValue(xmlTextReaderPtr reader);
|
2002-12-09 14:13:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Attributes of the node
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderAttributeCount(xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderDepth (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderHasAttributes(xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderHasValue(xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderIsDefault (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderIsEmptyElement(xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-09-19 12:44:05 +00:00
|
|
|
xmlTextReaderNodeType (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-09-19 12:44:05 +00:00
|
|
|
xmlTextReaderQuoteChar (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-09-19 12:44:05 +00:00
|
|
|
xmlTextReaderReadState (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2004-10-19 09:04:23 +00:00
|
|
|
xmlTextReaderIsNamespaceDecl(xmlTextReaderPtr reader);
|
2002-12-14 23:00:35 +00:00
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2003-09-19 12:44:05 +00:00
|
|
|
xmlTextReaderConstBaseUri (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2003-09-19 12:44:05 +00:00
|
|
|
xmlTextReaderConstLocalName (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2003-09-19 12:44:05 +00:00
|
|
|
xmlTextReaderConstName (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2003-09-19 12:44:05 +00:00
|
|
|
xmlTextReaderConstNamespaceUri(xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2003-09-19 12:44:05 +00:00
|
|
|
xmlTextReaderConstPrefix (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2003-09-19 12:44:05 +00:00
|
|
|
xmlTextReaderConstXmlLang (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2003-09-22 10:24:45 +00:00
|
|
|
xmlTextReaderConstString (xmlTextReaderPtr reader,
|
2008-04-11 12:58:43 +00:00
|
|
|
const xmlChar *str);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlTextReaderConstValue (xmlTextReaderPtr reader);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* use the Const version of the routine for
|
|
|
|
* better performance and simpler code
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlTextReaderBaseUri (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlTextReaderLocalName (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlTextReaderName (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlTextReaderNamespaceUri(xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlTextReaderPrefix (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlTextReaderXmlLang (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlTextReaderValue (xmlTextReaderPtr reader);
|
2003-09-22 10:24:45 +00:00
|
|
|
|
2002-12-14 23:00:35 +00:00
|
|
|
/*
|
|
|
|
* Methods of the XmlTextReader
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderClose (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderGetAttributeNo (xmlTextReaderPtr reader,
|
2002-12-14 23:00:35 +00:00
|
|
|
int no);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderGetAttribute (xmlTextReaderPtr reader,
|
2002-12-14 23:00:35 +00:00
|
|
|
const xmlChar *name);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderGetAttributeNs (xmlTextReaderPtr reader,
|
2002-12-14 23:00:35 +00:00
|
|
|
const xmlChar *localName,
|
|
|
|
const xmlChar *namespaceURI);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlParserInputBufferPtr
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderGetRemainder (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderLookupNamespace(xmlTextReaderPtr reader,
|
2002-12-15 23:36:49 +00:00
|
|
|
const xmlChar *prefix);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderMoveToAttributeNo(xmlTextReaderPtr reader,
|
2002-12-15 23:36:49 +00:00
|
|
|
int no);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderMoveToAttribute(xmlTextReaderPtr reader,
|
2002-12-15 23:36:49 +00:00
|
|
|
const xmlChar *name);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderMoveToAttributeNs(xmlTextReaderPtr reader,
|
2002-12-15 23:36:49 +00:00
|
|
|
const xmlChar *localName,
|
|
|
|
const xmlChar *namespaceURI);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderMoveToFirstAttribute(xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderMoveToNextAttribute(xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderMoveToElement (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderNormalization (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2004-10-19 09:04:23 +00:00
|
|
|
xmlTextReaderConstEncoding (xmlTextReaderPtr reader);
|
2002-12-15 23:36:49 +00:00
|
|
|
|
2002-12-18 14:53:54 +00:00
|
|
|
/*
|
|
|
|
* Extensions
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderSetParserProp (xmlTextReaderPtr reader,
|
2002-12-18 14:53:54 +00:00
|
|
|
int prop,
|
|
|
|
int value);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderGetParserProp (xmlTextReaderPtr reader,
|
2002-12-18 14:53:54 +00:00
|
|
|
int prop);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlNodePtr
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderCurrentNode (xmlTextReaderPtr reader);
|
2005-01-03 21:58:59 +00:00
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2005-01-03 21:58:59 +00:00
|
|
|
xmlTextReaderGetParserLineNumber(xmlTextReaderPtr reader);
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2005-01-03 21:58:59 +00:00
|
|
|
xmlTextReaderGetParserColumnNumber(xmlTextReaderPtr reader);
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlNodePtr
|
2003-09-28 00:19:54 +00:00
|
|
|
xmlTextReaderPreserve (xmlTextReaderPtr reader);
|
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_PATTERN_ENABLED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-12-05 14:57:46 +00:00
|
|
|
xmlTextReaderPreservePattern(xmlTextReaderPtr reader,
|
2008-04-11 12:58:43 +00:00
|
|
|
const xmlChar *pattern,
|
2003-12-05 16:10:21 +00:00
|
|
|
const xmlChar **namespaces);
|
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_PATTERN_ENABLED */
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlDocPtr
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderCurrentDoc (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlNodePtr
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderExpand (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderNext (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlTextReaderNextSibling (xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderIsValid (xmlTextReaderPtr reader);
|
2025-02-25 23:07:19 +01:00
|
|
|
#ifdef LIBXML_RELAXNG_ENABLED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderRelaxNGValidate(xmlTextReaderPtr reader,
|
2003-04-15 23:32:22 +00:00
|
|
|
const char *rng);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2012-03-19 16:08:16 +08:00
|
|
|
xmlTextReaderRelaxNGValidateCtxt(xmlTextReaderPtr reader,
|
|
|
|
xmlRelaxNGValidCtxtPtr ctxt,
|
|
|
|
int options);
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-08-27 08:59:58 +00:00
|
|
|
xmlTextReaderRelaxNGSetSchema(xmlTextReaderPtr reader,
|
2003-04-17 09:09:19 +00:00
|
|
|
xmlRelaxNGPtr schema);
|
2025-02-25 23:07:19 +01:00
|
|
|
#endif
|
|
|
|
#ifdef LIBXML_SCHEMAS_ENABLED
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2005-07-10 19:03:16 +00:00
|
|
|
xmlTextReaderSchemaValidate (xmlTextReaderPtr reader,
|
2008-04-11 12:58:43 +00:00
|
|
|
const char *xsd);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2005-12-07 14:02:42 +00:00
|
|
|
xmlTextReaderSchemaValidateCtxt(xmlTextReaderPtr reader,
|
|
|
|
xmlSchemaValidCtxtPtr ctxt,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2005-07-10 19:03:16 +00:00
|
|
|
xmlTextReaderSetSchema (xmlTextReaderPtr reader,
|
2008-04-11 12:58:43 +00:00
|
|
|
xmlSchemaPtr schema);
|
2003-04-15 23:32:22 +00:00
|
|
|
#endif
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN const xmlChar *
|
2004-10-19 09:04:23 +00:00
|
|
|
xmlTextReaderConstXmlVersion(xmlTextReaderPtr reader);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2004-10-19 09:04:23 +00:00
|
|
|
xmlTextReaderStandalone (xmlTextReaderPtr reader);
|
2003-01-16 22:45:08 +00:00
|
|
|
|
2005-02-18 19:36:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Index lookup
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN long
|
2005-02-18 19:36:12 +00:00
|
|
|
xmlTextReaderByteConsumed (xmlTextReaderPtr reader);
|
|
|
|
|
2003-10-18 09:07:46 +00:00
|
|
|
/*
|
|
|
|
* New more complete APIs for simpler creation and reuse of readers
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlTextReaderPtr
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlReaderWalker (xmlDocPtr doc);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlTextReaderPtr
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderForDoc (const xmlChar * cur,
|
|
|
|
const char *URL,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlTextReaderPtr
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderForFile (const char *filename,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlTextReaderPtr
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderForMemory (const char *buffer,
|
|
|
|
int size,
|
|
|
|
const char *URL,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlTextReaderPtr
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderForFd (int fd,
|
|
|
|
const char *URL,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlTextReaderPtr
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderForIO (xmlInputReadCallback ioread,
|
|
|
|
xmlInputCloseCallback ioclose,
|
|
|
|
void *ioctx,
|
|
|
|
const char *URL,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
|
|
|
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-10-20 17:07:41 +00:00
|
|
|
xmlReaderNewWalker (xmlTextReaderPtr reader,
|
|
|
|
xmlDocPtr doc);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderNewDoc (xmlTextReaderPtr reader,
|
|
|
|
const xmlChar * cur,
|
|
|
|
const char *URL,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderNewFile (xmlTextReaderPtr reader,
|
|
|
|
const char *filename,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderNewMemory (xmlTextReaderPtr reader,
|
|
|
|
const char *buffer,
|
|
|
|
int size,
|
|
|
|
const char *URL,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderNewFd (xmlTextReaderPtr reader,
|
|
|
|
int fd,
|
|
|
|
const char *URL,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2003-10-18 09:07:46 +00:00
|
|
|
xmlReaderNewIO (xmlTextReaderPtr reader,
|
|
|
|
xmlInputReadCallback ioread,
|
|
|
|
xmlInputCloseCallback ioclose,
|
|
|
|
void *ioctx,
|
|
|
|
const char *URL,
|
|
|
|
const char *encoding,
|
|
|
|
int options);
|
2003-01-16 22:45:08 +00:00
|
|
|
/*
|
|
|
|
* Error handling extensions
|
|
|
|
*/
|
2003-01-20 21:26:34 +00:00
|
|
|
typedef void * xmlTextReaderLocatorPtr;
|
2008-04-11 12:58:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* xmlTextReaderErrorFunc:
|
|
|
|
* @arg: the user argument
|
|
|
|
* @msg: the message
|
|
|
|
* @severity: the severity of the error
|
2017-06-17 16:15:09 +02:00
|
|
|
* @locator: a locator indicating where the error occurred
|
2008-04-11 12:58:43 +00:00
|
|
|
*
|
|
|
|
* Signature of an error callback from a reader parser
|
|
|
|
*/
|
2022-12-08 02:48:27 +01:00
|
|
|
typedef void (*xmlTextReaderErrorFunc)(void *arg,
|
2012-09-11 13:26:36 +08:00
|
|
|
const char *msg,
|
|
|
|
xmlParserSeverities severity,
|
|
|
|
xmlTextReaderLocatorPtr locator);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN int
|
2012-09-11 13:26:36 +08:00
|
|
|
xmlTextReaderLocatorLineNumber(xmlTextReaderLocatorPtr locator);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN xmlChar *
|
2012-09-11 13:26:36 +08:00
|
|
|
xmlTextReaderLocatorBaseURI (xmlTextReaderLocatorPtr locator);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2012-09-11 13:26:36 +08:00
|
|
|
xmlTextReaderSetErrorHandler(xmlTextReaderPtr reader,
|
|
|
|
xmlTextReaderErrorFunc f,
|
|
|
|
void *arg);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2012-09-11 13:26:36 +08:00
|
|
|
xmlTextReaderSetStructuredErrorHandler(xmlTextReaderPtr reader,
|
|
|
|
xmlStructuredErrorFunc f,
|
|
|
|
void *arg);
|
2022-12-08 02:48:27 +01:00
|
|
|
XMLPUBFUN void
|
2012-09-11 13:26:36 +08:00
|
|
|
xmlTextReaderGetErrorHandler(xmlTextReaderPtr reader,
|
|
|
|
xmlTextReaderErrorFunc *f,
|
|
|
|
void **arg);
|
2003-01-16 22:45:08 +00:00
|
|
|
|
2024-06-11 14:47:03 +02:00
|
|
|
XMLPUBFUN void
|
|
|
|
xmlTextReaderSetResourceLoader(xmlTextReaderPtr reader,
|
|
|
|
xmlResourceLoader loader,
|
|
|
|
void *data);
|
|
|
|
|
2008-05-12 12:58:46 +00:00
|
|
|
#endif /* LIBXML_READER_ENABLED */
|
|
|
|
|
2002-12-09 14:13:43 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2004-06-27 12:08:10 +00:00
|
|
|
|
2002-12-09 14:13:43 +00:00
|
|
|
#endif /* __XML_XMLREADER_H__ */
|
|
|
|
|