blob: be2e8334c61cef3bd4559fe1498c36b2dee0e304 [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{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200516 Py_ssize_t start, end, i, len;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000517
518 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000519 PyObject *res;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200520 int kind;
521 void *data;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000522 if (PyUnicodeEncodeError_GetStart(exc, &start))
523 return NULL;
524 if (PyUnicodeEncodeError_GetEnd(exc, &end))
525 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200526 len = end - start;
527 res = PyUnicode_New(len, '?');
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000528 if (res == NULL)
529 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200530 kind = PyUnicode_KIND(res);
531 data = PyUnicode_DATA(res);
532 for (i = 0; i < len; ++i)
533 PyUnicode_WRITE(kind, data, i, '?');
534 return Py_BuildValue("(Nn)", res, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000535 }
536 else if (PyObject_IsInstance(exc, PyExc_UnicodeDecodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000537 Py_UNICODE res = Py_UNICODE_REPLACEMENT_CHARACTER;
538 if (PyUnicodeDecodeError_GetEnd(exc, &end))
539 return NULL;
540 return Py_BuildValue("(u#n)", &res, 1, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000541 }
542 else if (PyObject_IsInstance(exc, PyExc_UnicodeTranslateError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000543 PyObject *res;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200544 int kind;
545 void *data;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000546 if (PyUnicodeTranslateError_GetStart(exc, &start))
547 return NULL;
548 if (PyUnicodeTranslateError_GetEnd(exc, &end))
549 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200550 len = end - start;
551 res = PyUnicode_New(len, Py_UNICODE_REPLACEMENT_CHARACTER);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000552 if (res == NULL)
553 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200554 kind = PyUnicode_KIND(res);
555 data = PyUnicode_DATA(res);
556 for (i=0; i < len; i++)
557 PyUnicode_WRITE(kind, data, i, Py_UNICODE_REPLACEMENT_CHARACTER);
558 return Py_BuildValue("(Nn)", res, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000559 }
560 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000561 wrong_exception_type(exc);
562 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000563 }
564}
565
566PyObject *PyCodec_XMLCharRefReplaceErrors(PyObject *exc)
567{
568 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000569 PyObject *restuple;
570 PyObject *object;
571 Py_ssize_t start;
572 Py_ssize_t end;
573 PyObject *res;
574 Py_UNICODE *p;
575 Py_UNICODE *startp;
576 Py_UNICODE *outp;
577 int ressize;
578 if (PyUnicodeEncodeError_GetStart(exc, &start))
579 return NULL;
580 if (PyUnicodeEncodeError_GetEnd(exc, &end))
581 return NULL;
582 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
583 return NULL;
584 startp = PyUnicode_AS_UNICODE(object);
585 for (p = startp+start, ressize = 0; p < startp+end; ++p) {
586 if (*p<10)
587 ressize += 2+1+1;
588 else if (*p<100)
589 ressize += 2+2+1;
590 else if (*p<1000)
591 ressize += 2+3+1;
592 else if (*p<10000)
593 ressize += 2+4+1;
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000594#ifndef Py_UNICODE_WIDE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000595 else
596 ressize += 2+5+1;
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000597#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000598 else if (*p<100000)
599 ressize += 2+5+1;
600 else if (*p<1000000)
601 ressize += 2+6+1;
602 else
603 ressize += 2+7+1;
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000604#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000605 }
606 /* allocate replacement */
607 res = PyUnicode_FromUnicode(NULL, ressize);
608 if (res == NULL) {
609 Py_DECREF(object);
610 return NULL;
611 }
612 /* generate replacement */
613 for (p = startp+start, outp = PyUnicode_AS_UNICODE(res);
614 p < startp+end; ++p) {
615 Py_UNICODE c = *p;
616 int digits;
617 int base;
618 *outp++ = '&';
619 *outp++ = '#';
620 if (*p<10) {
621 digits = 1;
622 base = 1;
623 }
624 else if (*p<100) {
625 digits = 2;
626 base = 10;
627 }
628 else if (*p<1000) {
629 digits = 3;
630 base = 100;
631 }
632 else if (*p<10000) {
633 digits = 4;
634 base = 1000;
635 }
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000636#ifndef Py_UNICODE_WIDE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000637 else {
638 digits = 5;
639 base = 10000;
640 }
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000641#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000642 else if (*p<100000) {
643 digits = 5;
644 base = 10000;
645 }
646 else if (*p<1000000) {
647 digits = 6;
648 base = 100000;
649 }
650 else {
651 digits = 7;
652 base = 1000000;
653 }
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000654#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000655 while (digits-->0) {
656 *outp++ = '0' + c/base;
657 c %= base;
658 base /= 10;
659 }
660 *outp++ = ';';
661 }
662 restuple = Py_BuildValue("(On)", res, end);
663 Py_DECREF(res);
664 Py_DECREF(object);
665 return restuple;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000666 }
667 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000668 wrong_exception_type(exc);
669 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000670 }
671}
672
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200673static const char *hexdigits = "0123456789abcdef";
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000674
675PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc)
676{
Antoine Pitroue4a18922010-09-09 20:30:23 +0000677#ifndef Py_UNICODE_WIDE
678#define IS_SURROGATE_PAIR(p, end) \
679 (*p >= 0xD800 && *p <= 0xDBFF && (p + 1) < end && \
680 *(p + 1) >= 0xDC00 && *(p + 1) <= 0xDFFF)
681#else
682#define IS_SURROGATE_PAIR(p, end) 0
683#endif
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000684 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000685 PyObject *restuple;
686 PyObject *object;
687 Py_ssize_t start;
688 Py_ssize_t end;
689 PyObject *res;
690 Py_UNICODE *p;
691 Py_UNICODE *startp;
692 Py_UNICODE *outp;
693 int ressize;
694 if (PyUnicodeEncodeError_GetStart(exc, &start))
695 return NULL;
696 if (PyUnicodeEncodeError_GetEnd(exc, &end))
697 return NULL;
698 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
699 return NULL;
700 startp = PyUnicode_AS_UNICODE(object);
701 for (p = startp+start, ressize = 0; p < startp+end; ++p) {
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000702#ifdef Py_UNICODE_WIDE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000703 if (*p >= 0x00010000)
704 ressize += 1+1+8;
705 else
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000706#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000707 if (*p >= 0x100) {
Antoine Pitroue4a18922010-09-09 20:30:23 +0000708 if (IS_SURROGATE_PAIR(p, startp+end)) {
709 ressize += 1+1+8;
710 ++p;
711 }
712 else
713 ressize += 1+1+4;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000714 }
715 else
716 ressize += 1+1+2;
717 }
718 res = PyUnicode_FromUnicode(NULL, ressize);
719 if (res==NULL)
720 return NULL;
721 for (p = startp+start, outp = PyUnicode_AS_UNICODE(res);
722 p < startp+end; ++p) {
Antoine Pitroue4a18922010-09-09 20:30:23 +0000723 Py_UCS4 c = (Py_UCS4) *p;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000724 *outp++ = '\\';
Antoine Pitroue4a18922010-09-09 20:30:23 +0000725 if (IS_SURROGATE_PAIR(p, startp+end)) {
726 c = ((*p & 0x3FF) << 10) + (*(p + 1) & 0x3FF) + 0x10000;
727 ++p;
728 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000729 if (c >= 0x00010000) {
730 *outp++ = 'U';
731 *outp++ = hexdigits[(c>>28)&0xf];
732 *outp++ = hexdigits[(c>>24)&0xf];
733 *outp++ = hexdigits[(c>>20)&0xf];
734 *outp++ = hexdigits[(c>>16)&0xf];
735 *outp++ = hexdigits[(c>>12)&0xf];
736 *outp++ = hexdigits[(c>>8)&0xf];
737 }
Antoine Pitroue4a18922010-09-09 20:30:23 +0000738 else if (c >= 0x100) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000739 *outp++ = 'u';
740 *outp++ = hexdigits[(c>>12)&0xf];
741 *outp++ = hexdigits[(c>>8)&0xf];
742 }
743 else
744 *outp++ = 'x';
745 *outp++ = hexdigits[(c>>4)&0xf];
746 *outp++ = hexdigits[c&0xf];
747 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000748
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000749 restuple = Py_BuildValue("(On)", res, end);
750 Py_DECREF(res);
751 Py_DECREF(object);
752 return restuple;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000753 }
754 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000755 wrong_exception_type(exc);
756 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000757 }
Antoine Pitroue4a18922010-09-09 20:30:23 +0000758#undef IS_SURROGATE_PAIR
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000759}
760
Martin v. Löwisaef3fb02009-05-02 19:27:30 +0000761/* This handler is declared static until someone demonstrates
762 a need to call it directly. */
763static PyObject *
Martin v. Löwise0a2b722009-05-10 08:08:56 +0000764PyCodec_SurrogatePassErrors(PyObject *exc)
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000765{
766 PyObject *restuple;
767 PyObject *object;
768 Py_ssize_t start;
769 Py_ssize_t end;
770 PyObject *res;
771 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000772 Py_UNICODE *p;
773 Py_UNICODE *startp;
774 char *outp;
775 if (PyUnicodeEncodeError_GetStart(exc, &start))
776 return NULL;
777 if (PyUnicodeEncodeError_GetEnd(exc, &end))
778 return NULL;
779 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
780 return NULL;
781 startp = PyUnicode_AS_UNICODE(object);
782 res = PyBytes_FromStringAndSize(NULL, 3*(end-start));
783 if (!res) {
784 Py_DECREF(object);
785 return NULL;
786 }
787 outp = PyBytes_AsString(res);
788 for (p = startp+start; p < startp+end; p++) {
789 Py_UNICODE ch = *p;
790 if (ch < 0xd800 || ch > 0xdfff) {
791 /* Not a surrogate, fail with original exception */
792 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
793 Py_DECREF(res);
794 Py_DECREF(object);
795 return NULL;
796 }
797 *outp++ = (char)(0xe0 | (ch >> 12));
798 *outp++ = (char)(0x80 | ((ch >> 6) & 0x3f));
799 *outp++ = (char)(0x80 | (ch & 0x3f));
800 }
801 restuple = Py_BuildValue("(On)", res, end);
802 Py_DECREF(res);
803 Py_DECREF(object);
804 return restuple;
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000805 }
806 else if (PyObject_IsInstance(exc, PyExc_UnicodeDecodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000807 unsigned char *p;
808 Py_UNICODE ch = 0;
809 if (PyUnicodeDecodeError_GetStart(exc, &start))
810 return NULL;
811 if (!(object = PyUnicodeDecodeError_GetObject(exc)))
812 return NULL;
813 if (!(p = (unsigned char*)PyBytes_AsString(object))) {
814 Py_DECREF(object);
815 return NULL;
816 }
817 /* Try decoding a single surrogate character. If
818 there are more, let the codec call us again. */
819 p += start;
820 if ((p[0] & 0xf0) == 0xe0 ||
821 (p[1] & 0xc0) == 0x80 ||
822 (p[2] & 0xc0) == 0x80) {
823 /* it's a three-byte code */
824 ch = ((p[0] & 0x0f) << 12) + ((p[1] & 0x3f) << 6) + (p[2] & 0x3f);
825 if (ch < 0xd800 || ch > 0xdfff)
826 /* it's not a surrogate - fail */
827 ch = 0;
828 }
829 Py_DECREF(object);
830 if (ch == 0) {
831 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
832 return NULL;
833 }
834 return Py_BuildValue("(u#n)", &ch, 1, start+3);
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000835 }
836 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000837 wrong_exception_type(exc);
838 return NULL;
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000839 }
840}
841
Martin v. Löwis011e8422009-05-05 04:43:17 +0000842static PyObject *
Martin v. Löwis43c57782009-05-10 08:15:24 +0000843PyCodec_SurrogateEscapeErrors(PyObject *exc)
Martin v. Löwis011e8422009-05-05 04:43:17 +0000844{
845 PyObject *restuple;
846 PyObject *object;
847 Py_ssize_t start;
848 Py_ssize_t end;
849 PyObject *res;
850 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000851 Py_UNICODE *p;
852 Py_UNICODE *startp;
853 char *outp;
854 if (PyUnicodeEncodeError_GetStart(exc, &start))
855 return NULL;
856 if (PyUnicodeEncodeError_GetEnd(exc, &end))
857 return NULL;
858 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
859 return NULL;
860 startp = PyUnicode_AS_UNICODE(object);
861 res = PyBytes_FromStringAndSize(NULL, end-start);
862 if (!res) {
863 Py_DECREF(object);
864 return NULL;
865 }
866 outp = PyBytes_AsString(res);
867 for (p = startp+start; p < startp+end; p++) {
868 Py_UNICODE ch = *p;
869 if (ch < 0xdc80 || ch > 0xdcff) {
870 /* Not a UTF-8b surrogate, fail with original exception */
871 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
872 Py_DECREF(res);
873 Py_DECREF(object);
874 return NULL;
875 }
876 *outp++ = ch - 0xdc00;
877 }
878 restuple = Py_BuildValue("(On)", res, end);
879 Py_DECREF(res);
880 Py_DECREF(object);
881 return restuple;
Martin v. Löwis011e8422009-05-05 04:43:17 +0000882 }
883 else if (PyObject_IsInstance(exc, PyExc_UnicodeDecodeError)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000884 unsigned char *p;
885 Py_UNICODE ch[4]; /* decode up to 4 bad bytes. */
886 int consumed = 0;
887 if (PyUnicodeDecodeError_GetStart(exc, &start))
888 return NULL;
889 if (PyUnicodeDecodeError_GetEnd(exc, &end))
890 return NULL;
891 if (!(object = PyUnicodeDecodeError_GetObject(exc)))
892 return NULL;
893 if (!(p = (unsigned char*)PyBytes_AsString(object))) {
894 Py_DECREF(object);
895 return NULL;
896 }
897 while (consumed < 4 && consumed < end-start) {
898 /* Refuse to escape ASCII bytes. */
899 if (p[start+consumed] < 128)
900 break;
901 ch[consumed] = 0xdc00 + p[start+consumed];
902 consumed++;
903 }
904 Py_DECREF(object);
905 if (!consumed) {
906 /* codec complained about ASCII byte. */
907 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
908 return NULL;
909 }
910 return Py_BuildValue("(u#n)", ch, consumed, start+consumed);
Martin v. Löwis011e8422009-05-05 04:43:17 +0000911 }
912 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000913 wrong_exception_type(exc);
914 return NULL;
Martin v. Löwis011e8422009-05-05 04:43:17 +0000915 }
916}
917
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000918
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000919static PyObject *strict_errors(PyObject *self, PyObject *exc)
920{
921 return PyCodec_StrictErrors(exc);
922}
923
924
925static PyObject *ignore_errors(PyObject *self, PyObject *exc)
926{
927 return PyCodec_IgnoreErrors(exc);
928}
929
930
931static PyObject *replace_errors(PyObject *self, PyObject *exc)
932{
933 return PyCodec_ReplaceErrors(exc);
934}
935
936
937static PyObject *xmlcharrefreplace_errors(PyObject *self, PyObject *exc)
938{
939 return PyCodec_XMLCharRefReplaceErrors(exc);
940}
941
942
943static PyObject *backslashreplace_errors(PyObject *self, PyObject *exc)
944{
945 return PyCodec_BackslashReplaceErrors(exc);
946}
947
Martin v. Löwise0a2b722009-05-10 08:08:56 +0000948static PyObject *surrogatepass_errors(PyObject *self, PyObject *exc)
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000949{
Martin v. Löwise0a2b722009-05-10 08:08:56 +0000950 return PyCodec_SurrogatePassErrors(exc);
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000951}
952
Martin v. Löwis43c57782009-05-10 08:15:24 +0000953static PyObject *surrogateescape_errors(PyObject *self, PyObject *exc)
Martin v. Löwis011e8422009-05-05 04:43:17 +0000954{
Martin v. Löwis43c57782009-05-10 08:15:24 +0000955 return PyCodec_SurrogateEscapeErrors(exc);
Martin v. Löwis011e8422009-05-05 04:43:17 +0000956}
957
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000958static int _PyCodecRegistry_Init(void)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000959{
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000960 static struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000961 char *name;
962 PyMethodDef def;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000963 } methods[] =
964 {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000965 {
966 "strict",
967 {
968 "strict_errors",
969 strict_errors,
970 METH_O,
971 PyDoc_STR("Implements the 'strict' error handling, which "
972 "raises a UnicodeError on coding errors.")
973 }
974 },
975 {
976 "ignore",
977 {
978 "ignore_errors",
979 ignore_errors,
980 METH_O,
981 PyDoc_STR("Implements the 'ignore' error handling, which "
982 "ignores malformed data and continues.")
983 }
984 },
985 {
986 "replace",
987 {
988 "replace_errors",
989 replace_errors,
990 METH_O,
991 PyDoc_STR("Implements the 'replace' error handling, which "
992 "replaces malformed data with a replacement marker.")
993 }
994 },
995 {
996 "xmlcharrefreplace",
997 {
998 "xmlcharrefreplace_errors",
999 xmlcharrefreplace_errors,
1000 METH_O,
1001 PyDoc_STR("Implements the 'xmlcharrefreplace' error handling, "
1002 "which replaces an unencodable character with the "
1003 "appropriate XML character reference.")
1004 }
1005 },
1006 {
1007 "backslashreplace",
1008 {
1009 "backslashreplace_errors",
1010 backslashreplace_errors,
1011 METH_O,
1012 PyDoc_STR("Implements the 'backslashreplace' error handling, "
1013 "which replaces an unencodable character with a "
1014 "backslashed escape sequence.")
1015 }
1016 },
1017 {
1018 "surrogatepass",
1019 {
1020 "surrogatepass",
1021 surrogatepass_errors,
1022 METH_O
1023 }
1024 },
1025 {
1026 "surrogateescape",
1027 {
1028 "surrogateescape",
1029 surrogateescape_errors,
1030 METH_O
1031 }
1032 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00001033 };
Walter Dörwald3aeb6322002-09-02 13:14:32 +00001034
Nicholas Bastine5662ae2004-03-24 22:22:12 +00001035 PyInterpreterState *interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001036 PyObject *mod;
Neal Norwitz739a8f82004-07-08 01:55:58 +00001037 unsigned i;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001038
1039 if (interp->codec_search_path != NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001040 return 0;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001041
1042 interp->codec_search_path = PyList_New(0);
1043 interp->codec_search_cache = PyDict_New();
1044 interp->codec_error_registry = PyDict_New();
1045
1046 if (interp->codec_error_registry) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001047 for (i = 0; i < sizeof(methods)/sizeof(methods[0]); ++i) {
1048 PyObject *func = PyCFunction_New(&methods[i].def, NULL);
1049 int res;
1050 if (!func)
1051 Py_FatalError("can't initialize codec error registry");
1052 res = PyCodec_RegisterError(methods[i].name, func);
1053 Py_DECREF(func);
1054 if (res)
1055 Py_FatalError("can't initialize codec error registry");
1056 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00001057 }
Guido van Rossumfeee4b92000-03-10 22:57:27 +00001058
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001059 if (interp->codec_search_path == NULL ||
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001060 interp->codec_search_cache == NULL ||
1061 interp->codec_error_registry == NULL)
1062 Py_FatalError("can't initialize codec registry");
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001063
Christian Heimes819b8bf2008-01-03 23:05:47 +00001064 mod = PyImport_ImportModuleNoBlock("encodings");
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001065 if (mod == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001066 if (PyErr_ExceptionMatches(PyExc_ImportError)) {
1067 /* Ignore ImportErrors... this is done so that
1068 distributions can disable the encodings package. Note
1069 that other errors are not masked, e.g. SystemErrors
1070 raised to inform the user of an error in the Python
1071 configuration are still reported back to the user. */
1072 PyErr_Clear();
1073 return 0;
1074 }
1075 return -1;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001076 }
1077 Py_DECREF(mod);
Christian Heimes6a27efa2008-10-30 21:48:26 +00001078 interp->codecs_initialized = 1;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +00001079 return 0;
Guido van Rossumfeee4b92000-03-10 22:57:27 +00001080}