2002-02-03 15:08:05 +00:00
|
|
|
#include <Python.h>
|
2002-01-30 16:37:32 +00:00
|
|
|
#include <libxml/tree.h>
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/parserInternals.h>
|
|
|
|
#include <libxml/catalog.h>
|
|
|
|
#include <libxml/threads.h>
|
|
|
|
#include <libxml/nanoftp.h>
|
|
|
|
#include <libxml/nanohttp.h>
|
|
|
|
#include <libxml/uri.h>
|
|
|
|
#include <libxml/xpath.h>
|
|
|
|
#include <libxml/xpathInternals.h>
|
|
|
|
#include <libxml/debugXML.h>
|
2002-01-30 20:52:23 +00:00
|
|
|
#include <libxml/HTMLparser.h>
|
|
|
|
#include <libxml/HTMLtree.h>
|
|
|
|
#include <libxml/xinclude.h>
|
2002-01-31 20:29:19 +00:00
|
|
|
#include <libxml/xpointer.h>
|
2002-09-25 22:25:35 +00:00
|
|
|
#include <libxml/xmlunicode.h>
|
|
|
|
#include <libxml/xmlregexp.h>
|
|
|
|
#include <libxml/xmlautomata.h>
|
2002-01-30 20:52:23 +00:00
|
|
|
|
2002-02-04 00:17:01 +00:00
|
|
|
#define PyxmlNode_Get(v) (((v) == Py_None) ? NULL : \
|
|
|
|
(((PyxmlNode_Object *)(v))->obj))
|
2002-01-30 20:52:23 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
xmlNodePtr obj;
|
|
|
|
} PyxmlNode_Object;
|
2002-01-30 16:37:32 +00:00
|
|
|
|
2002-02-04 00:17:01 +00:00
|
|
|
#define PyxmlXPathContext_Get(v) (((v) == Py_None) ? NULL : \
|
|
|
|
(((PyxmlXPathContext_Object *)(v))->obj))
|
|
|
|
|
2002-01-31 20:29:19 +00:00
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
xmlXPathContextPtr obj;
|
|
|
|
} PyxmlXPathContext_Object;
|
|
|
|
|
2002-02-07 16:39:11 +00:00
|
|
|
#define PyxmlXPathParserContext_Get(v) (((v) == Py_None) ? NULL : \
|
|
|
|
(((PyxmlXPathParserContext_Object *)(v))->obj))
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
xmlXPathParserContextPtr obj;
|
|
|
|
} PyxmlXPathParserContext_Object;
|
|
|
|
|
2002-02-04 00:17:01 +00:00
|
|
|
#define PyparserCtxt_Get(v) (((v) == Py_None) ? NULL : \
|
|
|
|
(((PyparserCtxt_Object *)(v))->obj))
|
|
|
|
|
2002-02-03 15:08:05 +00:00
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
xmlParserCtxtPtr obj;
|
|
|
|
} PyparserCtxt_Object;
|
|
|
|
|
2002-02-07 16:39:11 +00:00
|
|
|
#define Pycatalog_Get(v) (((v) == Py_None) ? NULL : \
|
|
|
|
(((Pycatalog_Object *)(v))->obj))
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
xmlCatalogPtr obj;
|
|
|
|
} Pycatalog_Object;
|
|
|
|
|
2002-09-25 22:25:35 +00:00
|
|
|
#define PyxmlReg_Get(v) (((v) == Py_None) ? NULL : \
|
|
|
|
(((PyxmlReg_Object *)(v))->obj))
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
xmlRegexpPtr obj;
|
|
|
|
} PyxmlReg_Object;
|
|
|
|
|
2002-02-23 10:10:33 +00:00
|
|
|
#define PyURI_Get(v) (((v) == Py_None) ? NULL : \
|
|
|
|
(((PyURI_Object *)(v))->obj))
|
|
|
|
|
2002-09-12 15:00:57 +00:00
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
xmlOutputBufferPtr obj;
|
|
|
|
} PyoutputBuffer_Object;
|
|
|
|
|
|
|
|
#define PyoutputBuffer_Get(v) (((v) == Py_None) ? NULL : \
|
|
|
|
(((PyURI_Object *)(v))->obj))
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
xmlParserInputBufferPtr obj;
|
|
|
|
} PyinputBuffer_Object;
|
|
|
|
|
|
|
|
#define PyinputBuffer_Get(v) (((v) == Py_None) ? NULL : \
|
|
|
|
(((PyURI_Object *)(v))->obj))
|
|
|
|
|
2002-02-23 10:10:33 +00:00
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
xmlURIPtr obj;
|
|
|
|
} PyURI_Object;
|
|
|
|
|
|
|
|
/* FILE * have their own internal representation */
|
2002-02-07 16:39:11 +00:00
|
|
|
#define PyFile_Get(v) (((v) == Py_None) ? NULL : \
|
2002-09-25 22:25:35 +00:00
|
|
|
(PyFile_Check(v) ? (PyFile_AsFile(v)) : stdout))
|
2002-02-07 16:39:11 +00:00
|
|
|
|
2002-02-23 10:10:33 +00:00
|
|
|
|
2002-01-30 16:37:32 +00:00
|
|
|
PyObject * libxml_intWrap(int val);
|
2002-02-03 20:13:06 +00:00
|
|
|
PyObject * libxml_longWrap(long val);
|
2002-01-31 20:29:19 +00:00
|
|
|
PyObject * libxml_xmlCharPtrWrap(xmlChar *str);
|
|
|
|
PyObject * libxml_constxmlCharPtrWrap(const xmlChar *str);
|
|
|
|
PyObject * libxml_charPtrWrap(char *str);
|
|
|
|
PyObject * libxml_constcharPtrWrap(const char *str);
|
2002-02-08 13:28:40 +00:00
|
|
|
PyObject * libxml_charPtrConstWrap(const char *str);
|
|
|
|
PyObject * libxml_xmlCharPtrConstWrap(const xmlChar *str);
|
2002-01-30 16:37:32 +00:00
|
|
|
PyObject * libxml_xmlDocPtrWrap(xmlDocPtr doc);
|
|
|
|
PyObject * libxml_xmlNodePtrWrap(xmlNodePtr node);
|
|
|
|
PyObject * libxml_xmlAttrPtrWrap(xmlAttrPtr attr);
|
2002-01-31 20:29:19 +00:00
|
|
|
PyObject * libxml_xmlNsPtrWrap(xmlNsPtr ns);
|
|
|
|
PyObject * libxml_xmlAttributePtrWrap(xmlAttributePtr ns);
|
|
|
|
PyObject * libxml_xmlElementPtrWrap(xmlElementPtr ns);
|
2002-01-30 20:52:23 +00:00
|
|
|
PyObject * libxml_doubleWrap(double val);
|
2002-01-31 20:29:19 +00:00
|
|
|
PyObject * libxml_xmlXPathContextPtrWrap(xmlXPathContextPtr ctxt);
|
2002-02-03 15:08:05 +00:00
|
|
|
PyObject * libxml_xmlParserCtxtPtrWrap(xmlParserCtxtPtr ctxt);
|
2002-02-07 16:39:11 +00:00
|
|
|
PyObject * libxml_xmlXPathParserContextPtrWrap(xmlXPathParserContextPtr ctxt);
|
2002-01-31 20:29:19 +00:00
|
|
|
PyObject * libxml_xmlXPathObjectPtrWrap(xmlXPathObjectPtr obj);
|
2002-02-07 16:39:11 +00:00
|
|
|
PyObject * libxml_xmlCatalogPtrWrap(xmlCatalogPtr obj);
|
2002-02-23 10:10:33 +00:00
|
|
|
PyObject * libxml_xmlURIPtrWrap(xmlURIPtr uri);
|
2002-09-12 15:00:57 +00:00
|
|
|
PyObject * libxml_xmlOutputBufferPtrWrap(xmlOutputBufferPtr buffer);
|
|
|
|
PyObject * libxml_xmlParserInputBufferPtrWrap(xmlParserInputBufferPtr buffer);
|
2002-09-25 22:25:35 +00:00
|
|
|
PyObject * libxml_xmlRegexpPtrWrap(xmlRegexpPtr regexp);
|
2002-01-30 20:52:23 +00:00
|
|
|
|
2002-02-03 15:08:05 +00:00
|
|
|
xmlXPathObjectPtr libxml_xmlXPathObjectPtrConvert(PyObject * obj);
|