blob: a43887e04c3dd51b10d3906a2fcde075171ed10b [file] [log] [blame]
Martin v. Löwis7090ed12001-09-19 10:37:50 +00001#include "Python.h"
Fred Drake4113b132001-03-24 19:58:26 +00002#include <ctype.h>
3
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00004#include "frameobject.h"
Fred Drakea77254a2000-09-29 19:23:29 +00005#include "expat.h"
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00006
Fredrik Lundhc3345042005-12-13 19:49:55 +00007#include "pyexpat.h"
8
Brett Cannond0aeda82014-08-22 14:23:20 -04009/* Do not emit Clinic output to a file as that wreaks havoc with conditionally
10 included methods. */
11/*[clinic input]
12module pyexpat
13[clinic start generated code]*/
14/*[clinic end generated code: output=da39a3ee5e6b4b0d input=b168d503a4490c15]*/
15
Martin v. Löwisc847f402003-01-21 11:09:21 +000016#define XML_COMBINED_VERSION (10000*XML_MAJOR_VERSION+100*XML_MINOR_VERSION+XML_MICRO_VERSION)
17
Christian Heimesfa535f52013-07-07 17:35:11 +020018static XML_Memory_Handling_Suite ExpatMemoryHandler = {
19 PyObject_Malloc, PyObject_Realloc, PyObject_Free};
20
Fred Drake0582df92000-07-12 04:49:00 +000021enum HandlerTypes {
22 StartElement,
23 EndElement,
24 ProcessingInstruction,
25 CharacterData,
26 UnparsedEntityDecl,
27 NotationDecl,
28 StartNamespaceDecl,
29 EndNamespaceDecl,
30 Comment,
31 StartCdataSection,
32 EndCdataSection,
33 Default,
34 DefaultHandlerExpand,
35 NotStandalone,
Martin v. Löwis0078f6c2001-01-21 10:18:10 +000036 ExternalEntityRef,
37 StartDoctypeDecl,
38 EndDoctypeDecl,
Fred Drake85d835f2001-02-08 15:39:08 +000039 EntityDecl,
40 XmlDecl,
41 ElementDecl,
42 AttlistDecl,
Martin v. Löwisc847f402003-01-21 11:09:21 +000043#if XML_COMBINED_VERSION >= 19504
Martin v. Löwis069dde22003-01-21 10:58:18 +000044 SkippedEntity,
Martin v. Löwisc847f402003-01-21 11:09:21 +000045#endif
Fred Drake85d835f2001-02-08 15:39:08 +000046 _DummyDecl
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +000047};
48
49static PyObject *ErrorObject;
50
51/* ----------------------------------------------------- */
52
53/* Declarations for objects of type xmlparser */
54
55typedef struct {
Fred Drake0582df92000-07-12 04:49:00 +000056 PyObject_HEAD
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +000057
Fred Drake0582df92000-07-12 04:49:00 +000058 XML_Parser itself;
Fred Drake85d835f2001-02-08 15:39:08 +000059 int ordered_attributes; /* Return attributes as a list. */
60 int specified_attributes; /* Report only specified attributes. */
Fred Drakebd6101c2001-02-14 18:29:45 +000061 int in_callback; /* Is a callback active? */
Martin v. Löwis069dde22003-01-21 10:58:18 +000062 int ns_prefixes; /* Namespace-triplets mode? */
Fred Drake2a3d7db2002-06-28 22:56:48 +000063 XML_Char *buffer; /* Buffer used when accumulating characters */
64 /* NULL if not enabled */
65 int buffer_size; /* Size of buffer, in XML_Char units */
66 int buffer_used; /* Buffer units in use */
Fred Drakeb91a36b2002-06-27 19:40:48 +000067 PyObject *intern; /* Dictionary to intern strings */
Fred Drake0582df92000-07-12 04:49:00 +000068 PyObject **handlers;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +000069} xmlparseobject;
70
Serhiy Storchaka1009bf12015-04-03 23:53:51 +030071#include "clinic/pyexpat.c.h"
72
Fred Drake2a3d7db2002-06-28 22:56:48 +000073#define CHARACTER_DATA_BUFFER_SIZE 8192
74
Jeremy Hylton938ace62002-07-17 16:30:39 +000075static PyTypeObject Xmlparsetype;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +000076
Fred Drake117ac852002-09-24 16:24:54 +000077typedef void (*xmlhandlersetter)(XML_Parser self, void *meth);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +000078typedef void* xmlhandler;
79
Andrew M. Kuchlingbeba0562000-06-27 00:33:30 +000080struct HandlerInfo {
Fred Drake0582df92000-07-12 04:49:00 +000081 const char *name;
82 xmlhandlersetter setter;
83 xmlhandler handler;
Martin v. Löwis0078f6c2001-01-21 10:18:10 +000084 PyCodeObject *tb_code;
Fred Drake71b63ff2002-06-28 22:29:01 +000085 PyObject *nameobj;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +000086};
87
Jeremy Hylton938ace62002-07-17 16:30:39 +000088static struct HandlerInfo handler_info[64];
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +000089
Fred Drakebd6101c2001-02-14 18:29:45 +000090/* Set an integer attribute on the error object; return true on success,
91 * false on an exception.
92 */
93static int
94set_error_attr(PyObject *err, char *name, int value)
95{
Christian Heimes217cfd12007-12-02 14:31:20 +000096 PyObject *v = PyLong_FromLong(value);
Fred Drake85d835f2001-02-08 15:39:08 +000097
Neal Norwitz2f5e9902006-03-08 06:36:45 +000098 if (v == NULL || PyObject_SetAttrString(err, name, v) == -1) {
99 Py_XDECREF(v);
Fred Drakebd6101c2001-02-14 18:29:45 +0000100 return 0;
101 }
Michael W. Hudson0bb84542004-08-03 11:31:31 +0000102 Py_DECREF(v);
Fred Drakebd6101c2001-02-14 18:29:45 +0000103 return 1;
104}
105
106/* Build and set an Expat exception, including positioning
107 * information. Always returns NULL.
108 */
Fred Drake85d835f2001-02-08 15:39:08 +0000109static PyObject *
Martin v. Löwis069dde22003-01-21 10:58:18 +0000110set_error(xmlparseobject *self, enum XML_Error code)
Fred Drake85d835f2001-02-08 15:39:08 +0000111{
112 PyObject *err;
Victor Stinner499dfcf2011-03-21 13:26:24 +0100113 PyObject *buffer;
Fred Drake85d835f2001-02-08 15:39:08 +0000114 XML_Parser parser = self->itself;
Fred Drakebd6101c2001-02-14 18:29:45 +0000115 int lineno = XML_GetErrorLineNumber(parser);
116 int column = XML_GetErrorColumnNumber(parser);
Fred Drake85d835f2001-02-08 15:39:08 +0000117
Victor Stinner499dfcf2011-03-21 13:26:24 +0100118 buffer = PyUnicode_FromFormat("%s: line %i, column %i",
119 XML_ErrorString(code), lineno, column);
120 if (buffer == NULL)
121 return NULL;
122 err = PyObject_CallFunction(ErrorObject, "O", buffer);
123 Py_DECREF(buffer);
Fred Drakebd6101c2001-02-14 18:29:45 +0000124 if ( err != NULL
125 && set_error_attr(err, "code", code)
126 && set_error_attr(err, "offset", column)
127 && set_error_attr(err, "lineno", lineno)) {
128 PyErr_SetObject(ErrorObject, err);
Fred Drake85d835f2001-02-08 15:39:08 +0000129 }
Neal Norwitz2f5e9902006-03-08 06:36:45 +0000130 Py_XDECREF(err);
Fred Drake85d835f2001-02-08 15:39:08 +0000131 return NULL;
132}
133
Fred Drake71b63ff2002-06-28 22:29:01 +0000134static int
135have_handler(xmlparseobject *self, int type)
136{
137 PyObject *handler = self->handlers[type];
138 return handler != NULL;
139}
140
141static PyObject *
142get_handler_name(struct HandlerInfo *hinfo)
143{
144 PyObject *name = hinfo->nameobj;
145 if (name == NULL) {
Neal Norwitz392c5be2007-08-25 17:20:32 +0000146 name = PyUnicode_FromString(hinfo->name);
Fred Drake71b63ff2002-06-28 22:29:01 +0000147 hinfo->nameobj = name;
148 }
149 Py_XINCREF(name);
150 return name;
151}
152
Fred Drake85d835f2001-02-08 15:39:08 +0000153
Andrew M. Kuchlingbeba0562000-06-27 00:33:30 +0000154/* Convert a string of XML_Chars into a Unicode string.
155 Returns None if str is a null pointer. */
156
Fred Drake0582df92000-07-12 04:49:00 +0000157static PyObject *
Fred Drakeb91a36b2002-06-27 19:40:48 +0000158conv_string_to_unicode(const XML_Char *str)
Fred Drake0582df92000-07-12 04:49:00 +0000159{
Fred Drake71b63ff2002-06-28 22:29:01 +0000160 /* XXX currently this code assumes that XML_Char is 8-bit,
Fred Drake0582df92000-07-12 04:49:00 +0000161 and hence in UTF-8. */
162 /* UTF-8 from Expat, Unicode desired */
163 if (str == NULL) {
164 Py_INCREF(Py_None);
165 return Py_None;
166 }
Fred Drake71b63ff2002-06-28 22:29:01 +0000167 return PyUnicode_DecodeUTF8(str, strlen(str), "strict");
Andrew M. Kuchlingbeba0562000-06-27 00:33:30 +0000168}
169
Fred Drake0582df92000-07-12 04:49:00 +0000170static PyObject *
171conv_string_len_to_unicode(const XML_Char *str, int len)
172{
Fred Drake71b63ff2002-06-28 22:29:01 +0000173 /* XXX currently this code assumes that XML_Char is 8-bit,
Fred Drake0582df92000-07-12 04:49:00 +0000174 and hence in UTF-8. */
175 /* UTF-8 from Expat, Unicode desired */
176 if (str == NULL) {
177 Py_INCREF(Py_None);
178 return Py_None;
179 }
Fred Drake6f987622000-08-25 18:03:30 +0000180 return PyUnicode_DecodeUTF8((const char *)str, len, "strict");
Andrew M. Kuchlingbeba0562000-06-27 00:33:30 +0000181}
Andrew M. Kuchlingbeba0562000-06-27 00:33:30 +0000182
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000183/* Callback routines */
184
Martin v. Löwis5b68ce32001-10-21 08:53:52 +0000185static void clear_handlers(xmlparseobject *self, int initial);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000186
Martin v. Löwis069dde22003-01-21 10:58:18 +0000187/* This handler is used when an error has been detected, in the hope
188 that actual parsing can be terminated early. This will only help
189 if an external entity reference is encountered. */
190static int
191error_external_entity_ref_handler(XML_Parser parser,
192 const XML_Char *context,
193 const XML_Char *base,
194 const XML_Char *systemId,
195 const XML_Char *publicId)
196{
197 return 0;
198}
199
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000200/* Dummy character data handler used when an error (exception) has
201 been detected, and the actual parsing can be terminated early.
202 This is needed since character data handler can't be safely removed
203 from within the character data handler, but can be replaced. It is
204 used only from the character data handler trampoline, and must be
205 used right after `flag_error()` is called. */
206static void
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000207noop_character_data_handler(void *userData, const XML_Char *data, int len)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000208{
209 /* Do nothing. */
210}
211
Fred Drake6f987622000-08-25 18:03:30 +0000212static void
213flag_error(xmlparseobject *self)
214{
Martin v. Löwis5b68ce32001-10-21 08:53:52 +0000215 clear_handlers(self, 0);
Martin v. Löwis069dde22003-01-21 10:58:18 +0000216 XML_SetExternalEntityRefHandler(self->itself,
217 error_external_entity_ref_handler);
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000218}
219
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000220static PyObject*
Antoine Pitrou0ddbf472014-10-08 20:00:09 +0200221call_with_frame(char *funcname, int lineno, PyObject* func, PyObject* args,
Fred Drake39689c52004-08-13 03:12:57 +0000222 xmlparseobject *self)
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000223{
Antoine Pitrou0ddbf472014-10-08 20:00:09 +0200224 PyObject *res;
Fred Drakebd6101c2001-02-14 18:29:45 +0000225
Fred Drakebd6101c2001-02-14 18:29:45 +0000226 res = PyEval_CallObject(func, args);
Jeremy Hylton9263f572003-06-27 16:13:17 +0000227 if (res == NULL) {
Antoine Pitrou0ddbf472014-10-08 20:00:09 +0200228 _PyTraceback_Add(funcname, __FILE__, lineno);
Fred Drake39689c52004-08-13 03:12:57 +0000229 XML_StopParser(self->itself, XML_FALSE);
Jeremy Hylton9263f572003-06-27 16:13:17 +0000230 }
Fred Drakebd6101c2001-02-14 18:29:45 +0000231 return res;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000232}
233
Fred Drakeb91a36b2002-06-27 19:40:48 +0000234static PyObject*
235string_intern(xmlparseobject *self, const char* str)
236{
Guido van Rossum4ca94712007-07-23 17:42:32 +0000237 PyObject *result = conv_string_to_unicode(str);
Fred Drakeb91a36b2002-06-27 19:40:48 +0000238 PyObject *value;
Neal Norwitz484d9a42005-09-30 04:46:49 +0000239 /* result can be NULL if the unicode conversion failed. */
240 if (!result)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000241 return result;
Fred Drakeb91a36b2002-06-27 19:40:48 +0000242 if (!self->intern)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000243 return result;
Fred Drakeb91a36b2002-06-27 19:40:48 +0000244 value = PyDict_GetItem(self->intern, result);
245 if (!value) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000246 if (PyDict_SetItem(self->intern, result, result) == 0)
Fred Drakeb91a36b2002-06-27 19:40:48 +0000247 return result;
248 else
249 return NULL;
250 }
251 Py_INCREF(value);
252 Py_DECREF(result);
253 return value;
254}
255
Fred Drake2a3d7db2002-06-28 22:56:48 +0000256/* Return 0 on success, -1 on exception.
257 * flag_error() will be called before return if needed.
258 */
259static int
260call_character_handler(xmlparseobject *self, const XML_Char *buffer, int len)
261{
262 PyObject *args;
263 PyObject *temp;
264
Georg Brandlc01537f2010-10-15 16:26:08 +0000265 if (!have_handler(self, CharacterData))
266 return -1;
267
Fred Drake2a3d7db2002-06-28 22:56:48 +0000268 args = PyTuple_New(1);
269 if (args == NULL)
270 return -1;
Guido van Rossum4ca94712007-07-23 17:42:32 +0000271 temp = (conv_string_len_to_unicode(buffer, len));
Fred Drake2a3d7db2002-06-28 22:56:48 +0000272 if (temp == NULL) {
273 Py_DECREF(args);
274 flag_error(self);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000275 XML_SetCharacterDataHandler(self->itself,
276 noop_character_data_handler);
Fred Drake2a3d7db2002-06-28 22:56:48 +0000277 return -1;
278 }
279 PyTuple_SET_ITEM(args, 0, temp);
280 /* temp is now a borrowed reference; consider it unused. */
281 self->in_callback = 1;
Antoine Pitrou0ddbf472014-10-08 20:00:09 +0200282 temp = call_with_frame("CharacterData", __LINE__,
Fred Drake39689c52004-08-13 03:12:57 +0000283 self->handlers[CharacterData], args, self);
Fred Drake2a3d7db2002-06-28 22:56:48 +0000284 /* temp is an owned reference again, or NULL */
285 self->in_callback = 0;
286 Py_DECREF(args);
287 if (temp == NULL) {
288 flag_error(self);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000289 XML_SetCharacterDataHandler(self->itself,
290 noop_character_data_handler);
Fred Drake2a3d7db2002-06-28 22:56:48 +0000291 return -1;
292 }
293 Py_DECREF(temp);
294 return 0;
295}
296
297static int
298flush_character_buffer(xmlparseobject *self)
299{
300 int rc;
301 if (self->buffer == NULL || self->buffer_used == 0)
302 return 0;
303 rc = call_character_handler(self, self->buffer, self->buffer_used);
304 self->buffer_used = 0;
305 return rc;
306}
307
308static void
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000309my_CharacterDataHandler(void *userData, const XML_Char *data, int len)
Fred Drake2a3d7db2002-06-28 22:56:48 +0000310{
311 xmlparseobject *self = (xmlparseobject *) userData;
Victor Stinner9e09c262013-07-18 23:17:01 +0200312
313 if (PyErr_Occurred())
314 return;
315
Fred Drake2a3d7db2002-06-28 22:56:48 +0000316 if (self->buffer == NULL)
317 call_character_handler(self, data, len);
318 else {
319 if ((self->buffer_used + len) > self->buffer_size) {
320 if (flush_character_buffer(self) < 0)
321 return;
322 /* handler might have changed; drop the rest on the floor
323 * if there isn't a handler anymore
324 */
325 if (!have_handler(self, CharacterData))
326 return;
327 }
328 if (len > self->buffer_size) {
329 call_character_handler(self, data, len);
330 self->buffer_used = 0;
331 }
332 else {
333 memcpy(self->buffer + self->buffer_used,
334 data, len * sizeof(XML_Char));
335 self->buffer_used += len;
336 }
337 }
338}
339
Fred Drake85d835f2001-02-08 15:39:08 +0000340static void
341my_StartElementHandler(void *userData,
Fred Drake71b63ff2002-06-28 22:29:01 +0000342 const XML_Char *name, const XML_Char *atts[])
Fred Drake85d835f2001-02-08 15:39:08 +0000343{
344 xmlparseobject *self = (xmlparseobject *)userData;
345
Fred Drake71b63ff2002-06-28 22:29:01 +0000346 if (have_handler(self, StartElement)) {
Fred Drake85d835f2001-02-08 15:39:08 +0000347 PyObject *container, *rv, *args;
348 int i, max;
349
Victor Stinner9e09c262013-07-18 23:17:01 +0200350 if (PyErr_Occurred())
351 return;
352
Fred Drake2a3d7db2002-06-28 22:56:48 +0000353 if (flush_character_buffer(self) < 0)
354 return;
Fred Drake85d835f2001-02-08 15:39:08 +0000355 /* Set max to the number of slots filled in atts[]; max/2 is
356 * the number of attributes we need to process.
357 */
358 if (self->specified_attributes) {
359 max = XML_GetSpecifiedAttributeCount(self->itself);
360 }
361 else {
362 max = 0;
363 while (atts[max] != NULL)
364 max += 2;
365 }
366 /* Build the container. */
367 if (self->ordered_attributes)
368 container = PyList_New(max);
369 else
370 container = PyDict_New();
371 if (container == NULL) {
372 flag_error(self);
373 return;
374 }
375 for (i = 0; i < max; i += 2) {
Fred Drakeb91a36b2002-06-27 19:40:48 +0000376 PyObject *n = string_intern(self, (XML_Char *) atts[i]);
Fred Drake85d835f2001-02-08 15:39:08 +0000377 PyObject *v;
378 if (n == NULL) {
379 flag_error(self);
380 Py_DECREF(container);
381 return;
382 }
Guido van Rossum4ca94712007-07-23 17:42:32 +0000383 v = conv_string_to_unicode((XML_Char *) atts[i+1]);
Fred Drake85d835f2001-02-08 15:39:08 +0000384 if (v == NULL) {
385 flag_error(self);
386 Py_DECREF(container);
387 Py_DECREF(n);
388 return;
389 }
390 if (self->ordered_attributes) {
391 PyList_SET_ITEM(container, i, n);
392 PyList_SET_ITEM(container, i+1, v);
393 }
394 else if (PyDict_SetItem(container, n, v)) {
395 flag_error(self);
396 Py_DECREF(n);
397 Py_DECREF(v);
398 return;
399 }
400 else {
401 Py_DECREF(n);
402 Py_DECREF(v);
403 }
404 }
Neal Norwitz484d9a42005-09-30 04:46:49 +0000405 args = string_intern(self, name);
406 if (args != NULL)
407 args = Py_BuildValue("(NN)", args, container);
Fred Drake85d835f2001-02-08 15:39:08 +0000408 if (args == NULL) {
409 Py_DECREF(container);
410 return;
411 }
412 /* Container is now a borrowed reference; ignore it. */
Fred Drakebd6101c2001-02-14 18:29:45 +0000413 self->in_callback = 1;
Antoine Pitrou0ddbf472014-10-08 20:00:09 +0200414 rv = call_with_frame("StartElement", __LINE__,
Fred Drake39689c52004-08-13 03:12:57 +0000415 self->handlers[StartElement], args, self);
Fred Drakebd6101c2001-02-14 18:29:45 +0000416 self->in_callback = 0;
417 Py_DECREF(args);
Fred Drake85d835f2001-02-08 15:39:08 +0000418 if (rv == NULL) {
419 flag_error(self);
420 return;
Fred Drakebd6101c2001-02-14 18:29:45 +0000421 }
Fred Drake85d835f2001-02-08 15:39:08 +0000422 Py_DECREF(rv);
423 }
424}
425
426#define RC_HANDLER(RC, NAME, PARAMS, INIT, PARAM_FORMAT, CONVERSION, \
427 RETURN, GETUSERDATA) \
428static RC \
429my_##NAME##Handler PARAMS {\
430 xmlparseobject *self = GETUSERDATA ; \
431 PyObject *args = NULL; \
432 PyObject *rv = NULL; \
433 INIT \
434\
Fred Drake71b63ff2002-06-28 22:29:01 +0000435 if (have_handler(self, NAME)) { \
Victor Stinner9e09c262013-07-18 23:17:01 +0200436 if (PyErr_Occurred()) \
437 return RETURN; \
Fred Drake2a3d7db2002-06-28 22:56:48 +0000438 if (flush_character_buffer(self) < 0) \
439 return RETURN; \
Fred Drake85d835f2001-02-08 15:39:08 +0000440 args = Py_BuildValue PARAM_FORMAT ;\
Martin v. Löwis1d7c55f2001-11-10 13:57:55 +0000441 if (!args) { flag_error(self); return RETURN;} \
Fred Drakebd6101c2001-02-14 18:29:45 +0000442 self->in_callback = 1; \
Antoine Pitrou0ddbf472014-10-08 20:00:09 +0200443 rv = call_with_frame(#NAME,__LINE__, \
Fred Drake39689c52004-08-13 03:12:57 +0000444 self->handlers[NAME], args, self); \
Fred Drakebd6101c2001-02-14 18:29:45 +0000445 self->in_callback = 0; \
Fred Drake85d835f2001-02-08 15:39:08 +0000446 Py_DECREF(args); \
447 if (rv == NULL) { \
448 flag_error(self); \
449 return RETURN; \
450 } \
451 CONVERSION \
452 Py_DECREF(rv); \
453 } \
454 return RETURN; \
455}
456
Fred Drake6f987622000-08-25 18:03:30 +0000457#define VOID_HANDLER(NAME, PARAMS, PARAM_FORMAT) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000458 RC_HANDLER(void, NAME, PARAMS, ;, PARAM_FORMAT, ;, ;,\
459 (xmlparseobject *)userData)
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000460
Fred Drake6f987622000-08-25 18:03:30 +0000461#define INT_HANDLER(NAME, PARAMS, PARAM_FORMAT)\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000462 RC_HANDLER(int, NAME, PARAMS, int rc=0;, PARAM_FORMAT, \
463 rc = PyLong_AsLong(rv);, rc, \
464 (xmlparseobject *)userData)
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000465
Fred Drake71b63ff2002-06-28 22:29:01 +0000466VOID_HANDLER(EndElement,
467 (void *userData, const XML_Char *name),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000468 ("(N)", string_intern(self, name)))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000469
Fred Drake6f987622000-08-25 18:03:30 +0000470VOID_HANDLER(ProcessingInstruction,
Fred Drake71b63ff2002-06-28 22:29:01 +0000471 (void *userData,
472 const XML_Char *target,
Fred Drake85d835f2001-02-08 15:39:08 +0000473 const XML_Char *data),
Guido van Rossum4ca94712007-07-23 17:42:32 +0000474 ("(NO&)", string_intern(self, target), conv_string_to_unicode ,data))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000475
Fred Drake6f987622000-08-25 18:03:30 +0000476VOID_HANDLER(UnparsedEntityDecl,
Fred Drake71b63ff2002-06-28 22:29:01 +0000477 (void *userData,
Fred Drake85d835f2001-02-08 15:39:08 +0000478 const XML_Char *entityName,
479 const XML_Char *base,
480 const XML_Char *systemId,
481 const XML_Char *publicId,
482 const XML_Char *notationName),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000483 ("(NNNNN)",
Fred Drake71b63ff2002-06-28 22:29:01 +0000484 string_intern(self, entityName), string_intern(self, base),
485 string_intern(self, systemId), string_intern(self, publicId),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000486 string_intern(self, notationName)))
Fred Drake85d835f2001-02-08 15:39:08 +0000487
Fred Drake85d835f2001-02-08 15:39:08 +0000488VOID_HANDLER(EntityDecl,
489 (void *userData,
490 const XML_Char *entityName,
491 int is_parameter_entity,
492 const XML_Char *value,
493 int value_length,
494 const XML_Char *base,
495 const XML_Char *systemId,
496 const XML_Char *publicId,
497 const XML_Char *notationName),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000498 ("NiNNNNN",
499 string_intern(self, entityName), is_parameter_entity,
Guido van Rossum4ca94712007-07-23 17:42:32 +0000500 (conv_string_len_to_unicode(value, value_length)),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000501 string_intern(self, base), string_intern(self, systemId),
502 string_intern(self, publicId),
503 string_intern(self, notationName)))
Fred Drake85d835f2001-02-08 15:39:08 +0000504
505VOID_HANDLER(XmlDecl,
506 (void *userData,
507 const XML_Char *version,
508 const XML_Char *encoding,
509 int standalone),
510 ("(O&O&i)",
Guido van Rossum4ca94712007-07-23 17:42:32 +0000511 conv_string_to_unicode ,version, conv_string_to_unicode ,encoding,
Fred Drake85d835f2001-02-08 15:39:08 +0000512 standalone))
513
514static PyObject *
515conv_content_model(XML_Content * const model,
Fred Drakeb91a36b2002-06-27 19:40:48 +0000516 PyObject *(*conv_string)(const XML_Char *))
Fred Drake85d835f2001-02-08 15:39:08 +0000517{
518 PyObject *result = NULL;
519 PyObject *children = PyTuple_New(model->numchildren);
520 int i;
521
522 if (children != NULL) {
Tim Peters9544fc52001-07-28 09:36:36 +0000523 assert(model->numchildren < INT_MAX);
524 for (i = 0; i < (int)model->numchildren; ++i) {
Fred Drake85d835f2001-02-08 15:39:08 +0000525 PyObject *child = conv_content_model(&model->children[i],
526 conv_string);
527 if (child == NULL) {
528 Py_XDECREF(children);
529 return NULL;
530 }
531 PyTuple_SET_ITEM(children, i, child);
532 }
533 result = Py_BuildValue("(iiO&N)",
534 model->type, model->quant,
535 conv_string,model->name, children);
536 }
537 return result;
538}
539
Fred Drake06dd8cf2003-02-02 03:54:17 +0000540static void
541my_ElementDeclHandler(void *userData,
542 const XML_Char *name,
543 XML_Content *model)
Fred Drake85d835f2001-02-08 15:39:08 +0000544{
Fred Drake06dd8cf2003-02-02 03:54:17 +0000545 xmlparseobject *self = (xmlparseobject *)userData;
546 PyObject *args = NULL;
Fred Drake85d835f2001-02-08 15:39:08 +0000547
Fred Drake06dd8cf2003-02-02 03:54:17 +0000548 if (have_handler(self, ElementDecl)) {
549 PyObject *rv = NULL;
550 PyObject *modelobj, *nameobj;
551
Victor Stinner9e09c262013-07-18 23:17:01 +0200552 if (PyErr_Occurred())
553 return;
554
Fred Drake06dd8cf2003-02-02 03:54:17 +0000555 if (flush_character_buffer(self) < 0)
556 goto finally;
Guido van Rossum4ca94712007-07-23 17:42:32 +0000557 modelobj = conv_content_model(model, (conv_string_to_unicode));
Fred Drake06dd8cf2003-02-02 03:54:17 +0000558 if (modelobj == NULL) {
559 flag_error(self);
560 goto finally;
561 }
562 nameobj = string_intern(self, name);
563 if (nameobj == NULL) {
564 Py_DECREF(modelobj);
565 flag_error(self);
566 goto finally;
567 }
Michael W. Hudson0bb84542004-08-03 11:31:31 +0000568 args = Py_BuildValue("NN", nameobj, modelobj);
Fred Drake06dd8cf2003-02-02 03:54:17 +0000569 if (args == NULL) {
570 Py_DECREF(modelobj);
571 flag_error(self);
572 goto finally;
573 }
574 self->in_callback = 1;
Antoine Pitrou0ddbf472014-10-08 20:00:09 +0200575 rv = call_with_frame("ElementDecl", __LINE__,
Fred Drake39689c52004-08-13 03:12:57 +0000576 self->handlers[ElementDecl], args, self);
Fred Drake06dd8cf2003-02-02 03:54:17 +0000577 self->in_callback = 0;
578 if (rv == NULL) {
579 flag_error(self);
580 goto finally;
581 }
582 Py_DECREF(rv);
583 }
584 finally:
585 Py_XDECREF(args);
586 XML_FreeContentModel(self->itself, model);
587 return;
588}
Fred Drake85d835f2001-02-08 15:39:08 +0000589
590VOID_HANDLER(AttlistDecl,
591 (void *userData,
592 const XML_Char *elname,
593 const XML_Char *attname,
594 const XML_Char *att_type,
595 const XML_Char *dflt,
596 int isrequired),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000597 ("(NNO&O&i)",
598 string_intern(self, elname), string_intern(self, attname),
Guido van Rossum4ca94712007-07-23 17:42:32 +0000599 conv_string_to_unicode ,att_type, conv_string_to_unicode ,dflt,
Fred Drake85d835f2001-02-08 15:39:08 +0000600 isrequired))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000601
Martin v. Löwisc847f402003-01-21 11:09:21 +0000602#if XML_COMBINED_VERSION >= 19504
Martin v. Löwis069dde22003-01-21 10:58:18 +0000603VOID_HANDLER(SkippedEntity,
604 (void *userData,
605 const XML_Char *entityName,
606 int is_parameter_entity),
607 ("Ni",
608 string_intern(self, entityName), is_parameter_entity))
Martin v. Löwisc847f402003-01-21 11:09:21 +0000609#endif
Martin v. Löwis069dde22003-01-21 10:58:18 +0000610
Fred Drake71b63ff2002-06-28 22:29:01 +0000611VOID_HANDLER(NotationDecl,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000612 (void *userData,
613 const XML_Char *notationName,
614 const XML_Char *base,
615 const XML_Char *systemId,
616 const XML_Char *publicId),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000617 ("(NNNN)",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000618 string_intern(self, notationName), string_intern(self, base),
619 string_intern(self, systemId), string_intern(self, publicId)))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000620
Fred Drake6f987622000-08-25 18:03:30 +0000621VOID_HANDLER(StartNamespaceDecl,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000622 (void *userData,
623 const XML_Char *prefix,
624 const XML_Char *uri),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000625 ("(NN)",
626 string_intern(self, prefix), string_intern(self, uri)))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000627
Fred Drake6f987622000-08-25 18:03:30 +0000628VOID_HANDLER(EndNamespaceDecl,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000629 (void *userData,
630 const XML_Char *prefix),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000631 ("(N)", string_intern(self, prefix)))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000632
Fred Drake6f987622000-08-25 18:03:30 +0000633VOID_HANDLER(Comment,
Fred Drakeb91a36b2002-06-27 19:40:48 +0000634 (void *userData, const XML_Char *data),
Guido van Rossum4ca94712007-07-23 17:42:32 +0000635 ("(O&)", conv_string_to_unicode ,data))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000636
Fred Drake6f987622000-08-25 18:03:30 +0000637VOID_HANDLER(StartCdataSection,
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000638 (void *userData),
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000639 ("()"))
Fred Drake71b63ff2002-06-28 22:29:01 +0000640
Fred Drake6f987622000-08-25 18:03:30 +0000641VOID_HANDLER(EndCdataSection,
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000642 (void *userData),
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000643 ("()"))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000644
Fred Drake6f987622000-08-25 18:03:30 +0000645VOID_HANDLER(Default,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000646 (void *userData, const XML_Char *s, int len),
647 ("(N)", (conv_string_len_to_unicode(s,len))))
Andrew M. Kuchlingbeba0562000-06-27 00:33:30 +0000648
Fred Drake6f987622000-08-25 18:03:30 +0000649VOID_HANDLER(DefaultHandlerExpand,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000650 (void *userData, const XML_Char *s, int len),
651 ("(N)", (conv_string_len_to_unicode(s,len))))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000652
Fred Drake71b63ff2002-06-28 22:29:01 +0000653INT_HANDLER(NotStandalone,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000654 (void *userData),
655 ("()"))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000656
Fred Drake6f987622000-08-25 18:03:30 +0000657RC_HANDLER(int, ExternalEntityRef,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000658 (XML_Parser parser,
659 const XML_Char *context,
660 const XML_Char *base,
661 const XML_Char *systemId,
662 const XML_Char *publicId),
663 int rc=0;,
Fred Drakeb91a36b2002-06-27 19:40:48 +0000664 ("(O&NNN)",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000665 conv_string_to_unicode ,context, string_intern(self, base),
666 string_intern(self, systemId), string_intern(self, publicId)),
667 rc = PyLong_AsLong(rv);, rc,
668 XML_GetUserData(parser))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000669
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000670/* XXX UnknownEncodingHandler */
671
Fred Drake85d835f2001-02-08 15:39:08 +0000672VOID_HANDLER(StartDoctypeDecl,
673 (void *userData, const XML_Char *doctypeName,
674 const XML_Char *sysid, const XML_Char *pubid,
675 int has_internal_subset),
Fred Drakeb91a36b2002-06-27 19:40:48 +0000676 ("(NNNi)", string_intern(self, doctypeName),
677 string_intern(self, sysid), string_intern(self, pubid),
Fred Drake85d835f2001-02-08 15:39:08 +0000678 has_internal_subset))
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000679
680VOID_HANDLER(EndDoctypeDecl, (void *userData), ("()"))
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000681
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000682/* ---------------------------------------------------------------- */
Brett Cannond0aeda82014-08-22 14:23:20 -0400683/*[clinic input]
684class pyexpat.xmlparser "xmlparseobject *" "&Xmlparsetype"
685[clinic start generated code]*/
686/*[clinic end generated code: output=da39a3ee5e6b4b0d input=2393162385232e1c]*/
687
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000688
Fred Drake71b63ff2002-06-28 22:29:01 +0000689static PyObject *
690get_parse_result(xmlparseobject *self, int rv)
691{
692 if (PyErr_Occurred()) {
693 return NULL;
694 }
695 if (rv == 0) {
Martin v. Löwis069dde22003-01-21 10:58:18 +0000696 return set_error(self, XML_GetErrorCode(self->itself));
Fred Drake71b63ff2002-06-28 22:29:01 +0000697 }
Fred Drake2a3d7db2002-06-28 22:56:48 +0000698 if (flush_character_buffer(self) < 0) {
699 return NULL;
700 }
Christian Heimes217cfd12007-12-02 14:31:20 +0000701 return PyLong_FromLong(rv);
Fred Drake71b63ff2002-06-28 22:29:01 +0000702}
703
Serhiy Storchaka43536e92013-02-04 18:26:15 +0200704#define MAX_CHUNK_SIZE (1 << 20)
705
Brett Cannond0aeda82014-08-22 14:23:20 -0400706/*[clinic input]
707pyexpat.xmlparser.Parse
708
709 data: object
Serhiy Storchaka8b2e8b62015-05-30 11:30:39 +0300710 isfinal: int(c_default="0") = False
Brett Cannond0aeda82014-08-22 14:23:20 -0400711 /
712
713Parse XML data.
714
715`isfinal' should be true at end of input.
716[clinic start generated code]*/
717
Brett Cannond0aeda82014-08-22 14:23:20 -0400718static PyObject *
Larry Hastings89964c42015-04-14 18:07:59 -0400719pyexpat_xmlparser_Parse_impl(xmlparseobject *self, PyObject *data,
Serhiy Storchaka8b2e8b62015-05-30 11:30:39 +0300720 int isfinal)
721/*[clinic end generated code: output=f4db843dd1f4ed4b input=199d9e8e92ebbb4b]*/
Brett Cannond0aeda82014-08-22 14:23:20 -0400722{
Serhiy Storchaka43536e92013-02-04 18:26:15 +0200723 const char *s;
724 Py_ssize_t slen;
725 Py_buffer view;
726 int rc;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000727
Serhiy Storchaka43536e92013-02-04 18:26:15 +0200728 if (PyUnicode_Check(data)) {
Serhiy Storchaka43536e92013-02-04 18:26:15 +0200729 view.buf = NULL;
Serhiy Storchaka36b365c2013-02-04 18:28:01 +0200730 s = PyUnicode_AsUTF8AndSize(data, &slen);
731 if (s == NULL)
732 return NULL;
Serhiy Storchaka43536e92013-02-04 18:26:15 +0200733 /* Explicitly set UTF-8 encoding. Return code ignored. */
734 (void)XML_SetEncoding(self->itself, "utf-8");
735 }
736 else {
737 if (PyObject_GetBuffer(data, &view, PyBUF_SIMPLE) < 0)
738 return NULL;
739 s = view.buf;
740 slen = view.len;
741 }
742
743 while (slen > MAX_CHUNK_SIZE) {
744 rc = XML_Parse(self->itself, s, MAX_CHUNK_SIZE, 0);
745 if (!rc)
746 goto done;
747 s += MAX_CHUNK_SIZE;
748 slen -= MAX_CHUNK_SIZE;
749 }
Christian Heimesba723202013-11-22 00:46:18 +0100750 assert(MAX_CHUNK_SIZE < INT_MAX && slen < INT_MAX);
Serhiy Storchaka8b2e8b62015-05-30 11:30:39 +0300751 rc = XML_Parse(self->itself, s, (int)slen, isfinal);
Serhiy Storchaka43536e92013-02-04 18:26:15 +0200752
753done:
754 if (view.buf != NULL)
755 PyBuffer_Release(&view);
756 return get_parse_result(self, rc);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000757}
758
Fred Drakeca1f4262000-09-21 20:10:23 +0000759/* File reading copied from cPickle */
760
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000761#define BUF_SIZE 2048
762
Fred Drake0582df92000-07-12 04:49:00 +0000763static int
764readinst(char *buf, int buf_size, PyObject *meth)
765{
Victor Stinner95f1dfc2011-01-10 23:00:36 +0000766 PyObject *str;
767 Py_ssize_t len;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000768 char *ptr;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000769
Victor Stinner95f1dfc2011-01-10 23:00:36 +0000770 str = PyObject_CallFunction(meth, "n", buf_size);
Martin v. Löwis9171f022004-10-13 19:50:11 +0000771 if (str == NULL)
Victor Stinner95f1dfc2011-01-10 23:00:36 +0000772 goto error;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000773
Christian Heimes72b710a2008-05-26 13:28:38 +0000774 if (PyBytes_Check(str))
775 ptr = PyBytes_AS_STRING(str);
Christian Heimes9c4756e2008-05-26 13:22:05 +0000776 else if (PyByteArray_Check(str))
777 ptr = PyByteArray_AS_STRING(str);
Guido van Rossum98297ee2007-11-06 21:34:58 +0000778 else {
Fred Drake71b63ff2002-06-28 22:29:01 +0000779 PyErr_Format(PyExc_TypeError,
Guido van Rossum4ca94712007-07-23 17:42:32 +0000780 "read() did not return a bytes object (type=%.400s)",
Christian Heimes90aa7642007-12-19 02:45:37 +0000781 Py_TYPE(str)->tp_name);
Victor Stinner95f1dfc2011-01-10 23:00:36 +0000782 goto error;
Fred Drake0582df92000-07-12 04:49:00 +0000783 }
Christian Heimes90aa7642007-12-19 02:45:37 +0000784 len = Py_SIZE(str);
Fred Drake0582df92000-07-12 04:49:00 +0000785 if (len > buf_size) {
786 PyErr_Format(PyExc_ValueError,
787 "read() returned too much data: "
Victor Stinner9d6f9362011-01-04 22:00:04 +0000788 "%i bytes requested, %zd returned",
Fred Drake0582df92000-07-12 04:49:00 +0000789 buf_size, len);
Victor Stinner95f1dfc2011-01-10 23:00:36 +0000790 goto error;
Fred Drake0582df92000-07-12 04:49:00 +0000791 }
Guido van Rossum98297ee2007-11-06 21:34:58 +0000792 memcpy(buf, ptr, len);
Victor Stinner95f1dfc2011-01-10 23:00:36 +0000793 Py_DECREF(str);
794 /* len <= buf_size <= INT_MAX */
Victor Stinner0fcab4a2011-01-04 12:59:15 +0000795 return (int)len;
Victor Stinner95f1dfc2011-01-10 23:00:36 +0000796
797error:
798 Py_XDECREF(str);
799 return -1;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000800}
801
Brett Cannond0aeda82014-08-22 14:23:20 -0400802/*[clinic input]
803pyexpat.xmlparser.ParseFile
804
805 file: object
806 /
807
808Parse XML data from file-like object.
809[clinic start generated code]*/
810
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000811static PyObject *
Brett Cannond0aeda82014-08-22 14:23:20 -0400812pyexpat_xmlparser_ParseFile(xmlparseobject *self, PyObject *file)
Serhiy Storchaka1009bf12015-04-03 23:53:51 +0300813/*[clinic end generated code: output=2adc6a13100cc42b input=fbb5a12b6038d735]*/
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000814{
Fred Drake0582df92000-07-12 04:49:00 +0000815 int rv = 1;
Fred Drake0582df92000-07-12 04:49:00 +0000816 PyObject *readmethod = NULL;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200817 _Py_IDENTIFIER(read);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000818
Brett Cannond0aeda82014-08-22 14:23:20 -0400819 readmethod = _PyObject_GetAttrId(file, &PyId_read);
Benjamin Peterson4e7f2852010-08-08 16:54:58 +0000820 if (readmethod == NULL) {
Benjamin Peterson4e7f2852010-08-08 16:54:58 +0000821 PyErr_SetString(PyExc_TypeError,
822 "argument must have 'read' attribute");
823 return NULL;
Fred Drake0582df92000-07-12 04:49:00 +0000824 }
825 for (;;) {
826 int bytes_read;
827 void *buf = XML_GetBuffer(self->itself, BUF_SIZE);
Fred Drake7b6caff2003-07-21 17:05:56 +0000828 if (buf == NULL) {
Fred Drakef239c6d2003-07-21 17:22:43 +0000829 Py_XDECREF(readmethod);
Ned Deilye7d532f2014-03-27 16:39:58 -0700830 return get_parse_result(self, 0);
Fred Drake7b6caff2003-07-21 17:05:56 +0000831 }
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000832
Benjamin Peterson4e7f2852010-08-08 16:54:58 +0000833 bytes_read = readinst(buf, BUF_SIZE, readmethod);
834 if (bytes_read < 0) {
835 Py_DECREF(readmethod);
836 return NULL;
Fred Drake0582df92000-07-12 04:49:00 +0000837 }
838 rv = XML_ParseBuffer(self->itself, bytes_read, bytes_read == 0);
Fred Drake7b6caff2003-07-21 17:05:56 +0000839 if (PyErr_Occurred()) {
840 Py_XDECREF(readmethod);
Fred Drake0582df92000-07-12 04:49:00 +0000841 return NULL;
Fred Drake7b6caff2003-07-21 17:05:56 +0000842 }
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000843
Fred Drake0582df92000-07-12 04:49:00 +0000844 if (!rv || bytes_read == 0)
845 break;
846 }
Fred Drake7b6caff2003-07-21 17:05:56 +0000847 Py_XDECREF(readmethod);
Fred Drake71b63ff2002-06-28 22:29:01 +0000848 return get_parse_result(self, rv);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000849}
850
Brett Cannond0aeda82014-08-22 14:23:20 -0400851/*[clinic input]
852pyexpat.xmlparser.SetBase
853
854 base: str
855 /
856
857Set the base URL for the parser.
858[clinic start generated code]*/
859
Brett Cannond0aeda82014-08-22 14:23:20 -0400860static PyObject *
861pyexpat_xmlparser_SetBase_impl(xmlparseobject *self, const char *base)
Serhiy Storchaka1009bf12015-04-03 23:53:51 +0300862/*[clinic end generated code: output=c212ddceb607b539 input=c684e5de895ee1a8]*/
Brett Cannond0aeda82014-08-22 14:23:20 -0400863{
Fred Drake0582df92000-07-12 04:49:00 +0000864 if (!XML_SetBase(self->itself, base)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000865 return PyErr_NoMemory();
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000866 }
Brett Cannond0aeda82014-08-22 14:23:20 -0400867 Py_RETURN_NONE;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000868}
869
Brett Cannond0aeda82014-08-22 14:23:20 -0400870/*[clinic input]
871pyexpat.xmlparser.GetBase
872
873Return base URL string for the parser.
874[clinic start generated code]*/
875
Brett Cannond0aeda82014-08-22 14:23:20 -0400876static PyObject *
877pyexpat_xmlparser_GetBase_impl(xmlparseobject *self)
Serhiy Storchaka1009bf12015-04-03 23:53:51 +0300878/*[clinic end generated code: output=2886cb21f9a8739a input=918d71c38009620e]*/
Fred Drake0582df92000-07-12 04:49:00 +0000879{
Fred Drake0582df92000-07-12 04:49:00 +0000880 return Py_BuildValue("z", XML_GetBase(self->itself));
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +0000881}
882
Brett Cannond0aeda82014-08-22 14:23:20 -0400883/*[clinic input]
884pyexpat.xmlparser.GetInputContext
885
886Return the untranslated text of the input that caused the current event.
887
888If the event was generated by a large amount of text (such as a start tag
889for an element with many attributes), not all of the text may be available.
890[clinic start generated code]*/
891
Brett Cannond0aeda82014-08-22 14:23:20 -0400892static PyObject *
893pyexpat_xmlparser_GetInputContext_impl(xmlparseobject *self)
Serhiy Storchaka1009bf12015-04-03 23:53:51 +0300894/*[clinic end generated code: output=a88026d683fc22cc input=034df8712db68379]*/
Fred Drakebd6101c2001-02-14 18:29:45 +0000895{
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000896 if (self->in_callback) {
897 int offset, size;
898 const char *buffer
899 = XML_GetInputContext(self->itself, &offset, &size);
Fred Drakebd6101c2001-02-14 18:29:45 +0000900
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000901 if (buffer != NULL)
Christian Heimes72b710a2008-05-26 13:28:38 +0000902 return PyBytes_FromStringAndSize(buffer + offset,
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000903 size - offset);
904 else
905 Py_RETURN_NONE;
Fred Drakebd6101c2001-02-14 18:29:45 +0000906 }
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000907 else
908 Py_RETURN_NONE;
Fred Drakebd6101c2001-02-14 18:29:45 +0000909}
Fred Drakebd6101c2001-02-14 18:29:45 +0000910
Brett Cannond0aeda82014-08-22 14:23:20 -0400911/*[clinic input]
912pyexpat.xmlparser.ExternalEntityParserCreate
913
Larry Hastingsdbfdc382015-05-04 06:59:46 -0700914 context: str(accept={str, NoneType})
Brett Cannond0aeda82014-08-22 14:23:20 -0400915 encoding: str = NULL
916 /
917
918Create a parser for parsing an external entity based on the information passed to the ExternalEntityRefHandler.
919[clinic start generated code]*/
920
Brett Cannond0aeda82014-08-22 14:23:20 -0400921static PyObject *
Larry Hastings89964c42015-04-14 18:07:59 -0400922pyexpat_xmlparser_ExternalEntityParserCreate_impl(xmlparseobject *self,
923 const char *context,
924 const char *encoding)
Larry Hastingsdbfdc382015-05-04 06:59:46 -0700925/*[clinic end generated code: output=535cda9d7a0fbcd6 input=b906714cc122c322]*/
Brett Cannond0aeda82014-08-22 14:23:20 -0400926{
Lars Gustäbel4a30a072000-09-24 20:50:52 +0000927 xmlparseobject *new_parser;
928 int i;
929
Martin v. Löwis894258c2001-09-23 10:20:10 +0000930 new_parser = PyObject_GC_New(xmlparseobject, &Xmlparsetype);
Fred Drake85d835f2001-02-08 15:39:08 +0000931 if (new_parser == NULL)
932 return NULL;
Fred Drake2a3d7db2002-06-28 22:56:48 +0000933 new_parser->buffer_size = self->buffer_size;
934 new_parser->buffer_used = 0;
Victor Stinnerb4ba9862010-09-10 22:25:19 +0000935 new_parser->buffer = NULL;
Fred Drake85d835f2001-02-08 15:39:08 +0000936 new_parser->ordered_attributes = self->ordered_attributes;
937 new_parser->specified_attributes = self->specified_attributes;
Fred Drakebd6101c2001-02-14 18:29:45 +0000938 new_parser->in_callback = 0;
Martin v. Löwis069dde22003-01-21 10:58:18 +0000939 new_parser->ns_prefixes = self->ns_prefixes;
Lars Gustäbel4a30a072000-09-24 20:50:52 +0000940 new_parser->itself = XML_ExternalEntityParserCreate(self->itself, context,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000941 encoding);
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000942 new_parser->handlers = 0;
Fred Drakeb91a36b2002-06-27 19:40:48 +0000943 new_parser->intern = self->intern;
944 Py_XINCREF(new_parser->intern);
Martin v. Löwis894258c2001-09-23 10:20:10 +0000945 PyObject_GC_Track(new_parser);
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000946
Victor Stinnerb4ba9862010-09-10 22:25:19 +0000947 if (self->buffer != NULL) {
Victor Stinnerb6404912013-07-07 16:21:41 +0200948 new_parser->buffer = PyMem_Malloc(new_parser->buffer_size);
Victor Stinnerb4ba9862010-09-10 22:25:19 +0000949 if (new_parser->buffer == NULL) {
950 Py_DECREF(new_parser);
951 return PyErr_NoMemory();
952 }
953 }
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000954 if (!new_parser->itself) {
Fred Drake85d835f2001-02-08 15:39:08 +0000955 Py_DECREF(new_parser);
956 return PyErr_NoMemory();
Lars Gustäbel4a30a072000-09-24 20:50:52 +0000957 }
958
959 XML_SetUserData(new_parser->itself, (void *)new_parser);
960
961 /* allocate and clear handlers first */
Fred Drake2a3d7db2002-06-28 22:56:48 +0000962 for (i = 0; handler_info[i].name != NULL; i++)
Fred Drake85d835f2001-02-08 15:39:08 +0000963 /* do nothing */;
Lars Gustäbel4a30a072000-09-24 20:50:52 +0000964
Serhiy Storchaka1a1ff292015-02-16 13:28:22 +0200965 new_parser->handlers = PyMem_New(PyObject *, i);
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000966 if (!new_parser->handlers) {
Fred Drake85d835f2001-02-08 15:39:08 +0000967 Py_DECREF(new_parser);
968 return PyErr_NoMemory();
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000969 }
Martin v. Löwis5b68ce32001-10-21 08:53:52 +0000970 clear_handlers(new_parser, 1);
Lars Gustäbel4a30a072000-09-24 20:50:52 +0000971
972 /* then copy handlers from self */
973 for (i = 0; handler_info[i].name != NULL; i++) {
Fred Drake71b63ff2002-06-28 22:29:01 +0000974 PyObject *handler = self->handlers[i];
975 if (handler != NULL) {
976 Py_INCREF(handler);
977 new_parser->handlers[i] = handler;
978 handler_info[i].setter(new_parser->itself,
Fred Drake85d835f2001-02-08 15:39:08 +0000979 handler_info[i].handler);
980 }
Lars Gustäbel4a30a072000-09-24 20:50:52 +0000981 }
Fred Drake71b63ff2002-06-28 22:29:01 +0000982 return (PyObject *)new_parser;
Lars Gustäbel4a30a072000-09-24 20:50:52 +0000983}
984
Brett Cannond0aeda82014-08-22 14:23:20 -0400985/*[clinic input]
986pyexpat.xmlparser.SetParamEntityParsing
Martin v. Löwis0078f6c2001-01-21 10:18:10 +0000987
Brett Cannond0aeda82014-08-22 14:23:20 -0400988 flag: int
989 /
990
991Controls parsing of parameter entities (including the external DTD subset).
992
993Possible flag values are XML_PARAM_ENTITY_PARSING_NEVER,
994XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE and
995XML_PARAM_ENTITY_PARSING_ALWAYS. Returns true if setting the flag
996was successful.
997[clinic start generated code]*/
998
Brett Cannond0aeda82014-08-22 14:23:20 -0400999static PyObject *
1000pyexpat_xmlparser_SetParamEntityParsing_impl(xmlparseobject *self, int flag)
Serhiy Storchaka1009bf12015-04-03 23:53:51 +03001001/*[clinic end generated code: output=18668ee8e760d64c input=8aea19b4b15e9af1]*/
Brett Cannond0aeda82014-08-22 14:23:20 -04001002{
1003 flag = XML_SetParamEntityParsing(self->itself, flag);
Christian Heimes217cfd12007-12-02 14:31:20 +00001004 return PyLong_FromLong(flag);
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001005}
1006
Martin v. Löwisc847f402003-01-21 11:09:21 +00001007
1008#if XML_COMBINED_VERSION >= 19505
Brett Cannond0aeda82014-08-22 14:23:20 -04001009/*[clinic input]
1010pyexpat.xmlparser.UseForeignDTD
1011
1012 flag: bool = True
1013 /
1014
1015Allows the application to provide an artificial external subset if one is not specified as part of the document instance.
1016
1017This readily allows the use of a 'default' document type controlled by the
1018application, while still getting the advantage of providing document type
1019information to the parser. 'flag' defaults to True if not provided.
1020[clinic start generated code]*/
1021
Brett Cannond0aeda82014-08-22 14:23:20 -04001022static PyObject *
1023pyexpat_xmlparser_UseForeignDTD_impl(xmlparseobject *self, int flag)
Serhiy Storchaka1009bf12015-04-03 23:53:51 +03001024/*[clinic end generated code: output=cfaa9aa50bb0f65c input=78144c519d116a6e]*/
Brett Cannond0aeda82014-08-22 14:23:20 -04001025{
Martin v. Löwis069dde22003-01-21 10:58:18 +00001026 enum XML_Error rc;
Brett Cannond0aeda82014-08-22 14:23:20 -04001027
Antoine Pitrou6f430e42012-08-15 23:18:25 +02001028 rc = XML_UseForeignDTD(self->itself, flag ? XML_TRUE : XML_FALSE);
Martin v. Löwis069dde22003-01-21 10:58:18 +00001029 if (rc != XML_ERROR_NONE) {
1030 return set_error(self, rc);
1031 }
1032 Py_INCREF(Py_None);
1033 return Py_None;
1034}
Martin v. Löwisc847f402003-01-21 11:09:21 +00001035#endif
Martin v. Löwis069dde22003-01-21 10:58:18 +00001036
Brett Cannond0aeda82014-08-22 14:23:20 -04001037/*[clinic input]
1038pyexpat.xmlparser.__dir__
1039[clinic start generated code]*/
1040
Brett Cannond0aeda82014-08-22 14:23:20 -04001041static PyObject *
1042pyexpat_xmlparser___dir___impl(xmlparseobject *self)
Serhiy Storchaka1009bf12015-04-03 23:53:51 +03001043/*[clinic end generated code: output=bc22451efb9e4d17 input=76aa455f2a661384]*/
Brett Cannond0aeda82014-08-22 14:23:20 -04001044{
1045#define APPEND(list, str) \
1046 do { \
1047 PyObject *o = PyUnicode_FromString(str); \
1048 if (o != NULL) \
1049 PyList_Append(list, o); \
1050 Py_XDECREF(o); \
1051 } while (0)
1052
1053 int i;
1054 PyObject *rc = PyList_New(0);
1055 if (!rc)
1056 return NULL;
1057 for (i = 0; handler_info[i].name != NULL; i++) {
1058 PyObject *o = get_handler_name(&handler_info[i]);
1059 if (o != NULL)
1060 PyList_Append(rc, o);
1061 Py_XDECREF(o);
1062 }
1063 APPEND(rc, "ErrorCode");
1064 APPEND(rc, "ErrorLineNumber");
1065 APPEND(rc, "ErrorColumnNumber");
1066 APPEND(rc, "ErrorByteIndex");
1067 APPEND(rc, "CurrentLineNumber");
1068 APPEND(rc, "CurrentColumnNumber");
1069 APPEND(rc, "CurrentByteIndex");
1070 APPEND(rc, "buffer_size");
1071 APPEND(rc, "buffer_text");
1072 APPEND(rc, "buffer_used");
1073 APPEND(rc, "namespace_prefixes");
1074 APPEND(rc, "ordered_attributes");
1075 APPEND(rc, "specified_attributes");
1076 APPEND(rc, "intern");
1077
1078#undef APPEND
1079
1080 if (PyErr_Occurred()) {
1081 Py_DECREF(rc);
1082 rc = NULL;
1083 }
1084
1085 return rc;
1086}
Amaury Forgeot d'Arcba4105c2008-07-02 21:41:01 +00001087
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001088static struct PyMethodDef xmlparse_methods[] = {
Brett Cannond0aeda82014-08-22 14:23:20 -04001089 PYEXPAT_XMLPARSER_PARSE_METHODDEF
1090 PYEXPAT_XMLPARSER_PARSEFILE_METHODDEF
1091 PYEXPAT_XMLPARSER_SETBASE_METHODDEF
1092 PYEXPAT_XMLPARSER_GETBASE_METHODDEF
1093 PYEXPAT_XMLPARSER_GETINPUTCONTEXT_METHODDEF
1094 PYEXPAT_XMLPARSER_EXTERNALENTITYPARSERCREATE_METHODDEF
1095 PYEXPAT_XMLPARSER_SETPARAMENTITYPARSING_METHODDEF
Martin v. Löwisc847f402003-01-21 11:09:21 +00001096#if XML_COMBINED_VERSION >= 19505
Brett Cannond0aeda82014-08-22 14:23:20 -04001097 PYEXPAT_XMLPARSER_USEFOREIGNDTD_METHODDEF
Martin v. Löwisc847f402003-01-21 11:09:21 +00001098#endif
Brett Cannond0aeda82014-08-22 14:23:20 -04001099 PYEXPAT_XMLPARSER___DIR___METHODDEF
1100 {NULL, NULL} /* sentinel */
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001101};
1102
1103/* ---------- */
1104
1105
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001106
Fred Drake71b63ff2002-06-28 22:29:01 +00001107/* pyexpat international encoding support.
1108 Make it as simple as possible.
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001109*/
1110
Fred Drake71b63ff2002-06-28 22:29:01 +00001111static int
1112PyUnknownEncodingHandler(void *encodingHandlerData,
1113 const XML_Char *name,
1114 XML_Encoding *info)
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001115{
Eli Bendersky6dc32b32013-05-25 05:25:48 -07001116 static unsigned char template_buffer[256] = {0};
1117 PyObject* u;
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001118 int i;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001119 void *data;
Eli Bendersky6dc32b32013-05-25 05:25:48 -07001120 unsigned int kind;
Fred Drake71b63ff2002-06-28 22:29:01 +00001121
Victor Stinner9e09c262013-07-18 23:17:01 +02001122 if (PyErr_Occurred())
1123 return XML_STATUS_ERROR;
1124
Eli Bendersky6dc32b32013-05-25 05:25:48 -07001125 if (template_buffer[1] == 0) {
1126 for (i = 0; i < 256; i++)
1127 template_buffer[i] = i;
Tim Peters63cb99e2001-02-17 18:12:50 +00001128 }
Eli Bendersky6dc32b32013-05-25 05:25:48 -07001129
1130 u = PyUnicode_Decode((char*) template_buffer, 256, name, "replace");
Christian Heimesb5821552013-06-29 20:43:13 +02001131 if (u == NULL || PyUnicode_READY(u)) {
Christian Heimes72172422013-06-29 21:49:27 +02001132 Py_XDECREF(u);
Eli Bendersky6dc32b32013-05-25 05:25:48 -07001133 return XML_STATUS_ERROR;
Christian Heimesb5821552013-06-29 20:43:13 +02001134 }
Eli Bendersky6dc32b32013-05-25 05:25:48 -07001135
1136 if (PyUnicode_GET_LENGTH(u) != 256) {
1137 Py_DECREF(u);
1138 PyErr_SetString(PyExc_ValueError,
1139 "multi-byte encodings are not supported");
1140 return XML_STATUS_ERROR;
1141 }
1142
1143 kind = PyUnicode_KIND(u);
1144 data = PyUnicode_DATA(u);
1145 for (i = 0; i < 256; i++) {
1146 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
1147 if (ch != Py_UNICODE_REPLACEMENT_CHARACTER)
1148 info->map[i] = ch;
1149 else
1150 info->map[i] = -1;
1151 }
1152
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001153 info->data = NULL;
1154 info->convert = NULL;
1155 info->release = NULL;
Eli Bendersky6dc32b32013-05-25 05:25:48 -07001156 Py_DECREF(u);
1157
1158 return XML_STATUS_OK;
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001159}
1160
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001161
1162static PyObject *
Serhiy Storchaka20b39b22014-09-28 11:27:24 +03001163newxmlparseobject(const char *encoding, const char *namespace_separator, PyObject *intern)
Fred Drake0582df92000-07-12 04:49:00 +00001164{
1165 int i;
1166 xmlparseobject *self;
Fred Drake71b63ff2002-06-28 22:29:01 +00001167
Martin v. Löwis894258c2001-09-23 10:20:10 +00001168 self = PyObject_GC_New(xmlparseobject, &Xmlparsetype);
Fred Drake0582df92000-07-12 04:49:00 +00001169 if (self == NULL)
1170 return NULL;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001171
Fred Drake2a3d7db2002-06-28 22:56:48 +00001172 self->buffer = NULL;
1173 self->buffer_size = CHARACTER_DATA_BUFFER_SIZE;
1174 self->buffer_used = 0;
Fred Drake85d835f2001-02-08 15:39:08 +00001175 self->ordered_attributes = 0;
1176 self->specified_attributes = 0;
Fred Drakebd6101c2001-02-14 18:29:45 +00001177 self->in_callback = 0;
Martin v. Löwis069dde22003-01-21 10:58:18 +00001178 self->ns_prefixes = 0;
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001179 self->handlers = NULL;
Victor Stinner54b2d2e2013-07-15 17:15:57 +02001180 self->intern = intern;
1181 Py_XINCREF(self->intern);
1182 PyObject_GC_Track(self);
1183
Christian Heimesfa535f52013-07-07 17:35:11 +02001184 /* namespace_separator is either NULL or contains one char + \0 */
1185 self->itself = XML_ParserCreate_MM(encoding, &ExpatMemoryHandler,
1186 namespace_separator);
Victor Stinner54b2d2e2013-07-15 17:15:57 +02001187 if (self->itself == NULL) {
1188 PyErr_SetString(PyExc_RuntimeError,
1189 "XML_ParserCreate failed");
1190 Py_DECREF(self);
1191 return NULL;
1192 }
Gregory P. Smith25227712012-03-14 18:10:37 -07001193#if ((XML_MAJOR_VERSION >= 2) && (XML_MINOR_VERSION >= 1)) || defined(XML_HAS_SET_HASH_SALT)
1194 /* This feature was added upstream in libexpat 2.1.0. Our expat copy
1195 * has a backport of this feature where we also define XML_HAS_SET_HASH_SALT
1196 * to indicate that we can still use it. */
Gregory P. Smith8e91cf62012-03-14 14:26:55 -07001197 XML_SetHashSalt(self->itself,
Christian Heimes985ecdc2013-11-20 11:46:18 +01001198 (unsigned long)_Py_HashSecret.expat.hashsalt);
Gregory P. Smith25227712012-03-14 18:10:37 -07001199#endif
Fred Drake0582df92000-07-12 04:49:00 +00001200 XML_SetUserData(self->itself, (void *)self);
Fred Drake7c75bf22002-07-01 14:02:31 +00001201 XML_SetUnknownEncodingHandler(self->itself,
1202 (XML_UnknownEncodingHandler) PyUnknownEncodingHandler, NULL);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001203
Fred Drake2a3d7db2002-06-28 22:56:48 +00001204 for (i = 0; handler_info[i].name != NULL; i++)
Fred Drake0582df92000-07-12 04:49:00 +00001205 /* do nothing */;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001206
Serhiy Storchaka1a1ff292015-02-16 13:28:22 +02001207 self->handlers = PyMem_New(PyObject *, i);
Fred Drake7c75bf22002-07-01 14:02:31 +00001208 if (!self->handlers) {
Fred Drake71b63ff2002-06-28 22:29:01 +00001209 Py_DECREF(self);
1210 return PyErr_NoMemory();
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001211 }
Martin v. Löwis5b68ce32001-10-21 08:53:52 +00001212 clear_handlers(self, 1);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001213
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001214 return (PyObject*)self;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001215}
1216
1217
1218static void
Fred Drake0582df92000-07-12 04:49:00 +00001219xmlparse_dealloc(xmlparseobject *self)
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001220{
Fred Drake0582df92000-07-12 04:49:00 +00001221 int i;
Martin v. Löwis894258c2001-09-23 10:20:10 +00001222 PyObject_GC_UnTrack(self);
Fred Drake85d835f2001-02-08 15:39:08 +00001223 if (self->itself != NULL)
Fred Drake0582df92000-07-12 04:49:00 +00001224 XML_ParserFree(self->itself);
1225 self->itself = NULL;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001226
Fred Drake85d835f2001-02-08 15:39:08 +00001227 if (self->handlers != NULL) {
Fred Drakecde79132001-04-25 16:01:30 +00001228 PyObject *temp;
Fred Drake85d835f2001-02-08 15:39:08 +00001229 for (i = 0; handler_info[i].name != NULL; i++) {
Fred Drakecde79132001-04-25 16:01:30 +00001230 temp = self->handlers[i];
1231 self->handlers[i] = NULL;
1232 Py_XDECREF(temp);
Fred Drake85d835f2001-02-08 15:39:08 +00001233 }
Victor Stinnerb6404912013-07-07 16:21:41 +02001234 PyMem_Free(self->handlers);
Fred Drake71b63ff2002-06-28 22:29:01 +00001235 self->handlers = NULL;
Fred Drake0582df92000-07-12 04:49:00 +00001236 }
Fred Drake2a3d7db2002-06-28 22:56:48 +00001237 if (self->buffer != NULL) {
Victor Stinnerb6404912013-07-07 16:21:41 +02001238 PyMem_Free(self->buffer);
Fred Drake2a3d7db2002-06-28 22:56:48 +00001239 self->buffer = NULL;
1240 }
Fred Drakeb91a36b2002-06-27 19:40:48 +00001241 Py_XDECREF(self->intern);
Martin v. Löwis894258c2001-09-23 10:20:10 +00001242 PyObject_GC_Del(self);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001243}
1244
Fred Drake0582df92000-07-12 04:49:00 +00001245static int
Alexander Belopolskye239d232010-12-08 23:31:48 +00001246handlername2int(PyObject *name)
Fred Drake0582df92000-07-12 04:49:00 +00001247{
1248 int i;
Fred Drake71b63ff2002-06-28 22:29:01 +00001249 for (i = 0; handler_info[i].name != NULL; i++) {
Alexander Belopolskye239d232010-12-08 23:31:48 +00001250 if (PyUnicode_CompareWithASCIIString(
1251 name, handler_info[i].name) == 0) {
Fred Drake0582df92000-07-12 04:49:00 +00001252 return i;
1253 }
1254 }
1255 return -1;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001256}
1257
1258static PyObject *
Fred Drake71b63ff2002-06-28 22:29:01 +00001259get_pybool(int istrue)
1260{
1261 PyObject *result = istrue ? Py_True : Py_False;
1262 Py_INCREF(result);
1263 return result;
1264}
1265
1266static PyObject *
Amaury Forgeot d'Arcba4105c2008-07-02 21:41:01 +00001267xmlparse_getattro(xmlparseobject *self, PyObject *nameobj)
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001268{
Victor Stinner9e5bd6c2011-10-01 01:05:40 +02001269 Py_UCS4 first_char;
Amaury Forgeot d'Arcba4105c2008-07-02 21:41:01 +00001270 int handlernum = -1;
1271
Alexander Belopolskye239d232010-12-08 23:31:48 +00001272 if (!PyUnicode_Check(nameobj))
1273 goto generic;
Victor Stinner9e5bd6c2011-10-01 01:05:40 +02001274 if (PyUnicode_READY(nameobj))
1275 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001276
Alexander Belopolskye239d232010-12-08 23:31:48 +00001277 handlernum = handlername2int(nameobj);
Fred Drake71b63ff2002-06-28 22:29:01 +00001278
1279 if (handlernum != -1) {
1280 PyObject *result = self->handlers[handlernum];
1281 if (result == NULL)
1282 result = Py_None;
1283 Py_INCREF(result);
1284 return result;
1285 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001286
Victor Stinner9e5bd6c2011-10-01 01:05:40 +02001287 first_char = PyUnicode_READ_CHAR(nameobj, 0);
1288 if (first_char == 'E') {
Alexander Belopolskye239d232010-12-08 23:31:48 +00001289 if (PyUnicode_CompareWithASCIIString(nameobj, "ErrorCode") == 0)
Christian Heimes217cfd12007-12-02 14:31:20 +00001290 return PyLong_FromLong((long)
Fred Drake71b63ff2002-06-28 22:29:01 +00001291 XML_GetErrorCode(self->itself));
Alexander Belopolskye239d232010-12-08 23:31:48 +00001292 if (PyUnicode_CompareWithASCIIString(nameobj, "ErrorLineNumber") == 0)
Christian Heimes217cfd12007-12-02 14:31:20 +00001293 return PyLong_FromLong((long)
Fred Drake71b63ff2002-06-28 22:29:01 +00001294 XML_GetErrorLineNumber(self->itself));
Alexander Belopolskye239d232010-12-08 23:31:48 +00001295 if (PyUnicode_CompareWithASCIIString(nameobj, "ErrorColumnNumber") == 0)
Christian Heimes217cfd12007-12-02 14:31:20 +00001296 return PyLong_FromLong((long)
Fred Drake71b63ff2002-06-28 22:29:01 +00001297 XML_GetErrorColumnNumber(self->itself));
Alexander Belopolskye239d232010-12-08 23:31:48 +00001298 if (PyUnicode_CompareWithASCIIString(nameobj, "ErrorByteIndex") == 0)
Christian Heimes217cfd12007-12-02 14:31:20 +00001299 return PyLong_FromLong((long)
Fred Drake71b63ff2002-06-28 22:29:01 +00001300 XML_GetErrorByteIndex(self->itself));
1301 }
Victor Stinner9e5bd6c2011-10-01 01:05:40 +02001302 if (first_char == 'C') {
Alexander Belopolskye239d232010-12-08 23:31:48 +00001303 if (PyUnicode_CompareWithASCIIString(nameobj, "CurrentLineNumber") == 0)
Christian Heimes217cfd12007-12-02 14:31:20 +00001304 return PyLong_FromLong((long)
Dave Cole3203efb2004-08-26 00:37:31 +00001305 XML_GetCurrentLineNumber(self->itself));
Alexander Belopolskye239d232010-12-08 23:31:48 +00001306 if (PyUnicode_CompareWithASCIIString(nameobj, "CurrentColumnNumber") == 0)
Christian Heimes217cfd12007-12-02 14:31:20 +00001307 return PyLong_FromLong((long)
Dave Cole3203efb2004-08-26 00:37:31 +00001308 XML_GetCurrentColumnNumber(self->itself));
Alexander Belopolskye239d232010-12-08 23:31:48 +00001309 if (PyUnicode_CompareWithASCIIString(nameobj, "CurrentByteIndex") == 0)
Christian Heimes217cfd12007-12-02 14:31:20 +00001310 return PyLong_FromLong((long)
Dave Cole3203efb2004-08-26 00:37:31 +00001311 XML_GetCurrentByteIndex(self->itself));
1312 }
Victor Stinner9e5bd6c2011-10-01 01:05:40 +02001313 if (first_char == 'b') {
Alexander Belopolskye239d232010-12-08 23:31:48 +00001314 if (PyUnicode_CompareWithASCIIString(nameobj, "buffer_size") == 0)
Christian Heimes217cfd12007-12-02 14:31:20 +00001315 return PyLong_FromLong((long) self->buffer_size);
Alexander Belopolskye239d232010-12-08 23:31:48 +00001316 if (PyUnicode_CompareWithASCIIString(nameobj, "buffer_text") == 0)
Fred Drake2a3d7db2002-06-28 22:56:48 +00001317 return get_pybool(self->buffer != NULL);
Alexander Belopolskye239d232010-12-08 23:31:48 +00001318 if (PyUnicode_CompareWithASCIIString(nameobj, "buffer_used") == 0)
Christian Heimes217cfd12007-12-02 14:31:20 +00001319 return PyLong_FromLong((long) self->buffer_used);
Fred Drake2a3d7db2002-06-28 22:56:48 +00001320 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001321 if (PyUnicode_CompareWithASCIIString(nameobj, "namespace_prefixes") == 0)
Martin v. Löwis069dde22003-01-21 10:58:18 +00001322 return get_pybool(self->ns_prefixes);
Alexander Belopolskye239d232010-12-08 23:31:48 +00001323 if (PyUnicode_CompareWithASCIIString(nameobj, "ordered_attributes") == 0)
Fred Drake71b63ff2002-06-28 22:29:01 +00001324 return get_pybool(self->ordered_attributes);
Alexander Belopolskye239d232010-12-08 23:31:48 +00001325 if (PyUnicode_CompareWithASCIIString(nameobj, "specified_attributes") == 0)
Fred Drake71b63ff2002-06-28 22:29:01 +00001326 return get_pybool((long) self->specified_attributes);
Alexander Belopolskye239d232010-12-08 23:31:48 +00001327 if (PyUnicode_CompareWithASCIIString(nameobj, "intern") == 0) {
Fred Drakeb91a36b2002-06-27 19:40:48 +00001328 if (self->intern == NULL) {
1329 Py_INCREF(Py_None);
1330 return Py_None;
1331 }
1332 else {
1333 Py_INCREF(self->intern);
1334 return self->intern;
1335 }
1336 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001337 generic:
Amaury Forgeot d'Arcba4105c2008-07-02 21:41:01 +00001338 return PyObject_GenericGetAttr((PyObject*)self, nameobj);
Neal Norwitz8dfc4a92007-08-11 06:39:53 +00001339}
1340
Fred Drake6f987622000-08-25 18:03:30 +00001341static int
Alexander Belopolskye239d232010-12-08 23:31:48 +00001342sethandler(xmlparseobject *self, PyObject *name, PyObject* v)
Fred Drake0582df92000-07-12 04:49:00 +00001343{
1344 int handlernum = handlername2int(name);
Fred Drake71b63ff2002-06-28 22:29:01 +00001345 if (handlernum >= 0) {
1346 xmlhandler c_handler = NULL;
1347 PyObject *temp = self->handlers[handlernum];
1348
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001349 if (v == Py_None) {
1350 /* If this is the character data handler, and a character
1351 data handler is already active, we need to be more
1352 careful. What we can safely do is replace the existing
1353 character data handler callback function with a no-op
1354 function that will refuse to call Python. The downside
1355 is that this doesn't completely remove the character
1356 data handler from the C layer if there's any callback
1357 active, so Expat does a little more work than it
1358 otherwise would, but that's really an odd case. A more
1359 elaborate system of handlers and state could remove the
1360 C handler more effectively. */
1361 if (handlernum == CharacterData && self->in_callback)
1362 c_handler = noop_character_data_handler;
Fred Drake71b63ff2002-06-28 22:29:01 +00001363 v = NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001364 }
Fred Drake71b63ff2002-06-28 22:29:01 +00001365 else if (v != NULL) {
1366 Py_INCREF(v);
1367 c_handler = handler_info[handlernum].handler;
1368 }
Fred Drake0582df92000-07-12 04:49:00 +00001369 self->handlers[handlernum] = v;
Fred Drake71b63ff2002-06-28 22:29:01 +00001370 Py_XDECREF(temp);
1371 handler_info[handlernum].setter(self->itself, c_handler);
Fred Drake0582df92000-07-12 04:49:00 +00001372 return 1;
1373 }
1374 return 0;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001375}
1376
1377static int
Alexander Belopolskye239d232010-12-08 23:31:48 +00001378xmlparse_setattro(xmlparseobject *self, PyObject *name, PyObject *v)
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001379{
Fred Drake6f987622000-08-25 18:03:30 +00001380 /* Set attribute 'name' to value 'v'. v==NULL means delete */
Fred Drake85d835f2001-02-08 15:39:08 +00001381 if (v == NULL) {
Fred Drake6f987622000-08-25 18:03:30 +00001382 PyErr_SetString(PyExc_RuntimeError, "Cannot delete attribute");
1383 return -1;
1384 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001385 assert(PyUnicode_Check(name));
1386 if (PyUnicode_CompareWithASCIIString(name, "buffer_text") == 0) {
Antoine Pitrou6f430e42012-08-15 23:18:25 +02001387 int b = PyObject_IsTrue(v);
1388 if (b < 0)
1389 return -1;
1390 if (b) {
Fred Drake2a3d7db2002-06-28 22:56:48 +00001391 if (self->buffer == NULL) {
Victor Stinnerb6404912013-07-07 16:21:41 +02001392 self->buffer = PyMem_Malloc(self->buffer_size);
Fred Drake2a3d7db2002-06-28 22:56:48 +00001393 if (self->buffer == NULL) {
1394 PyErr_NoMemory();
1395 return -1;
1396 }
1397 self->buffer_used = 0;
1398 }
1399 }
1400 else if (self->buffer != NULL) {
1401 if (flush_character_buffer(self) < 0)
1402 return -1;
Victor Stinnerb6404912013-07-07 16:21:41 +02001403 PyMem_Free(self->buffer);
Fred Drake2a3d7db2002-06-28 22:56:48 +00001404 self->buffer = NULL;
1405 }
1406 return 0;
1407 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001408 if (PyUnicode_CompareWithASCIIString(name, "namespace_prefixes") == 0) {
Antoine Pitrou6f430e42012-08-15 23:18:25 +02001409 int b = PyObject_IsTrue(v);
1410 if (b < 0)
1411 return -1;
1412 self->ns_prefixes = b;
Martin v. Löwis069dde22003-01-21 10:58:18 +00001413 XML_SetReturnNSTriplet(self->itself, self->ns_prefixes);
1414 return 0;
1415 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001416 if (PyUnicode_CompareWithASCIIString(name, "ordered_attributes") == 0) {
Antoine Pitrou6f430e42012-08-15 23:18:25 +02001417 int b = PyObject_IsTrue(v);
1418 if (b < 0)
1419 return -1;
1420 self->ordered_attributes = b;
Fred Drake85d835f2001-02-08 15:39:08 +00001421 return 0;
1422 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001423 if (PyUnicode_CompareWithASCIIString(name, "specified_attributes") == 0) {
Antoine Pitrou6f430e42012-08-15 23:18:25 +02001424 int b = PyObject_IsTrue(v);
1425 if (b < 0)
1426 return -1;
1427 self->specified_attributes = b;
Fred Drake6f987622000-08-25 18:03:30 +00001428 return 0;
1429 }
Christian Heimes2380ac72008-01-09 00:17:24 +00001430
Alexander Belopolskye239d232010-12-08 23:31:48 +00001431 if (PyUnicode_CompareWithASCIIString(name, "buffer_size") == 0) {
Christian Heimes2380ac72008-01-09 00:17:24 +00001432 long new_buffer_size;
1433 if (!PyLong_Check(v)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001434 PyErr_SetString(PyExc_TypeError, "buffer_size must be an integer");
1435 return -1;
Christian Heimes2380ac72008-01-09 00:17:24 +00001436 }
1437
1438 new_buffer_size=PyLong_AS_LONG(v);
1439 /* trivial case -- no change */
1440 if (new_buffer_size == self->buffer_size) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001441 return 0;
Christian Heimes2380ac72008-01-09 00:17:24 +00001442 }
1443
1444 if (new_buffer_size <= 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001445 PyErr_SetString(PyExc_ValueError, "buffer_size must be greater than zero");
1446 return -1;
Christian Heimes2380ac72008-01-09 00:17:24 +00001447 }
1448
1449 /* check maximum */
1450 if (new_buffer_size > INT_MAX) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001451 char errmsg[100];
1452 sprintf(errmsg, "buffer_size must not be greater than %i", INT_MAX);
1453 PyErr_SetString(PyExc_ValueError, errmsg);
1454 return -1;
Christian Heimes2380ac72008-01-09 00:17:24 +00001455 }
1456
1457 if (self->buffer != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001458 /* there is already a buffer */
1459 if (self->buffer_used != 0) {
Christian Heimes09994a92013-07-20 22:41:58 +02001460 if (flush_character_buffer(self) < 0) {
1461 return -1;
1462 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001463 }
1464 /* free existing buffer */
Victor Stinnerb6404912013-07-07 16:21:41 +02001465 PyMem_Free(self->buffer);
Christian Heimes2380ac72008-01-09 00:17:24 +00001466 }
Victor Stinnerb6404912013-07-07 16:21:41 +02001467 self->buffer = PyMem_Malloc(new_buffer_size);
Christian Heimes2380ac72008-01-09 00:17:24 +00001468 if (self->buffer == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001469 PyErr_NoMemory();
1470 return -1;
1471 }
Christian Heimes2380ac72008-01-09 00:17:24 +00001472 self->buffer_size = new_buffer_size;
1473 return 0;
1474 }
1475
Alexander Belopolskye239d232010-12-08 23:31:48 +00001476 if (PyUnicode_CompareWithASCIIString(name, "CharacterDataHandler") == 0) {
Fred Drake2a3d7db2002-06-28 22:56:48 +00001477 /* If we're changing the character data handler, flush all
1478 * cached data with the old handler. Not sure there's a
1479 * "right" thing to do, though, but this probably won't
1480 * happen.
1481 */
1482 if (flush_character_buffer(self) < 0)
1483 return -1;
1484 }
Fred Drake6f987622000-08-25 18:03:30 +00001485 if (sethandler(self, name, v)) {
1486 return 0;
1487 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001488 PyErr_SetObject(PyExc_AttributeError, name);
Fred Drake6f987622000-08-25 18:03:30 +00001489 return -1;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001490}
1491
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001492static int
1493xmlparse_traverse(xmlparseobject *op, visitproc visit, void *arg)
1494{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001495 int i;
1496 for (i = 0; handler_info[i].name != NULL; i++)
1497 Py_VISIT(op->handlers[i]);
Fred Drakecde79132001-04-25 16:01:30 +00001498 return 0;
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001499}
1500
1501static int
1502xmlparse_clear(xmlparseobject *op)
1503{
Martin v. Löwis5b68ce32001-10-21 08:53:52 +00001504 clear_handlers(op, 0);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001505 Py_CLEAR(op->intern);
Fred Drakecde79132001-04-25 16:01:30 +00001506 return 0;
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001507}
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001508
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001509PyDoc_STRVAR(Xmlparsetype__doc__, "XML parser");
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001510
1511static PyTypeObject Xmlparsetype = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001512 PyVarObject_HEAD_INIT(NULL, 0)
1513 "pyexpat.xmlparser", /*tp_name*/
Antoine Pitrou23683ef2011-01-04 00:00:31 +00001514 sizeof(xmlparseobject), /*tp_basicsize*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001515 0, /*tp_itemsize*/
1516 /* methods */
1517 (destructor)xmlparse_dealloc, /*tp_dealloc*/
1518 (printfunc)0, /*tp_print*/
1519 0, /*tp_getattr*/
Alexander Belopolskye239d232010-12-08 23:31:48 +00001520 0, /*tp_setattr*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001521 0, /*tp_reserved*/
1522 (reprfunc)0, /*tp_repr*/
1523 0, /*tp_as_number*/
1524 0, /*tp_as_sequence*/
1525 0, /*tp_as_mapping*/
1526 (hashfunc)0, /*tp_hash*/
1527 (ternaryfunc)0, /*tp_call*/
1528 (reprfunc)0, /*tp_str*/
1529 (getattrofunc)xmlparse_getattro, /* tp_getattro */
Alexander Belopolskye239d232010-12-08 23:31:48 +00001530 (setattrofunc)xmlparse_setattro, /* tp_setattro */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001531 0, /* tp_as_buffer */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001532 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /*tp_flags*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001533 Xmlparsetype__doc__, /* tp_doc - Documentation string */
1534 (traverseproc)xmlparse_traverse, /* tp_traverse */
1535 (inquiry)xmlparse_clear, /* tp_clear */
1536 0, /* tp_richcompare */
1537 0, /* tp_weaklistoffset */
1538 0, /* tp_iter */
1539 0, /* tp_iternext */
1540 xmlparse_methods, /* tp_methods */
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001541};
1542
1543/* End of code for xmlparser objects */
1544/* -------------------------------------------------------- */
1545
Brett Cannond0aeda82014-08-22 14:23:20 -04001546/*[clinic input]
1547pyexpat.ParserCreate
1548
Larry Hastingsdbfdc382015-05-04 06:59:46 -07001549 encoding: str(accept={str, NoneType}) = NULL
1550 namespace_separator: str(accept={str, NoneType}) = NULL
Brett Cannond0aeda82014-08-22 14:23:20 -04001551 intern: object = NULL
1552
1553Return a new XML parser object.
1554[clinic start generated code]*/
1555
Brett Cannond0aeda82014-08-22 14:23:20 -04001556static PyObject *
Larry Hastings89964c42015-04-14 18:07:59 -04001557pyexpat_ParserCreate_impl(PyModuleDef *module, const char *encoding,
1558 const char *namespace_separator, PyObject *intern)
Larry Hastingsdbfdc382015-05-04 06:59:46 -07001559/*[clinic end generated code: output=81fccd233e1743a8 input=23d29704acad385d]*/
Brett Cannond0aeda82014-08-22 14:23:20 -04001560{
Fred Drakeb91a36b2002-06-27 19:40:48 +00001561 PyObject *result;
1562 int intern_decref = 0;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001563
Fred Drakecde79132001-04-25 16:01:30 +00001564 if (namespace_separator != NULL
1565 && strlen(namespace_separator) > 1) {
1566 PyErr_SetString(PyExc_ValueError,
1567 "namespace_separator must be at most one"
1568 " character, omitted, or None");
1569 return NULL;
1570 }
Fred Drakeb91a36b2002-06-27 19:40:48 +00001571 /* Explicitly passing None means no interning is desired.
1572 Not passing anything means that a new dictionary is used. */
1573 if (intern == Py_None)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001574 intern = NULL;
Fred Drakeb91a36b2002-06-27 19:40:48 +00001575 else if (intern == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001576 intern = PyDict_New();
1577 if (!intern)
1578 return NULL;
1579 intern_decref = 1;
Fred Drake71b63ff2002-06-28 22:29:01 +00001580 }
Fred Drakeb91a36b2002-06-27 19:40:48 +00001581 else if (!PyDict_Check(intern)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001582 PyErr_SetString(PyExc_TypeError, "intern must be a dictionary");
1583 return NULL;
Fred Drakeb91a36b2002-06-27 19:40:48 +00001584 }
1585
Serhiy Storchaka20b39b22014-09-28 11:27:24 +03001586 result = newxmlparseobject(encoding, namespace_separator, intern);
Fred Drakeb91a36b2002-06-27 19:40:48 +00001587 if (intern_decref) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001588 Py_DECREF(intern);
Fred Drakeb91a36b2002-06-27 19:40:48 +00001589 }
1590 return result;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001591}
1592
Brett Cannond0aeda82014-08-22 14:23:20 -04001593/*[clinic input]
1594pyexpat.ErrorString
1595
1596 code: long
1597 /
1598
1599Returns string error for given number.
1600[clinic start generated code]*/
1601
Brett Cannond0aeda82014-08-22 14:23:20 -04001602static PyObject *
1603pyexpat_ErrorString_impl(PyModuleDef *module, long code)
Serhiy Storchaka1009bf12015-04-03 23:53:51 +03001604/*[clinic end generated code: output=d87668108b6868e5 input=cc67de010d9e62b3]*/
Brett Cannond0aeda82014-08-22 14:23:20 -04001605{
Fred Drake0582df92000-07-12 04:49:00 +00001606 return Py_BuildValue("z", XML_ErrorString((int)code));
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001607}
1608
1609/* List of methods defined in the module */
1610
1611static struct PyMethodDef pyexpat_methods[] = {
Brett Cannond0aeda82014-08-22 14:23:20 -04001612 PYEXPAT_PARSERCREATE_METHODDEF
1613 PYEXPAT_ERRORSTRING_METHODDEF
1614 {NULL, NULL} /* sentinel */
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001615};
1616
Andrew M. Kuchlingbeba0562000-06-27 00:33:30 +00001617/* Module docstring */
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001618
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001619PyDoc_STRVAR(pyexpat_module_documentation,
1620"Python wrapper for Expat parser.");
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001621
Fred Drakecde79132001-04-25 16:01:30 +00001622/* Initialization function for the module */
1623
1624#ifndef MODULE_NAME
1625#define MODULE_NAME "pyexpat"
1626#endif
1627
1628#ifndef MODULE_INITFUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001629#define MODULE_INITFUNC PyInit_pyexpat
Fred Drakecde79132001-04-25 16:01:30 +00001630#endif
1631
Martin v. Löwis1a214512008-06-11 05:26:20 +00001632static struct PyModuleDef pyexpatmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001633 PyModuleDef_HEAD_INIT,
1634 MODULE_NAME,
1635 pyexpat_module_documentation,
1636 -1,
1637 pyexpat_methods,
1638 NULL,
1639 NULL,
1640 NULL,
1641 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00001642};
1643
Martin v. Löwis069dde22003-01-21 10:58:18 +00001644PyMODINIT_FUNC
1645MODULE_INITFUNC(void)
Fred Drake0582df92000-07-12 04:49:00 +00001646{
1647 PyObject *m, *d;
Neal Norwitz392c5be2007-08-25 17:20:32 +00001648 PyObject *errmod_name = PyUnicode_FromString(MODULE_NAME ".errors");
Fred Drake85d835f2001-02-08 15:39:08 +00001649 PyObject *errors_module;
1650 PyObject *modelmod_name;
1651 PyObject *model_module;
Fred Drake0582df92000-07-12 04:49:00 +00001652 PyObject *sys_modules;
Georg Brandlb4dac712010-10-15 14:46:48 +00001653 PyObject *tmpnum, *tmpstr;
1654 PyObject *codes_dict;
1655 PyObject *rev_codes_dict;
1656 int res;
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001657 static struct PyExpat_CAPI capi;
Georg Brandlb4dac712010-10-15 14:46:48 +00001658 PyObject *capi_object;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001659
Fred Drake6f987622000-08-25 18:03:30 +00001660 if (errmod_name == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001661 return NULL;
Neal Norwitz392c5be2007-08-25 17:20:32 +00001662 modelmod_name = PyUnicode_FromString(MODULE_NAME ".model");
Fred Drake85d835f2001-02-08 15:39:08 +00001663 if (modelmod_name == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001664 return NULL;
Fred Drake6f987622000-08-25 18:03:30 +00001665
Amaury Forgeot d'Arcba4105c2008-07-02 21:41:01 +00001666 if (PyType_Ready(&Xmlparsetype) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001667 return NULL;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001668
Fred Drake0582df92000-07-12 04:49:00 +00001669 /* Create the module and add the functions */
Martin v. Löwis1a214512008-06-11 05:26:20 +00001670 m = PyModule_Create(&pyexpatmodule);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00001671 if (m == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001672 return NULL;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001673
Fred Drake0582df92000-07-12 04:49:00 +00001674 /* Add some symbolic constants to the module */
Fred Drakebd6101c2001-02-14 18:29:45 +00001675 if (ErrorObject == NULL) {
1676 ErrorObject = PyErr_NewException("xml.parsers.expat.ExpatError",
Fred Drake93adb692000-09-23 04:55:48 +00001677 NULL, NULL);
Fred Drakebd6101c2001-02-14 18:29:45 +00001678 if (ErrorObject == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001679 return NULL;
Fred Drakebd6101c2001-02-14 18:29:45 +00001680 }
1681 Py_INCREF(ErrorObject);
Fred Drake93adb692000-09-23 04:55:48 +00001682 PyModule_AddObject(m, "error", ErrorObject);
Fred Drakebd6101c2001-02-14 18:29:45 +00001683 Py_INCREF(ErrorObject);
1684 PyModule_AddObject(m, "ExpatError", ErrorObject);
Fred Drake4ba298c2000-10-29 04:57:53 +00001685 Py_INCREF(&Xmlparsetype);
1686 PyModule_AddObject(m, "XMLParserType", (PyObject *) &Xmlparsetype);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001687
Fred Drake738293d2000-12-21 17:25:07 +00001688 PyModule_AddStringConstant(m, "EXPAT_VERSION",
Serhiy Storchaka20b39b22014-09-28 11:27:24 +03001689 XML_ExpatVersion());
Fred Drake85d835f2001-02-08 15:39:08 +00001690 {
1691 XML_Expat_Version info = XML_ExpatVersionInfo();
1692 PyModule_AddObject(m, "version_info",
1693 Py_BuildValue("(iii)", info.major,
1694 info.minor, info.micro));
1695 }
Fred Drake0582df92000-07-12 04:49:00 +00001696 /* XXX When Expat supports some way of figuring out how it was
Fred Drake71b63ff2002-06-28 22:29:01 +00001697 compiled, this should check and set native_encoding
1698 appropriately.
Fred Drake0582df92000-07-12 04:49:00 +00001699 */
Fred Drake93adb692000-09-23 04:55:48 +00001700 PyModule_AddStringConstant(m, "native_encoding", "UTF-8");
Fred Drakec23b5232000-08-24 21:57:43 +00001701
Fred Drake85d835f2001-02-08 15:39:08 +00001702 sys_modules = PySys_GetObject("modules");
Fred Drake93adb692000-09-23 04:55:48 +00001703 d = PyModule_GetDict(m);
Fred Drake6f987622000-08-25 18:03:30 +00001704 errors_module = PyDict_GetItem(d, errmod_name);
1705 if (errors_module == NULL) {
Fred Drakecde79132001-04-25 16:01:30 +00001706 errors_module = PyModule_New(MODULE_NAME ".errors");
Fred Drake6f987622000-08-25 18:03:30 +00001707 if (errors_module != NULL) {
Fred Drake6f987622000-08-25 18:03:30 +00001708 PyDict_SetItem(sys_modules, errmod_name, errors_module);
Fred Drake93adb692000-09-23 04:55:48 +00001709 /* gives away the reference to errors_module */
1710 PyModule_AddObject(m, "errors", errors_module);
Fred Drakec23b5232000-08-24 21:57:43 +00001711 }
1712 }
Fred Drake6f987622000-08-25 18:03:30 +00001713 Py_DECREF(errmod_name);
Fred Drake85d835f2001-02-08 15:39:08 +00001714 model_module = PyDict_GetItem(d, modelmod_name);
1715 if (model_module == NULL) {
Fred Drakecde79132001-04-25 16:01:30 +00001716 model_module = PyModule_New(MODULE_NAME ".model");
Fred Drake85d835f2001-02-08 15:39:08 +00001717 if (model_module != NULL) {
1718 PyDict_SetItem(sys_modules, modelmod_name, model_module);
1719 /* gives away the reference to model_module */
1720 PyModule_AddObject(m, "model", model_module);
1721 }
1722 }
1723 Py_DECREF(modelmod_name);
1724 if (errors_module == NULL || model_module == NULL)
1725 /* Don't core dump later! */
Martin v. Löwis1a214512008-06-11 05:26:20 +00001726 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001727
Martin v. Löwisc847f402003-01-21 11:09:21 +00001728#if XML_COMBINED_VERSION > 19505
Martin v. Löwis069dde22003-01-21 10:58:18 +00001729 {
1730 const XML_Feature *features = XML_GetFeatureList();
1731 PyObject *list = PyList_New(0);
1732 if (list == NULL)
1733 /* just ignore it */
1734 PyErr_Clear();
1735 else {
1736 int i = 0;
1737 for (; features[i].feature != XML_FEATURE_END; ++i) {
1738 int ok;
1739 PyObject *item = Py_BuildValue("si", features[i].name,
1740 features[i].value);
1741 if (item == NULL) {
1742 Py_DECREF(list);
1743 list = NULL;
1744 break;
1745 }
1746 ok = PyList_Append(list, item);
1747 Py_DECREF(item);
1748 if (ok < 0) {
1749 PyErr_Clear();
1750 break;
1751 }
1752 }
1753 if (list != NULL)
1754 PyModule_AddObject(m, "features", list);
1755 }
1756 }
Martin v. Löwisc847f402003-01-21 11:09:21 +00001757#endif
Fred Drake6f987622000-08-25 18:03:30 +00001758
Georg Brandlb4dac712010-10-15 14:46:48 +00001759 codes_dict = PyDict_New();
1760 rev_codes_dict = PyDict_New();
1761 if (codes_dict == NULL || rev_codes_dict == NULL) {
1762 Py_XDECREF(codes_dict);
1763 Py_XDECREF(rev_codes_dict);
1764 return NULL;
1765 }
Victor Stinner0fcab4a2011-01-04 12:59:15 +00001766
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001767#define MYCONST(name) \
Georg Brandlb4dac712010-10-15 14:46:48 +00001768 if (PyModule_AddStringConstant(errors_module, #name, \
Serhiy Storchaka20b39b22014-09-28 11:27:24 +03001769 XML_ErrorString(name)) < 0) \
Georg Brandlb4dac712010-10-15 14:46:48 +00001770 return NULL; \
1771 tmpnum = PyLong_FromLong(name); \
1772 if (tmpnum == NULL) return NULL; \
1773 res = PyDict_SetItemString(codes_dict, \
1774 XML_ErrorString(name), tmpnum); \
1775 if (res < 0) return NULL; \
1776 tmpstr = PyUnicode_FromString(XML_ErrorString(name)); \
1777 if (tmpstr == NULL) return NULL; \
1778 res = PyDict_SetItem(rev_codes_dict, tmpnum, tmpstr); \
1779 Py_DECREF(tmpstr); \
1780 Py_DECREF(tmpnum); \
1781 if (res < 0) return NULL; \
Fred Drake7bd9f412000-07-04 23:51:31 +00001782
Fred Drake0582df92000-07-12 04:49:00 +00001783 MYCONST(XML_ERROR_NO_MEMORY);
1784 MYCONST(XML_ERROR_SYNTAX);
1785 MYCONST(XML_ERROR_NO_ELEMENTS);
1786 MYCONST(XML_ERROR_INVALID_TOKEN);
1787 MYCONST(XML_ERROR_UNCLOSED_TOKEN);
1788 MYCONST(XML_ERROR_PARTIAL_CHAR);
1789 MYCONST(XML_ERROR_TAG_MISMATCH);
1790 MYCONST(XML_ERROR_DUPLICATE_ATTRIBUTE);
1791 MYCONST(XML_ERROR_JUNK_AFTER_DOC_ELEMENT);
1792 MYCONST(XML_ERROR_PARAM_ENTITY_REF);
1793 MYCONST(XML_ERROR_UNDEFINED_ENTITY);
1794 MYCONST(XML_ERROR_RECURSIVE_ENTITY_REF);
1795 MYCONST(XML_ERROR_ASYNC_ENTITY);
1796 MYCONST(XML_ERROR_BAD_CHAR_REF);
1797 MYCONST(XML_ERROR_BINARY_ENTITY_REF);
1798 MYCONST(XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF);
1799 MYCONST(XML_ERROR_MISPLACED_XML_PI);
1800 MYCONST(XML_ERROR_UNKNOWN_ENCODING);
1801 MYCONST(XML_ERROR_INCORRECT_ENCODING);
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001802 MYCONST(XML_ERROR_UNCLOSED_CDATA_SECTION);
1803 MYCONST(XML_ERROR_EXTERNAL_ENTITY_HANDLING);
1804 MYCONST(XML_ERROR_NOT_STANDALONE);
Fred Drake283b6702004-08-04 22:28:16 +00001805 MYCONST(XML_ERROR_UNEXPECTED_STATE);
1806 MYCONST(XML_ERROR_ENTITY_DECLARED_IN_PE);
1807 MYCONST(XML_ERROR_FEATURE_REQUIRES_XML_DTD);
1808 MYCONST(XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING);
1809 /* Added in Expat 1.95.7. */
1810 MYCONST(XML_ERROR_UNBOUND_PREFIX);
1811 /* Added in Expat 1.95.8. */
1812 MYCONST(XML_ERROR_UNDECLARING_PREFIX);
1813 MYCONST(XML_ERROR_INCOMPLETE_PE);
1814 MYCONST(XML_ERROR_XML_DECL);
1815 MYCONST(XML_ERROR_TEXT_DECL);
1816 MYCONST(XML_ERROR_PUBLICID);
1817 MYCONST(XML_ERROR_SUSPENDED);
1818 MYCONST(XML_ERROR_NOT_SUSPENDED);
1819 MYCONST(XML_ERROR_ABORTED);
1820 MYCONST(XML_ERROR_FINISHED);
1821 MYCONST(XML_ERROR_SUSPEND_PE);
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001822
Georg Brandlb4dac712010-10-15 14:46:48 +00001823 if (PyModule_AddStringConstant(errors_module, "__doc__",
1824 "Constants used to describe "
1825 "error conditions.") < 0)
1826 return NULL;
Fred Drake85d835f2001-02-08 15:39:08 +00001827
Georg Brandlb4dac712010-10-15 14:46:48 +00001828 if (PyModule_AddObject(errors_module, "codes", codes_dict) < 0)
1829 return NULL;
1830 if (PyModule_AddObject(errors_module, "messages", rev_codes_dict) < 0)
1831 return NULL;
Victor Stinner0fcab4a2011-01-04 12:59:15 +00001832
Fred Drake93adb692000-09-23 04:55:48 +00001833#undef MYCONST
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001834
Fred Drake85d835f2001-02-08 15:39:08 +00001835#define MYCONST(c) PyModule_AddIntConstant(m, #c, c)
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001836 MYCONST(XML_PARAM_ENTITY_PARSING_NEVER);
1837 MYCONST(XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE);
1838 MYCONST(XML_PARAM_ENTITY_PARSING_ALWAYS);
Fred Drake85d835f2001-02-08 15:39:08 +00001839#undef MYCONST
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001840
Fred Drake85d835f2001-02-08 15:39:08 +00001841#define MYCONST(c) PyModule_AddIntConstant(model_module, #c, c)
1842 PyModule_AddStringConstant(model_module, "__doc__",
1843 "Constants used to interpret content model information.");
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001844
Fred Drake85d835f2001-02-08 15:39:08 +00001845 MYCONST(XML_CTYPE_EMPTY);
1846 MYCONST(XML_CTYPE_ANY);
1847 MYCONST(XML_CTYPE_MIXED);
1848 MYCONST(XML_CTYPE_NAME);
1849 MYCONST(XML_CTYPE_CHOICE);
1850 MYCONST(XML_CTYPE_SEQ);
1851
1852 MYCONST(XML_CQUANT_NONE);
1853 MYCONST(XML_CQUANT_OPT);
1854 MYCONST(XML_CQUANT_REP);
1855 MYCONST(XML_CQUANT_PLUS);
1856#undef MYCONST
Fredrik Lundhc3345042005-12-13 19:49:55 +00001857
1858 /* initialize pyexpat dispatch table */
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001859 capi.size = sizeof(capi);
Fredrik Lundhcc117db2005-12-13 21:55:36 +00001860 capi.magic = PyExpat_CAPI_MAGIC;
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001861 capi.MAJOR_VERSION = XML_MAJOR_VERSION;
1862 capi.MINOR_VERSION = XML_MINOR_VERSION;
1863 capi.MICRO_VERSION = XML_MICRO_VERSION;
1864 capi.ErrorString = XML_ErrorString;
Fredrik Lundhcc117db2005-12-13 21:55:36 +00001865 capi.GetErrorCode = XML_GetErrorCode;
1866 capi.GetErrorColumnNumber = XML_GetErrorColumnNumber;
1867 capi.GetErrorLineNumber = XML_GetErrorLineNumber;
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001868 capi.Parse = XML_Parse;
1869 capi.ParserCreate_MM = XML_ParserCreate_MM;
1870 capi.ParserFree = XML_ParserFree;
1871 capi.SetCharacterDataHandler = XML_SetCharacterDataHandler;
1872 capi.SetCommentHandler = XML_SetCommentHandler;
1873 capi.SetDefaultHandlerExpand = XML_SetDefaultHandlerExpand;
1874 capi.SetElementHandler = XML_SetElementHandler;
1875 capi.SetNamespaceDeclHandler = XML_SetNamespaceDeclHandler;
1876 capi.SetProcessingInstructionHandler = XML_SetProcessingInstructionHandler;
1877 capi.SetUnknownEncodingHandler = XML_SetUnknownEncodingHandler;
1878 capi.SetUserData = XML_SetUserData;
Eli Bendersky2b6b73e2012-06-01 11:32:34 +03001879 capi.SetStartDoctypeDeclHandler = XML_SetStartDoctypeDeclHandler;
Serhiy Storchaka66d53fa2013-05-22 17:07:51 +03001880 capi.SetEncoding = XML_SetEncoding;
Eli Bendersky6dc32b32013-05-25 05:25:48 -07001881 capi.DefaultUnknownEncodingHandler = PyUnknownEncodingHandler;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001882
Benjamin Petersonb173f782009-05-05 22:31:58 +00001883 /* export using capsule */
1884 capi_object = PyCapsule_New(&capi, PyExpat_CAPSULE_NAME, NULL);
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001885 if (capi_object)
1886 PyModule_AddObject(m, "expat_CAPI", capi_object);
Martin v. Löwis1a214512008-06-11 05:26:20 +00001887 return m;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001888}
1889
Fred Drake6f987622000-08-25 18:03:30 +00001890static void
Martin v. Löwis5b68ce32001-10-21 08:53:52 +00001891clear_handlers(xmlparseobject *self, int initial)
Fred Drake0582df92000-07-12 04:49:00 +00001892{
Fred Drakecde79132001-04-25 16:01:30 +00001893 int i = 0;
1894 PyObject *temp;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001895
Fred Drake71b63ff2002-06-28 22:29:01 +00001896 for (; handler_info[i].name != NULL; i++) {
Martin v. Löwis5b68ce32001-10-21 08:53:52 +00001897 if (initial)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001898 self->handlers[i] = NULL;
1899 else {
Fred Drakecde79132001-04-25 16:01:30 +00001900 temp = self->handlers[i];
1901 self->handlers[i] = NULL;
1902 Py_XDECREF(temp);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001903 handler_info[i].setter(self->itself, NULL);
Fred Drakecde79132001-04-25 16:01:30 +00001904 }
Fred Drakecde79132001-04-25 16:01:30 +00001905 }
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001906}
1907
Tim Peters0c322792002-07-17 16:49:03 +00001908static struct HandlerInfo handler_info[] = {
Fred Drake71b63ff2002-06-28 22:29:01 +00001909 {"StartElementHandler",
1910 (xmlhandlersetter)XML_SetStartElementHandler,
Fred Drake0582df92000-07-12 04:49:00 +00001911 (xmlhandler)my_StartElementHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001912 {"EndElementHandler",
1913 (xmlhandlersetter)XML_SetEndElementHandler,
Fred Drake0582df92000-07-12 04:49:00 +00001914 (xmlhandler)my_EndElementHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001915 {"ProcessingInstructionHandler",
Fred Drake0582df92000-07-12 04:49:00 +00001916 (xmlhandlersetter)XML_SetProcessingInstructionHandler,
1917 (xmlhandler)my_ProcessingInstructionHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001918 {"CharacterDataHandler",
Fred Drake0582df92000-07-12 04:49:00 +00001919 (xmlhandlersetter)XML_SetCharacterDataHandler,
1920 (xmlhandler)my_CharacterDataHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001921 {"UnparsedEntityDeclHandler",
Fred Drake0582df92000-07-12 04:49:00 +00001922 (xmlhandlersetter)XML_SetUnparsedEntityDeclHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001923 (xmlhandler)my_UnparsedEntityDeclHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001924 {"NotationDeclHandler",
Fred Drake0582df92000-07-12 04:49:00 +00001925 (xmlhandlersetter)XML_SetNotationDeclHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001926 (xmlhandler)my_NotationDeclHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001927 {"StartNamespaceDeclHandler",
1928 (xmlhandlersetter)XML_SetStartNamespaceDeclHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001929 (xmlhandler)my_StartNamespaceDeclHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001930 {"EndNamespaceDeclHandler",
1931 (xmlhandlersetter)XML_SetEndNamespaceDeclHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001932 (xmlhandler)my_EndNamespaceDeclHandler},
Fred Drake0582df92000-07-12 04:49:00 +00001933 {"CommentHandler",
1934 (xmlhandlersetter)XML_SetCommentHandler,
1935 (xmlhandler)my_CommentHandler},
1936 {"StartCdataSectionHandler",
Fred Drake71b63ff2002-06-28 22:29:01 +00001937 (xmlhandlersetter)XML_SetStartCdataSectionHandler,
Fred Drake0582df92000-07-12 04:49:00 +00001938 (xmlhandler)my_StartCdataSectionHandler},
1939 {"EndCdataSectionHandler",
Fred Drake71b63ff2002-06-28 22:29:01 +00001940 (xmlhandlersetter)XML_SetEndCdataSectionHandler,
Fred Drake0582df92000-07-12 04:49:00 +00001941 (xmlhandler)my_EndCdataSectionHandler},
1942 {"DefaultHandler",
1943 (xmlhandlersetter)XML_SetDefaultHandler,
1944 (xmlhandler)my_DefaultHandler},
1945 {"DefaultHandlerExpand",
1946 (xmlhandlersetter)XML_SetDefaultHandlerExpand,
1947 (xmlhandler)my_DefaultHandlerExpandHandler},
1948 {"NotStandaloneHandler",
1949 (xmlhandlersetter)XML_SetNotStandaloneHandler,
1950 (xmlhandler)my_NotStandaloneHandler},
1951 {"ExternalEntityRefHandler",
1952 (xmlhandlersetter)XML_SetExternalEntityRefHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001953 (xmlhandler)my_ExternalEntityRefHandler},
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001954 {"StartDoctypeDeclHandler",
Fred Drake71b63ff2002-06-28 22:29:01 +00001955 (xmlhandlersetter)XML_SetStartDoctypeDeclHandler,
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001956 (xmlhandler)my_StartDoctypeDeclHandler},
1957 {"EndDoctypeDeclHandler",
Fred Drake71b63ff2002-06-28 22:29:01 +00001958 (xmlhandlersetter)XML_SetEndDoctypeDeclHandler,
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001959 (xmlhandler)my_EndDoctypeDeclHandler},
Fred Drake85d835f2001-02-08 15:39:08 +00001960 {"EntityDeclHandler",
1961 (xmlhandlersetter)XML_SetEntityDeclHandler,
1962 (xmlhandler)my_EntityDeclHandler},
1963 {"XmlDeclHandler",
1964 (xmlhandlersetter)XML_SetXmlDeclHandler,
1965 (xmlhandler)my_XmlDeclHandler},
1966 {"ElementDeclHandler",
1967 (xmlhandlersetter)XML_SetElementDeclHandler,
1968 (xmlhandler)my_ElementDeclHandler},
1969 {"AttlistDeclHandler",
1970 (xmlhandlersetter)XML_SetAttlistDeclHandler,
1971 (xmlhandler)my_AttlistDeclHandler},
Martin v. Löwisc847f402003-01-21 11:09:21 +00001972#if XML_COMBINED_VERSION >= 19504
Martin v. Löwis069dde22003-01-21 10:58:18 +00001973 {"SkippedEntityHandler",
1974 (xmlhandlersetter)XML_SetSkippedEntityHandler,
1975 (xmlhandler)my_SkippedEntityHandler},
Martin v. Löwisc847f402003-01-21 11:09:21 +00001976#endif
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001977
Fred Drake0582df92000-07-12 04:49:00 +00001978 {NULL, NULL, NULL} /* sentinel */
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001979};
Brett Cannond0aeda82014-08-22 14:23:20 -04001980
1981/*[clinic input]
1982dump buffer
1983[clinic start generated code]*/
Serhiy Storchaka1009bf12015-04-03 23:53:51 +03001984/*[clinic end generated code: output=da39a3ee5e6b4b0d input=524ce2e021e4eba6]*/