blob: 1a3e45774cb8f7c9e45606070d2caa5ad19fd1b2 [file] [log] [blame]
Guido van Rossumfeee4b92000-03-10 22:57:27 +00001/* ------------------------------------------------------------------------
2
3 Python Codec Registry and support functions
4
5Written by Marc-Andre Lemburg (mal@lemburg.com).
6
Guido van Rossum16b1ad92000-08-03 16:24:25 +00007Copyright (c) Corporation for National Research Initiatives.
Guido van Rossumfeee4b92000-03-10 22:57:27 +00008
9 ------------------------------------------------------------------------ */
10
11#include "Python.h"
12#include <ctype.h>
13
Guido van Rossumfeee4b92000-03-10 22:57:27 +000014/* --- Codec Registry ----------------------------------------------------- */
15
16/* Import the standard encodings package which will register the first
Guido van Rossum98297ee2007-11-06 21:34:58 +000017 codec search function.
Guido van Rossumfeee4b92000-03-10 22:57:27 +000018
19 This is done in a lazy way so that the Unicode implementation does
20 not downgrade startup time of scripts not needing it.
21
Guido van Rossumb95de4f2000-03-31 17:25:23 +000022 ImportErrors are silently ignored by this function. Only one try is
23 made.
Guido van Rossumfeee4b92000-03-10 22:57:27 +000024
25*/
26
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +000027static int _PyCodecRegistry_Init(void); /* Forward */
Guido van Rossumfeee4b92000-03-10 22:57:27 +000028
Guido van Rossumfeee4b92000-03-10 22:57:27 +000029int PyCodec_Register(PyObject *search_function)
30{
Nicholas Bastine5662ae2004-03-24 22:22:12 +000031 PyInterpreterState *interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +000032 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000033 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +000034 if (search_function == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000035 PyErr_BadArgument();
36 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +000037 }
38 if (!PyCallable_Check(search_function)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000039 PyErr_SetString(PyExc_TypeError, "argument must be callable");
40 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +000041 }
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +000042 return PyList_Append(interp->codec_search_path, search_function);
Guido van Rossumb95de4f2000-03-31 17:25:23 +000043
44 onError:
45 return -1;
Guido van Rossumfeee4b92000-03-10 22:57:27 +000046}
47
Guido van Rossum9e896b32000-04-05 20:11:21 +000048/* Convert a string to a normalized Python string: all characters are
49 converted to lower case, spaces are replaced with underscores. */
50
Guido van Rossumfeee4b92000-03-10 22:57:27 +000051static
Guido van Rossum9e896b32000-04-05 20:11:21 +000052PyObject *normalizestring(const char *string)
Guido van Rossumfeee4b92000-03-10 22:57:27 +000053{
Guido van Rossum33831132000-06-29 14:50:15 +000054 register size_t i;
Guido van Rossum582acec2000-06-28 22:07:35 +000055 size_t len = strlen(string);
Guido van Rossumfeee4b92000-03-10 22:57:27 +000056 char *p;
57 PyObject *v;
Guido van Rossum21431e82007-10-19 21:48:41 +000058
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000059 if (len > PY_SSIZE_T_MAX) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000060 PyErr_SetString(PyExc_OverflowError, "string is too large");
61 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000062 }
Guido van Rossum21431e82007-10-19 21:48:41 +000063
64 p = PyMem_Malloc(len + 1);
65 if (p == NULL)
66 return NULL;
Guido van Rossum9e896b32000-04-05 20:11:21 +000067 for (i = 0; i < len; i++) {
68 register char ch = string[i];
69 if (ch == ' ')
70 ch = '-';
71 else
Antoine Pitroucf9d3c02011-07-24 02:27:04 +020072 ch = Py_TOLOWER(Py_CHARMASK(ch));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000073 p[i] = ch;
Guido van Rossum9e896b32000-04-05 20:11:21 +000074 }
Guido van Rossum21431e82007-10-19 21:48:41 +000075 p[i] = '\0';
76 v = PyUnicode_FromString(p);
77 if (v == NULL)
78 return NULL;
79 PyMem_Free(p);
Guido van Rossumfeee4b92000-03-10 22:57:27 +000080 return v;
81}
82
83/* Lookup the given encoding and return a tuple providing the codec
84 facilities.
85
86 The encoding string is looked up converted to all lower-case
87 characters. This makes encodings looked up through this mechanism
88 effectively case-insensitive.
89
Guido van Rossum98297ee2007-11-06 21:34:58 +000090 If no codec is found, a LookupError is set and NULL returned.
Guido van Rossumb95de4f2000-03-31 17:25:23 +000091
92 As side effect, this tries to load the encodings package, if not
93 yet done. This is part of the lazy load strategy for the encodings
94 package.
95
96*/
Guido van Rossumfeee4b92000-03-10 22:57:27 +000097
98PyObject *_PyCodec_Lookup(const char *encoding)
99{
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000100 PyInterpreterState *interp;
Guido van Rossum5ba3c842000-03-24 20:52:23 +0000101 PyObject *result, *args = NULL, *v;
Thomas Wouters477c8d52006-05-27 19:21:47 +0000102 Py_ssize_t i, len;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000103
Fred Drake766de832000-05-09 19:55:59 +0000104 if (encoding == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000105 PyErr_BadArgument();
106 goto onError;
Fred Drake766de832000-05-09 19:55:59 +0000107 }
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000108
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000109 interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000110 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000111 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000112
Guido van Rossum9e896b32000-04-05 20:11:21 +0000113 /* Convert the encoding to a normalized Python string: all
Thomas Wouters7e474022000-07-16 12:04:32 +0000114 characters are converted to lower case, spaces and hyphens are
Guido van Rossum9e896b32000-04-05 20:11:21 +0000115 replaced with underscores. */
116 v = normalizestring(encoding);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000117 if (v == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000118 goto onError;
Guido van Rossum21431e82007-10-19 21:48:41 +0000119 PyUnicode_InternInPlace(&v);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000120
121 /* First, try to lookup the name in the registry dictionary */
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000122 result = PyDict_GetItem(interp->codec_search_cache, v);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000123 if (result != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000124 Py_INCREF(result);
125 Py_DECREF(v);
126 return result;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000127 }
Guido van Rossum98297ee2007-11-06 21:34:58 +0000128
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000129 /* Next, scan the search functions in order of registration */
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000130 args = PyTuple_New(1);
131 if (args == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000132 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000133 PyTuple_SET_ITEM(args,0,v);
Guido van Rossum5ba3c842000-03-24 20:52:23 +0000134
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000135 len = PyList_Size(interp->codec_search_path);
Guido van Rossum5ba3c842000-03-24 20:52:23 +0000136 if (len < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 goto onError;
Guido van Rossumb95de4f2000-03-31 17:25:23 +0000138 if (len == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000139 PyErr_SetString(PyExc_LookupError,
140 "no codec search functions registered: "
141 "can't find encoding");
142 goto onError;
Guido van Rossumb95de4f2000-03-31 17:25:23 +0000143 }
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000144
145 for (i = 0; i < len; i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000146 PyObject *func;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000147
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000148 func = PyList_GetItem(interp->codec_search_path, i);
149 if (func == NULL)
150 goto onError;
151 result = PyEval_CallObject(func, args);
152 if (result == NULL)
153 goto onError;
154 if (result == Py_None) {
155 Py_DECREF(result);
156 continue;
157 }
158 if (!PyTuple_Check(result) || PyTuple_GET_SIZE(result) != 4) {
159 PyErr_SetString(PyExc_TypeError,
160 "codec search functions must return 4-tuples");
161 Py_DECREF(result);
162 goto onError;
163 }
164 break;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000165 }
166 if (i == len) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000167 /* XXX Perhaps we should cache misses too ? */
168 PyErr_Format(PyExc_LookupError,
Martin v. Löwiseb42b022002-09-26 16:01:24 +0000169 "unknown encoding: %s", encoding);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000170 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000171 }
172
173 /* Cache and return the result */
Neal Norwitz9edcc2e2007-08-11 04:58:26 +0000174 if (PyDict_SetItem(interp->codec_search_cache, v, result) < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000175 Py_DECREF(result);
176 goto onError;
Neal Norwitz9edcc2e2007-08-11 04:58:26 +0000177 }
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000178 Py_DECREF(args);
179 return result;
180
181 onError:
182 Py_XDECREF(args);
183 return NULL;
184}
185
Marc-André Lemburgb2750b52008-06-06 12:18:17 +0000186/* Codec registry encoding check API. */
187
188int PyCodec_KnownEncoding(const char *encoding)
189{
190 PyObject *codecs;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000191
Marc-André Lemburgb2750b52008-06-06 12:18:17 +0000192 codecs = _PyCodec_Lookup(encoding);
193 if (!codecs) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000194 PyErr_Clear();
195 return 0;
Marc-André Lemburgb2750b52008-06-06 12:18:17 +0000196 }
197 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000198 Py_DECREF(codecs);
199 return 1;
Marc-André Lemburgb2750b52008-06-06 12:18:17 +0000200 }
201}
202
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000203static
204PyObject *args_tuple(PyObject *object,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000205 const char *errors)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000206{
207 PyObject *args;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000208
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000209 args = PyTuple_New(1 + (errors != NULL));
210 if (args == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000211 return NULL;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000212 Py_INCREF(object);
213 PyTuple_SET_ITEM(args,0,object);
214 if (errors) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000215 PyObject *v;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000216
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000217 v = PyUnicode_FromString(errors);
218 if (v == NULL) {
219 Py_DECREF(args);
220 return NULL;
221 }
222 PyTuple_SET_ITEM(args, 1, v);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000223 }
224 return args;
225}
226
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000227/* Helper function to get a codec item */
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000228
229static
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000230PyObject *codec_getitem(const char *encoding, int index)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000231{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000232 PyObject *codecs;
233 PyObject *v;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000234
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000235 codecs = _PyCodec_Lookup(encoding);
236 if (codecs == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000237 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000238 v = PyTuple_GET_ITEM(codecs, index);
239 Py_DECREF(codecs);
240 Py_INCREF(v);
241 return v;
242}
243
244/* Helper function to create an incremental codec. */
245
246static
247PyObject *codec_getincrementalcodec(const char *encoding,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000248 const char *errors,
249 const char *attrname)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000250{
251 PyObject *codecs, *ret, *inccodec;
252
253 codecs = _PyCodec_Lookup(encoding);
254 if (codecs == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000255 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000256 inccodec = PyObject_GetAttrString(codecs, attrname);
257 Py_DECREF(codecs);
258 if (inccodec == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000259 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000260 if (errors)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000261 ret = PyObject_CallFunction(inccodec, "s", errors);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000262 else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000263 ret = PyObject_CallFunction(inccodec, NULL);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000264 Py_DECREF(inccodec);
265 return ret;
266}
267
268/* Helper function to create a stream codec. */
269
270static
271PyObject *codec_getstreamcodec(const char *encoding,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000272 PyObject *stream,
273 const char *errors,
274 const int index)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000275{
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000276 PyObject *codecs, *streamcodec, *codeccls;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000277
278 codecs = _PyCodec_Lookup(encoding);
279 if (codecs == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000280 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000281
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000282 codeccls = PyTuple_GET_ITEM(codecs, index);
283 if (errors != NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000284 streamcodec = PyObject_CallFunction(codeccls, "Os", stream, errors);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000285 else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000286 streamcodec = PyObject_CallFunction(codeccls, "O", stream);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000287 Py_DECREF(codecs);
288 return streamcodec;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000289}
290
Guido van Rossum98297ee2007-11-06 21:34:58 +0000291/* Convenience APIs to query the Codec registry.
292
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000293 All APIs return a codec object with incremented refcount.
Guido van Rossum98297ee2007-11-06 21:34:58 +0000294
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000295 */
296
297PyObject *PyCodec_Encoder(const char *encoding)
298{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000299 return codec_getitem(encoding, 0);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000300}
301
302PyObject *PyCodec_Decoder(const char *encoding)
303{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000304 return codec_getitem(encoding, 1);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000305}
306
Thomas Woutersa9773292006-04-21 09:43:23 +0000307PyObject *PyCodec_IncrementalEncoder(const char *encoding,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000308 const char *errors)
Thomas Woutersa9773292006-04-21 09:43:23 +0000309{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000310 return codec_getincrementalcodec(encoding, errors, "incrementalencoder");
Thomas Woutersa9773292006-04-21 09:43:23 +0000311}
312
313PyObject *PyCodec_IncrementalDecoder(const char *encoding,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000314 const char *errors)
Thomas Woutersa9773292006-04-21 09:43:23 +0000315{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000316 return codec_getincrementalcodec(encoding, errors, "incrementaldecoder");
Thomas Woutersa9773292006-04-21 09:43:23 +0000317}
318
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000319PyObject *PyCodec_StreamReader(const char *encoding,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000320 PyObject *stream,
321 const char *errors)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000322{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000323 return codec_getstreamcodec(encoding, stream, errors, 2);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000324}
325
326PyObject *PyCodec_StreamWriter(const char *encoding,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000327 PyObject *stream,
328 const char *errors)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000329{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000330 return codec_getstreamcodec(encoding, stream, errors, 3);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000331}
332
333/* Encode an object (e.g. an Unicode object) using the given encoding
334 and return the resulting encoded object (usually a Python string).
335
336 errors is passed to the encoder factory as argument if non-NULL. */
337
338PyObject *PyCodec_Encode(PyObject *object,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000339 const char *encoding,
340 const char *errors)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000341{
342 PyObject *encoder = NULL;
Neal Norwitz3715c3e2005-11-24 22:09:18 +0000343 PyObject *args = NULL, *result = NULL;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000344 PyObject *v = NULL;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000345
346 encoder = PyCodec_Encoder(encoding);
347 if (encoder == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000348 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000349
350 args = args_tuple(object, errors);
351 if (args == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 goto onError;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000353
354 result = PyEval_CallObject(encoder, args);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000355 if (result == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000356 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000357
Guido van Rossum98297ee2007-11-06 21:34:58 +0000358 if (!PyTuple_Check(result) ||
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000359 PyTuple_GET_SIZE(result) != 2) {
360 PyErr_SetString(PyExc_TypeError,
361 "encoder must return a tuple (object, integer)");
362 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000363 }
Marc-André Lemburgb2750b52008-06-06 12:18:17 +0000364 v = PyTuple_GET_ITEM(result,0);
365 Py_INCREF(v);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000366 /* We don't check or use the second (integer) entry. */
367
Marc-André Lemburgb2750b52008-06-06 12:18:17 +0000368 Py_DECREF(args);
369 Py_DECREF(encoder);
370 Py_DECREF(result);
371 return v;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000372
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000373 onError:
Neal Norwitz3715c3e2005-11-24 22:09:18 +0000374 Py_XDECREF(result);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000375 Py_XDECREF(args);
376 Py_XDECREF(encoder);
Marc-André Lemburgb2750b52008-06-06 12:18:17 +0000377 return NULL;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000378}
379
380/* Decode an object (usually a Python string) using the given encoding
381 and return an equivalent object (e.g. an Unicode object).
382
383 errors is passed to the decoder factory as argument if non-NULL. */
384
385PyObject *PyCodec_Decode(PyObject *object,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000386 const char *encoding,
387 const char *errors)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000388{
389 PyObject *decoder = NULL;
390 PyObject *args = NULL, *result = NULL;
391 PyObject *v;
392
393 decoder = PyCodec_Decoder(encoding);
394 if (decoder == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000395 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000396
397 args = args_tuple(object, errors);
398 if (args == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000399 goto onError;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000400
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000401 result = PyEval_CallObject(decoder,args);
402 if (result == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000403 goto onError;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000404 if (!PyTuple_Check(result) ||
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000405 PyTuple_GET_SIZE(result) != 2) {
406 PyErr_SetString(PyExc_TypeError,
407 "decoder must return a tuple (object,integer)");
408 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000409 }
410 v = PyTuple_GET_ITEM(result,0);
411 Py_INCREF(v);
412 /* We don't check or use the second (integer) entry. */
413
414 Py_DECREF(args);
415 Py_DECREF(decoder);
416 Py_DECREF(result);
417 return v;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000418
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000419 onError:
420 Py_XDECREF(args);
421 Py_XDECREF(decoder);
422 Py_XDECREF(result);
423 return NULL;
424}
425
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000426/* Register the error handling callback function error under the name
427 name. This function will be called by the codec when it encounters
428 an unencodable characters/undecodable bytes and doesn't know the
429 callback name, when name is specified as the error parameter
430 in the call to the encode/decode function.
431 Return 0 on success, -1 on error */
432int PyCodec_RegisterError(const char *name, PyObject *error)
433{
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000434 PyInterpreterState *interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000435 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000437 if (!PyCallable_Check(error)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000438 PyErr_SetString(PyExc_TypeError, "handler must be callable");
439 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000440 }
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000441 return PyDict_SetItemString(interp->codec_error_registry,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 (char *)name, error);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000443}
444
445/* Lookup the error handling callback function registered under the
446 name error. As a special case NULL can be passed, in which case
447 the error handling callback for strict encoding will be returned. */
448PyObject *PyCodec_LookupError(const char *name)
449{
450 PyObject *handler = NULL;
451
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000452 PyInterpreterState *interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000453 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000454 return NULL;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000455
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000456 if (name==NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000457 name = "strict";
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000458 handler = PyDict_GetItemString(interp->codec_error_registry, (char *)name);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000459 if (!handler)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000460 PyErr_Format(PyExc_LookupError, "unknown error handler name '%.400s'", name);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000461 else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000462 Py_INCREF(handler);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000463 return handler;
464}
465
466static void wrong_exception_type(PyObject *exc)
467{
468 PyObject *type = PyObject_GetAttrString(exc, "__class__");
469 if (type != NULL) {
Walter Dörwald573c08c2007-05-25 15:46:59 +0000470 PyObject *name = PyObject_GetAttrString(type, "__name__");
471 Py_DECREF(type);
472 if (name != NULL) {
473 PyErr_Format(PyExc_TypeError,
474 "don't know how to handle %S in error callback", name);
475 Py_DECREF(name);
476 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000477 }
478}
479
480PyObject *PyCodec_StrictErrors(PyObject *exc)
481{
Brett Cannonbf364092006-03-01 04:25:17 +0000482 if (PyExceptionInstance_Check(exc))
483 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000484 else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000485 PyErr_SetString(PyExc_TypeError, "codec must pass exception instance");
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000486 return NULL;
487}
488
489
490PyObject *PyCodec_IgnoreErrors(PyObject *exc)
491{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000492 Py_ssize_t end;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000493 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000494 if (PyUnicodeEncodeError_GetEnd(exc, &end))
495 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000496 }
497 else if (PyObject_IsInstance(exc, PyExc_UnicodeDecodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000498 if (PyUnicodeDecodeError_GetEnd(exc, &end))
499 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000500 }
501 else if (PyObject_IsInstance(exc, PyExc_UnicodeTranslateError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 if (PyUnicodeTranslateError_GetEnd(exc, &end))
503 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000504 }
505 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000506 wrong_exception_type(exc);
507 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000508 }
509 /* ouch: passing NULL, 0, pos gives None instead of u'' */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000510 return Py_BuildValue("(u#n)", &end, 0, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000511}
512
513
514PyObject *PyCodec_ReplaceErrors(PyObject *exc)
515{
516 PyObject *restuple;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000517 Py_ssize_t start;
518 Py_ssize_t end;
519 Py_ssize_t i;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000520
521 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000522 PyObject *res;
523 Py_UNICODE *p;
524 if (PyUnicodeEncodeError_GetStart(exc, &start))
525 return NULL;
526 if (PyUnicodeEncodeError_GetEnd(exc, &end))
527 return NULL;
528 res = PyUnicode_FromUnicode(NULL, end-start);
529 if (res == NULL)
530 return NULL;
531 for (p = PyUnicode_AS_UNICODE(res), i = start;
532 i<end; ++p, ++i)
533 *p = '?';
534 restuple = Py_BuildValue("(On)", res, end);
535 Py_DECREF(res);
536 return restuple;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000537 }
538 else if (PyObject_IsInstance(exc, PyExc_UnicodeDecodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000539 Py_UNICODE res = Py_UNICODE_REPLACEMENT_CHARACTER;
540 if (PyUnicodeDecodeError_GetEnd(exc, &end))
541 return NULL;
542 return Py_BuildValue("(u#n)", &res, 1, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000543 }
544 else if (PyObject_IsInstance(exc, PyExc_UnicodeTranslateError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000545 PyObject *res;
546 Py_UNICODE *p;
547 if (PyUnicodeTranslateError_GetStart(exc, &start))
548 return NULL;
549 if (PyUnicodeTranslateError_GetEnd(exc, &end))
550 return NULL;
551 res = PyUnicode_FromUnicode(NULL, end-start);
552 if (res == NULL)
553 return NULL;
554 for (p = PyUnicode_AS_UNICODE(res), i = start;
555 i<end; ++p, ++i)
556 *p = Py_UNICODE_REPLACEMENT_CHARACTER;
557 restuple = Py_BuildValue("(On)", res, end);
558 Py_DECREF(res);
559 return restuple;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000560 }
561 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000562 wrong_exception_type(exc);
563 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000564 }
565}
566
567PyObject *PyCodec_XMLCharRefReplaceErrors(PyObject *exc)
568{
569 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000570 PyObject *restuple;
571 PyObject *object;
572 Py_ssize_t start;
573 Py_ssize_t end;
574 PyObject *res;
575 Py_UNICODE *p;
576 Py_UNICODE *startp;
577 Py_UNICODE *outp;
578 int ressize;
579 if (PyUnicodeEncodeError_GetStart(exc, &start))
580 return NULL;
581 if (PyUnicodeEncodeError_GetEnd(exc, &end))
582 return NULL;
583 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
584 return NULL;
585 startp = PyUnicode_AS_UNICODE(object);
586 for (p = startp+start, ressize = 0; p < startp+end; ++p) {
587 if (*p<10)
588 ressize += 2+1+1;
589 else if (*p<100)
590 ressize += 2+2+1;
591 else if (*p<1000)
592 ressize += 2+3+1;
593 else if (*p<10000)
594 ressize += 2+4+1;
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000595#ifndef Py_UNICODE_WIDE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000596 else
597 ressize += 2+5+1;
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000598#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000599 else if (*p<100000)
600 ressize += 2+5+1;
601 else if (*p<1000000)
602 ressize += 2+6+1;
603 else
604 ressize += 2+7+1;
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000605#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000606 }
607 /* allocate replacement */
608 res = PyUnicode_FromUnicode(NULL, ressize);
609 if (res == NULL) {
610 Py_DECREF(object);
611 return NULL;
612 }
613 /* generate replacement */
614 for (p = startp+start, outp = PyUnicode_AS_UNICODE(res);
615 p < startp+end; ++p) {
616 Py_UNICODE c = *p;
617 int digits;
618 int base;
619 *outp++ = '&';
620 *outp++ = '#';
621 if (*p<10) {
622 digits = 1;
623 base = 1;
624 }
625 else if (*p<100) {
626 digits = 2;
627 base = 10;
628 }
629 else if (*p<1000) {
630 digits = 3;
631 base = 100;
632 }
633 else if (*p<10000) {
634 digits = 4;
635 base = 1000;
636 }
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000637#ifndef Py_UNICODE_WIDE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000638 else {
639 digits = 5;
640 base = 10000;
641 }
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000642#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000643 else if (*p<100000) {
644 digits = 5;
645 base = 10000;
646 }
647 else if (*p<1000000) {
648 digits = 6;
649 base = 100000;
650 }
651 else {
652 digits = 7;
653 base = 1000000;
654 }
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000655#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000656 while (digits-->0) {
657 *outp++ = '0' + c/base;
658 c %= base;
659 base /= 10;
660 }
661 *outp++ = ';';
662 }
663 restuple = Py_BuildValue("(On)", res, end);
664 Py_DECREF(res);
665 Py_DECREF(object);
666 return restuple;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000667 }
668 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000669 wrong_exception_type(exc);
670 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000671 }
672}
673
674static Py_UNICODE hexdigits[] = {
675 '0', '1', '2', '3', '4', '5', '6', '7',
676 '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
677};
678
679PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc)
680{
Antoine Pitroue4a18922010-09-09 20:30:23 +0000681#ifndef Py_UNICODE_WIDE
682#define IS_SURROGATE_PAIR(p, end) \
683 (*p >= 0xD800 && *p <= 0xDBFF && (p + 1) < end && \
684 *(p + 1) >= 0xDC00 && *(p + 1) <= 0xDFFF)
685#else
686#define IS_SURROGATE_PAIR(p, end) 0
687#endif
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000688 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000689 PyObject *restuple;
690 PyObject *object;
691 Py_ssize_t start;
692 Py_ssize_t end;
693 PyObject *res;
694 Py_UNICODE *p;
695 Py_UNICODE *startp;
696 Py_UNICODE *outp;
697 int ressize;
698 if (PyUnicodeEncodeError_GetStart(exc, &start))
699 return NULL;
700 if (PyUnicodeEncodeError_GetEnd(exc, &end))
701 return NULL;
702 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
703 return NULL;
704 startp = PyUnicode_AS_UNICODE(object);
705 for (p = startp+start, ressize = 0; p < startp+end; ++p) {
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000706#ifdef Py_UNICODE_WIDE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000707 if (*p >= 0x00010000)
708 ressize += 1+1+8;
709 else
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000710#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000711 if (*p >= 0x100) {
Antoine Pitroue4a18922010-09-09 20:30:23 +0000712 if (IS_SURROGATE_PAIR(p, startp+end)) {
713 ressize += 1+1+8;
714 ++p;
715 }
716 else
717 ressize += 1+1+4;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000718 }
719 else
720 ressize += 1+1+2;
721 }
722 res = PyUnicode_FromUnicode(NULL, ressize);
723 if (res==NULL)
724 return NULL;
725 for (p = startp+start, outp = PyUnicode_AS_UNICODE(res);
726 p < startp+end; ++p) {
Antoine Pitroue4a18922010-09-09 20:30:23 +0000727 Py_UCS4 c = (Py_UCS4) *p;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000728 *outp++ = '\\';
Antoine Pitroue4a18922010-09-09 20:30:23 +0000729 if (IS_SURROGATE_PAIR(p, startp+end)) {
730 c = ((*p & 0x3FF) << 10) + (*(p + 1) & 0x3FF) + 0x10000;
731 ++p;
732 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000733 if (c >= 0x00010000) {
734 *outp++ = 'U';
735 *outp++ = hexdigits[(c>>28)&0xf];
736 *outp++ = hexdigits[(c>>24)&0xf];
737 *outp++ = hexdigits[(c>>20)&0xf];
738 *outp++ = hexdigits[(c>>16)&0xf];
739 *outp++ = hexdigits[(c>>12)&0xf];
740 *outp++ = hexdigits[(c>>8)&0xf];
741 }
Antoine Pitroue4a18922010-09-09 20:30:23 +0000742 else if (c >= 0x100) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000743 *outp++ = 'u';
744 *outp++ = hexdigits[(c>>12)&0xf];
745 *outp++ = hexdigits[(c>>8)&0xf];
746 }
747 else
748 *outp++ = 'x';
749 *outp++ = hexdigits[(c>>4)&0xf];
750 *outp++ = hexdigits[c&0xf];
751 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000752
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000753 restuple = Py_BuildValue("(On)", res, end);
754 Py_DECREF(res);
755 Py_DECREF(object);
756 return restuple;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000757 }
758 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000759 wrong_exception_type(exc);
760 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000761 }
Antoine Pitroue4a18922010-09-09 20:30:23 +0000762#undef IS_SURROGATE_PAIR
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000763}
764
Martin v. Löwisaef3fb02009-05-02 19:27:30 +0000765/* This handler is declared static until someone demonstrates
766 a need to call it directly. */
767static PyObject *
Martin v. Löwise0a2b722009-05-10 08:08:56 +0000768PyCodec_SurrogatePassErrors(PyObject *exc)
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000769{
770 PyObject *restuple;
771 PyObject *object;
772 Py_ssize_t start;
773 Py_ssize_t end;
774 PyObject *res;
775 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000776 Py_UNICODE *p;
777 Py_UNICODE *startp;
778 char *outp;
779 if (PyUnicodeEncodeError_GetStart(exc, &start))
780 return NULL;
781 if (PyUnicodeEncodeError_GetEnd(exc, &end))
782 return NULL;
783 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
784 return NULL;
785 startp = PyUnicode_AS_UNICODE(object);
786 res = PyBytes_FromStringAndSize(NULL, 3*(end-start));
787 if (!res) {
788 Py_DECREF(object);
789 return NULL;
790 }
791 outp = PyBytes_AsString(res);
792 for (p = startp+start; p < startp+end; p++) {
793 Py_UNICODE ch = *p;
794 if (ch < 0xd800 || ch > 0xdfff) {
795 /* Not a surrogate, fail with original exception */
796 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
797 Py_DECREF(res);
798 Py_DECREF(object);
799 return NULL;
800 }
801 *outp++ = (char)(0xe0 | (ch >> 12));
802 *outp++ = (char)(0x80 | ((ch >> 6) & 0x3f));
803 *outp++ = (char)(0x80 | (ch & 0x3f));
804 }
805 restuple = Py_BuildValue("(On)", res, end);
806 Py_DECREF(res);
807 Py_DECREF(object);
808 return restuple;
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000809 }
810 else if (PyObject_IsInstance(exc, PyExc_UnicodeDecodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000811 unsigned char *p;
812 Py_UNICODE ch = 0;
813 if (PyUnicodeDecodeError_GetStart(exc, &start))
814 return NULL;
815 if (!(object = PyUnicodeDecodeError_GetObject(exc)))
816 return NULL;
817 if (!(p = (unsigned char*)PyBytes_AsString(object))) {
818 Py_DECREF(object);
819 return NULL;
820 }
821 /* Try decoding a single surrogate character. If
822 there are more, let the codec call us again. */
823 p += start;
824 if ((p[0] & 0xf0) == 0xe0 ||
825 (p[1] & 0xc0) == 0x80 ||
826 (p[2] & 0xc0) == 0x80) {
827 /* it's a three-byte code */
828 ch = ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6) + (p[2] & 0x3f);
829 if (ch < 0xd800 || ch > 0xdfff)
830 /* it's not a surrogate - fail */
831 ch = 0;
832 }
833 Py_DECREF(object);
834 if (ch == 0) {
835 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
836 return NULL;
837 }
838 return Py_BuildValue("(u#n)", &ch, 1, start+3);
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000839 }
840 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000841 wrong_exception_type(exc);
842 return NULL;
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000843 }
844}
845
Martin v. Löwis011e8422009-05-05 04:43:17 +0000846static PyObject *
Martin v. Löwis43c57782009-05-10 08:15:24 +0000847PyCodec_SurrogateEscapeErrors(PyObject *exc)
Martin v. Löwis011e8422009-05-05 04:43:17 +0000848{
849 PyObject *restuple;
850 PyObject *object;
851 Py_ssize_t start;
852 Py_ssize_t end;
853 PyObject *res;
854 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000855 Py_UNICODE *p;
856 Py_UNICODE *startp;
857 char *outp;
858 if (PyUnicodeEncodeError_GetStart(exc, &start))
859 return NULL;
860 if (PyUnicodeEncodeError_GetEnd(exc, &end))
861 return NULL;
862 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
863 return NULL;
864 startp = PyUnicode_AS_UNICODE(object);
865 res = PyBytes_FromStringAndSize(NULL, end-start);
866 if (!res) {
867 Py_DECREF(object);
868 return NULL;
869 }
870 outp = PyBytes_AsString(res);
871 for (p = startp+start; p < startp+end; p++) {
872 Py_UNICODE ch = *p;
873 if (ch < 0xdc80 || ch > 0xdcff) {
874 /* Not a UTF-8b surrogate, fail with original exception */
875 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
876 Py_DECREF(res);
877 Py_DECREF(object);
878 return NULL;
879 }
880 *outp++ = ch - 0xdc00;
881 }
882 restuple = Py_BuildValue("(On)", res, end);
883 Py_DECREF(res);
884 Py_DECREF(object);
885 return restuple;
Martin v. Löwis011e8422009-05-05 04:43:17 +0000886 }
887 else if (PyObject_IsInstance(exc, PyExc_UnicodeDecodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000888 unsigned char *p;
889 Py_UNICODE ch[4]; /* decode up to 4 bad bytes. */
890 int consumed = 0;
891 if (PyUnicodeDecodeError_GetStart(exc, &start))
892 return NULL;
893 if (PyUnicodeDecodeError_GetEnd(exc, &end))
894 return NULL;
895 if (!(object = PyUnicodeDecodeError_GetObject(exc)))
896 return NULL;
897 if (!(p = (unsigned char*)PyBytes_AsString(object))) {
898 Py_DECREF(object);
899 return NULL;
900 }
901 while (consumed < 4 && consumed < end-start) {
902 /* Refuse to escape ASCII bytes. */
903 if (p[start+consumed] < 128)
904 break;
905 ch[consumed] = 0xdc00 + p[start+consumed];
906 consumed++;
907 }
908 Py_DECREF(object);
909 if (!consumed) {
910 /* codec complained about ASCII byte. */
911 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
912 return NULL;
913 }
914 return Py_BuildValue("(u#n)", ch, consumed, start+consumed);
Martin v. Löwis011e8422009-05-05 04:43:17 +0000915 }
916 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000917 wrong_exception_type(exc);
918 return NULL;
Martin v. Löwis011e8422009-05-05 04:43:17 +0000919 }
920}
921
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000922
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000923static PyObject *strict_errors(PyObject *self, PyObject *exc)
924{
925 return PyCodec_StrictErrors(exc);
926}
927
928
929static PyObject *ignore_errors(PyObject *self, PyObject *exc)
930{
931 return PyCodec_IgnoreErrors(exc);
932}
933
934
935static PyObject *replace_errors(PyObject *self, PyObject *exc)
936{
937 return PyCodec_ReplaceErrors(exc);
938}
939
940
941static PyObject *xmlcharrefreplace_errors(PyObject *self, PyObject *exc)
942{
943 return PyCodec_XMLCharRefReplaceErrors(exc);
944}
945
946
947static PyObject *backslashreplace_errors(PyObject *self, PyObject *exc)
948{
949 return PyCodec_BackslashReplaceErrors(exc);
950}
951
Martin v. Löwise0a2b722009-05-10 08:08:56 +0000952static PyObject *surrogatepass_errors(PyObject *self, PyObject *exc)
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000953{
Martin v. Löwise0a2b722009-05-10 08:08:56 +0000954 return PyCodec_SurrogatePassErrors(exc);
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000955}
956
Martin v. Löwis43c57782009-05-10 08:15:24 +0000957static PyObject *surrogateescape_errors(PyObject *self, PyObject *exc)
Martin v. Löwis011e8422009-05-05 04:43:17 +0000958{
Martin v. Löwis43c57782009-05-10 08:15:24 +0000959 return PyCodec_SurrogateEscapeErrors(exc);
Martin v. Löwis011e8422009-05-05 04:43:17 +0000960}
961
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000962static int _PyCodecRegistry_Init(void)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000963{
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000964 static struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000965 char *name;
966 PyMethodDef def;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000967 } methods[] =
968 {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000969 {
970 "strict",
971 {
972 "strict_errors",
973 strict_errors,
974 METH_O,
975 PyDoc_STR("Implements the 'strict' error handling, which "
976 "raises a UnicodeError on coding errors.")
977 }
978 },
979 {
980 "ignore",
981 {
982 "ignore_errors",
983 ignore_errors,
984 METH_O,
985 PyDoc_STR("Implements the 'ignore' error handling, which "
986 "ignores malformed data and continues.")
987 }
988 },
989 {
990 "replace",
991 {
992 "replace_errors",
993 replace_errors,
994 METH_O,
995 PyDoc_STR("Implements the 'replace' error handling, which "
996 "replaces malformed data with a replacement marker.")
997 }
998 },
999 {
1000 "xmlcharrefreplace",
1001 {
1002 "xmlcharrefreplace_errors",
1003 xmlcharrefreplace_errors,
1004 METH_O,
1005 PyDoc_STR("Implements the 'xmlcharrefreplace' error handling, "
1006 "which replaces an unencodable character with the "
1007 "appropriate XML character reference.")
1008 }
1009 },
1010 {
1011 "backslashreplace",
1012 {
1013 "backslashreplace_errors",
1014 backslashreplace_errors,
1015 METH_O,
1016 PyDoc_STR("Implements the 'backslashreplace' error handling, "
1017 "which replaces an unencodable character with a "
1018 "backslashed escape sequence.")
1019 }
1020 },
1021 {
1022 "surrogatepass",
1023 {
1024 "surrogatepass",
1025 surrogatepass_errors,
1026 METH_O
1027 }
1028 },
1029 {
1030 "surrogateescape",
1031 {
1032 "surrogateescape",
1033 surrogateescape_errors,
1034 METH_O
1035 }
1036 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00001037 };
Walter Dörwald3aeb6322002-09-02 13:14:32 +00001038
Nicholas Bastine5662ae2004-03-24 22:22:12 +00001039 PyInterpreterState *interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001040 PyObject *mod;
Neal Norwitz739a8f82004-07-08 01:55:58 +00001041 unsigned i;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001042
1043 if (interp->codec_search_path != NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001044 return 0;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001045
1046 interp->codec_search_path = PyList_New(0);
1047 interp->codec_search_cache = PyDict_New();
1048 interp->codec_error_registry = PyDict_New();
1049
1050 if (interp->codec_error_registry) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001051 for (i = 0; i < sizeof(methods)/sizeof(methods[0]); ++i) {
1052 PyObject *func = PyCFunction_New(&methods[i].def, NULL);
1053 int res;
1054 if (!func)
1055 Py_FatalError("can't initialize codec error registry");
1056 res = PyCodec_RegisterError(methods[i].name, func);
1057 Py_DECREF(func);
1058 if (res)
1059 Py_FatalError("can't initialize codec error registry");
1060 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00001061 }
Guido van Rossumfeee4b92000-03-10 22:57:27 +00001062
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001063 if (interp->codec_search_path == NULL ||
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001064 interp->codec_search_cache == NULL ||
1065 interp->codec_error_registry == NULL)
1066 Py_FatalError("can't initialize codec registry");
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001067
Christian Heimes819b8bf2008-01-03 23:05:47 +00001068 mod = PyImport_ImportModuleNoBlock("encodings");
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001069 if (mod == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001070 if (PyErr_ExceptionMatches(PyExc_ImportError)) {
1071 /* Ignore ImportErrors... this is done so that
1072 distributions can disable the encodings package. Note
1073 that other errors are not masked, e.g. SystemErrors
1074 raised to inform the user of an error in the Python
1075 configuration are still reported back to the user. */
1076 PyErr_Clear();
1077 return 0;
1078 }
1079 return -1;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001080 }
1081 Py_DECREF(mod);
Christian Heimes6a27efa2008-10-30 21:48:26 +00001082 interp->codecs_initialized = 1;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001083 return 0;
Guido van Rossumfeee4b92000-03-10 22:57:27 +00001084}