ReactOS
0.4.15-dev-4594-g505ac65
|
#include <stdarg.h>
#include <libxml/xmlversion.h>
#include <libxml/tree.h>
#include <libxml/dict.h>
#include <libxml/hash.h>
#include <libxml/valid.h>
#include <libxml/entities.h>
#include <libxml/xmlerror.h>
#include <libxml/xmlstring.h>
#include <libxml/encoding.h>
#include <libxml/xmlIO.h>
#include <libxml/globals.h>
Go to the source code of this file.
Classes | |
struct | _xmlParserInput |
struct | _xmlParserNodeInfo |
struct | _xmlParserNodeInfoSeq |
struct | _xmlParserCtxt |
struct | _xmlSAXLocator |
struct | _xmlSAXHandler |
struct | _xmlSAXHandlerV1 |
Macros | |
#define | XML_DEFAULT_VERSION "1.0" |
#define | XML_DETECT_IDS 2 |
#define | XML_COMPLETE_ATTRS 4 |
#define | XML_SKIP_IDS 8 |
Typedefs | |
typedef void(* | xmlParserInputDeallocate) (xmlChar *str) |
typedef struct _xmlParserNodeInfo | xmlParserNodeInfo |
typedef xmlParserNodeInfo * | xmlParserNodeInfoPtr |
typedef struct _xmlParserNodeInfoSeq | xmlParserNodeInfoSeq |
typedef xmlParserNodeInfoSeq * | xmlParserNodeInfoSeqPtr |
typedef struct _xmlStartTag | xmlStartTag |
typedef xmlParserInputPtr(* | resolveEntitySAXFunc) (void *ctx, const xmlChar *publicId, const xmlChar *systemId) |
: the root element name | |
externalSubsetSAXFunc: @ctx: the user data (XML parser context) @ExternalID: the external ID @SystemID: the SYSTEM ID (e.g. filename or URL) Callback on external subset declaration. | |
typedef void(* | internalSubsetSAXFunc) (void *ctx, const xmlChar *name, const xmlChar *ExternalID, const xmlChar *SystemID) |
typedef void(* | externalSubsetSAXFunc) (void *ctx, const xmlChar *name, const xmlChar *ExternalID, const xmlChar *SystemID) |
: The entity name | |
getParameterEntitySAXFunc: @ctx: the user data (XML parser context) Get a parameter entity by name. Returns the xmlEntityPtr if found. | |
typedef xmlEntityPtr(* | getEntitySAXFunc) (void *ctx, const xmlChar *name) |
typedef xmlEntityPtr(* | getParameterEntitySAXFunc) (void *ctx, const xmlChar *name) |
: The name of the notation | |
notationDeclSAXFunc: @ctx: the user data (XML parser context) @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) |
typedef void(* | attributeDeclSAXFunc) (void *ctx, const xmlChar *elem, const xmlChar *fullname, int type, int def, const xmlChar *defaultValue, xmlEnumerationPtr tree) |
: The element name | |
endElementSAXFunc: @ctx: the user data (XML parser context) Called when the end of an element has been detected. | |
typedef void(* | elementDeclSAXFunc) (void *ctx, const xmlChar *name, int type, xmlElementContentPtr content) |
typedef void(* | endElementSAXFunc) (void *ctx, const xmlChar *name) |
: The name of the entity | |
unparsedEntityDeclSAXFunc: @ctx: the user data (XML parser context) @publicId: The public ID of the entity @systemId: The system ID of the entity @notationName: the name of the notation What to do when an unparsed entity declaration is parsed. | |
typedef void(* | unparsedEntityDeclSAXFunc) (void *ctx, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName) |
typedef void(* | setDocumentLocatorSAXFunc) (void *ctx, xmlSAXLocatorPtr loc) |
typedef void(* | startDocumentSAXFunc) (void *ctx) |
typedef void(* | endDocumentSAXFunc) (void *ctx) |
: The element name, including namespace prefix | |
startElementSAXFunc: @ctx: the user data (XML parser context) @atts: An array of name/value attributes pairs, NULL terminated Called when an opening tag has been processed. | |
typedef void(* | startElementSAXFunc) (void *ctx, const xmlChar *name, const xmlChar **atts) |
: The attribute name, including namespace prefix | |
attributeSAXFunc: @ctx: the user data (XML parser context) @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) |
#define XML_COMPLETE_ATTRS 4 |
#define XML_DEFAULT_VERSION "1.0" |
#define XML_DETECT_IDS 2 |
#define XML_SAX2_MAGIC 0xDEEDBEAF |
#define XML_SKIP_IDS 8 |
typedef void(* endElementNsSAX2Func) (void *ctx, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI) |
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. It provides the namespace information for the element.
fatalErrorSAXFunc: @ctx: an XML parser context @msg: the message to display/transmit ...: extra parameters for the message display
Display and format fatal error messages, callback. Note: so far fatalError() SAX callbacks are not used, error() get all the callbacks for errors.
xmlWarningMsg: @ctxt: an XML parser context @error: the error number @msg: the error message @str1: extra data @str2: extra data
Handle a warning.
xmlValidityError: @ctxt: an XML parser context @error: the error number @msg: the error message @str1: extra data
Handle a validity error.
xmlFatalErrMsgInt: @ctxt: an XML parser context @error: the error number @msg: the error message @val: an integer value
Handle a fatal parser error, i.e. violating Well-Formedness constraints
xmlFatalErrMsgStrIntStr: @ctxt: an XML parser context @error: the error number @msg: the error message @str1: an string info @val: an integer value @str2: an string info
Handle a fatal parser error, i.e. violating Well-Formedness constraints
xmlFatalErrMsgStr: @ctxt: an XML parser context @error: the error number @msg: the error message @val: a string value
Handle a fatal parser error, i.e. violating Well-Formedness constraints
xmlErrMsgStr: @ctxt: an XML parser context @error: the error number @msg: the error message @val: a string value
Handle a non fatal parser error
xmlNsErr: @ctxt: an XML parser context @error: the error number @msg: the message @info1: extra information string @info2: extra information string
Handle a fatal parser error, i.e. violating Well-Formedness constraints
xmlNsWarn @ctxt: an XML parser context @error: the error number @msg: the message @info1: extra information string @info2: extra information string
Handle a namespace warning error
xmlFatalErrMsg: @ctxt: an XML parser context @error: the error number @msg: the error message @str1: an error string @str2: an error string
Handle a fatal parser error, i.e. violating Well-Formedness constraints
xmlWarnMsg: @ctxt: an XML parser context @error: the error number @msg: the error message @str1: an error string @str2: an error string
Handle a parser warning
xmlNsErrMsg: @ctxt: an XML parser context @error: the error number @msg: the error message @str1: an error string @str2: an error string
Handle a namespace error
xmlNsWarnMsg: @ctxt: an XML parser context @error: the error number @msg: the error message @str1: an error string
Handle a namespace warning
xmlHTMLWarning: @ctx: an XML parser context @msg: the message to display/transmit ...: extra parameters for the message display
Display and format a warning messages, gives file, line, position and extra parameters.
xmlHTMLValidityError: @ctx: an XML parser context @msg: the message to display/transmit ...: extra parameters for the message display
Display and format an validity error messages, gives file, line, position and extra parameters.
xmlHTMLValidityWarning: @ctx: an XML parser context @msg: the message to display/transmit ...: extra parameters for the message display
Display and format a validity warning messages, gives file, line, position and extra parameters.
warningDebug: @ctxt: An XML parser context @msg: the message to display/transmit ...: extra parameters for the message display
Display and format a warning messages, gives file, line, position and extra parameters.
errorDebug: @ctxt: An XML parser context @msg: the message to display/transmit ...: extra parameters for the message display
Display and format a error messages, gives file, line, position and extra parameters.
fatalErrorDebug: @ctxt: An XML parser context @msg: the message to display/transmit ...: extra parameters for the message display
Display and format a fatalError messages, gives file, line, position and extra parameters.
typedef xmlParserInputPtr(* resolveEntitySAXFunc) (void *ctx, const xmlChar *publicId, const xmlChar *systemId) |
xmlSAXHandler:
A SAX handler is bunch of callbacks called by the parser when processing of the input generate data or structure information.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:
Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour.
typedef void(* setDocumentLocatorSAXFunc) (void *ctx, xmlSAXLocatorPtr loc) |
typedef void(* startElementNsSAX2Func) (void *ctx, const xmlChar *localname, const xmlChar *prefix, const xmlChar *URI, int nb_namespaces, const xmlChar **namespaces, int nb_attributes, int nb_defaulted, const xmlChar **attributes) |
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 @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.
SAX2 callback when an element start has been detected by the parser. It provides the namespace information for the element, as well as the new namespace declarations on the element.
typedef xmlParserInputPtr(* xmlExternalEntityLoader) (const char *URL, const char *ID, xmlParserCtxtPtr context) |
xmlParserInput:
An xmlParserInput is an input flow for the XML processor. Each entity parsed is associated an xmlParserInput (except the few predefined ones). This is the case both for internal entities
Callback for freeing some parser input allocations.
typedef xmlParserNodeInfo* xmlParserNodeInfoPtr |
typedef struct _xmlSAXHandlerV1 xmlSAXHandlerV1 |
typedef xmlSAXHandlerV1* xmlSAXHandlerV1Ptr |
typedef struct _xmlStartTag xmlStartTag |
xmlFeature:
Used to examine the existence of features that can be enabled or disabled at compile-time. They used to be called XML_FEATURE_xxx but this clashed with Expat
Definition at line 1200 of file parser.h.
xmlParserInputState:
The parser is now working also as a state based parser. The recursive one use the state info for entities processing.
Definition at line 112 of file parser.h.
xmlParserMode:
A parser can operate in various modes
Enumerator | |
---|---|
XML_PARSE_UNKNOWN | |
XML_PARSE_DOM | |
XML_PARSE_SAX | |
XML_PARSE_PUSH_DOM | |
XML_PARSE_PUSH_SAX | |
XML_PARSE_READER |
Definition at line 163 of file parser.h.
xmlParserOption:
This is the set of XML parser options that can be passed down to the xmlReadDoc() and similar calls.
Definition at line 1091 of file parser.h.
XMLPUBFUN long XMLCALL xmlByteConsumed | ( | xmlParserCtxtPtr | ctxt | ) |
xmlByteConsumed: @ctxt: an XML parser context
This function provides the current index of the parser relative to the start of the current entity. This function is computed in bytes from the beginning starting at zero and finishing at the size in byte of the file if parsing a file. The function is of constant cost if the input is UTF-8 but can be costly if run on non-UTF-8 input.
Returns the index in bytes from the beginning of the entity or -1 in case the index could not be computed.
Definition at line 2863 of file encoding.c.
xmlCleanupParser:
This function name is somewhat misleading. It does not clean up parser state, it cleans up memory allocated by the library itself. It is a cleanup function for the XML library. It tries to reclaim all related global memory allocated for the library processing. It doesn't deallocate any document related memory. One should call xmlCleanupParser() only when the process has finished using the library and all XML/HTML documents built with it. See also xmlInitParser() which has the opposite function of preparing the library for operations.
WARNING: if your application is multithreaded or has plugin support calling this may crash the application if another thread or a plugin is still using libxml2. It's sometimes very hard to guess if libxml2 is in use in the application, some libraries or plugins may use it without notice. In case of doubt abstain from calling this function or do it just before calling exit() to avoid leak reports from valgrind !
Definition at line 14732 of file parser.c.
Referenced by DllMain(), main(), and xmlInitParser().
XMLPUBFUN void XMLCALL xmlClearNodeInfoSeq | ( | xmlParserNodeInfoSeqPtr | seq | ) |
xmlClearNodeInfoSeq: @seq: a node info sequence pointer
– Clear (release memory and reinitialize) node info sequence
Definition at line 1950 of file parserInternals.c.
Referenced by xmlClearParserCtxt().
XMLPUBFUN void XMLCALL xmlClearParserCtxt | ( | xmlParserCtxtPtr | ctxt | ) |
xmlClearParserCtxt: @ctxt: an XML parser context
Clear (release owned resources) and reinitialize a parser context
Definition at line 1891 of file parserInternals.c.
XMLPUBFUN xmlParserCtxtPtr XMLCALL xmlCreateDocParserCtxt | ( | const xmlChar * | cur | ) |
xmlCreateDocParserCtxt: @cur: a pointer to an array of xmlChar
Creates a parser context for an XML in-memory document.
Returns the new parser context or NULL
Definition at line 14536 of file parser.c.
Referenced by xmlReadDoc().
XMLPUBFUN xmlParserCtxtPtr XMLCALL xmlCreateIOParserCtxt | ( | xmlSAXHandlerPtr | sax, |
void * | user_data, | ||
xmlInputReadCallback | ioread, | ||
xmlInputCloseCallback | ioclose, | ||
void * | ioctx, | ||
xmlCharEncoding | enc | ||
) |
xmlCreateIOParserCtxt: @sax: a SAX handler @user_data: The user data returned on SAX callbacks @ioread: an I/O read function @ioclose: an I/O close function @ioctx: an I/O handler @enc: the charset encoding if known
Create a parser context for using the XML parser with an existing I/O stream
Returns the new parser context or NULL
Definition at line 12600 of file parser.c.
XMLPUBFUN xmlDocPtr XMLCALL xmlCtxtReadDoc | ( | xmlParserCtxtPtr | ctxt, |
const xmlChar * | cur, | ||
const char * | URL, | ||
const char * | encoding, | ||
int | options | ||
) |
xmlCtxtReadDoc: @ctxt: an XML parser context @cur: a pointer to a zero terminated string @URL: the base URL to use for the document @encoding: the document encoding, or NULL @options: a combination of xmlParserOption
parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context
Returns the resulting document tree
Definition at line 15360 of file parser.c.
XMLPUBFUN xmlDocPtr XMLCALL xmlCtxtReadFd | ( | xmlParserCtxtPtr | ctxt, |
int | fd, | ||
const char * | URL, | ||
const char * | encoding, | ||
int | options | ||
) |
xmlCtxtReadFd: @ctxt: an XML parser context @fd: an open file descriptor @URL: the base URL to use for the document @encoding: the document encoding, or NULL @options: a combination of xmlParserOption
parse an XML from a file descriptor and build a tree. This reuses the existing @ctxt parser context NOTE that the file descriptor will not be closed when the reader is closed or reset.
Returns the resulting document tree
Definition at line 15475 of file parser.c.
XMLPUBFUN xmlDocPtr XMLCALL xmlCtxtReadFile | ( | xmlParserCtxtPtr | ctxt, |
const char * | filename, | ||
const char * | encoding, | ||
int | options | ||
) |
xmlCtxtReadFile: @ctxt: an XML parser context @filename: a file or URL @encoding: the document encoding, or NULL @options: a combination of xmlParserOption
parse an XML file from the filesystem or the network. This reuses the existing @ctxt parser context
Returns the resulting document tree
Definition at line 15394 of file parser.c.
Referenced by parseAndPrintFile().
XMLPUBFUN xmlDocPtr XMLCALL xmlCtxtReadIO | ( | xmlParserCtxtPtr | ctxt, |
xmlInputReadCallback | ioread, | ||
xmlInputCloseCallback | ioclose, | ||
void * | ioctx, | ||
const char * | URL, | ||
const char * | encoding, | ||
int | options | ||
) |
xmlCtxtReadIO: @ctxt: an XML parser context @ioread: an I/O read function @ioclose: an I/O close function @ioctx: an I/O handler @URL: the base URL to use for the document @encoding: the document encoding, or NULL @options: a combination of xmlParserOption
parse an XML document from I/O functions and source and build a tree. This reuses the existing @ctxt parser context
Returns the resulting document tree
Definition at line 15519 of file parser.c.
Referenced by parseAndPrintFile().
XMLPUBFUN xmlDocPtr XMLCALL xmlCtxtReadMemory | ( | xmlParserCtxtPtr | ctxt, |
const char * | buffer, | ||
int | size, | ||
const char * | URL, | ||
const char * | encoding, | ||
int | options | ||
) |
xmlCtxtReadMemory: @ctxt: an XML parser context @buffer: a pointer to a char array @size: the size of the array @URL: the base URL to use for the document @encoding: the document encoding, or NULL @options: a combination of xmlParserOption
parse an XML in-memory document and build a tree. This reuses the existing @ctxt parser context
Returns the resulting document tree
Definition at line 15430 of file parser.c.
Referenced by parseAndPrintFile().
XMLPUBFUN void XMLCALL xmlCtxtReset | ( | xmlParserCtxtPtr | ctxt | ) |
xmlCtxtReset: @ctxt: an XML parser context
Reset a parser context
Definition at line 14795 of file parser.c.
Referenced by xmlClearParserCtxt(), xmlCtxtReadDoc(), xmlCtxtReadFd(), xmlCtxtReadFile(), xmlCtxtReadIO(), xmlCtxtReadMemory(), and xmlCtxtResetPush().
XMLPUBFUN int XMLCALL xmlCtxtResetPush | ( | xmlParserCtxtPtr | ctxt, |
const char * | chunk, | ||
int | size, | ||
const char * | filename, | ||
const char * | encoding | ||
) |
xmlCtxtResetPush: @ctxt: an XML parser context @chunk: a pointer to an array of chars @size: number of chars in the array @filename: an optional file name or URI @encoding: the document encoding, or NULL
Reset a push parser context
Returns 0 in case of success and 1 in case of error
Definition at line 14899 of file parser.c.
XMLPUBFUN int XMLCALL xmlCtxtUseOptions | ( | xmlParserCtxtPtr | ctxt, |
int | options | ||
) |
xmlCtxtUseOptions: @ctxt: an XML parser context @options: a combination of xmlParserOption
Applies the options to the parser context
Returns 0 in case of success, the set of unknown or unimplemented options in case of error.
Definition at line 15133 of file parser.c.
Referenced by parseAndPrintFile(), and xsltDocDefaultLoaderFunc().
XMLPUBFUN void XMLCALL xmlFreeParserCtxt | ( | xmlParserCtxtPtr | ctxt | ) |
xmlFreeParserCtxt: @ctxt: an XML parser context
Free all the memory used by a parser context. However the parsed document in ctxt->myDoc is not freed.
Definition at line 1774 of file parserInternals.c.
Referenced by main(), parseAndPrintFile(), testSAX(), xmlCreateEntityParserCtxtInternal(), xmlCreateIOParserCtxt(), xmlCreateMemoryParserCtxt(), xmlCreateURLParserCtxt(), xmlDoRead(), xmlNewParserCtxt(), xmlParseBalancedChunkMemoryInternal(), xmlParseExternalEntityPrivate(), xmlParseInNodeContext(), xmlReadFd(), xmlReadIO(), and xsltDocDefaultLoaderFunc().
XMLPUBFUN xmlExternalEntityLoader XMLCALL xmlGetExternalEntityLoader | ( | void | ) |
Referenced by main().
XMLPUBFUN int XMLCALL xmlHasFeature | ( | xmlFeature | feature | ) |
xmlHasFeature: @feature: the feature to be examined
Examines if the library has been compiled with a given feature.
Returns a non-zero value if the feature exist, otherwise zero. Returns zero (0) if the feature does not exist or an unknown unknown feature is requested, non-zero otherwise.
Definition at line 885 of file parser.c.
Referenced by showVersion().
XMLPUBFUN void XMLCALL xmlInitNodeInfoSeq | ( | xmlParserNodeInfoSeqPtr | seq | ) |
xmlInitNodeInfoSeq: @seq: a node info sequence pointer
– Initialize (set to initial state) node info sequence
Definition at line 1933 of file parserInternals.c.
Referenced by xmlClearNodeInfoSeq(), xmlCtxtReset(), and xmlInitParserCtxt().
xmlInitParser:
Initialization function for the XML parser. This is not reentrant. Call once before processing in case of use in multithreaded programs.
Definition at line 14670 of file parser.c.
Referenced by DllMain(), xmlCheckVersion(), xmlCtxtReadDoc(), xmlCtxtReadFd(), xmlCtxtReadFile(), xmlCtxtReadIO(), xmlCtxtReadMemory(), xmlParseDocument(), xmlReadDoc(), xmlReadFd(), xmlReadFile(), xmlReadIO(), and xmlReadMemory().
XMLPUBFUN int XMLCALL xmlInitParserCtxt | ( | xmlParserCtxtPtr | ctxt | ) |
xmlInitParserCtxt: @ctxt: an XML parser context
Initialize a parser context
Returns 0 in case of success and -1 in case of error
Definition at line 1589 of file parserInternals.c.
Referenced by xmlNewParserCtxt().
xmlKeepBlanksDefault: @val: int 0 or 1
Set and return the previous value for default blanks text nodes support. The 1.x version of the parser used an heuristic to try to detect ignorable white spaces. As a result the SAX callback was generating xmlSAX2IgnorableWhitespace() callbacks instead of characters() one, and when using the DOM output text nodes containing those blanks were not generated. The 2.x and later version will switch to the XML standard way and ignorableWhitespace() are only generated when running the parser in validating mode and when the current element doesn't allow CDATA or mixed content. This function is provided as a way to force the standard behavior on 1.X libs and to switch back to the old mode for compatibility when running 1.X client code on 2.X . Upgrade of 1.X code should be done by using xmlIsBlankNode() commodity function to detect the "empty" nodes generated. This value also affect autogeneration of indentation when saving code if blanks sections are kept, indentation is not generated.
Returns the last value for 0 for no substitution, 1 for substitution.
Definition at line 2155 of file parserInternals.c.
Referenced by main().
xmlLineNumbersDefault: @val: int 0 or 1
Set and return the previous value for enabling line numbers in elements contents. This may break on old application and is turned off by default.
Returns the last value for 0 for no substitution, 1 for substitution.
Definition at line 2101 of file parserInternals.c.
Referenced by main().
XMLPUBFUN xmlParserInputPtr XMLCALL xmlLoadExternalEntity | ( | const char * | URL, |
const char * | ID, | ||
xmlParserCtxtPtr | ctxt | ||
) |
XMLPUBFUN xmlParserInputPtr XMLCALL xmlNewIOInputStream | ( | xmlParserCtxtPtr | ctxt, |
xmlParserInputBufferPtr | input, | ||
xmlCharEncoding | enc | ||
) |
xmlNewIOInputStream: @ctxt: an XML parser context @input: an I/O Input @enc: the charset encoding if known
Create a new input stream structure encapsulating the @input into a stream suitable for the parser.
Returns the new input stream or NULL
Definition at line 1398 of file parserInternals.c.
Referenced by testSAX(), xmlCreateIOParserCtxt(), xmlCtxtReadFd(), xmlCtxtReadIO(), xmlCtxtReadMemory(), xmlReadFd(), and xmlReadIO().
XMLPUBFUN xmlParserCtxtPtr XMLCALL xmlNewParserCtxt | ( | void | ) |
xmlNewParserCtxt:
Allocate and initialize a new parser context.
Returns the xmlParserCtxtPtr or NULL
Definition at line 1860 of file parserInternals.c.
Referenced by main(), parseAndPrintFile(), testSAX(), xmlCreateEntityParserCtxtInternal(), xmlCreateIOParserCtxt(), xmlCreateMemoryParserCtxt(), xmlCreateURLParserCtxt(), xmlReadFd(), xmlReadIO(), and xsltDocDefaultLoaderFunc().
XMLPUBFUN int XMLCALL xmlParseCtxtExternalEntity | ( | xmlParserCtxtPtr | ctx, |
const xmlChar * | URL, | ||
const xmlChar * | ID, | ||
xmlNodePtr * | lst | ||
) |
xmlParseCtxtExternalEntity: @ctx: the existing parsing context @URL: the URL for the entity to load @ID: the System ID for the entity to load @lst: the return value for the set of parsed nodes
Parse an external general entity within an existing parsing context An external general parsed entity is well-formed if it matches the production labeled extParsedEnt.
[78] extParsedEnt ::= TextDecl? content
Returns 0 if the entity is well formed, -1 in case of args problem and the parser error code otherwise
Definition at line 12962 of file parser.c.
XMLPUBFUN int XMLCALL xmlParseDocument | ( | xmlParserCtxtPtr | ctxt | ) |
xmlParseDocument: @ctxt: an XML parser context
parse an XML document (and build a tree if using the standard SAX interface).
[1] document ::= prolog element Misc*
[22] prolog ::= XMLDecl? Misc* (doctypedecl Misc*)?
Returns 0, -1 in case of error. the parser context is augmented as a result of the parsing.
Definition at line 10689 of file parser.c.
Referenced by testSAX(), xmlDoRead(), and xsltDocDefaultLoaderFunc().
XMLPUBFUN int XMLCALL xmlParseExtParsedEnt | ( | xmlParserCtxtPtr | ctxt | ) |
xmlParseExtParsedEnt: @ctxt: an XML parser context
parse a general parsed entity An external general parsed entity is well-formed if it matches the production labeled extParsedEnt.
[78] extParsedEnt ::= TextDecl? content
Returns 0, -1 in case of error. the parser context is augmented as a result of the parsing.
Definition at line 10882 of file parser.c.
XMLPUBFUN xmlParserErrors XMLCALL xmlParseInNodeContext | ( | xmlNodePtr | node, |
const char * | data, | ||
int | datalen, | ||
int | options, | ||
xmlNodePtr * | lst | ||
) |
xmlParseInNodeContext: @node: the context node @data: the input string @datalen: the input string length in bytes @options: a combination of xmlParserOption @lst: the return value for the set of parsed nodes
Parse a well-balanced chunk of an XML document within the context (DTD, namespaces, etc ...) of the given node.
The allowed sequence for the data is a Well Balanced Chunk defined by the content production in the XML grammar:
[43] content ::= (element | CharData | Reference | CDSect | PI | Comment)*
Returns XML_ERR_OK if the chunk is well balanced, and the parser error code otherwise
Definition at line 13490 of file parser.c.
XMLPUBFUN void XMLCALL xmlParserAddNodeInfo | ( | xmlParserCtxtPtr | ctxt, |
const xmlParserNodeInfoPtr | info | ||
) |
xmlParserAddNodeInfo: @ctxt: an XML parser context @info: a node info sequence pointer
Insert node info record into the sorted sequence
Definition at line 2010 of file parserInternals.c.
Referenced by xmlParseElementEnd(), xmlParseElementStart(), and xmlSAX2EndElementNs().
XMLPUBFUN const xmlParserNodeInfo* XMLCALL xmlParserFindNodeInfo | ( | const xmlParserCtxtPtr | ctx, |
const xmlNodePtr | node | ||
) |
xmlParserFindNodeInfo: @ctx: an XML parser context @node: an XML node within the tree
Find the parser node info struct for a given node
Returns an xmlParserNodeInfo block pointer or NULL
Definition at line 1910 of file parserInternals.c.
XMLPUBFUN unsigned long XMLCALL xmlParserFindNodeInfoIndex | ( | const xmlParserNodeInfoSeqPtr | seq, |
const xmlNodePtr | node | ||
) |
xmlParserFindNodeInfoIndex: @seq: a node info sequence pointer @node: an XML node pointer
xmlParserFindNodeInfoIndex : Find the index that the info record for the given node is or should be at in a sorted sequence
Returns a long indicating the position of the record
Definition at line 1971 of file parserInternals.c.
Referenced by xmlParserAddNodeInfo(), and xmlParserFindNodeInfo().
XMLPUBFUN int XMLCALL xmlParserInputGrow | ( | xmlParserInputPtr | in, |
int | len | ||
) |
xmlParserInputGrow: @in: an XML parser input @len: an indicative size for the lookahead
This function increase the input for the parser. It tries to preserve pointers to the input buffer, and keep already read data
Returns the amount of char read, or -1 in case of error, 0 indicate the end of this entity
Definition at line 300 of file parserInternals.c.
Referenced by xmlCurrentChar(), xmlGROW(), xmlNextChar(), xmlPopInput(), xmlSHRINK(), and xmlSkipBlankChars().
XMLPUBFUN int XMLCALL xmlParserInputRead | ( | xmlParserInputPtr in | ATTRIBUTE_UNUSED, |
int len | ATTRIBUTE_UNUSED | ||
) |
xmlParserInputRead: @in: an XML parser input @len: an indicative size for the lookahead
This function was internal and is deprecated.
Returns -1 as this is an error to use it.
Definition at line 284 of file parserInternals.c.
xmlPedanticParserDefault: @val: int 0 or 1
Set and return the previous value for enabling pedantic warnings.
Returns the last value for 0 for no substitution, 1 for substitution.
Definition at line 2083 of file parserInternals.c.
Referenced by main().
XMLPUBFUN xmlDocPtr XMLCALL xmlReadDoc | ( | const xmlChar * | cur, |
const char * | URL, | ||
const char * | encoding, | ||
int | options | ||
) |
xmlReadDoc: @cur: a pointer to a zero terminated string @URL: the base URL to use for the document @encoding: the document encoding, or NULL @options: a combination of xmlParserOption
parse an XML in-memory document and build a tree.
Returns the resulting document tree
Definition at line 15196 of file parser.c.
XMLPUBFUN xmlDocPtr XMLCALL xmlReadFd | ( | int | fd, |
const char * | URL, | ||
const char * | encoding, | ||
int | options | ||
) |
xmlReadFd: @fd: an open file descriptor @URL: the base URL to use for the document @encoding: the document encoding, or NULL @options: a combination of xmlParserOption
parse an XML from a file descriptor and build a tree. NOTE that the file descriptor will not be closed when the reader is closed or reset.
Returns the resulting document tree
Definition at line 15270 of file parser.c.