blob: 4b0f4cb0d04f91771d4ee617f2f0a4e380321fe2 [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
17 codec search function.
18
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())
33 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +000034 if (search_function == NULL) {
35 PyErr_BadArgument();
Guido van Rossumb95de4f2000-03-31 17:25:23 +000036 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +000037 }
38 if (!PyCallable_Check(search_function)) {
Neal Norwitz3715c3e2005-11-24 22:09:18 +000039 PyErr_SetString(PyExc_TypeError, "argument must be callable");
Guido van Rossumb95de4f2000-03-31 17:25:23 +000040 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;
58
Martin v. Löwisb1ed7fa2006-04-13 07:52:27 +000059 if (len > PY_SSIZE_T_MAX) {
60 PyErr_SetString(PyExc_OverflowError, "string is too large");
61 return NULL;
62 }
Guido van Rossum582acec2000-06-28 22:07:35 +000063
Martin v. Löwisb1ed7fa2006-04-13 07:52:27 +000064 v = PyString_FromStringAndSize(NULL, len);
Guido van Rossumfeee4b92000-03-10 22:57:27 +000065 if (v == NULL)
66 return NULL;
67 p = PyString_AS_STRING(v);
Guido van Rossum9e896b32000-04-05 20:11:21 +000068 for (i = 0; i < len; i++) {
69 register char ch = string[i];
70 if (ch == ' ')
71 ch = '-';
72 else
Neal Norwitz237bf402006-04-28 05:28:30 +000073 ch = tolower(Py_CHARMASK(ch));
Guido van Rossum9e896b32000-04-05 20:11:21 +000074 p[i] = ch;
75 }
Guido van Rossumfeee4b92000-03-10 22:57:27 +000076 return v;
77}
78
79/* Lookup the given encoding and return a tuple providing the codec
80 facilities.
81
82 The encoding string is looked up converted to all lower-case
83 characters. This makes encodings looked up through this mechanism
84 effectively case-insensitive.
85
Fred Drake766de832000-05-09 19:55:59 +000086 If no codec is found, a LookupError is set and NULL returned.
Guido van Rossumb95de4f2000-03-31 17:25:23 +000087
88 As side effect, this tries to load the encodings package, if not
89 yet done. This is part of the lazy load strategy for the encodings
90 package.
91
92*/
Guido van Rossumfeee4b92000-03-10 22:57:27 +000093
94PyObject *_PyCodec_Lookup(const char *encoding)
95{
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +000096 PyInterpreterState *interp;
Guido van Rossum5ba3c842000-03-24 20:52:23 +000097 PyObject *result, *args = NULL, *v;
Martin v. Löwis66851282006-04-22 11:40:03 +000098 Py_ssize_t i, len;
Guido van Rossumfeee4b92000-03-10 22:57:27 +000099
Fred Drake766de832000-05-09 19:55:59 +0000100 if (encoding == NULL) {
101 PyErr_BadArgument();
102 goto onError;
103 }
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000104
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000105 interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000106 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
Barry Warsaw51ac5802000-03-20 16:36:48 +0000107 goto onError;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000108
Guido van Rossum9e896b32000-04-05 20:11:21 +0000109 /* Convert the encoding to a normalized Python string: all
Thomas Wouters7e474022000-07-16 12:04:32 +0000110 characters are converted to lower case, spaces and hyphens are
Guido van Rossum9e896b32000-04-05 20:11:21 +0000111 replaced with underscores. */
112 v = normalizestring(encoding);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000113 if (v == NULL)
114 goto onError;
115 PyString_InternInPlace(&v);
116
117 /* First, try to lookup the name in the registry dictionary */
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000118 result = PyDict_GetItem(interp->codec_search_cache, v);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000119 if (result != NULL) {
120 Py_INCREF(result);
Barry Warsaw51ac5802000-03-20 16:36:48 +0000121 Py_DECREF(v);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000122 return result;
123 }
124
125 /* Next, scan the search functions in order of registration */
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000126 args = PyTuple_New(1);
127 if (args == NULL)
128 goto onError;
129 PyTuple_SET_ITEM(args,0,v);
Guido van Rossum5ba3c842000-03-24 20:52:23 +0000130
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000131 len = PyList_Size(interp->codec_search_path);
Guido van Rossum5ba3c842000-03-24 20:52:23 +0000132 if (len < 0)
133 goto onError;
Guido van Rossumb95de4f2000-03-31 17:25:23 +0000134 if (len == 0) {
135 PyErr_SetString(PyExc_LookupError,
136 "no codec search functions registered: "
137 "can't find encoding");
138 goto onError;
139 }
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000140
141 for (i = 0; i < len; i++) {
142 PyObject *func;
143
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000144 func = PyList_GetItem(interp->codec_search_path, i);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000145 if (func == NULL)
146 goto onError;
Guido van Rossum5ba3c842000-03-24 20:52:23 +0000147 result = PyEval_CallObject(func, args);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000148 if (result == NULL)
149 goto onError;
150 if (result == Py_None) {
151 Py_DECREF(result);
152 continue;
153 }
154 if (!PyTuple_Check(result) || PyTuple_GET_SIZE(result) != 4) {
155 PyErr_SetString(PyExc_TypeError,
156 "codec search functions must return 4-tuples");
157 Py_DECREF(result);
158 goto onError;
159 }
160 break;
161 }
162 if (i == len) {
163 /* XXX Perhaps we should cache misses too ? */
Martin v. Löwiseb42b022002-09-26 16:01:24 +0000164 PyErr_Format(PyExc_LookupError,
165 "unknown encoding: %s", encoding);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000166 goto onError;
167 }
168
169 /* Cache and return the result */
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000170 PyDict_SetItem(interp->codec_search_cache, v, result);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000171 Py_DECREF(args);
172 return result;
173
174 onError:
175 Py_XDECREF(args);
176 return NULL;
177}
178
179static
180PyObject *args_tuple(PyObject *object,
181 const char *errors)
182{
183 PyObject *args;
184
185 args = PyTuple_New(1 + (errors != NULL));
186 if (args == NULL)
187 return NULL;
188 Py_INCREF(object);
189 PyTuple_SET_ITEM(args,0,object);
190 if (errors) {
191 PyObject *v;
192
193 v = PyString_FromString(errors);
194 if (v == NULL) {
195 Py_DECREF(args);
196 return NULL;
197 }
198 PyTuple_SET_ITEM(args, 1, v);
199 }
200 return args;
201}
202
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000203/* Helper function to get a codec item */
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000204
205static
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000206PyObject *codec_getitem(const char *encoding, int index)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000207{
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000208 PyObject *codecs;
209 PyObject *v;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000210
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000211 codecs = _PyCodec_Lookup(encoding);
212 if (codecs == NULL)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000213 return NULL;
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000214 v = PyTuple_GET_ITEM(codecs, index);
215 Py_DECREF(codecs);
216 Py_INCREF(v);
217 return v;
218}
219
220/* Helper function to create an incremental codec. */
221
222static
223PyObject *codec_getincrementalcodec(const char *encoding,
224 const char *errors,
225 const char *attrname)
226{
227 PyObject *codecs, *ret, *inccodec;
228
229 codecs = _PyCodec_Lookup(encoding);
230 if (codecs == NULL)
231 return NULL;
232 inccodec = PyObject_GetAttrString(codecs, attrname);
Walter Dörwaldba8e1802006-03-18 14:05:43 +0000233 Py_DECREF(codecs);
234 if (inccodec == NULL)
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000235 return NULL;
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000236 if (errors)
237 ret = PyObject_CallFunction(inccodec, "s", errors);
238 else
239 ret = PyObject_CallFunction(inccodec, NULL);
240 Py_DECREF(inccodec);
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000241 return ret;
242}
243
244/* Helper function to create a stream codec. */
245
246static
247PyObject *codec_getstreamcodec(const char *encoding,
248 PyObject *stream,
249 const char *errors,
250 const int index)
251{
Hye-Shik Change6a1cb92006-06-23 21:16:18 +0000252 PyObject *codecs, *streamcodec, *codeccls;
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000253
254 codecs = _PyCodec_Lookup(encoding);
255 if (codecs == NULL)
256 return NULL;
257
Hye-Shik Change6a1cb92006-06-23 21:16:18 +0000258 codeccls = PyTuple_GET_ITEM(codecs, index);
259 if (errors != NULL)
260 streamcodec = PyObject_CallFunction(codeccls, "Os", stream, errors);
261 else
262 streamcodec = PyObject_CallFunction(codeccls, "O", stream);
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000263 Py_DECREF(codecs);
264 return streamcodec;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000265}
266
267/* Convenience APIs to query the Codec registry.
268
269 All APIs return a codec object with incremented refcount.
270
271 */
272
273PyObject *PyCodec_Encoder(const char *encoding)
274{
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000275 return codec_getitem(encoding, 0);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000276}
277
278PyObject *PyCodec_Decoder(const char *encoding)
279{
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000280 return codec_getitem(encoding, 1);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000281}
282
Walter Dörwaldabb02e52006-03-15 11:35:15 +0000283PyObject *PyCodec_IncrementalEncoder(const char *encoding,
284 const char *errors)
285{
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000286 return codec_getincrementalcodec(encoding, errors, "incrementalencoder");
Walter Dörwaldabb02e52006-03-15 11:35:15 +0000287}
288
289PyObject *PyCodec_IncrementalDecoder(const char *encoding,
290 const char *errors)
291{
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000292 return codec_getincrementalcodec(encoding, errors, "incrementaldecoder");
Walter Dörwaldabb02e52006-03-15 11:35:15 +0000293}
294
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000295PyObject *PyCodec_StreamReader(const char *encoding,
296 PyObject *stream,
297 const char *errors)
298{
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000299 return codec_getstreamcodec(encoding, stream, errors, 2);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000300}
301
302PyObject *PyCodec_StreamWriter(const char *encoding,
303 PyObject *stream,
304 const char *errors)
305{
Walter Dörwaldd53850a2006-03-16 21:46:40 +0000306 return codec_getstreamcodec(encoding, stream, errors, 3);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000307}
308
309/* Encode an object (e.g. an Unicode object) using the given encoding
310 and return the resulting encoded object (usually a Python string).
311
312 errors is passed to the encoder factory as argument if non-NULL. */
313
314PyObject *PyCodec_Encode(PyObject *object,
315 const char *encoding,
316 const char *errors)
317{
318 PyObject *encoder = NULL;
Neal Norwitz3715c3e2005-11-24 22:09:18 +0000319 PyObject *args = NULL, *result = NULL;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000320 PyObject *v;
321
322 encoder = PyCodec_Encoder(encoding);
323 if (encoder == NULL)
324 goto onError;
325
326 args = args_tuple(object, errors);
327 if (args == NULL)
328 goto onError;
329
330 result = PyEval_CallObject(encoder,args);
331 if (result == NULL)
332 goto onError;
333
334 if (!PyTuple_Check(result) ||
335 PyTuple_GET_SIZE(result) != 2) {
336 PyErr_SetString(PyExc_TypeError,
337 "encoder must return a tuple (object,integer)");
338 goto onError;
339 }
340 v = PyTuple_GET_ITEM(result,0);
341 Py_INCREF(v);
342 /* We don't check or use the second (integer) entry. */
343
344 Py_DECREF(args);
345 Py_DECREF(encoder);
346 Py_DECREF(result);
347 return v;
348
349 onError:
Neal Norwitz3715c3e2005-11-24 22:09:18 +0000350 Py_XDECREF(result);
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000351 Py_XDECREF(args);
352 Py_XDECREF(encoder);
353 return NULL;
354}
355
356/* Decode an object (usually a Python string) using the given encoding
357 and return an equivalent object (e.g. an Unicode object).
358
359 errors is passed to the decoder factory as argument if non-NULL. */
360
361PyObject *PyCodec_Decode(PyObject *object,
362 const char *encoding,
363 const char *errors)
364{
365 PyObject *decoder = NULL;
366 PyObject *args = NULL, *result = NULL;
367 PyObject *v;
368
369 decoder = PyCodec_Decoder(encoding);
370 if (decoder == NULL)
371 goto onError;
372
373 args = args_tuple(object, errors);
374 if (args == NULL)
375 goto onError;
376
377 result = PyEval_CallObject(decoder,args);
378 if (result == NULL)
379 goto onError;
380 if (!PyTuple_Check(result) ||
381 PyTuple_GET_SIZE(result) != 2) {
382 PyErr_SetString(PyExc_TypeError,
383 "decoder must return a tuple (object,integer)");
384 goto onError;
385 }
386 v = PyTuple_GET_ITEM(result,0);
387 Py_INCREF(v);
388 /* We don't check or use the second (integer) entry. */
389
390 Py_DECREF(args);
391 Py_DECREF(decoder);
392 Py_DECREF(result);
393 return v;
394
395 onError:
396 Py_XDECREF(args);
397 Py_XDECREF(decoder);
398 Py_XDECREF(result);
399 return NULL;
400}
401
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000402/* Register the error handling callback function error under the name
403 name. This function will be called by the codec when it encounters
404 an unencodable characters/undecodable bytes and doesn't know the
405 callback name, when name is specified as the error parameter
406 in the call to the encode/decode function.
407 Return 0 on success, -1 on error */
408int PyCodec_RegisterError(const char *name, PyObject *error)
409{
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000410 PyInterpreterState *interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000411 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
412 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000413 if (!PyCallable_Check(error)) {
414 PyErr_SetString(PyExc_TypeError, "handler must be callable");
415 return -1;
416 }
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000417 return PyDict_SetItemString(interp->codec_error_registry,
418 (char *)name, error);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000419}
420
421/* Lookup the error handling callback function registered under the
422 name error. As a special case NULL can be passed, in which case
423 the error handling callback for strict encoding will be returned. */
424PyObject *PyCodec_LookupError(const char *name)
425{
426 PyObject *handler = NULL;
427
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000428 PyInterpreterState *interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000429 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
430 return NULL;
431
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000432 if (name==NULL)
433 name = "strict";
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000434 handler = PyDict_GetItemString(interp->codec_error_registry, (char *)name);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000435 if (!handler)
436 PyErr_Format(PyExc_LookupError, "unknown error handler name '%.400s'", name);
437 else
438 Py_INCREF(handler);
439 return handler;
440}
441
442static void wrong_exception_type(PyObject *exc)
443{
444 PyObject *type = PyObject_GetAttrString(exc, "__class__");
445 if (type != NULL) {
446 PyObject *name = PyObject_GetAttrString(type, "__name__");
447 Py_DECREF(type);
448 if (name != NULL) {
449 PyObject *string = PyObject_Str(name);
450 Py_DECREF(name);
Walter Dörwaldf7bcd1d2002-09-02 18:22:32 +0000451 if (string != NULL) {
452 PyErr_Format(PyExc_TypeError,
453 "don't know how to handle %.400s in error callback",
454 PyString_AS_STRING(string));
455 Py_DECREF(string);
456 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000457 }
458 }
459}
460
461PyObject *PyCodec_StrictErrors(PyObject *exc)
462{
Brett Cannonbf364092006-03-01 04:25:17 +0000463 if (PyExceptionInstance_Check(exc))
464 PyErr_SetObject(PyExceptionInstance_Class(exc), exc);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000465 else
466 PyErr_SetString(PyExc_TypeError, "codec must pass exception instance");
467 return NULL;
468}
469
470
Walter Dörwaldbf73db82002-11-21 20:08:33 +0000471#ifdef Py_USING_UNICODE
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000472PyObject *PyCodec_IgnoreErrors(PyObject *exc)
473{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000474 Py_ssize_t end;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000475 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
476 if (PyUnicodeEncodeError_GetEnd(exc, &end))
477 return NULL;
478 }
479 else if (PyObject_IsInstance(exc, PyExc_UnicodeDecodeError)) {
480 if (PyUnicodeDecodeError_GetEnd(exc, &end))
481 return NULL;
482 }
483 else if (PyObject_IsInstance(exc, PyExc_UnicodeTranslateError)) {
484 if (PyUnicodeTranslateError_GetEnd(exc, &end))
485 return NULL;
486 }
487 else {
488 wrong_exception_type(exc);
489 return NULL;
490 }
491 /* ouch: passing NULL, 0, pos gives None instead of u'' */
Martin v. Löwis18e16552006-02-15 17:27:45 +0000492 return Py_BuildValue("(u#n)", &end, 0, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000493}
494
495
496PyObject *PyCodec_ReplaceErrors(PyObject *exc)
497{
498 PyObject *restuple;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000499 Py_ssize_t start;
500 Py_ssize_t end;
501 Py_ssize_t i;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000502
503 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
504 PyObject *res;
505 Py_UNICODE *p;
506 if (PyUnicodeEncodeError_GetStart(exc, &start))
507 return NULL;
508 if (PyUnicodeEncodeError_GetEnd(exc, &end))
509 return NULL;
510 res = PyUnicode_FromUnicode(NULL, end-start);
511 if (res == NULL)
512 return NULL;
513 for (p = PyUnicode_AS_UNICODE(res), i = start;
514 i<end; ++p, ++i)
515 *p = '?';
Martin v. Löwis18e16552006-02-15 17:27:45 +0000516 restuple = Py_BuildValue("(On)", res, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000517 Py_DECREF(res);
518 return restuple;
519 }
520 else if (PyObject_IsInstance(exc, PyExc_UnicodeDecodeError)) {
521 Py_UNICODE res = Py_UNICODE_REPLACEMENT_CHARACTER;
522 if (PyUnicodeDecodeError_GetEnd(exc, &end))
523 return NULL;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000524 return Py_BuildValue("(u#n)", &res, 1, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000525 }
526 else if (PyObject_IsInstance(exc, PyExc_UnicodeTranslateError)) {
527 PyObject *res;
528 Py_UNICODE *p;
529 if (PyUnicodeTranslateError_GetStart(exc, &start))
530 return NULL;
531 if (PyUnicodeTranslateError_GetEnd(exc, &end))
532 return NULL;
533 res = PyUnicode_FromUnicode(NULL, end-start);
534 if (res == NULL)
535 return NULL;
536 for (p = PyUnicode_AS_UNICODE(res), i = start;
537 i<end; ++p, ++i)
538 *p = Py_UNICODE_REPLACEMENT_CHARACTER;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000539 restuple = Py_BuildValue("(On)", res, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000540 Py_DECREF(res);
541 return restuple;
542 }
543 else {
544 wrong_exception_type(exc);
545 return NULL;
546 }
547}
548
549PyObject *PyCodec_XMLCharRefReplaceErrors(PyObject *exc)
550{
551 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
552 PyObject *restuple;
553 PyObject *object;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000554 Py_ssize_t start;
555 Py_ssize_t end;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000556 PyObject *res;
557 Py_UNICODE *p;
558 Py_UNICODE *startp;
559 Py_UNICODE *outp;
560 int ressize;
561 if (PyUnicodeEncodeError_GetStart(exc, &start))
562 return NULL;
563 if (PyUnicodeEncodeError_GetEnd(exc, &end))
564 return NULL;
565 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
566 return NULL;
567 startp = PyUnicode_AS_UNICODE(object);
568 for (p = startp+start, ressize = 0; p < startp+end; ++p) {
569 if (*p<10)
570 ressize += 2+1+1;
571 else if (*p<100)
572 ressize += 2+2+1;
573 else if (*p<1000)
574 ressize += 2+3+1;
575 else if (*p<10000)
576 ressize += 2+4+1;
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000577#ifndef Py_UNICODE_WIDE
578 else
579 ressize += 2+5+1;
580#else
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000581 else if (*p<100000)
582 ressize += 2+5+1;
583 else if (*p<1000000)
584 ressize += 2+6+1;
585 else
586 ressize += 2+7+1;
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000587#endif
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000588 }
589 /* allocate replacement */
590 res = PyUnicode_FromUnicode(NULL, ressize);
591 if (res == NULL) {
592 Py_DECREF(object);
593 return NULL;
594 }
595 /* generate replacement */
596 for (p = startp+start, outp = PyUnicode_AS_UNICODE(res);
597 p < startp+end; ++p) {
598 Py_UNICODE c = *p;
599 int digits;
600 int base;
601 *outp++ = '&';
602 *outp++ = '#';
603 if (*p<10) {
604 digits = 1;
605 base = 1;
606 }
607 else if (*p<100) {
608 digits = 2;
609 base = 10;
610 }
611 else if (*p<1000) {
612 digits = 3;
613 base = 100;
614 }
615 else if (*p<10000) {
616 digits = 4;
617 base = 1000;
618 }
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000619#ifndef Py_UNICODE_WIDE
620 else {
621 digits = 5;
622 base = 10000;
623 }
624#else
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000625 else if (*p<100000) {
626 digits = 5;
627 base = 10000;
628 }
629 else if (*p<1000000) {
630 digits = 6;
631 base = 100000;
632 }
633 else {
634 digits = 7;
635 base = 1000000;
636 }
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000637#endif
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000638 while (digits-->0) {
639 *outp++ = '0' + c/base;
640 c %= base;
641 base /= 10;
642 }
643 *outp++ = ';';
644 }
Martin v. Löwis18e16552006-02-15 17:27:45 +0000645 restuple = Py_BuildValue("(On)", res, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000646 Py_DECREF(res);
647 Py_DECREF(object);
648 return restuple;
649 }
650 else {
651 wrong_exception_type(exc);
652 return NULL;
653 }
654}
655
656static Py_UNICODE hexdigits[] = {
657 '0', '1', '2', '3', '4', '5', '6', '7',
658 '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
659};
660
661PyObject *PyCodec_BackslashReplaceErrors(PyObject *exc)
662{
663 if (PyObject_IsInstance(exc, PyExc_UnicodeEncodeError)) {
664 PyObject *restuple;
665 PyObject *object;
Martin v. Löwis18e16552006-02-15 17:27:45 +0000666 Py_ssize_t start;
667 Py_ssize_t end;
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000668 PyObject *res;
669 Py_UNICODE *p;
670 Py_UNICODE *startp;
671 Py_UNICODE *outp;
672 int ressize;
673 if (PyUnicodeEncodeError_GetStart(exc, &start))
674 return NULL;
675 if (PyUnicodeEncodeError_GetEnd(exc, &end))
676 return NULL;
677 if (!(object = PyUnicodeEncodeError_GetObject(exc)))
678 return NULL;
679 startp = PyUnicode_AS_UNICODE(object);
680 for (p = startp+start, ressize = 0; p < startp+end; ++p) {
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000681#ifdef Py_UNICODE_WIDE
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000682 if (*p >= 0x00010000)
683 ressize += 1+1+8;
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000684 else
685#endif
686 if (*p >= 0x100) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000687 ressize += 1+1+4;
688 }
689 else
690 ressize += 1+1+2;
691 }
692 res = PyUnicode_FromUnicode(NULL, ressize);
693 if (res==NULL)
694 return NULL;
695 for (p = startp+start, outp = PyUnicode_AS_UNICODE(res);
696 p < startp+end; ++p) {
697 Py_UNICODE c = *p;
698 *outp++ = '\\';
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000699#ifdef Py_UNICODE_WIDE
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000700 if (c >= 0x00010000) {
701 *outp++ = 'U';
702 *outp++ = hexdigits[(c>>28)&0xf];
703 *outp++ = hexdigits[(c>>24)&0xf];
704 *outp++ = hexdigits[(c>>20)&0xf];
705 *outp++ = hexdigits[(c>>16)&0xf];
706 *outp++ = hexdigits[(c>>12)&0xf];
707 *outp++ = hexdigits[(c>>8)&0xf];
708 }
Hye-Shik Chang7db07e62003-12-29 01:36:01 +0000709 else
710#endif
711 if (c >= 0x100) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000712 *outp++ = 'u';
713 *outp++ = hexdigits[(c>>12)&0xf];
714 *outp++ = hexdigits[(c>>8)&0xf];
715 }
716 else
717 *outp++ = 'x';
718 *outp++ = hexdigits[(c>>4)&0xf];
719 *outp++ = hexdigits[c&0xf];
720 }
721
Martin v. Löwis18e16552006-02-15 17:27:45 +0000722 restuple = Py_BuildValue("(On)", res, end);
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000723 Py_DECREF(res);
724 Py_DECREF(object);
725 return restuple;
726 }
727 else {
728 wrong_exception_type(exc);
729 return NULL;
730 }
731}
Walter Dörwaldbf73db82002-11-21 20:08:33 +0000732#endif
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000733
734static PyObject *strict_errors(PyObject *self, PyObject *exc)
735{
736 return PyCodec_StrictErrors(exc);
737}
738
739
Walter Dörwaldbf73db82002-11-21 20:08:33 +0000740#ifdef Py_USING_UNICODE
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000741static PyObject *ignore_errors(PyObject *self, PyObject *exc)
742{
743 return PyCodec_IgnoreErrors(exc);
744}
745
746
747static PyObject *replace_errors(PyObject *self, PyObject *exc)
748{
749 return PyCodec_ReplaceErrors(exc);
750}
751
752
753static PyObject *xmlcharrefreplace_errors(PyObject *self, PyObject *exc)
754{
755 return PyCodec_XMLCharRefReplaceErrors(exc);
756}
757
758
759static PyObject *backslashreplace_errors(PyObject *self, PyObject *exc)
760{
761 return PyCodec_BackslashReplaceErrors(exc);
762}
Walter Dörwaldbf73db82002-11-21 20:08:33 +0000763#endif
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000764
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000765static int _PyCodecRegistry_Init(void)
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000766{
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000767 static struct {
768 char *name;
769 PyMethodDef def;
770 } methods[] =
771 {
772 {
773 "strict",
774 {
775 "strict_errors",
776 strict_errors,
777 METH_O
778 }
779 },
Walter Dörwaldbf73db82002-11-21 20:08:33 +0000780#ifdef Py_USING_UNICODE
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000781 {
782 "ignore",
783 {
784 "ignore_errors",
785 ignore_errors,
786 METH_O
787 }
788 },
789 {
790 "replace",
791 {
792 "replace_errors",
793 replace_errors,
794 METH_O
795 }
796 },
797 {
798 "xmlcharrefreplace",
799 {
800 "xmlcharrefreplace_errors",
801 xmlcharrefreplace_errors,
802 METH_O
803 }
804 },
805 {
806 "backslashreplace",
807 {
808 "backslashreplace_errors",
809 backslashreplace_errors,
810 METH_O
811 }
812 }
Walter Dörwaldbf73db82002-11-21 20:08:33 +0000813#endif
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000814 };
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000815
Nicholas Bastine5662ae2004-03-24 22:22:12 +0000816 PyInterpreterState *interp = PyThreadState_GET()->interp;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000817 PyObject *mod;
Neal Norwitz739a8f82004-07-08 01:55:58 +0000818 unsigned i;
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000819
820 if (interp->codec_search_path != NULL)
821 return 0;
822
823 interp->codec_search_path = PyList_New(0);
824 interp->codec_search_cache = PyDict_New();
825 interp->codec_error_registry = PyDict_New();
826
827 if (interp->codec_error_registry) {
828 for (i = 0; i < sizeof(methods)/sizeof(methods[0]); ++i) {
829 PyObject *func = PyCFunction_New(&methods[i].def, NULL);
830 int res;
831 if (!func)
832 Py_FatalError("can't initialize codec error registry");
833 res = PyCodec_RegisterError(methods[i].name, func);
834 Py_DECREF(func);
835 if (res)
836 Py_FatalError("can't initialize codec error registry");
Walter Dörwald3aeb6322002-09-02 13:14:32 +0000837 }
838 }
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000839
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000840 if (interp->codec_search_path == NULL ||
841 interp->codec_search_cache == NULL ||
842 interp->codec_error_registry == NULL)
843 Py_FatalError("can't initialize codec registry");
844
Thomas Woutersf7f438b2006-02-28 16:09:29 +0000845 mod = PyImport_ImportModuleLevel("encodings", NULL, NULL, NULL, 0);
Gustavo Niemeyer5ddd4c32003-03-19 00:35:36 +0000846 if (mod == NULL) {
847 if (PyErr_ExceptionMatches(PyExc_ImportError)) {
848 /* Ignore ImportErrors... this is done so that
849 distributions can disable the encodings package. Note
850 that other errors are not masked, e.g. SystemErrors
851 raised to inform the user of an error in the Python
852 configuration are still reported back to the user. */
853 PyErr_Clear();
854 return 0;
855 }
856 return -1;
857 }
858 Py_DECREF(mod);
859 return 0;
Guido van Rossumfeee4b92000-03-10 22:57:27 +0000860}