2001-02-23 17:55:21 +00:00
|
|
|
/*
|
2003-11-18 20:56:51 +00:00
|
|
|
* Summary: interface for the I/O interfaces used by the parser
|
|
|
|
* Description: interface for the I/O interfaces used by the 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_IO_H__
|
|
|
|
#define __XML_IO_H__
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2001-07-23 19:10:52 +00:00
|
|
|
#include <libxml/xmlversion.h>
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Those are the functions and datatypes for the parser input
|
|
|
|
* I/O structures.
|
|
|
|
*/
|
|
|
|
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlInputMatchCallback:
|
|
|
|
* @filename: the filename or URI
|
|
|
|
*
|
|
|
|
* Callback used in the I/O Input API to detect if the current handler
|
|
|
|
* can provide input fonctionnalities for this resource.
|
|
|
|
*
|
|
|
|
* Returns 1 if yes and 0 if another Input module should be used
|
|
|
|
*/
|
2005-07-21 13:24:09 +00:00
|
|
|
typedef int (XMLCALL *xmlInputMatchCallback) (char const *filename);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlInputOpenCallback:
|
|
|
|
* @filename: the filename or URI
|
|
|
|
*
|
|
|
|
* Callback used in the I/O Input API to open the resource
|
|
|
|
*
|
|
|
|
* Returns an Input context or NULL in case or error
|
|
|
|
*/
|
2005-07-21 13:24:09 +00:00
|
|
|
typedef void * (XMLCALL *xmlInputOpenCallback) (char const *filename);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlInputReadCallback:
|
|
|
|
* @context: an Input context
|
|
|
|
* @buffer: the buffer to store data read
|
|
|
|
* @len: the length of the buffer in bytes
|
|
|
|
*
|
|
|
|
* Callback used in the I/O Input API to read the resource
|
|
|
|
*
|
|
|
|
* Returns the number of bytes read or -1 in case of error
|
|
|
|
*/
|
2005-07-21 13:24:09 +00:00
|
|
|
typedef int (XMLCALL *xmlInputReadCallback) (void * context, char * buffer, int len);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlInputCloseCallback:
|
|
|
|
* @context: an Input context
|
|
|
|
*
|
|
|
|
* Callback used in the I/O Input API to close the resource
|
|
|
|
*
|
|
|
|
* Returns 0 or -1 in case of error
|
|
|
|
*/
|
2005-07-21 13:24:09 +00:00
|
|
|
typedef int (XMLCALL *xmlInputCloseCallback) (void * context);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2003-09-29 13:20:24 +00:00
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
2001-02-23 17:55:21 +00:00
|
|
|
/*
|
|
|
|
* Those are the functions and datatypes for the library output
|
|
|
|
* I/O structures.
|
|
|
|
*/
|
|
|
|
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlOutputMatchCallback:
|
|
|
|
* @filename: the filename or URI
|
|
|
|
*
|
|
|
|
* Callback used in the I/O Output API to detect if the current handler
|
|
|
|
* can provide output fonctionnalities for this resource.
|
|
|
|
*
|
|
|
|
* Returns 1 if yes and 0 if another Output module should be used
|
|
|
|
*/
|
2005-07-21 13:24:09 +00:00
|
|
|
typedef int (XMLCALL *xmlOutputMatchCallback) (char const *filename);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlOutputOpenCallback:
|
|
|
|
* @filename: the filename or URI
|
|
|
|
*
|
|
|
|
* Callback used in the I/O Output API to open the resource
|
|
|
|
*
|
|
|
|
* Returns an Output context or NULL in case or error
|
|
|
|
*/
|
2005-07-21 13:24:09 +00:00
|
|
|
typedef void * (XMLCALL *xmlOutputOpenCallback) (char const *filename);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlOutputWriteCallback:
|
|
|
|
* @context: an Output context
|
|
|
|
* @buffer: the buffer of data to write
|
|
|
|
* @len: the length of the buffer in bytes
|
|
|
|
*
|
|
|
|
* Callback used in the I/O Output API to write to the resource
|
|
|
|
*
|
|
|
|
* Returns the number of bytes written or -1 in case of error
|
|
|
|
*/
|
2005-07-21 13:24:09 +00:00
|
|
|
typedef int (XMLCALL *xmlOutputWriteCallback) (void * context, const char * buffer,
|
2001-02-23 17:55:21 +00:00
|
|
|
int len);
|
2002-01-22 18:15:52 +00:00
|
|
|
/**
|
|
|
|
* xmlOutputCloseCallback:
|
|
|
|
* @context: an Output context
|
|
|
|
*
|
|
|
|
* Callback used in the I/O Output API to close the resource
|
|
|
|
*
|
|
|
|
* Returns 0 or -1 in case of error
|
|
|
|
*/
|
2005-07-21 13:24:09 +00:00
|
|
|
typedef int (XMLCALL *xmlOutputCloseCallback) (void * context);
|
2003-09-29 13:20:24 +00:00
|
|
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2002-04-12 21:03:34 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <libxml/globals.h>
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/encoding.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
struct _xmlParserInputBuffer {
|
|
|
|
void* context;
|
|
|
|
xmlInputReadCallback readcallback;
|
|
|
|
xmlInputCloseCallback closecallback;
|
|
|
|
|
|
|
|
xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */
|
|
|
|
|
2012-07-16 14:13:58 +08:00
|
|
|
xmlBufPtr buffer; /* Local buffer encoded in UTF-8 */
|
|
|
|
xmlBufPtr raw; /* if encoder != NULL buffer for raw input */
|
2003-09-08 01:57:30 +00:00
|
|
|
int compressed; /* -1=unknown, 0=not compressed, 1=compressed */
|
2003-10-08 18:58:28 +00:00
|
|
|
int error;
|
2004-02-11 13:25:26 +00:00
|
|
|
unsigned long rawconsumed;/* amount consumed from raw */
|
2002-04-12 21:03:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-09-29 13:20:24 +00:00
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
2001-02-23 17:55:21 +00:00
|
|
|
struct _xmlOutputBuffer {
|
|
|
|
void* context;
|
|
|
|
xmlOutputWriteCallback writecallback;
|
|
|
|
xmlOutputCloseCallback closecallback;
|
|
|
|
|
|
|
|
xmlCharEncodingHandlerPtr encoder; /* I18N conversions to UTF-8 */
|
|
|
|
|
2012-07-16 14:13:58 +08:00
|
|
|
xmlBufPtr buffer; /* Local buffer encoded in UTF-8 or ISOLatin */
|
|
|
|
xmlBufPtr conv; /* if encoder != NULL buffer for output */
|
2001-02-23 17:55:21 +00:00
|
|
|
int written; /* total number of byte written */
|
2003-10-08 18:58:28 +00:00
|
|
|
int error;
|
2001-02-23 17:55:21 +00:00
|
|
|
};
|
2003-09-29 13:20:24 +00:00
|
|
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
2001-02-23 17:55:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Interfaces for input
|
|
|
|
*/
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN void XMLCALL
|
|
|
|
xmlCleanupInputCallbacks (void);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2004-05-08 02:32:07 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlPopInputCallbacks (void);
|
|
|
|
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN void XMLCALL
|
|
|
|
xmlRegisterDefaultInputCallbacks (void);
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlAllocParserInputBuffer (xmlCharEncoding enc);
|
|
|
|
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlParserInputBufferCreateFilename (const char *URI,
|
|
|
|
xmlCharEncoding enc);
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlParserInputBufferCreateFile (FILE *file,
|
|
|
|
xmlCharEncoding enc);
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlParserInputBufferCreateFd (int fd,
|
|
|
|
xmlCharEncoding enc);
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlParserInputBufferCreateMem (const char *mem, int size,
|
|
|
|
xmlCharEncoding enc);
|
2003-09-18 13:35:51 +00:00
|
|
|
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
|
|
|
|
xmlParserInputBufferCreateStatic (const char *mem, int size,
|
|
|
|
xmlCharEncoding enc);
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlParserInputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlParserInputBufferCreateIO (xmlInputReadCallback ioread,
|
|
|
|
xmlInputCloseCallback ioclose,
|
|
|
|
void *ioctx,
|
|
|
|
xmlCharEncoding enc);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlParserInputBufferRead (xmlParserInputBufferPtr in,
|
2001-02-23 17:55:21 +00:00
|
|
|
int len);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlParserInputBufferGrow (xmlParserInputBufferPtr in,
|
2001-02-23 17:55:21 +00:00
|
|
|
int len);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlParserInputBufferPush (xmlParserInputBufferPtr in,
|
2001-02-23 17:55:21 +00:00
|
|
|
int len,
|
|
|
|
const char *buf);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN void XMLCALL
|
|
|
|
xmlFreeParserInputBuffer (xmlParserInputBufferPtr in);
|
|
|
|
XMLPUBFUN char * XMLCALL
|
|
|
|
xmlParserGetDirectory (const char *filename);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlRegisterInputCallbacks (xmlInputMatchCallback matchFunc,
|
2001-03-24 17:00:36 +00:00
|
|
|
xmlInputOpenCallback openFunc,
|
|
|
|
xmlInputReadCallback readFunc,
|
|
|
|
xmlInputCloseCallback closeFunc);
|
2004-06-08 10:16:42 +00:00
|
|
|
|
|
|
|
xmlParserInputBufferPtr
|
|
|
|
__xmlParserInputBufferCreateFilename(const char *URI,
|
|
|
|
xmlCharEncoding enc);
|
|
|
|
|
2003-09-29 13:20:24 +00:00
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
2001-02-23 17:55:21 +00:00
|
|
|
/*
|
|
|
|
* Interfaces for output
|
|
|
|
*/
|
2003-09-29 13:20:24 +00:00
|
|
|
XMLPUBFUN void XMLCALL
|
|
|
|
xmlCleanupOutputCallbacks (void);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN void XMLCALL
|
|
|
|
xmlRegisterDefaultOutputCallbacks(void);
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlOutputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder);
|
|
|
|
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlOutputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlOutputBufferCreateFilename (const char *URI,
|
|
|
|
xmlCharEncodingHandlerPtr encoder,
|
|
|
|
int compression);
|
|
|
|
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlOutputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlOutputBufferCreateFile (FILE *file,
|
|
|
|
xmlCharEncodingHandlerPtr encoder);
|
|
|
|
|
2005-11-09 08:56:26 +00:00
|
|
|
XMLPUBFUN xmlOutputBufferPtr XMLCALL
|
|
|
|
xmlOutputBufferCreateBuffer (xmlBufferPtr buffer,
|
|
|
|
xmlCharEncodingHandlerPtr encoder);
|
|
|
|
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlOutputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlOutputBufferCreateFd (int fd,
|
|
|
|
xmlCharEncodingHandlerPtr encoder);
|
|
|
|
|
2003-08-25 09:05:12 +00:00
|
|
|
XMLPUBFUN xmlOutputBufferPtr XMLCALL
|
2001-02-23 17:55:21 +00:00
|
|
|
xmlOutputBufferCreateIO (xmlOutputWriteCallback iowrite,
|
|
|
|
xmlOutputCloseCallback ioclose,
|
|
|
|
void *ioctx,
|
|
|
|
xmlCharEncodingHandlerPtr encoder);
|
|
|
|
|
2012-08-06 11:16:30 +08:00
|
|
|
/* Couple of APIs to get the output without digging into the buffers */
|
|
|
|
XMLPUBFUN const xmlChar * XMLCALL
|
|
|
|
xmlOutputBufferGetContent (xmlOutputBufferPtr out);
|
|
|
|
XMLPUBFUN size_t XMLCALL
|
|
|
|
xmlOutputBufferGetSize (xmlOutputBufferPtr out);
|
|
|
|
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlOutputBufferWrite (xmlOutputBufferPtr out,
|
2001-02-23 17:55:21 +00:00
|
|
|
int len,
|
|
|
|
const char *buf);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlOutputBufferWriteString (xmlOutputBufferPtr out,
|
2001-02-23 17:55:21 +00:00
|
|
|
const char *str);
|
2004-05-13 14:31:25 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlOutputBufferWriteEscape (xmlOutputBufferPtr out,
|
2004-05-14 03:25:14 +00:00
|
|
|
const xmlChar *str,
|
|
|
|
xmlCharEncodingOutputFunc escaping);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlOutputBufferFlush (xmlOutputBufferPtr out);
|
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlOutputBufferClose (xmlOutputBufferPtr out);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlRegisterOutputCallbacks (xmlOutputMatchCallback matchFunc,
|
2001-03-24 17:00:36 +00:00
|
|
|
xmlOutputOpenCallback openFunc,
|
|
|
|
xmlOutputWriteCallback writeFunc,
|
|
|
|
xmlOutputCloseCallback closeFunc);
|
2004-06-08 10:16:42 +00:00
|
|
|
|
|
|
|
xmlOutputBufferPtr
|
|
|
|
__xmlOutputBufferCreateFilename(const char *URI,
|
|
|
|
xmlCharEncodingHandlerPtr encoder,
|
|
|
|
int compression);
|
2001-02-23 17:55:21 +00:00
|
|
|
|
2001-07-23 19:10:52 +00:00
|
|
|
#ifdef LIBXML_HTTP_ENABLED
|
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
|
|
|
/* This function only exists if HTTP support built into the library */
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN void XMLCALL
|
|
|
|
xmlRegisterHTTPPostCallbacks (void );
|
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_HTTP_ENABLED */
|
|
|
|
|
|
|
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
|
|
|
|
2003-10-19 13:35:37 +00:00
|
|
|
XMLPUBFUN xmlParserInputPtr XMLCALL
|
|
|
|
xmlCheckHTTPInput (xmlParserCtxtPtr ctxt,
|
|
|
|
xmlParserInputPtr ret);
|
2001-07-23 19:10:52 +00:00
|
|
|
|
2001-10-31 17:52:43 +00:00
|
|
|
/*
|
|
|
|
* A predefined entity loader disabling network accesses
|
|
|
|
*/
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN xmlParserInputPtr XMLCALL
|
|
|
|
xmlNoNetExternalEntityLoader (const char *URL,
|
2001-10-31 17:52:43 +00:00
|
|
|
const char *ID,
|
|
|
|
xmlParserCtxtPtr ctxt);
|
|
|
|
|
2003-02-19 14:51:00 +00:00
|
|
|
/*
|
|
|
|
* xmlNormalizeWindowsPath is obsolete, don't use it.
|
|
|
|
* Check xmlCanonicPath in uri.h for a better alternative.
|
|
|
|
*/
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN xmlChar * XMLCALL
|
|
|
|
xmlNormalizeWindowsPath (const xmlChar *path);
|
2002-05-01 18:32:28 +00:00
|
|
|
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlCheckFilename (const char *path);
|
2002-05-01 18:32:28 +00:00
|
|
|
/**
|
|
|
|
* Default 'file://' protocol callbacks
|
|
|
|
*/
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlFileMatch (const char *filename);
|
|
|
|
XMLPUBFUN void * XMLCALL
|
|
|
|
xmlFileOpen (const char *filename);
|
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlFileRead (void * context,
|
2002-05-01 18:32:28 +00:00
|
|
|
char * buffer,
|
|
|
|
int len);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlFileClose (void * context);
|
2002-05-01 18:32:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default 'http://' protocol callbacks
|
|
|
|
*/
|
|
|
|
#ifdef LIBXML_HTTP_ENABLED
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlIOHTTPMatch (const char *filename);
|
|
|
|
XMLPUBFUN void * XMLCALL
|
|
|
|
xmlIOHTTPOpen (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
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
|
|
XMLPUBFUN void * XMLCALL
|
|
|
|
xmlIOHTTPOpenW (const char * post_uri,
|
|
|
|
int compression );
|
|
|
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlIOHTTPRead (void * context,
|
2002-05-01 18:32:28 +00:00
|
|
|
char * buffer,
|
|
|
|
int len);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlIOHTTPClose (void * context);
|
2002-05-01 18:32:28 +00:00
|
|
|
#endif /* LIBXML_HTTP_ENABLED */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default 'ftp://' protocol callbacks
|
|
|
|
*/
|
|
|
|
#ifdef LIBXML_FTP_ENABLED
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlIOFTPMatch (const char *filename);
|
|
|
|
XMLPUBFUN void * XMLCALL
|
|
|
|
xmlIOFTPOpen (const char *filename);
|
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlIOFTPRead (void * context,
|
2002-05-01 18:32:28 +00:00
|
|
|
char * buffer,
|
|
|
|
int len);
|
2003-08-27 08:59:58 +00:00
|
|
|
XMLPUBFUN int XMLCALL
|
|
|
|
xmlIOFTPClose (void * context);
|
2002-05-01 18:32:28 +00:00
|
|
|
#endif /* LIBXML_FTP_ENABLED */
|
|
|
|
|
2001-02-23 17:55:21 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __XML_IO_H__ */
|