blob: ad62be234751e3f4246217bc13e115197a173685 [file] [log] [blame]
Daniel Veillard3ce52572002-02-03 15:08:05 +00001#include <Python.h>
Daniel Veillardd2897fd2002-01-30 16:37:32 +00002#include <libxml/tree.h>
3#include <libxml/parser.h>
4#include <libxml/parserInternals.h>
5#include <libxml/catalog.h>
6#include <libxml/threads.h>
7#include <libxml/nanoftp.h>
8#include <libxml/nanohttp.h>
9#include <libxml/uri.h>
10#include <libxml/xpath.h>
11#include <libxml/xpathInternals.h>
12#include <libxml/debugXML.h>
Daniel Veillard96fe0952002-01-30 20:52:23 +000013#include <libxml/HTMLparser.h>
14#include <libxml/HTMLtree.h>
15#include <libxml/xinclude.h>
Daniel Veillard1971ee22002-01-31 20:29:19 +000016#include <libxml/xpointer.h>
Daniel Veillardbd9afb52002-09-25 22:25:35 +000017#include <libxml/xmlunicode.h>
18#include <libxml/xmlregexp.h>
19#include <libxml/xmlautomata.h>
Daniel Veillard0eb38c72002-12-14 23:00:35 +000020#include <libxml/xmlreader.h>
Daniel Veillard259f0df2004-08-18 09:13:18 +000021#ifdef LIBXML_SCHEMAS_ENABLED
Daniel Veillard71531f32003-02-05 13:19:53 +000022#include <libxml/relaxng.h>
Daniel Veillard259f0df2004-08-18 09:13:18 +000023#include <libxml/xmlschemas.h>
24#endif
Daniel Veillard0eb38c72002-12-14 23:00:35 +000025
26/**
27 * ATTRIBUTE_UNUSED:
28 *
29 * Macro used to signal to GCC unused function parameters
30 * Repeated here since the definition is not available when
31 * compiled outside the libxml2 build tree.
32 */
33#ifdef __GNUC__
34#ifdef ATTRIBUTE_UNUSED
35#undef ATTRIBUTE_UNUSED
36#endif
Daniel Veillard0eb38c72002-12-14 23:00:35 +000037#ifndef ATTRIBUTE_UNUSED
Daniel Veillard0e9dafa2002-12-27 11:58:25 +000038#define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
39#endif /* ATTRIBUTE_UNUSED */
Daniel Veillard0eb38c72002-12-14 23:00:35 +000040#else
41#define ATTRIBUTE_UNUSED
42#endif
Daniel Veillard96fe0952002-01-30 20:52:23 +000043
Daniel Veillard36eea2d2002-02-04 00:17:01 +000044#define PyxmlNode_Get(v) (((v) == Py_None) ? NULL : \
45 (((PyxmlNode_Object *)(v))->obj))
Daniel Veillard96fe0952002-01-30 20:52:23 +000046
47typedef struct {
48 PyObject_HEAD
49 xmlNodePtr obj;
50} PyxmlNode_Object;
Daniel Veillardd2897fd2002-01-30 16:37:32 +000051
Daniel Veillard36eea2d2002-02-04 00:17:01 +000052#define PyxmlXPathContext_Get(v) (((v) == Py_None) ? NULL : \
53 (((PyxmlXPathContext_Object *)(v))->obj))
54
Daniel Veillard1971ee22002-01-31 20:29:19 +000055typedef struct {
56 PyObject_HEAD
57 xmlXPathContextPtr obj;
58} PyxmlXPathContext_Object;
59
Daniel Veillard7db38712002-02-07 16:39:11 +000060#define PyxmlXPathParserContext_Get(v) (((v) == Py_None) ? NULL : \
61 (((PyxmlXPathParserContext_Object *)(v))->obj))
62
63typedef struct {
64 PyObject_HEAD
65 xmlXPathParserContextPtr obj;
66} PyxmlXPathParserContext_Object;
67
Daniel Veillard36eea2d2002-02-04 00:17:01 +000068#define PyparserCtxt_Get(v) (((v) == Py_None) ? NULL : \
69 (((PyparserCtxt_Object *)(v))->obj))
70
Daniel Veillard3ce52572002-02-03 15:08:05 +000071typedef struct {
72 PyObject_HEAD
73 xmlParserCtxtPtr obj;
74} PyparserCtxt_Object;
75
Daniel Veillard7db38712002-02-07 16:39:11 +000076#define Pycatalog_Get(v) (((v) == Py_None) ? NULL : \
77 (((Pycatalog_Object *)(v))->obj))
78
79typedef struct {
80 PyObject_HEAD
81 xmlCatalogPtr obj;
82} Pycatalog_Object;
83
Daniel Veillard0e298ad2003-02-04 16:14:33 +000084#ifdef LIBXML_REGEXP_ENABLED
Daniel Veillardbd9afb52002-09-25 22:25:35 +000085#define PyxmlReg_Get(v) (((v) == Py_None) ? NULL : \
86 (((PyxmlReg_Object *)(v))->obj))
87
88typedef struct {
89 PyObject_HEAD
90 xmlRegexpPtr obj;
91} PyxmlReg_Object;
Daniel Veillard0e298ad2003-02-04 16:14:33 +000092#endif /* LIBXML_REGEXP_ENABLED */
Daniel Veillardbd9afb52002-09-25 22:25:35 +000093
Daniel Veillard0eb38c72002-12-14 23:00:35 +000094#define PyxmlTextReader_Get(v) (((v) == Py_None) ? NULL : \
95 (((PyxmlTextReader_Object *)(v))->obj))
96
97typedef struct {
98 PyObject_HEAD
99 xmlTextReaderPtr obj;
100} PyxmlTextReader_Object;
101
Daniel Veillard417be3a2003-01-20 21:26:34 +0000102#define PyxmlTextReaderLocator_Get(v) (((v) == Py_None) ? NULL : \
103 (((PyxmlTextReaderLocator_Object *)(v))->obj))
104
105typedef struct {
106 PyObject_HEAD
107 xmlTextReaderLocatorPtr obj;
108} PyxmlTextReaderLocator_Object;
109
Daniel Veillard6361da02002-02-23 10:10:33 +0000110#define PyURI_Get(v) (((v) == Py_None) ? NULL : \
111 (((PyURI_Object *)(v))->obj))
112
113typedef struct {
114 PyObject_HEAD
Daniel Veillard46da4642004-01-06 22:54:57 +0000115 xmlErrorPtr obj;
116} PyError_Object;
117
118#define PyError_Get(v) (((v) == Py_None) ? NULL : \
119 (((PyError_Object *)(v))->obj))
120
121typedef struct {
122 PyObject_HEAD
Daniel Veillardc6d4a932002-09-12 15:00:57 +0000123 xmlOutputBufferPtr obj;
124} PyoutputBuffer_Object;
125
126#define PyoutputBuffer_Get(v) (((v) == Py_None) ? NULL : \
Daniel Veillard6cbd6c02003-12-04 12:31:49 +0000127 (((PyoutputBuffer_Object *)(v))->obj))
Daniel Veillardc6d4a932002-09-12 15:00:57 +0000128
129typedef struct {
130 PyObject_HEAD
131 xmlParserInputBufferPtr obj;
132} PyinputBuffer_Object;
133
134#define PyinputBuffer_Get(v) (((v) == Py_None) ? NULL : \
Daniel Veillard6cbd6c02003-12-04 12:31:49 +0000135 (((PyinputBuffer_Object *)(v))->obj))
Daniel Veillardc6d4a932002-09-12 15:00:57 +0000136
137typedef struct {
138 PyObject_HEAD
Daniel Veillard6361da02002-02-23 10:10:33 +0000139 xmlURIPtr obj;
140} PyURI_Object;
141
142/* FILE * have their own internal representation */
Daniel Veillard7db38712002-02-07 16:39:11 +0000143#define PyFile_Get(v) (((v) == Py_None) ? NULL : \
Daniel Veillardbd9afb52002-09-25 22:25:35 +0000144 (PyFile_Check(v) ? (PyFile_AsFile(v)) : stdout))
Daniel Veillard7db38712002-02-07 16:39:11 +0000145
Daniel Veillard591b4be2003-02-09 23:33:36 +0000146#ifdef LIBXML_SCHEMAS_ENABLED
147typedef struct {
148 PyObject_HEAD
149 xmlRelaxNGPtr obj;
150} PyrelaxNgSchema_Object;
151
152#define PyrelaxNgSchema_Get(v) (((v) == Py_None) ? NULL : \
153 (((PyrelaxNgSchema_Object *)(v))->obj))
154
155typedef struct {
156 PyObject_HEAD
157 xmlRelaxNGParserCtxtPtr obj;
158} PyrelaxNgParserCtxt_Object;
159
160#define PyrelaxNgParserCtxt_Get(v) (((v) == Py_None) ? NULL : \
161 (((PyrelaxNgParserCtxt_Object *)(v))->obj))
162
163typedef struct {
164 PyObject_HEAD
165 xmlRelaxNGValidCtxtPtr obj;
166} PyrelaxNgValidCtxt_Object;
167
168#define PyrelaxNgValidCtxt_Get(v) (((v) == Py_None) ? NULL : \
169 (((PyrelaxNgValidCtxt_Object *)(v))->obj))
170
Daniel Veillard259f0df2004-08-18 09:13:18 +0000171typedef struct {
172 PyObject_HEAD
173 xmlSchemaPtr obj;
174} PySchema_Object;
175
176#define PySchema_Get(v) (((v) == Py_None) ? NULL : \
177 (((PySchema_Object *)(v))->obj))
178
179typedef struct {
180 PyObject_HEAD
181 xmlSchemaParserCtxtPtr obj;
182} PySchemaParserCtxt_Object;
183
184#define PySchemaParserCtxt_Get(v) (((v) == Py_None) ? NULL : \
185 (((PySchemaParserCtxt_Object *)(v))->obj))
186
187typedef struct {
188 PyObject_HEAD
189 xmlSchemaValidCtxtPtr obj;
190} PySchemaValidCtxt_Object;
191
192#define PySchemaValidCtxt_Get(v) (((v) == Py_None) ? NULL : \
193 (((PySchemaValidCtxt_Object *)(v))->obj))
194
Daniel Veillard591b4be2003-02-09 23:33:36 +0000195#endif /* LIBXML_SCHEMAS_ENABLED */
Daniel Veillard6361da02002-02-23 10:10:33 +0000196
Daniel Veillardd2897fd2002-01-30 16:37:32 +0000197PyObject * libxml_intWrap(int val);
Daniel Veillard4e1b26c2002-02-03 20:13:06 +0000198PyObject * libxml_longWrap(long val);
Daniel Veillard1971ee22002-01-31 20:29:19 +0000199PyObject * libxml_xmlCharPtrWrap(xmlChar *str);
200PyObject * libxml_constxmlCharPtrWrap(const xmlChar *str);
201PyObject * libxml_charPtrWrap(char *str);
202PyObject * libxml_constcharPtrWrap(const char *str);
Daniel Veillardc575b992002-02-08 13:28:40 +0000203PyObject * libxml_charPtrConstWrap(const char *str);
204PyObject * libxml_xmlCharPtrConstWrap(const xmlChar *str);
Daniel Veillardd2897fd2002-01-30 16:37:32 +0000205PyObject * libxml_xmlDocPtrWrap(xmlDocPtr doc);
206PyObject * libxml_xmlNodePtrWrap(xmlNodePtr node);
207PyObject * libxml_xmlAttrPtrWrap(xmlAttrPtr attr);
Daniel Veillard1971ee22002-01-31 20:29:19 +0000208PyObject * libxml_xmlNsPtrWrap(xmlNsPtr ns);
209PyObject * libxml_xmlAttributePtrWrap(xmlAttributePtr ns);
210PyObject * libxml_xmlElementPtrWrap(xmlElementPtr ns);
Daniel Veillard96fe0952002-01-30 20:52:23 +0000211PyObject * libxml_doubleWrap(double val);
Daniel Veillard1971ee22002-01-31 20:29:19 +0000212PyObject * libxml_xmlXPathContextPtrWrap(xmlXPathContextPtr ctxt);
Daniel Veillard3ce52572002-02-03 15:08:05 +0000213PyObject * libxml_xmlParserCtxtPtrWrap(xmlParserCtxtPtr ctxt);
Daniel Veillard7db38712002-02-07 16:39:11 +0000214PyObject * libxml_xmlXPathParserContextPtrWrap(xmlXPathParserContextPtr ctxt);
Daniel Veillard1971ee22002-01-31 20:29:19 +0000215PyObject * libxml_xmlXPathObjectPtrWrap(xmlXPathObjectPtr obj);
Daniel Veillard7db38712002-02-07 16:39:11 +0000216PyObject * libxml_xmlCatalogPtrWrap(xmlCatalogPtr obj);
Daniel Veillard6361da02002-02-23 10:10:33 +0000217PyObject * libxml_xmlURIPtrWrap(xmlURIPtr uri);
Daniel Veillardc6d4a932002-09-12 15:00:57 +0000218PyObject * libxml_xmlOutputBufferPtrWrap(xmlOutputBufferPtr buffer);
219PyObject * libxml_xmlParserInputBufferPtrWrap(xmlParserInputBufferPtr buffer);
Daniel Veillard0e298ad2003-02-04 16:14:33 +0000220#ifdef LIBXML_REGEXP_ENABLED
Daniel Veillardbd9afb52002-09-25 22:25:35 +0000221PyObject * libxml_xmlRegexpPtrWrap(xmlRegexpPtr regexp);
Daniel Veillard0e298ad2003-02-04 16:14:33 +0000222#endif /* LIBXML_REGEXP_ENABLED */
Daniel Veillard0eb38c72002-12-14 23:00:35 +0000223PyObject * libxml_xmlTextReaderPtrWrap(xmlTextReaderPtr reader);
Daniel Veillard417be3a2003-01-20 21:26:34 +0000224PyObject * libxml_xmlTextReaderLocatorPtrWrap(xmlTextReaderLocatorPtr locator);
Daniel Veillard96fe0952002-01-30 20:52:23 +0000225
Daniel Veillard3ce52572002-02-03 15:08:05 +0000226xmlXPathObjectPtr libxml_xmlXPathObjectPtrConvert(PyObject * obj);
Daniel Veillard591b4be2003-02-09 23:33:36 +0000227#ifdef LIBXML_SCHEMAS_ENABLED
228PyObject * libxml_xmlRelaxNGPtrWrap(xmlRelaxNGPtr ctxt);
229PyObject * libxml_xmlRelaxNGParserCtxtPtrWrap(xmlRelaxNGParserCtxtPtr ctxt);
230PyObject * libxml_xmlRelaxNGValidCtxtPtrWrap(xmlRelaxNGValidCtxtPtr valid);
Daniel Veillard259f0df2004-08-18 09:13:18 +0000231PyObject * libxml_xmlSchemaPtrWrap(xmlSchemaPtr ctxt);
232PyObject * libxml_xmlSchemaParserCtxtPtrWrap(xmlSchemaParserCtxtPtr ctxt);
233PyObject * libxml_xmlSchemaValidCtxtPtrWrap(xmlSchemaValidCtxtPtr valid);
Daniel Veillard591b4be2003-02-09 23:33:36 +0000234#endif /* LIBXML_SCHEMAS_ENABLED */
Daniel Veillard46da4642004-01-06 22:54:57 +0000235PyObject * libxml_xmlErrorPtrWrap(xmlErrorPtr error);