blob: 9a6da737fb361f4ef50c43f0e49b029a7fec120e [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 */
Serhiy Storchaka931331a2015-09-07 22:37:02 +03001381 if (!PyUnicode_Check(name)) {
1382 PyErr_Format(PyExc_TypeError,
1383 "attribute name must be string, not '%.200s'",
1384 name->ob_type->tp_name);
1385 return -1;
1386 }
Fred Drake85d835f2001-02-08 15:39:08 +00001387 if (v == NULL) {
Fred Drake6f987622000-08-25 18:03:30 +00001388 PyErr_SetString(PyExc_RuntimeError, "Cannot delete attribute");
1389 return -1;
1390 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001391 if (PyUnicode_CompareWithASCIIString(name, "buffer_text") == 0) {
Antoine Pitrou6f430e42012-08-15 23:18:25 +02001392 int b = PyObject_IsTrue(v);
1393 if (b < 0)
1394 return -1;
1395 if (b) {
Fred Drake2a3d7db2002-06-28 22:56:48 +00001396 if (self->buffer == NULL) {
Victor Stinnerb6404912013-07-07 16:21:41 +02001397 self->buffer = PyMem_Malloc(self->buffer_size);
Fred Drake2a3d7db2002-06-28 22:56:48 +00001398 if (self->buffer == NULL) {
1399 PyErr_NoMemory();
1400 return -1;
1401 }
1402 self->buffer_used = 0;
1403 }
1404 }
1405 else if (self->buffer != NULL) {
1406 if (flush_character_buffer(self) < 0)
1407 return -1;
Victor Stinnerb6404912013-07-07 16:21:41 +02001408 PyMem_Free(self->buffer);
Fred Drake2a3d7db2002-06-28 22:56:48 +00001409 self->buffer = NULL;
1410 }
1411 return 0;
1412 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001413 if (PyUnicode_CompareWithASCIIString(name, "namespace_prefixes") == 0) {
Antoine Pitrou6f430e42012-08-15 23:18:25 +02001414 int b = PyObject_IsTrue(v);
1415 if (b < 0)
1416 return -1;
1417 self->ns_prefixes = b;
Martin v. Löwis069dde22003-01-21 10:58:18 +00001418 XML_SetReturnNSTriplet(self->itself, self->ns_prefixes);
1419 return 0;
1420 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001421 if (PyUnicode_CompareWithASCIIString(name, "ordered_attributes") == 0) {
Antoine Pitrou6f430e42012-08-15 23:18:25 +02001422 int b = PyObject_IsTrue(v);
1423 if (b < 0)
1424 return -1;
1425 self->ordered_attributes = b;
Fred Drake85d835f2001-02-08 15:39:08 +00001426 return 0;
1427 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001428 if (PyUnicode_CompareWithASCIIString(name, "specified_attributes") == 0) {
Antoine Pitrou6f430e42012-08-15 23:18:25 +02001429 int b = PyObject_IsTrue(v);
1430 if (b < 0)
1431 return -1;
1432 self->specified_attributes = b;
Fred Drake6f987622000-08-25 18:03:30 +00001433 return 0;
1434 }
Christian Heimes2380ac72008-01-09 00:17:24 +00001435
Alexander Belopolskye239d232010-12-08 23:31:48 +00001436 if (PyUnicode_CompareWithASCIIString(name, "buffer_size") == 0) {
Christian Heimes2380ac72008-01-09 00:17:24 +00001437 long new_buffer_size;
1438 if (!PyLong_Check(v)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001439 PyErr_SetString(PyExc_TypeError, "buffer_size must be an integer");
1440 return -1;
Christian Heimes2380ac72008-01-09 00:17:24 +00001441 }
1442
Serhiy Storchakade5f9f42015-09-07 22:51:56 +03001443 new_buffer_size = PyLong_AsLong(v);
1444 if (new_buffer_size <= 0) {
1445 if (!PyErr_Occurred())
1446 PyErr_SetString(PyExc_ValueError, "buffer_size must be greater than zero");
1447 return -1;
1448 }
1449
Christian Heimes2380ac72008-01-09 00:17:24 +00001450 /* trivial case -- no change */
1451 if (new_buffer_size == self->buffer_size) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001452 return 0;
Christian Heimes2380ac72008-01-09 00:17:24 +00001453 }
1454
Christian Heimes2380ac72008-01-09 00:17:24 +00001455 /* check maximum */
1456 if (new_buffer_size > INT_MAX) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001457 char errmsg[100];
1458 sprintf(errmsg, "buffer_size must not be greater than %i", INT_MAX);
1459 PyErr_SetString(PyExc_ValueError, errmsg);
1460 return -1;
Christian Heimes2380ac72008-01-09 00:17:24 +00001461 }
1462
1463 if (self->buffer != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001464 /* there is already a buffer */
1465 if (self->buffer_used != 0) {
Christian Heimes09994a92013-07-20 22:41:58 +02001466 if (flush_character_buffer(self) < 0) {
1467 return -1;
1468 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001469 }
1470 /* free existing buffer */
Victor Stinnerb6404912013-07-07 16:21:41 +02001471 PyMem_Free(self->buffer);
Christian Heimes2380ac72008-01-09 00:17:24 +00001472 }
Victor Stinnerb6404912013-07-07 16:21:41 +02001473 self->buffer = PyMem_Malloc(new_buffer_size);
Christian Heimes2380ac72008-01-09 00:17:24 +00001474 if (self->buffer == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001475 PyErr_NoMemory();
1476 return -1;
1477 }
Christian Heimes2380ac72008-01-09 00:17:24 +00001478 self->buffer_size = new_buffer_size;
1479 return 0;
1480 }
1481
Alexander Belopolskye239d232010-12-08 23:31:48 +00001482 if (PyUnicode_CompareWithASCIIString(name, "CharacterDataHandler") == 0) {
Fred Drake2a3d7db2002-06-28 22:56:48 +00001483 /* If we're changing the character data handler, flush all
1484 * cached data with the old handler. Not sure there's a
1485 * "right" thing to do, though, but this probably won't
1486 * happen.
1487 */
1488 if (flush_character_buffer(self) < 0)
1489 return -1;
1490 }
Fred Drake6f987622000-08-25 18:03:30 +00001491 if (sethandler(self, name, v)) {
1492 return 0;
1493 }
Alexander Belopolskye239d232010-12-08 23:31:48 +00001494 PyErr_SetObject(PyExc_AttributeError, name);
Fred Drake6f987622000-08-25 18:03:30 +00001495 return -1;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001496}
1497
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001498static int
1499xmlparse_traverse(xmlparseobject *op, visitproc visit, void *arg)
1500{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001501 int i;
1502 for (i = 0; handler_info[i].name != NULL; i++)
1503 Py_VISIT(op->handlers[i]);
Fred Drakecde79132001-04-25 16:01:30 +00001504 return 0;
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001505}
1506
1507static int
1508xmlparse_clear(xmlparseobject *op)
1509{
Martin v. Löwis5b68ce32001-10-21 08:53:52 +00001510 clear_handlers(op, 0);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001511 Py_CLEAR(op->intern);
Fred Drakecde79132001-04-25 16:01:30 +00001512 return 0;
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001513}
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001514
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001515PyDoc_STRVAR(Xmlparsetype__doc__, "XML parser");
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001516
1517static PyTypeObject Xmlparsetype = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001518 PyVarObject_HEAD_INIT(NULL, 0)
1519 "pyexpat.xmlparser", /*tp_name*/
Antoine Pitrou23683ef2011-01-04 00:00:31 +00001520 sizeof(xmlparseobject), /*tp_basicsize*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001521 0, /*tp_itemsize*/
1522 /* methods */
1523 (destructor)xmlparse_dealloc, /*tp_dealloc*/
1524 (printfunc)0, /*tp_print*/
1525 0, /*tp_getattr*/
Alexander Belopolskye239d232010-12-08 23:31:48 +00001526 0, /*tp_setattr*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001527 0, /*tp_reserved*/
1528 (reprfunc)0, /*tp_repr*/
1529 0, /*tp_as_number*/
1530 0, /*tp_as_sequence*/
1531 0, /*tp_as_mapping*/
1532 (hashfunc)0, /*tp_hash*/
1533 (ternaryfunc)0, /*tp_call*/
1534 (reprfunc)0, /*tp_str*/
1535 (getattrofunc)xmlparse_getattro, /* tp_getattro */
Alexander Belopolskye239d232010-12-08 23:31:48 +00001536 (setattrofunc)xmlparse_setattro, /* tp_setattro */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001537 0, /* tp_as_buffer */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001538 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /*tp_flags*/
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001539 Xmlparsetype__doc__, /* tp_doc - Documentation string */
1540 (traverseproc)xmlparse_traverse, /* tp_traverse */
1541 (inquiry)xmlparse_clear, /* tp_clear */
1542 0, /* tp_richcompare */
1543 0, /* tp_weaklistoffset */
1544 0, /* tp_iter */
1545 0, /* tp_iternext */
1546 xmlparse_methods, /* tp_methods */
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001547};
1548
1549/* End of code for xmlparser objects */
1550/* -------------------------------------------------------- */
1551
Brett Cannond0aeda82014-08-22 14:23:20 -04001552/*[clinic input]
1553pyexpat.ParserCreate
1554
Larry Hastingsdbfdc382015-05-04 06:59:46 -07001555 encoding: str(accept={str, NoneType}) = NULL
1556 namespace_separator: str(accept={str, NoneType}) = NULL
Brett Cannond0aeda82014-08-22 14:23:20 -04001557 intern: object = NULL
1558
1559Return a new XML parser object.
1560[clinic start generated code]*/
1561
Brett Cannond0aeda82014-08-22 14:23:20 -04001562static PyObject *
Larry Hastings89964c42015-04-14 18:07:59 -04001563pyexpat_ParserCreate_impl(PyModuleDef *module, const char *encoding,
1564 const char *namespace_separator, PyObject *intern)
Larry Hastingsdbfdc382015-05-04 06:59:46 -07001565/*[clinic end generated code: output=81fccd233e1743a8 input=23d29704acad385d]*/
Brett Cannond0aeda82014-08-22 14:23:20 -04001566{
Fred Drakeb91a36b2002-06-27 19:40:48 +00001567 PyObject *result;
1568 int intern_decref = 0;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001569
Fred Drakecde79132001-04-25 16:01:30 +00001570 if (namespace_separator != NULL
1571 && strlen(namespace_separator) > 1) {
1572 PyErr_SetString(PyExc_ValueError,
1573 "namespace_separator must be at most one"
1574 " character, omitted, or None");
1575 return NULL;
1576 }
Fred Drakeb91a36b2002-06-27 19:40:48 +00001577 /* Explicitly passing None means no interning is desired.
1578 Not passing anything means that a new dictionary is used. */
1579 if (intern == Py_None)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001580 intern = NULL;
Fred Drakeb91a36b2002-06-27 19:40:48 +00001581 else if (intern == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001582 intern = PyDict_New();
1583 if (!intern)
1584 return NULL;
1585 intern_decref = 1;
Fred Drake71b63ff2002-06-28 22:29:01 +00001586 }
Fred Drakeb91a36b2002-06-27 19:40:48 +00001587 else if (!PyDict_Check(intern)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001588 PyErr_SetString(PyExc_TypeError, "intern must be a dictionary");
1589 return NULL;
Fred Drakeb91a36b2002-06-27 19:40:48 +00001590 }
1591
Serhiy Storchaka20b39b22014-09-28 11:27:24 +03001592 result = newxmlparseobject(encoding, namespace_separator, intern);
Fred Drakeb91a36b2002-06-27 19:40:48 +00001593 if (intern_decref) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001594 Py_DECREF(intern);
Fred Drakeb91a36b2002-06-27 19:40:48 +00001595 }
1596 return result;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001597}
1598
Brett Cannond0aeda82014-08-22 14:23:20 -04001599/*[clinic input]
1600pyexpat.ErrorString
1601
1602 code: long
1603 /
1604
1605Returns string error for given number.
1606[clinic start generated code]*/
1607
Brett Cannond0aeda82014-08-22 14:23:20 -04001608static PyObject *
1609pyexpat_ErrorString_impl(PyModuleDef *module, long code)
Serhiy Storchaka1009bf12015-04-03 23:53:51 +03001610/*[clinic end generated code: output=d87668108b6868e5 input=cc67de010d9e62b3]*/
Brett Cannond0aeda82014-08-22 14:23:20 -04001611{
Fred Drake0582df92000-07-12 04:49:00 +00001612 return Py_BuildValue("z", XML_ErrorString((int)code));
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001613}
1614
1615/* List of methods defined in the module */
1616
1617static struct PyMethodDef pyexpat_methods[] = {
Brett Cannond0aeda82014-08-22 14:23:20 -04001618 PYEXPAT_PARSERCREATE_METHODDEF
1619 PYEXPAT_ERRORSTRING_METHODDEF
1620 {NULL, NULL} /* sentinel */
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001621};
1622
Andrew M. Kuchlingbeba0562000-06-27 00:33:30 +00001623/* Module docstring */
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001624
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001625PyDoc_STRVAR(pyexpat_module_documentation,
1626"Python wrapper for Expat parser.");
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001627
Fred Drakecde79132001-04-25 16:01:30 +00001628/* Initialization function for the module */
1629
1630#ifndef MODULE_NAME
1631#define MODULE_NAME "pyexpat"
1632#endif
1633
1634#ifndef MODULE_INITFUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001635#define MODULE_INITFUNC PyInit_pyexpat
Fred Drakecde79132001-04-25 16:01:30 +00001636#endif
1637
Martin v. Löwis1a214512008-06-11 05:26:20 +00001638static struct PyModuleDef pyexpatmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001639 PyModuleDef_HEAD_INIT,
1640 MODULE_NAME,
1641 pyexpat_module_documentation,
1642 -1,
1643 pyexpat_methods,
1644 NULL,
1645 NULL,
1646 NULL,
1647 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00001648};
1649
Martin v. Löwis069dde22003-01-21 10:58:18 +00001650PyMODINIT_FUNC
1651MODULE_INITFUNC(void)
Fred Drake0582df92000-07-12 04:49:00 +00001652{
1653 PyObject *m, *d;
Neal Norwitz392c5be2007-08-25 17:20:32 +00001654 PyObject *errmod_name = PyUnicode_FromString(MODULE_NAME ".errors");
Fred Drake85d835f2001-02-08 15:39:08 +00001655 PyObject *errors_module;
1656 PyObject *modelmod_name;
1657 PyObject *model_module;
Fred Drake0582df92000-07-12 04:49:00 +00001658 PyObject *sys_modules;
Georg Brandlb4dac712010-10-15 14:46:48 +00001659 PyObject *tmpnum, *tmpstr;
1660 PyObject *codes_dict;
1661 PyObject *rev_codes_dict;
1662 int res;
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001663 static struct PyExpat_CAPI capi;
Georg Brandlb4dac712010-10-15 14:46:48 +00001664 PyObject *capi_object;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001665
Fred Drake6f987622000-08-25 18:03:30 +00001666 if (errmod_name == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001667 return NULL;
Neal Norwitz392c5be2007-08-25 17:20:32 +00001668 modelmod_name = PyUnicode_FromString(MODULE_NAME ".model");
Fred Drake85d835f2001-02-08 15:39:08 +00001669 if (modelmod_name == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001670 return NULL;
Fred Drake6f987622000-08-25 18:03:30 +00001671
Amaury Forgeot d'Arcba4105c2008-07-02 21:41:01 +00001672 if (PyType_Ready(&Xmlparsetype) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001673 return NULL;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001674
Fred Drake0582df92000-07-12 04:49:00 +00001675 /* Create the module and add the functions */
Martin v. Löwis1a214512008-06-11 05:26:20 +00001676 m = PyModule_Create(&pyexpatmodule);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00001677 if (m == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001678 return NULL;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001679
Fred Drake0582df92000-07-12 04:49:00 +00001680 /* Add some symbolic constants to the module */
Fred Drakebd6101c2001-02-14 18:29:45 +00001681 if (ErrorObject == NULL) {
1682 ErrorObject = PyErr_NewException("xml.parsers.expat.ExpatError",
Fred Drake93adb692000-09-23 04:55:48 +00001683 NULL, NULL);
Fred Drakebd6101c2001-02-14 18:29:45 +00001684 if (ErrorObject == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001685 return NULL;
Fred Drakebd6101c2001-02-14 18:29:45 +00001686 }
1687 Py_INCREF(ErrorObject);
Fred Drake93adb692000-09-23 04:55:48 +00001688 PyModule_AddObject(m, "error", ErrorObject);
Fred Drakebd6101c2001-02-14 18:29:45 +00001689 Py_INCREF(ErrorObject);
1690 PyModule_AddObject(m, "ExpatError", ErrorObject);
Fred Drake4ba298c2000-10-29 04:57:53 +00001691 Py_INCREF(&Xmlparsetype);
1692 PyModule_AddObject(m, "XMLParserType", (PyObject *) &Xmlparsetype);
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001693
Fred Drake738293d2000-12-21 17:25:07 +00001694 PyModule_AddStringConstant(m, "EXPAT_VERSION",
Serhiy Storchaka20b39b22014-09-28 11:27:24 +03001695 XML_ExpatVersion());
Fred Drake85d835f2001-02-08 15:39:08 +00001696 {
1697 XML_Expat_Version info = XML_ExpatVersionInfo();
1698 PyModule_AddObject(m, "version_info",
1699 Py_BuildValue("(iii)", info.major,
1700 info.minor, info.micro));
1701 }
Fred Drake0582df92000-07-12 04:49:00 +00001702 /* XXX When Expat supports some way of figuring out how it was
Fred Drake71b63ff2002-06-28 22:29:01 +00001703 compiled, this should check and set native_encoding
1704 appropriately.
Fred Drake0582df92000-07-12 04:49:00 +00001705 */
Fred Drake93adb692000-09-23 04:55:48 +00001706 PyModule_AddStringConstant(m, "native_encoding", "UTF-8");
Fred Drakec23b5232000-08-24 21:57:43 +00001707
Fred Drake85d835f2001-02-08 15:39:08 +00001708 sys_modules = PySys_GetObject("modules");
Fred Drake93adb692000-09-23 04:55:48 +00001709 d = PyModule_GetDict(m);
Fred Drake6f987622000-08-25 18:03:30 +00001710 errors_module = PyDict_GetItem(d, errmod_name);
1711 if (errors_module == NULL) {
Fred Drakecde79132001-04-25 16:01:30 +00001712 errors_module = PyModule_New(MODULE_NAME ".errors");
Fred Drake6f987622000-08-25 18:03:30 +00001713 if (errors_module != NULL) {
Fred Drake6f987622000-08-25 18:03:30 +00001714 PyDict_SetItem(sys_modules, errmod_name, errors_module);
Fred Drake93adb692000-09-23 04:55:48 +00001715 /* gives away the reference to errors_module */
1716 PyModule_AddObject(m, "errors", errors_module);
Fred Drakec23b5232000-08-24 21:57:43 +00001717 }
1718 }
Fred Drake6f987622000-08-25 18:03:30 +00001719 Py_DECREF(errmod_name);
Fred Drake85d835f2001-02-08 15:39:08 +00001720 model_module = PyDict_GetItem(d, modelmod_name);
1721 if (model_module == NULL) {
Fred Drakecde79132001-04-25 16:01:30 +00001722 model_module = PyModule_New(MODULE_NAME ".model");
Fred Drake85d835f2001-02-08 15:39:08 +00001723 if (model_module != NULL) {
1724 PyDict_SetItem(sys_modules, modelmod_name, model_module);
1725 /* gives away the reference to model_module */
1726 PyModule_AddObject(m, "model", model_module);
1727 }
1728 }
1729 Py_DECREF(modelmod_name);
1730 if (errors_module == NULL || model_module == NULL)
1731 /* Don't core dump later! */
Martin v. Löwis1a214512008-06-11 05:26:20 +00001732 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001733
Martin v. Löwisc847f402003-01-21 11:09:21 +00001734#if XML_COMBINED_VERSION > 19505
Martin v. Löwis069dde22003-01-21 10:58:18 +00001735 {
1736 const XML_Feature *features = XML_GetFeatureList();
1737 PyObject *list = PyList_New(0);
1738 if (list == NULL)
1739 /* just ignore it */
1740 PyErr_Clear();
1741 else {
1742 int i = 0;
1743 for (; features[i].feature != XML_FEATURE_END; ++i) {
1744 int ok;
1745 PyObject *item = Py_BuildValue("si", features[i].name,
1746 features[i].value);
1747 if (item == NULL) {
1748 Py_DECREF(list);
1749 list = NULL;
1750 break;
1751 }
1752 ok = PyList_Append(list, item);
1753 Py_DECREF(item);
1754 if (ok < 0) {
1755 PyErr_Clear();
1756 break;
1757 }
1758 }
1759 if (list != NULL)
1760 PyModule_AddObject(m, "features", list);
1761 }
1762 }
Martin v. Löwisc847f402003-01-21 11:09:21 +00001763#endif
Fred Drake6f987622000-08-25 18:03:30 +00001764
Georg Brandlb4dac712010-10-15 14:46:48 +00001765 codes_dict = PyDict_New();
1766 rev_codes_dict = PyDict_New();
1767 if (codes_dict == NULL || rev_codes_dict == NULL) {
1768 Py_XDECREF(codes_dict);
1769 Py_XDECREF(rev_codes_dict);
1770 return NULL;
1771 }
Victor Stinner0fcab4a2011-01-04 12:59:15 +00001772
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001773#define MYCONST(name) \
Georg Brandlb4dac712010-10-15 14:46:48 +00001774 if (PyModule_AddStringConstant(errors_module, #name, \
Serhiy Storchaka20b39b22014-09-28 11:27:24 +03001775 XML_ErrorString(name)) < 0) \
Georg Brandlb4dac712010-10-15 14:46:48 +00001776 return NULL; \
1777 tmpnum = PyLong_FromLong(name); \
1778 if (tmpnum == NULL) return NULL; \
1779 res = PyDict_SetItemString(codes_dict, \
1780 XML_ErrorString(name), tmpnum); \
1781 if (res < 0) return NULL; \
1782 tmpstr = PyUnicode_FromString(XML_ErrorString(name)); \
1783 if (tmpstr == NULL) return NULL; \
1784 res = PyDict_SetItem(rev_codes_dict, tmpnum, tmpstr); \
1785 Py_DECREF(tmpstr); \
1786 Py_DECREF(tmpnum); \
1787 if (res < 0) return NULL; \
Fred Drake7bd9f412000-07-04 23:51:31 +00001788
Fred Drake0582df92000-07-12 04:49:00 +00001789 MYCONST(XML_ERROR_NO_MEMORY);
1790 MYCONST(XML_ERROR_SYNTAX);
1791 MYCONST(XML_ERROR_NO_ELEMENTS);
1792 MYCONST(XML_ERROR_INVALID_TOKEN);
1793 MYCONST(XML_ERROR_UNCLOSED_TOKEN);
1794 MYCONST(XML_ERROR_PARTIAL_CHAR);
1795 MYCONST(XML_ERROR_TAG_MISMATCH);
1796 MYCONST(XML_ERROR_DUPLICATE_ATTRIBUTE);
1797 MYCONST(XML_ERROR_JUNK_AFTER_DOC_ELEMENT);
1798 MYCONST(XML_ERROR_PARAM_ENTITY_REF);
1799 MYCONST(XML_ERROR_UNDEFINED_ENTITY);
1800 MYCONST(XML_ERROR_RECURSIVE_ENTITY_REF);
1801 MYCONST(XML_ERROR_ASYNC_ENTITY);
1802 MYCONST(XML_ERROR_BAD_CHAR_REF);
1803 MYCONST(XML_ERROR_BINARY_ENTITY_REF);
1804 MYCONST(XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF);
1805 MYCONST(XML_ERROR_MISPLACED_XML_PI);
1806 MYCONST(XML_ERROR_UNKNOWN_ENCODING);
1807 MYCONST(XML_ERROR_INCORRECT_ENCODING);
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001808 MYCONST(XML_ERROR_UNCLOSED_CDATA_SECTION);
1809 MYCONST(XML_ERROR_EXTERNAL_ENTITY_HANDLING);
1810 MYCONST(XML_ERROR_NOT_STANDALONE);
Fred Drake283b6702004-08-04 22:28:16 +00001811 MYCONST(XML_ERROR_UNEXPECTED_STATE);
1812 MYCONST(XML_ERROR_ENTITY_DECLARED_IN_PE);
1813 MYCONST(XML_ERROR_FEATURE_REQUIRES_XML_DTD);
1814 MYCONST(XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING);
1815 /* Added in Expat 1.95.7. */
1816 MYCONST(XML_ERROR_UNBOUND_PREFIX);
1817 /* Added in Expat 1.95.8. */
1818 MYCONST(XML_ERROR_UNDECLARING_PREFIX);
1819 MYCONST(XML_ERROR_INCOMPLETE_PE);
1820 MYCONST(XML_ERROR_XML_DECL);
1821 MYCONST(XML_ERROR_TEXT_DECL);
1822 MYCONST(XML_ERROR_PUBLICID);
1823 MYCONST(XML_ERROR_SUSPENDED);
1824 MYCONST(XML_ERROR_NOT_SUSPENDED);
1825 MYCONST(XML_ERROR_ABORTED);
1826 MYCONST(XML_ERROR_FINISHED);
1827 MYCONST(XML_ERROR_SUSPEND_PE);
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001828
Georg Brandlb4dac712010-10-15 14:46:48 +00001829 if (PyModule_AddStringConstant(errors_module, "__doc__",
1830 "Constants used to describe "
1831 "error conditions.") < 0)
1832 return NULL;
Fred Drake85d835f2001-02-08 15:39:08 +00001833
Georg Brandlb4dac712010-10-15 14:46:48 +00001834 if (PyModule_AddObject(errors_module, "codes", codes_dict) < 0)
1835 return NULL;
1836 if (PyModule_AddObject(errors_module, "messages", rev_codes_dict) < 0)
1837 return NULL;
Victor Stinner0fcab4a2011-01-04 12:59:15 +00001838
Fred Drake93adb692000-09-23 04:55:48 +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(m, #c, c)
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001842 MYCONST(XML_PARAM_ENTITY_PARSING_NEVER);
1843 MYCONST(XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE);
1844 MYCONST(XML_PARAM_ENTITY_PARSING_ALWAYS);
Fred Drake85d835f2001-02-08 15:39:08 +00001845#undef MYCONST
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001846
Fred Drake85d835f2001-02-08 15:39:08 +00001847#define MYCONST(c) PyModule_AddIntConstant(model_module, #c, c)
1848 PyModule_AddStringConstant(model_module, "__doc__",
1849 "Constants used to interpret content model information.");
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001850
Fred Drake85d835f2001-02-08 15:39:08 +00001851 MYCONST(XML_CTYPE_EMPTY);
1852 MYCONST(XML_CTYPE_ANY);
1853 MYCONST(XML_CTYPE_MIXED);
1854 MYCONST(XML_CTYPE_NAME);
1855 MYCONST(XML_CTYPE_CHOICE);
1856 MYCONST(XML_CTYPE_SEQ);
1857
1858 MYCONST(XML_CQUANT_NONE);
1859 MYCONST(XML_CQUANT_OPT);
1860 MYCONST(XML_CQUANT_REP);
1861 MYCONST(XML_CQUANT_PLUS);
1862#undef MYCONST
Fredrik Lundhc3345042005-12-13 19:49:55 +00001863
1864 /* initialize pyexpat dispatch table */
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001865 capi.size = sizeof(capi);
Fredrik Lundhcc117db2005-12-13 21:55:36 +00001866 capi.magic = PyExpat_CAPI_MAGIC;
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001867 capi.MAJOR_VERSION = XML_MAJOR_VERSION;
1868 capi.MINOR_VERSION = XML_MINOR_VERSION;
1869 capi.MICRO_VERSION = XML_MICRO_VERSION;
1870 capi.ErrorString = XML_ErrorString;
Fredrik Lundhcc117db2005-12-13 21:55:36 +00001871 capi.GetErrorCode = XML_GetErrorCode;
1872 capi.GetErrorColumnNumber = XML_GetErrorColumnNumber;
1873 capi.GetErrorLineNumber = XML_GetErrorLineNumber;
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001874 capi.Parse = XML_Parse;
1875 capi.ParserCreate_MM = XML_ParserCreate_MM;
1876 capi.ParserFree = XML_ParserFree;
1877 capi.SetCharacterDataHandler = XML_SetCharacterDataHandler;
1878 capi.SetCommentHandler = XML_SetCommentHandler;
1879 capi.SetDefaultHandlerExpand = XML_SetDefaultHandlerExpand;
1880 capi.SetElementHandler = XML_SetElementHandler;
1881 capi.SetNamespaceDeclHandler = XML_SetNamespaceDeclHandler;
1882 capi.SetProcessingInstructionHandler = XML_SetProcessingInstructionHandler;
1883 capi.SetUnknownEncodingHandler = XML_SetUnknownEncodingHandler;
1884 capi.SetUserData = XML_SetUserData;
Eli Bendersky2b6b73e2012-06-01 11:32:34 +03001885 capi.SetStartDoctypeDeclHandler = XML_SetStartDoctypeDeclHandler;
Serhiy Storchaka66d53fa2013-05-22 17:07:51 +03001886 capi.SetEncoding = XML_SetEncoding;
Eli Bendersky6dc32b32013-05-25 05:25:48 -07001887 capi.DefaultUnknownEncodingHandler = PyUnknownEncodingHandler;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001888
Benjamin Petersonb173f782009-05-05 22:31:58 +00001889 /* export using capsule */
1890 capi_object = PyCapsule_New(&capi, PyExpat_CAPSULE_NAME, NULL);
Fredrik Lundhd7a42882005-12-13 20:43:04 +00001891 if (capi_object)
1892 PyModule_AddObject(m, "expat_CAPI", capi_object);
Martin v. Löwis1a214512008-06-11 05:26:20 +00001893 return m;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001894}
1895
Fred Drake6f987622000-08-25 18:03:30 +00001896static void
Martin v. Löwis5b68ce32001-10-21 08:53:52 +00001897clear_handlers(xmlparseobject *self, int initial)
Fred Drake0582df92000-07-12 04:49:00 +00001898{
Fred Drakecde79132001-04-25 16:01:30 +00001899 int i = 0;
1900 PyObject *temp;
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001901
Fred Drake71b63ff2002-06-28 22:29:01 +00001902 for (; handler_info[i].name != NULL; i++) {
Martin v. Löwis5b68ce32001-10-21 08:53:52 +00001903 if (initial)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001904 self->handlers[i] = NULL;
1905 else {
Fred Drakecde79132001-04-25 16:01:30 +00001906 temp = self->handlers[i];
1907 self->handlers[i] = NULL;
1908 Py_XDECREF(temp);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001909 handler_info[i].setter(self->itself, NULL);
Fred Drakecde79132001-04-25 16:01:30 +00001910 }
Fred Drakecde79132001-04-25 16:01:30 +00001911 }
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001912}
1913
Tim Peters0c322792002-07-17 16:49:03 +00001914static struct HandlerInfo handler_info[] = {
Fred Drake71b63ff2002-06-28 22:29:01 +00001915 {"StartElementHandler",
1916 (xmlhandlersetter)XML_SetStartElementHandler,
Fred Drake0582df92000-07-12 04:49:00 +00001917 (xmlhandler)my_StartElementHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001918 {"EndElementHandler",
1919 (xmlhandlersetter)XML_SetEndElementHandler,
Fred Drake0582df92000-07-12 04:49:00 +00001920 (xmlhandler)my_EndElementHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001921 {"ProcessingInstructionHandler",
Fred Drake0582df92000-07-12 04:49:00 +00001922 (xmlhandlersetter)XML_SetProcessingInstructionHandler,
1923 (xmlhandler)my_ProcessingInstructionHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001924 {"CharacterDataHandler",
Fred Drake0582df92000-07-12 04:49:00 +00001925 (xmlhandlersetter)XML_SetCharacterDataHandler,
1926 (xmlhandler)my_CharacterDataHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001927 {"UnparsedEntityDeclHandler",
Fred Drake0582df92000-07-12 04:49:00 +00001928 (xmlhandlersetter)XML_SetUnparsedEntityDeclHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001929 (xmlhandler)my_UnparsedEntityDeclHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001930 {"NotationDeclHandler",
Fred Drake0582df92000-07-12 04:49:00 +00001931 (xmlhandlersetter)XML_SetNotationDeclHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001932 (xmlhandler)my_NotationDeclHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001933 {"StartNamespaceDeclHandler",
1934 (xmlhandlersetter)XML_SetStartNamespaceDeclHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001935 (xmlhandler)my_StartNamespaceDeclHandler},
Fred Drake71b63ff2002-06-28 22:29:01 +00001936 {"EndNamespaceDeclHandler",
1937 (xmlhandlersetter)XML_SetEndNamespaceDeclHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001938 (xmlhandler)my_EndNamespaceDeclHandler},
Fred Drake0582df92000-07-12 04:49:00 +00001939 {"CommentHandler",
1940 (xmlhandlersetter)XML_SetCommentHandler,
1941 (xmlhandler)my_CommentHandler},
1942 {"StartCdataSectionHandler",
Fred Drake71b63ff2002-06-28 22:29:01 +00001943 (xmlhandlersetter)XML_SetStartCdataSectionHandler,
Fred Drake0582df92000-07-12 04:49:00 +00001944 (xmlhandler)my_StartCdataSectionHandler},
1945 {"EndCdataSectionHandler",
Fred Drake71b63ff2002-06-28 22:29:01 +00001946 (xmlhandlersetter)XML_SetEndCdataSectionHandler,
Fred Drake0582df92000-07-12 04:49:00 +00001947 (xmlhandler)my_EndCdataSectionHandler},
1948 {"DefaultHandler",
1949 (xmlhandlersetter)XML_SetDefaultHandler,
1950 (xmlhandler)my_DefaultHandler},
1951 {"DefaultHandlerExpand",
1952 (xmlhandlersetter)XML_SetDefaultHandlerExpand,
1953 (xmlhandler)my_DefaultHandlerExpandHandler},
1954 {"NotStandaloneHandler",
1955 (xmlhandlersetter)XML_SetNotStandaloneHandler,
1956 (xmlhandler)my_NotStandaloneHandler},
1957 {"ExternalEntityRefHandler",
1958 (xmlhandlersetter)XML_SetExternalEntityRefHandler,
Fred Drake2a3d7db2002-06-28 22:56:48 +00001959 (xmlhandler)my_ExternalEntityRefHandler},
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001960 {"StartDoctypeDeclHandler",
Fred Drake71b63ff2002-06-28 22:29:01 +00001961 (xmlhandlersetter)XML_SetStartDoctypeDeclHandler,
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001962 (xmlhandler)my_StartDoctypeDeclHandler},
1963 {"EndDoctypeDeclHandler",
Fred Drake71b63ff2002-06-28 22:29:01 +00001964 (xmlhandlersetter)XML_SetEndDoctypeDeclHandler,
Martin v. Löwis0078f6c2001-01-21 10:18:10 +00001965 (xmlhandler)my_EndDoctypeDeclHandler},
Fred Drake85d835f2001-02-08 15:39:08 +00001966 {"EntityDeclHandler",
1967 (xmlhandlersetter)XML_SetEntityDeclHandler,
1968 (xmlhandler)my_EntityDeclHandler},
1969 {"XmlDeclHandler",
1970 (xmlhandlersetter)XML_SetXmlDeclHandler,
1971 (xmlhandler)my_XmlDeclHandler},
1972 {"ElementDeclHandler",
1973 (xmlhandlersetter)XML_SetElementDeclHandler,
1974 (xmlhandler)my_ElementDeclHandler},
1975 {"AttlistDeclHandler",
1976 (xmlhandlersetter)XML_SetAttlistDeclHandler,
1977 (xmlhandler)my_AttlistDeclHandler},
Martin v. Löwisc847f402003-01-21 11:09:21 +00001978#if XML_COMBINED_VERSION >= 19504
Martin v. Löwis069dde22003-01-21 10:58:18 +00001979 {"SkippedEntityHandler",
1980 (xmlhandlersetter)XML_SetSkippedEntityHandler,
1981 (xmlhandler)my_SkippedEntityHandler},
Martin v. Löwisc847f402003-01-21 11:09:21 +00001982#endif
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001983
Fred Drake0582df92000-07-12 04:49:00 +00001984 {NULL, NULL, NULL} /* sentinel */
Andrew M. Kuchlingb7f10532000-03-31 15:43:31 +00001985};
Brett Cannond0aeda82014-08-22 14:23:20 -04001986
1987/*[clinic input]
1988dump buffer
1989[clinic start generated code]*/
Serhiy Storchaka1009bf12015-04-03 23:53:51 +03001990/*[clinic end generated code: output=da39a3ee5e6b4b0d input=524ce2e021e4eba6]*/