Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 1 | /* ------------------------------------------------------------------------ |
| 2 | |
| 3 | _codecs -- Provides access to the codec registry and the builtin |
| 4 | codecs. |
| 5 | |
| 6 | This module should never be imported directly. The standard library |
| 7 | module "codecs" wraps this builtin module for use within Python. |
| 8 | |
| 9 | The codec registry is accessible via: |
| 10 | |
| 11 | register(search_function) -> None |
| 12 | |
Walter Dörwald | 219336a | 2007-07-19 13:04:38 +0000 | [diff] [blame] | 13 | lookup(encoding) -> CodecInfo object |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 14 | |
| 15 | The builtin Unicode codecs use the following interface: |
| 16 | |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 17 | <encoding>_encode(Unicode_object[,errors='strict']) -> |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 18 | (string object, bytes consumed) |
| 19 | |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 20 | <encoding>_decode(char_buffer_obj[,errors='strict']) -> |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 21 | (Unicode object, bytes consumed) |
| 22 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 23 | <encoding>_encode() interfaces also accept non-Unicode object as |
| 24 | input. The objects are then converted to Unicode using |
| 25 | PyUnicode_FromObject() prior to applying the conversion. |
| 26 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 27 | These <encoding>s are available: utf_8, unicode_escape, |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 28 | raw_unicode_escape, unicode_internal, latin_1, ascii (7-bit), |
| 29 | mbcs (on win32). |
| 30 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 31 | |
| 32 | Written by Marc-Andre Lemburg (mal@lemburg.com). |
| 33 | |
Guido van Rossum | 16b1ad9 | 2000-08-03 16:24:25 +0000 | [diff] [blame] | 34 | Copyright (c) Corporation for National Research Initiatives. |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 35 | |
| 36 | ------------------------------------------------------------------------ */ |
| 37 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 38 | #define PY_SSIZE_T_CLEAN |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 39 | #include "Python.h" |
| 40 | |
| 41 | /* --- Registry ----------------------------------------------------------- */ |
| 42 | |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 43 | PyDoc_STRVAR(register__doc__, |
| 44 | "register(search_function)\n\ |
| 45 | \n\ |
| 46 | Register a codec search function. Search functions are expected to take\n\ |
| 47 | one argument, the encoding name in all lower case letters, and return\n\ |
Walter Dörwald | 219336a | 2007-07-19 13:04:38 +0000 | [diff] [blame] | 48 | a tuple of functions (encoder, decoder, stream_reader, stream_writer)\n\ |
| 49 | (or a CodecInfo object)."); |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 50 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 51 | static |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 52 | PyObject *codec_register(PyObject *self, PyObject *search_function) |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 53 | { |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 54 | if (PyCodec_Register(search_function)) |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 55 | return NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 56 | |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 57 | Py_RETURN_NONE; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 60 | PyDoc_STRVAR(lookup__doc__, |
Walter Dörwald | 219336a | 2007-07-19 13:04:38 +0000 | [diff] [blame] | 61 | "lookup(encoding) -> CodecInfo\n\ |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 62 | \n\ |
| 63 | Looks up a codec tuple in the Python codec registry and returns\n\ |
Walter Dörwald | 219336a | 2007-07-19 13:04:38 +0000 | [diff] [blame] | 64 | a tuple of function (or a CodecInfo object)."); |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 65 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 66 | static |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 67 | PyObject *codec_lookup(PyObject *self, PyObject *args) |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 68 | { |
| 69 | char *encoding; |
| 70 | |
| 71 | if (!PyArg_ParseTuple(args, "s:lookup", &encoding)) |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 72 | return NULL; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 73 | |
| 74 | return _PyCodec_Lookup(encoding); |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 77 | PyDoc_STRVAR(encode__doc__, |
| 78 | "encode(obj, [encoding[,errors]]) -> object\n\ |
| 79 | \n\ |
| 80 | Encodes obj using the codec registered for encoding. encoding defaults\n\ |
| 81 | to the default encoding. errors may be given to set a different error\n\ |
| 82 | handling scheme. Default is 'strict' meaning that encoding errors raise\n\ |
| 83 | a ValueError. Other possible values are 'ignore', 'replace' and\n\ |
| 84 | 'xmlcharrefreplace' as well as any other name registered with\n\ |
| 85 | codecs.register_error that can handle ValueErrors."); |
| 86 | |
| 87 | static PyObject * |
| 88 | codec_encode(PyObject *self, PyObject *args) |
| 89 | { |
Brett Cannon | 3e377de | 2004-07-10 21:41:14 +0000 | [diff] [blame] | 90 | const char *encoding = NULL; |
| 91 | const char *errors = NULL; |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 92 | PyObject *v; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 93 | |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 94 | if (!PyArg_ParseTuple(args, "O|ss:encode", &v, &encoding, &errors)) |
| 95 | return NULL; |
| 96 | |
Martin v. Löwis | e2713be | 2005-03-08 15:03:08 +0000 | [diff] [blame] | 97 | #ifdef Py_USING_UNICODE |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 98 | if (encoding == NULL) |
| 99 | encoding = PyUnicode_GetDefaultEncoding(); |
Martin v. Löwis | e2713be | 2005-03-08 15:03:08 +0000 | [diff] [blame] | 100 | #else |
| 101 | if (encoding == NULL) { |
| 102 | PyErr_SetString(PyExc_ValueError, "no encoding specified"); |
| 103 | return NULL; |
| 104 | } |
| 105 | #endif |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 106 | |
| 107 | /* Encode via the codec registry */ |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 108 | return PyCodec_Encode(v, encoding, errors); |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | PyDoc_STRVAR(decode__doc__, |
| 112 | "decode(obj, [encoding[,errors]]) -> object\n\ |
| 113 | \n\ |
| 114 | Decodes obj using the codec registered for encoding. encoding defaults\n\ |
| 115 | to the default encoding. errors may be given to set a different error\n\ |
| 116 | handling scheme. Default is 'strict' meaning that encoding errors raise\n\ |
| 117 | a ValueError. Other possible values are 'ignore' and 'replace'\n\ |
| 118 | as well as any other name registerd with codecs.register_error that is\n\ |
| 119 | able to handle ValueErrors."); |
| 120 | |
| 121 | static PyObject * |
| 122 | codec_decode(PyObject *self, PyObject *args) |
| 123 | { |
Brett Cannon | 3e377de | 2004-07-10 21:41:14 +0000 | [diff] [blame] | 124 | const char *encoding = NULL; |
| 125 | const char *errors = NULL; |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 126 | PyObject *v; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 127 | |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 128 | if (!PyArg_ParseTuple(args, "O|ss:decode", &v, &encoding, &errors)) |
| 129 | return NULL; |
| 130 | |
Martin v. Löwis | e2713be | 2005-03-08 15:03:08 +0000 | [diff] [blame] | 131 | #ifdef Py_USING_UNICODE |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 132 | if (encoding == NULL) |
| 133 | encoding = PyUnicode_GetDefaultEncoding(); |
Martin v. Löwis | e2713be | 2005-03-08 15:03:08 +0000 | [diff] [blame] | 134 | #else |
| 135 | if (encoding == NULL) { |
| 136 | PyErr_SetString(PyExc_ValueError, "no encoding specified"); |
| 137 | return NULL; |
| 138 | } |
| 139 | #endif |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 140 | |
| 141 | /* Decode via the codec registry */ |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 142 | return PyCodec_Decode(v, encoding, errors); |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 145 | /* --- Helpers ------------------------------------------------------------ */ |
| 146 | |
| 147 | static |
| 148 | PyObject *codec_tuple(PyObject *unicode, |
Martin v. Löwis | 6685128 | 2006-04-22 11:40:03 +0000 | [diff] [blame] | 149 | Py_ssize_t len) |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 150 | { |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 151 | PyObject *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 152 | if (unicode == NULL) |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 153 | return NULL; |
| 154 | v = Py_BuildValue("On", unicode, len); |
| 155 | Py_DECREF(unicode); |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 156 | return v; |
| 157 | } |
| 158 | |
Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 159 | /* --- String codecs ------------------------------------------------------ */ |
| 160 | static PyObject * |
| 161 | escape_decode(PyObject *self, |
| 162 | PyObject *args) |
| 163 | { |
| 164 | const char *errors = NULL; |
| 165 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 166 | Py_ssize_t size; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 167 | |
Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 168 | if (!PyArg_ParseTuple(args, "s#|z:escape_decode", |
| 169 | &data, &size, &errors)) |
| 170 | return NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 171 | return codec_tuple(PyString_DecodeEscape(data, size, errors, 0, NULL), |
Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 172 | size); |
| 173 | } |
| 174 | |
| 175 | static PyObject * |
| 176 | escape_encode(PyObject *self, |
| 177 | PyObject *args) |
| 178 | { |
| 179 | PyObject *str; |
| 180 | const char *errors = NULL; |
| 181 | char *buf; |
Martin v. Löwis | 6685128 | 2006-04-22 11:40:03 +0000 | [diff] [blame] | 182 | Py_ssize_t len; |
Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 183 | |
| 184 | if (!PyArg_ParseTuple(args, "O!|z:escape_encode", |
| 185 | &PyString_Type, &str, &errors)) |
| 186 | return NULL; |
| 187 | |
| 188 | str = PyString_Repr(str, 0); |
| 189 | if (!str) |
| 190 | return NULL; |
| 191 | |
| 192 | /* The string will be quoted. Unquote, similar to unicode-escape. */ |
| 193 | buf = PyString_AS_STRING (str); |
| 194 | len = PyString_GET_SIZE (str); |
| 195 | memmove(buf, buf+1, len-2); |
Neal Norwitz | 6f5ff3f | 2006-08-12 01:43:40 +0000 | [diff] [blame] | 196 | if (_PyString_Resize(&str, len-2) < 0) |
| 197 | return NULL; |
Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 198 | |
| 199 | return codec_tuple(str, PyString_Size(str)); |
| 200 | } |
| 201 | |
| 202 | #ifdef Py_USING_UNICODE |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 203 | /* --- Decoder ------------------------------------------------------------ */ |
| 204 | |
| 205 | static PyObject * |
| 206 | unicode_internal_decode(PyObject *self, |
| 207 | PyObject *args) |
| 208 | { |
Marc-André Lemburg | b425f5e | 2000-09-21 21:09:45 +0000 | [diff] [blame] | 209 | PyObject *obj; |
| 210 | const char *errors = NULL; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 211 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 212 | Py_ssize_t size; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 213 | |
Marc-André Lemburg | b425f5e | 2000-09-21 21:09:45 +0000 | [diff] [blame] | 214 | if (!PyArg_ParseTuple(args, "O|z:unicode_internal_decode", |
| 215 | &obj, &errors)) |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 216 | return NULL; |
| 217 | |
Marc-André Lemburg | 29273c8 | 2003-02-04 19:35:03 +0000 | [diff] [blame] | 218 | if (PyUnicode_Check(obj)) { |
| 219 | Py_INCREF(obj); |
Marc-André Lemburg | b425f5e | 2000-09-21 21:09:45 +0000 | [diff] [blame] | 220 | return codec_tuple(obj, PyUnicode_GET_SIZE(obj)); |
Marc-André Lemburg | 29273c8 | 2003-02-04 19:35:03 +0000 | [diff] [blame] | 221 | } |
Marc-André Lemburg | b425f5e | 2000-09-21 21:09:45 +0000 | [diff] [blame] | 222 | else { |
| 223 | if (PyObject_AsReadBuffer(obj, (const void **)&data, &size)) |
| 224 | return NULL; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 225 | |
| 226 | return codec_tuple(_PyUnicode_DecodeUnicodeInternal(data, size, errors), |
Marc-André Lemburg | b425f5e | 2000-09-21 21:09:45 +0000 | [diff] [blame] | 227 | size); |
| 228 | } |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | static PyObject * |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 232 | utf_7_decode(PyObject *self, |
Amaury Forgeot d'Arc | 5087980 | 2007-11-20 23:31:27 +0000 | [diff] [blame^] | 233 | PyObject *args) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 234 | { |
| 235 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 236 | Py_ssize_t size; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 237 | const char *errors = NULL; |
Amaury Forgeot d'Arc | 5087980 | 2007-11-20 23:31:27 +0000 | [diff] [blame^] | 238 | int final = 0; |
| 239 | Py_ssize_t consumed; |
| 240 | PyObject *decoded = NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 241 | |
Amaury Forgeot d'Arc | 5087980 | 2007-11-20 23:31:27 +0000 | [diff] [blame^] | 242 | if (!PyArg_ParseTuple(args, "t#|zi:utf_7_decode", |
| 243 | &data, &size, &errors, &final)) |
| 244 | return NULL; |
| 245 | consumed = size; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 246 | |
Amaury Forgeot d'Arc | 5087980 | 2007-11-20 23:31:27 +0000 | [diff] [blame^] | 247 | decoded = PyUnicode_DecodeUTF7Stateful(data, size, errors, |
| 248 | final ? NULL : &consumed); |
| 249 | if (decoded == NULL) |
| 250 | return NULL; |
| 251 | return codec_tuple(decoded, consumed); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | static PyObject * |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 255 | utf_8_decode(PyObject *self, |
| 256 | PyObject *args) |
| 257 | { |
| 258 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 259 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 260 | const char *errors = NULL; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 261 | int final = 0; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 262 | Py_ssize_t consumed; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 263 | PyObject *decoded = NULL; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 264 | |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 265 | if (!PyArg_ParseTuple(args, "t#|zi:utf_8_decode", |
| 266 | &data, &size, &errors, &final)) |
| 267 | return NULL; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 268 | if (size < 0) { |
| 269 | PyErr_SetString(PyExc_ValueError, "negative argument"); |
| 270 | return 0; |
| 271 | } |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 272 | consumed = size; |
| 273 | |
| 274 | decoded = PyUnicode_DecodeUTF8Stateful(data, size, errors, |
| 275 | final ? NULL : &consumed); |
| 276 | if (decoded == NULL) |
| 277 | return NULL; |
| 278 | return codec_tuple(decoded, consumed); |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | static PyObject * |
| 282 | utf_16_decode(PyObject *self, |
| 283 | PyObject *args) |
| 284 | { |
| 285 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 286 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 287 | const char *errors = NULL; |
| 288 | int byteorder = 0; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 289 | int final = 0; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 290 | Py_ssize_t consumed; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 291 | PyObject *decoded; |
| 292 | |
| 293 | if (!PyArg_ParseTuple(args, "t#|zi:utf_16_decode", |
| 294 | &data, &size, &errors, &final)) |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 295 | return NULL; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 296 | if (size < 0) { |
| 297 | PyErr_SetString(PyExc_ValueError, "negative argument"); |
| 298 | return 0; |
| 299 | } |
Martin v. Löwis | d532ba0 | 2006-05-27 08:54:29 +0000 | [diff] [blame] | 300 | consumed = size; /* This is overwritten unless final is true. */ |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 301 | decoded = PyUnicode_DecodeUTF16Stateful(data, size, errors, &byteorder, |
| 302 | final ? NULL : &consumed); |
| 303 | if (decoded == NULL) |
| 304 | return NULL; |
| 305 | return codec_tuple(decoded, consumed); |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | static PyObject * |
| 309 | utf_16_le_decode(PyObject *self, |
| 310 | PyObject *args) |
| 311 | { |
| 312 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 313 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 314 | const char *errors = NULL; |
| 315 | int byteorder = -1; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 316 | int final = 0; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 317 | Py_ssize_t consumed; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 318 | PyObject *decoded = NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 319 | |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 320 | if (!PyArg_ParseTuple(args, "t#|zi:utf_16_le_decode", |
| 321 | &data, &size, &errors, &final)) |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 322 | return NULL; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 323 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 324 | if (size < 0) { |
| 325 | PyErr_SetString(PyExc_ValueError, "negative argument"); |
| 326 | return 0; |
| 327 | } |
Martin v. Löwis | d532ba0 | 2006-05-27 08:54:29 +0000 | [diff] [blame] | 328 | consumed = size; /* This is overwritten unless final is true. */ |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 329 | decoded = PyUnicode_DecodeUTF16Stateful(data, size, errors, |
| 330 | &byteorder, final ? NULL : &consumed); |
| 331 | if (decoded == NULL) |
| 332 | return NULL; |
| 333 | return codec_tuple(decoded, consumed); |
| 334 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | static PyObject * |
| 338 | utf_16_be_decode(PyObject *self, |
| 339 | PyObject *args) |
| 340 | { |
| 341 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 342 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 343 | const char *errors = NULL; |
| 344 | int byteorder = 1; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 345 | int final = 0; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 346 | Py_ssize_t consumed; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 347 | PyObject *decoded = NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 348 | |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 349 | if (!PyArg_ParseTuple(args, "t#|zi:utf_16_be_decode", |
| 350 | &data, &size, &errors, &final)) |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 351 | return NULL; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 352 | if (size < 0) { |
| 353 | PyErr_SetString(PyExc_ValueError, "negative argument"); |
| 354 | return 0; |
| 355 | } |
Martin v. Löwis | d532ba0 | 2006-05-27 08:54:29 +0000 | [diff] [blame] | 356 | consumed = size; /* This is overwritten unless final is true. */ |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 357 | decoded = PyUnicode_DecodeUTF16Stateful(data, size, errors, |
| 358 | &byteorder, final ? NULL : &consumed); |
| 359 | if (decoded == NULL) |
| 360 | return NULL; |
| 361 | return codec_tuple(decoded, consumed); |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | /* This non-standard version also provides access to the byteorder |
| 365 | parameter of the builtin UTF-16 codec. |
| 366 | |
| 367 | It returns a tuple (unicode, bytesread, byteorder) with byteorder |
| 368 | being the value in effect at the end of data. |
| 369 | |
| 370 | */ |
| 371 | |
| 372 | static PyObject * |
| 373 | utf_16_ex_decode(PyObject *self, |
| 374 | PyObject *args) |
| 375 | { |
| 376 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 377 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 378 | const char *errors = NULL; |
| 379 | int byteorder = 0; |
| 380 | PyObject *unicode, *tuple; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 381 | int final = 0; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 382 | Py_ssize_t consumed; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 383 | |
| 384 | if (!PyArg_ParseTuple(args, "t#|zii:utf_16_ex_decode", |
| 385 | &data, &size, &errors, &byteorder, &final)) |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 386 | return NULL; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 387 | if (size < 0) { |
| 388 | PyErr_SetString(PyExc_ValueError, "negative argument"); |
| 389 | return 0; |
| 390 | } |
Martin v. Löwis | d532ba0 | 2006-05-27 08:54:29 +0000 | [diff] [blame] | 391 | consumed = size; /* This is overwritten unless final is true. */ |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 392 | unicode = PyUnicode_DecodeUTF16Stateful(data, size, errors, &byteorder, |
| 393 | final ? NULL : &consumed); |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 394 | if (unicode == NULL) |
| 395 | return NULL; |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 396 | tuple = Py_BuildValue("Oni", unicode, consumed, byteorder); |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 397 | Py_DECREF(unicode); |
| 398 | return tuple; |
| 399 | } |
| 400 | |
| 401 | static PyObject * |
Walter Dörwald | 6e39080 | 2007-08-17 16:41:28 +0000 | [diff] [blame] | 402 | utf_32_decode(PyObject *self, |
| 403 | PyObject *args) |
| 404 | { |
| 405 | const char *data; |
| 406 | Py_ssize_t size; |
| 407 | const char *errors = NULL; |
| 408 | int byteorder = 0; |
| 409 | int final = 0; |
| 410 | Py_ssize_t consumed; |
| 411 | PyObject *decoded; |
| 412 | |
| 413 | if (!PyArg_ParseTuple(args, "t#|zi:utf_32_decode", |
| 414 | &data, &size, &errors, &final)) |
| 415 | return NULL; |
| 416 | if (size < 0) { |
| 417 | PyErr_SetString(PyExc_ValueError, "negative argument"); |
| 418 | return 0; |
| 419 | } |
| 420 | consumed = size; /* This is overwritten unless final is true. */ |
| 421 | decoded = PyUnicode_DecodeUTF32Stateful(data, size, errors, &byteorder, |
| 422 | final ? NULL : &consumed); |
| 423 | if (decoded == NULL) |
| 424 | return NULL; |
| 425 | return codec_tuple(decoded, consumed); |
| 426 | } |
| 427 | |
| 428 | static PyObject * |
| 429 | utf_32_le_decode(PyObject *self, |
| 430 | PyObject *args) |
| 431 | { |
| 432 | const char *data; |
| 433 | Py_ssize_t size; |
| 434 | const char *errors = NULL; |
| 435 | int byteorder = -1; |
| 436 | int final = 0; |
| 437 | Py_ssize_t consumed; |
| 438 | PyObject *decoded = NULL; |
| 439 | |
| 440 | if (!PyArg_ParseTuple(args, "t#|zi:utf_32_le_decode", |
| 441 | &data, &size, &errors, &final)) |
| 442 | return NULL; |
| 443 | |
| 444 | if (size < 0) { |
| 445 | PyErr_SetString(PyExc_ValueError, "negative argument"); |
| 446 | return 0; |
| 447 | } |
| 448 | consumed = size; /* This is overwritten unless final is true. */ |
| 449 | decoded = PyUnicode_DecodeUTF32Stateful(data, size, errors, |
| 450 | &byteorder, final ? NULL : &consumed); |
| 451 | if (decoded == NULL) |
| 452 | return NULL; |
| 453 | return codec_tuple(decoded, consumed); |
| 454 | |
| 455 | } |
| 456 | |
| 457 | static PyObject * |
| 458 | utf_32_be_decode(PyObject *self, |
| 459 | PyObject *args) |
| 460 | { |
| 461 | const char *data; |
| 462 | Py_ssize_t size; |
| 463 | const char *errors = NULL; |
| 464 | int byteorder = 1; |
| 465 | int final = 0; |
| 466 | Py_ssize_t consumed; |
| 467 | PyObject *decoded = NULL; |
| 468 | |
| 469 | if (!PyArg_ParseTuple(args, "t#|zi:utf_32_be_decode", |
| 470 | &data, &size, &errors, &final)) |
| 471 | return NULL; |
| 472 | if (size < 0) { |
| 473 | PyErr_SetString(PyExc_ValueError, "negative argument"); |
| 474 | return 0; |
| 475 | } |
| 476 | consumed = size; /* This is overwritten unless final is true. */ |
| 477 | decoded = PyUnicode_DecodeUTF32Stateful(data, size, errors, |
| 478 | &byteorder, final ? NULL : &consumed); |
| 479 | if (decoded == NULL) |
| 480 | return NULL; |
| 481 | return codec_tuple(decoded, consumed); |
| 482 | } |
| 483 | |
| 484 | /* This non-standard version also provides access to the byteorder |
| 485 | parameter of the builtin UTF-32 codec. |
| 486 | |
| 487 | It returns a tuple (unicode, bytesread, byteorder) with byteorder |
| 488 | being the value in effect at the end of data. |
| 489 | |
| 490 | */ |
| 491 | |
| 492 | static PyObject * |
| 493 | utf_32_ex_decode(PyObject *self, |
| 494 | PyObject *args) |
| 495 | { |
| 496 | const char *data; |
| 497 | Py_ssize_t size; |
| 498 | const char *errors = NULL; |
| 499 | int byteorder = 0; |
| 500 | PyObject *unicode, *tuple; |
| 501 | int final = 0; |
| 502 | Py_ssize_t consumed; |
| 503 | |
| 504 | if (!PyArg_ParseTuple(args, "t#|zii:utf_32_ex_decode", |
| 505 | &data, &size, &errors, &byteorder, &final)) |
| 506 | return NULL; |
| 507 | if (size < 0) { |
| 508 | PyErr_SetString(PyExc_ValueError, "negative argument"); |
| 509 | return 0; |
| 510 | } |
| 511 | consumed = size; /* This is overwritten unless final is true. */ |
| 512 | unicode = PyUnicode_DecodeUTF32Stateful(data, size, errors, &byteorder, |
| 513 | final ? NULL : &consumed); |
| 514 | if (unicode == NULL) |
| 515 | return NULL; |
| 516 | tuple = Py_BuildValue("Oni", unicode, consumed, byteorder); |
| 517 | Py_DECREF(unicode); |
| 518 | return tuple; |
| 519 | } |
| 520 | |
| 521 | static PyObject * |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 522 | unicode_escape_decode(PyObject *self, |
| 523 | PyObject *args) |
| 524 | { |
| 525 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 526 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 527 | const char *errors = NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 528 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 529 | if (!PyArg_ParseTuple(args, "t#|z:unicode_escape_decode", |
| 530 | &data, &size, &errors)) |
| 531 | return NULL; |
| 532 | |
| 533 | return codec_tuple(PyUnicode_DecodeUnicodeEscape(data, size, errors), |
| 534 | size); |
| 535 | } |
| 536 | |
| 537 | static PyObject * |
| 538 | raw_unicode_escape_decode(PyObject *self, |
| 539 | PyObject *args) |
| 540 | { |
| 541 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 542 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 543 | const char *errors = NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 544 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 545 | if (!PyArg_ParseTuple(args, "t#|z:raw_unicode_escape_decode", |
| 546 | &data, &size, &errors)) |
| 547 | return NULL; |
| 548 | |
| 549 | return codec_tuple(PyUnicode_DecodeRawUnicodeEscape(data, size, errors), |
| 550 | size); |
| 551 | } |
| 552 | |
| 553 | static PyObject * |
| 554 | latin_1_decode(PyObject *self, |
| 555 | PyObject *args) |
| 556 | { |
| 557 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 558 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 559 | const char *errors = NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 560 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 561 | if (!PyArg_ParseTuple(args, "t#|z:latin_1_decode", |
| 562 | &data, &size, &errors)) |
| 563 | return NULL; |
| 564 | |
| 565 | return codec_tuple(PyUnicode_DecodeLatin1(data, size, errors), |
| 566 | size); |
| 567 | } |
| 568 | |
| 569 | static PyObject * |
| 570 | ascii_decode(PyObject *self, |
| 571 | PyObject *args) |
| 572 | { |
| 573 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 574 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 575 | const char *errors = NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 576 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 577 | if (!PyArg_ParseTuple(args, "t#|z:ascii_decode", |
| 578 | &data, &size, &errors)) |
| 579 | return NULL; |
| 580 | |
| 581 | return codec_tuple(PyUnicode_DecodeASCII(data, size, errors), |
| 582 | size); |
| 583 | } |
| 584 | |
| 585 | static PyObject * |
| 586 | charmap_decode(PyObject *self, |
| 587 | PyObject *args) |
| 588 | { |
| 589 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 590 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 591 | const char *errors = NULL; |
| 592 | PyObject *mapping = NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 593 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 594 | if (!PyArg_ParseTuple(args, "t#|zO:charmap_decode", |
| 595 | &data, &size, &errors, &mapping)) |
| 596 | return NULL; |
| 597 | if (mapping == Py_None) |
| 598 | mapping = NULL; |
| 599 | |
| 600 | return codec_tuple(PyUnicode_DecodeCharmap(data, size, mapping, errors), |
| 601 | size); |
| 602 | } |
| 603 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 604 | #if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T) |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 605 | |
| 606 | static PyObject * |
| 607 | mbcs_decode(PyObject *self, |
| 608 | PyObject *args) |
| 609 | { |
| 610 | const char *data; |
Martin v. Löwis | d825143 | 2006-06-14 05:21:04 +0000 | [diff] [blame] | 611 | Py_ssize_t size, consumed; |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 612 | const char *errors = NULL; |
Martin v. Löwis | 961b91b | 2006-08-02 13:53:55 +0000 | [diff] [blame] | 613 | int final = 0; |
Martin v. Löwis | d825143 | 2006-06-14 05:21:04 +0000 | [diff] [blame] | 614 | PyObject *decoded; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 615 | |
Martin v. Löwis | d825143 | 2006-06-14 05:21:04 +0000 | [diff] [blame] | 616 | if (!PyArg_ParseTuple(args, "t#|zi:mbcs_decode", |
| 617 | &data, &size, &errors, &final)) |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 618 | return NULL; |
| 619 | |
Martin v. Löwis | d825143 | 2006-06-14 05:21:04 +0000 | [diff] [blame] | 620 | decoded = PyUnicode_DecodeMBCSStateful( |
| 621 | data, size, errors, final ? NULL : &consumed); |
| 622 | if (!decoded) |
| 623 | return NULL; |
| 624 | return codec_tuple(decoded, final ? size : consumed); |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 625 | } |
| 626 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 627 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 628 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 629 | /* --- Encoder ------------------------------------------------------------ */ |
| 630 | |
| 631 | static PyObject * |
| 632 | readbuffer_encode(PyObject *self, |
| 633 | PyObject *args) |
| 634 | { |
| 635 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 636 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 637 | const char *errors = NULL; |
| 638 | |
| 639 | if (!PyArg_ParseTuple(args, "s#|z:readbuffer_encode", |
| 640 | &data, &size, &errors)) |
| 641 | return NULL; |
| 642 | |
| 643 | return codec_tuple(PyString_FromStringAndSize(data, size), |
| 644 | size); |
| 645 | } |
| 646 | |
| 647 | static PyObject * |
| 648 | charbuffer_encode(PyObject *self, |
| 649 | PyObject *args) |
| 650 | { |
| 651 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 652 | Py_ssize_t size; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 653 | const char *errors = NULL; |
| 654 | |
| 655 | if (!PyArg_ParseTuple(args, "t#|z:charbuffer_encode", |
| 656 | &data, &size, &errors)) |
| 657 | return NULL; |
| 658 | |
| 659 | return codec_tuple(PyString_FromStringAndSize(data, size), |
| 660 | size); |
| 661 | } |
| 662 | |
| 663 | static PyObject * |
Marc-André Lemburg | b425f5e | 2000-09-21 21:09:45 +0000 | [diff] [blame] | 664 | unicode_internal_encode(PyObject *self, |
| 665 | PyObject *args) |
| 666 | { |
| 667 | PyObject *obj; |
| 668 | const char *errors = NULL; |
| 669 | const char *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 670 | Py_ssize_t size; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 671 | |
Marc-André Lemburg | b425f5e | 2000-09-21 21:09:45 +0000 | [diff] [blame] | 672 | if (!PyArg_ParseTuple(args, "O|z:unicode_internal_encode", |
| 673 | &obj, &errors)) |
| 674 | return NULL; |
| 675 | |
| 676 | if (PyUnicode_Check(obj)) { |
| 677 | data = PyUnicode_AS_DATA(obj); |
| 678 | size = PyUnicode_GET_DATA_SIZE(obj); |
| 679 | return codec_tuple(PyString_FromStringAndSize(data, size), |
| 680 | size); |
| 681 | } |
| 682 | else { |
| 683 | if (PyObject_AsReadBuffer(obj, (const void **)&data, &size)) |
| 684 | return NULL; |
| 685 | return codec_tuple(PyString_FromStringAndSize(data, size), |
| 686 | size); |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | static PyObject * |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 691 | utf_7_encode(PyObject *self, |
| 692 | PyObject *args) |
| 693 | { |
| 694 | PyObject *str, *v; |
| 695 | const char *errors = NULL; |
| 696 | |
| 697 | if (!PyArg_ParseTuple(args, "O|z:utf_7_encode", |
| 698 | &str, &errors)) |
| 699 | return NULL; |
| 700 | |
| 701 | str = PyUnicode_FromObject(str); |
| 702 | if (str == NULL) |
| 703 | return NULL; |
| 704 | v = codec_tuple(PyUnicode_EncodeUTF7(PyUnicode_AS_UNICODE(str), |
| 705 | PyUnicode_GET_SIZE(str), |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 706 | 0, |
| 707 | 0, |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 708 | errors), |
| 709 | PyUnicode_GET_SIZE(str)); |
| 710 | Py_DECREF(str); |
| 711 | return v; |
| 712 | } |
| 713 | |
| 714 | static PyObject * |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 715 | utf_8_encode(PyObject *self, |
| 716 | PyObject *args) |
| 717 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 718 | PyObject *str, *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 719 | const char *errors = NULL; |
| 720 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 721 | if (!PyArg_ParseTuple(args, "O|z:utf_8_encode", |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 722 | &str, &errors)) |
| 723 | return NULL; |
| 724 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 725 | str = PyUnicode_FromObject(str); |
| 726 | if (str == NULL) |
| 727 | return NULL; |
| 728 | v = codec_tuple(PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(str), |
| 729 | PyUnicode_GET_SIZE(str), |
| 730 | errors), |
| 731 | PyUnicode_GET_SIZE(str)); |
| 732 | Py_DECREF(str); |
| 733 | return v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | /* This version provides access to the byteorder parameter of the |
| 737 | builtin UTF-16 codecs as optional third argument. It defaults to 0 |
| 738 | which means: use the native byte order and prepend the data with a |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 739 | BOM mark. |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 740 | |
| 741 | */ |
| 742 | |
| 743 | static PyObject * |
| 744 | utf_16_encode(PyObject *self, |
| 745 | PyObject *args) |
| 746 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 747 | PyObject *str, *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 748 | const char *errors = NULL; |
| 749 | int byteorder = 0; |
| 750 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 751 | if (!PyArg_ParseTuple(args, "O|zi:utf_16_encode", |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 752 | &str, &errors, &byteorder)) |
| 753 | return NULL; |
| 754 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 755 | str = PyUnicode_FromObject(str); |
| 756 | if (str == NULL) |
| 757 | return NULL; |
| 758 | v = codec_tuple(PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(str), |
| 759 | PyUnicode_GET_SIZE(str), |
| 760 | errors, |
| 761 | byteorder), |
| 762 | PyUnicode_GET_SIZE(str)); |
| 763 | Py_DECREF(str); |
| 764 | return v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 765 | } |
| 766 | |
| 767 | static PyObject * |
| 768 | utf_16_le_encode(PyObject *self, |
| 769 | PyObject *args) |
| 770 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 771 | PyObject *str, *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 772 | const char *errors = NULL; |
| 773 | |
Marc-André Lemburg | 4157dd5 | 2001-06-17 18:32:36 +0000 | [diff] [blame] | 774 | if (!PyArg_ParseTuple(args, "O|z:utf_16_le_encode", |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 775 | &str, &errors)) |
| 776 | return NULL; |
| 777 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 778 | str = PyUnicode_FromObject(str); |
| 779 | if (str == NULL) |
| 780 | return NULL; |
| 781 | v = codec_tuple(PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(str), |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 782 | PyUnicode_GET_SIZE(str), |
| 783 | errors, |
| 784 | -1), |
| 785 | PyUnicode_GET_SIZE(str)); |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 786 | Py_DECREF(str); |
| 787 | return v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | static PyObject * |
| 791 | utf_16_be_encode(PyObject *self, |
| 792 | PyObject *args) |
| 793 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 794 | PyObject *str, *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 795 | const char *errors = NULL; |
| 796 | |
Marc-André Lemburg | 4157dd5 | 2001-06-17 18:32:36 +0000 | [diff] [blame] | 797 | if (!PyArg_ParseTuple(args, "O|z:utf_16_be_encode", |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 798 | &str, &errors)) |
| 799 | return NULL; |
| 800 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 801 | str = PyUnicode_FromObject(str); |
| 802 | if (str == NULL) |
| 803 | return NULL; |
| 804 | v = codec_tuple(PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(str), |
| 805 | PyUnicode_GET_SIZE(str), |
| 806 | errors, |
| 807 | +1), |
| 808 | PyUnicode_GET_SIZE(str)); |
| 809 | Py_DECREF(str); |
| 810 | return v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 811 | } |
| 812 | |
Walter Dörwald | 6e39080 | 2007-08-17 16:41:28 +0000 | [diff] [blame] | 813 | /* This version provides access to the byteorder parameter of the |
| 814 | builtin UTF-32 codecs as optional third argument. It defaults to 0 |
| 815 | which means: use the native byte order and prepend the data with a |
| 816 | BOM mark. |
| 817 | |
| 818 | */ |
| 819 | |
| 820 | static PyObject * |
| 821 | utf_32_encode(PyObject *self, |
| 822 | PyObject *args) |
| 823 | { |
| 824 | PyObject *str, *v; |
| 825 | const char *errors = NULL; |
| 826 | int byteorder = 0; |
| 827 | |
| 828 | if (!PyArg_ParseTuple(args, "O|zi:utf_32_encode", |
| 829 | &str, &errors, &byteorder)) |
| 830 | return NULL; |
| 831 | |
| 832 | str = PyUnicode_FromObject(str); |
| 833 | if (str == NULL) |
| 834 | return NULL; |
| 835 | v = codec_tuple(PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(str), |
| 836 | PyUnicode_GET_SIZE(str), |
| 837 | errors, |
| 838 | byteorder), |
| 839 | PyUnicode_GET_SIZE(str)); |
| 840 | Py_DECREF(str); |
| 841 | return v; |
| 842 | } |
| 843 | |
| 844 | static PyObject * |
| 845 | utf_32_le_encode(PyObject *self, |
| 846 | PyObject *args) |
| 847 | { |
| 848 | PyObject *str, *v; |
| 849 | const char *errors = NULL; |
| 850 | |
| 851 | if (!PyArg_ParseTuple(args, "O|z:utf_32_le_encode", |
| 852 | &str, &errors)) |
| 853 | return NULL; |
| 854 | |
| 855 | str = PyUnicode_FromObject(str); |
| 856 | if (str == NULL) |
| 857 | return NULL; |
| 858 | v = codec_tuple(PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(str), |
| 859 | PyUnicode_GET_SIZE(str), |
| 860 | errors, |
| 861 | -1), |
| 862 | PyUnicode_GET_SIZE(str)); |
| 863 | Py_DECREF(str); |
| 864 | return v; |
| 865 | } |
| 866 | |
| 867 | static PyObject * |
| 868 | utf_32_be_encode(PyObject *self, |
| 869 | PyObject *args) |
| 870 | { |
| 871 | PyObject *str, *v; |
| 872 | const char *errors = NULL; |
| 873 | |
| 874 | if (!PyArg_ParseTuple(args, "O|z:utf_32_be_encode", |
| 875 | &str, &errors)) |
| 876 | return NULL; |
| 877 | |
| 878 | str = PyUnicode_FromObject(str); |
| 879 | if (str == NULL) |
| 880 | return NULL; |
| 881 | v = codec_tuple(PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(str), |
| 882 | PyUnicode_GET_SIZE(str), |
| 883 | errors, |
| 884 | +1), |
| 885 | PyUnicode_GET_SIZE(str)); |
| 886 | Py_DECREF(str); |
| 887 | return v; |
| 888 | } |
| 889 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 890 | static PyObject * |
| 891 | unicode_escape_encode(PyObject *self, |
| 892 | PyObject *args) |
| 893 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 894 | PyObject *str, *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 895 | const char *errors = NULL; |
| 896 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 897 | if (!PyArg_ParseTuple(args, "O|z:unicode_escape_encode", |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 898 | &str, &errors)) |
| 899 | return NULL; |
| 900 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 901 | str = PyUnicode_FromObject(str); |
| 902 | if (str == NULL) |
| 903 | return NULL; |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 904 | v = codec_tuple(PyUnicode_EncodeUnicodeEscape(PyUnicode_AS_UNICODE(str), |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 905 | PyUnicode_GET_SIZE(str)), |
| 906 | PyUnicode_GET_SIZE(str)); |
| 907 | Py_DECREF(str); |
| 908 | return v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 909 | } |
| 910 | |
| 911 | static PyObject * |
| 912 | raw_unicode_escape_encode(PyObject *self, |
| 913 | PyObject *args) |
| 914 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 915 | PyObject *str, *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 916 | const char *errors = NULL; |
| 917 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 918 | if (!PyArg_ParseTuple(args, "O|z:raw_unicode_escape_encode", |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 919 | &str, &errors)) |
| 920 | return NULL; |
| 921 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 922 | str = PyUnicode_FromObject(str); |
| 923 | if (str == NULL) |
| 924 | return NULL; |
| 925 | v = codec_tuple(PyUnicode_EncodeRawUnicodeEscape( |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 926 | PyUnicode_AS_UNICODE(str), |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 927 | PyUnicode_GET_SIZE(str)), |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 928 | PyUnicode_GET_SIZE(str)); |
| 929 | Py_DECREF(str); |
| 930 | return v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 931 | } |
| 932 | |
| 933 | static PyObject * |
| 934 | latin_1_encode(PyObject *self, |
| 935 | PyObject *args) |
| 936 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 937 | PyObject *str, *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 938 | const char *errors = NULL; |
| 939 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 940 | if (!PyArg_ParseTuple(args, "O|z:latin_1_encode", |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 941 | &str, &errors)) |
| 942 | return NULL; |
| 943 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 944 | str = PyUnicode_FromObject(str); |
| 945 | if (str == NULL) |
| 946 | return NULL; |
| 947 | v = codec_tuple(PyUnicode_EncodeLatin1( |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 948 | PyUnicode_AS_UNICODE(str), |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 949 | PyUnicode_GET_SIZE(str), |
| 950 | errors), |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 951 | PyUnicode_GET_SIZE(str)); |
| 952 | Py_DECREF(str); |
| 953 | return v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 954 | } |
| 955 | |
| 956 | static PyObject * |
| 957 | ascii_encode(PyObject *self, |
| 958 | PyObject *args) |
| 959 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 960 | PyObject *str, *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 961 | const char *errors = NULL; |
| 962 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 963 | if (!PyArg_ParseTuple(args, "O|z:ascii_encode", |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 964 | &str, &errors)) |
| 965 | return NULL; |
| 966 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 967 | str = PyUnicode_FromObject(str); |
| 968 | if (str == NULL) |
| 969 | return NULL; |
| 970 | v = codec_tuple(PyUnicode_EncodeASCII( |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 971 | PyUnicode_AS_UNICODE(str), |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 972 | PyUnicode_GET_SIZE(str), |
| 973 | errors), |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 974 | PyUnicode_GET_SIZE(str)); |
| 975 | Py_DECREF(str); |
| 976 | return v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 977 | } |
| 978 | |
| 979 | static PyObject * |
| 980 | charmap_encode(PyObject *self, |
| 981 | PyObject *args) |
| 982 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 983 | PyObject *str, *v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 984 | const char *errors = NULL; |
| 985 | PyObject *mapping = NULL; |
| 986 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 987 | if (!PyArg_ParseTuple(args, "O|zO:charmap_encode", |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 988 | &str, &errors, &mapping)) |
| 989 | return NULL; |
| 990 | if (mapping == Py_None) |
| 991 | mapping = NULL; |
| 992 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 993 | str = PyUnicode_FromObject(str); |
| 994 | if (str == NULL) |
| 995 | return NULL; |
| 996 | v = codec_tuple(PyUnicode_EncodeCharmap( |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 997 | PyUnicode_AS_UNICODE(str), |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 998 | PyUnicode_GET_SIZE(str), |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 999 | mapping, |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 1000 | errors), |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 1001 | PyUnicode_GET_SIZE(str)); |
| 1002 | Py_DECREF(str); |
| 1003 | return v; |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 1004 | } |
| 1005 | |
Martin v. Löwis | 3f76779 | 2006-06-04 19:36:28 +0000 | [diff] [blame] | 1006 | static PyObject* |
| 1007 | charmap_build(PyObject *self, PyObject *args) |
| 1008 | { |
| 1009 | PyObject *map; |
| 1010 | if (!PyArg_ParseTuple(args, "U:charmap_build", &map)) |
| 1011 | return NULL; |
| 1012 | return PyUnicode_BuildEncodingMap(map); |
| 1013 | } |
| 1014 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 1015 | #if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T) |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 1016 | |
| 1017 | static PyObject * |
| 1018 | mbcs_encode(PyObject *self, |
| 1019 | PyObject *args) |
| 1020 | { |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 1021 | PyObject *str, *v; |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 1022 | const char *errors = NULL; |
| 1023 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 1024 | if (!PyArg_ParseTuple(args, "O|z:mbcs_encode", |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 1025 | &str, &errors)) |
| 1026 | return NULL; |
| 1027 | |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 1028 | str = PyUnicode_FromObject(str); |
| 1029 | if (str == NULL) |
| 1030 | return NULL; |
| 1031 | v = codec_tuple(PyUnicode_EncodeMBCS( |
Walter Dörwald | 9fd115c | 2005-11-02 08:30:08 +0000 | [diff] [blame] | 1032 | PyUnicode_AS_UNICODE(str), |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 1033 | PyUnicode_GET_SIZE(str), |
| 1034 | errors), |
Marc-André Lemburg | 5f0e29e | 2000-07-05 11:24:13 +0000 | [diff] [blame] | 1035 | PyUnicode_GET_SIZE(str)); |
| 1036 | Py_DECREF(str); |
| 1037 | return v; |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 1038 | } |
| 1039 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 1040 | #endif /* MS_WINDOWS */ |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1041 | #endif /* Py_USING_UNICODE */ |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 1042 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 1043 | /* --- Error handler registry --------------------------------------------- */ |
| 1044 | |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 1045 | PyDoc_STRVAR(register_error__doc__, |
| 1046 | "register_error(errors, handler)\n\ |
| 1047 | \n\ |
| 1048 | Register the specified error handler under the name\n\ |
| 1049 | errors. handler must be a callable object, that\n\ |
| 1050 | will be called with an exception instance containing\n\ |
| 1051 | information about the location of the encoding/decoding\n\ |
| 1052 | error and must return a (replacement, new position) tuple."); |
| 1053 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 1054 | static PyObject *register_error(PyObject *self, PyObject *args) |
| 1055 | { |
| 1056 | const char *name; |
| 1057 | PyObject *handler; |
| 1058 | |
| 1059 | if (!PyArg_ParseTuple(args, "sO:register_error", |
| 1060 | &name, &handler)) |
| 1061 | return NULL; |
| 1062 | if (PyCodec_RegisterError(name, handler)) |
| 1063 | return NULL; |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 1064 | Py_RETURN_NONE; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 1065 | } |
| 1066 | |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 1067 | PyDoc_STRVAR(lookup_error__doc__, |
| 1068 | "lookup_error(errors) -> handler\n\ |
| 1069 | \n\ |
| 1070 | Return the error handler for the specified error handling name\n\ |
| 1071 | or raise a LookupError, if no handler exists under this name."); |
| 1072 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 1073 | static PyObject *lookup_error(PyObject *self, PyObject *args) |
| 1074 | { |
| 1075 | const char *name; |
| 1076 | |
| 1077 | if (!PyArg_ParseTuple(args, "s:lookup_error", |
| 1078 | &name)) |
| 1079 | return NULL; |
| 1080 | return PyCodec_LookupError(name); |
| 1081 | } |
| 1082 | |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 1083 | /* --- Module API --------------------------------------------------------- */ |
| 1084 | |
| 1085 | static PyMethodDef _codecs_functions[] = { |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 1086 | {"register", codec_register, METH_O, |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 1087 | register__doc__}, |
Marc-André Lemburg | 3f41974 | 2004-07-10 12:06:10 +0000 | [diff] [blame] | 1088 | {"lookup", codec_lookup, METH_VARARGS, |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 1089 | lookup__doc__}, |
Brett Cannon | 3e377de | 2004-07-10 21:41:14 +0000 | [diff] [blame] | 1090 | {"encode", codec_encode, METH_VARARGS, |
| 1091 | encode__doc__}, |
| 1092 | {"decode", codec_decode, METH_VARARGS, |
| 1093 | decode__doc__}, |
Martin v. Löwis | 8a8da79 | 2002-08-14 07:46:28 +0000 | [diff] [blame] | 1094 | {"escape_encode", escape_encode, METH_VARARGS}, |
| 1095 | {"escape_decode", escape_decode, METH_VARARGS}, |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1096 | #ifdef Py_USING_UNICODE |
Martin v. Löwis | 43b936d | 2002-01-17 23:15:58 +0000 | [diff] [blame] | 1097 | {"utf_8_encode", utf_8_encode, METH_VARARGS}, |
| 1098 | {"utf_8_decode", utf_8_decode, METH_VARARGS}, |
| 1099 | {"utf_7_encode", utf_7_encode, METH_VARARGS}, |
| 1100 | {"utf_7_decode", utf_7_decode, METH_VARARGS}, |
| 1101 | {"utf_16_encode", utf_16_encode, METH_VARARGS}, |
| 1102 | {"utf_16_le_encode", utf_16_le_encode, METH_VARARGS}, |
| 1103 | {"utf_16_be_encode", utf_16_be_encode, METH_VARARGS}, |
| 1104 | {"utf_16_decode", utf_16_decode, METH_VARARGS}, |
| 1105 | {"utf_16_le_decode", utf_16_le_decode, METH_VARARGS}, |
| 1106 | {"utf_16_be_decode", utf_16_be_decode, METH_VARARGS}, |
| 1107 | {"utf_16_ex_decode", utf_16_ex_decode, METH_VARARGS}, |
Walter Dörwald | 6e39080 | 2007-08-17 16:41:28 +0000 | [diff] [blame] | 1108 | {"utf_32_encode", utf_32_encode, METH_VARARGS}, |
| 1109 | {"utf_32_le_encode", utf_32_le_encode, METH_VARARGS}, |
| 1110 | {"utf_32_be_encode", utf_32_be_encode, METH_VARARGS}, |
| 1111 | {"utf_32_decode", utf_32_decode, METH_VARARGS}, |
| 1112 | {"utf_32_le_decode", utf_32_le_decode, METH_VARARGS}, |
| 1113 | {"utf_32_be_decode", utf_32_be_decode, METH_VARARGS}, |
| 1114 | {"utf_32_ex_decode", utf_32_ex_decode, METH_VARARGS}, |
Martin v. Löwis | 43b936d | 2002-01-17 23:15:58 +0000 | [diff] [blame] | 1115 | {"unicode_escape_encode", unicode_escape_encode, METH_VARARGS}, |
| 1116 | {"unicode_escape_decode", unicode_escape_decode, METH_VARARGS}, |
| 1117 | {"unicode_internal_encode", unicode_internal_encode, METH_VARARGS}, |
| 1118 | {"unicode_internal_decode", unicode_internal_decode, METH_VARARGS}, |
| 1119 | {"raw_unicode_escape_encode", raw_unicode_escape_encode, METH_VARARGS}, |
| 1120 | {"raw_unicode_escape_decode", raw_unicode_escape_decode, METH_VARARGS}, |
| 1121 | {"latin_1_encode", latin_1_encode, METH_VARARGS}, |
| 1122 | {"latin_1_decode", latin_1_decode, METH_VARARGS}, |
| 1123 | {"ascii_encode", ascii_encode, METH_VARARGS}, |
| 1124 | {"ascii_decode", ascii_decode, METH_VARARGS}, |
| 1125 | {"charmap_encode", charmap_encode, METH_VARARGS}, |
| 1126 | {"charmap_decode", charmap_decode, METH_VARARGS}, |
Martin v. Löwis | 3f76779 | 2006-06-04 19:36:28 +0000 | [diff] [blame] | 1127 | {"charmap_build", charmap_build, METH_VARARGS}, |
Martin v. Löwis | 43b936d | 2002-01-17 23:15:58 +0000 | [diff] [blame] | 1128 | {"readbuffer_encode", readbuffer_encode, METH_VARARGS}, |
| 1129 | {"charbuffer_encode", charbuffer_encode, METH_VARARGS}, |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 1130 | #if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T) |
Martin v. Löwis | 43b936d | 2002-01-17 23:15:58 +0000 | [diff] [blame] | 1131 | {"mbcs_encode", mbcs_encode, METH_VARARGS}, |
| 1132 | {"mbcs_decode", mbcs_decode, METH_VARARGS}, |
Guido van Rossum | 24bdb04 | 2000-03-28 20:29:59 +0000 | [diff] [blame] | 1133 | #endif |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 1134 | #endif /* Py_USING_UNICODE */ |
Walter Dörwald | 0ae2981 | 2002-10-31 13:36:29 +0000 | [diff] [blame] | 1135 | {"register_error", register_error, METH_VARARGS, |
| 1136 | register_error__doc__}, |
| 1137 | {"lookup_error", lookup_error, METH_VARARGS, |
| 1138 | lookup_error__doc__}, |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 1139 | {NULL, NULL} /* sentinel */ |
| 1140 | }; |
| 1141 | |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 1142 | PyMODINIT_FUNC |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 1143 | init_codecs(void) |
Guido van Rossum | e2d67f9 | 2000-03-10 23:09:23 +0000 | [diff] [blame] | 1144 | { |
| 1145 | Py_InitModule("_codecs", _codecs_functions); |
| 1146 | } |