Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 1 | /* |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2 | |
| 3 | Unicode implementation based on original code by Fredrik Lundh, |
Benjamin Peterson | 31616ea | 2011-10-01 00:11:09 -0400 | [diff] [blame] | 4 | modified by Marc-Andre Lemburg <mal@lemburg.com>. |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 6 | Major speed upgrades to the method implementations at the Reykjavik |
| 7 | NeedForSpeed sprint, by Fredrik Lundh and Andrew Dalke. |
| 8 | |
Guido van Rossum | 16b1ad9 | 2000-08-03 16:24:25 +0000 | [diff] [blame] | 9 | Copyright (c) Corporation for National Research Initiatives. |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10 | |
Fredrik Lundh | 0fdb90c | 2001-01-19 09:45:02 +0000 | [diff] [blame] | 11 | -------------------------------------------------------------------- |
| 12 | The original string type implementation is: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 14 | Copyright (c) 1999 by Secret Labs AB |
| 15 | Copyright (c) 1999 by Fredrik Lundh |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 16 | |
Fredrik Lundh | 0fdb90c | 2001-01-19 09:45:02 +0000 | [diff] [blame] | 17 | By obtaining, using, and/or copying this software and/or its |
| 18 | associated documentation, you agree that you have read, understood, |
| 19 | and will comply with the following terms and conditions: |
| 20 | |
| 21 | Permission to use, copy, modify, and distribute this software and its |
| 22 | associated documentation for any purpose and without fee is hereby |
| 23 | granted, provided that the above copyright notice appears in all |
| 24 | copies, and that both that copyright notice and this permission notice |
| 25 | appear in supporting documentation, and that the name of Secret Labs |
| 26 | AB or the author not be used in advertising or publicity pertaining to |
| 27 | distribution of the software without specific, written prior |
| 28 | permission. |
| 29 | |
| 30 | SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO |
| 31 | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 32 | FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR |
| 33 | ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 34 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 35 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| 36 | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 37 | -------------------------------------------------------------------- |
| 38 | |
| 39 | */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 40 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 41 | #define PY_SSIZE_T_CLEAN |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 42 | #include "Python.h" |
Marc-André Lemburg | d49e5b4 | 2000-06-30 14:58:20 +0000 | [diff] [blame] | 43 | #include "ucnhash.h" |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 44 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 45 | #ifdef MS_WINDOWS |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 46 | #include <windows.h> |
| 47 | #endif |
Guido van Rossum | fd4b957 | 2000-04-10 13:51:10 +0000 | [diff] [blame] | 48 | |
Victor Stinner | ce5faf6 | 2011-10-05 00:42:43 +0200 | [diff] [blame] | 49 | #ifdef Py_DEBUG |
| 50 | # define DONT_MAKE_RESULT_READY |
| 51 | #endif |
| 52 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 53 | /* Endianness switches; defaults to little endian */ |
| 54 | |
| 55 | #ifdef WORDS_BIGENDIAN |
| 56 | # define BYTEORDER_IS_BIG_ENDIAN |
| 57 | #else |
| 58 | # define BYTEORDER_IS_LITTLE_ENDIAN |
| 59 | #endif |
| 60 | |
Marc-André Lemburg | d4ab4a5 | 2000-06-08 17:54:00 +0000 | [diff] [blame] | 61 | /* --- Globals ------------------------------------------------------------ |
| 62 | |
| 63 | The globals are initialized by the _PyUnicode_Init() API and should |
| 64 | not be used before calling that API. |
| 65 | |
| 66 | */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 67 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 68 | |
| 69 | #ifdef __cplusplus |
| 70 | extern "C" { |
| 71 | #endif |
| 72 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 73 | #ifdef Py_DEBUG |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 74 | # define _PyUnicode_CHECK(op) _PyUnicode_CheckConsistency(op, 0) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 75 | #else |
| 76 | # define _PyUnicode_CHECK(op) PyUnicode_Check(op) |
| 77 | #endif |
Victor Stinner | fb5f5f2 | 2011-09-28 21:39:49 +0200 | [diff] [blame] | 78 | |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 79 | #define _PyUnicode_UTF8(op) \ |
| 80 | (((PyCompactUnicodeObject*)(op))->utf8) |
| 81 | #define PyUnicode_UTF8(op) \ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 82 | (assert(_PyUnicode_CHECK(op)), \ |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 83 | assert(PyUnicode_IS_READY(op)), \ |
| 84 | PyUnicode_IS_COMPACT_ASCII(op) ? \ |
| 85 | ((char*)((PyASCIIObject*)(op) + 1)) : \ |
| 86 | _PyUnicode_UTF8(op)) |
Victor Stinner | bc8b81b | 2011-09-29 19:31:34 +0200 | [diff] [blame] | 87 | #define _PyUnicode_UTF8_LENGTH(op) \ |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 88 | (((PyCompactUnicodeObject*)(op))->utf8_length) |
| 89 | #define PyUnicode_UTF8_LENGTH(op) \ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 90 | (assert(_PyUnicode_CHECK(op)), \ |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 91 | assert(PyUnicode_IS_READY(op)), \ |
| 92 | PyUnicode_IS_COMPACT_ASCII(op) ? \ |
| 93 | ((PyASCIIObject*)(op))->length : \ |
| 94 | _PyUnicode_UTF8_LENGTH(op)) |
Victor Stinner | a5f9163 | 2011-10-04 01:07:11 +0200 | [diff] [blame] | 95 | #define _PyUnicode_WSTR(op) \ |
| 96 | (((PyASCIIObject*)(op))->wstr) |
| 97 | #define _PyUnicode_WSTR_LENGTH(op) \ |
| 98 | (((PyCompactUnicodeObject*)(op))->wstr_length) |
| 99 | #define _PyUnicode_LENGTH(op) \ |
| 100 | (((PyASCIIObject *)(op))->length) |
| 101 | #define _PyUnicode_STATE(op) \ |
| 102 | (((PyASCIIObject *)(op))->state) |
| 103 | #define _PyUnicode_HASH(op) \ |
| 104 | (((PyASCIIObject *)(op))->hash) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 105 | #define _PyUnicode_KIND(op) \ |
| 106 | (assert(_PyUnicode_CHECK(op)), \ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 107 | ((PyASCIIObject *)(op))->state.kind) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 108 | #define _PyUnicode_GET_LENGTH(op) \ |
| 109 | (assert(_PyUnicode_CHECK(op)), \ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 110 | ((PyASCIIObject *)(op))->length) |
Victor Stinner | a5f9163 | 2011-10-04 01:07:11 +0200 | [diff] [blame] | 111 | #define _PyUnicode_DATA_ANY(op) \ |
| 112 | (((PyUnicodeObject*)(op))->data.any) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 113 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 114 | #undef PyUnicode_READY |
| 115 | #define PyUnicode_READY(op) \ |
| 116 | (assert(_PyUnicode_CHECK(op)), \ |
| 117 | (PyUnicode_IS_READY(op) ? \ |
Victor Stinner | a5f9163 | 2011-10-04 01:07:11 +0200 | [diff] [blame] | 118 | 0 : \ |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 119 | _PyUnicode_Ready(op))) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 120 | |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 121 | #define _PyUnicode_READY_REPLACE(p_obj) \ |
| 122 | (assert(_PyUnicode_CHECK(*p_obj)), \ |
| 123 | (PyUnicode_IS_READY(*p_obj) ? \ |
| 124 | 0 : _PyUnicode_ReadyReplace((PyObject **)(p_obj)))) |
| 125 | |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 126 | #define _PyUnicode_SHARE_UTF8(op) \ |
| 127 | (assert(_PyUnicode_CHECK(op)), \ |
| 128 | assert(!PyUnicode_IS_COMPACT_ASCII(op)), \ |
| 129 | (_PyUnicode_UTF8(op) == PyUnicode_DATA(op))) |
| 130 | #define _PyUnicode_SHARE_WSTR(op) \ |
| 131 | (assert(_PyUnicode_CHECK(op)), \ |
| 132 | (_PyUnicode_WSTR(unicode) == PyUnicode_DATA(op))) |
| 133 | |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 134 | /* true if the Unicode object has an allocated UTF-8 memory block |
| 135 | (not shared with other data) */ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 136 | #define _PyUnicode_HAS_UTF8_MEMORY(op) \ |
| 137 | (assert(_PyUnicode_CHECK(op)), \ |
| 138 | (!PyUnicode_IS_COMPACT_ASCII(op) \ |
| 139 | && _PyUnicode_UTF8(op) \ |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 140 | && _PyUnicode_UTF8(op) != PyUnicode_DATA(op))) |
| 141 | |
Victor Stinner | 0349091 | 2011-10-03 23:45:12 +0200 | [diff] [blame] | 142 | /* true if the Unicode object has an allocated wstr memory block |
| 143 | (not shared with other data) */ |
| 144 | #define _PyUnicode_HAS_WSTR_MEMORY(op) \ |
| 145 | (assert(_PyUnicode_CHECK(op)), \ |
| 146 | (_PyUnicode_WSTR(op) && \ |
| 147 | (!PyUnicode_IS_READY(op) || \ |
| 148 | _PyUnicode_WSTR(op) != PyUnicode_DATA(op)))) |
| 149 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 150 | /* Generic helper macro to convert characters of different types. |
| 151 | from_type and to_type have to be valid type names, begin and end |
| 152 | are pointers to the source characters which should be of type |
| 153 | "from_type *". to is a pointer of type "to_type *" and points to the |
| 154 | buffer where the result characters are written to. */ |
| 155 | #define _PyUnicode_CONVERT_BYTES(from_type, to_type, begin, end, to) \ |
| 156 | do { \ |
Antoine Pitrou | e459a08 | 2011-10-11 20:58:41 +0200 | [diff] [blame] | 157 | to_type *_to = (to_type *) to; \ |
| 158 | const from_type *_iter = (begin); \ |
| 159 | const from_type *_end = (end); \ |
| 160 | Py_ssize_t n = (_end) - (_iter); \ |
| 161 | const from_type *_unrolled_end = \ |
| 162 | _iter + (n & ~ (Py_ssize_t) 3); \ |
| 163 | while (_iter < (_unrolled_end)) { \ |
| 164 | _to[0] = (to_type) _iter[0]; \ |
| 165 | _to[1] = (to_type) _iter[1]; \ |
| 166 | _to[2] = (to_type) _iter[2]; \ |
| 167 | _to[3] = (to_type) _iter[3]; \ |
| 168 | _iter += 4; _to += 4; \ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 169 | } \ |
Antoine Pitrou | e459a08 | 2011-10-11 20:58:41 +0200 | [diff] [blame] | 170 | while (_iter < (_end)) \ |
| 171 | *_to++ = (to_type) *_iter++; \ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 172 | } while (0) |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 173 | |
Victor Stinner | b15d4d8 | 2011-09-28 23:59:20 +0200 | [diff] [blame] | 174 | /* The Unicode string has been modified: reset the hash */ |
| 175 | #define _PyUnicode_DIRTY(op) do { _PyUnicode_HASH(op) = -1; } while (0) |
| 176 | |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 177 | /* This dictionary holds all interned unicode strings. Note that references |
| 178 | to strings in this dictionary are *not* counted in the string's ob_refcnt. |
| 179 | When the interned string reaches a refcnt of 0 the string deallocation |
| 180 | function will delete the reference from this dictionary. |
| 181 | |
| 182 | Another way to look at this is that to say that the actual reference |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 183 | count of a string is: s->ob_refcnt + (s->state ? 2 : 0) |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 184 | */ |
| 185 | static PyObject *interned; |
| 186 | |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 187 | /* The empty Unicode object is shared to improve performance. */ |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 188 | static PyObject *unicode_empty; |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 189 | |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 190 | /* List of static strings. */ |
| 191 | static _Py_Identifier *static_strings; |
| 192 | |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 193 | /* Single character Unicode strings in the Latin-1 range are being |
| 194 | shared as well. */ |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 195 | static PyObject *unicode_latin1[256]; |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 196 | |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 197 | /* Fast detection of the most frequent whitespace characters */ |
| 198 | const unsigned char _Py_ascii_whitespace[] = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 199 | 0, 0, 0, 0, 0, 0, 0, 0, |
Florent Xicluna | 806d8cf | 2010-03-30 19:34:18 +0000 | [diff] [blame] | 200 | /* case 0x0009: * CHARACTER TABULATION */ |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 201 | /* case 0x000A: * LINE FEED */ |
Florent Xicluna | 806d8cf | 2010-03-30 19:34:18 +0000 | [diff] [blame] | 202 | /* case 0x000B: * LINE TABULATION */ |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 203 | /* case 0x000C: * FORM FEED */ |
| 204 | /* case 0x000D: * CARRIAGE RETURN */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 205 | 0, 1, 1, 1, 1, 1, 0, 0, |
| 206 | 0, 0, 0, 0, 0, 0, 0, 0, |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 207 | /* case 0x001C: * FILE SEPARATOR */ |
| 208 | /* case 0x001D: * GROUP SEPARATOR */ |
| 209 | /* case 0x001E: * RECORD SEPARATOR */ |
| 210 | /* case 0x001F: * UNIT SEPARATOR */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 211 | 0, 0, 0, 0, 1, 1, 1, 1, |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 212 | /* case 0x0020: * SPACE */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 213 | 1, 0, 0, 0, 0, 0, 0, 0, |
| 214 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 215 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 216 | 0, 0, 0, 0, 0, 0, 0, 0, |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 217 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 218 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 219 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 220 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 221 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 222 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 223 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 224 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 225 | 0, 0, 0, 0, 0, 0, 0, 0 |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 226 | }; |
| 227 | |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 228 | /* forward */ |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 229 | static PyUnicodeObject *_PyUnicode_New(Py_ssize_t length); |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 230 | static PyObject* get_latin1_char(unsigned char ch); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 231 | static void copy_characters( |
| 232 | PyObject *to, Py_ssize_t to_start, |
| 233 | PyObject *from, Py_ssize_t from_start, |
| 234 | Py_ssize_t how_many); |
Victor Stinner | c729b8e | 2011-10-06 02:36:59 +0200 | [diff] [blame] | 235 | #ifdef Py_DEBUG |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 236 | static int unicode_is_singleton(PyObject *unicode); |
Victor Stinner | c729b8e | 2011-10-06 02:36:59 +0200 | [diff] [blame] | 237 | #endif |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 238 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 239 | static PyObject * |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 240 | unicode_fromascii(const unsigned char *s, Py_ssize_t size); |
| 241 | static PyObject * |
| 242 | _PyUnicode_FromUCS1(const unsigned char *s, Py_ssize_t size); |
| 243 | static PyObject * |
| 244 | _PyUnicode_FromUCS2(const Py_UCS2 *s, Py_ssize_t size); |
| 245 | static PyObject * |
| 246 | _PyUnicode_FromUCS4(const Py_UCS4 *s, Py_ssize_t size); |
| 247 | |
| 248 | static PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 249 | unicode_encode_call_errorhandler(const char *errors, |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 250 | PyObject **errorHandler,const char *encoding, const char *reason, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 251 | PyObject *unicode, PyObject **exceptionObject, |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 252 | Py_ssize_t startpos, Py_ssize_t endpos, Py_ssize_t *newpos); |
| 253 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 254 | static void |
| 255 | raise_encode_exception(PyObject **exceptionObject, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 256 | const char *encoding, |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 257 | PyObject *unicode, |
| 258 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 259 | const char *reason); |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 260 | |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 261 | /* Same for linebreaks */ |
| 262 | static unsigned char ascii_linebreak[] = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 263 | 0, 0, 0, 0, 0, 0, 0, 0, |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 264 | /* 0x000A, * LINE FEED */ |
Florent Xicluna | 806d8cf | 2010-03-30 19:34:18 +0000 | [diff] [blame] | 265 | /* 0x000B, * LINE TABULATION */ |
| 266 | /* 0x000C, * FORM FEED */ |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 267 | /* 0x000D, * CARRIAGE RETURN */ |
Florent Xicluna | 806d8cf | 2010-03-30 19:34:18 +0000 | [diff] [blame] | 268 | 0, 0, 1, 1, 1, 1, 0, 0, |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 269 | 0, 0, 0, 0, 0, 0, 0, 0, |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 270 | /* 0x001C, * FILE SEPARATOR */ |
| 271 | /* 0x001D, * GROUP SEPARATOR */ |
| 272 | /* 0x001E, * RECORD SEPARATOR */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 273 | 0, 0, 0, 0, 1, 1, 1, 0, |
| 274 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 275 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 276 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 277 | 0, 0, 0, 0, 0, 0, 0, 0, |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 278 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 279 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 280 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 281 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 282 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 283 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 284 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 285 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 286 | 0, 0, 0, 0, 0, 0, 0, 0 |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 287 | }; |
| 288 | |
Ezio Melotti | 48a2f8f | 2011-09-29 00:18:19 +0300 | [diff] [blame] | 289 | /* The max unicode value is always 0x10FFFF while using the PEP-393 API. |
| 290 | This function is kept for backward compatibility with the old API. */ |
Martin v. Löwis | ce9b5a5 | 2001-06-27 06:28:56 +0000 | [diff] [blame] | 291 | Py_UNICODE |
Marc-André Lemburg | 6c6bfb7 | 2001-07-20 17:39:11 +0000 | [diff] [blame] | 292 | PyUnicode_GetMax(void) |
Martin v. Löwis | ce9b5a5 | 2001-06-27 06:28:56 +0000 | [diff] [blame] | 293 | { |
Fredrik Lundh | 8f45585 | 2001-06-27 18:59:43 +0000 | [diff] [blame] | 294 | #ifdef Py_UNICODE_WIDE |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 295 | return 0x10FFFF; |
Martin v. Löwis | ce9b5a5 | 2001-06-27 06:28:56 +0000 | [diff] [blame] | 296 | #else |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 297 | /* This is actually an illegal character, so it should |
| 298 | not be passed to unichr. */ |
| 299 | return 0xFFFF; |
Martin v. Löwis | ce9b5a5 | 2001-06-27 06:28:56 +0000 | [diff] [blame] | 300 | #endif |
| 301 | } |
| 302 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 303 | #ifdef Py_DEBUG |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 304 | int |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 305 | _PyUnicode_CheckConsistency(PyObject *op, int check_content) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 306 | { |
| 307 | PyASCIIObject *ascii; |
| 308 | unsigned int kind; |
| 309 | |
| 310 | assert(PyUnicode_Check(op)); |
| 311 | |
| 312 | ascii = (PyASCIIObject *)op; |
| 313 | kind = ascii->state.kind; |
| 314 | |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 315 | if (ascii->state.ascii == 1 && ascii->state.compact == 1) { |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 316 | assert(kind == PyUnicode_1BYTE_KIND); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 317 | assert(ascii->state.ready == 1); |
| 318 | } |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 319 | else { |
Victor Stinner | 85041a5 | 2011-10-03 14:42:39 +0200 | [diff] [blame] | 320 | PyCompactUnicodeObject *compact = (PyCompactUnicodeObject *)op; |
Victor Stinner | 7f11ad4 | 2011-10-04 00:00:20 +0200 | [diff] [blame] | 321 | void *data; |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 322 | |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 323 | if (ascii->state.compact == 1) { |
| 324 | data = compact + 1; |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 325 | assert(kind == PyUnicode_1BYTE_KIND |
| 326 | || kind == PyUnicode_2BYTE_KIND |
| 327 | || kind == PyUnicode_4BYTE_KIND); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 328 | assert(ascii->state.ascii == 0); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 329 | assert(ascii->state.ready == 1); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 330 | assert (compact->utf8 != data); |
Victor Stinner | e30c0a1 | 2011-11-04 20:54:05 +0100 | [diff] [blame] | 331 | } |
| 332 | else { |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 333 | PyUnicodeObject *unicode = (PyUnicodeObject *)op; |
| 334 | |
| 335 | data = unicode->data.any; |
| 336 | if (kind == PyUnicode_WCHAR_KIND) { |
Victor Stinner | e30c0a1 | 2011-11-04 20:54:05 +0100 | [diff] [blame] | 337 | assert(ascii->length == 0); |
| 338 | assert(ascii->hash == -1); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 339 | assert(ascii->state.compact == 0); |
| 340 | assert(ascii->state.ascii == 0); |
| 341 | assert(ascii->state.ready == 0); |
Victor Stinner | e30c0a1 | 2011-11-04 20:54:05 +0100 | [diff] [blame] | 342 | assert(ascii->state.interned == SSTATE_NOT_INTERNED); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 343 | assert(ascii->wstr != NULL); |
| 344 | assert(data == NULL); |
| 345 | assert(compact->utf8 == NULL); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 346 | } |
| 347 | else { |
| 348 | assert(kind == PyUnicode_1BYTE_KIND |
| 349 | || kind == PyUnicode_2BYTE_KIND |
| 350 | || kind == PyUnicode_4BYTE_KIND); |
| 351 | assert(ascii->state.compact == 0); |
| 352 | assert(ascii->state.ready == 1); |
| 353 | assert(data != NULL); |
| 354 | if (ascii->state.ascii) { |
| 355 | assert (compact->utf8 == data); |
| 356 | assert (compact->utf8_length == ascii->length); |
| 357 | } |
| 358 | else |
| 359 | assert (compact->utf8 != data); |
| 360 | } |
| 361 | } |
| 362 | if (kind != PyUnicode_WCHAR_KIND) { |
Victor Stinner | 7f11ad4 | 2011-10-04 00:00:20 +0200 | [diff] [blame] | 363 | if ( |
| 364 | #if SIZEOF_WCHAR_T == 2 |
| 365 | kind == PyUnicode_2BYTE_KIND |
| 366 | #else |
| 367 | kind == PyUnicode_4BYTE_KIND |
| 368 | #endif |
| 369 | ) |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 370 | { |
| 371 | assert(ascii->wstr == data); |
| 372 | assert(compact->wstr_length == ascii->length); |
| 373 | } else |
| 374 | assert(ascii->wstr != data); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 375 | } |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 376 | |
| 377 | if (compact->utf8 == NULL) |
| 378 | assert(compact->utf8_length == 0); |
| 379 | if (ascii->wstr == NULL) |
| 380 | assert(compact->wstr_length == 0); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 381 | } |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 382 | /* check that the best kind is used */ |
| 383 | if (check_content && kind != PyUnicode_WCHAR_KIND) |
| 384 | { |
| 385 | Py_ssize_t i; |
| 386 | Py_UCS4 maxchar = 0; |
| 387 | void *data = PyUnicode_DATA(ascii); |
| 388 | for (i=0; i < ascii->length; i++) |
| 389 | { |
| 390 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 391 | if (ch > maxchar) |
| 392 | maxchar = ch; |
| 393 | } |
| 394 | if (kind == PyUnicode_1BYTE_KIND) { |
| 395 | if (ascii->state.ascii == 0) |
| 396 | assert(maxchar >= 128); |
| 397 | else |
| 398 | assert(maxchar < 128); |
| 399 | } |
| 400 | else if (kind == PyUnicode_2BYTE_KIND) |
| 401 | assert(maxchar >= 0x100); |
| 402 | else |
| 403 | assert(maxchar >= 0x10000); |
| 404 | } |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 405 | if (check_content && !unicode_is_singleton(op)) |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 406 | assert(ascii->hash == -1); |
Benjamin Peterson | ccc51c1 | 2011-10-03 19:34:12 -0400 | [diff] [blame] | 407 | return 1; |
| 408 | } |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 409 | #endif |
| 410 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 411 | #ifdef HAVE_MBCS |
| 412 | static OSVERSIONINFOEX winver; |
| 413 | #endif |
| 414 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 415 | /* --- Bloom Filters ----------------------------------------------------- */ |
| 416 | |
| 417 | /* stuff to implement simple "bloom filters" for Unicode characters. |
| 418 | to keep things simple, we use a single bitmask, using the least 5 |
| 419 | bits from each unicode characters as the bit index. */ |
| 420 | |
| 421 | /* the linebreak mask is set up by Unicode_Init below */ |
| 422 | |
Antoine Pitrou | f068f94 | 2010-01-13 14:19:12 +0000 | [diff] [blame] | 423 | #if LONG_BIT >= 128 |
| 424 | #define BLOOM_WIDTH 128 |
| 425 | #elif LONG_BIT >= 64 |
| 426 | #define BLOOM_WIDTH 64 |
| 427 | #elif LONG_BIT >= 32 |
| 428 | #define BLOOM_WIDTH 32 |
| 429 | #else |
| 430 | #error "LONG_BIT is smaller than 32" |
| 431 | #endif |
| 432 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 433 | #define BLOOM_MASK unsigned long |
| 434 | |
| 435 | static BLOOM_MASK bloom_linebreak; |
| 436 | |
Antoine Pitrou | f068f94 | 2010-01-13 14:19:12 +0000 | [diff] [blame] | 437 | #define BLOOM_ADD(mask, ch) ((mask |= (1UL << ((ch) & (BLOOM_WIDTH - 1))))) |
| 438 | #define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1))))) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 439 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 440 | #define BLOOM_LINEBREAK(ch) \ |
| 441 | ((ch) < 128U ? ascii_linebreak[(ch)] : \ |
| 442 | (BLOOM(bloom_linebreak, (ch)) && Py_UNICODE_ISLINEBREAK(ch))) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 443 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 444 | Py_LOCAL_INLINE(BLOOM_MASK) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 445 | make_bloom_mask(int kind, void* ptr, Py_ssize_t len) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 446 | { |
| 447 | /* calculate simple bloom-style bitmask for a given unicode string */ |
| 448 | |
Antoine Pitrou | f068f94 | 2010-01-13 14:19:12 +0000 | [diff] [blame] | 449 | BLOOM_MASK mask; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 450 | Py_ssize_t i; |
| 451 | |
| 452 | mask = 0; |
| 453 | for (i = 0; i < len; i++) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 454 | BLOOM_ADD(mask, PyUnicode_READ(kind, ptr, i)); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 455 | |
| 456 | return mask; |
| 457 | } |
| 458 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 459 | #define BLOOM_MEMBER(mask, chr, str) \ |
| 460 | (BLOOM(mask, chr) \ |
| 461 | && (PyUnicode_FindChar(str, chr, 0, PyUnicode_GET_LENGTH(str), 1) >= 0)) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 462 | |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 463 | /* Compilation of templated routines */ |
| 464 | |
| 465 | #include "stringlib/asciilib.h" |
| 466 | #include "stringlib/fastsearch.h" |
| 467 | #include "stringlib/partition.h" |
| 468 | #include "stringlib/split.h" |
| 469 | #include "stringlib/count.h" |
| 470 | #include "stringlib/find.h" |
| 471 | #include "stringlib/find_max_char.h" |
| 472 | #include "stringlib/localeutil.h" |
| 473 | #include "stringlib/undef.h" |
| 474 | |
| 475 | #include "stringlib/ucs1lib.h" |
| 476 | #include "stringlib/fastsearch.h" |
| 477 | #include "stringlib/partition.h" |
| 478 | #include "stringlib/split.h" |
| 479 | #include "stringlib/count.h" |
| 480 | #include "stringlib/find.h" |
| 481 | #include "stringlib/find_max_char.h" |
| 482 | #include "stringlib/localeutil.h" |
| 483 | #include "stringlib/undef.h" |
| 484 | |
| 485 | #include "stringlib/ucs2lib.h" |
| 486 | #include "stringlib/fastsearch.h" |
| 487 | #include "stringlib/partition.h" |
| 488 | #include "stringlib/split.h" |
| 489 | #include "stringlib/count.h" |
| 490 | #include "stringlib/find.h" |
| 491 | #include "stringlib/find_max_char.h" |
| 492 | #include "stringlib/localeutil.h" |
| 493 | #include "stringlib/undef.h" |
| 494 | |
| 495 | #include "stringlib/ucs4lib.h" |
| 496 | #include "stringlib/fastsearch.h" |
| 497 | #include "stringlib/partition.h" |
| 498 | #include "stringlib/split.h" |
| 499 | #include "stringlib/count.h" |
| 500 | #include "stringlib/find.h" |
| 501 | #include "stringlib/find_max_char.h" |
| 502 | #include "stringlib/localeutil.h" |
| 503 | #include "stringlib/undef.h" |
| 504 | |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 505 | #include "stringlib/unicodedefs.h" |
| 506 | #include "stringlib/fastsearch.h" |
| 507 | #include "stringlib/count.h" |
| 508 | #include "stringlib/find.h" |
| 509 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 510 | /* --- Unicode Object ----------------------------------------------------- */ |
| 511 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 512 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 513 | fixup(PyObject *self, Py_UCS4 (*fixfct)(PyObject *s)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 514 | |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 515 | Py_LOCAL_INLINE(Py_ssize_t) findchar(void *s, int kind, |
| 516 | Py_ssize_t size, Py_UCS4 ch, |
| 517 | int direction) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 518 | { |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 519 | int mode = (direction == 1) ? FAST_SEARCH : FAST_RSEARCH; |
| 520 | |
| 521 | switch (kind) { |
| 522 | case PyUnicode_1BYTE_KIND: |
| 523 | { |
| 524 | Py_UCS1 ch1 = (Py_UCS1) ch; |
| 525 | if (ch1 == ch) |
| 526 | return ucs1lib_fastsearch((Py_UCS1 *) s, size, &ch1, 1, 0, mode); |
| 527 | else |
| 528 | return -1; |
| 529 | } |
| 530 | case PyUnicode_2BYTE_KIND: |
| 531 | { |
| 532 | Py_UCS2 ch2 = (Py_UCS2) ch; |
| 533 | if (ch2 == ch) |
| 534 | return ucs2lib_fastsearch((Py_UCS2 *) s, size, &ch2, 1, 0, mode); |
| 535 | else |
| 536 | return -1; |
| 537 | } |
| 538 | case PyUnicode_4BYTE_KIND: |
| 539 | return ucs4lib_fastsearch((Py_UCS4 *) s, size, &ch, 1, 0, mode); |
| 540 | default: |
| 541 | assert(0); |
| 542 | return -1; |
Victor Stinner | 9e7a1bc | 2011-10-13 00:18:12 +0200 | [diff] [blame] | 543 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 544 | } |
| 545 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 546 | static PyObject* |
| 547 | resize_compact(PyObject *unicode, Py_ssize_t length) |
| 548 | { |
| 549 | Py_ssize_t char_size; |
| 550 | Py_ssize_t struct_size; |
| 551 | Py_ssize_t new_size; |
| 552 | int share_wstr; |
| 553 | |
| 554 | assert(PyUnicode_IS_READY(unicode)); |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 555 | char_size = PyUnicode_KIND(unicode); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 556 | if (PyUnicode_IS_COMPACT_ASCII(unicode)) |
| 557 | struct_size = sizeof(PyASCIIObject); |
| 558 | else |
| 559 | struct_size = sizeof(PyCompactUnicodeObject); |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 560 | share_wstr = _PyUnicode_SHARE_WSTR(unicode); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 561 | |
| 562 | _Py_DEC_REFTOTAL; |
| 563 | _Py_ForgetReference(unicode); |
| 564 | |
| 565 | if (length > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1)) { |
| 566 | PyErr_NoMemory(); |
| 567 | return NULL; |
| 568 | } |
| 569 | new_size = (struct_size + (length + 1) * char_size); |
| 570 | |
| 571 | unicode = (PyObject *)PyObject_REALLOC((char *)unicode, new_size); |
| 572 | if (unicode == NULL) { |
| 573 | PyObject_Del(unicode); |
| 574 | PyErr_NoMemory(); |
| 575 | return NULL; |
| 576 | } |
| 577 | _Py_NewReference(unicode); |
| 578 | _PyUnicode_LENGTH(unicode) = length; |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 579 | if (share_wstr) { |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 580 | _PyUnicode_WSTR(unicode) = PyUnicode_DATA(unicode); |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 581 | if (!PyUnicode_IS_COMPACT_ASCII(unicode)) |
| 582 | _PyUnicode_WSTR_LENGTH(unicode) = length; |
| 583 | } |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 584 | PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode), |
| 585 | length, 0); |
| 586 | return unicode; |
| 587 | } |
| 588 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 589 | static int |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 590 | resize_inplace(PyObject *unicode, Py_ssize_t length) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 591 | { |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 592 | wchar_t *wstr; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 593 | assert(!PyUnicode_IS_COMPACT(unicode)); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 594 | assert(Py_REFCNT(unicode) == 1); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 595 | |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 596 | _PyUnicode_DIRTY(unicode); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 597 | |
| 598 | if (PyUnicode_IS_READY(unicode)) { |
| 599 | Py_ssize_t char_size; |
| 600 | Py_ssize_t new_size; |
Victor Stinner | 1c8d0c7 | 2011-10-03 12:11:00 +0200 | [diff] [blame] | 601 | int share_wstr, share_utf8; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 602 | void *data; |
| 603 | |
| 604 | data = _PyUnicode_DATA_ANY(unicode); |
| 605 | assert(data != NULL); |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 606 | char_size = PyUnicode_KIND(unicode); |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 607 | share_wstr = _PyUnicode_SHARE_WSTR(unicode); |
| 608 | share_utf8 = _PyUnicode_SHARE_UTF8(unicode); |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 609 | if (!share_utf8 && _PyUnicode_HAS_UTF8_MEMORY(unicode)) |
| 610 | { |
| 611 | PyObject_DEL(_PyUnicode_UTF8(unicode)); |
| 612 | _PyUnicode_UTF8(unicode) = NULL; |
| 613 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
| 614 | } |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 615 | |
| 616 | if (length > (PY_SSIZE_T_MAX / char_size - 1)) { |
| 617 | PyErr_NoMemory(); |
| 618 | return -1; |
| 619 | } |
| 620 | new_size = (length + 1) * char_size; |
| 621 | |
| 622 | data = (PyObject *)PyObject_REALLOC(data, new_size); |
| 623 | if (data == NULL) { |
| 624 | PyErr_NoMemory(); |
| 625 | return -1; |
| 626 | } |
| 627 | _PyUnicode_DATA_ANY(unicode) = data; |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 628 | if (share_wstr) { |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 629 | _PyUnicode_WSTR(unicode) = data; |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 630 | _PyUnicode_WSTR_LENGTH(unicode) = length; |
| 631 | } |
| 632 | if (share_utf8) { |
Victor Stinner | 1c8d0c7 | 2011-10-03 12:11:00 +0200 | [diff] [blame] | 633 | _PyUnicode_UTF8(unicode) = data; |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 634 | _PyUnicode_UTF8_LENGTH(unicode) = length; |
| 635 | } |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 636 | _PyUnicode_LENGTH(unicode) = length; |
| 637 | PyUnicode_WRITE(PyUnicode_KIND(unicode), data, length, 0); |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 638 | if (share_wstr || _PyUnicode_WSTR(unicode) == NULL) { |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 639 | assert(_PyUnicode_CheckConsistency(unicode, 0)); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 640 | return 0; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 641 | } |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 642 | } |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 643 | assert(_PyUnicode_WSTR(unicode) != NULL); |
| 644 | |
| 645 | /* check for integer overflow */ |
| 646 | if (length > PY_SSIZE_T_MAX / sizeof(wchar_t) - 1) { |
| 647 | PyErr_NoMemory(); |
| 648 | return -1; |
| 649 | } |
| 650 | wstr = _PyUnicode_WSTR(unicode); |
| 651 | wstr = PyObject_REALLOC(wstr, sizeof(wchar_t) * (length + 1)); |
| 652 | if (!wstr) { |
| 653 | PyErr_NoMemory(); |
| 654 | return -1; |
| 655 | } |
| 656 | _PyUnicode_WSTR(unicode) = wstr; |
| 657 | _PyUnicode_WSTR(unicode)[length] = 0; |
| 658 | _PyUnicode_WSTR_LENGTH(unicode) = length; |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 659 | assert(_PyUnicode_CheckConsistency(unicode, 0)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 660 | return 0; |
| 661 | } |
| 662 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 663 | static PyObject* |
| 664 | resize_copy(PyObject *unicode, Py_ssize_t length) |
| 665 | { |
| 666 | Py_ssize_t copy_length; |
| 667 | if (PyUnicode_IS_COMPACT(unicode)) { |
| 668 | PyObject *copy; |
| 669 | assert(PyUnicode_IS_READY(unicode)); |
| 670 | |
| 671 | copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode)); |
| 672 | if (copy == NULL) |
| 673 | return NULL; |
| 674 | |
| 675 | copy_length = Py_MIN(length, PyUnicode_GET_LENGTH(unicode)); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 676 | copy_characters(copy, 0, unicode, 0, copy_length); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 677 | return copy; |
Victor Stinner | 8cfcbed | 2011-10-03 23:19:21 +0200 | [diff] [blame] | 678 | } |
| 679 | else { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 680 | PyObject *w; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 681 | assert(_PyUnicode_WSTR(unicode) != NULL); |
| 682 | assert(_PyUnicode_DATA_ANY(unicode) == NULL); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 683 | w = (PyObject*)_PyUnicode_New(length); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 684 | if (w == NULL) |
| 685 | return NULL; |
| 686 | copy_length = _PyUnicode_WSTR_LENGTH(unicode); |
| 687 | copy_length = Py_MIN(copy_length, length); |
| 688 | Py_UNICODE_COPY(_PyUnicode_WSTR(w), _PyUnicode_WSTR(unicode), |
| 689 | copy_length); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 690 | return w; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 691 | } |
| 692 | } |
| 693 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 694 | /* We allocate one more byte to make sure the string is |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 695 | Ux0000 terminated; some code (e.g. new_identifier) |
| 696 | relies on that. |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 697 | |
| 698 | XXX This allocator could further be enhanced by assuring that the |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 699 | free list never reduces its size below 1. |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 700 | |
| 701 | */ |
| 702 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 703 | #ifdef Py_DEBUG |
Antoine Pitrou | 53bb548 | 2011-10-10 23:49:24 +0200 | [diff] [blame] | 704 | static int unicode_old_new_calls = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 705 | #endif |
| 706 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 707 | static PyUnicodeObject * |
| 708 | _PyUnicode_New(Py_ssize_t length) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 709 | { |
| 710 | register PyUnicodeObject *unicode; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 711 | size_t new_size; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 712 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 713 | /* Optimization for empty strings */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 714 | if (length == 0 && unicode_empty != NULL) { |
| 715 | Py_INCREF(unicode_empty); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 716 | return (PyUnicodeObject*)unicode_empty; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 717 | } |
| 718 | |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 719 | /* Ensure we won't overflow the size. */ |
| 720 | if (length > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) { |
| 721 | return (PyUnicodeObject *)PyErr_NoMemory(); |
| 722 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 723 | if (length < 0) { |
| 724 | PyErr_SetString(PyExc_SystemError, |
| 725 | "Negative size passed to _PyUnicode_New"); |
| 726 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 727 | } |
| 728 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 729 | #ifdef Py_DEBUG |
| 730 | ++unicode_old_new_calls; |
| 731 | #endif |
| 732 | |
| 733 | unicode = PyObject_New(PyUnicodeObject, &PyUnicode_Type); |
| 734 | if (unicode == NULL) |
| 735 | return NULL; |
| 736 | new_size = sizeof(Py_UNICODE) * ((size_t)length + 1); |
| 737 | _PyUnicode_WSTR(unicode) = (Py_UNICODE*) PyObject_MALLOC(new_size); |
| 738 | if (!_PyUnicode_WSTR(unicode)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 739 | PyErr_NoMemory(); |
| 740 | goto onError; |
Guido van Rossum | 3c1bb80 | 2000-04-27 20:13:50 +0000 | [diff] [blame] | 741 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 742 | |
Jeremy Hylton | d808279 | 2003-09-16 19:41:39 +0000 | [diff] [blame] | 743 | /* Initialize the first element to guard against cases where |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 744 | * the caller fails before initializing str -- unicode_resize() |
| 745 | * reads str[0], and the Keep-Alive optimization can keep memory |
| 746 | * allocated for str alive across a call to unicode_dealloc(unicode). |
| 747 | * We don't want unicode_resize to read uninitialized memory in |
| 748 | * that case. |
| 749 | */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 750 | _PyUnicode_WSTR(unicode)[0] = 0; |
| 751 | _PyUnicode_WSTR(unicode)[length] = 0; |
| 752 | _PyUnicode_WSTR_LENGTH(unicode) = length; |
| 753 | _PyUnicode_HASH(unicode) = -1; |
| 754 | _PyUnicode_STATE(unicode).interned = 0; |
| 755 | _PyUnicode_STATE(unicode).kind = 0; |
| 756 | _PyUnicode_STATE(unicode).compact = 0; |
| 757 | _PyUnicode_STATE(unicode).ready = 0; |
| 758 | _PyUnicode_STATE(unicode).ascii = 0; |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 759 | _PyUnicode_DATA_ANY(unicode) = NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 760 | _PyUnicode_LENGTH(unicode) = 0; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 761 | _PyUnicode_UTF8(unicode) = NULL; |
| 762 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 763 | assert(_PyUnicode_CheckConsistency((PyObject *)unicode, 0)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 764 | return unicode; |
Barry Warsaw | 51ac580 | 2000-03-20 16:36:48 +0000 | [diff] [blame] | 765 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 766 | onError: |
Amaury Forgeot d'Arc | 7888d08 | 2008-08-01 01:06:32 +0000 | [diff] [blame] | 767 | /* XXX UNREF/NEWREF interface should be more symmetrical */ |
| 768 | _Py_DEC_REFTOTAL; |
Barry Warsaw | 51ac580 | 2000-03-20 16:36:48 +0000 | [diff] [blame] | 769 | _Py_ForgetReference((PyObject *)unicode); |
Neil Schemenauer | 58aa861 | 2002-04-12 03:07:20 +0000 | [diff] [blame] | 770 | PyObject_Del(unicode); |
Barry Warsaw | 51ac580 | 2000-03-20 16:36:48 +0000 | [diff] [blame] | 771 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 772 | } |
| 773 | |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 774 | static const char* |
| 775 | unicode_kind_name(PyObject *unicode) |
| 776 | { |
Victor Stinner | 42dfd71 | 2011-10-03 14:41:45 +0200 | [diff] [blame] | 777 | /* don't check consistency: unicode_kind_name() is called from |
| 778 | _PyUnicode_Dump() */ |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 779 | if (!PyUnicode_IS_COMPACT(unicode)) |
| 780 | { |
| 781 | if (!PyUnicode_IS_READY(unicode)) |
| 782 | return "wstr"; |
| 783 | switch(PyUnicode_KIND(unicode)) |
| 784 | { |
| 785 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 786 | if (PyUnicode_IS_ASCII(unicode)) |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 787 | return "legacy ascii"; |
| 788 | else |
| 789 | return "legacy latin1"; |
| 790 | case PyUnicode_2BYTE_KIND: |
| 791 | return "legacy UCS2"; |
| 792 | case PyUnicode_4BYTE_KIND: |
| 793 | return "legacy UCS4"; |
| 794 | default: |
| 795 | return "<legacy invalid kind>"; |
| 796 | } |
| 797 | } |
| 798 | assert(PyUnicode_IS_READY(unicode)); |
| 799 | switch(PyUnicode_KIND(unicode)) |
| 800 | { |
| 801 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 802 | if (PyUnicode_IS_ASCII(unicode)) |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 803 | return "ascii"; |
| 804 | else |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 805 | return "latin1"; |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 806 | case PyUnicode_2BYTE_KIND: |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 807 | return "UCS2"; |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 808 | case PyUnicode_4BYTE_KIND: |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 809 | return "UCS4"; |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 810 | default: |
| 811 | return "<invalid compact kind>"; |
| 812 | } |
| 813 | } |
| 814 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 815 | #ifdef Py_DEBUG |
Antoine Pitrou | 53bb548 | 2011-10-10 23:49:24 +0200 | [diff] [blame] | 816 | static int unicode_new_new_calls = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 817 | |
| 818 | /* Functions wrapping macros for use in debugger */ |
| 819 | char *_PyUnicode_utf8(void *unicode){ |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 820 | return PyUnicode_UTF8(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | void *_PyUnicode_compact_data(void *unicode) { |
| 824 | return _PyUnicode_COMPACT_DATA(unicode); |
| 825 | } |
| 826 | void *_PyUnicode_data(void *unicode){ |
| 827 | printf("obj %p\n", unicode); |
| 828 | printf("compact %d\n", PyUnicode_IS_COMPACT(unicode)); |
| 829 | printf("compact ascii %d\n", PyUnicode_IS_COMPACT_ASCII(unicode)); |
| 830 | printf("ascii op %p\n", ((void*)((PyASCIIObject*)(unicode) + 1))); |
| 831 | printf("compact op %p\n", ((void*)((PyCompactUnicodeObject*)(unicode) + 1))); |
| 832 | printf("compact data %p\n", _PyUnicode_COMPACT_DATA(unicode)); |
| 833 | return PyUnicode_DATA(unicode); |
| 834 | } |
Victor Stinner | fe0c155 | 2011-10-03 02:59:31 +0200 | [diff] [blame] | 835 | |
| 836 | void |
| 837 | _PyUnicode_Dump(PyObject *op) |
| 838 | { |
| 839 | PyASCIIObject *ascii = (PyASCIIObject *)op; |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 840 | PyCompactUnicodeObject *compact = (PyCompactUnicodeObject *)op; |
| 841 | PyUnicodeObject *unicode = (PyUnicodeObject *)op; |
| 842 | void *data; |
Victor Stinner | 0d60e87 | 2011-10-23 19:47:19 +0200 | [diff] [blame] | 843 | |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 844 | if (ascii->state.compact) |
Victor Stinner | 0d60e87 | 2011-10-23 19:47:19 +0200 | [diff] [blame] | 845 | { |
| 846 | if (ascii->state.ascii) |
| 847 | data = (ascii + 1); |
| 848 | else |
| 849 | data = (compact + 1); |
| 850 | } |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 851 | else |
| 852 | data = unicode->data.any; |
Victor Stinner | 0d60e87 | 2011-10-23 19:47:19 +0200 | [diff] [blame] | 853 | printf("%s: len=%zu, ",unicode_kind_name(op), ascii->length); |
| 854 | |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 855 | if (ascii->wstr == data) |
| 856 | printf("shared "); |
| 857 | printf("wstr=%p", ascii->wstr); |
Victor Stinner | 0d60e87 | 2011-10-23 19:47:19 +0200 | [diff] [blame] | 858 | |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 859 | if (!(ascii->state.ascii == 1 && ascii->state.compact == 1)) { |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 860 | printf(" (%zu), ", compact->wstr_length); |
| 861 | if (!ascii->state.compact && compact->utf8 == unicode->data.any) |
| 862 | printf("shared "); |
| 863 | printf("utf8=%p (%zu)", compact->utf8, compact->utf8_length); |
Victor Stinner | fe0c155 | 2011-10-03 02:59:31 +0200 | [diff] [blame] | 864 | } |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 865 | printf(", data=%p\n", data); |
Victor Stinner | fe0c155 | 2011-10-03 02:59:31 +0200 | [diff] [blame] | 866 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 867 | #endif |
| 868 | |
| 869 | PyObject * |
| 870 | PyUnicode_New(Py_ssize_t size, Py_UCS4 maxchar) |
| 871 | { |
| 872 | PyObject *obj; |
| 873 | PyCompactUnicodeObject *unicode; |
| 874 | void *data; |
| 875 | int kind_state; |
Victor Stinner | 9e9d689 | 2011-10-04 01:02:02 +0200 | [diff] [blame] | 876 | int is_sharing, is_ascii; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 877 | Py_ssize_t char_size; |
| 878 | Py_ssize_t struct_size; |
| 879 | |
| 880 | /* Optimization for empty strings */ |
| 881 | if (size == 0 && unicode_empty != NULL) { |
| 882 | Py_INCREF(unicode_empty); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 883 | return unicode_empty; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 884 | } |
| 885 | |
| 886 | #ifdef Py_DEBUG |
| 887 | ++unicode_new_new_calls; |
| 888 | #endif |
| 889 | |
Victor Stinner | 9e9d689 | 2011-10-04 01:02:02 +0200 | [diff] [blame] | 890 | is_ascii = 0; |
| 891 | is_sharing = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 892 | struct_size = sizeof(PyCompactUnicodeObject); |
| 893 | if (maxchar < 128) { |
| 894 | kind_state = PyUnicode_1BYTE_KIND; |
| 895 | char_size = 1; |
| 896 | is_ascii = 1; |
| 897 | struct_size = sizeof(PyASCIIObject); |
| 898 | } |
| 899 | else if (maxchar < 256) { |
| 900 | kind_state = PyUnicode_1BYTE_KIND; |
| 901 | char_size = 1; |
| 902 | } |
| 903 | else if (maxchar < 65536) { |
| 904 | kind_state = PyUnicode_2BYTE_KIND; |
| 905 | char_size = 2; |
| 906 | if (sizeof(wchar_t) == 2) |
| 907 | is_sharing = 1; |
| 908 | } |
| 909 | else { |
| 910 | kind_state = PyUnicode_4BYTE_KIND; |
| 911 | char_size = 4; |
| 912 | if (sizeof(wchar_t) == 4) |
| 913 | is_sharing = 1; |
| 914 | } |
| 915 | |
| 916 | /* Ensure we won't overflow the size. */ |
| 917 | if (size < 0) { |
| 918 | PyErr_SetString(PyExc_SystemError, |
| 919 | "Negative size passed to PyUnicode_New"); |
| 920 | return NULL; |
| 921 | } |
| 922 | if (size > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1)) |
| 923 | return PyErr_NoMemory(); |
| 924 | |
| 925 | /* Duplicated allocation code from _PyObject_New() instead of a call to |
| 926 | * PyObject_New() so we are able to allocate space for the object and |
| 927 | * it's data buffer. |
| 928 | */ |
| 929 | obj = (PyObject *) PyObject_MALLOC(struct_size + (size + 1) * char_size); |
| 930 | if (obj == NULL) |
| 931 | return PyErr_NoMemory(); |
| 932 | obj = PyObject_INIT(obj, &PyUnicode_Type); |
| 933 | if (obj == NULL) |
| 934 | return NULL; |
| 935 | |
| 936 | unicode = (PyCompactUnicodeObject *)obj; |
| 937 | if (is_ascii) |
| 938 | data = ((PyASCIIObject*)obj) + 1; |
| 939 | else |
| 940 | data = unicode + 1; |
| 941 | _PyUnicode_LENGTH(unicode) = size; |
| 942 | _PyUnicode_HASH(unicode) = -1; |
| 943 | _PyUnicode_STATE(unicode).interned = 0; |
| 944 | _PyUnicode_STATE(unicode).kind = kind_state; |
| 945 | _PyUnicode_STATE(unicode).compact = 1; |
| 946 | _PyUnicode_STATE(unicode).ready = 1; |
| 947 | _PyUnicode_STATE(unicode).ascii = is_ascii; |
| 948 | if (is_ascii) { |
| 949 | ((char*)data)[size] = 0; |
| 950 | _PyUnicode_WSTR(unicode) = NULL; |
| 951 | } |
| 952 | else if (kind_state == PyUnicode_1BYTE_KIND) { |
| 953 | ((char*)data)[size] = 0; |
| 954 | _PyUnicode_WSTR(unicode) = NULL; |
| 955 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 956 | unicode->utf8 = NULL; |
Victor Stinner | 9e9d689 | 2011-10-04 01:02:02 +0200 | [diff] [blame] | 957 | unicode->utf8_length = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 958 | } |
| 959 | else { |
| 960 | unicode->utf8 = NULL; |
Victor Stinner | 9e9d689 | 2011-10-04 01:02:02 +0200 | [diff] [blame] | 961 | unicode->utf8_length = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 962 | if (kind_state == PyUnicode_2BYTE_KIND) |
| 963 | ((Py_UCS2*)data)[size] = 0; |
| 964 | else /* kind_state == PyUnicode_4BYTE_KIND */ |
| 965 | ((Py_UCS4*)data)[size] = 0; |
| 966 | if (is_sharing) { |
| 967 | _PyUnicode_WSTR_LENGTH(unicode) = size; |
| 968 | _PyUnicode_WSTR(unicode) = (wchar_t *)data; |
| 969 | } |
| 970 | else { |
| 971 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
| 972 | _PyUnicode_WSTR(unicode) = NULL; |
| 973 | } |
| 974 | } |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 975 | assert(_PyUnicode_CheckConsistency((PyObject*)unicode, 0)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 976 | return obj; |
| 977 | } |
| 978 | |
| 979 | #if SIZEOF_WCHAR_T == 2 |
| 980 | /* Helper function to convert a 16-bits wchar_t representation to UCS4, this |
| 981 | will decode surrogate pairs, the other conversions are implemented as macros |
Georg Brandl | 7597add | 2011-10-05 16:36:47 +0200 | [diff] [blame] | 982 | for efficiency. |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 983 | |
| 984 | This function assumes that unicode can hold one more code point than wstr |
| 985 | characters for a terminating null character. */ |
Victor Stinner | c53be96 | 2011-10-02 21:33:54 +0200 | [diff] [blame] | 986 | static void |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 987 | unicode_convert_wchar_to_ucs4(const wchar_t *begin, const wchar_t *end, |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 988 | PyObject *unicode) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 989 | { |
| 990 | const wchar_t *iter; |
| 991 | Py_UCS4 *ucs4_out; |
| 992 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 993 | assert(unicode != NULL); |
| 994 | assert(_PyUnicode_CHECK(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 995 | assert(_PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND); |
| 996 | ucs4_out = PyUnicode_4BYTE_DATA(unicode); |
| 997 | |
| 998 | for (iter = begin; iter < end; ) { |
| 999 | assert(ucs4_out < (PyUnicode_4BYTE_DATA(unicode) + |
| 1000 | _PyUnicode_GET_LENGTH(unicode))); |
| 1001 | if (*iter >= 0xD800 && *iter <= 0xDBFF |
| 1002 | && (iter+1) < end && iter[1] >= 0xDC00 && iter[1] <= 0xDFFF) |
| 1003 | { |
| 1004 | *ucs4_out++ = (((iter[0] & 0x3FF)<<10) | (iter[1] & 0x3FF)) + 0x10000; |
| 1005 | iter += 2; |
| 1006 | } |
| 1007 | else { |
| 1008 | *ucs4_out++ = *iter; |
| 1009 | iter++; |
| 1010 | } |
| 1011 | } |
| 1012 | assert(ucs4_out == (PyUnicode_4BYTE_DATA(unicode) + |
| 1013 | _PyUnicode_GET_LENGTH(unicode))); |
| 1014 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1015 | } |
| 1016 | #endif |
| 1017 | |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 1018 | static int |
| 1019 | _PyUnicode_Dirty(PyObject *unicode) |
| 1020 | { |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 1021 | assert(_PyUnicode_CHECK(unicode)); |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 1022 | if (Py_REFCNT(unicode) != 1) { |
Victor Stinner | 0169804 | 2011-10-04 00:04:26 +0200 | [diff] [blame] | 1023 | PyErr_SetString(PyExc_SystemError, |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 1024 | "Cannot modify a string having more than 1 reference"); |
| 1025 | return -1; |
| 1026 | } |
| 1027 | _PyUnicode_DIRTY(unicode); |
| 1028 | return 0; |
| 1029 | } |
| 1030 | |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1031 | static int |
| 1032 | _copy_characters(PyObject *to, Py_ssize_t to_start, |
| 1033 | PyObject *from, Py_ssize_t from_start, |
| 1034 | Py_ssize_t how_many, int check_maxchar) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1035 | { |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1036 | unsigned int from_kind, to_kind; |
| 1037 | void *from_data, *to_data; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1038 | int fast; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1039 | |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1040 | assert(PyUnicode_Check(from)); |
| 1041 | assert(PyUnicode_Check(to)); |
| 1042 | assert(PyUnicode_IS_READY(from)); |
| 1043 | assert(PyUnicode_IS_READY(to)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1044 | |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1045 | assert(PyUnicode_GET_LENGTH(from) >= how_many); |
| 1046 | assert(to_start + how_many <= PyUnicode_GET_LENGTH(to)); |
| 1047 | assert(0 <= how_many); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1048 | |
Victor Stinner | f5ca1a2 | 2011-09-28 23:54:59 +0200 | [diff] [blame] | 1049 | if (how_many == 0) |
| 1050 | return 0; |
| 1051 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1052 | from_kind = PyUnicode_KIND(from); |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1053 | from_data = PyUnicode_DATA(from); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1054 | to_kind = PyUnicode_KIND(to); |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1055 | to_data = PyUnicode_DATA(to); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1056 | |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1057 | #ifdef Py_DEBUG |
| 1058 | if (!check_maxchar |
| 1059 | && (from_kind > to_kind |
| 1060 | || (!PyUnicode_IS_ASCII(from) && PyUnicode_IS_ASCII(to)))) |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 1061 | { |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1062 | const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); |
| 1063 | Py_UCS4 ch; |
| 1064 | Py_ssize_t i; |
| 1065 | for (i=0; i < how_many; i++) { |
| 1066 | ch = PyUnicode_READ(from_kind, from_data, from_start + i); |
| 1067 | assert(ch <= to_maxchar); |
| 1068 | } |
| 1069 | } |
| 1070 | #endif |
| 1071 | fast = (from_kind == to_kind); |
| 1072 | if (check_maxchar |
| 1073 | && (!PyUnicode_IS_ASCII(from) && PyUnicode_IS_ASCII(to))) |
| 1074 | { |
| 1075 | /* deny latin1 => ascii */ |
| 1076 | fast = 0; |
| 1077 | } |
| 1078 | |
| 1079 | if (fast) { |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 1080 | Py_MEMCPY((char*)to_data + to_kind * to_start, |
| 1081 | (char*)from_data + from_kind * from_start, |
| 1082 | to_kind * how_many); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1083 | } |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1084 | else if (from_kind == PyUnicode_1BYTE_KIND |
| 1085 | && to_kind == PyUnicode_2BYTE_KIND) |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1086 | { |
| 1087 | _PyUnicode_CONVERT_BYTES( |
| 1088 | Py_UCS1, Py_UCS2, |
| 1089 | PyUnicode_1BYTE_DATA(from) + from_start, |
| 1090 | PyUnicode_1BYTE_DATA(from) + from_start + how_many, |
| 1091 | PyUnicode_2BYTE_DATA(to) + to_start |
| 1092 | ); |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1093 | } |
Victor Stinner | 157f83f | 2011-09-28 21:41:31 +0200 | [diff] [blame] | 1094 | else if (from_kind == PyUnicode_1BYTE_KIND |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1095 | && to_kind == PyUnicode_4BYTE_KIND) |
| 1096 | { |
| 1097 | _PyUnicode_CONVERT_BYTES( |
| 1098 | Py_UCS1, Py_UCS4, |
| 1099 | PyUnicode_1BYTE_DATA(from) + from_start, |
| 1100 | PyUnicode_1BYTE_DATA(from) + from_start + how_many, |
| 1101 | PyUnicode_4BYTE_DATA(to) + to_start |
| 1102 | ); |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1103 | } |
| 1104 | else if (from_kind == PyUnicode_2BYTE_KIND |
| 1105 | && to_kind == PyUnicode_4BYTE_KIND) |
| 1106 | { |
| 1107 | _PyUnicode_CONVERT_BYTES( |
| 1108 | Py_UCS2, Py_UCS4, |
| 1109 | PyUnicode_2BYTE_DATA(from) + from_start, |
| 1110 | PyUnicode_2BYTE_DATA(from) + from_start + how_many, |
| 1111 | PyUnicode_4BYTE_DATA(to) + to_start |
| 1112 | ); |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1113 | } |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1114 | else { |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 1115 | /* check if max_char(from substring) <= max_char(to) */ |
| 1116 | if (from_kind > to_kind |
| 1117 | /* latin1 => ascii */ |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1118 | || (!PyUnicode_IS_ASCII(from) && PyUnicode_IS_ASCII(to))) |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 1119 | { |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1120 | /* slow path to check for character overflow */ |
| 1121 | const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1122 | Py_UCS4 ch; |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1123 | Py_ssize_t i; |
| 1124 | |
Victor Stinner | 56c161a | 2011-10-06 02:47:11 +0200 | [diff] [blame] | 1125 | #ifdef Py_DEBUG |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1126 | for (i=0; i < how_many; i++) { |
| 1127 | ch = PyUnicode_READ(from_kind, from_data, from_start + i); |
Victor Stinner | 56c161a | 2011-10-06 02:47:11 +0200 | [diff] [blame] | 1128 | assert(ch <= to_maxchar); |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1129 | PyUnicode_WRITE(to_kind, to_data, to_start + i, ch); |
| 1130 | } |
Victor Stinner | 56c161a | 2011-10-06 02:47:11 +0200 | [diff] [blame] | 1131 | #else |
| 1132 | if (!check_maxchar) { |
| 1133 | for (i=0; i < how_many; i++) { |
| 1134 | ch = PyUnicode_READ(from_kind, from_data, from_start + i); |
| 1135 | PyUnicode_WRITE(to_kind, to_data, to_start + i, ch); |
| 1136 | } |
| 1137 | } |
| 1138 | else { |
| 1139 | for (i=0; i < how_many; i++) { |
| 1140 | ch = PyUnicode_READ(from_kind, from_data, from_start + i); |
| 1141 | if (ch > to_maxchar) |
| 1142 | return 1; |
| 1143 | PyUnicode_WRITE(to_kind, to_data, to_start + i, ch); |
| 1144 | } |
| 1145 | } |
| 1146 | #endif |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1147 | } |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1148 | else { |
Victor Stinner | 56c161a | 2011-10-06 02:47:11 +0200 | [diff] [blame] | 1149 | assert(0 && "inconsistent state"); |
| 1150 | return 1; |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1151 | } |
| 1152 | } |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1153 | return 0; |
| 1154 | } |
| 1155 | |
| 1156 | static void |
| 1157 | copy_characters(PyObject *to, Py_ssize_t to_start, |
| 1158 | PyObject *from, Py_ssize_t from_start, |
| 1159 | Py_ssize_t how_many) |
| 1160 | { |
| 1161 | (void)_copy_characters(to, to_start, from, from_start, how_many, 0); |
| 1162 | } |
| 1163 | |
| 1164 | Py_ssize_t |
| 1165 | PyUnicode_CopyCharacters(PyObject *to, Py_ssize_t to_start, |
| 1166 | PyObject *from, Py_ssize_t from_start, |
| 1167 | Py_ssize_t how_many) |
| 1168 | { |
| 1169 | int err; |
| 1170 | |
| 1171 | if (!PyUnicode_Check(from) || !PyUnicode_Check(to)) { |
| 1172 | PyErr_BadInternalCall(); |
| 1173 | return -1; |
| 1174 | } |
| 1175 | |
| 1176 | if (PyUnicode_READY(from)) |
| 1177 | return -1; |
| 1178 | if (PyUnicode_READY(to)) |
| 1179 | return -1; |
| 1180 | |
| 1181 | how_many = Py_MIN(PyUnicode_GET_LENGTH(from), how_many); |
| 1182 | if (to_start + how_many > PyUnicode_GET_LENGTH(to)) { |
| 1183 | PyErr_Format(PyExc_SystemError, |
| 1184 | "Cannot write %zi characters at %zi " |
| 1185 | "in a string of %zi characters", |
| 1186 | how_many, to_start, PyUnicode_GET_LENGTH(to)); |
| 1187 | return -1; |
| 1188 | } |
| 1189 | |
| 1190 | if (how_many == 0) |
| 1191 | return 0; |
| 1192 | |
| 1193 | if (_PyUnicode_Dirty(to)) |
| 1194 | return -1; |
| 1195 | |
| 1196 | err = _copy_characters(to, to_start, from, from_start, how_many, 1); |
| 1197 | if (err) { |
| 1198 | PyErr_Format(PyExc_SystemError, |
| 1199 | "Cannot copy %s characters " |
| 1200 | "into a string of %s characters", |
| 1201 | unicode_kind_name(from), |
| 1202 | unicode_kind_name(to)); |
| 1203 | return -1; |
| 1204 | } |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1205 | return how_many; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1206 | } |
| 1207 | |
Victor Stinner | 1722216 | 2011-09-28 22:15:37 +0200 | [diff] [blame] | 1208 | /* Find the maximum code point and count the number of surrogate pairs so a |
| 1209 | correct string length can be computed before converting a string to UCS4. |
| 1210 | This function counts single surrogates as a character and not as a pair. |
| 1211 | |
| 1212 | Return 0 on success, or -1 on error. */ |
| 1213 | static int |
| 1214 | find_maxchar_surrogates(const wchar_t *begin, const wchar_t *end, |
| 1215 | Py_UCS4 *maxchar, Py_ssize_t *num_surrogates) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1216 | { |
| 1217 | const wchar_t *iter; |
| 1218 | |
Victor Stinner | c53be96 | 2011-10-02 21:33:54 +0200 | [diff] [blame] | 1219 | assert(num_surrogates != NULL && maxchar != NULL); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1220 | *num_surrogates = 0; |
| 1221 | *maxchar = 0; |
| 1222 | |
| 1223 | for (iter = begin; iter < end; ) { |
Victor Stinner | ae86485 | 2011-10-05 14:02:44 +0200 | [diff] [blame] | 1224 | if (*iter > *maxchar) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1225 | *maxchar = *iter; |
Victor Stinner | ae86485 | 2011-10-05 14:02:44 +0200 | [diff] [blame] | 1226 | #if SIZEOF_WCHAR_T != 2 |
| 1227 | if (*maxchar >= 0x10000) |
| 1228 | return 0; |
| 1229 | #endif |
| 1230 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1231 | #if SIZEOF_WCHAR_T == 2 |
| 1232 | if (*iter >= 0xD800 && *iter <= 0xDBFF |
| 1233 | && (iter+1) < end && iter[1] >= 0xDC00 && iter[1] <= 0xDFFF) |
| 1234 | { |
| 1235 | Py_UCS4 surrogate_val; |
| 1236 | surrogate_val = (((iter[0] & 0x3FF)<<10) |
| 1237 | | (iter[1] & 0x3FF)) + 0x10000; |
| 1238 | ++(*num_surrogates); |
| 1239 | if (surrogate_val > *maxchar) |
| 1240 | *maxchar = surrogate_val; |
| 1241 | iter += 2; |
| 1242 | } |
| 1243 | else |
| 1244 | iter++; |
| 1245 | #else |
| 1246 | iter++; |
| 1247 | #endif |
| 1248 | } |
| 1249 | return 0; |
| 1250 | } |
| 1251 | |
| 1252 | #ifdef Py_DEBUG |
Antoine Pitrou | 53bb548 | 2011-10-10 23:49:24 +0200 | [diff] [blame] | 1253 | static int unicode_ready_calls = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1254 | #endif |
| 1255 | |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 1256 | static int |
| 1257 | unicode_ready(PyObject **p_obj, int replace) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1258 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1259 | PyObject *unicode; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1260 | wchar_t *end; |
| 1261 | Py_UCS4 maxchar = 0; |
| 1262 | Py_ssize_t num_surrogates; |
| 1263 | #if SIZEOF_WCHAR_T == 2 |
| 1264 | Py_ssize_t length_wo_surrogates; |
| 1265 | #endif |
| 1266 | |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 1267 | assert(p_obj != NULL); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1268 | unicode = *p_obj; |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 1269 | |
Georg Brandl | 7597add | 2011-10-05 16:36:47 +0200 | [diff] [blame] | 1270 | /* _PyUnicode_Ready() is only intended for old-style API usage where |
Victor Stinner | d8f6510 | 2011-09-29 19:43:17 +0200 | [diff] [blame] | 1271 | strings were created using _PyObject_New() and where no canonical |
| 1272 | representation (the str field) has been set yet aka strings |
| 1273 | which are not yet ready. */ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 1274 | assert(_PyUnicode_CHECK(unicode)); |
| 1275 | assert(_PyUnicode_KIND(unicode) == PyUnicode_WCHAR_KIND); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1276 | assert(_PyUnicode_WSTR(unicode) != NULL); |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1277 | assert(_PyUnicode_DATA_ANY(unicode) == NULL); |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1278 | assert(_PyUnicode_UTF8(unicode) == NULL); |
Victor Stinner | d8f6510 | 2011-09-29 19:43:17 +0200 | [diff] [blame] | 1279 | /* Actually, it should neither be interned nor be anything else: */ |
| 1280 | assert(_PyUnicode_STATE(unicode).interned == SSTATE_NOT_INTERNED); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1281 | |
| 1282 | #ifdef Py_DEBUG |
| 1283 | ++unicode_ready_calls; |
| 1284 | #endif |
| 1285 | |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 1286 | #ifdef Py_DEBUG |
| 1287 | assert(!replace || Py_REFCNT(unicode) == 1); |
| 1288 | #else |
| 1289 | if (replace && Py_REFCNT(unicode) != 1) |
| 1290 | replace = 0; |
| 1291 | #endif |
| 1292 | if (replace) { |
| 1293 | Py_ssize_t len = _PyUnicode_WSTR_LENGTH(unicode); |
| 1294 | wchar_t *wstr = _PyUnicode_WSTR(unicode); |
| 1295 | /* Optimization for empty strings */ |
| 1296 | if (len == 0) { |
| 1297 | Py_INCREF(unicode_empty); |
| 1298 | Py_DECREF(*p_obj); |
| 1299 | *p_obj = unicode_empty; |
| 1300 | return 0; |
| 1301 | } |
| 1302 | if (len == 1 && wstr[0] < 256) { |
| 1303 | PyObject *latin1_char = get_latin1_char((unsigned char)wstr[0]); |
| 1304 | if (latin1_char == NULL) |
| 1305 | return -1; |
| 1306 | Py_DECREF(*p_obj); |
| 1307 | *p_obj = latin1_char; |
| 1308 | return 0; |
| 1309 | } |
| 1310 | } |
| 1311 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1312 | end = _PyUnicode_WSTR(unicode) + _PyUnicode_WSTR_LENGTH(unicode); |
Victor Stinner | 1722216 | 2011-09-28 22:15:37 +0200 | [diff] [blame] | 1313 | if (find_maxchar_surrogates(_PyUnicode_WSTR(unicode), end, |
Victor Stinner | d8f6510 | 2011-09-29 19:43:17 +0200 | [diff] [blame] | 1314 | &maxchar, &num_surrogates) == -1) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1315 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1316 | |
| 1317 | if (maxchar < 256) { |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1318 | _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(_PyUnicode_WSTR_LENGTH(unicode) + 1); |
| 1319 | if (!_PyUnicode_DATA_ANY(unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1320 | PyErr_NoMemory(); |
| 1321 | return -1; |
| 1322 | } |
Victor Stinner | fb5f5f2 | 2011-09-28 21:39:49 +0200 | [diff] [blame] | 1323 | _PyUnicode_CONVERT_BYTES(wchar_t, unsigned char, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1324 | _PyUnicode_WSTR(unicode), end, |
| 1325 | PyUnicode_1BYTE_DATA(unicode)); |
| 1326 | PyUnicode_1BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0'; |
| 1327 | _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
| 1328 | _PyUnicode_STATE(unicode).kind = PyUnicode_1BYTE_KIND; |
| 1329 | if (maxchar < 128) { |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 1330 | _PyUnicode_STATE(unicode).ascii = 1; |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1331 | _PyUnicode_UTF8(unicode) = _PyUnicode_DATA_ANY(unicode); |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1332 | _PyUnicode_UTF8_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1333 | } |
| 1334 | else { |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 1335 | _PyUnicode_STATE(unicode).ascii = 0; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1336 | _PyUnicode_UTF8(unicode) = NULL; |
| 1337 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1338 | } |
| 1339 | PyObject_FREE(_PyUnicode_WSTR(unicode)); |
| 1340 | _PyUnicode_WSTR(unicode) = NULL; |
| 1341 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
| 1342 | } |
| 1343 | /* In this case we might have to convert down from 4-byte native |
| 1344 | wchar_t to 2-byte unicode. */ |
| 1345 | else if (maxchar < 65536) { |
| 1346 | assert(num_surrogates == 0 && |
| 1347 | "FindMaxCharAndNumSurrogatePairs() messed up"); |
| 1348 | |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1349 | #if SIZEOF_WCHAR_T == 2 |
| 1350 | /* We can share representations and are done. */ |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1351 | _PyUnicode_DATA_ANY(unicode) = _PyUnicode_WSTR(unicode); |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1352 | PyUnicode_2BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0'; |
| 1353 | _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
| 1354 | _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1355 | _PyUnicode_UTF8(unicode) = NULL; |
| 1356 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1357 | #else |
| 1358 | /* sizeof(wchar_t) == 4 */ |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1359 | _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC( |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1360 | 2 * (_PyUnicode_WSTR_LENGTH(unicode) + 1)); |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1361 | if (!_PyUnicode_DATA_ANY(unicode)) { |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1362 | PyErr_NoMemory(); |
| 1363 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1364 | } |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1365 | _PyUnicode_CONVERT_BYTES(wchar_t, Py_UCS2, |
| 1366 | _PyUnicode_WSTR(unicode), end, |
| 1367 | PyUnicode_2BYTE_DATA(unicode)); |
| 1368 | PyUnicode_2BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0'; |
| 1369 | _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
| 1370 | _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1371 | _PyUnicode_UTF8(unicode) = NULL; |
| 1372 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1373 | PyObject_FREE(_PyUnicode_WSTR(unicode)); |
| 1374 | _PyUnicode_WSTR(unicode) = NULL; |
| 1375 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
| 1376 | #endif |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1377 | } |
| 1378 | /* maxchar exeeds 16 bit, wee need 4 bytes for unicode characters */ |
| 1379 | else { |
| 1380 | #if SIZEOF_WCHAR_T == 2 |
| 1381 | /* in case the native representation is 2-bytes, we need to allocate a |
| 1382 | new normalized 4-byte version. */ |
| 1383 | length_wo_surrogates = _PyUnicode_WSTR_LENGTH(unicode) - num_surrogates; |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1384 | _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(4 * (length_wo_surrogates + 1)); |
| 1385 | if (!_PyUnicode_DATA_ANY(unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1386 | PyErr_NoMemory(); |
| 1387 | return -1; |
| 1388 | } |
| 1389 | _PyUnicode_LENGTH(unicode) = length_wo_surrogates; |
| 1390 | _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1391 | _PyUnicode_UTF8(unicode) = NULL; |
| 1392 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Victor Stinner | 126c559 | 2011-10-03 04:17:10 +0200 | [diff] [blame] | 1393 | /* unicode_convert_wchar_to_ucs4() requires a ready string */ |
| 1394 | _PyUnicode_STATE(unicode).ready = 1; |
Victor Stinner | c53be96 | 2011-10-02 21:33:54 +0200 | [diff] [blame] | 1395 | unicode_convert_wchar_to_ucs4(_PyUnicode_WSTR(unicode), end, unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1396 | PyObject_FREE(_PyUnicode_WSTR(unicode)); |
| 1397 | _PyUnicode_WSTR(unicode) = NULL; |
| 1398 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
| 1399 | #else |
| 1400 | assert(num_surrogates == 0); |
| 1401 | |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1402 | _PyUnicode_DATA_ANY(unicode) = _PyUnicode_WSTR(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1403 | _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1404 | _PyUnicode_UTF8(unicode) = NULL; |
| 1405 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1406 | _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND; |
| 1407 | #endif |
| 1408 | PyUnicode_4BYTE_DATA(unicode)[_PyUnicode_LENGTH(unicode)] = '\0'; |
| 1409 | } |
| 1410 | _PyUnicode_STATE(unicode).ready = 1; |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1411 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1412 | return 0; |
| 1413 | } |
| 1414 | |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 1415 | int |
| 1416 | _PyUnicode_ReadyReplace(PyObject **op) |
| 1417 | { |
| 1418 | return unicode_ready(op, 1); |
| 1419 | } |
| 1420 | |
| 1421 | int |
| 1422 | _PyUnicode_Ready(PyObject *op) |
| 1423 | { |
| 1424 | return unicode_ready(&op, 0); |
| 1425 | } |
| 1426 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1427 | static void |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1428 | unicode_dealloc(register PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1429 | { |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1430 | switch (PyUnicode_CHECK_INTERNED(unicode)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1431 | case SSTATE_NOT_INTERNED: |
| 1432 | break; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1433 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1434 | case SSTATE_INTERNED_MORTAL: |
| 1435 | /* revive dead object temporarily for DelItem */ |
| 1436 | Py_REFCNT(unicode) = 3; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 1437 | if (PyDict_DelItem(interned, unicode) != 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1438 | Py_FatalError( |
| 1439 | "deletion of interned string failed"); |
| 1440 | break; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1441 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1442 | case SSTATE_INTERNED_IMMORTAL: |
| 1443 | Py_FatalError("Immortal interned string died."); |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1444 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1445 | default: |
| 1446 | Py_FatalError("Inconsistent interned string state."); |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1447 | } |
| 1448 | |
Victor Stinner | 0349091 | 2011-10-03 23:45:12 +0200 | [diff] [blame] | 1449 | if (_PyUnicode_HAS_WSTR_MEMORY(unicode)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1450 | PyObject_DEL(_PyUnicode_WSTR(unicode)); |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 1451 | if (_PyUnicode_HAS_UTF8_MEMORY(unicode)) |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1452 | PyObject_DEL(_PyUnicode_UTF8(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1453 | |
| 1454 | if (PyUnicode_IS_COMPACT(unicode)) { |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 1455 | Py_TYPE(unicode)->tp_free(unicode); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1456 | } |
| 1457 | else { |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1458 | if (_PyUnicode_DATA_ANY(unicode)) |
| 1459 | PyObject_DEL(_PyUnicode_DATA_ANY(unicode)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 1460 | Py_TYPE(unicode)->tp_free(unicode); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1461 | } |
| 1462 | } |
| 1463 | |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1464 | #ifdef Py_DEBUG |
| 1465 | static int |
| 1466 | unicode_is_singleton(PyObject *unicode) |
| 1467 | { |
| 1468 | PyASCIIObject *ascii = (PyASCIIObject *)unicode; |
| 1469 | if (unicode == unicode_empty) |
| 1470 | return 1; |
| 1471 | if (ascii->state.kind != PyUnicode_WCHAR_KIND && ascii->length == 1) |
| 1472 | { |
| 1473 | Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, 0); |
| 1474 | if (ch < 256 && unicode_latin1[ch] == unicode) |
| 1475 | return 1; |
| 1476 | } |
| 1477 | return 0; |
| 1478 | } |
| 1479 | #endif |
| 1480 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1481 | static int |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1482 | unicode_resizable(PyObject *unicode) |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1483 | { |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1484 | if (Py_REFCNT(unicode) != 1) |
| 1485 | return 0; |
| 1486 | if (PyUnicode_CHECK_INTERNED(unicode)) |
| 1487 | return 0; |
Victor Stinner | 77bb47b | 2011-10-03 20:06:05 +0200 | [diff] [blame] | 1488 | #ifdef Py_DEBUG |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1489 | /* singleton refcount is greater than 1 */ |
| 1490 | assert(!unicode_is_singleton(unicode)); |
Victor Stinner | 77bb47b | 2011-10-03 20:06:05 +0200 | [diff] [blame] | 1491 | #endif |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1492 | return 1; |
| 1493 | } |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1494 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1495 | static int |
| 1496 | unicode_resize(PyObject **p_unicode, Py_ssize_t length) |
| 1497 | { |
| 1498 | PyObject *unicode; |
| 1499 | Py_ssize_t old_length; |
| 1500 | |
| 1501 | assert(p_unicode != NULL); |
| 1502 | unicode = *p_unicode; |
| 1503 | |
| 1504 | assert(unicode != NULL); |
| 1505 | assert(PyUnicode_Check(unicode)); |
| 1506 | assert(0 <= length); |
| 1507 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 1508 | if (_PyUnicode_KIND(unicode) == PyUnicode_WCHAR_KIND) |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1509 | old_length = PyUnicode_WSTR_LENGTH(unicode); |
| 1510 | else |
| 1511 | old_length = PyUnicode_GET_LENGTH(unicode); |
| 1512 | if (old_length == length) |
| 1513 | return 0; |
| 1514 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1515 | if (length == 0) { |
| 1516 | Py_DECREF(*p_unicode); |
| 1517 | *p_unicode = unicode_empty; |
| 1518 | Py_INCREF(*p_unicode); |
| 1519 | return 0; |
| 1520 | } |
| 1521 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1522 | if (!unicode_resizable(unicode)) { |
| 1523 | PyObject *copy = resize_copy(unicode, length); |
| 1524 | if (copy == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1525 | return -1; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1526 | Py_DECREF(*p_unicode); |
| 1527 | *p_unicode = copy; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1528 | return 0; |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1529 | } |
| 1530 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1531 | if (PyUnicode_IS_COMPACT(unicode)) { |
| 1532 | *p_unicode = resize_compact(unicode, length); |
| 1533 | if (*p_unicode == NULL) |
| 1534 | return -1; |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1535 | assert(_PyUnicode_CheckConsistency(*p_unicode, 0)); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1536 | return 0; |
Benjamin Peterson | 4bfce8f | 2011-10-03 19:35:07 -0400 | [diff] [blame] | 1537 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1538 | return resize_inplace(unicode, length); |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1539 | } |
| 1540 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1541 | int |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1542 | PyUnicode_Resize(PyObject **p_unicode, Py_ssize_t length) |
Alexandre Vassalotti | aa0e531 | 2008-12-27 06:43:58 +0000 | [diff] [blame] | 1543 | { |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1544 | PyObject *unicode; |
| 1545 | if (p_unicode == NULL) { |
| 1546 | PyErr_BadInternalCall(); |
| 1547 | return -1; |
| 1548 | } |
| 1549 | unicode = *p_unicode; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1550 | if (unicode == NULL || !PyUnicode_Check(unicode) || length < 0) |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1551 | { |
| 1552 | PyErr_BadInternalCall(); |
| 1553 | return -1; |
| 1554 | } |
| 1555 | return unicode_resize(p_unicode, length); |
Alexandre Vassalotti | aa0e531 | 2008-12-27 06:43:58 +0000 | [diff] [blame] | 1556 | } |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1557 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1558 | static int |
Victor Stinner | 0a045ef | 2011-11-09 00:02:42 +0100 | [diff] [blame] | 1559 | unicode_widen(PyObject **p_unicode, unsigned int maxchar) |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1560 | { |
| 1561 | PyObject *result; |
| 1562 | assert(PyUnicode_IS_READY(*p_unicode)); |
| 1563 | if (maxchar <= PyUnicode_MAX_CHAR_VALUE(*p_unicode)) |
| 1564 | return 0; |
| 1565 | result = PyUnicode_New(PyUnicode_GET_LENGTH(*p_unicode), |
| 1566 | maxchar); |
| 1567 | if (result == NULL) |
| 1568 | return -1; |
| 1569 | PyUnicode_CopyCharacters(result, 0, *p_unicode, 0, |
| 1570 | PyUnicode_GET_LENGTH(*p_unicode)); |
| 1571 | Py_DECREF(*p_unicode); |
| 1572 | *p_unicode = result; |
| 1573 | return 0; |
| 1574 | } |
| 1575 | |
| 1576 | static int |
| 1577 | unicode_putchar(PyObject **p_unicode, Py_ssize_t *pos, |
| 1578 | Py_UCS4 ch) |
| 1579 | { |
| 1580 | if (unicode_widen(p_unicode, ch) < 0) |
| 1581 | return -1; |
| 1582 | PyUnicode_WRITE(PyUnicode_KIND(*p_unicode), |
| 1583 | PyUnicode_DATA(*p_unicode), |
| 1584 | (*pos)++, ch); |
| 1585 | return 0; |
| 1586 | } |
| 1587 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1588 | static PyObject* |
| 1589 | get_latin1_char(unsigned char ch) |
| 1590 | { |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 1591 | PyObject *unicode = unicode_latin1[ch]; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1592 | if (!unicode) { |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 1593 | unicode = PyUnicode_New(1, ch); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1594 | if (!unicode) |
| 1595 | return NULL; |
| 1596 | PyUnicode_1BYTE_DATA(unicode)[0] = ch; |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1597 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1598 | unicode_latin1[ch] = unicode; |
| 1599 | } |
| 1600 | Py_INCREF(unicode); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 1601 | return unicode; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1602 | } |
| 1603 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1604 | PyObject * |
| 1605 | PyUnicode_FromUnicode(const Py_UNICODE *u, Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1606 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1607 | PyObject *unicode; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1608 | Py_UCS4 maxchar = 0; |
| 1609 | Py_ssize_t num_surrogates; |
| 1610 | |
| 1611 | if (u == NULL) |
| 1612 | return (PyObject*)_PyUnicode_New(size); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1613 | |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1614 | /* If the Unicode data is known at construction time, we can apply |
| 1615 | some optimizations which share commonly used objects. */ |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1616 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1617 | /* Optimization for empty strings */ |
| 1618 | if (size == 0 && unicode_empty != NULL) { |
| 1619 | Py_INCREF(unicode_empty); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 1620 | return unicode_empty; |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1621 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 1622 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1623 | /* Single character Unicode objects in the Latin-1 range are |
| 1624 | shared when using this constructor */ |
| 1625 | if (size == 1 && *u < 256) |
| 1626 | return get_latin1_char((unsigned char)*u); |
| 1627 | |
| 1628 | /* If not empty and not single character, copy the Unicode data |
| 1629 | into the new object */ |
Victor Stinner | d8f6510 | 2011-09-29 19:43:17 +0200 | [diff] [blame] | 1630 | if (find_maxchar_surrogates(u, u + size, |
| 1631 | &maxchar, &num_surrogates) == -1) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1632 | return NULL; |
| 1633 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1634 | unicode = PyUnicode_New(size - num_surrogates, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1635 | maxchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1636 | if (!unicode) |
| 1637 | return NULL; |
| 1638 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1639 | switch (PyUnicode_KIND(unicode)) { |
| 1640 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | fb5f5f2 | 2011-09-28 21:39:49 +0200 | [diff] [blame] | 1641 | _PyUnicode_CONVERT_BYTES(Py_UNICODE, unsigned char, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1642 | u, u + size, PyUnicode_1BYTE_DATA(unicode)); |
| 1643 | break; |
| 1644 | case PyUnicode_2BYTE_KIND: |
| 1645 | #if Py_UNICODE_SIZE == 2 |
| 1646 | Py_MEMCPY(PyUnicode_2BYTE_DATA(unicode), u, size * 2); |
| 1647 | #else |
Victor Stinner | fb5f5f2 | 2011-09-28 21:39:49 +0200 | [diff] [blame] | 1648 | _PyUnicode_CONVERT_BYTES(Py_UNICODE, Py_UCS2, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1649 | u, u + size, PyUnicode_2BYTE_DATA(unicode)); |
| 1650 | #endif |
| 1651 | break; |
| 1652 | case PyUnicode_4BYTE_KIND: |
| 1653 | #if SIZEOF_WCHAR_T == 2 |
| 1654 | /* This is the only case which has to process surrogates, thus |
| 1655 | a simple copy loop is not enough and we need a function. */ |
Victor Stinner | c53be96 | 2011-10-02 21:33:54 +0200 | [diff] [blame] | 1656 | unicode_convert_wchar_to_ucs4(u, u + size, unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1657 | #else |
| 1658 | assert(num_surrogates == 0); |
| 1659 | Py_MEMCPY(PyUnicode_4BYTE_DATA(unicode), u, size * 4); |
| 1660 | #endif |
| 1661 | break; |
| 1662 | default: |
| 1663 | assert(0 && "Impossible state"); |
| 1664 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1665 | |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1666 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1667 | return unicode; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1668 | } |
| 1669 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1670 | PyObject * |
| 1671 | PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size) |
Walter Dörwald | acaa5a1 | 2007-05-05 12:00:46 +0000 | [diff] [blame] | 1672 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 1673 | if (size < 0) { |
| 1674 | PyErr_SetString(PyExc_SystemError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1675 | "Negative size passed to PyUnicode_FromStringAndSize"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 1676 | return NULL; |
| 1677 | } |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 1678 | |
Walter Dörwald | acaa5a1 | 2007-05-05 12:00:46 +0000 | [diff] [blame] | 1679 | /* If the Unicode data is known at construction time, we can apply |
Martin v. Löwis | 9c12106 | 2007-08-05 20:26:11 +0000 | [diff] [blame] | 1680 | some optimizations which share commonly used objects. |
| 1681 | Also, this means the input must be UTF-8, so fall back to the |
| 1682 | UTF-8 decoder at the end. */ |
Walter Dörwald | acaa5a1 | 2007-05-05 12:00:46 +0000 | [diff] [blame] | 1683 | if (u != NULL) { |
| 1684 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1685 | /* Optimization for empty strings */ |
| 1686 | if (size == 0 && unicode_empty != NULL) { |
| 1687 | Py_INCREF(unicode_empty); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 1688 | return unicode_empty; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 1689 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1690 | |
| 1691 | /* Single characters are shared when using this constructor. |
| 1692 | Restrict to ASCII, since the input must be UTF-8. */ |
Victor Stinner | 9faa384 | 2011-10-23 20:06:00 +0200 | [diff] [blame] | 1693 | if (size == 1 && (unsigned char)*u < 128) |
| 1694 | return get_latin1_char((unsigned char)*u); |
Martin v. Löwis | 9c12106 | 2007-08-05 20:26:11 +0000 | [diff] [blame] | 1695 | |
| 1696 | return PyUnicode_DecodeUTF8(u, size, NULL); |
Walter Dörwald | acaa5a1 | 2007-05-05 12:00:46 +0000 | [diff] [blame] | 1697 | } |
| 1698 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1699 | return (PyObject *)_PyUnicode_New(size); |
Walter Dörwald | acaa5a1 | 2007-05-05 12:00:46 +0000 | [diff] [blame] | 1700 | } |
| 1701 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1702 | PyObject * |
| 1703 | PyUnicode_FromString(const char *u) |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 1704 | { |
| 1705 | size_t size = strlen(u); |
| 1706 | if (size > PY_SSIZE_T_MAX) { |
| 1707 | PyErr_SetString(PyExc_OverflowError, "input too long"); |
| 1708 | return NULL; |
| 1709 | } |
| 1710 | |
| 1711 | return PyUnicode_FromStringAndSize(u, size); |
| 1712 | } |
| 1713 | |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 1714 | PyObject * |
| 1715 | _PyUnicode_FromId(_Py_Identifier *id) |
| 1716 | { |
| 1717 | if (!id->object) { |
| 1718 | id->object = PyUnicode_FromString(id->string); |
| 1719 | if (!id->object) |
| 1720 | return NULL; |
| 1721 | PyUnicode_InternInPlace(&id->object); |
| 1722 | assert(!id->next); |
| 1723 | id->next = static_strings; |
| 1724 | static_strings = id; |
| 1725 | } |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 1726 | return id->object; |
| 1727 | } |
| 1728 | |
| 1729 | void |
| 1730 | _PyUnicode_ClearStaticStrings() |
| 1731 | { |
| 1732 | _Py_Identifier *i; |
| 1733 | for (i = static_strings; i; i = i->next) { |
| 1734 | Py_DECREF(i->object); |
| 1735 | i->object = NULL; |
| 1736 | i->next = NULL; |
| 1737 | } |
| 1738 | } |
| 1739 | |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 1740 | static PyObject* |
Victor Stinner | 0617b6e | 2011-10-05 23:26:01 +0200 | [diff] [blame] | 1741 | unicode_fromascii(const unsigned char* s, Py_ssize_t size) |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 1742 | { |
Victor Stinner | 0617b6e | 2011-10-05 23:26:01 +0200 | [diff] [blame] | 1743 | PyObject *res; |
| 1744 | #ifdef Py_DEBUG |
| 1745 | const unsigned char *p; |
| 1746 | const unsigned char *end = s + size; |
| 1747 | for (p=s; p < end; p++) { |
| 1748 | assert(*p < 128); |
| 1749 | } |
| 1750 | #endif |
Antoine Pitrou | 7c46da7 | 2011-10-06 22:07:51 +0200 | [diff] [blame] | 1751 | if (size == 1) |
| 1752 | return get_latin1_char(s[0]); |
Victor Stinner | 0617b6e | 2011-10-05 23:26:01 +0200 | [diff] [blame] | 1753 | res = PyUnicode_New(size, 127); |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 1754 | if (!res) |
| 1755 | return NULL; |
Victor Stinner | 0617b6e | 2011-10-05 23:26:01 +0200 | [diff] [blame] | 1756 | memcpy(PyUnicode_1BYTE_DATA(res), s, size); |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 1757 | return res; |
| 1758 | } |
| 1759 | |
Victor Stinner | c80d6d2 | 2011-10-05 14:13:28 +0200 | [diff] [blame] | 1760 | static Py_UCS4 |
| 1761 | kind_maxchar_limit(unsigned int kind) |
| 1762 | { |
| 1763 | switch(kind) { |
| 1764 | case PyUnicode_1BYTE_KIND: |
| 1765 | return 0x80; |
| 1766 | case PyUnicode_2BYTE_KIND: |
| 1767 | return 0x100; |
| 1768 | case PyUnicode_4BYTE_KIND: |
| 1769 | return 0x10000; |
| 1770 | default: |
| 1771 | assert(0 && "invalid kind"); |
| 1772 | return 0x10ffff; |
| 1773 | } |
| 1774 | } |
| 1775 | |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 1776 | static PyObject* |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 1777 | _PyUnicode_FromUCS1(const unsigned char* u, Py_ssize_t size) |
Mark Dickinson | 081dfee | 2009-03-18 14:47:41 +0000 | [diff] [blame] | 1778 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1779 | PyObject *res; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1780 | unsigned char max_char = 127; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1781 | |
| 1782 | assert(size >= 0); |
Antoine Pitrou | 7c46da7 | 2011-10-06 22:07:51 +0200 | [diff] [blame] | 1783 | if (size == 1) |
| 1784 | return get_latin1_char(u[0]); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1785 | max_char = ucs1lib_find_max_char(u, u + size); |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1786 | res = PyUnicode_New(size, max_char); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1787 | if (!res) |
| 1788 | return NULL; |
| 1789 | memcpy(PyUnicode_1BYTE_DATA(res), u, size); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1790 | assert(_PyUnicode_CheckConsistency(res, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1791 | return res; |
Mark Dickinson | 081dfee | 2009-03-18 14:47:41 +0000 | [diff] [blame] | 1792 | } |
| 1793 | |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 1794 | static PyObject* |
| 1795 | _PyUnicode_FromUCS2(const Py_UCS2 *u, Py_ssize_t size) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1796 | { |
| 1797 | PyObject *res; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1798 | Py_UCS2 max_char = 0; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1799 | |
| 1800 | assert(size >= 0); |
Antoine Pitrou | 7c46da7 | 2011-10-06 22:07:51 +0200 | [diff] [blame] | 1801 | if (size == 1 && u[0] < 256) |
Victor Stinner | 4e10100 | 2011-10-11 23:27:52 +0200 | [diff] [blame] | 1802 | return get_latin1_char((unsigned char)u[0]); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1803 | max_char = ucs2lib_find_max_char(u, u + size); |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1804 | res = PyUnicode_New(size, max_char); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1805 | if (!res) |
| 1806 | return NULL; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1807 | if (max_char >= 256) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1808 | memcpy(PyUnicode_2BYTE_DATA(res), u, sizeof(Py_UCS2)*size); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1809 | else { |
| 1810 | _PyUnicode_CONVERT_BYTES( |
| 1811 | Py_UCS2, Py_UCS1, u, u + size, PyUnicode_1BYTE_DATA(res)); |
| 1812 | } |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1813 | assert(_PyUnicode_CheckConsistency(res, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1814 | return res; |
| 1815 | } |
| 1816 | |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 1817 | static PyObject* |
| 1818 | _PyUnicode_FromUCS4(const Py_UCS4 *u, Py_ssize_t size) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1819 | { |
| 1820 | PyObject *res; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1821 | Py_UCS4 max_char = 0; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1822 | |
| 1823 | assert(size >= 0); |
Antoine Pitrou | 7c46da7 | 2011-10-06 22:07:51 +0200 | [diff] [blame] | 1824 | if (size == 1 && u[0] < 256) |
| 1825 | return get_latin1_char(u[0]); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1826 | max_char = ucs4lib_find_max_char(u, u + size); |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1827 | res = PyUnicode_New(size, max_char); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1828 | if (!res) |
| 1829 | return NULL; |
Antoine Pitrou | 950468e | 2011-10-11 22:45:48 +0200 | [diff] [blame] | 1830 | if (max_char < 256) |
| 1831 | _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS1, u, u + size, |
| 1832 | PyUnicode_1BYTE_DATA(res)); |
| 1833 | else if (max_char < 0x10000) |
| 1834 | _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS2, u, u + size, |
| 1835 | PyUnicode_2BYTE_DATA(res)); |
| 1836 | else |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1837 | memcpy(PyUnicode_4BYTE_DATA(res), u, sizeof(Py_UCS4)*size); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1838 | assert(_PyUnicode_CheckConsistency(res, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1839 | return res; |
| 1840 | } |
| 1841 | |
| 1842 | PyObject* |
| 1843 | PyUnicode_FromKindAndData(int kind, const void *buffer, Py_ssize_t size) |
| 1844 | { |
| 1845 | switch(kind) { |
| 1846 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 1847 | return _PyUnicode_FromUCS1(buffer, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1848 | case PyUnicode_2BYTE_KIND: |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 1849 | return _PyUnicode_FromUCS2(buffer, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1850 | case PyUnicode_4BYTE_KIND: |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 1851 | return _PyUnicode_FromUCS4(buffer, size); |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1852 | default: |
| 1853 | assert(0 && "invalid kind"); |
| 1854 | PyErr_SetString(PyExc_SystemError, "invalid kind"); |
| 1855 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1856 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1857 | } |
| 1858 | |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 1859 | /* Ensure that a string uses the most efficient storage, if it is not the |
| 1860 | case: create a new string with of the right kind. Write NULL into *p_unicode |
| 1861 | on error. */ |
Antoine Pitrou | 53bb548 | 2011-10-10 23:49:24 +0200 | [diff] [blame] | 1862 | static void |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 1863 | unicode_adjust_maxchar(PyObject **p_unicode) |
| 1864 | { |
| 1865 | PyObject *unicode, *copy; |
| 1866 | Py_UCS4 max_char; |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1867 | Py_ssize_t len; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 1868 | unsigned int kind; |
| 1869 | |
| 1870 | assert(p_unicode != NULL); |
| 1871 | unicode = *p_unicode; |
| 1872 | assert(PyUnicode_IS_READY(unicode)); |
| 1873 | if (PyUnicode_IS_ASCII(unicode)) |
| 1874 | return; |
| 1875 | |
| 1876 | len = PyUnicode_GET_LENGTH(unicode); |
| 1877 | kind = PyUnicode_KIND(unicode); |
| 1878 | if (kind == PyUnicode_1BYTE_KIND) { |
| 1879 | const Py_UCS1 *u = PyUnicode_1BYTE_DATA(unicode); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1880 | max_char = ucs1lib_find_max_char(u, u + len); |
| 1881 | if (max_char >= 128) |
| 1882 | return; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 1883 | } |
| 1884 | else if (kind == PyUnicode_2BYTE_KIND) { |
| 1885 | const Py_UCS2 *u = PyUnicode_2BYTE_DATA(unicode); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1886 | max_char = ucs2lib_find_max_char(u, u + len); |
| 1887 | if (max_char >= 256) |
| 1888 | return; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 1889 | } |
| 1890 | else { |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1891 | const Py_UCS4 *u = PyUnicode_4BYTE_DATA(unicode); |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 1892 | assert(kind == PyUnicode_4BYTE_KIND); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1893 | max_char = ucs4lib_find_max_char(u, u + len); |
| 1894 | if (max_char >= 0x10000) |
| 1895 | return; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 1896 | } |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 1897 | copy = PyUnicode_New(len, max_char); |
| 1898 | copy_characters(copy, 0, unicode, 0, len); |
| 1899 | Py_DECREF(unicode); |
| 1900 | *p_unicode = copy; |
| 1901 | } |
| 1902 | |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 1903 | PyObject* |
| 1904 | PyUnicode_Copy(PyObject *unicode) |
| 1905 | { |
Victor Stinner | c841e7d | 2011-10-01 01:34:32 +0200 | [diff] [blame] | 1906 | Py_ssize_t size; |
| 1907 | PyObject *copy; |
| 1908 | void *data; |
| 1909 | |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 1910 | if (!PyUnicode_Check(unicode)) { |
| 1911 | PyErr_BadInternalCall(); |
| 1912 | return NULL; |
| 1913 | } |
| 1914 | if (PyUnicode_READY(unicode)) |
| 1915 | return NULL; |
Victor Stinner | c841e7d | 2011-10-01 01:34:32 +0200 | [diff] [blame] | 1916 | |
| 1917 | size = PyUnicode_GET_LENGTH(unicode); |
| 1918 | copy = PyUnicode_New(size, PyUnicode_MAX_CHAR_VALUE(unicode)); |
| 1919 | if (!copy) |
| 1920 | return NULL; |
| 1921 | assert(PyUnicode_KIND(copy) == PyUnicode_KIND(unicode)); |
| 1922 | |
| 1923 | data = PyUnicode_DATA(unicode); |
| 1924 | switch (PyUnicode_KIND(unicode)) |
| 1925 | { |
| 1926 | case PyUnicode_1BYTE_KIND: |
| 1927 | memcpy(PyUnicode_1BYTE_DATA(copy), data, size); |
| 1928 | break; |
| 1929 | case PyUnicode_2BYTE_KIND: |
| 1930 | memcpy(PyUnicode_2BYTE_DATA(copy), data, sizeof(Py_UCS2) * size); |
| 1931 | break; |
| 1932 | case PyUnicode_4BYTE_KIND: |
| 1933 | memcpy(PyUnicode_4BYTE_DATA(copy), data, sizeof(Py_UCS4) * size); |
| 1934 | break; |
| 1935 | default: |
| 1936 | assert(0); |
| 1937 | break; |
| 1938 | } |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1939 | assert(_PyUnicode_CheckConsistency(copy, 1)); |
Victor Stinner | c841e7d | 2011-10-01 01:34:32 +0200 | [diff] [blame] | 1940 | return copy; |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 1941 | } |
| 1942 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1943 | |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 1944 | /* Widen Unicode objects to larger buffers. Don't write terminating null |
| 1945 | character. Return NULL on error. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1946 | |
| 1947 | void* |
| 1948 | _PyUnicode_AsKind(PyObject *s, unsigned int kind) |
| 1949 | { |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 1950 | Py_ssize_t len; |
| 1951 | void *result; |
| 1952 | unsigned int skind; |
| 1953 | |
| 1954 | if (PyUnicode_READY(s)) |
| 1955 | return NULL; |
| 1956 | |
| 1957 | len = PyUnicode_GET_LENGTH(s); |
| 1958 | skind = PyUnicode_KIND(s); |
| 1959 | if (skind >= kind) { |
Victor Stinner | 0169804 | 2011-10-04 00:04:26 +0200 | [diff] [blame] | 1960 | PyErr_SetString(PyExc_SystemError, "invalid widening attempt"); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1961 | return NULL; |
| 1962 | } |
| 1963 | switch(kind) { |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 1964 | case PyUnicode_2BYTE_KIND: |
| 1965 | result = PyMem_Malloc(len * sizeof(Py_UCS2)); |
| 1966 | if (!result) |
| 1967 | return PyErr_NoMemory(); |
| 1968 | assert(skind == PyUnicode_1BYTE_KIND); |
| 1969 | _PyUnicode_CONVERT_BYTES( |
| 1970 | Py_UCS1, Py_UCS2, |
| 1971 | PyUnicode_1BYTE_DATA(s), |
| 1972 | PyUnicode_1BYTE_DATA(s) + len, |
| 1973 | result); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1974 | return result; |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 1975 | case PyUnicode_4BYTE_KIND: |
| 1976 | result = PyMem_Malloc(len * sizeof(Py_UCS4)); |
| 1977 | if (!result) |
| 1978 | return PyErr_NoMemory(); |
| 1979 | if (skind == PyUnicode_2BYTE_KIND) { |
| 1980 | _PyUnicode_CONVERT_BYTES( |
| 1981 | Py_UCS2, Py_UCS4, |
| 1982 | PyUnicode_2BYTE_DATA(s), |
| 1983 | PyUnicode_2BYTE_DATA(s) + len, |
| 1984 | result); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1985 | } |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 1986 | else { |
| 1987 | assert(skind == PyUnicode_1BYTE_KIND); |
| 1988 | _PyUnicode_CONVERT_BYTES( |
| 1989 | Py_UCS1, Py_UCS4, |
| 1990 | PyUnicode_1BYTE_DATA(s), |
| 1991 | PyUnicode_1BYTE_DATA(s) + len, |
| 1992 | result); |
| 1993 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1994 | return result; |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 1995 | default: |
| 1996 | break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1997 | } |
Victor Stinner | 0169804 | 2011-10-04 00:04:26 +0200 | [diff] [blame] | 1998 | PyErr_SetString(PyExc_SystemError, "invalid kind"); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1999 | return NULL; |
| 2000 | } |
| 2001 | |
| 2002 | static Py_UCS4* |
| 2003 | as_ucs4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize, |
| 2004 | int copy_null) |
| 2005 | { |
| 2006 | int kind; |
| 2007 | void *data; |
| 2008 | Py_ssize_t len, targetlen; |
| 2009 | if (PyUnicode_READY(string) == -1) |
| 2010 | return NULL; |
| 2011 | kind = PyUnicode_KIND(string); |
| 2012 | data = PyUnicode_DATA(string); |
| 2013 | len = PyUnicode_GET_LENGTH(string); |
| 2014 | targetlen = len; |
| 2015 | if (copy_null) |
| 2016 | targetlen++; |
| 2017 | if (!target) { |
| 2018 | if (PY_SSIZE_T_MAX / sizeof(Py_UCS4) < targetlen) { |
| 2019 | PyErr_NoMemory(); |
| 2020 | return NULL; |
| 2021 | } |
| 2022 | target = PyMem_Malloc(targetlen * sizeof(Py_UCS4)); |
| 2023 | if (!target) { |
| 2024 | PyErr_NoMemory(); |
| 2025 | return NULL; |
| 2026 | } |
| 2027 | } |
| 2028 | else { |
| 2029 | if (targetsize < targetlen) { |
| 2030 | PyErr_Format(PyExc_SystemError, |
| 2031 | "string is longer than the buffer"); |
| 2032 | if (copy_null && 0 < targetsize) |
| 2033 | target[0] = 0; |
| 2034 | return NULL; |
| 2035 | } |
| 2036 | } |
Antoine Pitrou | 950468e | 2011-10-11 22:45:48 +0200 | [diff] [blame] | 2037 | if (kind == PyUnicode_1BYTE_KIND) { |
| 2038 | Py_UCS1 *start = (Py_UCS1 *) data; |
| 2039 | _PyUnicode_CONVERT_BYTES(Py_UCS1, Py_UCS4, start, start + len, target); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2040 | } |
Antoine Pitrou | 950468e | 2011-10-11 22:45:48 +0200 | [diff] [blame] | 2041 | else if (kind == PyUnicode_2BYTE_KIND) { |
| 2042 | Py_UCS2 *start = (Py_UCS2 *) data; |
| 2043 | _PyUnicode_CONVERT_BYTES(Py_UCS2, Py_UCS4, start, start + len, target); |
| 2044 | } |
| 2045 | else { |
| 2046 | assert(kind == PyUnicode_4BYTE_KIND); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2047 | Py_MEMCPY(target, data, len * sizeof(Py_UCS4)); |
Antoine Pitrou | 950468e | 2011-10-11 22:45:48 +0200 | [diff] [blame] | 2048 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2049 | if (copy_null) |
| 2050 | target[len] = 0; |
| 2051 | return target; |
| 2052 | } |
| 2053 | |
| 2054 | Py_UCS4* |
| 2055 | PyUnicode_AsUCS4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize, |
| 2056 | int copy_null) |
| 2057 | { |
Antoine Pitrou | de20b0b | 2011-11-10 21:47:38 +0100 | [diff] [blame] | 2058 | if (target == NULL || targetsize < 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2059 | PyErr_BadInternalCall(); |
| 2060 | return NULL; |
| 2061 | } |
| 2062 | return as_ucs4(string, target, targetsize, copy_null); |
| 2063 | } |
| 2064 | |
| 2065 | Py_UCS4* |
| 2066 | PyUnicode_AsUCS4Copy(PyObject *string) |
| 2067 | { |
| 2068 | return as_ucs4(string, NULL, 0, 1); |
| 2069 | } |
| 2070 | |
| 2071 | #ifdef HAVE_WCHAR_H |
Mark Dickinson | 081dfee | 2009-03-18 14:47:41 +0000 | [diff] [blame] | 2072 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2073 | PyObject * |
| 2074 | PyUnicode_FromWideChar(register const wchar_t *w, Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2075 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2076 | if (w == NULL) { |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 2077 | if (size == 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2078 | return PyUnicode_New(0, 0); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2079 | PyErr_BadInternalCall(); |
| 2080 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2081 | } |
| 2082 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 2083 | if (size == -1) { |
| 2084 | size = wcslen(w); |
| 2085 | } |
| 2086 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2087 | return PyUnicode_FromUnicode(w, size); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2088 | } |
| 2089 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2090 | #endif /* HAVE_WCHAR_H */ |
Mark Dickinson | 081dfee | 2009-03-18 14:47:41 +0000 | [diff] [blame] | 2091 | |
Walter Dörwald | 346737f | 2007-05-31 10:44:43 +0000 | [diff] [blame] | 2092 | static void |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2093 | makefmt(char *fmt, int longflag, int longlongflag, int size_tflag, |
| 2094 | int zeropad, int width, int precision, char c) |
Walter Dörwald | 346737f | 2007-05-31 10:44:43 +0000 | [diff] [blame] | 2095 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2096 | *fmt++ = '%'; |
| 2097 | if (width) { |
| 2098 | if (zeropad) |
| 2099 | *fmt++ = '0'; |
| 2100 | fmt += sprintf(fmt, "%d", width); |
| 2101 | } |
| 2102 | if (precision) |
| 2103 | fmt += sprintf(fmt, ".%d", precision); |
| 2104 | if (longflag) |
| 2105 | *fmt++ = 'l'; |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2106 | else if (longlongflag) { |
| 2107 | /* longlongflag should only ever be nonzero on machines with |
| 2108 | HAVE_LONG_LONG defined */ |
| 2109 | #ifdef HAVE_LONG_LONG |
| 2110 | char *f = PY_FORMAT_LONG_LONG; |
| 2111 | while (*f) |
| 2112 | *fmt++ = *f++; |
| 2113 | #else |
| 2114 | /* we shouldn't ever get here */ |
| 2115 | assert(0); |
| 2116 | *fmt++ = 'l'; |
| 2117 | #endif |
| 2118 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2119 | else if (size_tflag) { |
| 2120 | char *f = PY_FORMAT_SIZE_T; |
| 2121 | while (*f) |
| 2122 | *fmt++ = *f++; |
| 2123 | } |
| 2124 | *fmt++ = c; |
| 2125 | *fmt = '\0'; |
Walter Dörwald | 346737f | 2007-05-31 10:44:43 +0000 | [diff] [blame] | 2126 | } |
| 2127 | |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2128 | /* helper for PyUnicode_FromFormatV() */ |
| 2129 | |
| 2130 | static const char* |
| 2131 | parse_format_flags(const char *f, |
| 2132 | int *p_width, int *p_precision, |
| 2133 | int *p_longflag, int *p_longlongflag, int *p_size_tflag) |
| 2134 | { |
| 2135 | int width, precision, longflag, longlongflag, size_tflag; |
| 2136 | |
| 2137 | /* parse the width.precision part, e.g. "%2.5s" => width=2, precision=5 */ |
| 2138 | f++; |
| 2139 | width = 0; |
| 2140 | while (Py_ISDIGIT((unsigned)*f)) |
| 2141 | width = (width*10) + *f++ - '0'; |
| 2142 | precision = 0; |
| 2143 | if (*f == '.') { |
| 2144 | f++; |
| 2145 | while (Py_ISDIGIT((unsigned)*f)) |
| 2146 | precision = (precision*10) + *f++ - '0'; |
| 2147 | if (*f == '%') { |
| 2148 | /* "%.3%s" => f points to "3" */ |
| 2149 | f--; |
| 2150 | } |
| 2151 | } |
| 2152 | if (*f == '\0') { |
| 2153 | /* bogus format "%.1" => go backward, f points to "1" */ |
| 2154 | f--; |
| 2155 | } |
| 2156 | if (p_width != NULL) |
| 2157 | *p_width = width; |
| 2158 | if (p_precision != NULL) |
| 2159 | *p_precision = precision; |
| 2160 | |
| 2161 | /* Handle %ld, %lu, %lld and %llu. */ |
| 2162 | longflag = 0; |
| 2163 | longlongflag = 0; |
Victor Stinner | e7faec1 | 2011-03-02 00:01:53 +0000 | [diff] [blame] | 2164 | size_tflag = 0; |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2165 | |
| 2166 | if (*f == 'l') { |
Victor Stinner | 6d970f4 | 2011-03-02 00:04:25 +0000 | [diff] [blame] | 2167 | if (f[1] == 'd' || f[1] == 'u' || f[1] == 'i') { |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2168 | longflag = 1; |
| 2169 | ++f; |
| 2170 | } |
| 2171 | #ifdef HAVE_LONG_LONG |
| 2172 | else if (f[1] == 'l' && |
Victor Stinner | 6d970f4 | 2011-03-02 00:04:25 +0000 | [diff] [blame] | 2173 | (f[2] == 'd' || f[2] == 'u' || f[2] == 'i')) { |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2174 | longlongflag = 1; |
| 2175 | f += 2; |
| 2176 | } |
| 2177 | #endif |
| 2178 | } |
| 2179 | /* handle the size_t flag. */ |
Victor Stinner | 6d970f4 | 2011-03-02 00:04:25 +0000 | [diff] [blame] | 2180 | else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u' || f[1] == 'i')) { |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2181 | size_tflag = 1; |
| 2182 | ++f; |
| 2183 | } |
| 2184 | if (p_longflag != NULL) |
| 2185 | *p_longflag = longflag; |
| 2186 | if (p_longlongflag != NULL) |
| 2187 | *p_longlongflag = longlongflag; |
| 2188 | if (p_size_tflag != NULL) |
| 2189 | *p_size_tflag = size_tflag; |
| 2190 | return f; |
| 2191 | } |
| 2192 | |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2193 | /* maximum number of characters required for output of %ld. 21 characters |
| 2194 | allows for 64-bit integers (in decimal) and an optional sign. */ |
| 2195 | #define MAX_LONG_CHARS 21 |
| 2196 | /* maximum number of characters required for output of %lld. |
| 2197 | We need at most ceil(log10(256)*SIZEOF_LONG_LONG) digits, |
| 2198 | plus 1 for the sign. 53/22 is an upper bound for log10(256). */ |
| 2199 | #define MAX_LONG_LONG_CHARS (2 + (SIZEOF_LONG_LONG*53-1) / 22) |
| 2200 | |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2201 | PyObject * |
| 2202 | PyUnicode_FromFormatV(const char *format, va_list vargs) |
| 2203 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2204 | va_list count; |
| 2205 | Py_ssize_t callcount = 0; |
| 2206 | PyObject **callresults = NULL; |
| 2207 | PyObject **callresult = NULL; |
| 2208 | Py_ssize_t n = 0; |
| 2209 | int width = 0; |
| 2210 | int precision = 0; |
| 2211 | int zeropad; |
| 2212 | const char* f; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2213 | PyObject *string; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2214 | /* used by sprintf */ |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2215 | char fmt[61]; /* should be enough for %0width.precisionlld */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2216 | Py_UCS4 maxchar = 127; /* result is ASCII by default */ |
| 2217 | Py_UCS4 argmaxchar; |
| 2218 | Py_ssize_t numbersize = 0; |
| 2219 | char *numberresults = NULL; |
| 2220 | char *numberresult = NULL; |
| 2221 | Py_ssize_t i; |
| 2222 | int kind; |
| 2223 | void *data; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2224 | |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 2225 | Py_VA_COPY(count, vargs); |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2226 | /* step 1: count the number of %S/%R/%A/%s format specifications |
| 2227 | * (we call PyObject_Str()/PyObject_Repr()/PyObject_ASCII()/ |
| 2228 | * PyUnicode_DecodeUTF8() for these objects once during step 3 and put the |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2229 | * result in an array) |
Georg Brandl | 7597add | 2011-10-05 16:36:47 +0200 | [diff] [blame] | 2230 | * also estimate a upper bound for all the number formats in the string, |
| 2231 | * numbers will be formatted in step 3 and be kept in a '\0'-separated |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2232 | * buffer before putting everything together. */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2233 | for (f = format; *f; f++) { |
| 2234 | if (*f == '%') { |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2235 | int longlongflag; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2236 | /* skip width or width.precision (eg. "1.2" of "%1.2f") */ |
| 2237 | f = parse_format_flags(f, &width, NULL, NULL, &longlongflag, NULL); |
| 2238 | if (*f == 's' || *f=='S' || *f=='R' || *f=='A' || *f=='V') |
| 2239 | ++callcount; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2240 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2241 | else if (*f == 'd' || *f=='u' || *f=='i' || *f=='x' || *f=='p') { |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2242 | #ifdef HAVE_LONG_LONG |
| 2243 | if (longlongflag) { |
| 2244 | if (width < MAX_LONG_LONG_CHARS) |
| 2245 | width = MAX_LONG_LONG_CHARS; |
| 2246 | } |
| 2247 | else |
| 2248 | #endif |
| 2249 | /* MAX_LONG_CHARS is enough to hold a 64-bit integer, |
| 2250 | including sign. Decimal takes the most space. This |
| 2251 | isn't enough for octal. If a width is specified we |
| 2252 | need more (which we allocate later). */ |
| 2253 | if (width < MAX_LONG_CHARS) |
| 2254 | width = MAX_LONG_CHARS; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2255 | |
| 2256 | /* account for the size + '\0' to separate numbers |
| 2257 | inside of the numberresults buffer */ |
| 2258 | numbersize += (width + 1); |
| 2259 | } |
| 2260 | } |
| 2261 | else if ((unsigned char)*f > 127) { |
| 2262 | PyErr_Format(PyExc_ValueError, |
| 2263 | "PyUnicode_FromFormatV() expects an ASCII-encoded format " |
| 2264 | "string, got a non-ASCII byte: 0x%02x", |
| 2265 | (unsigned char)*f); |
| 2266 | return NULL; |
| 2267 | } |
| 2268 | } |
| 2269 | /* step 2: allocate memory for the results of |
| 2270 | * PyObject_Str()/PyObject_Repr()/PyUnicode_DecodeUTF8() calls */ |
| 2271 | if (callcount) { |
| 2272 | callresults = PyObject_Malloc(sizeof(PyObject *) * callcount); |
| 2273 | if (!callresults) { |
| 2274 | PyErr_NoMemory(); |
| 2275 | return NULL; |
| 2276 | } |
| 2277 | callresult = callresults; |
| 2278 | } |
| 2279 | /* step 2.5: allocate memory for the results of formating numbers */ |
| 2280 | if (numbersize) { |
| 2281 | numberresults = PyObject_Malloc(numbersize); |
| 2282 | if (!numberresults) { |
| 2283 | PyErr_NoMemory(); |
| 2284 | goto fail; |
| 2285 | } |
| 2286 | numberresult = numberresults; |
| 2287 | } |
| 2288 | |
| 2289 | /* step 3: format numbers and figure out how large a buffer we need */ |
| 2290 | for (f = format; *f; f++) { |
| 2291 | if (*f == '%') { |
| 2292 | const char* p; |
| 2293 | int longflag; |
| 2294 | int longlongflag; |
| 2295 | int size_tflag; |
| 2296 | int numprinted; |
| 2297 | |
| 2298 | p = f; |
| 2299 | zeropad = (f[1] == '0'); |
| 2300 | f = parse_format_flags(f, &width, &precision, |
| 2301 | &longflag, &longlongflag, &size_tflag); |
| 2302 | switch (*f) { |
| 2303 | case 'c': |
| 2304 | { |
| 2305 | Py_UCS4 ordinal = va_arg(count, int); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 2306 | maxchar = Py_MAX(maxchar, ordinal); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2307 | n++; |
| 2308 | break; |
| 2309 | } |
| 2310 | case '%': |
| 2311 | n++; |
| 2312 | break; |
| 2313 | case 'i': |
| 2314 | case 'd': |
| 2315 | makefmt(fmt, longflag, longlongflag, size_tflag, zeropad, |
| 2316 | width, precision, *f); |
| 2317 | if (longflag) |
| 2318 | numprinted = sprintf(numberresult, fmt, |
| 2319 | va_arg(count, long)); |
| 2320 | #ifdef HAVE_LONG_LONG |
| 2321 | else if (longlongflag) |
| 2322 | numprinted = sprintf(numberresult, fmt, |
| 2323 | va_arg(count, PY_LONG_LONG)); |
| 2324 | #endif |
| 2325 | else if (size_tflag) |
| 2326 | numprinted = sprintf(numberresult, fmt, |
| 2327 | va_arg(count, Py_ssize_t)); |
| 2328 | else |
| 2329 | numprinted = sprintf(numberresult, fmt, |
| 2330 | va_arg(count, int)); |
| 2331 | n += numprinted; |
| 2332 | /* advance by +1 to skip over the '\0' */ |
| 2333 | numberresult += (numprinted + 1); |
| 2334 | assert(*(numberresult - 1) == '\0'); |
| 2335 | assert(*(numberresult - 2) != '\0'); |
| 2336 | assert(numprinted >= 0); |
| 2337 | assert(numberresult <= numberresults + numbersize); |
| 2338 | break; |
| 2339 | case 'u': |
| 2340 | makefmt(fmt, longflag, longlongflag, size_tflag, zeropad, |
| 2341 | width, precision, 'u'); |
| 2342 | if (longflag) |
| 2343 | numprinted = sprintf(numberresult, fmt, |
| 2344 | va_arg(count, unsigned long)); |
| 2345 | #ifdef HAVE_LONG_LONG |
| 2346 | else if (longlongflag) |
| 2347 | numprinted = sprintf(numberresult, fmt, |
| 2348 | va_arg(count, unsigned PY_LONG_LONG)); |
| 2349 | #endif |
| 2350 | else if (size_tflag) |
| 2351 | numprinted = sprintf(numberresult, fmt, |
| 2352 | va_arg(count, size_t)); |
| 2353 | else |
| 2354 | numprinted = sprintf(numberresult, fmt, |
| 2355 | va_arg(count, unsigned int)); |
| 2356 | n += numprinted; |
| 2357 | numberresult += (numprinted + 1); |
| 2358 | assert(*(numberresult - 1) == '\0'); |
| 2359 | assert(*(numberresult - 2) != '\0'); |
| 2360 | assert(numprinted >= 0); |
| 2361 | assert(numberresult <= numberresults + numbersize); |
| 2362 | break; |
| 2363 | case 'x': |
| 2364 | makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'x'); |
| 2365 | numprinted = sprintf(numberresult, fmt, va_arg(count, int)); |
| 2366 | n += numprinted; |
| 2367 | numberresult += (numprinted + 1); |
| 2368 | assert(*(numberresult - 1) == '\0'); |
| 2369 | assert(*(numberresult - 2) != '\0'); |
| 2370 | assert(numprinted >= 0); |
| 2371 | assert(numberresult <= numberresults + numbersize); |
| 2372 | break; |
| 2373 | case 'p': |
| 2374 | numprinted = sprintf(numberresult, "%p", va_arg(count, void*)); |
| 2375 | /* %p is ill-defined: ensure leading 0x. */ |
| 2376 | if (numberresult[1] == 'X') |
| 2377 | numberresult[1] = 'x'; |
| 2378 | else if (numberresult[1] != 'x') { |
| 2379 | memmove(numberresult + 2, numberresult, |
| 2380 | strlen(numberresult) + 1); |
| 2381 | numberresult[0] = '0'; |
| 2382 | numberresult[1] = 'x'; |
| 2383 | numprinted += 2; |
| 2384 | } |
| 2385 | n += numprinted; |
| 2386 | numberresult += (numprinted + 1); |
| 2387 | assert(*(numberresult - 1) == '\0'); |
| 2388 | assert(*(numberresult - 2) != '\0'); |
| 2389 | assert(numprinted >= 0); |
| 2390 | assert(numberresult <= numberresults + numbersize); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2391 | break; |
| 2392 | case 's': |
| 2393 | { |
| 2394 | /* UTF-8 */ |
Georg Brandl | 780b2a6 | 2009-05-05 09:19:59 +0000 | [diff] [blame] | 2395 | const char *s = va_arg(count, const char*); |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2396 | PyObject *str = PyUnicode_DecodeUTF8(s, strlen(s), "replace"); |
| 2397 | if (!str) |
| 2398 | goto fail; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2399 | /* since PyUnicode_DecodeUTF8 returns already flexible |
| 2400 | unicode objects, there is no need to call ready on them */ |
| 2401 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(str); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 2402 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2403 | n += PyUnicode_GET_LENGTH(str); |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2404 | /* Remember the str and switch to the next slot */ |
| 2405 | *callresult++ = str; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2406 | break; |
| 2407 | } |
| 2408 | case 'U': |
| 2409 | { |
| 2410 | PyObject *obj = va_arg(count, PyObject *); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 2411 | assert(obj && _PyUnicode_CHECK(obj)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2412 | if (PyUnicode_READY(obj) == -1) |
| 2413 | goto fail; |
| 2414 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(obj); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 2415 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2416 | n += PyUnicode_GET_LENGTH(obj); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2417 | break; |
| 2418 | } |
| 2419 | case 'V': |
| 2420 | { |
| 2421 | PyObject *obj = va_arg(count, PyObject *); |
| 2422 | const char *str = va_arg(count, const char *); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2423 | PyObject *str_obj; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2424 | assert(obj || str); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 2425 | assert(!obj || _PyUnicode_CHECK(obj)); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2426 | if (obj) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2427 | if (PyUnicode_READY(obj) == -1) |
| 2428 | goto fail; |
| 2429 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(obj); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 2430 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2431 | n += PyUnicode_GET_LENGTH(obj); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2432 | *callresult++ = NULL; |
| 2433 | } |
| 2434 | else { |
| 2435 | str_obj = PyUnicode_DecodeUTF8(str, strlen(str), "replace"); |
| 2436 | if (!str_obj) |
| 2437 | goto fail; |
Victor Stinner | e1335c7 | 2011-10-04 20:53:03 +0200 | [diff] [blame] | 2438 | if (PyUnicode_READY(str_obj)) { |
| 2439 | Py_DECREF(str_obj); |
| 2440 | goto fail; |
| 2441 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2442 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(str_obj); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 2443 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2444 | n += PyUnicode_GET_LENGTH(str_obj); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2445 | *callresult++ = str_obj; |
| 2446 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2447 | break; |
| 2448 | } |
| 2449 | case 'S': |
| 2450 | { |
| 2451 | PyObject *obj = va_arg(count, PyObject *); |
| 2452 | PyObject *str; |
| 2453 | assert(obj); |
| 2454 | str = PyObject_Str(obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2455 | if (!str || PyUnicode_READY(str) == -1) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2456 | goto fail; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2457 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(str); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 2458 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2459 | n += PyUnicode_GET_LENGTH(str); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2460 | /* Remember the str and switch to the next slot */ |
| 2461 | *callresult++ = str; |
| 2462 | break; |
| 2463 | } |
| 2464 | case 'R': |
| 2465 | { |
| 2466 | PyObject *obj = va_arg(count, PyObject *); |
| 2467 | PyObject *repr; |
| 2468 | assert(obj); |
| 2469 | repr = PyObject_Repr(obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2470 | if (!repr || PyUnicode_READY(repr) == -1) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2471 | goto fail; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2472 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(repr); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 2473 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2474 | n += PyUnicode_GET_LENGTH(repr); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2475 | /* Remember the repr and switch to the next slot */ |
| 2476 | *callresult++ = repr; |
| 2477 | break; |
| 2478 | } |
| 2479 | case 'A': |
| 2480 | { |
| 2481 | PyObject *obj = va_arg(count, PyObject *); |
| 2482 | PyObject *ascii; |
| 2483 | assert(obj); |
| 2484 | ascii = PyObject_ASCII(obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2485 | if (!ascii || PyUnicode_READY(ascii) == -1) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2486 | goto fail; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2487 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(ascii); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 2488 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2489 | n += PyUnicode_GET_LENGTH(ascii); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2490 | /* Remember the repr and switch to the next slot */ |
| 2491 | *callresult++ = ascii; |
| 2492 | break; |
| 2493 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2494 | default: |
| 2495 | /* if we stumble upon an unknown |
| 2496 | formatting code, copy the rest of |
| 2497 | the format string to the output |
| 2498 | string. (we cannot just skip the |
| 2499 | code, since there's no way to know |
| 2500 | what's in the argument list) */ |
| 2501 | n += strlen(p); |
| 2502 | goto expand; |
| 2503 | } |
| 2504 | } else |
| 2505 | n++; |
| 2506 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2507 | expand: |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2508 | /* step 4: fill the buffer */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2509 | /* Since we've analyzed how much space we need, |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2510 | we don't have to resize the string. |
| 2511 | There can be no errors beyond this point. */ |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2512 | string = PyUnicode_New(n, maxchar); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2513 | if (!string) |
| 2514 | goto fail; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2515 | kind = PyUnicode_KIND(string); |
| 2516 | data = PyUnicode_DATA(string); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2517 | callresult = callresults; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2518 | numberresult = numberresults; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2519 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2520 | for (i = 0, f = format; *f; f++) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2521 | if (*f == '%') { |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2522 | const char* p; |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2523 | |
| 2524 | p = f; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2525 | f = parse_format_flags(f, NULL, NULL, NULL, NULL, NULL); |
| 2526 | /* checking for == because the last argument could be a empty |
| 2527 | string, which causes i to point to end, the assert at the end of |
| 2528 | the loop */ |
| 2529 | assert(i <= PyUnicode_GET_LENGTH(string)); |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2530 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2531 | switch (*f) { |
| 2532 | case 'c': |
Victor Stinner | 5ed8b2c | 2011-02-21 21:13:44 +0000 | [diff] [blame] | 2533 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2534 | const int ordinal = va_arg(vargs, int); |
| 2535 | PyUnicode_WRITE(kind, data, i++, ordinal); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2536 | break; |
Victor Stinner | 5ed8b2c | 2011-02-21 21:13:44 +0000 | [diff] [blame] | 2537 | } |
Victor Stinner | 6d970f4 | 2011-03-02 00:04:25 +0000 | [diff] [blame] | 2538 | case 'i': |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2539 | case 'd': |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2540 | case 'u': |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2541 | case 'x': |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2542 | case 'p': |
| 2543 | /* unused, since we already have the result */ |
| 2544 | if (*f == 'p') |
| 2545 | (void) va_arg(vargs, void *); |
| 2546 | else |
| 2547 | (void) va_arg(vargs, int); |
| 2548 | /* extract the result from numberresults and append. */ |
| 2549 | for (; *numberresult; ++i, ++numberresult) |
| 2550 | PyUnicode_WRITE(kind, data, i, *numberresult); |
| 2551 | /* skip over the separating '\0' */ |
| 2552 | assert(*numberresult == '\0'); |
| 2553 | numberresult++; |
| 2554 | assert(numberresult <= numberresults + numbersize); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2555 | break; |
| 2556 | case 's': |
| 2557 | { |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2558 | /* unused, since we already have the result */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2559 | Py_ssize_t size; |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2560 | (void) va_arg(vargs, char *); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2561 | size = PyUnicode_GET_LENGTH(*callresult); |
| 2562 | assert(PyUnicode_KIND(*callresult) <= PyUnicode_KIND(string)); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2563 | copy_characters(string, i, *callresult, 0, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2564 | i += size; |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2565 | /* We're done with the unicode()/repr() => forget it */ |
| 2566 | Py_DECREF(*callresult); |
| 2567 | /* switch to next unicode()/repr() result */ |
| 2568 | ++callresult; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2569 | break; |
| 2570 | } |
| 2571 | case 'U': |
| 2572 | { |
| 2573 | PyObject *obj = va_arg(vargs, PyObject *); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2574 | Py_ssize_t size; |
| 2575 | assert(PyUnicode_KIND(obj) <= PyUnicode_KIND(string)); |
| 2576 | size = PyUnicode_GET_LENGTH(obj); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2577 | copy_characters(string, i, obj, 0, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2578 | i += size; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2579 | break; |
| 2580 | } |
| 2581 | case 'V': |
| 2582 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2583 | Py_ssize_t size; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2584 | PyObject *obj = va_arg(vargs, PyObject *); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2585 | va_arg(vargs, const char *); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2586 | if (obj) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2587 | size = PyUnicode_GET_LENGTH(obj); |
| 2588 | assert(PyUnicode_KIND(obj) <= PyUnicode_KIND(string)); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2589 | copy_characters(string, i, obj, 0, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2590 | i += size; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2591 | } else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2592 | size = PyUnicode_GET_LENGTH(*callresult); |
| 2593 | assert(PyUnicode_KIND(*callresult) <= |
| 2594 | PyUnicode_KIND(string)); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2595 | copy_characters(string, i, *callresult, 0, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2596 | i += size; |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2597 | Py_DECREF(*callresult); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2598 | } |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2599 | ++callresult; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2600 | break; |
| 2601 | } |
| 2602 | case 'S': |
| 2603 | case 'R': |
Victor Stinner | 9a90900 | 2010-10-18 20:59:24 +0000 | [diff] [blame] | 2604 | case 'A': |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2605 | { |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2606 | Py_ssize_t size = PyUnicode_GET_LENGTH(*callresult); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2607 | /* unused, since we already have the result */ |
| 2608 | (void) va_arg(vargs, PyObject *); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2609 | assert(PyUnicode_KIND(*callresult) <= PyUnicode_KIND(string)); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2610 | copy_characters(string, i, *callresult, 0, size); |
| 2611 | i += size; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2612 | /* We're done with the unicode()/repr() => forget it */ |
| 2613 | Py_DECREF(*callresult); |
| 2614 | /* switch to next unicode()/repr() result */ |
| 2615 | ++callresult; |
| 2616 | break; |
| 2617 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2618 | case '%': |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2619 | PyUnicode_WRITE(kind, data, i++, '%'); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2620 | break; |
| 2621 | default: |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2622 | for (; *p; ++p, ++i) |
| 2623 | PyUnicode_WRITE(kind, data, i, *p); |
| 2624 | assert(i == PyUnicode_GET_LENGTH(string)); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2625 | goto end; |
| 2626 | } |
Victor Stinner | 1205f27 | 2010-09-11 00:54:47 +0000 | [diff] [blame] | 2627 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2628 | else { |
| 2629 | assert(i < PyUnicode_GET_LENGTH(string)); |
| 2630 | PyUnicode_WRITE(kind, data, i++, *f); |
| 2631 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2632 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2633 | assert(i == PyUnicode_GET_LENGTH(string)); |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2634 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2635 | end: |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2636 | if (callresults) |
| 2637 | PyObject_Free(callresults); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2638 | if (numberresults) |
| 2639 | PyObject_Free(numberresults); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 2640 | assert(_PyUnicode_CheckConsistency(string, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 2641 | return string; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2642 | fail: |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2643 | if (callresults) { |
| 2644 | PyObject **callresult2 = callresults; |
| 2645 | while (callresult2 < callresult) { |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2646 | Py_XDECREF(*callresult2); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2647 | ++callresult2; |
| 2648 | } |
| 2649 | PyObject_Free(callresults); |
| 2650 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2651 | if (numberresults) |
| 2652 | PyObject_Free(numberresults); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2653 | return NULL; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2654 | } |
| 2655 | |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2656 | PyObject * |
| 2657 | PyUnicode_FromFormat(const char *format, ...) |
| 2658 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2659 | PyObject* ret; |
| 2660 | va_list vargs; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2661 | |
| 2662 | #ifdef HAVE_STDARG_PROTOTYPES |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2663 | va_start(vargs, format); |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2664 | #else |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2665 | va_start(vargs); |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2666 | #endif |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2667 | ret = PyUnicode_FromFormatV(format, vargs); |
| 2668 | va_end(vargs); |
| 2669 | return ret; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2670 | } |
| 2671 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2672 | #ifdef HAVE_WCHAR_H |
| 2673 | |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2674 | /* Helper function for PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(): |
| 2675 | convert a Unicode object to a wide character string. |
| 2676 | |
Victor Stinner | d88d983 | 2011-09-06 02:00:05 +0200 | [diff] [blame] | 2677 | - If w is NULL: return the number of wide characters (including the null |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2678 | character) required to convert the unicode object. Ignore size argument. |
| 2679 | |
Victor Stinner | d88d983 | 2011-09-06 02:00:05 +0200 | [diff] [blame] | 2680 | - Otherwise: return the number of wide characters (excluding the null |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2681 | character) written into w. Write at most size wide characters (including |
Victor Stinner | d88d983 | 2011-09-06 02:00:05 +0200 | [diff] [blame] | 2682 | the null character). */ |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2683 | static Py_ssize_t |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2684 | unicode_aswidechar(PyObject *unicode, |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2685 | wchar_t *w, |
| 2686 | Py_ssize_t size) |
| 2687 | { |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2688 | Py_ssize_t res; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2689 | const wchar_t *wstr; |
| 2690 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2691 | wstr = PyUnicode_AsUnicodeAndSize(unicode, &res); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2692 | if (wstr == NULL) |
| 2693 | return -1; |
| 2694 | |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2695 | if (w != NULL) { |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2696 | if (size > res) |
| 2697 | size = res + 1; |
| 2698 | else |
| 2699 | res = size; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2700 | Py_MEMCPY(w, wstr, size * sizeof(wchar_t)); |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2701 | return res; |
| 2702 | } |
| 2703 | else |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2704 | return res + 1; |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2705 | } |
| 2706 | |
| 2707 | Py_ssize_t |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 2708 | PyUnicode_AsWideChar(PyObject *unicode, |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2709 | wchar_t *w, |
| 2710 | Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2711 | { |
| 2712 | if (unicode == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2713 | PyErr_BadInternalCall(); |
| 2714 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2715 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2716 | return unicode_aswidechar(unicode, w, size); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2717 | } |
| 2718 | |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2719 | wchar_t* |
Victor Stinner | beb4135b | 2010-10-07 01:02:42 +0000 | [diff] [blame] | 2720 | PyUnicode_AsWideCharString(PyObject *unicode, |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2721 | Py_ssize_t *size) |
| 2722 | { |
| 2723 | wchar_t* buffer; |
| 2724 | Py_ssize_t buflen; |
| 2725 | |
| 2726 | if (unicode == NULL) { |
| 2727 | PyErr_BadInternalCall(); |
| 2728 | return NULL; |
| 2729 | } |
| 2730 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2731 | buflen = unicode_aswidechar(unicode, NULL, 0); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2732 | if (buflen == -1) |
| 2733 | return NULL; |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2734 | if (PY_SSIZE_T_MAX / sizeof(wchar_t) < buflen) { |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2735 | PyErr_NoMemory(); |
| 2736 | return NULL; |
| 2737 | } |
| 2738 | |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2739 | buffer = PyMem_MALLOC(buflen * sizeof(wchar_t)); |
| 2740 | if (buffer == NULL) { |
| 2741 | PyErr_NoMemory(); |
| 2742 | return NULL; |
| 2743 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2744 | buflen = unicode_aswidechar(unicode, buffer, buflen); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2745 | if (buflen == -1) |
| 2746 | return NULL; |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2747 | if (size != NULL) |
| 2748 | *size = buflen; |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2749 | return buffer; |
| 2750 | } |
| 2751 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2752 | #endif /* HAVE_WCHAR_H */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2753 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2754 | PyObject * |
| 2755 | PyUnicode_FromOrdinal(int ordinal) |
Marc-André Lemburg | cc8764c | 2002-08-11 12:23:04 +0000 | [diff] [blame] | 2756 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2757 | PyObject *v; |
Marc-André Lemburg | cc8764c | 2002-08-11 12:23:04 +0000 | [diff] [blame] | 2758 | if (ordinal < 0 || ordinal > 0x10ffff) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2759 | PyErr_SetString(PyExc_ValueError, |
| 2760 | "chr() arg not in range(0x110000)"); |
| 2761 | return NULL; |
Marc-André Lemburg | cc8764c | 2002-08-11 12:23:04 +0000 | [diff] [blame] | 2762 | } |
Guido van Rossum | 8ac004e | 2007-07-15 13:00:05 +0000 | [diff] [blame] | 2763 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2764 | if (ordinal < 256) |
| 2765 | return get_latin1_char(ordinal); |
Marc-André Lemburg | cc8764c | 2002-08-11 12:23:04 +0000 | [diff] [blame] | 2766 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2767 | v = PyUnicode_New(1, ordinal); |
| 2768 | if (v == NULL) |
| 2769 | return NULL; |
| 2770 | PyUnicode_WRITE(PyUnicode_KIND(v), PyUnicode_DATA(v), 0, ordinal); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 2771 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2772 | return v; |
Marc-André Lemburg | cc8764c | 2002-08-11 12:23:04 +0000 | [diff] [blame] | 2773 | } |
| 2774 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2775 | PyObject * |
| 2776 | PyUnicode_FromObject(register PyObject *obj) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2777 | { |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 2778 | /* XXX Perhaps we should make this API an alias of |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2779 | PyObject_Str() instead ?! */ |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 2780 | if (PyUnicode_CheckExact(obj)) { |
Victor Stinner | d3a83d5 | 2011-10-01 03:09:33 +0200 | [diff] [blame] | 2781 | if (PyUnicode_READY(obj)) |
| 2782 | return NULL; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2783 | Py_INCREF(obj); |
| 2784 | return obj; |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 2785 | } |
| 2786 | if (PyUnicode_Check(obj)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2787 | /* For a Unicode subtype that's not a Unicode object, |
| 2788 | return a true Unicode object with the same data. */ |
Victor Stinner | 2219e0a | 2011-10-01 01:16:59 +0200 | [diff] [blame] | 2789 | return PyUnicode_Copy(obj); |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 2790 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 2791 | PyErr_Format(PyExc_TypeError, |
| 2792 | "Can't convert '%.100s' object to str implicitly", |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 2793 | Py_TYPE(obj)->tp_name); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 2794 | return NULL; |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 2795 | } |
| 2796 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2797 | PyObject * |
| 2798 | PyUnicode_FromEncodedObject(register PyObject *obj, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 2799 | const char *encoding, |
| 2800 | const char *errors) |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 2801 | { |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 2802 | Py_buffer buffer; |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 2803 | PyObject *v; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 2804 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2805 | if (obj == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2806 | PyErr_BadInternalCall(); |
| 2807 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2808 | } |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 2809 | |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 2810 | /* Decoding bytes objects is the most common case and should be fast */ |
| 2811 | if (PyBytes_Check(obj)) { |
| 2812 | if (PyBytes_GET_SIZE(obj) == 0) { |
| 2813 | Py_INCREF(unicode_empty); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 2814 | v = unicode_empty; |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 2815 | } |
| 2816 | else { |
| 2817 | v = PyUnicode_Decode( |
| 2818 | PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj), |
| 2819 | encoding, errors); |
| 2820 | } |
| 2821 | return v; |
| 2822 | } |
| 2823 | |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 2824 | if (PyUnicode_Check(obj)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2825 | PyErr_SetString(PyExc_TypeError, |
| 2826 | "decoding str is not supported"); |
| 2827 | return NULL; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2828 | } |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 2829 | |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 2830 | /* Retrieve a bytes buffer view through the PEP 3118 buffer interface */ |
| 2831 | if (PyObject_GetBuffer(obj, &buffer, PyBUF_SIMPLE) < 0) { |
| 2832 | PyErr_Format(PyExc_TypeError, |
| 2833 | "coercing to str: need bytes, bytearray " |
| 2834 | "or buffer-like object, %.80s found", |
| 2835 | Py_TYPE(obj)->tp_name); |
| 2836 | return NULL; |
Marc-André Lemburg | 6871f6a | 2001-09-20 12:53:16 +0000 | [diff] [blame] | 2837 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 2838 | |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 2839 | if (buffer.len == 0) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2840 | Py_INCREF(unicode_empty); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 2841 | v = unicode_empty; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2842 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 2843 | else |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 2844 | v = PyUnicode_Decode((char*) buffer.buf, buffer.len, encoding, errors); |
Marc-André Lemburg | ad7c98e | 2001-01-17 17:09:53 +0000 | [diff] [blame] | 2845 | |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 2846 | PyBuffer_Release(&buffer); |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 2847 | return v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2848 | } |
| 2849 | |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 2850 | /* Convert encoding to lower case and replace '_' with '-' in order to |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 2851 | catch e.g. UTF_8. Return 0 on error (encoding is longer than lower_len-1), |
| 2852 | 1 on success. */ |
| 2853 | static int |
| 2854 | normalize_encoding(const char *encoding, |
| 2855 | char *lower, |
| 2856 | size_t lower_len) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2857 | { |
Guido van Rossum | daa251c | 2007-10-25 23:47:33 +0000 | [diff] [blame] | 2858 | const char *e; |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 2859 | char *l; |
| 2860 | char *l_end; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 2861 | |
Benjamin Peterson | 7a6debe | 2011-10-15 09:25:28 -0400 | [diff] [blame] | 2862 | if (encoding == NULL) { |
| 2863 | strcpy(lower, "utf-8"); |
| 2864 | return 1; |
| 2865 | } |
Guido van Rossum | daa251c | 2007-10-25 23:47:33 +0000 | [diff] [blame] | 2866 | e = encoding; |
| 2867 | l = lower; |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 2868 | l_end = &lower[lower_len - 1]; |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 2869 | while (*e) { |
| 2870 | if (l == l_end) |
| 2871 | return 0; |
David Malcolm | 9696088 | 2010-11-05 17:23:41 +0000 | [diff] [blame] | 2872 | if (Py_ISUPPER(*e)) { |
| 2873 | *l++ = Py_TOLOWER(*e++); |
Guido van Rossum | daa251c | 2007-10-25 23:47:33 +0000 | [diff] [blame] | 2874 | } |
| 2875 | else if (*e == '_') { |
| 2876 | *l++ = '-'; |
| 2877 | e++; |
| 2878 | } |
| 2879 | else { |
| 2880 | *l++ = *e++; |
| 2881 | } |
| 2882 | } |
| 2883 | *l = '\0'; |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 2884 | return 1; |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 2885 | } |
| 2886 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2887 | PyObject * |
| 2888 | PyUnicode_Decode(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 2889 | Py_ssize_t size, |
| 2890 | const char *encoding, |
| 2891 | const char *errors) |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 2892 | { |
| 2893 | PyObject *buffer = NULL, *unicode; |
| 2894 | Py_buffer info; |
| 2895 | char lower[11]; /* Enough for any encoding shortcut */ |
| 2896 | |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 2897 | /* Shortcuts for common default encodings */ |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 2898 | if (normalize_encoding(encoding, lower, sizeof(lower))) { |
Alexander Belopolsky | 1d52146 | 2011-02-25 19:19:57 +0000 | [diff] [blame] | 2899 | if ((strcmp(lower, "utf-8") == 0) || |
| 2900 | (strcmp(lower, "utf8") == 0)) |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 2901 | return PyUnicode_DecodeUTF8(s, size, errors); |
| 2902 | else if ((strcmp(lower, "latin-1") == 0) || |
Alexander Belopolsky | 1d52146 | 2011-02-25 19:19:57 +0000 | [diff] [blame] | 2903 | (strcmp(lower, "latin1") == 0) || |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 2904 | (strcmp(lower, "iso-8859-1") == 0)) |
| 2905 | return PyUnicode_DecodeLatin1(s, size, errors); |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 2906 | #ifdef HAVE_MBCS |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 2907 | else if (strcmp(lower, "mbcs") == 0) |
| 2908 | return PyUnicode_DecodeMBCS(s, size, errors); |
Mark Hammond | 0ccda1e | 2003-07-01 00:13:27 +0000 | [diff] [blame] | 2909 | #endif |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 2910 | else if (strcmp(lower, "ascii") == 0) |
| 2911 | return PyUnicode_DecodeASCII(s, size, errors); |
| 2912 | else if (strcmp(lower, "utf-16") == 0) |
| 2913 | return PyUnicode_DecodeUTF16(s, size, errors, 0); |
| 2914 | else if (strcmp(lower, "utf-32") == 0) |
| 2915 | return PyUnicode_DecodeUTF32(s, size, errors, 0); |
| 2916 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2917 | |
| 2918 | /* Decode via the codec registry */ |
Guido van Rossum | be801ac | 2007-10-08 03:32:34 +0000 | [diff] [blame] | 2919 | buffer = NULL; |
Antoine Pitrou | c3b3924 | 2009-01-03 16:59:18 +0000 | [diff] [blame] | 2920 | if (PyBuffer_FillInfo(&info, NULL, (void *)s, size, 1, PyBUF_FULL_RO) < 0) |
Guido van Rossum | be801ac | 2007-10-08 03:32:34 +0000 | [diff] [blame] | 2921 | goto onError; |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 2922 | buffer = PyMemoryView_FromBuffer(&info); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2923 | if (buffer == NULL) |
| 2924 | goto onError; |
| 2925 | unicode = PyCodec_Decode(buffer, encoding, errors); |
| 2926 | if (unicode == NULL) |
| 2927 | goto onError; |
| 2928 | if (!PyUnicode_Check(unicode)) { |
| 2929 | PyErr_Format(PyExc_TypeError, |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 2930 | "decoder did not return a str object (type=%.400s)", |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 2931 | Py_TYPE(unicode)->tp_name); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2932 | Py_DECREF(unicode); |
| 2933 | goto onError; |
| 2934 | } |
| 2935 | Py_DECREF(buffer); |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 2936 | #ifndef DONT_MAKE_RESULT_READY |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 2937 | if (_PyUnicode_READY_REPLACE(&unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2938 | Py_DECREF(unicode); |
| 2939 | return NULL; |
| 2940 | } |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 2941 | #endif |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 2942 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2943 | return unicode; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 2944 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2945 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2946 | Py_XDECREF(buffer); |
| 2947 | return NULL; |
| 2948 | } |
| 2949 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2950 | PyObject * |
| 2951 | PyUnicode_AsDecodedObject(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 2952 | const char *encoding, |
| 2953 | const char *errors) |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 2954 | { |
| 2955 | PyObject *v; |
| 2956 | |
| 2957 | if (!PyUnicode_Check(unicode)) { |
| 2958 | PyErr_BadArgument(); |
| 2959 | goto onError; |
| 2960 | } |
| 2961 | |
| 2962 | if (encoding == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2963 | encoding = PyUnicode_GetDefaultEncoding(); |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 2964 | |
| 2965 | /* Decode via the codec registry */ |
| 2966 | v = PyCodec_Decode(unicode, encoding, errors); |
| 2967 | if (v == NULL) |
| 2968 | goto onError; |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 2969 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 2970 | return v; |
| 2971 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2972 | onError: |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 2973 | return NULL; |
| 2974 | } |
| 2975 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2976 | PyObject * |
| 2977 | PyUnicode_AsDecodedUnicode(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 2978 | const char *encoding, |
| 2979 | const char *errors) |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 2980 | { |
| 2981 | PyObject *v; |
| 2982 | |
| 2983 | if (!PyUnicode_Check(unicode)) { |
| 2984 | PyErr_BadArgument(); |
| 2985 | goto onError; |
| 2986 | } |
| 2987 | |
| 2988 | if (encoding == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2989 | encoding = PyUnicode_GetDefaultEncoding(); |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 2990 | |
| 2991 | /* Decode via the codec registry */ |
| 2992 | v = PyCodec_Decode(unicode, encoding, errors); |
| 2993 | if (v == NULL) |
| 2994 | goto onError; |
| 2995 | if (!PyUnicode_Check(v)) { |
| 2996 | PyErr_Format(PyExc_TypeError, |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 2997 | "decoder did not return a str object (type=%.400s)", |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 2998 | Py_TYPE(v)->tp_name); |
| 2999 | Py_DECREF(v); |
| 3000 | goto onError; |
| 3001 | } |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 3002 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3003 | return v; |
| 3004 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3005 | onError: |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3006 | return NULL; |
| 3007 | } |
| 3008 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3009 | PyObject * |
| 3010 | PyUnicode_Encode(const Py_UNICODE *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3011 | Py_ssize_t size, |
| 3012 | const char *encoding, |
| 3013 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3014 | { |
| 3015 | PyObject *v, *unicode; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3016 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3017 | unicode = PyUnicode_FromUnicode(s, size); |
| 3018 | if (unicode == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3019 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3020 | v = PyUnicode_AsEncodedString(unicode, encoding, errors); |
| 3021 | Py_DECREF(unicode); |
| 3022 | return v; |
| 3023 | } |
| 3024 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3025 | PyObject * |
| 3026 | PyUnicode_AsEncodedObject(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3027 | const char *encoding, |
| 3028 | const char *errors) |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3029 | { |
| 3030 | PyObject *v; |
| 3031 | |
| 3032 | if (!PyUnicode_Check(unicode)) { |
| 3033 | PyErr_BadArgument(); |
| 3034 | goto onError; |
| 3035 | } |
| 3036 | |
| 3037 | if (encoding == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3038 | encoding = PyUnicode_GetDefaultEncoding(); |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3039 | |
| 3040 | /* Encode via the codec registry */ |
| 3041 | v = PyCodec_Encode(unicode, encoding, errors); |
| 3042 | if (v == NULL) |
| 3043 | goto onError; |
| 3044 | return v; |
| 3045 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3046 | onError: |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3047 | return NULL; |
| 3048 | } |
| 3049 | |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3050 | PyObject * |
| 3051 | PyUnicode_EncodeFSDefault(PyObject *unicode) |
Victor Stinner | ae6265f | 2010-05-15 16:27:27 +0000 | [diff] [blame] | 3052 | { |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 3053 | #ifdef HAVE_MBCS |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3054 | return PyUnicode_EncodeMBCS(PyUnicode_AS_UNICODE(unicode), |
| 3055 | PyUnicode_GET_SIZE(unicode), |
| 3056 | NULL); |
| 3057 | #elif defined(__APPLE__) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3058 | return _PyUnicode_AsUTF8String(unicode, "surrogateescape"); |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3059 | #else |
Victor Stinner | 793b531 | 2011-04-27 00:24:21 +0200 | [diff] [blame] | 3060 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 3061 | /* Bootstrap check: if the filesystem codec is implemented in Python, we |
| 3062 | cannot use it to encode and decode filenames before it is loaded. Load |
| 3063 | the Python codec requires to encode at least its own filename. Use the C |
| 3064 | version of the locale codec until the codec registry is initialized and |
| 3065 | the Python codec is loaded. |
| 3066 | |
| 3067 | Py_FileSystemDefaultEncoding is shared between all interpreters, we |
| 3068 | cannot only rely on it: check also interp->fscodec_initialized for |
| 3069 | subinterpreters. */ |
| 3070 | if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) { |
Victor Stinner | ae6265f | 2010-05-15 16:27:27 +0000 | [diff] [blame] | 3071 | return PyUnicode_AsEncodedString(unicode, |
| 3072 | Py_FileSystemDefaultEncoding, |
| 3073 | "surrogateescape"); |
Victor Stinner | c39211f | 2010-09-29 16:35:47 +0000 | [diff] [blame] | 3074 | } |
| 3075 | else { |
Victor Stinner | f3170cc | 2010-10-15 12:04:23 +0000 | [diff] [blame] | 3076 | /* locale encoding with surrogateescape */ |
| 3077 | wchar_t *wchar; |
| 3078 | char *bytes; |
| 3079 | PyObject *bytes_obj; |
Victor Stinner | 2f02a51 | 2010-11-08 22:43:46 +0000 | [diff] [blame] | 3080 | size_t error_pos; |
Victor Stinner | f3170cc | 2010-10-15 12:04:23 +0000 | [diff] [blame] | 3081 | |
| 3082 | wchar = PyUnicode_AsWideCharString(unicode, NULL); |
| 3083 | if (wchar == NULL) |
| 3084 | return NULL; |
Victor Stinner | 2f02a51 | 2010-11-08 22:43:46 +0000 | [diff] [blame] | 3085 | bytes = _Py_wchar2char(wchar, &error_pos); |
| 3086 | if (bytes == NULL) { |
| 3087 | if (error_pos != (size_t)-1) { |
| 3088 | char *errmsg = strerror(errno); |
| 3089 | PyObject *exc = NULL; |
| 3090 | if (errmsg == NULL) |
| 3091 | errmsg = "Py_wchar2char() failed"; |
| 3092 | raise_encode_exception(&exc, |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 3093 | "filesystemencoding", unicode, |
Victor Stinner | 2f02a51 | 2010-11-08 22:43:46 +0000 | [diff] [blame] | 3094 | error_pos, error_pos+1, |
| 3095 | errmsg); |
| 3096 | Py_XDECREF(exc); |
| 3097 | } |
| 3098 | else |
| 3099 | PyErr_NoMemory(); |
| 3100 | PyMem_Free(wchar); |
Victor Stinner | f3170cc | 2010-10-15 12:04:23 +0000 | [diff] [blame] | 3101 | return NULL; |
Victor Stinner | 2f02a51 | 2010-11-08 22:43:46 +0000 | [diff] [blame] | 3102 | } |
| 3103 | PyMem_Free(wchar); |
Victor Stinner | f3170cc | 2010-10-15 12:04:23 +0000 | [diff] [blame] | 3104 | |
| 3105 | bytes_obj = PyBytes_FromString(bytes); |
| 3106 | PyMem_Free(bytes); |
| 3107 | return bytes_obj; |
Victor Stinner | c39211f | 2010-09-29 16:35:47 +0000 | [diff] [blame] | 3108 | } |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3109 | #endif |
Victor Stinner | ae6265f | 2010-05-15 16:27:27 +0000 | [diff] [blame] | 3110 | } |
| 3111 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3112 | PyObject * |
| 3113 | PyUnicode_AsEncodedString(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3114 | const char *encoding, |
| 3115 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3116 | { |
| 3117 | PyObject *v; |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 3118 | char lower[11]; /* Enough for any encoding shortcut */ |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3119 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3120 | if (!PyUnicode_Check(unicode)) { |
| 3121 | PyErr_BadArgument(); |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3122 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3123 | } |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 3124 | |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 3125 | /* Shortcuts for common default encodings */ |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3126 | if (normalize_encoding(encoding, lower, sizeof(lower))) { |
Alexander Belopolsky | 1d52146 | 2011-02-25 19:19:57 +0000 | [diff] [blame] | 3127 | if ((strcmp(lower, "utf-8") == 0) || |
| 3128 | (strcmp(lower, "utf8") == 0)) |
Victor Stinner | a5c68c3 | 2011-03-02 01:03:14 +0000 | [diff] [blame] | 3129 | { |
Victor Stinner | 2f283c2 | 2011-03-02 01:21:46 +0000 | [diff] [blame] | 3130 | if (errors == NULL || strcmp(errors, "strict") == 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3131 | return _PyUnicode_AsUTF8String(unicode, NULL); |
Victor Stinner | 2f283c2 | 2011-03-02 01:21:46 +0000 | [diff] [blame] | 3132 | else |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3133 | return _PyUnicode_AsUTF8String(unicode, errors); |
Victor Stinner | a5c68c3 | 2011-03-02 01:03:14 +0000 | [diff] [blame] | 3134 | } |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3135 | else if ((strcmp(lower, "latin-1") == 0) || |
Alexander Belopolsky | 1d52146 | 2011-02-25 19:19:57 +0000 | [diff] [blame] | 3136 | (strcmp(lower, "latin1") == 0) || |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3137 | (strcmp(lower, "iso-8859-1") == 0)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3138 | return _PyUnicode_AsLatin1String(unicode, errors); |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 3139 | #ifdef HAVE_MBCS |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3140 | else if (strcmp(lower, "mbcs") == 0) |
| 3141 | return PyUnicode_EncodeMBCS(PyUnicode_AS_UNICODE(unicode), |
| 3142 | PyUnicode_GET_SIZE(unicode), |
| 3143 | errors); |
Mark Hammond | 0ccda1e | 2003-07-01 00:13:27 +0000 | [diff] [blame] | 3144 | #endif |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3145 | else if (strcmp(lower, "ascii") == 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3146 | return _PyUnicode_AsASCIIString(unicode, errors); |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3147 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3148 | |
| 3149 | /* Encode via the codec registry */ |
| 3150 | v = PyCodec_Encode(unicode, encoding, errors); |
| 3151 | if (v == NULL) |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3152 | return NULL; |
| 3153 | |
| 3154 | /* The normal path */ |
| 3155 | if (PyBytes_Check(v)) |
| 3156 | return v; |
| 3157 | |
| 3158 | /* If the codec returns a buffer, raise a warning and convert to bytes */ |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3159 | if (PyByteArray_Check(v)) { |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 3160 | int error; |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3161 | PyObject *b; |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 3162 | |
| 3163 | error = PyErr_WarnFormat(PyExc_RuntimeWarning, 1, |
| 3164 | "encoder %s returned bytearray instead of bytes", |
| 3165 | encoding); |
| 3166 | if (error) { |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3167 | Py_DECREF(v); |
| 3168 | return NULL; |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3169 | } |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3170 | |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3171 | b = PyBytes_FromStringAndSize(PyByteArray_AS_STRING(v), Py_SIZE(v)); |
| 3172 | Py_DECREF(v); |
| 3173 | return b; |
| 3174 | } |
| 3175 | |
| 3176 | PyErr_Format(PyExc_TypeError, |
| 3177 | "encoder did not return a bytes object (type=%.400s)", |
| 3178 | Py_TYPE(v)->tp_name); |
| 3179 | Py_DECREF(v); |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3180 | return NULL; |
| 3181 | } |
| 3182 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3183 | PyObject * |
| 3184 | PyUnicode_AsEncodedUnicode(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3185 | const char *encoding, |
| 3186 | const char *errors) |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3187 | { |
| 3188 | PyObject *v; |
| 3189 | |
| 3190 | if (!PyUnicode_Check(unicode)) { |
| 3191 | PyErr_BadArgument(); |
| 3192 | goto onError; |
| 3193 | } |
| 3194 | |
| 3195 | if (encoding == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3196 | encoding = PyUnicode_GetDefaultEncoding(); |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3197 | |
| 3198 | /* Encode via the codec registry */ |
| 3199 | v = PyCodec_Encode(unicode, encoding, errors); |
| 3200 | if (v == NULL) |
| 3201 | goto onError; |
| 3202 | if (!PyUnicode_Check(v)) { |
| 3203 | PyErr_Format(PyExc_TypeError, |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 3204 | "encoder did not return an str object (type=%.400s)", |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3205 | Py_TYPE(v)->tp_name); |
| 3206 | Py_DECREF(v); |
| 3207 | goto onError; |
| 3208 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3209 | return v; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3210 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3211 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3212 | return NULL; |
| 3213 | } |
| 3214 | |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3215 | PyObject* |
Christian Heimes | 5894ba7 | 2007-11-04 11:43:14 +0000 | [diff] [blame] | 3216 | PyUnicode_DecodeFSDefault(const char *s) { |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3217 | Py_ssize_t size = (Py_ssize_t)strlen(s); |
Christian Heimes | 5894ba7 | 2007-11-04 11:43:14 +0000 | [diff] [blame] | 3218 | return PyUnicode_DecodeFSDefaultAndSize(s, size); |
| 3219 | } |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3220 | |
Christian Heimes | 5894ba7 | 2007-11-04 11:43:14 +0000 | [diff] [blame] | 3221 | PyObject* |
| 3222 | PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size) |
| 3223 | { |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 3224 | #ifdef HAVE_MBCS |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3225 | return PyUnicode_DecodeMBCS(s, size, NULL); |
| 3226 | #elif defined(__APPLE__) |
| 3227 | return PyUnicode_DecodeUTF8(s, size, "surrogateescape"); |
| 3228 | #else |
Victor Stinner | 793b531 | 2011-04-27 00:24:21 +0200 | [diff] [blame] | 3229 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 3230 | /* Bootstrap check: if the filesystem codec is implemented in Python, we |
| 3231 | cannot use it to encode and decode filenames before it is loaded. Load |
| 3232 | the Python codec requires to encode at least its own filename. Use the C |
| 3233 | version of the locale codec until the codec registry is initialized and |
| 3234 | the Python codec is loaded. |
| 3235 | |
| 3236 | Py_FileSystemDefaultEncoding is shared between all interpreters, we |
| 3237 | cannot only rely on it: check also interp->fscodec_initialized for |
| 3238 | subinterpreters. */ |
| 3239 | if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) { |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3240 | return PyUnicode_Decode(s, size, |
| 3241 | Py_FileSystemDefaultEncoding, |
Victor Stinner | b9a20ad | 2010-04-30 16:37:52 +0000 | [diff] [blame] | 3242 | "surrogateescape"); |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3243 | } |
| 3244 | else { |
Victor Stinner | f3170cc | 2010-10-15 12:04:23 +0000 | [diff] [blame] | 3245 | /* locale encoding with surrogateescape */ |
| 3246 | wchar_t *wchar; |
| 3247 | PyObject *unicode; |
Victor Stinner | 168e117 | 2010-10-16 23:16:16 +0000 | [diff] [blame] | 3248 | size_t len; |
Victor Stinner | f3170cc | 2010-10-15 12:04:23 +0000 | [diff] [blame] | 3249 | |
| 3250 | if (s[size] != '\0' || size != strlen(s)) { |
| 3251 | PyErr_SetString(PyExc_TypeError, "embedded NUL character"); |
| 3252 | return NULL; |
| 3253 | } |
| 3254 | |
Victor Stinner | 168e117 | 2010-10-16 23:16:16 +0000 | [diff] [blame] | 3255 | wchar = _Py_char2wchar(s, &len); |
Victor Stinner | f3170cc | 2010-10-15 12:04:23 +0000 | [diff] [blame] | 3256 | if (wchar == NULL) |
Victor Stinner | d5af0a5 | 2010-11-08 23:34:29 +0000 | [diff] [blame] | 3257 | return PyErr_NoMemory(); |
Victor Stinner | f3170cc | 2010-10-15 12:04:23 +0000 | [diff] [blame] | 3258 | |
Victor Stinner | 168e117 | 2010-10-16 23:16:16 +0000 | [diff] [blame] | 3259 | unicode = PyUnicode_FromWideChar(wchar, len); |
Victor Stinner | f3170cc | 2010-10-15 12:04:23 +0000 | [diff] [blame] | 3260 | PyMem_Free(wchar); |
| 3261 | return unicode; |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3262 | } |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3263 | #endif |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3264 | } |
| 3265 | |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3266 | |
| 3267 | int |
| 3268 | PyUnicode_FSConverter(PyObject* arg, void* addr) |
| 3269 | { |
| 3270 | PyObject *output = NULL; |
| 3271 | Py_ssize_t size; |
| 3272 | void *data; |
Martin v. Löwis | c15bdef | 2009-05-29 14:47:46 +0000 | [diff] [blame] | 3273 | if (arg == NULL) { |
| 3274 | Py_DECREF(*(PyObject**)addr); |
| 3275 | return 1; |
| 3276 | } |
Victor Stinner | dcb2403 | 2010-04-22 12:08:36 +0000 | [diff] [blame] | 3277 | if (PyBytes_Check(arg)) { |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3278 | output = arg; |
| 3279 | Py_INCREF(output); |
| 3280 | } |
| 3281 | else { |
| 3282 | arg = PyUnicode_FromObject(arg); |
| 3283 | if (!arg) |
| 3284 | return 0; |
Victor Stinner | ae6265f | 2010-05-15 16:27:27 +0000 | [diff] [blame] | 3285 | output = PyUnicode_EncodeFSDefault(arg); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3286 | Py_DECREF(arg); |
| 3287 | if (!output) |
| 3288 | return 0; |
| 3289 | if (!PyBytes_Check(output)) { |
| 3290 | Py_DECREF(output); |
| 3291 | PyErr_SetString(PyExc_TypeError, "encoder failed to return bytes"); |
| 3292 | return 0; |
| 3293 | } |
| 3294 | } |
Victor Stinner | 0ea2a46 | 2010-04-30 00:22:08 +0000 | [diff] [blame] | 3295 | size = PyBytes_GET_SIZE(output); |
| 3296 | data = PyBytes_AS_STRING(output); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3297 | if (size != strlen(data)) { |
Benjamin Peterson | 7a6b44a | 2011-08-18 13:51:47 -0500 | [diff] [blame] | 3298 | PyErr_SetString(PyExc_TypeError, "embedded NUL character"); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3299 | Py_DECREF(output); |
| 3300 | return 0; |
| 3301 | } |
| 3302 | *(PyObject**)addr = output; |
Martin v. Löwis | c15bdef | 2009-05-29 14:47:46 +0000 | [diff] [blame] | 3303 | return Py_CLEANUP_SUPPORTED; |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3304 | } |
| 3305 | |
| 3306 | |
Victor Stinner | 47fcb5b | 2010-08-13 23:59:58 +0000 | [diff] [blame] | 3307 | int |
| 3308 | PyUnicode_FSDecoder(PyObject* arg, void* addr) |
| 3309 | { |
| 3310 | PyObject *output = NULL; |
Victor Stinner | 47fcb5b | 2010-08-13 23:59:58 +0000 | [diff] [blame] | 3311 | if (arg == NULL) { |
| 3312 | Py_DECREF(*(PyObject**)addr); |
| 3313 | return 1; |
| 3314 | } |
| 3315 | if (PyUnicode_Check(arg)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3316 | if (PyUnicode_READY(arg)) |
| 3317 | return 0; |
Victor Stinner | 47fcb5b | 2010-08-13 23:59:58 +0000 | [diff] [blame] | 3318 | output = arg; |
| 3319 | Py_INCREF(output); |
| 3320 | } |
| 3321 | else { |
| 3322 | arg = PyBytes_FromObject(arg); |
| 3323 | if (!arg) |
| 3324 | return 0; |
| 3325 | output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(arg), |
| 3326 | PyBytes_GET_SIZE(arg)); |
| 3327 | Py_DECREF(arg); |
| 3328 | if (!output) |
| 3329 | return 0; |
| 3330 | if (!PyUnicode_Check(output)) { |
| 3331 | Py_DECREF(output); |
| 3332 | PyErr_SetString(PyExc_TypeError, "decoder failed to return unicode"); |
| 3333 | return 0; |
| 3334 | } |
| 3335 | } |
Victor Stinner | 065836e | 2011-10-27 01:56:33 +0200 | [diff] [blame] | 3336 | if (PyUnicode_READY(output) < 0) { |
| 3337 | Py_DECREF(output); |
| 3338 | return 0; |
| 3339 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3340 | if (findchar(PyUnicode_DATA(output), PyUnicode_KIND(output), |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 3341 | PyUnicode_GET_LENGTH(output), 0, 1) >= 0) { |
Victor Stinner | 47fcb5b | 2010-08-13 23:59:58 +0000 | [diff] [blame] | 3342 | PyErr_SetString(PyExc_TypeError, "embedded NUL character"); |
| 3343 | Py_DECREF(output); |
| 3344 | return 0; |
| 3345 | } |
| 3346 | *(PyObject**)addr = output; |
| 3347 | return Py_CLEANUP_SUPPORTED; |
| 3348 | } |
| 3349 | |
| 3350 | |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 3351 | char* |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3352 | PyUnicode_AsUTF8AndSize(PyObject *unicode, Py_ssize_t *psize) |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 3353 | { |
Christian Heimes | f386311 | 2007-11-22 07:46:41 +0000 | [diff] [blame] | 3354 | PyObject *bytes; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3355 | |
Neal Norwitz | e0a0a6e | 2007-08-25 01:04:21 +0000 | [diff] [blame] | 3356 | if (!PyUnicode_Check(unicode)) { |
| 3357 | PyErr_BadArgument(); |
| 3358 | return NULL; |
| 3359 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3360 | if (PyUnicode_READY(unicode) == -1) |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 3361 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3362 | |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 3363 | if (PyUnicode_UTF8(unicode) == NULL) { |
| 3364 | assert(!PyUnicode_IS_COMPACT_ASCII(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3365 | bytes = _PyUnicode_AsUTF8String(unicode, "strict"); |
| 3366 | if (bytes == NULL) |
| 3367 | return NULL; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3368 | _PyUnicode_UTF8(unicode) = PyObject_MALLOC(PyBytes_GET_SIZE(bytes) + 1); |
| 3369 | if (_PyUnicode_UTF8(unicode) == NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3370 | Py_DECREF(bytes); |
| 3371 | return NULL; |
| 3372 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3373 | _PyUnicode_UTF8_LENGTH(unicode) = PyBytes_GET_SIZE(bytes); |
| 3374 | Py_MEMCPY(_PyUnicode_UTF8(unicode), |
| 3375 | PyBytes_AS_STRING(bytes), |
| 3376 | _PyUnicode_UTF8_LENGTH(unicode) + 1); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3377 | Py_DECREF(bytes); |
| 3378 | } |
| 3379 | |
| 3380 | if (psize) |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 3381 | *psize = PyUnicode_UTF8_LENGTH(unicode); |
| 3382 | return PyUnicode_UTF8(unicode); |
Guido van Rossum | 7d1df6c | 2007-08-29 13:53:23 +0000 | [diff] [blame] | 3383 | } |
| 3384 | |
| 3385 | char* |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3386 | PyUnicode_AsUTF8(PyObject *unicode) |
Guido van Rossum | 7d1df6c | 2007-08-29 13:53:23 +0000 | [diff] [blame] | 3387 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3388 | return PyUnicode_AsUTF8AndSize(unicode, NULL); |
| 3389 | } |
| 3390 | |
| 3391 | #ifdef Py_DEBUG |
Antoine Pitrou | 53bb548 | 2011-10-10 23:49:24 +0200 | [diff] [blame] | 3392 | static int unicode_as_unicode_calls = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3393 | #endif |
| 3394 | |
| 3395 | |
| 3396 | Py_UNICODE * |
| 3397 | PyUnicode_AsUnicodeAndSize(PyObject *unicode, Py_ssize_t *size) |
| 3398 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3399 | const unsigned char *one_byte; |
| 3400 | #if SIZEOF_WCHAR_T == 4 |
| 3401 | const Py_UCS2 *two_bytes; |
| 3402 | #else |
| 3403 | const Py_UCS4 *four_bytes; |
| 3404 | const Py_UCS4 *ucs4_end; |
| 3405 | Py_ssize_t num_surrogates; |
| 3406 | #endif |
| 3407 | wchar_t *w; |
| 3408 | wchar_t *wchar_end; |
| 3409 | |
| 3410 | if (!PyUnicode_Check(unicode)) { |
| 3411 | PyErr_BadArgument(); |
| 3412 | return NULL; |
| 3413 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3414 | if (_PyUnicode_WSTR(unicode) == NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3415 | /* Non-ASCII compact unicode object */ |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3416 | assert(_PyUnicode_KIND(unicode) != 0); |
| 3417 | assert(PyUnicode_IS_READY(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3418 | |
| 3419 | #ifdef Py_DEBUG |
| 3420 | ++unicode_as_unicode_calls; |
| 3421 | #endif |
| 3422 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3423 | if (PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3424 | #if SIZEOF_WCHAR_T == 2 |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3425 | four_bytes = PyUnicode_4BYTE_DATA(unicode); |
| 3426 | ucs4_end = four_bytes + _PyUnicode_LENGTH(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3427 | num_surrogates = 0; |
| 3428 | |
| 3429 | for (; four_bytes < ucs4_end; ++four_bytes) { |
| 3430 | if (*four_bytes > 0xFFFF) |
| 3431 | ++num_surrogates; |
| 3432 | } |
| 3433 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3434 | _PyUnicode_WSTR(unicode) = (wchar_t *) PyObject_MALLOC( |
| 3435 | sizeof(wchar_t) * (_PyUnicode_LENGTH(unicode) + 1 + num_surrogates)); |
| 3436 | if (!_PyUnicode_WSTR(unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3437 | PyErr_NoMemory(); |
| 3438 | return NULL; |
| 3439 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3440 | _PyUnicode_WSTR_LENGTH(unicode) = _PyUnicode_LENGTH(unicode) + num_surrogates; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3441 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3442 | w = _PyUnicode_WSTR(unicode); |
| 3443 | wchar_end = w + _PyUnicode_WSTR_LENGTH(unicode); |
| 3444 | four_bytes = PyUnicode_4BYTE_DATA(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3445 | for (; four_bytes < ucs4_end; ++four_bytes, ++w) { |
| 3446 | if (*four_bytes > 0xFFFF) { |
| 3447 | /* encode surrogate pair in this case */ |
| 3448 | *w++ = 0xD800 | ((*four_bytes - 0x10000) >> 10); |
| 3449 | *w = 0xDC00 | ((*four_bytes - 0x10000) & 0x3FF); |
| 3450 | } |
| 3451 | else |
| 3452 | *w = *four_bytes; |
| 3453 | |
| 3454 | if (w > wchar_end) { |
| 3455 | assert(0 && "Miscalculated string end"); |
| 3456 | } |
| 3457 | } |
| 3458 | *w = 0; |
| 3459 | #else |
| 3460 | /* sizeof(wchar_t) == 4 */ |
| 3461 | Py_FatalError("Impossible unicode object state, wstr and str " |
| 3462 | "should share memory already."); |
| 3463 | return NULL; |
| 3464 | #endif |
| 3465 | } |
| 3466 | else { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3467 | _PyUnicode_WSTR(unicode) = (wchar_t *) PyObject_MALLOC(sizeof(wchar_t) * |
| 3468 | (_PyUnicode_LENGTH(unicode) + 1)); |
| 3469 | if (!_PyUnicode_WSTR(unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3470 | PyErr_NoMemory(); |
| 3471 | return NULL; |
| 3472 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3473 | if (!PyUnicode_IS_COMPACT_ASCII(unicode)) |
| 3474 | _PyUnicode_WSTR_LENGTH(unicode) = _PyUnicode_LENGTH(unicode); |
| 3475 | w = _PyUnicode_WSTR(unicode); |
| 3476 | wchar_end = w + _PyUnicode_LENGTH(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3477 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3478 | if (PyUnicode_KIND(unicode) == PyUnicode_1BYTE_KIND) { |
| 3479 | one_byte = PyUnicode_1BYTE_DATA(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3480 | for (; w < wchar_end; ++one_byte, ++w) |
| 3481 | *w = *one_byte; |
| 3482 | /* null-terminate the wstr */ |
| 3483 | *w = 0; |
| 3484 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3485 | else if (PyUnicode_KIND(unicode) == PyUnicode_2BYTE_KIND) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3486 | #if SIZEOF_WCHAR_T == 4 |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3487 | two_bytes = PyUnicode_2BYTE_DATA(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3488 | for (; w < wchar_end; ++two_bytes, ++w) |
| 3489 | *w = *two_bytes; |
| 3490 | /* null-terminate the wstr */ |
| 3491 | *w = 0; |
| 3492 | #else |
| 3493 | /* sizeof(wchar_t) == 2 */ |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3494 | PyObject_FREE(_PyUnicode_WSTR(unicode)); |
| 3495 | _PyUnicode_WSTR(unicode) = NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3496 | Py_FatalError("Impossible unicode object state, wstr " |
| 3497 | "and str should share memory already."); |
| 3498 | return NULL; |
| 3499 | #endif |
| 3500 | } |
| 3501 | else { |
| 3502 | assert(0 && "This should never happen."); |
| 3503 | } |
| 3504 | } |
| 3505 | } |
| 3506 | if (size != NULL) |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3507 | *size = PyUnicode_WSTR_LENGTH(unicode); |
| 3508 | return _PyUnicode_WSTR(unicode); |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 3509 | } |
| 3510 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3511 | Py_UNICODE * |
| 3512 | PyUnicode_AsUnicode(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3513 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3514 | return PyUnicode_AsUnicodeAndSize(unicode, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3515 | } |
| 3516 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3517 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3518 | Py_ssize_t |
| 3519 | PyUnicode_GetSize(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3520 | { |
| 3521 | if (!PyUnicode_Check(unicode)) { |
| 3522 | PyErr_BadArgument(); |
| 3523 | goto onError; |
| 3524 | } |
| 3525 | return PyUnicode_GET_SIZE(unicode); |
| 3526 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3527 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3528 | return -1; |
| 3529 | } |
| 3530 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3531 | Py_ssize_t |
| 3532 | PyUnicode_GetLength(PyObject *unicode) |
| 3533 | { |
Victor Stinner | 5a706cf | 2011-10-02 00:36:53 +0200 | [diff] [blame] | 3534 | if (!PyUnicode_Check(unicode) || PyUnicode_READY(unicode) == -1) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3535 | PyErr_BadArgument(); |
| 3536 | return -1; |
| 3537 | } |
| 3538 | |
| 3539 | return PyUnicode_GET_LENGTH(unicode); |
| 3540 | } |
| 3541 | |
| 3542 | Py_UCS4 |
| 3543 | PyUnicode_ReadChar(PyObject *unicode, Py_ssize_t index) |
| 3544 | { |
Victor Stinner | 2fe5ced | 2011-10-02 00:25:40 +0200 | [diff] [blame] | 3545 | if (!PyUnicode_Check(unicode) || PyUnicode_READY(unicode) == -1) { |
| 3546 | PyErr_BadArgument(); |
| 3547 | return (Py_UCS4)-1; |
| 3548 | } |
| 3549 | if (index < 0 || index >= _PyUnicode_LENGTH(unicode)) { |
| 3550 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3551 | return (Py_UCS4)-1; |
| 3552 | } |
| 3553 | return PyUnicode_READ_CHAR(unicode, index); |
| 3554 | } |
| 3555 | |
| 3556 | int |
| 3557 | PyUnicode_WriteChar(PyObject *unicode, Py_ssize_t index, Py_UCS4 ch) |
| 3558 | { |
| 3559 | if (!PyUnicode_Check(unicode) || !PyUnicode_IS_COMPACT(unicode)) { |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 3560 | PyErr_BadArgument(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3561 | return -1; |
| 3562 | } |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 3563 | if (index < 0 || index >= _PyUnicode_LENGTH(unicode)) { |
| 3564 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 3565 | return -1; |
| 3566 | } |
| 3567 | if (_PyUnicode_Dirty(unicode)) |
| 3568 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3569 | PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode), |
| 3570 | index, ch); |
| 3571 | return 0; |
| 3572 | } |
| 3573 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3574 | const char * |
| 3575 | PyUnicode_GetDefaultEncoding(void) |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 3576 | { |
Victor Stinner | 42cb462 | 2010-09-01 19:39:01 +0000 | [diff] [blame] | 3577 | return "utf-8"; |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 3578 | } |
| 3579 | |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 3580 | /* create or adjust a UnicodeDecodeError */ |
| 3581 | static void |
| 3582 | make_decode_exception(PyObject **exceptionObject, |
| 3583 | const char *encoding, |
| 3584 | const char *input, Py_ssize_t length, |
| 3585 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 3586 | const char *reason) |
| 3587 | { |
| 3588 | if (*exceptionObject == NULL) { |
| 3589 | *exceptionObject = PyUnicodeDecodeError_Create( |
| 3590 | encoding, input, length, startpos, endpos, reason); |
| 3591 | } |
| 3592 | else { |
| 3593 | if (PyUnicodeDecodeError_SetStart(*exceptionObject, startpos)) |
| 3594 | goto onError; |
| 3595 | if (PyUnicodeDecodeError_SetEnd(*exceptionObject, endpos)) |
| 3596 | goto onError; |
| 3597 | if (PyUnicodeDecodeError_SetReason(*exceptionObject, reason)) |
| 3598 | goto onError; |
| 3599 | } |
| 3600 | return; |
| 3601 | |
| 3602 | onError: |
| 3603 | Py_DECREF(*exceptionObject); |
| 3604 | *exceptionObject = NULL; |
| 3605 | } |
| 3606 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3607 | /* error handling callback helper: |
| 3608 | build arguments, call the callback and check the arguments, |
Fred Drake | db390c1 | 2005-10-28 14:39:47 +0000 | [diff] [blame] | 3609 | if no exception occurred, copy the replacement to the output |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3610 | and adjust various state variables. |
| 3611 | return 0 on success, -1 on error |
| 3612 | */ |
| 3613 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3614 | static int |
| 3615 | unicode_decode_call_errorhandler(const char *errors, PyObject **errorHandler, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3616 | const char *encoding, const char *reason, |
| 3617 | const char **input, const char **inend, Py_ssize_t *startinpos, |
| 3618 | Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3619 | PyObject **output, Py_ssize_t *outpos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3620 | { |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 3621 | static char *argparse = "O!n;decoding error handler must return (str, int) tuple"; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3622 | |
| 3623 | PyObject *restuple = NULL; |
| 3624 | PyObject *repunicode = NULL; |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 3625 | Py_ssize_t outsize; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 3626 | Py_ssize_t insize; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 3627 | Py_ssize_t requiredsize; |
| 3628 | Py_ssize_t newpos; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 3629 | PyObject *inputobj = NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3630 | int res = -1; |
| 3631 | |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 3632 | if (_PyUnicode_KIND(*output) != PyUnicode_WCHAR_KIND) |
| 3633 | outsize = PyUnicode_GET_LENGTH(*output); |
| 3634 | else |
| 3635 | outsize = _PyUnicode_WSTR_LENGTH(*output); |
| 3636 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3637 | if (*errorHandler == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3638 | *errorHandler = PyCodec_LookupError(errors); |
| 3639 | if (*errorHandler == NULL) |
| 3640 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3641 | } |
| 3642 | |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 3643 | make_decode_exception(exceptionObject, |
| 3644 | encoding, |
| 3645 | *input, *inend - *input, |
| 3646 | *startinpos, *endinpos, |
| 3647 | reason); |
| 3648 | if (*exceptionObject == NULL) |
| 3649 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3650 | |
| 3651 | restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL); |
| 3652 | if (restuple == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3653 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3654 | if (!PyTuple_Check(restuple)) { |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 3655 | PyErr_SetString(PyExc_TypeError, &argparse[4]); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3656 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3657 | } |
| 3658 | if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, &repunicode, &newpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3659 | goto onError; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3660 | if (PyUnicode_READY(repunicode) < 0) |
| 3661 | goto onError; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 3662 | |
| 3663 | /* Copy back the bytes variables, which might have been modified by the |
| 3664 | callback */ |
| 3665 | inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject); |
| 3666 | if (!inputobj) |
| 3667 | goto onError; |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 3668 | if (!PyBytes_Check(inputobj)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3669 | PyErr_Format(PyExc_TypeError, "exception attribute object must be bytes"); |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 3670 | } |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 3671 | *input = PyBytes_AS_STRING(inputobj); |
| 3672 | insize = PyBytes_GET_SIZE(inputobj); |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 3673 | *inend = *input + insize; |
Walter Dörwald | 36f938f | 2007-08-10 10:11:43 +0000 | [diff] [blame] | 3674 | /* we can DECREF safely, as the exception has another reference, |
| 3675 | so the object won't go away. */ |
| 3676 | Py_DECREF(inputobj); |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 3677 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3678 | if (newpos<0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3679 | newpos = insize+newpos; |
Walter Dörwald | 2e0b18a | 2003-01-31 17:19:08 +0000 | [diff] [blame] | 3680 | if (newpos<0 || newpos>insize) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3681 | PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", newpos); |
| 3682 | goto onError; |
Walter Dörwald | 2e0b18a | 2003-01-31 17:19:08 +0000 | [diff] [blame] | 3683 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3684 | |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 3685 | if (_PyUnicode_KIND(*output) != PyUnicode_WCHAR_KIND) { |
| 3686 | /* need more space? (at least enough for what we |
| 3687 | have+the replacement+the rest of the string (starting |
| 3688 | at the new input position), so we won't have to check space |
| 3689 | when there are no errors in the rest of the string) */ |
| 3690 | Py_ssize_t replen = PyUnicode_GET_LENGTH(repunicode); |
| 3691 | requiredsize = *outpos + replen + insize-newpos; |
| 3692 | if (requiredsize > outsize) { |
| 3693 | if (requiredsize<2*outsize) |
| 3694 | requiredsize = 2*outsize; |
| 3695 | if (unicode_resize(output, requiredsize) < 0) |
| 3696 | goto onError; |
| 3697 | } |
| 3698 | if (unicode_widen(output, PyUnicode_MAX_CHAR_VALUE(repunicode)) < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3699 | goto onError; |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 3700 | copy_characters(*output, *outpos, repunicode, 0, replen); |
| 3701 | *outpos += replen; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3702 | } |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 3703 | else { |
| 3704 | wchar_t *repwstr; |
| 3705 | Py_ssize_t repwlen; |
| 3706 | repwstr = PyUnicode_AsUnicodeAndSize(repunicode, &repwlen); |
| 3707 | if (repwstr == NULL) |
| 3708 | goto onError; |
| 3709 | /* need more space? (at least enough for what we |
| 3710 | have+the replacement+the rest of the string (starting |
| 3711 | at the new input position), so we won't have to check space |
| 3712 | when there are no errors in the rest of the string) */ |
| 3713 | requiredsize = *outpos + repwlen + insize-newpos; |
| 3714 | if (requiredsize > outsize) { |
| 3715 | if (requiredsize < 2*outsize) |
| 3716 | requiredsize = 2*outsize; |
| 3717 | if (unicode_resize(output, requiredsize) < 0) |
| 3718 | goto onError; |
| 3719 | } |
| 3720 | wcsncpy(_PyUnicode_WSTR(*output) + *outpos, repwstr, repwlen); |
| 3721 | *outpos += repwlen; |
| 3722 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3723 | *endinpos = newpos; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 3724 | *inptr = *input + newpos; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 3725 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3726 | /* we made it! */ |
| 3727 | res = 0; |
| 3728 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3729 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3730 | Py_XDECREF(restuple); |
| 3731 | return res; |
| 3732 | } |
| 3733 | |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3734 | /* --- UTF-7 Codec -------------------------------------------------------- */ |
| 3735 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3736 | /* See RFC2152 for details. We encode conservatively and decode liberally. */ |
| 3737 | |
| 3738 | /* Three simple macros defining base-64. */ |
| 3739 | |
| 3740 | /* Is c a base-64 character? */ |
| 3741 | |
| 3742 | #define IS_BASE64(c) \ |
| 3743 | (((c) >= 'A' && (c) <= 'Z') || \ |
| 3744 | ((c) >= 'a' && (c) <= 'z') || \ |
| 3745 | ((c) >= '0' && (c) <= '9') || \ |
| 3746 | (c) == '+' || (c) == '/') |
| 3747 | |
| 3748 | /* given that c is a base-64 character, what is its base-64 value? */ |
| 3749 | |
| 3750 | #define FROM_BASE64(c) \ |
| 3751 | (((c) >= 'A' && (c) <= 'Z') ? (c) - 'A' : \ |
| 3752 | ((c) >= 'a' && (c) <= 'z') ? (c) - 'a' + 26 : \ |
| 3753 | ((c) >= '0' && (c) <= '9') ? (c) - '0' + 52 : \ |
| 3754 | (c) == '+' ? 62 : 63) |
| 3755 | |
| 3756 | /* What is the base-64 character of the bottom 6 bits of n? */ |
| 3757 | |
| 3758 | #define TO_BASE64(n) \ |
| 3759 | ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[(n) & 0x3f]) |
| 3760 | |
| 3761 | /* DECODE_DIRECT: this byte encountered in a UTF-7 string should be |
| 3762 | * decoded as itself. We are permissive on decoding; the only ASCII |
| 3763 | * byte not decoding to itself is the + which begins a base64 |
| 3764 | * string. */ |
| 3765 | |
| 3766 | #define DECODE_DIRECT(c) \ |
| 3767 | ((c) <= 127 && (c) != '+') |
| 3768 | |
| 3769 | /* The UTF-7 encoder treats ASCII characters differently according to |
| 3770 | * whether they are Set D, Set O, Whitespace, or special (i.e. none of |
| 3771 | * the above). See RFC2152. This array identifies these different |
| 3772 | * sets: |
| 3773 | * 0 : "Set D" |
| 3774 | * alphanumeric and '(),-./:? |
| 3775 | * 1 : "Set O" |
| 3776 | * !"#$%&*;<=>@[]^_`{|} |
| 3777 | * 2 : "whitespace" |
| 3778 | * ht nl cr sp |
| 3779 | * 3 : special (must be base64 encoded) |
| 3780 | * everything else (i.e. +\~ and non-printing codes 0-8 11-12 14-31 127) |
| 3781 | */ |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3782 | |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3783 | static |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3784 | char utf7_category[128] = { |
| 3785 | /* nul soh stx etx eot enq ack bel bs ht nl vt np cr so si */ |
| 3786 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, 3, 2, 3, 3, |
| 3787 | /* dle dc1 dc2 dc3 dc4 nak syn etb can em sub esc fs gs rs us */ |
| 3788 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 3789 | /* sp ! " # $ % & ' ( ) * + , - . / */ |
| 3790 | 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0, |
| 3791 | /* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */ |
| 3792 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, |
| 3793 | /* @ A B C D E F G H I J K L M N O */ |
| 3794 | 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 3795 | /* P Q R S T U V W X Y Z [ \ ] ^ _ */ |
| 3796 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 1, |
| 3797 | /* ` a b c d e f g h i j k l m n o */ |
| 3798 | 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 3799 | /* p q r s t u v w x y z { | } ~ del */ |
| 3800 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 3, 3, |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3801 | }; |
| 3802 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3803 | /* ENCODE_DIRECT: this character should be encoded as itself. The |
| 3804 | * answer depends on whether we are encoding set O as itself, and also |
| 3805 | * on whether we are encoding whitespace as itself. RFC2152 makes it |
| 3806 | * clear that the answers to these questions vary between |
| 3807 | * applications, so this code needs to be flexible. */ |
Marc-André Lemburg | e115ec8 | 2005-10-19 22:33:31 +0000 | [diff] [blame] | 3808 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3809 | #define ENCODE_DIRECT(c, directO, directWS) \ |
| 3810 | ((c) < 128 && (c) > 0 && \ |
| 3811 | ((utf7_category[(c)] == 0) || \ |
| 3812 | (directWS && (utf7_category[(c)] == 2)) || \ |
| 3813 | (directO && (utf7_category[(c)] == 1)))) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3814 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3815 | PyObject * |
| 3816 | PyUnicode_DecodeUTF7(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3817 | Py_ssize_t size, |
| 3818 | const char *errors) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3819 | { |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 3820 | return PyUnicode_DecodeUTF7Stateful(s, size, errors, NULL); |
| 3821 | } |
| 3822 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3823 | /* The decoder. The only state we preserve is our read position, |
| 3824 | * i.e. how many characters we have consumed. So if we end in the |
| 3825 | * middle of a shift sequence we have to back off the read position |
| 3826 | * and the output to the beginning of the sequence, otherwise we lose |
| 3827 | * all the shift state (seen bits, number of bits seen, high |
| 3828 | * surrogate). */ |
| 3829 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3830 | PyObject * |
| 3831 | PyUnicode_DecodeUTF7Stateful(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3832 | Py_ssize_t size, |
| 3833 | const char *errors, |
| 3834 | Py_ssize_t *consumed) |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 3835 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3836 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 3837 | Py_ssize_t startinpos; |
| 3838 | Py_ssize_t endinpos; |
| 3839 | Py_ssize_t outpos; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3840 | const char *e; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 3841 | PyObject *unicode; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3842 | const char *errmsg = ""; |
| 3843 | int inShift = 0; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3844 | Py_ssize_t shiftOutStart; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3845 | unsigned int base64bits = 0; |
| 3846 | unsigned long base64buffer = 0; |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 3847 | Py_UCS4 surrogate = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3848 | PyObject *errorHandler = NULL; |
| 3849 | PyObject *exc = NULL; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3850 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3851 | /* Start off assuming it's all ASCII. Widen later as necessary. */ |
| 3852 | unicode = PyUnicode_New(size, 127); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3853 | if (!unicode) |
| 3854 | return NULL; |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 3855 | if (size == 0) { |
| 3856 | if (consumed) |
| 3857 | *consumed = 0; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 3858 | return unicode; |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 3859 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3860 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3861 | shiftOutStart = outpos = 0; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3862 | e = s + size; |
| 3863 | |
| 3864 | while (s < e) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3865 | Py_UCS4 ch; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3866 | restart: |
Antoine Pitrou | 5ffd9e9 | 2008-07-25 18:05:24 +0000 | [diff] [blame] | 3867 | ch = (unsigned char) *s; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3868 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3869 | if (inShift) { /* in a base-64 section */ |
| 3870 | if (IS_BASE64(ch)) { /* consume a base-64 character */ |
| 3871 | base64buffer = (base64buffer << 6) | FROM_BASE64(ch); |
| 3872 | base64bits += 6; |
| 3873 | s++; |
| 3874 | if (base64bits >= 16) { |
| 3875 | /* we have enough bits for a UTF-16 value */ |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 3876 | Py_UCS4 outCh = (Py_UCS4)(base64buffer >> (base64bits-16)); |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3877 | base64bits -= 16; |
| 3878 | base64buffer &= (1 << base64bits) - 1; /* clear high bits */ |
| 3879 | if (surrogate) { |
| 3880 | /* expecting a second surrogate */ |
| 3881 | if (outCh >= 0xDC00 && outCh <= 0xDFFF) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3882 | Py_UCS4 ch2 = (((surrogate & 0x3FF)<<10) |
| 3883 | | (outCh & 0x3FF)) + 0x10000; |
| 3884 | if (unicode_putchar(&unicode, &outpos, ch2) < 0) |
| 3885 | goto onError; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3886 | surrogate = 0; |
| 3887 | } |
| 3888 | else { |
| 3889 | surrogate = 0; |
| 3890 | errmsg = "second surrogate missing"; |
| 3891 | goto utf7Error; |
| 3892 | } |
| 3893 | } |
| 3894 | else if (outCh >= 0xD800 && outCh <= 0xDBFF) { |
| 3895 | /* first surrogate */ |
| 3896 | surrogate = outCh; |
| 3897 | } |
| 3898 | else if (outCh >= 0xDC00 && outCh <= 0xDFFF) { |
| 3899 | errmsg = "unexpected second surrogate"; |
| 3900 | goto utf7Error; |
| 3901 | } |
| 3902 | else { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3903 | if (unicode_putchar(&unicode, &outpos, outCh) < 0) |
| 3904 | goto onError; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3905 | } |
| 3906 | } |
| 3907 | } |
| 3908 | else { /* now leaving a base-64 section */ |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3909 | inShift = 0; |
| 3910 | s++; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3911 | if (surrogate) { |
| 3912 | errmsg = "second surrogate missing at end of shift sequence"; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3913 | goto utf7Error; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3914 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3915 | if (base64bits > 0) { /* left-over bits */ |
| 3916 | if (base64bits >= 6) { |
| 3917 | /* We've seen at least one base-64 character */ |
| 3918 | errmsg = "partial character in shift sequence"; |
| 3919 | goto utf7Error; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3920 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3921 | else { |
| 3922 | /* Some bits remain; they should be zero */ |
| 3923 | if (base64buffer != 0) { |
| 3924 | errmsg = "non-zero padding bits in shift sequence"; |
| 3925 | goto utf7Error; |
| 3926 | } |
| 3927 | } |
| 3928 | } |
| 3929 | if (ch != '-') { |
| 3930 | /* '-' is absorbed; other terminating |
| 3931 | characters are preserved */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3932 | if (unicode_putchar(&unicode, &outpos, ch) < 0) |
| 3933 | goto onError; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3934 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3935 | } |
| 3936 | } |
| 3937 | else if ( ch == '+' ) { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3938 | startinpos = s-starts; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3939 | s++; /* consume '+' */ |
| 3940 | if (s < e && *s == '-') { /* '+-' encodes '+' */ |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3941 | s++; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3942 | if (unicode_putchar(&unicode, &outpos, '+') < 0) |
| 3943 | goto onError; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3944 | } |
| 3945 | else { /* begin base64-encoded section */ |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3946 | inShift = 1; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3947 | shiftOutStart = outpos; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3948 | base64bits = 0; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3949 | } |
| 3950 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3951 | else if (DECODE_DIRECT(ch)) { /* character decodes as itself */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3952 | if (unicode_putchar(&unicode, &outpos, ch) < 0) |
| 3953 | goto onError; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3954 | s++; |
| 3955 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3956 | else { |
| 3957 | startinpos = s-starts; |
| 3958 | s++; |
| 3959 | errmsg = "unexpected special character"; |
| 3960 | goto utf7Error; |
| 3961 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3962 | continue; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3963 | utf7Error: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3964 | endinpos = s-starts; |
| 3965 | if (unicode_decode_call_errorhandler( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3966 | errors, &errorHandler, |
| 3967 | "utf7", errmsg, |
| 3968 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3969 | &unicode, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3970 | goto onError; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3971 | } |
| 3972 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3973 | /* end of string */ |
| 3974 | |
| 3975 | if (inShift && !consumed) { /* in shift sequence, no more to follow */ |
| 3976 | /* if we're in an inconsistent state, that's an error */ |
| 3977 | if (surrogate || |
| 3978 | (base64bits >= 6) || |
| 3979 | (base64bits > 0 && base64buffer != 0)) { |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3980 | endinpos = size; |
| 3981 | if (unicode_decode_call_errorhandler( |
| 3982 | errors, &errorHandler, |
| 3983 | "utf7", "unterminated shift sequence", |
| 3984 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3985 | &unicode, &outpos)) |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3986 | goto onError; |
| 3987 | if (s < e) |
| 3988 | goto restart; |
| 3989 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 3990 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3991 | |
| 3992 | /* return state */ |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 3993 | if (consumed) { |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3994 | if (inShift) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 3995 | outpos = shiftOutStart; /* back off output */ |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 3996 | *consumed = startinpos; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 3997 | } |
| 3998 | else { |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 3999 | *consumed = s-starts; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4000 | } |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 4001 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4002 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4003 | if (unicode_resize(&unicode, outpos) < 0) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4004 | goto onError; |
| 4005 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4006 | Py_XDECREF(errorHandler); |
| 4007 | Py_XDECREF(exc); |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 4008 | #ifndef DONT_MAKE_RESULT_READY |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 4009 | if (_PyUnicode_READY_REPLACE(&unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4010 | Py_DECREF(unicode); |
| 4011 | return NULL; |
| 4012 | } |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 4013 | #endif |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 4014 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4015 | return unicode; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4016 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4017 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4018 | Py_XDECREF(errorHandler); |
| 4019 | Py_XDECREF(exc); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4020 | Py_DECREF(unicode); |
| 4021 | return NULL; |
| 4022 | } |
| 4023 | |
| 4024 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4025 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4026 | _PyUnicode_EncodeUTF7(PyObject *str, |
| 4027 | int base64SetO, |
| 4028 | int base64WhiteSpace, |
| 4029 | const char *errors) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4030 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4031 | int kind; |
| 4032 | void *data; |
| 4033 | Py_ssize_t len; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 4034 | PyObject *v; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4035 | Py_ssize_t allocated; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4036 | int inShift = 0; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4037 | Py_ssize_t i; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4038 | unsigned int base64bits = 0; |
| 4039 | unsigned long base64buffer = 0; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4040 | char * out; |
| 4041 | char * start; |
| 4042 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4043 | if (PyUnicode_READY(str) < 0) |
| 4044 | return NULL; |
| 4045 | kind = PyUnicode_KIND(str); |
| 4046 | data = PyUnicode_DATA(str); |
| 4047 | len = PyUnicode_GET_LENGTH(str); |
| 4048 | |
| 4049 | if (len == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4050 | return PyBytes_FromStringAndSize(NULL, 0); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4051 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4052 | /* It might be possible to tighten this worst case */ |
| 4053 | allocated = 8 * len; |
| 4054 | if (allocated / 8 != len) |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 4055 | return PyErr_NoMemory(); |
| 4056 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4057 | v = PyBytes_FromStringAndSize(NULL, allocated); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4058 | if (v == NULL) |
| 4059 | return NULL; |
| 4060 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 4061 | start = out = PyBytes_AS_STRING(v); |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4062 | for (i = 0; i < len; ++i) { |
Victor Stinner | 0e36826 | 2011-11-10 20:12:49 +0100 | [diff] [blame] | 4063 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4064 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4065 | if (inShift) { |
| 4066 | if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) { |
| 4067 | /* shifting out */ |
| 4068 | if (base64bits) { /* output remaining bits */ |
| 4069 | *out++ = TO_BASE64(base64buffer << (6-base64bits)); |
| 4070 | base64buffer = 0; |
| 4071 | base64bits = 0; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4072 | } |
| 4073 | inShift = 0; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4074 | /* Characters not in the BASE64 set implicitly unshift the sequence |
| 4075 | so no '-' is required, except if the character is itself a '-' */ |
| 4076 | if (IS_BASE64(ch) || ch == '-') { |
| 4077 | *out++ = '-'; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4078 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4079 | *out++ = (char) ch; |
| 4080 | } |
| 4081 | else { |
| 4082 | goto encode_char; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 4083 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4084 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4085 | else { /* not in a shift sequence */ |
| 4086 | if (ch == '+') { |
| 4087 | *out++ = '+'; |
| 4088 | *out++ = '-'; |
| 4089 | } |
| 4090 | else if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) { |
| 4091 | *out++ = (char) ch; |
| 4092 | } |
| 4093 | else { |
| 4094 | *out++ = '+'; |
| 4095 | inShift = 1; |
| 4096 | goto encode_char; |
| 4097 | } |
| 4098 | } |
| 4099 | continue; |
| 4100 | encode_char: |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4101 | if (ch >= 0x10000) { |
| 4102 | /* code first surrogate */ |
| 4103 | base64bits += 16; |
| 4104 | base64buffer = (base64buffer << 16) | 0xd800 | ((ch-0x10000) >> 10); |
| 4105 | while (base64bits >= 6) { |
| 4106 | *out++ = TO_BASE64(base64buffer >> (base64bits-6)); |
| 4107 | base64bits -= 6; |
| 4108 | } |
| 4109 | /* prepare second surrogate */ |
| 4110 | ch = 0xDC00 | ((ch-0x10000) & 0x3FF); |
| 4111 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4112 | base64bits += 16; |
| 4113 | base64buffer = (base64buffer << 16) | ch; |
| 4114 | while (base64bits >= 6) { |
| 4115 | *out++ = TO_BASE64(base64buffer >> (base64bits-6)); |
| 4116 | base64bits -= 6; |
| 4117 | } |
Hye-Shik Chang | 1bc09b7 | 2004-01-03 19:35:43 +0000 | [diff] [blame] | 4118 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4119 | if (base64bits) |
| 4120 | *out++= TO_BASE64(base64buffer << (6-base64bits) ); |
| 4121 | if (inShift) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4122 | *out++ = '-'; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 4123 | if (_PyBytes_Resize(&v, out - start) < 0) |
| 4124 | return NULL; |
| 4125 | return v; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4126 | } |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4127 | PyObject * |
| 4128 | PyUnicode_EncodeUTF7(const Py_UNICODE *s, |
| 4129 | Py_ssize_t size, |
| 4130 | int base64SetO, |
| 4131 | int base64WhiteSpace, |
| 4132 | const char *errors) |
| 4133 | { |
| 4134 | PyObject *result; |
| 4135 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 4136 | if (tmp == NULL) |
| 4137 | return NULL; |
Victor Stinner | 0e36826 | 2011-11-10 20:12:49 +0100 | [diff] [blame] | 4138 | result = _PyUnicode_EncodeUTF7(tmp, base64SetO, |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4139 | base64WhiteSpace, errors); |
| 4140 | Py_DECREF(tmp); |
| 4141 | return result; |
| 4142 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4143 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4144 | #undef IS_BASE64 |
| 4145 | #undef FROM_BASE64 |
| 4146 | #undef TO_BASE64 |
| 4147 | #undef DECODE_DIRECT |
| 4148 | #undef ENCODE_DIRECT |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4149 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4150 | /* --- UTF-8 Codec -------------------------------------------------------- */ |
| 4151 | |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 4152 | static |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4153 | char utf8_code_length[256] = { |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4154 | /* Map UTF-8 encoded prefix byte to sequence length. Zero means |
| 4155 | illegal prefix. See RFC 3629 for details */ |
| 4156 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 00-0F */ |
| 4157 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 4158 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4159 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 4160 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 4161 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
| 4162 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4163 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 70-7F */ |
| 4164 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 80-8F */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4165 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 4166 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4167 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* B0-BF */ |
| 4168 | 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* C0-C1 + C2-CF */ |
| 4169 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* D0-DF */ |
| 4170 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* E0-EF */ |
| 4171 | 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* F0-F4 + F5-FF */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4172 | }; |
| 4173 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4174 | PyObject * |
| 4175 | PyUnicode_DecodeUTF8(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 4176 | Py_ssize_t size, |
| 4177 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4178 | { |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 4179 | return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); |
| 4180 | } |
| 4181 | |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4182 | /* Mask to check or force alignment of a pointer to C 'long' boundaries */ |
| 4183 | #define LONG_PTR_MASK (size_t) (SIZEOF_LONG - 1) |
| 4184 | |
| 4185 | /* Mask to quickly check whether a C 'long' contains a |
| 4186 | non-ASCII, UTF8-encoded char. */ |
| 4187 | #if (SIZEOF_LONG == 8) |
| 4188 | # define ASCII_CHAR_MASK 0x8080808080808080L |
| 4189 | #elif (SIZEOF_LONG == 4) |
| 4190 | # define ASCII_CHAR_MASK 0x80808080L |
| 4191 | #else |
| 4192 | # error C 'long' size should be either 4 or 8! |
| 4193 | #endif |
| 4194 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4195 | /* Scans a UTF-8 string and returns the maximum character to be expected, |
| 4196 | the size of the decoded unicode string and if any major errors were |
| 4197 | encountered. |
| 4198 | |
| 4199 | This function does check basic UTF-8 sanity, it does however NOT CHECK |
| 4200 | if the string contains surrogates, and if all continuation bytes are |
| 4201 | within the correct ranges, these checks are performed in |
| 4202 | PyUnicode_DecodeUTF8Stateful. |
| 4203 | |
| 4204 | If it sets has_errors to 1, it means the value of unicode_size and max_char |
| 4205 | will be bogus and you should not rely on useful information in them. |
| 4206 | */ |
| 4207 | static Py_UCS4 |
| 4208 | utf8_max_char_size_and_has_errors(const char *s, Py_ssize_t string_size, |
| 4209 | Py_ssize_t *unicode_size, Py_ssize_t* consumed, |
| 4210 | int *has_errors) |
| 4211 | { |
| 4212 | Py_ssize_t n; |
| 4213 | Py_ssize_t char_count = 0; |
| 4214 | Py_UCS4 max_char = 127, new_max; |
| 4215 | Py_UCS4 upper_bound; |
| 4216 | const unsigned char *p = (const unsigned char *)s; |
| 4217 | const unsigned char *end = p + string_size; |
| 4218 | const unsigned char *aligned_end = (const unsigned char *) ((size_t) end & ~LONG_PTR_MASK); |
| 4219 | int err = 0; |
| 4220 | |
| 4221 | for (; p < end && !err; ++p, ++char_count) { |
| 4222 | /* Only check value if it's not a ASCII char... */ |
| 4223 | if (*p < 0x80) { |
| 4224 | /* Fast path, see below in PyUnicode_DecodeUTF8Stateful for |
| 4225 | an explanation. */ |
| 4226 | if (!((size_t) p & LONG_PTR_MASK)) { |
| 4227 | /* Help register allocation */ |
| 4228 | register const unsigned char *_p = p; |
| 4229 | while (_p < aligned_end) { |
| 4230 | unsigned long value = *(unsigned long *) _p; |
| 4231 | if (value & ASCII_CHAR_MASK) |
| 4232 | break; |
| 4233 | _p += SIZEOF_LONG; |
| 4234 | char_count += SIZEOF_LONG; |
| 4235 | } |
| 4236 | p = _p; |
| 4237 | if (p == end) |
| 4238 | break; |
| 4239 | } |
| 4240 | } |
| 4241 | if (*p >= 0x80) { |
| 4242 | n = utf8_code_length[*p]; |
| 4243 | new_max = max_char; |
| 4244 | switch (n) { |
| 4245 | /* invalid start byte */ |
| 4246 | case 0: |
| 4247 | err = 1; |
| 4248 | break; |
| 4249 | case 2: |
| 4250 | /* Code points between 0x00FF and 0x07FF inclusive. |
| 4251 | Approximate the upper bound of the code point, |
| 4252 | if this flips over 255 we can be sure it will be more |
| 4253 | than 255 and the string will need 2 bytes per code coint, |
| 4254 | if it stays under or equal to 255, we can be sure 1 byte |
| 4255 | is enough. |
| 4256 | ((*p & 0b00011111) << 6) | 0b00111111 */ |
| 4257 | upper_bound = ((*p & 0x1F) << 6) | 0x3F; |
| 4258 | if (max_char < upper_bound) |
| 4259 | new_max = upper_bound; |
| 4260 | /* Ensure we track at least that we left ASCII space. */ |
| 4261 | if (new_max < 128) |
| 4262 | new_max = 128; |
| 4263 | break; |
| 4264 | case 3: |
| 4265 | /* Between 0x0FFF and 0xFFFF inclusive, so values are |
| 4266 | always > 255 and <= 65535 and will always need 2 bytes. */ |
| 4267 | if (max_char < 65535) |
| 4268 | new_max = 65535; |
| 4269 | break; |
| 4270 | case 4: |
| 4271 | /* Code point will be above 0xFFFF for sure in this case. */ |
| 4272 | new_max = 65537; |
| 4273 | break; |
| 4274 | /* Internal error, this should be caught by the first if */ |
| 4275 | case 1: |
| 4276 | default: |
| 4277 | assert(0 && "Impossible case in utf8_max_char_and_size"); |
| 4278 | err = 1; |
| 4279 | } |
| 4280 | /* Instead of number of overall bytes for this code point, |
Georg Brandl | 7597add | 2011-10-05 16:36:47 +0200 | [diff] [blame] | 4281 | n contains the number of following bytes: */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4282 | --n; |
| 4283 | /* Check if the follow up chars are all valid continuation bytes */ |
| 4284 | if (n >= 1) { |
| 4285 | const unsigned char *cont; |
| 4286 | if ((p + n) >= end) { |
| 4287 | if (consumed == 0) |
| 4288 | /* incomplete data, non-incremental decoding */ |
| 4289 | err = 1; |
| 4290 | break; |
| 4291 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4292 | for (cont = p + 1; cont <= (p + n); ++cont) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4293 | if ((*cont & 0xc0) != 0x80) { |
| 4294 | err = 1; |
| 4295 | break; |
| 4296 | } |
| 4297 | } |
| 4298 | p += n; |
| 4299 | } |
| 4300 | else |
| 4301 | err = 1; |
| 4302 | max_char = new_max; |
| 4303 | } |
| 4304 | } |
| 4305 | |
| 4306 | if (unicode_size) |
| 4307 | *unicode_size = char_count; |
| 4308 | if (has_errors) |
| 4309 | *has_errors = err; |
| 4310 | return max_char; |
| 4311 | } |
| 4312 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4313 | /* Similar to PyUnicode_WRITE but may attempt to widen and resize the string |
| 4314 | in case of errors. Implicit parameters: unicode, kind, data, has_errors, |
| 4315 | onError. Potential resizing overallocates, so the result needs to shrink |
| 4316 | at the end. |
| 4317 | */ |
| 4318 | #define WRITE_MAYBE_FAIL(index, value) \ |
| 4319 | do { \ |
| 4320 | if (has_errors) { \ |
| 4321 | Py_ssize_t pos = index; \ |
| 4322 | if (pos > PyUnicode_GET_LENGTH(unicode) && \ |
| 4323 | unicode_resize(&unicode, pos + pos/8) < 0) \ |
| 4324 | goto onError; \ |
| 4325 | if (unicode_putchar(&unicode, &pos, value) < 0) \ |
| 4326 | goto onError; \ |
| 4327 | } \ |
| 4328 | else \ |
| 4329 | PyUnicode_WRITE(kind, data, index, value); \ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4330 | } while (0) |
| 4331 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4332 | PyObject * |
| 4333 | PyUnicode_DecodeUTF8Stateful(const char *s, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4334 | Py_ssize_t size, |
| 4335 | const char *errors, |
| 4336 | Py_ssize_t *consumed) |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 4337 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4338 | const char *starts = s; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4339 | int n; |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4340 | int k; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 4341 | Py_ssize_t startinpos; |
| 4342 | Py_ssize_t endinpos; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4343 | const char *e, *aligned_end; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4344 | PyObject *unicode; |
Marc-André Lemburg | 9542f48 | 2000-07-17 18:23:13 +0000 | [diff] [blame] | 4345 | const char *errmsg = ""; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4346 | PyObject *errorHandler = NULL; |
| 4347 | PyObject *exc = NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4348 | Py_UCS4 maxchar = 0; |
| 4349 | Py_ssize_t unicode_size; |
| 4350 | Py_ssize_t i; |
| 4351 | int kind; |
| 4352 | void *data; |
| 4353 | int has_errors; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4354 | |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 4355 | if (size == 0) { |
| 4356 | if (consumed) |
| 4357 | *consumed = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4358 | return (PyObject *)PyUnicode_New(0, 0); |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 4359 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4360 | maxchar = utf8_max_char_size_and_has_errors(s, size, &unicode_size, |
| 4361 | consumed, &has_errors); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4362 | if (has_errors) |
Victor Stinner | 62aa4d0 | 2011-11-09 00:03:45 +0100 | [diff] [blame] | 4363 | /* maxchar and size computation might be incorrect; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4364 | code below widens and resizes as necessary. */ |
| 4365 | unicode = PyUnicode_New(size, 127); |
| 4366 | else |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4367 | unicode = PyUnicode_New(unicode_size, maxchar); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4368 | if (!unicode) |
| 4369 | return NULL; |
| 4370 | /* When the string is ASCII only, just use memcpy and return. |
| 4371 | unicode_size may be != size if there is an incomplete UTF-8 |
| 4372 | sequence at the end of the ASCII block. */ |
| 4373 | if (!has_errors && maxchar < 128 && size == unicode_size) { |
| 4374 | Py_MEMCPY(PyUnicode_1BYTE_DATA(unicode), s, unicode_size); |
| 4375 | return unicode; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4376 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4377 | kind = PyUnicode_KIND(unicode); |
| 4378 | data = PyUnicode_DATA(unicode); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4379 | /* Unpack UTF-8 encoded data */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4380 | i = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4381 | e = s + size; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4382 | aligned_end = (const char *) ((size_t) e & ~LONG_PTR_MASK); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4383 | |
| 4384 | while (s < e) { |
Marc-André Lemburg | e12896e | 2000-07-07 17:51:08 +0000 | [diff] [blame] | 4385 | Py_UCS4 ch = (unsigned char)*s; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4386 | |
| 4387 | if (ch < 0x80) { |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4388 | /* Fast path for runs of ASCII characters. Given that common UTF-8 |
| 4389 | input will consist of an overwhelming majority of ASCII |
| 4390 | characters, we try to optimize for this case by checking |
| 4391 | as many characters as a C 'long' can contain. |
| 4392 | First, check if we can do an aligned read, as most CPUs have |
| 4393 | a penalty for unaligned reads. |
| 4394 | */ |
| 4395 | if (!((size_t) s & LONG_PTR_MASK)) { |
| 4396 | /* Help register allocation */ |
| 4397 | register const char *_s = s; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4398 | register Py_ssize_t _i = i; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4399 | while (_s < aligned_end) { |
| 4400 | /* Read a whole long at a time (either 4 or 8 bytes), |
| 4401 | and do a fast unrolled copy if it only contains ASCII |
| 4402 | characters. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4403 | unsigned long value = *(unsigned long *) _s; |
| 4404 | if (value & ASCII_CHAR_MASK) |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4405 | break; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4406 | WRITE_MAYBE_FAIL(_i+0, _s[0]); |
| 4407 | WRITE_MAYBE_FAIL(_i+1, _s[1]); |
| 4408 | WRITE_MAYBE_FAIL(_i+2, _s[2]); |
| 4409 | WRITE_MAYBE_FAIL(_i+3, _s[3]); |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4410 | #if (SIZEOF_LONG == 8) |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4411 | WRITE_MAYBE_FAIL(_i+4, _s[4]); |
| 4412 | WRITE_MAYBE_FAIL(_i+5, _s[5]); |
| 4413 | WRITE_MAYBE_FAIL(_i+6, _s[6]); |
| 4414 | WRITE_MAYBE_FAIL(_i+7, _s[7]); |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4415 | #endif |
| 4416 | _s += SIZEOF_LONG; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4417 | _i += SIZEOF_LONG; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4418 | } |
| 4419 | s = _s; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4420 | i = _i; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4421 | if (s == e) |
| 4422 | break; |
| 4423 | ch = (unsigned char)*s; |
| 4424 | } |
| 4425 | } |
| 4426 | |
| 4427 | if (ch < 0x80) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4428 | WRITE_MAYBE_FAIL(i++, ch); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4429 | s++; |
| 4430 | continue; |
| 4431 | } |
| 4432 | |
| 4433 | n = utf8_code_length[ch]; |
| 4434 | |
Marc-André Lemburg | 9542f48 | 2000-07-17 18:23:13 +0000 | [diff] [blame] | 4435 | if (s + n > e) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4436 | if (consumed) |
| 4437 | break; |
| 4438 | else { |
| 4439 | errmsg = "unexpected end of data"; |
| 4440 | startinpos = s-starts; |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4441 | endinpos = startinpos+1; |
| 4442 | for (k=1; (k < size-startinpos) && ((s[k]&0xC0) == 0x80); k++) |
| 4443 | endinpos++; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4444 | goto utf8Error; |
| 4445 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 4446 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4447 | |
| 4448 | switch (n) { |
| 4449 | |
| 4450 | case 0: |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4451 | errmsg = "invalid start byte"; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4452 | startinpos = s-starts; |
| 4453 | endinpos = startinpos+1; |
| 4454 | goto utf8Error; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4455 | |
| 4456 | case 1: |
Marc-André Lemburg | 9542f48 | 2000-07-17 18:23:13 +0000 | [diff] [blame] | 4457 | errmsg = "internal error"; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4458 | startinpos = s-starts; |
| 4459 | endinpos = startinpos+1; |
| 4460 | goto utf8Error; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4461 | |
| 4462 | case 2: |
Marc-André Lemburg | 9542f48 | 2000-07-17 18:23:13 +0000 | [diff] [blame] | 4463 | if ((s[1] & 0xc0) != 0x80) { |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4464 | errmsg = "invalid continuation byte"; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4465 | startinpos = s-starts; |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4466 | endinpos = startinpos + 1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4467 | goto utf8Error; |
| 4468 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4469 | ch = ((s[0] & 0x1f) << 6) + (s[1] & 0x3f); |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4470 | assert ((ch > 0x007F) && (ch <= 0x07FF)); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4471 | WRITE_MAYBE_FAIL(i++, ch); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4472 | break; |
| 4473 | |
| 4474 | case 3: |
Ezio Melotti | 9bf2b3a | 2010-07-03 04:52:19 +0000 | [diff] [blame] | 4475 | /* Decoding UTF-8 sequences in range \xed\xa0\x80-\xed\xbf\xbf |
| 4476 | will result in surrogates in range d800-dfff. Surrogates are |
| 4477 | not valid UTF-8 so they are rejected. |
| 4478 | See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf |
| 4479 | (table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.txt */ |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 4480 | if ((s[1] & 0xc0) != 0x80 || |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4481 | (s[2] & 0xc0) != 0x80 || |
| 4482 | ((unsigned char)s[0] == 0xE0 && |
| 4483 | (unsigned char)s[1] < 0xA0) || |
| 4484 | ((unsigned char)s[0] == 0xED && |
| 4485 | (unsigned char)s[1] > 0x9F)) { |
| 4486 | errmsg = "invalid continuation byte"; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4487 | startinpos = s-starts; |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4488 | endinpos = startinpos + 1; |
| 4489 | |
| 4490 | /* if s[1] first two bits are 1 and 0, then the invalid |
| 4491 | continuation byte is s[2], so increment endinpos by 1, |
| 4492 | if not, s[1] is invalid and endinpos doesn't need to |
| 4493 | be incremented. */ |
| 4494 | if ((s[1] & 0xC0) == 0x80) |
| 4495 | endinpos++; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4496 | goto utf8Error; |
| 4497 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4498 | ch = ((s[0] & 0x0f) << 12) + ((s[1] & 0x3f) << 6) + (s[2] & 0x3f); |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4499 | assert ((ch > 0x07FF) && (ch <= 0xFFFF)); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4500 | WRITE_MAYBE_FAIL(i++, ch); |
Marc-André Lemburg | e12896e | 2000-07-07 17:51:08 +0000 | [diff] [blame] | 4501 | break; |
| 4502 | |
| 4503 | case 4: |
| 4504 | if ((s[1] & 0xc0) != 0x80 || |
| 4505 | (s[2] & 0xc0) != 0x80 || |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4506 | (s[3] & 0xc0) != 0x80 || |
| 4507 | ((unsigned char)s[0] == 0xF0 && |
| 4508 | (unsigned char)s[1] < 0x90) || |
| 4509 | ((unsigned char)s[0] == 0xF4 && |
| 4510 | (unsigned char)s[1] > 0x8F)) { |
| 4511 | errmsg = "invalid continuation byte"; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4512 | startinpos = s-starts; |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4513 | endinpos = startinpos + 1; |
| 4514 | if ((s[1] & 0xC0) == 0x80) { |
| 4515 | endinpos++; |
| 4516 | if ((s[2] & 0xC0) == 0x80) |
| 4517 | endinpos++; |
| 4518 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4519 | goto utf8Error; |
| 4520 | } |
Marc-André Lemburg | e12896e | 2000-07-07 17:51:08 +0000 | [diff] [blame] | 4521 | ch = ((s[0] & 0x7) << 18) + ((s[1] & 0x3f) << 12) + |
Ezio Melotti | 57221d0 | 2010-07-01 07:32:02 +0000 | [diff] [blame] | 4522 | ((s[2] & 0x3f) << 6) + (s[3] & 0x3f); |
| 4523 | assert ((ch > 0xFFFF) && (ch <= 0x10ffff)); |
| 4524 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4525 | WRITE_MAYBE_FAIL(i++, ch); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4526 | break; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4527 | } |
| 4528 | s += n; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4529 | continue; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 4530 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4531 | utf8Error: |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4532 | if (!has_errors) { |
| 4533 | PyObject *tmp; |
| 4534 | Py_ssize_t k; |
| 4535 | /* We encountered some error that wasn't detected in the original scan, |
| 4536 | e.g. an encoded surrogate character. The original maxchar computation may |
| 4537 | have been incorrect, so redo it now. */ |
| 4538 | for (k = 0, maxchar = 0; k < i; k++) |
| 4539 | maxchar = Py_MAX(maxchar, PyUnicode_READ(kind, data, k)); |
| 4540 | tmp = PyUnicode_New(PyUnicode_GET_LENGTH(unicode), maxchar); |
| 4541 | if (tmp == NULL) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4542 | goto onError; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4543 | PyUnicode_CopyCharacters(tmp, 0, unicode, 0, i); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4544 | Py_DECREF(unicode); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4545 | unicode = tmp; |
| 4546 | has_errors = 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4547 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4548 | if (unicode_decode_call_errorhandler( |
| 4549 | errors, &errorHandler, |
| 4550 | "utf8", errmsg, |
| 4551 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4552 | &unicode, &i)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4553 | goto onError; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4554 | /* Update data because unicode_decode_call_errorhandler might have |
| 4555 | re-created or resized the unicode object. */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4556 | data = PyUnicode_DATA(unicode); |
| 4557 | kind = PyUnicode_KIND(unicode); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4558 | aligned_end = (const char *) ((size_t) e & ~LONG_PTR_MASK); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4559 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4560 | /* Ensure the unicode_size calculation above was correct: */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4561 | assert(has_errors || i == unicode_size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4562 | |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 4563 | if (consumed) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4564 | *consumed = s-starts; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4565 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4566 | /* Adjust length and ready string when it contained errors and |
| 4567 | is of the old resizable kind. */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4568 | if (has_errors) { |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4569 | if (PyUnicode_Resize(&unicode, i) < 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4570 | goto onError; |
| 4571 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4572 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4573 | Py_XDECREF(errorHandler); |
| 4574 | Py_XDECREF(exc); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 4575 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4576 | return unicode; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4577 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4578 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4579 | Py_XDECREF(errorHandler); |
| 4580 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4581 | Py_DECREF(unicode); |
| 4582 | return NULL; |
| 4583 | } |
| 4584 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4585 | #undef WRITE_MAYBE_FAIL |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4586 | |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4587 | #ifdef __APPLE__ |
| 4588 | |
| 4589 | /* Simplified UTF-8 decoder using surrogateescape error handler, |
| 4590 | used to decode the command line arguments on Mac OS X. */ |
| 4591 | |
| 4592 | wchar_t* |
| 4593 | _Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size) |
| 4594 | { |
| 4595 | int n; |
| 4596 | const char *e; |
| 4597 | wchar_t *unicode, *p; |
| 4598 | |
| 4599 | /* Note: size will always be longer than the resulting Unicode |
| 4600 | character count */ |
| 4601 | if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1)) { |
| 4602 | PyErr_NoMemory(); |
| 4603 | return NULL; |
| 4604 | } |
| 4605 | unicode = PyMem_Malloc((size + 1) * sizeof(wchar_t)); |
| 4606 | if (!unicode) |
| 4607 | return NULL; |
| 4608 | |
| 4609 | /* Unpack UTF-8 encoded data */ |
| 4610 | p = unicode; |
| 4611 | e = s + size; |
| 4612 | while (s < e) { |
| 4613 | Py_UCS4 ch = (unsigned char)*s; |
| 4614 | |
| 4615 | if (ch < 0x80) { |
| 4616 | *p++ = (wchar_t)ch; |
| 4617 | s++; |
| 4618 | continue; |
| 4619 | } |
| 4620 | |
| 4621 | n = utf8_code_length[ch]; |
| 4622 | if (s + n > e) { |
| 4623 | goto surrogateescape; |
| 4624 | } |
| 4625 | |
| 4626 | switch (n) { |
| 4627 | case 0: |
| 4628 | case 1: |
| 4629 | goto surrogateescape; |
| 4630 | |
| 4631 | case 2: |
| 4632 | if ((s[1] & 0xc0) != 0x80) |
| 4633 | goto surrogateescape; |
| 4634 | ch = ((s[0] & 0x1f) << 6) + (s[1] & 0x3f); |
| 4635 | assert ((ch > 0x007F) && (ch <= 0x07FF)); |
| 4636 | *p++ = (wchar_t)ch; |
| 4637 | break; |
| 4638 | |
| 4639 | case 3: |
| 4640 | /* Decoding UTF-8 sequences in range \xed\xa0\x80-\xed\xbf\xbf |
| 4641 | will result in surrogates in range d800-dfff. Surrogates are |
| 4642 | not valid UTF-8 so they are rejected. |
| 4643 | See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf |
| 4644 | (table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.txt */ |
| 4645 | if ((s[1] & 0xc0) != 0x80 || |
| 4646 | (s[2] & 0xc0) != 0x80 || |
| 4647 | ((unsigned char)s[0] == 0xE0 && |
| 4648 | (unsigned char)s[1] < 0xA0) || |
| 4649 | ((unsigned char)s[0] == 0xED && |
| 4650 | (unsigned char)s[1] > 0x9F)) { |
| 4651 | |
| 4652 | goto surrogateescape; |
| 4653 | } |
| 4654 | ch = ((s[0] & 0x0f) << 12) + ((s[1] & 0x3f) << 6) + (s[2] & 0x3f); |
| 4655 | assert ((ch > 0x07FF) && (ch <= 0xFFFF)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4656 | *p++ = (wchar_t)ch; |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4657 | break; |
| 4658 | |
| 4659 | case 4: |
| 4660 | if ((s[1] & 0xc0) != 0x80 || |
| 4661 | (s[2] & 0xc0) != 0x80 || |
| 4662 | (s[3] & 0xc0) != 0x80 || |
| 4663 | ((unsigned char)s[0] == 0xF0 && |
| 4664 | (unsigned char)s[1] < 0x90) || |
| 4665 | ((unsigned char)s[0] == 0xF4 && |
| 4666 | (unsigned char)s[1] > 0x8F)) { |
| 4667 | goto surrogateescape; |
| 4668 | } |
| 4669 | ch = ((s[0] & 0x7) << 18) + ((s[1] & 0x3f) << 12) + |
| 4670 | ((s[2] & 0x3f) << 6) + (s[3] & 0x3f); |
| 4671 | assert ((ch > 0xFFFF) && (ch <= 0x10ffff)); |
| 4672 | |
| 4673 | #if SIZEOF_WCHAR_T == 4 |
| 4674 | *p++ = (wchar_t)ch; |
| 4675 | #else |
| 4676 | /* compute and append the two surrogates: */ |
| 4677 | |
| 4678 | /* translate from 10000..10FFFF to 0..FFFF */ |
| 4679 | ch -= 0x10000; |
| 4680 | |
| 4681 | /* high surrogate = top 10 bits added to D800 */ |
| 4682 | *p++ = (wchar_t)(0xD800 + (ch >> 10)); |
| 4683 | |
| 4684 | /* low surrogate = bottom 10 bits added to DC00 */ |
| 4685 | *p++ = (wchar_t)(0xDC00 + (ch & 0x03FF)); |
| 4686 | #endif |
| 4687 | break; |
| 4688 | } |
| 4689 | s += n; |
| 4690 | continue; |
| 4691 | |
| 4692 | surrogateescape: |
| 4693 | *p++ = 0xDC00 + ch; |
| 4694 | s++; |
| 4695 | } |
| 4696 | *p = L'\0'; |
| 4697 | return unicode; |
| 4698 | } |
| 4699 | |
| 4700 | #endif /* __APPLE__ */ |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4701 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4702 | /* Primary internal function which creates utf8 encoded bytes objects. |
| 4703 | |
| 4704 | Allocation strategy: if the string is short, convert into a stack buffer |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4705 | and allocate exactly as much space needed at the end. Else allocate the |
| 4706 | maximum possible needed (4 result bytes per Unicode character), and return |
| 4707 | the excess memory at the end. |
Martin v. Löwis | 2a7ff35 | 2002-04-21 09:59:45 +0000 | [diff] [blame] | 4708 | */ |
Tim Peters | 7e3d961 | 2002-04-21 03:26:37 +0000 | [diff] [blame] | 4709 | PyObject * |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4710 | _PyUnicode_AsUTF8String(PyObject *unicode, const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4711 | { |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4712 | #define MAX_SHORT_UNICHARS 300 /* largest size we'll do on the stack */ |
Tim Peters | 0eca65c | 2002-04-21 17:28:06 +0000 | [diff] [blame] | 4713 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 4714 | Py_ssize_t i; /* index into s of next input byte */ |
| 4715 | PyObject *result; /* result string object */ |
| 4716 | char *p; /* next free byte in output buffer */ |
| 4717 | Py_ssize_t nallocated; /* number of result bytes allocated */ |
| 4718 | Py_ssize_t nneeded; /* number of result bytes needed */ |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4719 | char stackbuf[MAX_SHORT_UNICHARS * 4]; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 4720 | PyObject *errorHandler = NULL; |
| 4721 | PyObject *exc = NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4722 | int kind; |
| 4723 | void *data; |
| 4724 | Py_ssize_t size; |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 4725 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4726 | if (!PyUnicode_Check(unicode)) { |
| 4727 | PyErr_BadArgument(); |
| 4728 | return NULL; |
| 4729 | } |
| 4730 | |
| 4731 | if (PyUnicode_READY(unicode) == -1) |
| 4732 | return NULL; |
| 4733 | |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 4734 | if (PyUnicode_UTF8(unicode)) |
| 4735 | return PyBytes_FromStringAndSize(PyUnicode_UTF8(unicode), |
| 4736 | PyUnicode_UTF8_LENGTH(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4737 | |
| 4738 | kind = PyUnicode_KIND(unicode); |
| 4739 | data = PyUnicode_DATA(unicode); |
| 4740 | size = PyUnicode_GET_LENGTH(unicode); |
| 4741 | |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4742 | assert(size >= 0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4743 | |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4744 | if (size <= MAX_SHORT_UNICHARS) { |
| 4745 | /* Write into the stack buffer; nallocated can't overflow. |
| 4746 | * At the end, we'll allocate exactly as much heap space as it |
| 4747 | * turns out we need. |
| 4748 | */ |
| 4749 | nallocated = Py_SAFE_DOWNCAST(sizeof(stackbuf), size_t, int); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 4750 | result = NULL; /* will allocate after we're done */ |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4751 | p = stackbuf; |
| 4752 | } |
| 4753 | else { |
| 4754 | /* Overallocate on the heap, and give the excess back at the end. */ |
| 4755 | nallocated = size * 4; |
| 4756 | if (nallocated / 4 != size) /* overflow! */ |
| 4757 | return PyErr_NoMemory(); |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 4758 | result = PyBytes_FromStringAndSize(NULL, nallocated); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 4759 | if (result == NULL) |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4760 | return NULL; |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 4761 | p = PyBytes_AS_STRING(result); |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4762 | } |
Martin v. Löwis | 2a7ff35 | 2002-04-21 09:59:45 +0000 | [diff] [blame] | 4763 | |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4764 | for (i = 0; i < size;) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4765 | Py_UCS4 ch = PyUnicode_READ(kind, data, i++); |
Marc-André Lemburg | 3688a88 | 2002-02-06 18:09:02 +0000 | [diff] [blame] | 4766 | |
Martin v. Löwis | 2a7ff35 | 2002-04-21 09:59:45 +0000 | [diff] [blame] | 4767 | if (ch < 0x80) |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4768 | /* Encode ASCII */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4769 | *p++ = (char) ch; |
Marc-André Lemburg | 3688a88 | 2002-02-06 18:09:02 +0000 | [diff] [blame] | 4770 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4771 | else if (ch < 0x0800) { |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4772 | /* Encode Latin-1 */ |
Marc-André Lemburg | dc724d6 | 2002-02-06 18:20:19 +0000 | [diff] [blame] | 4773 | *p++ = (char)(0xc0 | (ch >> 6)); |
| 4774 | *p++ = (char)(0x80 | (ch & 0x3f)); |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4775 | } else if (0xD800 <= ch && ch <= 0xDFFF) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4776 | Py_ssize_t newpos; |
| 4777 | PyObject *rep; |
| 4778 | Py_ssize_t repsize, k, startpos; |
| 4779 | startpos = i-1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4780 | rep = unicode_encode_call_errorhandler( |
| 4781 | errors, &errorHandler, "utf-8", "surrogates not allowed", |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4782 | unicode, &exc, startpos, startpos+1, &newpos); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4783 | if (!rep) |
| 4784 | goto error; |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4785 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4786 | if (PyBytes_Check(rep)) |
| 4787 | repsize = PyBytes_GET_SIZE(rep); |
| 4788 | else |
| 4789 | repsize = PyUnicode_GET_SIZE(rep); |
| 4790 | |
| 4791 | if (repsize > 4) { |
| 4792 | Py_ssize_t offset; |
| 4793 | |
| 4794 | if (result == NULL) |
| 4795 | offset = p - stackbuf; |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4796 | else |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4797 | offset = p - PyBytes_AS_STRING(result); |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4798 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4799 | if (nallocated > PY_SSIZE_T_MAX - repsize + 4) { |
| 4800 | /* integer overflow */ |
| 4801 | PyErr_NoMemory(); |
| 4802 | goto error; |
| 4803 | } |
| 4804 | nallocated += repsize - 4; |
| 4805 | if (result != NULL) { |
| 4806 | if (_PyBytes_Resize(&result, nallocated) < 0) |
| 4807 | goto error; |
| 4808 | } else { |
| 4809 | result = PyBytes_FromStringAndSize(NULL, nallocated); |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4810 | if (result == NULL) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4811 | goto error; |
| 4812 | Py_MEMCPY(PyBytes_AS_STRING(result), stackbuf, offset); |
| 4813 | } |
| 4814 | p = PyBytes_AS_STRING(result) + offset; |
| 4815 | } |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4816 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4817 | if (PyBytes_Check(rep)) { |
| 4818 | char *prep = PyBytes_AS_STRING(rep); |
| 4819 | for(k = repsize; k > 0; k--) |
| 4820 | *p++ = *prep++; |
| 4821 | } else /* rep is unicode */ { |
Victor Stinner | a98b28c | 2011-11-10 20:21:49 +0100 | [diff] [blame] | 4822 | enum PyUnicode_Kind repkind; |
| 4823 | void *repdata; |
| 4824 | |
| 4825 | if (PyUnicode_READY(rep) < 0) { |
| 4826 | Py_DECREF(rep); |
| 4827 | goto error; |
| 4828 | } |
| 4829 | repkind = PyUnicode_KIND(rep); |
| 4830 | repdata = PyUnicode_DATA(rep); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4831 | |
| 4832 | for(k=0; k<repsize; k++) { |
Victor Stinner | a98b28c | 2011-11-10 20:21:49 +0100 | [diff] [blame] | 4833 | Py_UCS4 c = PyUnicode_READ(repkind, repdata, k); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4834 | if (0x80 <= c) { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 4835 | raise_encode_exception(&exc, "utf-8", |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4836 | unicode, |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 4837 | i-1, i, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4838 | "surrogates not allowed"); |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4839 | goto error; |
| 4840 | } |
Victor Stinner | a98b28c | 2011-11-10 20:21:49 +0100 | [diff] [blame] | 4841 | *p++ = (char)c; |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4842 | } |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4843 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4844 | Py_DECREF(rep); |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 4845 | } else if (ch < 0x10000) { |
| 4846 | *p++ = (char)(0xe0 | (ch >> 12)); |
| 4847 | *p++ = (char)(0x80 | ((ch >> 6) & 0x3f)); |
| 4848 | *p++ = (char)(0x80 | (ch & 0x3f)); |
| 4849 | } else /* ch >= 0x10000 */ { |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4850 | /* Encode UCS4 Unicode ordinals */ |
| 4851 | *p++ = (char)(0xf0 | (ch >> 18)); |
| 4852 | *p++ = (char)(0x80 | ((ch >> 12) & 0x3f)); |
| 4853 | *p++ = (char)(0x80 | ((ch >> 6) & 0x3f)); |
| 4854 | *p++ = (char)(0x80 | (ch & 0x3f)); |
| 4855 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4856 | } |
Tim Peters | 0eca65c | 2002-04-21 17:28:06 +0000 | [diff] [blame] | 4857 | |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 4858 | if (result == NULL) { |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4859 | /* This was stack allocated. */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 4860 | nneeded = p - stackbuf; |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4861 | assert(nneeded <= nallocated); |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 4862 | result = PyBytes_FromStringAndSize(stackbuf, nneeded); |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4863 | } |
| 4864 | else { |
Christian Heimes | f386311 | 2007-11-22 07:46:41 +0000 | [diff] [blame] | 4865 | /* Cut back to size actually needed. */ |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 4866 | nneeded = p - PyBytes_AS_STRING(result); |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4867 | assert(nneeded <= nallocated); |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 4868 | _PyBytes_Resize(&result, nneeded); |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4869 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4870 | |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 4871 | Py_XDECREF(errorHandler); |
| 4872 | Py_XDECREF(exc); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 4873 | return result; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 4874 | error: |
| 4875 | Py_XDECREF(errorHandler); |
| 4876 | Py_XDECREF(exc); |
| 4877 | Py_XDECREF(result); |
| 4878 | return NULL; |
Martin v. Löwis | 2a7ff35 | 2002-04-21 09:59:45 +0000 | [diff] [blame] | 4879 | |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4880 | #undef MAX_SHORT_UNICHARS |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4881 | } |
| 4882 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4883 | PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4884 | PyUnicode_EncodeUTF8(const Py_UNICODE *s, |
| 4885 | Py_ssize_t size, |
| 4886 | const char *errors) |
| 4887 | { |
| 4888 | PyObject *v, *unicode; |
| 4889 | |
| 4890 | unicode = PyUnicode_FromUnicode(s, size); |
| 4891 | if (unicode == NULL) |
| 4892 | return NULL; |
| 4893 | v = _PyUnicode_AsUTF8String(unicode, errors); |
| 4894 | Py_DECREF(unicode); |
| 4895 | return v; |
| 4896 | } |
| 4897 | |
| 4898 | PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4899 | PyUnicode_AsUTF8String(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4900 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4901 | return _PyUnicode_AsUTF8String(unicode, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4902 | } |
| 4903 | |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4904 | /* --- UTF-32 Codec ------------------------------------------------------- */ |
| 4905 | |
| 4906 | PyObject * |
| 4907 | PyUnicode_DecodeUTF32(const char *s, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4908 | Py_ssize_t size, |
| 4909 | const char *errors, |
| 4910 | int *byteorder) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4911 | { |
| 4912 | return PyUnicode_DecodeUTF32Stateful(s, size, errors, byteorder, NULL); |
| 4913 | } |
| 4914 | |
| 4915 | PyObject * |
| 4916 | PyUnicode_DecodeUTF32Stateful(const char *s, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4917 | Py_ssize_t size, |
| 4918 | const char *errors, |
| 4919 | int *byteorder, |
| 4920 | Py_ssize_t *consumed) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4921 | { |
| 4922 | const char *starts = s; |
| 4923 | Py_ssize_t startinpos; |
| 4924 | Py_ssize_t endinpos; |
| 4925 | Py_ssize_t outpos; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4926 | PyObject *unicode; |
Mark Dickinson | 7db923c | 2010-06-12 09:10:14 +0000 | [diff] [blame] | 4927 | const unsigned char *q, *e; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4928 | int bo = 0; /* assume native ordering by default */ |
| 4929 | const char *errmsg = ""; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4930 | /* Offsets from q for retrieving bytes in the right order. */ |
| 4931 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
| 4932 | int iorder[] = {0, 1, 2, 3}; |
| 4933 | #else |
| 4934 | int iorder[] = {3, 2, 1, 0}; |
| 4935 | #endif |
| 4936 | PyObject *errorHandler = NULL; |
| 4937 | PyObject *exc = NULL; |
Victor Stinner | 313a120 | 2010-06-11 23:56:51 +0000 | [diff] [blame] | 4938 | |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4939 | q = (unsigned char *)s; |
| 4940 | e = q + size; |
| 4941 | |
| 4942 | if (byteorder) |
| 4943 | bo = *byteorder; |
| 4944 | |
| 4945 | /* Check for BOM marks (U+FEFF) in the input and adjust current |
| 4946 | byte order setting accordingly. In native mode, the leading BOM |
| 4947 | mark is skipped, in all other modes, it is copied to the output |
| 4948 | stream as-is (giving a ZWNBSP character). */ |
| 4949 | if (bo == 0) { |
| 4950 | if (size >= 4) { |
| 4951 | const Py_UCS4 bom = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4952 | (q[iorder[1]] << 8) | q[iorder[0]]; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4953 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4954 | if (bom == 0x0000FEFF) { |
| 4955 | q += 4; |
| 4956 | bo = -1; |
| 4957 | } |
| 4958 | else if (bom == 0xFFFE0000) { |
| 4959 | q += 4; |
| 4960 | bo = 1; |
| 4961 | } |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4962 | #else |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4963 | if (bom == 0x0000FEFF) { |
| 4964 | q += 4; |
| 4965 | bo = 1; |
| 4966 | } |
| 4967 | else if (bom == 0xFFFE0000) { |
| 4968 | q += 4; |
| 4969 | bo = -1; |
| 4970 | } |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4971 | #endif |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4972 | } |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4973 | } |
| 4974 | |
| 4975 | if (bo == -1) { |
| 4976 | /* force LE */ |
| 4977 | iorder[0] = 0; |
| 4978 | iorder[1] = 1; |
| 4979 | iorder[2] = 2; |
| 4980 | iorder[3] = 3; |
| 4981 | } |
| 4982 | else if (bo == 1) { |
| 4983 | /* force BE */ |
| 4984 | iorder[0] = 3; |
| 4985 | iorder[1] = 2; |
| 4986 | iorder[2] = 1; |
| 4987 | iorder[3] = 0; |
| 4988 | } |
| 4989 | |
Antoine Pitrou | cc0cfd3 | 2010-06-11 21:46:32 +0000 | [diff] [blame] | 4990 | /* This might be one to much, because of a BOM */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4991 | unicode = PyUnicode_New((size+3)/4, 127); |
Antoine Pitrou | cc0cfd3 | 2010-06-11 21:46:32 +0000 | [diff] [blame] | 4992 | if (!unicode) |
| 4993 | return NULL; |
| 4994 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4995 | return unicode; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4996 | outpos = 0; |
Antoine Pitrou | cc0cfd3 | 2010-06-11 21:46:32 +0000 | [diff] [blame] | 4997 | |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4998 | while (q < e) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4999 | Py_UCS4 ch; |
| 5000 | /* remaining bytes at the end? (size should be divisible by 4) */ |
| 5001 | if (e-q<4) { |
| 5002 | if (consumed) |
| 5003 | break; |
| 5004 | errmsg = "truncated data"; |
| 5005 | startinpos = ((const char *)q)-starts; |
| 5006 | endinpos = ((const char *)e)-starts; |
| 5007 | goto utf32Error; |
| 5008 | /* The remaining input chars are ignored if the callback |
| 5009 | chooses to skip the input */ |
| 5010 | } |
| 5011 | ch = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) | |
| 5012 | (q[iorder[1]] << 8) | q[iorder[0]]; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5013 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5014 | if (ch >= 0x110000) |
| 5015 | { |
| 5016 | errmsg = "codepoint not in range(0x110000)"; |
| 5017 | startinpos = ((const char *)q)-starts; |
| 5018 | endinpos = startinpos+4; |
| 5019 | goto utf32Error; |
| 5020 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5021 | if (unicode_putchar(&unicode, &outpos, ch) < 0) |
| 5022 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5023 | q += 4; |
| 5024 | continue; |
| 5025 | utf32Error: |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5026 | if (unicode_decode_call_errorhandler( |
| 5027 | errors, &errorHandler, |
| 5028 | "utf32", errmsg, |
| 5029 | &starts, (const char **)&e, &startinpos, &endinpos, &exc, (const char **)&q, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5030 | &unicode, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5031 | goto onError; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5032 | } |
| 5033 | |
| 5034 | if (byteorder) |
| 5035 | *byteorder = bo; |
| 5036 | |
| 5037 | if (consumed) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5038 | *consumed = (const char *)q-starts; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5039 | |
| 5040 | /* Adjust length */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5041 | if (PyUnicode_Resize(&unicode, outpos) < 0) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5042 | goto onError; |
| 5043 | |
| 5044 | Py_XDECREF(errorHandler); |
| 5045 | Py_XDECREF(exc); |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 5046 | #ifndef DONT_MAKE_RESULT_READY |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 5047 | if (_PyUnicode_READY_REPLACE(&unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5048 | Py_DECREF(unicode); |
| 5049 | return NULL; |
| 5050 | } |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 5051 | #endif |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 5052 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5053 | return unicode; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5054 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5055 | onError: |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5056 | Py_DECREF(unicode); |
| 5057 | Py_XDECREF(errorHandler); |
| 5058 | Py_XDECREF(exc); |
| 5059 | return NULL; |
| 5060 | } |
| 5061 | |
| 5062 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5063 | _PyUnicode_EncodeUTF32(PyObject *str, |
| 5064 | const char *errors, |
| 5065 | int byteorder) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5066 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5067 | int kind; |
| 5068 | void *data; |
| 5069 | Py_ssize_t len; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5070 | PyObject *v; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5071 | unsigned char *p; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5072 | Py_ssize_t nsize, bytesize, i; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5073 | /* Offsets from p for storing byte pairs in the right order. */ |
| 5074 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
| 5075 | int iorder[] = {0, 1, 2, 3}; |
| 5076 | #else |
| 5077 | int iorder[] = {3, 2, 1, 0}; |
| 5078 | #endif |
| 5079 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5080 | #define STORECHAR(CH) \ |
| 5081 | do { \ |
| 5082 | p[iorder[3]] = ((CH) >> 24) & 0xff; \ |
| 5083 | p[iorder[2]] = ((CH) >> 16) & 0xff; \ |
| 5084 | p[iorder[1]] = ((CH) >> 8) & 0xff; \ |
| 5085 | p[iorder[0]] = (CH) & 0xff; \ |
| 5086 | p += 4; \ |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5087 | } while(0) |
| 5088 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5089 | if (!PyUnicode_Check(str)) { |
| 5090 | PyErr_BadArgument(); |
| 5091 | return NULL; |
| 5092 | } |
| 5093 | if (PyUnicode_READY(str) < 0) |
| 5094 | return NULL; |
| 5095 | kind = PyUnicode_KIND(str); |
| 5096 | data = PyUnicode_DATA(str); |
| 5097 | len = PyUnicode_GET_LENGTH(str); |
| 5098 | |
| 5099 | nsize = len + (byteorder == 0); |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 5100 | bytesize = nsize * 4; |
| 5101 | if (bytesize / 4 != nsize) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5102 | return PyErr_NoMemory(); |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5103 | v = PyBytes_FromStringAndSize(NULL, bytesize); |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5104 | if (v == NULL) |
| 5105 | return NULL; |
| 5106 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5107 | p = (unsigned char *)PyBytes_AS_STRING(v); |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5108 | if (byteorder == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5109 | STORECHAR(0xFEFF); |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5110 | if (len == 0) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 5111 | goto done; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5112 | |
| 5113 | if (byteorder == -1) { |
| 5114 | /* force LE */ |
| 5115 | iorder[0] = 0; |
| 5116 | iorder[1] = 1; |
| 5117 | iorder[2] = 2; |
| 5118 | iorder[3] = 3; |
| 5119 | } |
| 5120 | else if (byteorder == 1) { |
| 5121 | /* force BE */ |
| 5122 | iorder[0] = 3; |
| 5123 | iorder[1] = 2; |
| 5124 | iorder[2] = 1; |
| 5125 | iorder[3] = 0; |
| 5126 | } |
| 5127 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5128 | for (i = 0; i < len; i++) |
| 5129 | STORECHAR(PyUnicode_READ(kind, data, i)); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 5130 | |
| 5131 | done: |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5132 | return v; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5133 | #undef STORECHAR |
| 5134 | } |
| 5135 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5136 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5137 | PyUnicode_EncodeUTF32(const Py_UNICODE *s, |
| 5138 | Py_ssize_t size, |
| 5139 | const char *errors, |
| 5140 | int byteorder) |
| 5141 | { |
| 5142 | PyObject *result; |
| 5143 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 5144 | if (tmp == NULL) |
| 5145 | return NULL; |
| 5146 | result = _PyUnicode_EncodeUTF32(tmp, errors, byteorder); |
| 5147 | Py_DECREF(tmp); |
| 5148 | return result; |
| 5149 | } |
| 5150 | |
| 5151 | PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5152 | PyUnicode_AsUTF32String(PyObject *unicode) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5153 | { |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5154 | return PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(unicode), |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5155 | PyUnicode_GET_SIZE(unicode), |
| 5156 | NULL, |
| 5157 | 0); |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5158 | } |
| 5159 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5160 | /* --- UTF-16 Codec ------------------------------------------------------- */ |
| 5161 | |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5162 | PyObject * |
| 5163 | PyUnicode_DecodeUTF16(const char *s, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5164 | Py_ssize_t size, |
| 5165 | const char *errors, |
| 5166 | int *byteorder) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5167 | { |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5168 | return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL); |
| 5169 | } |
| 5170 | |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5171 | /* Two masks for fast checking of whether a C 'long' may contain |
| 5172 | UTF16-encoded surrogate characters. This is an efficient heuristic, |
| 5173 | assuming that non-surrogate characters with a code point >= 0x8000 are |
| 5174 | rare in most input. |
| 5175 | FAST_CHAR_MASK is used when the input is in native byte ordering, |
| 5176 | SWAPPED_FAST_CHAR_MASK when the input is in byteswapped ordering. |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5177 | */ |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5178 | #if (SIZEOF_LONG == 8) |
| 5179 | # define FAST_CHAR_MASK 0x8000800080008000L |
| 5180 | # define SWAPPED_FAST_CHAR_MASK 0x0080008000800080L |
| 5181 | #elif (SIZEOF_LONG == 4) |
| 5182 | # define FAST_CHAR_MASK 0x80008000L |
| 5183 | # define SWAPPED_FAST_CHAR_MASK 0x00800080L |
| 5184 | #else |
| 5185 | # error C 'long' size should be either 4 or 8! |
| 5186 | #endif |
| 5187 | |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5188 | PyObject * |
| 5189 | PyUnicode_DecodeUTF16Stateful(const char *s, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5190 | Py_ssize_t size, |
| 5191 | const char *errors, |
| 5192 | int *byteorder, |
| 5193 | Py_ssize_t *consumed) |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5194 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5195 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 5196 | Py_ssize_t startinpos; |
| 5197 | Py_ssize_t endinpos; |
| 5198 | Py_ssize_t outpos; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5199 | PyObject *unicode; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5200 | const unsigned char *q, *e, *aligned_end; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5201 | int bo = 0; /* assume native ordering by default */ |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5202 | int native_ordering = 0; |
Marc-André Lemburg | 9542f48 | 2000-07-17 18:23:13 +0000 | [diff] [blame] | 5203 | const char *errmsg = ""; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5204 | /* Offsets from q for retrieving byte pairs in the right order. */ |
| 5205 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
| 5206 | int ihi = 1, ilo = 0; |
| 5207 | #else |
| 5208 | int ihi = 0, ilo = 1; |
| 5209 | #endif |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5210 | PyObject *errorHandler = NULL; |
| 5211 | PyObject *exc = NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5212 | |
| 5213 | /* Note: size will always be longer than the resulting Unicode |
| 5214 | character count */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5215 | unicode = PyUnicode_New(size, 127); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5216 | if (!unicode) |
| 5217 | return NULL; |
| 5218 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5219 | return unicode; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5220 | outpos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5221 | |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5222 | q = (unsigned char *)s; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5223 | e = q + size - 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5224 | |
| 5225 | if (byteorder) |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5226 | bo = *byteorder; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5227 | |
Marc-André Lemburg | 489b56e | 2001-05-21 20:30:15 +0000 | [diff] [blame] | 5228 | /* Check for BOM marks (U+FEFF) in the input and adjust current |
| 5229 | byte order setting accordingly. In native mode, the leading BOM |
| 5230 | mark is skipped, in all other modes, it is copied to the output |
| 5231 | stream as-is (giving a ZWNBSP character). */ |
| 5232 | if (bo == 0) { |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5233 | if (size >= 2) { |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 5234 | const Py_UCS4 bom = (q[ihi] << 8) | q[ilo]; |
Marc-André Lemburg | 489b56e | 2001-05-21 20:30:15 +0000 | [diff] [blame] | 5235 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5236 | if (bom == 0xFEFF) { |
| 5237 | q += 2; |
| 5238 | bo = -1; |
| 5239 | } |
| 5240 | else if (bom == 0xFFFE) { |
| 5241 | q += 2; |
| 5242 | bo = 1; |
| 5243 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 5244 | #else |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5245 | if (bom == 0xFEFF) { |
| 5246 | q += 2; |
| 5247 | bo = 1; |
| 5248 | } |
| 5249 | else if (bom == 0xFFFE) { |
| 5250 | q += 2; |
| 5251 | bo = -1; |
| 5252 | } |
Marc-André Lemburg | 489b56e | 2001-05-21 20:30:15 +0000 | [diff] [blame] | 5253 | #endif |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5254 | } |
Marc-André Lemburg | 489b56e | 2001-05-21 20:30:15 +0000 | [diff] [blame] | 5255 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5256 | |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5257 | if (bo == -1) { |
| 5258 | /* force LE */ |
| 5259 | ihi = 1; |
| 5260 | ilo = 0; |
| 5261 | } |
| 5262 | else if (bo == 1) { |
| 5263 | /* force BE */ |
| 5264 | ihi = 0; |
| 5265 | ilo = 1; |
| 5266 | } |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5267 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
| 5268 | native_ordering = ilo < ihi; |
| 5269 | #else |
| 5270 | native_ordering = ilo > ihi; |
| 5271 | #endif |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5272 | |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5273 | aligned_end = (const unsigned char *) ((size_t) e & ~LONG_PTR_MASK); |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5274 | while (q < e) { |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 5275 | Py_UCS4 ch; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5276 | /* First check for possible aligned read of a C 'long'. Unaligned |
| 5277 | reads are more expensive, better to defer to another iteration. */ |
| 5278 | if (!((size_t) q & LONG_PTR_MASK)) { |
| 5279 | /* Fast path for runs of non-surrogate chars. */ |
| 5280 | register const unsigned char *_q = q; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5281 | int kind = PyUnicode_KIND(unicode); |
| 5282 | void *data = PyUnicode_DATA(unicode); |
| 5283 | while (_q < aligned_end) { |
| 5284 | unsigned long block = * (unsigned long *) _q; |
| 5285 | unsigned short *pblock = (unsigned short*)█ |
| 5286 | Py_UCS4 maxch; |
| 5287 | if (native_ordering) { |
| 5288 | /* Can use buffer directly */ |
| 5289 | if (block & FAST_CHAR_MASK) |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5290 | break; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5291 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5292 | else { |
| 5293 | /* Need to byte-swap */ |
| 5294 | unsigned char *_p = (unsigned char*)pblock; |
| 5295 | if (block & SWAPPED_FAST_CHAR_MASK) |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5296 | break; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5297 | _p[0] = _q[1]; |
| 5298 | _p[1] = _q[0]; |
| 5299 | _p[2] = _q[3]; |
| 5300 | _p[3] = _q[2]; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5301 | #if (SIZEOF_LONG == 8) |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5302 | _p[4] = _q[5]; |
| 5303 | _p[5] = _q[4]; |
| 5304 | _p[6] = _q[7]; |
| 5305 | _p[7] = _q[6]; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5306 | #endif |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5307 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5308 | maxch = Py_MAX(pblock[0], pblock[1]); |
| 5309 | #if SIZEOF_LONG == 8 |
| 5310 | maxch = Py_MAX(maxch, Py_MAX(pblock[2], pblock[3])); |
| 5311 | #endif |
| 5312 | if (maxch > PyUnicode_MAX_CHAR_VALUE(unicode)) { |
| 5313 | if (unicode_widen(&unicode, maxch) < 0) |
| 5314 | goto onError; |
| 5315 | kind = PyUnicode_KIND(unicode); |
| 5316 | data = PyUnicode_DATA(unicode); |
| 5317 | } |
| 5318 | PyUnicode_WRITE(kind, data, outpos++, pblock[0]); |
| 5319 | PyUnicode_WRITE(kind, data, outpos++, pblock[1]); |
| 5320 | #if SIZEOF_LONG == 8 |
| 5321 | PyUnicode_WRITE(kind, data, outpos++, pblock[2]); |
| 5322 | PyUnicode_WRITE(kind, data, outpos++, pblock[3]); |
| 5323 | #endif |
| 5324 | _q += SIZEOF_LONG; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5325 | } |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5326 | q = _q; |
| 5327 | if (q >= e) |
| 5328 | break; |
| 5329 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5330 | ch = (q[ihi] << 8) | q[ilo]; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5331 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 5332 | q += 2; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5333 | |
| 5334 | if (ch < 0xD800 || ch > 0xDFFF) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5335 | if (unicode_putchar(&unicode, &outpos, ch) < 0) |
| 5336 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5337 | continue; |
| 5338 | } |
| 5339 | |
| 5340 | /* UTF-16 code pair: */ |
| 5341 | if (q > e) { |
| 5342 | errmsg = "unexpected end of data"; |
| 5343 | startinpos = (((const char *)q) - 2) - starts; |
| 5344 | endinpos = ((const char *)e) + 1 - starts; |
| 5345 | goto utf16Error; |
| 5346 | } |
| 5347 | if (0xD800 <= ch && ch <= 0xDBFF) { |
| 5348 | Py_UNICODE ch2 = (q[ihi] << 8) | q[ilo]; |
| 5349 | q += 2; |
| 5350 | if (0xDC00 <= ch2 && ch2 <= 0xDFFF) { |
Victor Stinner | 62aa4d0 | 2011-11-09 00:03:45 +0100 | [diff] [blame] | 5351 | if (unicode_putchar(&unicode, &outpos, |
| 5352 | (((ch & 0x3FF)<<10) | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5353 | (ch2 & 0x3FF)) + 0x10000) < 0) |
| 5354 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5355 | continue; |
| 5356 | } |
| 5357 | else { |
Martin v. Löwis | 0ba70cc | 2001-06-26 22:22:37 +0000 | [diff] [blame] | 5358 | errmsg = "illegal UTF-16 surrogate"; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5359 | startinpos = (((const char *)q)-4)-starts; |
| 5360 | endinpos = startinpos+2; |
| 5361 | goto utf16Error; |
| 5362 | } |
| 5363 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 5364 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5365 | errmsg = "illegal encoding"; |
| 5366 | startinpos = (((const char *)q)-2)-starts; |
| 5367 | endinpos = startinpos+2; |
| 5368 | /* Fall through to report the error */ |
Martin v. Löwis | 0ba70cc | 2001-06-26 22:22:37 +0000 | [diff] [blame] | 5369 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5370 | utf16Error: |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5371 | if (unicode_decode_call_errorhandler( |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5372 | errors, |
| 5373 | &errorHandler, |
| 5374 | "utf16", errmsg, |
| 5375 | &starts, |
| 5376 | (const char **)&e, |
| 5377 | &startinpos, |
| 5378 | &endinpos, |
| 5379 | &exc, |
| 5380 | (const char **)&q, |
| 5381 | &unicode, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5382 | &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5383 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5384 | } |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5385 | /* remaining byte at the end? (size should be even) */ |
| 5386 | if (e == q) { |
| 5387 | if (!consumed) { |
| 5388 | errmsg = "truncated data"; |
| 5389 | startinpos = ((const char *)q) - starts; |
| 5390 | endinpos = ((const char *)e) + 1 - starts; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5391 | if (unicode_decode_call_errorhandler( |
| 5392 | errors, |
| 5393 | &errorHandler, |
| 5394 | "utf16", errmsg, |
| 5395 | &starts, |
| 5396 | (const char **)&e, |
| 5397 | &startinpos, |
| 5398 | &endinpos, |
| 5399 | &exc, |
| 5400 | (const char **)&q, |
| 5401 | &unicode, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5402 | &outpos)) |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5403 | goto onError; |
| 5404 | /* The remaining input chars are ignored if the callback |
| 5405 | chooses to skip the input */ |
| 5406 | } |
| 5407 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5408 | |
| 5409 | if (byteorder) |
| 5410 | *byteorder = bo; |
| 5411 | |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5412 | if (consumed) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5413 | *consumed = (const char *)q-starts; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5414 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5415 | /* Adjust length */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5416 | if (PyUnicode_Resize(&unicode, outpos) < 0) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5417 | goto onError; |
| 5418 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5419 | Py_XDECREF(errorHandler); |
| 5420 | Py_XDECREF(exc); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 5421 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5422 | return unicode; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5423 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5424 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5425 | Py_DECREF(unicode); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5426 | Py_XDECREF(errorHandler); |
| 5427 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5428 | return NULL; |
| 5429 | } |
| 5430 | |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5431 | #undef FAST_CHAR_MASK |
| 5432 | #undef SWAPPED_FAST_CHAR_MASK |
| 5433 | |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5434 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5435 | _PyUnicode_EncodeUTF16(PyObject *str, |
| 5436 | const char *errors, |
| 5437 | int byteorder) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5438 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5439 | int kind; |
| 5440 | void *data; |
| 5441 | Py_ssize_t len; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5442 | PyObject *v; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5443 | unsigned char *p; |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 5444 | Py_ssize_t nsize, bytesize; |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 5445 | Py_ssize_t i, pairs; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5446 | /* Offsets from p for storing byte pairs in the right order. */ |
| 5447 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
| 5448 | int ihi = 1, ilo = 0; |
| 5449 | #else |
| 5450 | int ihi = 0, ilo = 1; |
| 5451 | #endif |
| 5452 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5453 | #define STORECHAR(CH) \ |
| 5454 | do { \ |
| 5455 | p[ihi] = ((CH) >> 8) & 0xff; \ |
| 5456 | p[ilo] = (CH) & 0xff; \ |
| 5457 | p += 2; \ |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5458 | } while(0) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5459 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5460 | if (!PyUnicode_Check(str)) { |
| 5461 | PyErr_BadArgument(); |
| 5462 | return NULL; |
| 5463 | } |
| 5464 | if (PyUnicode_READY(str) < 0) |
| 5465 | return NULL; |
| 5466 | kind = PyUnicode_KIND(str); |
| 5467 | data = PyUnicode_DATA(str); |
| 5468 | len = PyUnicode_GET_LENGTH(str); |
Victor Stinner | 0e36826 | 2011-11-10 20:12:49 +0100 | [diff] [blame] | 5469 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5470 | pairs = 0; |
| 5471 | if (kind == PyUnicode_4BYTE_KIND) |
| 5472 | for (i = 0; i < len; i++) |
| 5473 | if (PyUnicode_READ(kind, data, i) >= 0x10000) |
| 5474 | pairs++; |
| 5475 | /* 2 * (len + pairs + (byteorder == 0)) */ |
| 5476 | if (len > PY_SSIZE_T_MAX - pairs - (byteorder == 0)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5477 | return PyErr_NoMemory(); |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5478 | nsize = len + pairs + (byteorder == 0); |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 5479 | bytesize = nsize * 2; |
| 5480 | if (bytesize / 2 != nsize) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5481 | return PyErr_NoMemory(); |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5482 | v = PyBytes_FromStringAndSize(NULL, bytesize); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5483 | if (v == NULL) |
| 5484 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5485 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5486 | p = (unsigned char *)PyBytes_AS_STRING(v); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5487 | if (byteorder == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5488 | STORECHAR(0xFEFF); |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5489 | if (len == 0) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 5490 | goto done; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5491 | |
| 5492 | if (byteorder == -1) { |
| 5493 | /* force LE */ |
| 5494 | ihi = 1; |
| 5495 | ilo = 0; |
| 5496 | } |
| 5497 | else if (byteorder == 1) { |
| 5498 | /* force BE */ |
| 5499 | ihi = 0; |
| 5500 | ilo = 1; |
| 5501 | } |
| 5502 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5503 | for (i = 0; i < len; i++) { |
| 5504 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 5505 | Py_UCS4 ch2 = 0; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5506 | if (ch >= 0x10000) { |
| 5507 | ch2 = 0xDC00 | ((ch-0x10000) & 0x3FF); |
| 5508 | ch = 0xD800 | ((ch-0x10000) >> 10); |
| 5509 | } |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5510 | STORECHAR(ch); |
| 5511 | if (ch2) |
| 5512 | STORECHAR(ch2); |
Martin v. Löwis | 0ba70cc | 2001-06-26 22:22:37 +0000 | [diff] [blame] | 5513 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 5514 | |
| 5515 | done: |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5516 | return v; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5517 | #undef STORECHAR |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5518 | } |
| 5519 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5520 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5521 | PyUnicode_EncodeUTF16(const Py_UNICODE *s, |
| 5522 | Py_ssize_t size, |
| 5523 | const char *errors, |
| 5524 | int byteorder) |
| 5525 | { |
| 5526 | PyObject *result; |
| 5527 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 5528 | if (tmp == NULL) |
| 5529 | return NULL; |
| 5530 | result = _PyUnicode_EncodeUTF16(tmp, errors, byteorder); |
| 5531 | Py_DECREF(tmp); |
| 5532 | return result; |
| 5533 | } |
| 5534 | |
| 5535 | PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5536 | PyUnicode_AsUTF16String(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5537 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5538 | return _PyUnicode_EncodeUTF16(unicode, NULL, 0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5539 | } |
| 5540 | |
| 5541 | /* --- Unicode Escape Codec ----------------------------------------------- */ |
| 5542 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5543 | /* Helper function for PyUnicode_DecodeUnicodeEscape, determines |
| 5544 | if all the escapes in the string make it still a valid ASCII string. |
| 5545 | Returns -1 if any escapes were found which cause the string to |
| 5546 | pop out of ASCII range. Otherwise returns the length of the |
| 5547 | required buffer to hold the string. |
| 5548 | */ |
Antoine Pitrou | 53bb548 | 2011-10-10 23:49:24 +0200 | [diff] [blame] | 5549 | static Py_ssize_t |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5550 | length_of_escaped_ascii_string(const char *s, Py_ssize_t size) |
| 5551 | { |
| 5552 | const unsigned char *p = (const unsigned char *)s; |
| 5553 | const unsigned char *end = p + size; |
| 5554 | Py_ssize_t length = 0; |
| 5555 | |
| 5556 | if (size < 0) |
| 5557 | return -1; |
| 5558 | |
| 5559 | for (; p < end; ++p) { |
| 5560 | if (*p > 127) { |
| 5561 | /* Non-ASCII */ |
| 5562 | return -1; |
| 5563 | } |
| 5564 | else if (*p != '\\') { |
| 5565 | /* Normal character */ |
| 5566 | ++length; |
| 5567 | } |
| 5568 | else { |
| 5569 | /* Backslash-escape, check next char */ |
| 5570 | ++p; |
| 5571 | /* Escape sequence reaches till end of string or |
| 5572 | non-ASCII follow-up. */ |
| 5573 | if (p >= end || *p > 127) |
| 5574 | return -1; |
| 5575 | switch (*p) { |
| 5576 | case '\n': |
| 5577 | /* backslash + \n result in zero characters */ |
| 5578 | break; |
| 5579 | case '\\': case '\'': case '\"': |
| 5580 | case 'b': case 'f': case 't': |
| 5581 | case 'n': case 'r': case 'v': case 'a': |
| 5582 | ++length; |
| 5583 | break; |
| 5584 | case '0': case '1': case '2': case '3': |
| 5585 | case '4': case '5': case '6': case '7': |
| 5586 | case 'x': case 'u': case 'U': case 'N': |
| 5587 | /* these do not guarantee ASCII characters */ |
| 5588 | return -1; |
| 5589 | default: |
| 5590 | /* count the backslash + the other character */ |
| 5591 | length += 2; |
| 5592 | } |
| 5593 | } |
| 5594 | } |
| 5595 | return length; |
| 5596 | } |
| 5597 | |
| 5598 | /* Similar to PyUnicode_WRITE but either write into wstr field |
| 5599 | or treat string as ASCII. */ |
| 5600 | #define WRITE_ASCII_OR_WSTR(kind, buf, index, value) \ |
| 5601 | do { \ |
| 5602 | if ((kind) != PyUnicode_WCHAR_KIND) \ |
| 5603 | ((unsigned char *)(buf))[(index)] = (unsigned char)(value); \ |
| 5604 | else \ |
| 5605 | ((Py_UNICODE *)(buf))[(index)] = (Py_UNICODE)(value); \ |
| 5606 | } while (0) |
| 5607 | |
| 5608 | #define WRITE_WSTR(buf, index, value) \ |
| 5609 | assert(kind == PyUnicode_WCHAR_KIND), \ |
| 5610 | ((Py_UNICODE *)(buf))[(index)] = (Py_UNICODE)(value) |
| 5611 | |
| 5612 | |
Fredrik Lundh | 06d1268 | 2001-01-24 07:59:11 +0000 | [diff] [blame] | 5613 | static _PyUnicode_Name_CAPI *ucnhash_CAPI = NULL; |
Marc-André Lemburg | 0f774e3 | 2000-06-28 16:43:35 +0000 | [diff] [blame] | 5614 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5615 | PyObject * |
| 5616 | PyUnicode_DecodeUnicodeEscape(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 5617 | Py_ssize_t size, |
Victor Stinner | c17f540 | 2011-09-29 00:16:58 +0200 | [diff] [blame] | 5618 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5619 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5620 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 5621 | Py_ssize_t startinpos; |
| 5622 | Py_ssize_t endinpos; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5623 | int j; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5624 | PyObject *v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5625 | const char *end; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5626 | char* message; |
| 5627 | Py_UCS4 chr = 0xffffffff; /* in case 'getcode' messes up */ |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5628 | PyObject *errorHandler = NULL; |
| 5629 | PyObject *exc = NULL; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5630 | Py_ssize_t len; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5631 | Py_ssize_t i; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5632 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5633 | len = length_of_escaped_ascii_string(s, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5634 | |
| 5635 | /* After length_of_escaped_ascii_string() there are two alternatives, |
| 5636 | either the string is pure ASCII with named escapes like \n, etc. |
| 5637 | and we determined it's exact size (common case) |
| 5638 | or it contains \x, \u, ... escape sequences. then we create a |
| 5639 | legacy wchar string and resize it at the end of this function. */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5640 | if (len >= 0) { |
| 5641 | v = PyUnicode_New(len, 127); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5642 | if (!v) |
| 5643 | goto onError; |
| 5644 | assert(PyUnicode_KIND(v) == PyUnicode_1BYTE_KIND); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5645 | } |
| 5646 | else { |
| 5647 | /* Escaped strings will always be longer than the resulting |
| 5648 | Unicode string, so we start with size here and then reduce the |
| 5649 | length after conversion to the true value. |
| 5650 | (but if the error callback returns a long replacement string |
| 5651 | we'll have to allocate more space) */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5652 | v = PyUnicode_New(size, 127); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5653 | if (!v) |
| 5654 | goto onError; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5655 | len = size; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5656 | } |
| 5657 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5658 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5659 | return v; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5660 | i = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5661 | end = s + size; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5662 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5663 | while (s < end) { |
| 5664 | unsigned char c; |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 5665 | Py_UCS4 x; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5666 | int digits; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5667 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5668 | /* The only case in which i == ascii_length is a backslash |
| 5669 | followed by a newline. */ |
| 5670 | assert(i <= len); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5671 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5672 | /* Non-escape characters are interpreted as Unicode ordinals */ |
| 5673 | if (*s != '\\') { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5674 | if (unicode_putchar(&v, &i, (unsigned char) *s++) < 0) |
| 5675 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5676 | continue; |
| 5677 | } |
| 5678 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5679 | startinpos = s-starts; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5680 | /* \ - Escapes */ |
| 5681 | s++; |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5682 | c = *s++; |
| 5683 | if (s > end) |
| 5684 | c = '\0'; /* Invalid after \ */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5685 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5686 | /* The only case in which i == ascii_length is a backslash |
| 5687 | followed by a newline. */ |
| 5688 | assert(i < len || (i == len && c == '\n')); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5689 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5690 | switch (c) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5691 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5692 | /* \x escapes */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5693 | #define WRITECHAR(ch) \ |
| 5694 | do { \ |
| 5695 | if (unicode_putchar(&v, &i, ch) < 0) \ |
| 5696 | goto onError; \ |
| 5697 | }while(0) |
| 5698 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5699 | case '\n': break; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5700 | case '\\': WRITECHAR('\\'); break; |
| 5701 | case '\'': WRITECHAR('\''); break; |
| 5702 | case '\"': WRITECHAR('\"'); break; |
| 5703 | case 'b': WRITECHAR('\b'); break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5704 | /* FF */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5705 | case 'f': WRITECHAR('\014'); break; |
| 5706 | case 't': WRITECHAR('\t'); break; |
| 5707 | case 'n': WRITECHAR('\n'); break; |
| 5708 | case 'r': WRITECHAR('\r'); break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5709 | /* VT */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5710 | case 'v': WRITECHAR('\013'); break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5711 | /* BEL, not classic C */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5712 | case 'a': WRITECHAR('\007'); break; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5713 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5714 | /* \OOO (octal) escapes */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5715 | case '0': case '1': case '2': case '3': |
| 5716 | case '4': case '5': case '6': case '7': |
Guido van Rossum | 0e4f657 | 2000-05-01 21:27:20 +0000 | [diff] [blame] | 5717 | x = s[-1] - '0'; |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5718 | if (s < end && '0' <= *s && *s <= '7') { |
Guido van Rossum | 0e4f657 | 2000-05-01 21:27:20 +0000 | [diff] [blame] | 5719 | x = (x<<3) + *s++ - '0'; |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5720 | if (s < end && '0' <= *s && *s <= '7') |
Guido van Rossum | 0e4f657 | 2000-05-01 21:27:20 +0000 | [diff] [blame] | 5721 | x = (x<<3) + *s++ - '0'; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5722 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5723 | WRITECHAR(x); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5724 | break; |
| 5725 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5726 | /* hex escapes */ |
| 5727 | /* \xXX */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5728 | case 'x': |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5729 | digits = 2; |
| 5730 | message = "truncated \\xXX escape"; |
| 5731 | goto hexescape; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5732 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5733 | /* \uXXXX */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5734 | case 'u': |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5735 | digits = 4; |
| 5736 | message = "truncated \\uXXXX escape"; |
| 5737 | goto hexescape; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5738 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5739 | /* \UXXXXXXXX */ |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5740 | case 'U': |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5741 | digits = 8; |
| 5742 | message = "truncated \\UXXXXXXXX escape"; |
| 5743 | hexescape: |
| 5744 | chr = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5745 | if (s+digits>end) { |
| 5746 | endinpos = size; |
| 5747 | if (unicode_decode_call_errorhandler( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5748 | errors, &errorHandler, |
| 5749 | "unicodeescape", "end of string in escape sequence", |
| 5750 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5751 | &v, &i)) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5752 | goto onError; |
| 5753 | goto nextByte; |
| 5754 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5755 | for (j = 0; j < digits; ++j) { |
| 5756 | c = (unsigned char) s[j]; |
David Malcolm | 9696088 | 2010-11-05 17:23:41 +0000 | [diff] [blame] | 5757 | if (!Py_ISXDIGIT(c)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5758 | endinpos = (s+j+1)-starts; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5759 | if (unicode_decode_call_errorhandler( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5760 | errors, &errorHandler, |
| 5761 | "unicodeescape", message, |
| 5762 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5763 | &v, &i)) |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5764 | goto onError; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5765 | len = PyUnicode_GET_LENGTH(v); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5766 | goto nextByte; |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5767 | } |
| 5768 | chr = (chr<<4) & ~0xF; |
| 5769 | if (c >= '0' && c <= '9') |
| 5770 | chr += c - '0'; |
| 5771 | else if (c >= 'a' && c <= 'f') |
| 5772 | chr += 10 + c - 'a'; |
| 5773 | else |
| 5774 | chr += 10 + c - 'A'; |
| 5775 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5776 | s += j; |
Jeremy Hylton | 504de6b | 2003-10-06 05:08:26 +0000 | [diff] [blame] | 5777 | if (chr == 0xffffffff && PyErr_Occurred()) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5778 | /* _decoding_error will have already written into the |
| 5779 | target buffer. */ |
| 5780 | break; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5781 | store: |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5782 | /* when we get here, chr is a 32-bit unicode character */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5783 | if (chr <= 0x10ffff) { |
| 5784 | WRITECHAR(chr); |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5785 | } else { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5786 | endinpos = s-starts; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5787 | if (unicode_decode_call_errorhandler( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5788 | errors, &errorHandler, |
| 5789 | "unicodeescape", "illegal Unicode character", |
| 5790 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5791 | &v, &i)) |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5792 | goto onError; |
| 5793 | } |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5794 | break; |
| 5795 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5796 | /* \N{name} */ |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5797 | case 'N': |
| 5798 | message = "malformed \\N character escape"; |
| 5799 | if (ucnhash_CAPI == NULL) { |
| 5800 | /* load the unicode data module */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5801 | ucnhash_CAPI = (_PyUnicode_Name_CAPI *)PyCapsule_Import( |
| 5802 | PyUnicodeData_CAPSULE_NAME, 1); |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5803 | if (ucnhash_CAPI == NULL) |
| 5804 | goto ucnhashError; |
| 5805 | } |
| 5806 | if (*s == '{') { |
| 5807 | const char *start = s+1; |
| 5808 | /* look for the closing brace */ |
| 5809 | while (*s != '}' && s < end) |
| 5810 | s++; |
| 5811 | if (s > start && s < end && *s == '}') { |
| 5812 | /* found a name. look it up in the unicode database */ |
| 5813 | message = "unknown Unicode character name"; |
| 5814 | s++; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5815 | if (ucnhash_CAPI->getcode(NULL, start, (int)(s-start-1), |
Ezio Melotti | 931b8aa | 2011-10-21 21:57:36 +0300 | [diff] [blame] | 5816 | &chr, 0)) |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5817 | goto store; |
| 5818 | } |
| 5819 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5820 | endinpos = s-starts; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5821 | if (unicode_decode_call_errorhandler( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5822 | errors, &errorHandler, |
| 5823 | "unicodeescape", message, |
| 5824 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5825 | &v, &i)) |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5826 | goto onError; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5827 | break; |
| 5828 | |
| 5829 | default: |
Walter Dörwald | 8c07722 | 2002-03-25 11:16:18 +0000 | [diff] [blame] | 5830 | if (s > end) { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5831 | message = "\\ at end of string"; |
| 5832 | s--; |
| 5833 | endinpos = s-starts; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5834 | if (unicode_decode_call_errorhandler( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5835 | errors, &errorHandler, |
| 5836 | "unicodeescape", message, |
| 5837 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5838 | &v, &i)) |
Walter Dörwald | 8c07722 | 2002-03-25 11:16:18 +0000 | [diff] [blame] | 5839 | goto onError; |
| 5840 | } |
| 5841 | else { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5842 | WRITECHAR('\\'); |
| 5843 | WRITECHAR(s[-1]); |
Walter Dörwald | 8c07722 | 2002-03-25 11:16:18 +0000 | [diff] [blame] | 5844 | } |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5845 | break; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5846 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5847 | nextByte: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5848 | ; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5849 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5850 | #undef WRITECHAR |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5851 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5852 | if (PyUnicode_Resize(&v, i) < 0) |
| 5853 | goto onError; |
Walter Dörwald | d4ade08 | 2003-08-15 15:00:26 +0000 | [diff] [blame] | 5854 | Py_XDECREF(errorHandler); |
| 5855 | Py_XDECREF(exc); |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 5856 | #ifndef DONT_MAKE_RESULT_READY |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 5857 | if (_PyUnicode_READY_REPLACE(&v)) { |
| 5858 | Py_DECREF(v); |
| 5859 | return NULL; |
| 5860 | } |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 5861 | #endif |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 5862 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5863 | return v; |
Walter Dörwald | 8c07722 | 2002-03-25 11:16:18 +0000 | [diff] [blame] | 5864 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5865 | ucnhashError: |
Fredrik Lundh | 06d1268 | 2001-01-24 07:59:11 +0000 | [diff] [blame] | 5866 | PyErr_SetString( |
| 5867 | PyExc_UnicodeError, |
| 5868 | "\\N escapes not supported (can't load unicodedata module)" |
| 5869 | ); |
Hye-Shik Chang | 4af5c8c | 2006-03-07 15:39:21 +0000 | [diff] [blame] | 5870 | Py_XDECREF(v); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5871 | Py_XDECREF(errorHandler); |
| 5872 | Py_XDECREF(exc); |
Fredrik Lundh | f605606 | 2001-01-20 11:15:25 +0000 | [diff] [blame] | 5873 | return NULL; |
| 5874 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5875 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5876 | Py_XDECREF(v); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5877 | Py_XDECREF(errorHandler); |
| 5878 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5879 | return NULL; |
| 5880 | } |
| 5881 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5882 | #undef WRITE_ASCII_OR_WSTR |
| 5883 | #undef WRITE_WSTR |
| 5884 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5885 | /* Return a Unicode-Escape string version of the Unicode object. |
| 5886 | |
| 5887 | If quotes is true, the string is enclosed in u"" or u'' quotes as |
| 5888 | appropriate. |
| 5889 | |
| 5890 | */ |
| 5891 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5892 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5893 | PyUnicode_AsUnicodeEscapeString(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5894 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5895 | Py_ssize_t i, len; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5896 | PyObject *repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5897 | char *p; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5898 | int kind; |
| 5899 | void *data; |
| 5900 | Py_ssize_t expandsize = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5901 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 5902 | /* Initial allocation is based on the longest-possible unichr |
| 5903 | escape. |
| 5904 | |
| 5905 | In wide (UTF-32) builds '\U00xxxxxx' is 10 chars per source |
| 5906 | unichr, so in this case it's the longest unichr escape. In |
| 5907 | narrow (UTF-16) builds this is five chars per source unichr |
| 5908 | since there are two unichrs in the surrogate pair, so in narrow |
| 5909 | (UTF-16) builds it's not the longest unichr escape. |
| 5910 | |
| 5911 | In wide or narrow builds '\uxxxx' is 6 chars per source unichr, |
| 5912 | so in the narrow (UTF-16) build case it's the longest unichr |
| 5913 | escape. |
| 5914 | */ |
| 5915 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5916 | if (!PyUnicode_Check(unicode)) { |
| 5917 | PyErr_BadArgument(); |
| 5918 | return NULL; |
| 5919 | } |
| 5920 | if (PyUnicode_READY(unicode) < 0) |
| 5921 | return NULL; |
| 5922 | len = PyUnicode_GET_LENGTH(unicode); |
| 5923 | kind = PyUnicode_KIND(unicode); |
| 5924 | data = PyUnicode_DATA(unicode); |
| 5925 | switch(kind) { |
| 5926 | case PyUnicode_1BYTE_KIND: expandsize = 4; break; |
| 5927 | case PyUnicode_2BYTE_KIND: expandsize = 6; break; |
| 5928 | case PyUnicode_4BYTE_KIND: expandsize = 10; break; |
| 5929 | } |
| 5930 | |
| 5931 | if (len == 0) |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5932 | return PyBytes_FromStringAndSize(NULL, 0); |
| 5933 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5934 | if (len > (PY_SSIZE_T_MAX - 2 - 1) / expandsize) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5935 | return PyErr_NoMemory(); |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 5936 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5937 | repr = PyBytes_FromStringAndSize(NULL, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5938 | 2 |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5939 | + expandsize*len |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5940 | + 1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5941 | if (repr == NULL) |
| 5942 | return NULL; |
| 5943 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5944 | p = PyBytes_AS_STRING(repr); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5945 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5946 | for (i = 0; i < len; i++) { |
Victor Stinner | 3326cb6 | 2011-11-10 20:15:25 +0100 | [diff] [blame] | 5947 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 5948 | |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 5949 | /* Escape backslashes */ |
| 5950 | if (ch == '\\') { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5951 | *p++ = '\\'; |
| 5952 | *p++ = (char) ch; |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 5953 | continue; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 5954 | } |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 5955 | |
Martin v. Löwis | 0ba70cc | 2001-06-26 22:22:37 +0000 | [diff] [blame] | 5956 | /* Map 21-bit characters to '\U00xxxxxx' */ |
| 5957 | else if (ch >= 0x10000) { |
| 5958 | *p++ = '\\'; |
| 5959 | *p++ = 'U'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 5960 | *p++ = Py_hexdigits[(ch >> 28) & 0x0000000F]; |
| 5961 | *p++ = Py_hexdigits[(ch >> 24) & 0x0000000F]; |
| 5962 | *p++ = Py_hexdigits[(ch >> 20) & 0x0000000F]; |
| 5963 | *p++ = Py_hexdigits[(ch >> 16) & 0x0000000F]; |
| 5964 | *p++ = Py_hexdigits[(ch >> 12) & 0x0000000F]; |
| 5965 | *p++ = Py_hexdigits[(ch >> 8) & 0x0000000F]; |
| 5966 | *p++ = Py_hexdigits[(ch >> 4) & 0x0000000F]; |
| 5967 | *p++ = Py_hexdigits[ch & 0x0000000F]; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5968 | continue; |
Martin v. Löwis | 0ba70cc | 2001-06-26 22:22:37 +0000 | [diff] [blame] | 5969 | } |
Marc-André Lemburg | 6c6bfb7 | 2001-07-20 17:39:11 +0000 | [diff] [blame] | 5970 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5971 | /* Map 16-bit characters to '\uxxxx' */ |
Marc-André Lemburg | 6c6bfb7 | 2001-07-20 17:39:11 +0000 | [diff] [blame] | 5972 | if (ch >= 256) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5973 | *p++ = '\\'; |
| 5974 | *p++ = 'u'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 5975 | *p++ = Py_hexdigits[(ch >> 12) & 0x000F]; |
| 5976 | *p++ = Py_hexdigits[(ch >> 8) & 0x000F]; |
| 5977 | *p++ = Py_hexdigits[(ch >> 4) & 0x000F]; |
| 5978 | *p++ = Py_hexdigits[ch & 0x000F]; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5979 | } |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 5980 | |
Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 5981 | /* Map special whitespace to '\t', \n', '\r' */ |
| 5982 | else if (ch == '\t') { |
| 5983 | *p++ = '\\'; |
| 5984 | *p++ = 't'; |
| 5985 | } |
| 5986 | else if (ch == '\n') { |
| 5987 | *p++ = '\\'; |
| 5988 | *p++ = 'n'; |
| 5989 | } |
| 5990 | else if (ch == '\r') { |
| 5991 | *p++ = '\\'; |
| 5992 | *p++ = 'r'; |
| 5993 | } |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 5994 | |
Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 5995 | /* Map non-printable US ASCII to '\xhh' */ |
Marc-André Lemburg | 11326de | 2001-11-28 12:56:20 +0000 | [diff] [blame] | 5996 | else if (ch < ' ' || ch >= 0x7F) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5997 | *p++ = '\\'; |
Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 5998 | *p++ = 'x'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 5999 | *p++ = Py_hexdigits[(ch >> 4) & 0x000F]; |
| 6000 | *p++ = Py_hexdigits[ch & 0x000F]; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6001 | } |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 6002 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6003 | /* Copy everything else as-is */ |
| 6004 | else |
| 6005 | *p++ = (char) ch; |
| 6006 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6007 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6008 | assert(p - PyBytes_AS_STRING(repr) > 0); |
| 6009 | if (_PyBytes_Resize(&repr, p - PyBytes_AS_STRING(repr)) < 0) |
| 6010 | return NULL; |
| 6011 | return repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6012 | } |
| 6013 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6014 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6015 | PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s, |
| 6016 | Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6017 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6018 | PyObject *result; |
| 6019 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 6020 | if (tmp == NULL) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6021 | return NULL; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6022 | result = PyUnicode_AsUnicodeEscapeString(tmp); |
| 6023 | Py_DECREF(tmp); |
| 6024 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6025 | } |
| 6026 | |
| 6027 | /* --- Raw Unicode Escape Codec ------------------------------------------- */ |
| 6028 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6029 | PyObject * |
| 6030 | PyUnicode_DecodeRawUnicodeEscape(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6031 | Py_ssize_t size, |
| 6032 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6033 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6034 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 6035 | Py_ssize_t startinpos; |
| 6036 | Py_ssize_t endinpos; |
| 6037 | Py_ssize_t outpos; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6038 | PyObject *v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6039 | const char *end; |
| 6040 | const char *bs; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6041 | PyObject *errorHandler = NULL; |
| 6042 | PyObject *exc = NULL; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6043 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6044 | /* Escaped strings will always be longer than the resulting |
| 6045 | Unicode string, so we start with size here and then reduce the |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6046 | length after conversion to the true value. (But decoding error |
| 6047 | handler might have to resize the string) */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6048 | v = PyUnicode_New(size, 127); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6049 | if (v == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6050 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6051 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6052 | return v; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6053 | outpos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6054 | end = s + size; |
| 6055 | while (s < end) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6056 | unsigned char c; |
| 6057 | Py_UCS4 x; |
| 6058 | int i; |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 6059 | int count; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6060 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6061 | /* Non-escape characters are interpreted as Unicode ordinals */ |
| 6062 | if (*s != '\\') { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6063 | if (unicode_putchar(&v, &outpos, (unsigned char)*s++) < 0) |
| 6064 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6065 | continue; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6066 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6067 | startinpos = s-starts; |
| 6068 | |
| 6069 | /* \u-escapes are only interpreted iff the number of leading |
| 6070 | backslashes if odd */ |
| 6071 | bs = s; |
| 6072 | for (;s < end;) { |
| 6073 | if (*s != '\\') |
| 6074 | break; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6075 | if (unicode_putchar(&v, &outpos, (unsigned char)*s++) < 0) |
| 6076 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6077 | } |
| 6078 | if (((s - bs) & 1) == 0 || |
| 6079 | s >= end || |
| 6080 | (*s != 'u' && *s != 'U')) { |
| 6081 | continue; |
| 6082 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6083 | outpos--; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6084 | count = *s=='u' ? 4 : 8; |
| 6085 | s++; |
| 6086 | |
| 6087 | /* \uXXXX with 4 hex digits, \Uxxxxxxxx with 8 */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6088 | for (x = 0, i = 0; i < count; ++i, ++s) { |
| 6089 | c = (unsigned char)*s; |
David Malcolm | 9696088 | 2010-11-05 17:23:41 +0000 | [diff] [blame] | 6090 | if (!Py_ISXDIGIT(c)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6091 | endinpos = s-starts; |
| 6092 | if (unicode_decode_call_errorhandler( |
| 6093 | errors, &errorHandler, |
| 6094 | "rawunicodeescape", "truncated \\uXXXX", |
| 6095 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6096 | &v, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6097 | goto onError; |
| 6098 | goto nextByte; |
| 6099 | } |
| 6100 | x = (x<<4) & ~0xF; |
| 6101 | if (c >= '0' && c <= '9') |
| 6102 | x += c - '0'; |
| 6103 | else if (c >= 'a' && c <= 'f') |
| 6104 | x += 10 + c - 'a'; |
| 6105 | else |
| 6106 | x += 10 + c - 'A'; |
| 6107 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6108 | if (x <= 0x10ffff) { |
| 6109 | if (unicode_putchar(&v, &outpos, x) < 0) |
| 6110 | goto onError; |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 6111 | } else { |
| 6112 | endinpos = s-starts; |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 6113 | if (unicode_decode_call_errorhandler( |
| 6114 | errors, &errorHandler, |
| 6115 | "rawunicodeescape", "\\Uxxxxxxxx out of range", |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6116 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6117 | &v, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6118 | goto onError; |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 6119 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6120 | nextByte: |
| 6121 | ; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6122 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6123 | if (PyUnicode_Resize(&v, outpos) < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6124 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6125 | Py_XDECREF(errorHandler); |
| 6126 | Py_XDECREF(exc); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 6127 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6128 | return v; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6129 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6130 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6131 | Py_XDECREF(v); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6132 | Py_XDECREF(errorHandler); |
| 6133 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6134 | return NULL; |
| 6135 | } |
| 6136 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6137 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6138 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6139 | PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6140 | { |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6141 | PyObject *repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6142 | char *p; |
| 6143 | char *q; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6144 | Py_ssize_t expandsize, pos; |
| 6145 | int kind; |
| 6146 | void *data; |
| 6147 | Py_ssize_t len; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6148 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6149 | if (!PyUnicode_Check(unicode)) { |
| 6150 | PyErr_BadArgument(); |
| 6151 | return NULL; |
| 6152 | } |
| 6153 | if (PyUnicode_READY(unicode) < 0) |
| 6154 | return NULL; |
| 6155 | kind = PyUnicode_KIND(unicode); |
| 6156 | data = PyUnicode_DATA(unicode); |
| 6157 | len = PyUnicode_GET_LENGTH(unicode); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6158 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6159 | switch(kind) { |
| 6160 | case PyUnicode_1BYTE_KIND: expandsize = 4; break; |
| 6161 | case PyUnicode_2BYTE_KIND: expandsize = 6; break; |
| 6162 | case PyUnicode_4BYTE_KIND: expandsize = 10; break; |
| 6163 | } |
Victor Stinner | 0e36826 | 2011-11-10 20:12:49 +0100 | [diff] [blame] | 6164 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6165 | if (len > PY_SSIZE_T_MAX / expandsize) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6166 | return PyErr_NoMemory(); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6167 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6168 | repr = PyBytes_FromStringAndSize(NULL, expandsize * len); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6169 | if (repr == NULL) |
| 6170 | return NULL; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6171 | if (len == 0) |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6172 | return repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6173 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6174 | p = q = PyBytes_AS_STRING(repr); |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6175 | for (pos = 0; pos < len; pos++) { |
| 6176 | Py_UCS4 ch = PyUnicode_READ(kind, data, pos); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6177 | /* Map 32-bit characters to '\Uxxxxxxxx' */ |
| 6178 | if (ch >= 0x10000) { |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 6179 | *p++ = '\\'; |
| 6180 | *p++ = 'U'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 6181 | *p++ = Py_hexdigits[(ch >> 28) & 0xf]; |
| 6182 | *p++ = Py_hexdigits[(ch >> 24) & 0xf]; |
| 6183 | *p++ = Py_hexdigits[(ch >> 20) & 0xf]; |
| 6184 | *p++ = Py_hexdigits[(ch >> 16) & 0xf]; |
| 6185 | *p++ = Py_hexdigits[(ch >> 12) & 0xf]; |
| 6186 | *p++ = Py_hexdigits[(ch >> 8) & 0xf]; |
| 6187 | *p++ = Py_hexdigits[(ch >> 4) & 0xf]; |
| 6188 | *p++ = Py_hexdigits[ch & 15]; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6189 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6190 | /* Map 16-bit characters to '\uxxxx' */ |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6191 | else if (ch >= 256) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6192 | *p++ = '\\'; |
| 6193 | *p++ = 'u'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 6194 | *p++ = Py_hexdigits[(ch >> 12) & 0xf]; |
| 6195 | *p++ = Py_hexdigits[(ch >> 8) & 0xf]; |
| 6196 | *p++ = Py_hexdigits[(ch >> 4) & 0xf]; |
| 6197 | *p++ = Py_hexdigits[ch & 15]; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6198 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6199 | /* Copy everything else as-is */ |
| 6200 | else |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6201 | *p++ = (char) ch; |
| 6202 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 6203 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6204 | assert(p > q); |
| 6205 | if (_PyBytes_Resize(&repr, p - q) < 0) |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6206 | return NULL; |
| 6207 | return repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6208 | } |
| 6209 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6210 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6211 | PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s, |
| 6212 | Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6213 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6214 | PyObject *result; |
| 6215 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 6216 | if (tmp == NULL) |
Walter Dörwald | 711005d | 2007-05-12 12:03:26 +0000 | [diff] [blame] | 6217 | return NULL; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6218 | result = PyUnicode_AsRawUnicodeEscapeString(tmp); |
| 6219 | Py_DECREF(tmp); |
| 6220 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6221 | } |
| 6222 | |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6223 | /* --- Unicode Internal Codec ------------------------------------------- */ |
| 6224 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6225 | PyObject * |
| 6226 | _PyUnicode_DecodeUnicodeInternal(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6227 | Py_ssize_t size, |
| 6228 | const char *errors) |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6229 | { |
| 6230 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 6231 | Py_ssize_t startinpos; |
| 6232 | Py_ssize_t endinpos; |
| 6233 | Py_ssize_t outpos; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6234 | PyObject *v; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6235 | const char *end; |
| 6236 | const char *reason; |
| 6237 | PyObject *errorHandler = NULL; |
| 6238 | PyObject *exc = NULL; |
| 6239 | |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6240 | if (PyErr_WarnEx(PyExc_DeprecationWarning, |
| 6241 | "unicode_internal codecs has been deprecated", |
| 6242 | 1)) |
| 6243 | return NULL; |
| 6244 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 6245 | /* XXX overflow detection missing */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6246 | v = PyUnicode_New((size+Py_UNICODE_SIZE-1)/ Py_UNICODE_SIZE, 127); |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6247 | if (v == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6248 | goto onError; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6249 | if (PyUnicode_GET_LENGTH(v) == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6250 | return v; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6251 | outpos = 0; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6252 | end = s + size; |
| 6253 | |
| 6254 | while (s < end) { |
Antoine Pitrou | 44c6aff | 2011-11-11 02:59:42 +0100 | [diff] [blame^] | 6255 | Py_UCS4 ch; |
| 6256 | /* We copy the raw representation one byte at a time because the |
| 6257 | pointer may be unaligned (see test_codeccallbacks). */ |
| 6258 | ((char *) &ch)[0] = s[0]; |
| 6259 | ((char *) &ch)[1] = s[1]; |
| 6260 | #ifdef Py_UNICODE_WIDE |
| 6261 | ((char *) &ch)[2] = s[2]; |
| 6262 | ((char *) &ch)[3] = s[3]; |
| 6263 | #endif |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6264 | /* We have to sanity check the raw data, otherwise doom looms for |
| 6265 | some malformed UCS-4 data. */ |
| 6266 | if ( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6267 | #ifdef Py_UNICODE_WIDE |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6268 | ch > 0x10ffff || |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6269 | #endif |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6270 | end-s < Py_UNICODE_SIZE |
| 6271 | ) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6272 | { |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6273 | startinpos = s - starts; |
| 6274 | if (end-s < Py_UNICODE_SIZE) { |
| 6275 | endinpos = end-starts; |
| 6276 | reason = "truncated input"; |
| 6277 | } |
| 6278 | else { |
| 6279 | endinpos = s - starts + Py_UNICODE_SIZE; |
| 6280 | reason = "illegal code point (> 0x10FFFF)"; |
| 6281 | } |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6282 | if (unicode_decode_call_errorhandler( |
| 6283 | errors, &errorHandler, |
| 6284 | "unicode_internal", reason, |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 6285 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6286 | &v, &outpos)) |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6287 | goto onError; |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6288 | continue; |
| 6289 | } |
| 6290 | |
| 6291 | s += Py_UNICODE_SIZE; |
| 6292 | #ifndef Py_UNICODE_WIDE |
| 6293 | if (ch >= 0xD800 && ch <= 0xDBFF && s < end) |
| 6294 | { |
| 6295 | Py_UCS4 ch2 = *(Py_UNICODE*)s; |
| 6296 | if (ch2 >= 0xDC00 && ch2 <= 0xDFFF) |
| 6297 | { |
| 6298 | ch = (((ch & 0x3FF)<<10) | (ch2 & 0x3FF)) + 0x10000; |
| 6299 | s += Py_UNICODE_SIZE; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6300 | } |
| 6301 | } |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6302 | #endif |
| 6303 | |
| 6304 | if (unicode_putchar(&v, &outpos, ch) < 0) |
| 6305 | goto onError; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6306 | } |
| 6307 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6308 | if (PyUnicode_Resize(&v, outpos) < 0) |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6309 | goto onError; |
| 6310 | Py_XDECREF(errorHandler); |
| 6311 | Py_XDECREF(exc); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 6312 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6313 | return v; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6314 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6315 | onError: |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6316 | Py_XDECREF(v); |
| 6317 | Py_XDECREF(errorHandler); |
| 6318 | Py_XDECREF(exc); |
| 6319 | return NULL; |
| 6320 | } |
| 6321 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6322 | /* --- Latin-1 Codec ------------------------------------------------------ */ |
| 6323 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6324 | PyObject * |
| 6325 | PyUnicode_DecodeLatin1(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6326 | Py_ssize_t size, |
| 6327 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6328 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6329 | /* Latin-1 is equivalent to the first 256 ordinals in Unicode. */ |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 6330 | return _PyUnicode_FromUCS1((unsigned char*)s, size); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6331 | } |
| 6332 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6333 | /* create or adjust a UnicodeEncodeError */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6334 | static void |
| 6335 | make_encode_exception(PyObject **exceptionObject, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6336 | const char *encoding, |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 6337 | PyObject *unicode, |
| 6338 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 6339 | const char *reason) |
| 6340 | { |
| 6341 | if (*exceptionObject == NULL) { |
| 6342 | *exceptionObject = PyObject_CallFunction( |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6343 | PyExc_UnicodeEncodeError, "sOnns", |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 6344 | encoding, unicode, startpos, endpos, reason); |
| 6345 | } |
| 6346 | else { |
| 6347 | if (PyUnicodeEncodeError_SetStart(*exceptionObject, startpos)) |
| 6348 | goto onError; |
| 6349 | if (PyUnicodeEncodeError_SetEnd(*exceptionObject, endpos)) |
| 6350 | goto onError; |
| 6351 | if (PyUnicodeEncodeError_SetReason(*exceptionObject, reason)) |
| 6352 | goto onError; |
| 6353 | return; |
| 6354 | onError: |
| 6355 | Py_DECREF(*exceptionObject); |
| 6356 | *exceptionObject = NULL; |
| 6357 | } |
| 6358 | } |
| 6359 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6360 | /* raises a UnicodeEncodeError */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6361 | static void |
| 6362 | raise_encode_exception(PyObject **exceptionObject, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6363 | const char *encoding, |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 6364 | PyObject *unicode, |
| 6365 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 6366 | const char *reason) |
| 6367 | { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 6368 | make_encode_exception(exceptionObject, |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 6369 | encoding, unicode, startpos, endpos, reason); |
| 6370 | if (*exceptionObject != NULL) |
| 6371 | PyCodec_StrictErrors(*exceptionObject); |
| 6372 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6373 | |
| 6374 | /* error handling callback helper: |
| 6375 | build arguments, call the callback and check the arguments, |
| 6376 | put the result into newpos and return the replacement string, which |
| 6377 | has to be freed by the caller */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6378 | static PyObject * |
| 6379 | unicode_encode_call_errorhandler(const char *errors, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6380 | PyObject **errorHandler, |
| 6381 | const char *encoding, const char *reason, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6382 | PyObject *unicode, PyObject **exceptionObject, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6383 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 6384 | Py_ssize_t *newpos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6385 | { |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6386 | static char *argparse = "On;encoding error handler must return (str/bytes, int) tuple"; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6387 | Py_ssize_t len; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6388 | PyObject *restuple; |
| 6389 | PyObject *resunicode; |
| 6390 | |
| 6391 | if (*errorHandler == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6392 | *errorHandler = PyCodec_LookupError(errors); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6393 | if (*errorHandler == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6394 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6395 | } |
| 6396 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6397 | if (PyUnicode_READY(unicode) < 0) |
| 6398 | return NULL; |
| 6399 | len = PyUnicode_GET_LENGTH(unicode); |
| 6400 | |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 6401 | make_encode_exception(exceptionObject, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6402 | encoding, unicode, startpos, endpos, reason); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6403 | if (*exceptionObject == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6404 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6405 | |
| 6406 | restuple = PyObject_CallFunctionObjArgs( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6407 | *errorHandler, *exceptionObject, NULL); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6408 | if (restuple == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6409 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6410 | if (!PyTuple_Check(restuple)) { |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6411 | PyErr_SetString(PyExc_TypeError, &argparse[3]); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6412 | Py_DECREF(restuple); |
| 6413 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6414 | } |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6415 | if (!PyArg_ParseTuple(restuple, argparse, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6416 | &resunicode, newpos)) { |
| 6417 | Py_DECREF(restuple); |
| 6418 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6419 | } |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6420 | if (!PyUnicode_Check(resunicode) && !PyBytes_Check(resunicode)) { |
| 6421 | PyErr_SetString(PyExc_TypeError, &argparse[3]); |
| 6422 | Py_DECREF(restuple); |
| 6423 | return NULL; |
| 6424 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6425 | if (*newpos<0) |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6426 | *newpos = len + *newpos; |
| 6427 | if (*newpos<0 || *newpos>len) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6428 | PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos); |
| 6429 | Py_DECREF(restuple); |
| 6430 | return NULL; |
Walter Dörwald | 2e0b18a | 2003-01-31 17:19:08 +0000 | [diff] [blame] | 6431 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6432 | Py_INCREF(resunicode); |
| 6433 | Py_DECREF(restuple); |
| 6434 | return resunicode; |
| 6435 | } |
| 6436 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6437 | static PyObject * |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6438 | unicode_encode_ucs1(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6439 | const char *errors, |
Victor Stinner | fcd9653 | 2011-11-04 00:28:50 +0100 | [diff] [blame] | 6440 | unsigned int limit) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6441 | { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6442 | /* input state */ |
| 6443 | Py_ssize_t pos=0, size; |
| 6444 | int kind; |
| 6445 | void *data; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6446 | /* output object */ |
| 6447 | PyObject *res; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6448 | /* pointer into the output */ |
| 6449 | char *str; |
| 6450 | /* current output position */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 6451 | Py_ssize_t ressize; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6452 | const char *encoding = (limit == 256) ? "latin-1" : "ascii"; |
| 6453 | const char *reason = (limit == 256) ? "ordinal not in range(256)" : "ordinal not in range(128)"; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6454 | PyObject *errorHandler = NULL; |
| 6455 | PyObject *exc = NULL; |
| 6456 | /* the following variable is used for caching string comparisons |
| 6457 | * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */ |
| 6458 | int known_errorHandler = -1; |
| 6459 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6460 | if (PyUnicode_READY(unicode) < 0) |
| 6461 | return NULL; |
| 6462 | size = PyUnicode_GET_LENGTH(unicode); |
| 6463 | kind = PyUnicode_KIND(unicode); |
| 6464 | data = PyUnicode_DATA(unicode); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6465 | /* allocate enough for a simple encoding without |
| 6466 | replacements, if we need more, we'll resize */ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 6467 | if (size == 0) |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 6468 | return PyBytes_FromStringAndSize(NULL, 0); |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6469 | res = PyBytes_FromStringAndSize(NULL, size); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6470 | if (res == NULL) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 6471 | return NULL; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6472 | str = PyBytes_AS_STRING(res); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6473 | ressize = size; |
| 6474 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6475 | while (pos < size) { |
| 6476 | Py_UCS4 c = PyUnicode_READ(kind, data, pos); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6477 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6478 | /* can we encode this? */ |
| 6479 | if (c<limit) { |
| 6480 | /* no overflow check, because we know that the space is enough */ |
| 6481 | *str++ = (char)c; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6482 | ++pos; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6483 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6484 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6485 | Py_ssize_t requiredsize; |
| 6486 | PyObject *repunicode; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6487 | Py_ssize_t repsize, newpos, respos, i; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6488 | /* startpos for collecting unencodable chars */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6489 | Py_ssize_t collstart = pos; |
| 6490 | Py_ssize_t collend = pos; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6491 | /* find all unecodable characters */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6492 | while ((collend < size) && (PyUnicode_READ(kind, data, collend)>=limit)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6493 | ++collend; |
| 6494 | /* cache callback name lookup (if not done yet, i.e. it's the first error) */ |
| 6495 | if (known_errorHandler==-1) { |
| 6496 | if ((errors==NULL) || (!strcmp(errors, "strict"))) |
| 6497 | known_errorHandler = 1; |
| 6498 | else if (!strcmp(errors, "replace")) |
| 6499 | known_errorHandler = 2; |
| 6500 | else if (!strcmp(errors, "ignore")) |
| 6501 | known_errorHandler = 3; |
| 6502 | else if (!strcmp(errors, "xmlcharrefreplace")) |
| 6503 | known_errorHandler = 4; |
| 6504 | else |
| 6505 | known_errorHandler = 0; |
| 6506 | } |
| 6507 | switch (known_errorHandler) { |
| 6508 | case 1: /* strict */ |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 6509 | raise_encode_exception(&exc, encoding, unicode, collstart, collend, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6510 | goto onError; |
| 6511 | case 2: /* replace */ |
| 6512 | while (collstart++<collend) |
| 6513 | *str++ = '?'; /* fall through */ |
| 6514 | case 3: /* ignore */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6515 | pos = collend; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6516 | break; |
| 6517 | case 4: /* xmlcharrefreplace */ |
| 6518 | respos = str - PyBytes_AS_STRING(res); |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6519 | /* determine replacement size */ |
| 6520 | for (i = collstart, repsize = 0; i < collend; ++i) { |
| 6521 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 6522 | if (ch < 10) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6523 | repsize += 2+1+1; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6524 | else if (ch < 100) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6525 | repsize += 2+2+1; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6526 | else if (ch < 1000) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6527 | repsize += 2+3+1; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6528 | else if (ch < 10000) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6529 | repsize += 2+4+1; |
Hye-Shik Chang | 40e9509 | 2003-12-22 01:31:13 +0000 | [diff] [blame] | 6530 | #ifndef Py_UNICODE_WIDE |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6531 | else |
| 6532 | repsize += 2+5+1; |
Hye-Shik Chang | 40e9509 | 2003-12-22 01:31:13 +0000 | [diff] [blame] | 6533 | #else |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6534 | else if (ch < 100000) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6535 | repsize += 2+5+1; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6536 | else if (ch < 1000000) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6537 | repsize += 2+6+1; |
| 6538 | else |
| 6539 | repsize += 2+7+1; |
Hye-Shik Chang | 4a264fb | 2003-12-19 01:59:56 +0000 | [diff] [blame] | 6540 | #endif |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6541 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6542 | requiredsize = respos+repsize+(size-collend); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6543 | if (requiredsize > ressize) { |
| 6544 | if (requiredsize<2*ressize) |
| 6545 | requiredsize = 2*ressize; |
| 6546 | if (_PyBytes_Resize(&res, requiredsize)) |
| 6547 | goto onError; |
| 6548 | str = PyBytes_AS_STRING(res) + respos; |
| 6549 | ressize = requiredsize; |
| 6550 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6551 | /* generate replacement */ |
| 6552 | for (i = collstart; i < collend; ++i) { |
| 6553 | str += sprintf(str, "&#%d;", PyUnicode_READ(kind, data, i)); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6554 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6555 | pos = collend; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6556 | break; |
| 6557 | default: |
| 6558 | repunicode = unicode_encode_call_errorhandler(errors, &errorHandler, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6559 | encoding, reason, unicode, &exc, |
| 6560 | collstart, collend, &newpos); |
| 6561 | if (repunicode == NULL || (PyUnicode_Check(repunicode) && |
| 6562 | PyUnicode_READY(repunicode) < 0)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6563 | goto onError; |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 6564 | if (PyBytes_Check(repunicode)) { |
| 6565 | /* Directly copy bytes result to output. */ |
| 6566 | repsize = PyBytes_Size(repunicode); |
| 6567 | if (repsize > 1) { |
| 6568 | /* Make room for all additional bytes. */ |
Amaury Forgeot d'Arc | 84ec8d9 | 2009-06-29 22:36:49 +0000 | [diff] [blame] | 6569 | respos = str - PyBytes_AS_STRING(res); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 6570 | if (_PyBytes_Resize(&res, ressize+repsize-1)) { |
| 6571 | Py_DECREF(repunicode); |
| 6572 | goto onError; |
| 6573 | } |
Amaury Forgeot d'Arc | 84ec8d9 | 2009-06-29 22:36:49 +0000 | [diff] [blame] | 6574 | str = PyBytes_AS_STRING(res) + respos; |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 6575 | ressize += repsize-1; |
| 6576 | } |
| 6577 | memcpy(str, PyBytes_AsString(repunicode), repsize); |
| 6578 | str += repsize; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6579 | pos = newpos; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6580 | Py_DECREF(repunicode); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 6581 | break; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6582 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6583 | /* need more space? (at least enough for what we |
| 6584 | have+the replacement+the rest of the string, so |
| 6585 | we won't have to check space for encodable characters) */ |
| 6586 | respos = str - PyBytes_AS_STRING(res); |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6587 | repsize = PyUnicode_GET_LENGTH(repunicode); |
| 6588 | requiredsize = respos+repsize+(size-collend); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6589 | if (requiredsize > ressize) { |
| 6590 | if (requiredsize<2*ressize) |
| 6591 | requiredsize = 2*ressize; |
| 6592 | if (_PyBytes_Resize(&res, requiredsize)) { |
| 6593 | Py_DECREF(repunicode); |
| 6594 | goto onError; |
| 6595 | } |
| 6596 | str = PyBytes_AS_STRING(res) + respos; |
| 6597 | ressize = requiredsize; |
| 6598 | } |
| 6599 | /* check if there is anything unencodable in the replacement |
| 6600 | and copy it to the output */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6601 | for (i = 0; repsize-->0; ++i, ++str) { |
| 6602 | c = PyUnicode_READ_CHAR(repunicode, i); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6603 | if (c >= limit) { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 6604 | raise_encode_exception(&exc, encoding, unicode, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6605 | pos, pos+1, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6606 | Py_DECREF(repunicode); |
| 6607 | goto onError; |
| 6608 | } |
| 6609 | *str = (char)c; |
| 6610 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6611 | pos = newpos; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6612 | Py_DECREF(repunicode); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6613 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6614 | } |
| 6615 | } |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6616 | /* Resize if we allocated to much */ |
| 6617 | size = str - PyBytes_AS_STRING(res); |
| 6618 | if (size < ressize) { /* If this falls res will be NULL */ |
Alexandre Vassalotti | bad1b92 | 2008-12-27 09:49:09 +0000 | [diff] [blame] | 6619 | assert(size >= 0); |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6620 | if (_PyBytes_Resize(&res, size) < 0) |
| 6621 | goto onError; |
| 6622 | } |
| 6623 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6624 | Py_XDECREF(errorHandler); |
| 6625 | Py_XDECREF(exc); |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6626 | return res; |
| 6627 | |
| 6628 | onError: |
| 6629 | Py_XDECREF(res); |
| 6630 | Py_XDECREF(errorHandler); |
| 6631 | Py_XDECREF(exc); |
| 6632 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6633 | } |
| 6634 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6635 | /* Deprecated */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6636 | PyObject * |
| 6637 | PyUnicode_EncodeLatin1(const Py_UNICODE *p, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6638 | Py_ssize_t size, |
| 6639 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6640 | { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6641 | PyObject *result; |
| 6642 | PyObject *unicode = PyUnicode_FromUnicode(p, size); |
| 6643 | if (unicode == NULL) |
| 6644 | return NULL; |
| 6645 | result = unicode_encode_ucs1(unicode, errors, 256); |
| 6646 | Py_DECREF(unicode); |
| 6647 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6648 | } |
| 6649 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6650 | PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6651 | _PyUnicode_AsLatin1String(PyObject *unicode, const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6652 | { |
| 6653 | if (!PyUnicode_Check(unicode)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6654 | PyErr_BadArgument(); |
| 6655 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6656 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6657 | if (PyUnicode_READY(unicode) == -1) |
| 6658 | return NULL; |
| 6659 | /* Fast path: if it is a one-byte string, construct |
| 6660 | bytes object directly. */ |
| 6661 | if (PyUnicode_KIND(unicode) == PyUnicode_1BYTE_KIND) |
| 6662 | return PyBytes_FromStringAndSize(PyUnicode_DATA(unicode), |
| 6663 | PyUnicode_GET_LENGTH(unicode)); |
| 6664 | /* Non-Latin-1 characters present. Defer to above function to |
| 6665 | raise the exception. */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6666 | return unicode_encode_ucs1(unicode, errors, 256); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6667 | } |
| 6668 | |
| 6669 | PyObject* |
| 6670 | PyUnicode_AsLatin1String(PyObject *unicode) |
| 6671 | { |
| 6672 | return _PyUnicode_AsLatin1String(unicode, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6673 | } |
| 6674 | |
| 6675 | /* --- 7-bit ASCII Codec -------------------------------------------------- */ |
| 6676 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6677 | PyObject * |
| 6678 | PyUnicode_DecodeASCII(const char *s, |
| 6679 | Py_ssize_t size, |
| 6680 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6681 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6682 | const char *starts = s; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6683 | PyObject *v; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6684 | int kind; |
| 6685 | void *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 6686 | Py_ssize_t startinpos; |
| 6687 | Py_ssize_t endinpos; |
| 6688 | Py_ssize_t outpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6689 | const char *e; |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 6690 | int has_error; |
| 6691 | const unsigned char *p = (const unsigned char *)s; |
| 6692 | const unsigned char *end = p + size; |
| 6693 | const unsigned char *aligned_end = (const unsigned char *) ((size_t) end & ~LONG_PTR_MASK); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6694 | PyObject *errorHandler = NULL; |
| 6695 | PyObject *exc = NULL; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6696 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6697 | /* ASCII is equivalent to the first 128 ordinals in Unicode. */ |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 6698 | if (size == 1 && (unsigned char)s[0] < 128) |
| 6699 | return get_latin1_char((unsigned char)s[0]); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6700 | |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 6701 | has_error = 0; |
| 6702 | while (p < end && !has_error) { |
| 6703 | /* Fast path, see below in PyUnicode_DecodeUTF8Stateful for |
| 6704 | an explanation. */ |
| 6705 | if (!((size_t) p & LONG_PTR_MASK)) { |
| 6706 | /* Help register allocation */ |
| 6707 | register const unsigned char *_p = p; |
| 6708 | while (_p < aligned_end) { |
| 6709 | unsigned long value = *(unsigned long *) _p; |
| 6710 | if (value & ASCII_CHAR_MASK) { |
| 6711 | has_error = 1; |
| 6712 | break; |
| 6713 | } |
| 6714 | _p += SIZEOF_LONG; |
| 6715 | } |
| 6716 | if (_p == end) |
| 6717 | break; |
| 6718 | if (has_error) |
| 6719 | break; |
| 6720 | p = _p; |
| 6721 | } |
| 6722 | if (*p & 0x80) { |
| 6723 | has_error = 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6724 | break; |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 6725 | } |
| 6726 | else { |
| 6727 | ++p; |
| 6728 | } |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 6729 | } |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 6730 | if (!has_error) |
| 6731 | return unicode_fromascii((const unsigned char *)s, size); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6732 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6733 | v = PyUnicode_New(size, 127); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6734 | if (v == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6735 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6736 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6737 | return v; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6738 | kind = PyUnicode_KIND(v); |
| 6739 | data = PyUnicode_DATA(v); |
| 6740 | outpos = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6741 | e = s + size; |
| 6742 | while (s < e) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6743 | register unsigned char c = (unsigned char)*s; |
| 6744 | if (c < 128) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6745 | PyUnicode_WRITE(kind, data, outpos++, c); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6746 | ++s; |
| 6747 | } |
| 6748 | else { |
| 6749 | startinpos = s-starts; |
| 6750 | endinpos = startinpos + 1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6751 | if (unicode_decode_call_errorhandler( |
| 6752 | errors, &errorHandler, |
| 6753 | "ascii", "ordinal not in range(128)", |
| 6754 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6755 | &v, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6756 | goto onError; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6757 | kind = PyUnicode_KIND(v); |
| 6758 | data = PyUnicode_DATA(v); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6759 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6760 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6761 | if (PyUnicode_Resize(&v, outpos) < 0) |
| 6762 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6763 | Py_XDECREF(errorHandler); |
| 6764 | Py_XDECREF(exc); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 6765 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6766 | return v; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6767 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6768 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6769 | Py_XDECREF(v); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6770 | Py_XDECREF(errorHandler); |
| 6771 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6772 | return NULL; |
| 6773 | } |
| 6774 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6775 | /* Deprecated */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6776 | PyObject * |
| 6777 | PyUnicode_EncodeASCII(const Py_UNICODE *p, |
| 6778 | Py_ssize_t size, |
| 6779 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6780 | { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6781 | PyObject *result; |
| 6782 | PyObject *unicode = PyUnicode_FromUnicode(p, size); |
| 6783 | if (unicode == NULL) |
| 6784 | return NULL; |
| 6785 | result = unicode_encode_ucs1(unicode, errors, 128); |
| 6786 | Py_DECREF(unicode); |
| 6787 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6788 | } |
| 6789 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6790 | PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6791 | _PyUnicode_AsASCIIString(PyObject *unicode, const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6792 | { |
| 6793 | if (!PyUnicode_Check(unicode)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6794 | PyErr_BadArgument(); |
| 6795 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6796 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6797 | if (PyUnicode_READY(unicode) == -1) |
| 6798 | return NULL; |
| 6799 | /* Fast path: if it is an ASCII-only string, construct bytes object |
| 6800 | directly. Else defer to above function to raise the exception. */ |
| 6801 | if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128) |
| 6802 | return PyBytes_FromStringAndSize(PyUnicode_DATA(unicode), |
| 6803 | PyUnicode_GET_LENGTH(unicode)); |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6804 | return unicode_encode_ucs1(unicode, errors, 128); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6805 | } |
| 6806 | |
| 6807 | PyObject * |
| 6808 | PyUnicode_AsASCIIString(PyObject *unicode) |
| 6809 | { |
| 6810 | return _PyUnicode_AsASCIIString(unicode, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6811 | } |
| 6812 | |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 6813 | #ifdef HAVE_MBCS |
Guido van Rossum | 2ea3e14 | 2000-03-31 17:24:09 +0000 | [diff] [blame] | 6814 | |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 6815 | /* --- MBCS codecs for Windows -------------------------------------------- */ |
Guido van Rossum | 2ea3e14 | 2000-03-31 17:24:09 +0000 | [diff] [blame] | 6816 | |
Hirokazu Yamamoto | 3530246 | 2009-03-21 13:23:27 +0000 | [diff] [blame] | 6817 | #if SIZEOF_INT < SIZEOF_SIZE_T |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6818 | #define NEED_RETRY |
| 6819 | #endif |
| 6820 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6821 | #ifndef WC_ERR_INVALID_CHARS |
| 6822 | # define WC_ERR_INVALID_CHARS 0x0080 |
| 6823 | #endif |
| 6824 | |
| 6825 | static char* |
| 6826 | code_page_name(UINT code_page, PyObject **obj) |
| 6827 | { |
| 6828 | *obj = NULL; |
| 6829 | if (code_page == CP_ACP) |
| 6830 | return "mbcs"; |
| 6831 | if (code_page == CP_UTF7) |
| 6832 | return "CP_UTF7"; |
| 6833 | if (code_page == CP_UTF8) |
| 6834 | return "CP_UTF8"; |
| 6835 | |
| 6836 | *obj = PyBytes_FromFormat("cp%u", code_page); |
| 6837 | if (*obj == NULL) |
| 6838 | return NULL; |
| 6839 | return PyBytes_AS_STRING(*obj); |
| 6840 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6841 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6842 | static int |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6843 | is_dbcs_lead_byte(UINT code_page, const char *s, int offset) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6844 | { |
| 6845 | const char *curr = s + offset; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6846 | const char *prev; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6847 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6848 | if (!IsDBCSLeadByteEx(code_page, *curr)) |
| 6849 | return 0; |
| 6850 | |
| 6851 | prev = CharPrevExA(code_page, s, curr, 0); |
| 6852 | if (prev == curr) |
| 6853 | return 1; |
| 6854 | /* FIXME: This code is limited to "true" double-byte encodings, |
| 6855 | as it assumes an incomplete character consists of a single |
| 6856 | byte. */ |
| 6857 | if (curr - prev == 2) |
| 6858 | return 1; |
| 6859 | if (!IsDBCSLeadByteEx(code_page, *prev)) |
| 6860 | return 1; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6861 | return 0; |
| 6862 | } |
| 6863 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6864 | static DWORD |
| 6865 | decode_code_page_flags(UINT code_page) |
| 6866 | { |
| 6867 | if (code_page == CP_UTF7) { |
| 6868 | /* The CP_UTF7 decoder only supports flags=0 */ |
| 6869 | return 0; |
| 6870 | } |
| 6871 | else |
| 6872 | return MB_ERR_INVALID_CHARS; |
| 6873 | } |
| 6874 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6875 | /* |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6876 | * Decode a byte string from a Windows code page into unicode object in strict |
| 6877 | * mode. |
| 6878 | * |
| 6879 | * Returns consumed size if succeed, returns -2 on decode error, or raise a |
| 6880 | * WindowsError and returns -1 on other error. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6881 | */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6882 | static int |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6883 | decode_code_page_strict(UINT code_page, |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6884 | PyObject **v, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6885 | const char *in, |
| 6886 | int insize) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6887 | { |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6888 | const DWORD flags = decode_code_page_flags(code_page); |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 6889 | wchar_t *out; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6890 | DWORD outsize; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6891 | |
| 6892 | /* First get the size of the result */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6893 | assert(insize > 0); |
| 6894 | outsize = MultiByteToWideChar(code_page, flags, in, insize, NULL, 0); |
| 6895 | if (outsize <= 0) |
| 6896 | goto error; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6897 | |
| 6898 | if (*v == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6899 | /* Create unicode object */ |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6900 | *v = (PyObject*)_PyUnicode_New(outsize); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6901 | if (*v == NULL) |
| 6902 | return -1; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6903 | out = PyUnicode_AS_UNICODE(*v); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6904 | } |
| 6905 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6906 | /* Extend unicode object */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6907 | Py_ssize_t n = PyUnicode_GET_SIZE(*v); |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6908 | if (PyUnicode_Resize(v, n + outsize) < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6909 | return -1; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6910 | out = PyUnicode_AS_UNICODE(*v) + n; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6911 | } |
| 6912 | |
| 6913 | /* Do the conversion */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6914 | outsize = MultiByteToWideChar(code_page, flags, in, insize, out, outsize); |
| 6915 | if (outsize <= 0) |
| 6916 | goto error; |
| 6917 | return insize; |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 6918 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6919 | error: |
| 6920 | if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION) |
| 6921 | return -2; |
| 6922 | PyErr_SetFromWindowsErr(0); |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 6923 | return -1; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6924 | } |
| 6925 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6926 | /* |
| 6927 | * Decode a byte string from a code page into unicode object with an error |
| 6928 | * handler. |
| 6929 | * |
| 6930 | * Returns consumed size if succeed, or raise a WindowsError or |
| 6931 | * UnicodeDecodeError exception and returns -1 on error. |
| 6932 | */ |
| 6933 | static int |
| 6934 | decode_code_page_errors(UINT code_page, |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6935 | PyObject **v, |
| 6936 | const char *in, const int size, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6937 | const char *errors) |
| 6938 | { |
| 6939 | const char *startin = in; |
| 6940 | const char *endin = in + size; |
| 6941 | const DWORD flags = decode_code_page_flags(code_page); |
| 6942 | /* Ideally, we should get reason from FormatMessage. This is the Windows |
| 6943 | 2000 English version of the message. */ |
| 6944 | const char *reason = "No mapping for the Unicode character exists " |
| 6945 | "in the target code page."; |
| 6946 | /* each step cannot decode more than 1 character, but a character can be |
| 6947 | represented as a surrogate pair */ |
| 6948 | wchar_t buffer[2], *startout, *out; |
| 6949 | int insize, outsize; |
| 6950 | PyObject *errorHandler = NULL; |
| 6951 | PyObject *exc = NULL; |
| 6952 | PyObject *encoding_obj = NULL; |
| 6953 | char *encoding; |
| 6954 | DWORD err; |
| 6955 | int ret = -1; |
| 6956 | |
| 6957 | assert(size > 0); |
| 6958 | |
| 6959 | encoding = code_page_name(code_page, &encoding_obj); |
| 6960 | if (encoding == NULL) |
| 6961 | return -1; |
| 6962 | |
| 6963 | if (errors == NULL || strcmp(errors, "strict") == 0) { |
| 6964 | /* The last error was ERROR_NO_UNICODE_TRANSLATION, then we raise a |
| 6965 | UnicodeDecodeError. */ |
| 6966 | make_decode_exception(&exc, encoding, in, size, 0, 0, reason); |
| 6967 | if (exc != NULL) { |
| 6968 | PyCodec_StrictErrors(exc); |
| 6969 | Py_CLEAR(exc); |
| 6970 | } |
| 6971 | goto error; |
| 6972 | } |
| 6973 | |
| 6974 | if (*v == NULL) { |
| 6975 | /* Create unicode object */ |
| 6976 | if (size > PY_SSIZE_T_MAX / (Py_ssize_t)Py_ARRAY_LENGTH(buffer)) { |
| 6977 | PyErr_NoMemory(); |
| 6978 | goto error; |
| 6979 | } |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6980 | *v = (PyObject*)_PyUnicode_New(size * Py_ARRAY_LENGTH(buffer)); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6981 | if (*v == NULL) |
| 6982 | goto error; |
| 6983 | startout = PyUnicode_AS_UNICODE(*v); |
| 6984 | } |
| 6985 | else { |
| 6986 | /* Extend unicode object */ |
| 6987 | Py_ssize_t n = PyUnicode_GET_SIZE(*v); |
| 6988 | if (size > (PY_SSIZE_T_MAX - n) / (Py_ssize_t)Py_ARRAY_LENGTH(buffer)) { |
| 6989 | PyErr_NoMemory(); |
| 6990 | goto error; |
| 6991 | } |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6992 | if (PyUnicode_Resize(v, n + size * Py_ARRAY_LENGTH(buffer)) < 0) |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6993 | goto error; |
| 6994 | startout = PyUnicode_AS_UNICODE(*v) + n; |
| 6995 | } |
| 6996 | |
| 6997 | /* Decode the byte string character per character */ |
| 6998 | out = startout; |
| 6999 | while (in < endin) |
| 7000 | { |
| 7001 | /* Decode a character */ |
| 7002 | insize = 1; |
| 7003 | do |
| 7004 | { |
| 7005 | outsize = MultiByteToWideChar(code_page, flags, |
| 7006 | in, insize, |
| 7007 | buffer, Py_ARRAY_LENGTH(buffer)); |
| 7008 | if (outsize > 0) |
| 7009 | break; |
| 7010 | err = GetLastError(); |
| 7011 | if (err != ERROR_NO_UNICODE_TRANSLATION |
| 7012 | && err != ERROR_INSUFFICIENT_BUFFER) |
| 7013 | { |
| 7014 | PyErr_SetFromWindowsErr(0); |
| 7015 | goto error; |
| 7016 | } |
| 7017 | insize++; |
| 7018 | } |
| 7019 | /* 4=maximum length of a UTF-8 sequence */ |
| 7020 | while (insize <= 4 && (in + insize) <= endin); |
| 7021 | |
| 7022 | if (outsize <= 0) { |
| 7023 | Py_ssize_t startinpos, endinpos, outpos; |
| 7024 | |
| 7025 | startinpos = in - startin; |
| 7026 | endinpos = startinpos + 1; |
| 7027 | outpos = out - PyUnicode_AS_UNICODE(*v); |
| 7028 | if (unicode_decode_call_errorhandler( |
| 7029 | errors, &errorHandler, |
| 7030 | encoding, reason, |
| 7031 | &startin, &endin, &startinpos, &endinpos, &exc, &in, |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 7032 | v, &outpos)) |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7033 | { |
| 7034 | goto error; |
| 7035 | } |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 7036 | out = PyUnicode_AS_UNICODE(*v) + outpos; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7037 | } |
| 7038 | else { |
| 7039 | in += insize; |
| 7040 | memcpy(out, buffer, outsize * sizeof(wchar_t)); |
| 7041 | out += outsize; |
| 7042 | } |
| 7043 | } |
| 7044 | |
| 7045 | /* write a NUL character at the end */ |
| 7046 | *out = 0; |
| 7047 | |
| 7048 | /* Extend unicode object */ |
| 7049 | outsize = out - startout; |
| 7050 | assert(outsize <= PyUnicode_WSTR_LENGTH(*v)); |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7051 | if (PyUnicode_Resize(v, outsize) < 0) |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7052 | goto error; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7053 | ret = size; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7054 | |
| 7055 | error: |
| 7056 | Py_XDECREF(encoding_obj); |
| 7057 | Py_XDECREF(errorHandler); |
| 7058 | Py_XDECREF(exc); |
| 7059 | return ret; |
| 7060 | } |
| 7061 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7062 | static PyObject * |
| 7063 | decode_code_page_stateful(int code_page, |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7064 | const char *s, Py_ssize_t size, |
| 7065 | const char *errors, Py_ssize_t *consumed) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7066 | { |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7067 | PyObject *v = NULL; |
| 7068 | int chunk_size, final, converted, done; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7069 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7070 | if (code_page < 0) { |
| 7071 | PyErr_SetString(PyExc_ValueError, "invalid code page number"); |
| 7072 | return NULL; |
| 7073 | } |
| 7074 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7075 | if (consumed) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7076 | *consumed = 0; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7077 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7078 | do |
| 7079 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7080 | #ifdef NEED_RETRY |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7081 | if (size > INT_MAX) { |
| 7082 | chunk_size = INT_MAX; |
| 7083 | final = 0; |
| 7084 | done = 0; |
| 7085 | } |
| 7086 | else |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7087 | #endif |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7088 | { |
| 7089 | chunk_size = (int)size; |
| 7090 | final = (consumed == NULL); |
| 7091 | done = 1; |
| 7092 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7093 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7094 | /* Skip trailing lead-byte unless 'final' is set */ |
| 7095 | if (!final && is_dbcs_lead_byte(code_page, s, chunk_size - 1)) |
| 7096 | --chunk_size; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7097 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7098 | if (chunk_size == 0 && done) { |
| 7099 | if (v != NULL) |
| 7100 | break; |
| 7101 | Py_INCREF(unicode_empty); |
| 7102 | return unicode_empty; |
| 7103 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7104 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7105 | |
| 7106 | converted = decode_code_page_strict(code_page, &v, |
| 7107 | s, chunk_size); |
| 7108 | if (converted == -2) |
| 7109 | converted = decode_code_page_errors(code_page, &v, |
| 7110 | s, chunk_size, |
| 7111 | errors); |
| 7112 | assert(converted != 0); |
| 7113 | |
| 7114 | if (converted < 0) { |
| 7115 | Py_XDECREF(v); |
| 7116 | return NULL; |
| 7117 | } |
| 7118 | |
| 7119 | if (consumed) |
| 7120 | *consumed += converted; |
| 7121 | |
| 7122 | s += converted; |
| 7123 | size -= converted; |
| 7124 | } while (!done); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7125 | |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 7126 | #ifndef DONT_MAKE_RESULT_READY |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 7127 | if (_PyUnicode_READY_REPLACE(&v)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7128 | Py_DECREF(v); |
| 7129 | return NULL; |
| 7130 | } |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 7131 | #endif |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 7132 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7133 | return v; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7134 | } |
| 7135 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7136 | PyObject * |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7137 | PyUnicode_DecodeCodePageStateful(int code_page, |
| 7138 | const char *s, |
| 7139 | Py_ssize_t size, |
| 7140 | const char *errors, |
| 7141 | Py_ssize_t *consumed) |
| 7142 | { |
| 7143 | return decode_code_page_stateful(code_page, s, size, errors, consumed); |
| 7144 | } |
| 7145 | |
| 7146 | PyObject * |
| 7147 | PyUnicode_DecodeMBCSStateful(const char *s, |
| 7148 | Py_ssize_t size, |
| 7149 | const char *errors, |
| 7150 | Py_ssize_t *consumed) |
| 7151 | { |
| 7152 | return decode_code_page_stateful(CP_ACP, s, size, errors, consumed); |
| 7153 | } |
| 7154 | |
| 7155 | PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7156 | PyUnicode_DecodeMBCS(const char *s, |
| 7157 | Py_ssize_t size, |
| 7158 | const char *errors) |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7159 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7160 | return PyUnicode_DecodeMBCSStateful(s, size, errors, NULL); |
| 7161 | } |
| 7162 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7163 | static DWORD |
| 7164 | encode_code_page_flags(UINT code_page, const char *errors) |
| 7165 | { |
| 7166 | if (code_page == CP_UTF8) { |
| 7167 | if (winver.dwMajorVersion >= 6) |
| 7168 | /* CP_UTF8 supports WC_ERR_INVALID_CHARS on Windows Vista |
| 7169 | and later */ |
| 7170 | return WC_ERR_INVALID_CHARS; |
| 7171 | else |
| 7172 | /* CP_UTF8 only supports flags=0 on Windows older than Vista */ |
| 7173 | return 0; |
| 7174 | } |
| 7175 | else if (code_page == CP_UTF7) { |
| 7176 | /* CP_UTF7 only supports flags=0 */ |
| 7177 | return 0; |
| 7178 | } |
| 7179 | else { |
| 7180 | if (errors != NULL && strcmp(errors, "replace") == 0) |
| 7181 | return 0; |
| 7182 | else |
| 7183 | return WC_NO_BEST_FIT_CHARS; |
| 7184 | } |
| 7185 | } |
| 7186 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7187 | /* |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7188 | * Encode a Unicode string to a Windows code page into a byte string in strict |
| 7189 | * mode. |
| 7190 | * |
| 7191 | * Returns consumed characters if succeed, returns -2 on encode error, or raise |
| 7192 | * a WindowsError and returns -1 on other error. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7193 | */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7194 | static int |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7195 | encode_code_page_strict(UINT code_page, PyObject **outbytes, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7196 | PyObject *unicode, Py_ssize_t offset, int len, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7197 | const char* errors) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7198 | { |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7199 | BOOL usedDefaultChar = FALSE; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7200 | BOOL *pusedDefaultChar = &usedDefaultChar; |
| 7201 | int outsize; |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7202 | PyObject *exc = NULL; |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 7203 | wchar_t *p; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7204 | Py_ssize_t size; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7205 | const DWORD flags = encode_code_page_flags(code_page, NULL); |
| 7206 | char *out; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7207 | /* Create a substring so that we can get the UTF-16 representation |
| 7208 | of just the slice under consideration. */ |
| 7209 | PyObject *substring; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7210 | |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7211 | assert(len > 0); |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7212 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7213 | if (code_page != CP_UTF8 && code_page != CP_UTF7) |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7214 | pusedDefaultChar = &usedDefaultChar; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7215 | else |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7216 | pusedDefaultChar = NULL; |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7217 | |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7218 | substring = PyUnicode_Substring(unicode, offset, offset+len); |
| 7219 | if (substring == NULL) |
| 7220 | return -1; |
| 7221 | p = PyUnicode_AsUnicodeAndSize(substring, &size); |
| 7222 | if (p == NULL) { |
| 7223 | Py_DECREF(substring); |
| 7224 | return -1; |
| 7225 | } |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7226 | |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7227 | /* First get the size of the result */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7228 | outsize = WideCharToMultiByte(code_page, flags, |
| 7229 | p, size, |
| 7230 | NULL, 0, |
| 7231 | NULL, pusedDefaultChar); |
| 7232 | if (outsize <= 0) |
| 7233 | goto error; |
| 7234 | /* If we used a default char, then we failed! */ |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7235 | if (pusedDefaultChar && *pusedDefaultChar) { |
| 7236 | Py_DECREF(substring); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7237 | return -2; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7238 | } |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7239 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7240 | if (*outbytes == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7241 | /* Create string object */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7242 | *outbytes = PyBytes_FromStringAndSize(NULL, outsize); |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7243 | if (*outbytes == NULL) { |
| 7244 | Py_DECREF(substring); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7245 | return -1; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7246 | } |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7247 | out = PyBytes_AS_STRING(*outbytes); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7248 | } |
| 7249 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7250 | /* Extend string object */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7251 | const Py_ssize_t n = PyBytes_Size(*outbytes); |
| 7252 | if (outsize > PY_SSIZE_T_MAX - n) { |
| 7253 | PyErr_NoMemory(); |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7254 | Py_DECREF(substring); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7255 | return -1; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7256 | } |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7257 | if (_PyBytes_Resize(outbytes, n + outsize) < 0) { |
| 7258 | Py_DECREF(substring); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7259 | return -1; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7260 | } |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7261 | out = PyBytes_AS_STRING(*outbytes) + n; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7262 | } |
| 7263 | |
| 7264 | /* Do the conversion */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7265 | outsize = WideCharToMultiByte(code_page, flags, |
| 7266 | p, size, |
| 7267 | out, outsize, |
| 7268 | NULL, pusedDefaultChar); |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7269 | Py_CLEAR(substring); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7270 | if (outsize <= 0) |
| 7271 | goto error; |
| 7272 | if (pusedDefaultChar && *pusedDefaultChar) |
| 7273 | return -2; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7274 | return 0; |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7275 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7276 | error: |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7277 | Py_XDECREF(substring); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7278 | if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION) |
| 7279 | return -2; |
| 7280 | PyErr_SetFromWindowsErr(0); |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7281 | return -1; |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7282 | } |
| 7283 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7284 | /* |
| 7285 | * Encode a Unicode string to a Windows code page into a byte string using a |
| 7286 | * error handler. |
| 7287 | * |
| 7288 | * Returns consumed characters if succeed, or raise a WindowsError and returns |
| 7289 | * -1 on other error. |
| 7290 | */ |
| 7291 | static int |
| 7292 | encode_code_page_errors(UINT code_page, PyObject **outbytes, |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7293 | PyObject *unicode, Py_ssize_t unicode_offset, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7294 | Py_ssize_t insize, const char* errors) |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7295 | { |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7296 | const DWORD flags = encode_code_page_flags(code_page, errors); |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7297 | Py_ssize_t pos = unicode_offset; |
| 7298 | Py_ssize_t endin = unicode_offset + insize; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7299 | /* Ideally, we should get reason from FormatMessage. This is the Windows |
| 7300 | 2000 English version of the message. */ |
| 7301 | const char *reason = "invalid character"; |
| 7302 | /* 4=maximum length of a UTF-8 sequence */ |
| 7303 | char buffer[4]; |
| 7304 | BOOL usedDefaultChar = FALSE, *pusedDefaultChar; |
| 7305 | Py_ssize_t outsize; |
| 7306 | char *out; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7307 | PyObject *errorHandler = NULL; |
| 7308 | PyObject *exc = NULL; |
| 7309 | PyObject *encoding_obj = NULL; |
| 7310 | char *encoding; |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7311 | Py_ssize_t newpos, newoutsize; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7312 | PyObject *rep; |
| 7313 | int ret = -1; |
| 7314 | |
| 7315 | assert(insize > 0); |
| 7316 | |
| 7317 | encoding = code_page_name(code_page, &encoding_obj); |
| 7318 | if (encoding == NULL) |
| 7319 | return -1; |
| 7320 | |
| 7321 | if (errors == NULL || strcmp(errors, "strict") == 0) { |
| 7322 | /* The last error was ERROR_NO_UNICODE_TRANSLATION, |
| 7323 | then we raise a UnicodeEncodeError. */ |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 7324 | make_encode_exception(&exc, encoding, unicode, 0, 0, reason); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7325 | if (exc != NULL) { |
| 7326 | PyCodec_StrictErrors(exc); |
| 7327 | Py_DECREF(exc); |
| 7328 | } |
| 7329 | Py_XDECREF(encoding_obj); |
| 7330 | return -1; |
| 7331 | } |
| 7332 | |
| 7333 | if (code_page != CP_UTF8 && code_page != CP_UTF7) |
| 7334 | pusedDefaultChar = &usedDefaultChar; |
| 7335 | else |
| 7336 | pusedDefaultChar = NULL; |
| 7337 | |
| 7338 | if (Py_ARRAY_LENGTH(buffer) > PY_SSIZE_T_MAX / insize) { |
| 7339 | PyErr_NoMemory(); |
| 7340 | goto error; |
| 7341 | } |
| 7342 | outsize = insize * Py_ARRAY_LENGTH(buffer); |
| 7343 | |
| 7344 | if (*outbytes == NULL) { |
| 7345 | /* Create string object */ |
| 7346 | *outbytes = PyBytes_FromStringAndSize(NULL, outsize); |
| 7347 | if (*outbytes == NULL) |
| 7348 | goto error; |
| 7349 | out = PyBytes_AS_STRING(*outbytes); |
| 7350 | } |
| 7351 | else { |
| 7352 | /* Extend string object */ |
| 7353 | Py_ssize_t n = PyBytes_Size(*outbytes); |
| 7354 | if (n > PY_SSIZE_T_MAX - outsize) { |
| 7355 | PyErr_NoMemory(); |
| 7356 | goto error; |
| 7357 | } |
| 7358 | if (_PyBytes_Resize(outbytes, n + outsize) < 0) |
| 7359 | goto error; |
| 7360 | out = PyBytes_AS_STRING(*outbytes) + n; |
| 7361 | } |
| 7362 | |
| 7363 | /* Encode the string character per character */ |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7364 | while (pos < endin) |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7365 | { |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7366 | Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, pos); |
| 7367 | wchar_t chars[2]; |
| 7368 | int charsize; |
| 7369 | if (ch < 0x10000) { |
| 7370 | chars[0] = (wchar_t)ch; |
| 7371 | charsize = 1; |
| 7372 | } |
| 7373 | else { |
| 7374 | ch -= 0x10000; |
| 7375 | chars[0] = 0xd800 + (ch >> 10); |
| 7376 | chars[1] = 0xdc00 + (ch & 0x3ff); |
| 7377 | charsize = 2; |
| 7378 | } |
| 7379 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7380 | outsize = WideCharToMultiByte(code_page, flags, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7381 | chars, charsize, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7382 | buffer, Py_ARRAY_LENGTH(buffer), |
| 7383 | NULL, pusedDefaultChar); |
| 7384 | if (outsize > 0) { |
| 7385 | if (pusedDefaultChar == NULL || !(*pusedDefaultChar)) |
| 7386 | { |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7387 | pos++; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7388 | memcpy(out, buffer, outsize); |
| 7389 | out += outsize; |
| 7390 | continue; |
| 7391 | } |
| 7392 | } |
| 7393 | else if (GetLastError() != ERROR_NO_UNICODE_TRANSLATION) { |
| 7394 | PyErr_SetFromWindowsErr(0); |
| 7395 | goto error; |
| 7396 | } |
| 7397 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7398 | rep = unicode_encode_call_errorhandler( |
| 7399 | errors, &errorHandler, encoding, reason, |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7400 | unicode, &exc, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7401 | pos, pos + 1, &newpos); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7402 | if (rep == NULL) |
| 7403 | goto error; |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7404 | pos = newpos; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7405 | |
| 7406 | if (PyBytes_Check(rep)) { |
| 7407 | outsize = PyBytes_GET_SIZE(rep); |
| 7408 | if (outsize != 1) { |
| 7409 | Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes); |
| 7410 | newoutsize = PyBytes_GET_SIZE(*outbytes) + (outsize - 1); |
| 7411 | if (_PyBytes_Resize(outbytes, newoutsize) < 0) { |
| 7412 | Py_DECREF(rep); |
| 7413 | goto error; |
| 7414 | } |
| 7415 | out = PyBytes_AS_STRING(*outbytes) + offset; |
| 7416 | } |
| 7417 | memcpy(out, PyBytes_AS_STRING(rep), outsize); |
| 7418 | out += outsize; |
| 7419 | } |
| 7420 | else { |
| 7421 | Py_ssize_t i; |
| 7422 | enum PyUnicode_Kind kind; |
| 7423 | void *data; |
| 7424 | |
| 7425 | if (PyUnicode_READY(rep) < 0) { |
| 7426 | Py_DECREF(rep); |
| 7427 | goto error; |
| 7428 | } |
| 7429 | |
| 7430 | outsize = PyUnicode_GET_LENGTH(rep); |
| 7431 | if (outsize != 1) { |
| 7432 | Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes); |
| 7433 | newoutsize = PyBytes_GET_SIZE(*outbytes) + (outsize - 1); |
| 7434 | if (_PyBytes_Resize(outbytes, newoutsize) < 0) { |
| 7435 | Py_DECREF(rep); |
| 7436 | goto error; |
| 7437 | } |
| 7438 | out = PyBytes_AS_STRING(*outbytes) + offset; |
| 7439 | } |
| 7440 | kind = PyUnicode_KIND(rep); |
| 7441 | data = PyUnicode_DATA(rep); |
| 7442 | for (i=0; i < outsize; i++) { |
| 7443 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 7444 | if (ch > 127) { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 7445 | raise_encode_exception(&exc, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7446 | encoding, unicode, |
| 7447 | pos, pos + 1, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7448 | "unable to encode error handler result to ASCII"); |
| 7449 | Py_DECREF(rep); |
| 7450 | goto error; |
| 7451 | } |
| 7452 | *out = (unsigned char)ch; |
| 7453 | out++; |
| 7454 | } |
| 7455 | } |
| 7456 | Py_DECREF(rep); |
| 7457 | } |
| 7458 | /* write a NUL byte */ |
| 7459 | *out = 0; |
| 7460 | outsize = out - PyBytes_AS_STRING(*outbytes); |
| 7461 | assert(outsize <= PyBytes_GET_SIZE(*outbytes)); |
| 7462 | if (_PyBytes_Resize(outbytes, outsize) < 0) |
| 7463 | goto error; |
| 7464 | ret = 0; |
| 7465 | |
| 7466 | error: |
| 7467 | Py_XDECREF(encoding_obj); |
| 7468 | Py_XDECREF(errorHandler); |
| 7469 | Py_XDECREF(exc); |
| 7470 | return ret; |
| 7471 | } |
| 7472 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7473 | static PyObject * |
| 7474 | encode_code_page(int code_page, |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7475 | PyObject *unicode, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7476 | const char *errors) |
| 7477 | { |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7478 | Py_ssize_t len; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7479 | PyObject *outbytes = NULL; |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7480 | Py_ssize_t offset; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7481 | int chunk_len, ret, done; |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7482 | |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7483 | if (PyUnicode_READY(unicode) < 0) |
| 7484 | return NULL; |
| 7485 | len = PyUnicode_GET_LENGTH(unicode); |
Guido van Rossum | 03e29f1 | 2000-05-04 15:52:20 +0000 | [diff] [blame] | 7486 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7487 | if (code_page < 0) { |
| 7488 | PyErr_SetString(PyExc_ValueError, "invalid code page number"); |
| 7489 | return NULL; |
| 7490 | } |
| 7491 | |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7492 | if (len == 0) |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7493 | return PyBytes_FromStringAndSize(NULL, 0); |
| 7494 | |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7495 | offset = 0; |
| 7496 | do |
| 7497 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7498 | #ifdef NEED_RETRY |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7499 | /* UTF-16 encoding may double the size, so use only INT_MAX/2 |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7500 | chunks. */ |
| 7501 | if (len > INT_MAX/2) { |
| 7502 | chunk_len = INT_MAX/2; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7503 | done = 0; |
| 7504 | } |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7505 | else |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7506 | #endif |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7507 | { |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7508 | chunk_len = (int)len; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7509 | done = 1; |
| 7510 | } |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7511 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7512 | ret = encode_code_page_strict(code_page, &outbytes, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7513 | unicode, offset, chunk_len, |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7514 | errors); |
| 7515 | if (ret == -2) |
| 7516 | ret = encode_code_page_errors(code_page, &outbytes, |
| 7517 | unicode, offset, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7518 | chunk_len, errors); |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7519 | if (ret < 0) { |
| 7520 | Py_XDECREF(outbytes); |
| 7521 | return NULL; |
| 7522 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7523 | |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7524 | offset += chunk_len; |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7525 | len -= chunk_len; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7526 | } while (!done); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7527 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7528 | return outbytes; |
| 7529 | } |
| 7530 | |
| 7531 | PyObject * |
| 7532 | PyUnicode_EncodeMBCS(const Py_UNICODE *p, |
| 7533 | Py_ssize_t size, |
| 7534 | const char *errors) |
| 7535 | { |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7536 | PyObject *unicode, *res; |
| 7537 | unicode = PyUnicode_FromUnicode(p, size); |
| 7538 | if (unicode == NULL) |
| 7539 | return NULL; |
| 7540 | res = encode_code_page(CP_ACP, unicode, errors); |
| 7541 | Py_DECREF(unicode); |
| 7542 | return res; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7543 | } |
| 7544 | |
| 7545 | PyObject * |
| 7546 | PyUnicode_EncodeCodePage(int code_page, |
| 7547 | PyObject *unicode, |
| 7548 | const char *errors) |
| 7549 | { |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7550 | return encode_code_page(code_page, unicode, errors); |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7551 | } |
Guido van Rossum | 2ea3e14 | 2000-03-31 17:24:09 +0000 | [diff] [blame] | 7552 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7553 | PyObject * |
| 7554 | PyUnicode_AsMBCSString(PyObject *unicode) |
Mark Hammond | 0ccda1e | 2003-07-01 00:13:27 +0000 | [diff] [blame] | 7555 | { |
| 7556 | if (!PyUnicode_Check(unicode)) { |
| 7557 | PyErr_BadArgument(); |
| 7558 | return NULL; |
| 7559 | } |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7560 | return PyUnicode_EncodeCodePage(CP_ACP, unicode, NULL); |
Mark Hammond | 0ccda1e | 2003-07-01 00:13:27 +0000 | [diff] [blame] | 7561 | } |
| 7562 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7563 | #undef NEED_RETRY |
| 7564 | |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 7565 | #endif /* HAVE_MBCS */ |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7566 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7567 | /* --- Character Mapping Codec -------------------------------------------- */ |
| 7568 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7569 | PyObject * |
| 7570 | PyUnicode_DecodeCharmap(const char *s, |
| 7571 | Py_ssize_t size, |
| 7572 | PyObject *mapping, |
| 7573 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7574 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7575 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 7576 | Py_ssize_t startinpos; |
| 7577 | Py_ssize_t endinpos; |
| 7578 | Py_ssize_t outpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7579 | const char *e; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 7580 | PyObject *v; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 7581 | Py_ssize_t extrachars = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7582 | PyObject *errorHandler = NULL; |
| 7583 | PyObject *exc = NULL; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 7584 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7585 | /* Default to Latin-1 */ |
| 7586 | if (mapping == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7587 | return PyUnicode_DecodeLatin1(s, size, errors); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7588 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7589 | v = PyUnicode_New(size, 127); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7590 | if (v == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7591 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7592 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 7593 | return v; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7594 | outpos = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7595 | e = s + size; |
Walter Dörwald | d1c1e10 | 2005-10-06 20:29:57 +0000 | [diff] [blame] | 7596 | if (PyUnicode_CheckExact(mapping)) { |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7597 | Py_ssize_t maplen; |
| 7598 | enum PyUnicode_Kind kind; |
| 7599 | void *data; |
| 7600 | Py_UCS4 x; |
| 7601 | |
| 7602 | if (PyUnicode_READY(mapping) < 0) |
| 7603 | return NULL; |
| 7604 | |
| 7605 | maplen = PyUnicode_GET_LENGTH(mapping); |
| 7606 | data = PyUnicode_DATA(mapping); |
| 7607 | kind = PyUnicode_KIND(mapping); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7608 | while (s < e) { |
| 7609 | unsigned char ch = *s; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7610 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7611 | if (ch < maplen) |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7612 | x = PyUnicode_READ(kind, data, ch); |
| 7613 | else |
| 7614 | x = 0xfffe; /* invalid value */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7615 | |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7616 | if (x == 0xfffe) |
| 7617 | { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7618 | /* undefined mapping */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7619 | startinpos = s-starts; |
| 7620 | endinpos = startinpos+1; |
| 7621 | if (unicode_decode_call_errorhandler( |
| 7622 | errors, &errorHandler, |
| 7623 | "charmap", "character maps to <undefined>", |
| 7624 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7625 | &v, &outpos)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7626 | goto onError; |
| 7627 | } |
| 7628 | continue; |
| 7629 | } |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7630 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7631 | if (unicode_putchar(&v, &outpos, x) < 0) |
| 7632 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7633 | ++s; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7634 | } |
Walter Dörwald | d1c1e10 | 2005-10-06 20:29:57 +0000 | [diff] [blame] | 7635 | } |
| 7636 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7637 | while (s < e) { |
| 7638 | unsigned char ch = *s; |
| 7639 | PyObject *w, *x; |
Walter Dörwald | d1c1e10 | 2005-10-06 20:29:57 +0000 | [diff] [blame] | 7640 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7641 | /* Get mapping (char ordinal -> integer, Unicode char or None) */ |
| 7642 | w = PyLong_FromLong((long)ch); |
| 7643 | if (w == NULL) |
| 7644 | goto onError; |
| 7645 | x = PyObject_GetItem(mapping, w); |
| 7646 | Py_DECREF(w); |
| 7647 | if (x == NULL) { |
| 7648 | if (PyErr_ExceptionMatches(PyExc_LookupError)) { |
| 7649 | /* No mapping found means: mapping is undefined. */ |
| 7650 | PyErr_Clear(); |
| 7651 | x = Py_None; |
| 7652 | Py_INCREF(x); |
| 7653 | } else |
| 7654 | goto onError; |
| 7655 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7656 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7657 | /* Apply mapping */ |
| 7658 | if (PyLong_Check(x)) { |
| 7659 | long value = PyLong_AS_LONG(x); |
| 7660 | if (value < 0 || value > 65535) { |
| 7661 | PyErr_SetString(PyExc_TypeError, |
| 7662 | "character mapping must be in range(65536)"); |
| 7663 | Py_DECREF(x); |
| 7664 | goto onError; |
| 7665 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7666 | if (unicode_putchar(&v, &outpos, value) < 0) |
| 7667 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7668 | } |
| 7669 | else if (x == Py_None) { |
| 7670 | /* undefined mapping */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7671 | startinpos = s-starts; |
| 7672 | endinpos = startinpos+1; |
| 7673 | if (unicode_decode_call_errorhandler( |
| 7674 | errors, &errorHandler, |
| 7675 | "charmap", "character maps to <undefined>", |
| 7676 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7677 | &v, &outpos)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7678 | Py_DECREF(x); |
| 7679 | goto onError; |
| 7680 | } |
| 7681 | Py_DECREF(x); |
| 7682 | continue; |
| 7683 | } |
| 7684 | else if (PyUnicode_Check(x)) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7685 | Py_ssize_t targetsize; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7686 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7687 | if (PyUnicode_READY(x) < 0) |
| 7688 | goto onError; |
| 7689 | targetsize = PyUnicode_GET_LENGTH(x); |
| 7690 | |
| 7691 | if (targetsize == 1) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7692 | /* 1-1 mapping */ |
Victor Stinner | 62aa4d0 | 2011-11-09 00:03:45 +0100 | [diff] [blame] | 7693 | if (unicode_putchar(&v, &outpos, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7694 | PyUnicode_READ_CHAR(x, 0)) < 0) |
| 7695 | goto onError; |
| 7696 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7697 | else if (targetsize > 1) { |
| 7698 | /* 1-n mapping */ |
| 7699 | if (targetsize > extrachars) { |
| 7700 | /* resize first */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7701 | Py_ssize_t needed = (targetsize - extrachars) + \ |
| 7702 | (targetsize << 2); |
| 7703 | extrachars += needed; |
| 7704 | /* XXX overflow detection missing */ |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 7705 | if (PyUnicode_Resize(&v, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7706 | PyUnicode_GET_LENGTH(v) + needed) < 0) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7707 | Py_DECREF(x); |
| 7708 | goto onError; |
| 7709 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7710 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7711 | if (unicode_widen(&v, PyUnicode_MAX_CHAR_VALUE(x)) < 0) |
| 7712 | goto onError; |
| 7713 | PyUnicode_CopyCharacters(v, outpos, x, 0, targetsize); |
| 7714 | outpos += targetsize; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7715 | extrachars -= targetsize; |
| 7716 | } |
| 7717 | /* 1-0 mapping: skip the character */ |
| 7718 | } |
| 7719 | else { |
| 7720 | /* wrong return value */ |
| 7721 | PyErr_SetString(PyExc_TypeError, |
| 7722 | "character mapping must return integer, None or str"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7723 | Py_DECREF(x); |
| 7724 | goto onError; |
| 7725 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7726 | Py_DECREF(x); |
| 7727 | ++s; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7728 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7729 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7730 | if (PyUnicode_Resize(&v, outpos) < 0) |
Antoine Pitrou | a8f63c0 | 2011-11-08 18:37:16 +0100 | [diff] [blame] | 7731 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7732 | Py_XDECREF(errorHandler); |
| 7733 | Py_XDECREF(exc); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 7734 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 7735 | return v; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 7736 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7737 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7738 | Py_XDECREF(errorHandler); |
| 7739 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7740 | Py_XDECREF(v); |
| 7741 | return NULL; |
| 7742 | } |
| 7743 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7744 | /* Charmap encoding: the lookup table */ |
| 7745 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7746 | struct encoding_map { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7747 | PyObject_HEAD |
| 7748 | unsigned char level1[32]; |
| 7749 | int count2, count3; |
| 7750 | unsigned char level23[1]; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7751 | }; |
| 7752 | |
| 7753 | static PyObject* |
| 7754 | encoding_map_size(PyObject *obj, PyObject* args) |
| 7755 | { |
| 7756 | struct encoding_map *map = (struct encoding_map*)obj; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7757 | return PyLong_FromLong(sizeof(*map) - 1 + 16*map->count2 + |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7758 | 128*map->count3); |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7759 | } |
| 7760 | |
| 7761 | static PyMethodDef encoding_map_methods[] = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7762 | {"size", encoding_map_size, METH_NOARGS, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7763 | PyDoc_STR("Return the size (in bytes) of this object") }, |
| 7764 | { 0 } |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7765 | }; |
| 7766 | |
| 7767 | static void |
| 7768 | encoding_map_dealloc(PyObject* o) |
| 7769 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7770 | PyObject_FREE(o); |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7771 | } |
| 7772 | |
| 7773 | static PyTypeObject EncodingMapType = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7774 | PyVarObject_HEAD_INIT(NULL, 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7775 | "EncodingMap", /*tp_name*/ |
| 7776 | sizeof(struct encoding_map), /*tp_basicsize*/ |
| 7777 | 0, /*tp_itemsize*/ |
| 7778 | /* methods */ |
| 7779 | encoding_map_dealloc, /*tp_dealloc*/ |
| 7780 | 0, /*tp_print*/ |
| 7781 | 0, /*tp_getattr*/ |
| 7782 | 0, /*tp_setattr*/ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 7783 | 0, /*tp_reserved*/ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7784 | 0, /*tp_repr*/ |
| 7785 | 0, /*tp_as_number*/ |
| 7786 | 0, /*tp_as_sequence*/ |
| 7787 | 0, /*tp_as_mapping*/ |
| 7788 | 0, /*tp_hash*/ |
| 7789 | 0, /*tp_call*/ |
| 7790 | 0, /*tp_str*/ |
| 7791 | 0, /*tp_getattro*/ |
| 7792 | 0, /*tp_setattro*/ |
| 7793 | 0, /*tp_as_buffer*/ |
| 7794 | Py_TPFLAGS_DEFAULT, /*tp_flags*/ |
| 7795 | 0, /*tp_doc*/ |
| 7796 | 0, /*tp_traverse*/ |
| 7797 | 0, /*tp_clear*/ |
| 7798 | 0, /*tp_richcompare*/ |
| 7799 | 0, /*tp_weaklistoffset*/ |
| 7800 | 0, /*tp_iter*/ |
| 7801 | 0, /*tp_iternext*/ |
| 7802 | encoding_map_methods, /*tp_methods*/ |
| 7803 | 0, /*tp_members*/ |
| 7804 | 0, /*tp_getset*/ |
| 7805 | 0, /*tp_base*/ |
| 7806 | 0, /*tp_dict*/ |
| 7807 | 0, /*tp_descr_get*/ |
| 7808 | 0, /*tp_descr_set*/ |
| 7809 | 0, /*tp_dictoffset*/ |
| 7810 | 0, /*tp_init*/ |
| 7811 | 0, /*tp_alloc*/ |
| 7812 | 0, /*tp_new*/ |
| 7813 | 0, /*tp_free*/ |
| 7814 | 0, /*tp_is_gc*/ |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7815 | }; |
| 7816 | |
| 7817 | PyObject* |
| 7818 | PyUnicode_BuildEncodingMap(PyObject* string) |
| 7819 | { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7820 | PyObject *result; |
| 7821 | struct encoding_map *mresult; |
| 7822 | int i; |
| 7823 | int need_dict = 0; |
| 7824 | unsigned char level1[32]; |
| 7825 | unsigned char level2[512]; |
| 7826 | unsigned char *mlevel1, *mlevel2, *mlevel3; |
| 7827 | int count2 = 0, count3 = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7828 | int kind; |
| 7829 | void *data; |
| 7830 | Py_UCS4 ch; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7831 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7832 | if (!PyUnicode_Check(string) || PyUnicode_GET_LENGTH(string) != 256) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7833 | PyErr_BadArgument(); |
| 7834 | return NULL; |
| 7835 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7836 | kind = PyUnicode_KIND(string); |
| 7837 | data = PyUnicode_DATA(string); |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7838 | memset(level1, 0xFF, sizeof level1); |
| 7839 | memset(level2, 0xFF, sizeof level2); |
| 7840 | |
| 7841 | /* If there isn't a one-to-one mapping of NULL to \0, |
| 7842 | or if there are non-BMP characters, we need to use |
| 7843 | a mapping dictionary. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7844 | if (PyUnicode_READ(kind, data, 0) != 0) |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7845 | need_dict = 1; |
| 7846 | for (i = 1; i < 256; i++) { |
| 7847 | int l1, l2; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7848 | ch = PyUnicode_READ(kind, data, i); |
| 7849 | if (ch == 0 || ch > 0xFFFF) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7850 | need_dict = 1; |
| 7851 | break; |
| 7852 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7853 | if (ch == 0xFFFE) |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7854 | /* unmapped character */ |
| 7855 | continue; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7856 | l1 = ch >> 11; |
| 7857 | l2 = ch >> 7; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7858 | if (level1[l1] == 0xFF) |
| 7859 | level1[l1] = count2++; |
| 7860 | if (level2[l2] == 0xFF) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7861 | level2[l2] = count3++; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7862 | } |
| 7863 | |
| 7864 | if (count2 >= 0xFF || count3 >= 0xFF) |
| 7865 | need_dict = 1; |
| 7866 | |
| 7867 | if (need_dict) { |
| 7868 | PyObject *result = PyDict_New(); |
| 7869 | PyObject *key, *value; |
| 7870 | if (!result) |
| 7871 | return NULL; |
| 7872 | for (i = 0; i < 256; i++) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7873 | key = PyLong_FromLong(PyUnicode_READ(kind, data, i)); |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 7874 | value = PyLong_FromLong(i); |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7875 | if (!key || !value) |
| 7876 | goto failed1; |
| 7877 | if (PyDict_SetItem(result, key, value) == -1) |
| 7878 | goto failed1; |
| 7879 | Py_DECREF(key); |
| 7880 | Py_DECREF(value); |
| 7881 | } |
| 7882 | return result; |
| 7883 | failed1: |
| 7884 | Py_XDECREF(key); |
| 7885 | Py_XDECREF(value); |
| 7886 | Py_DECREF(result); |
| 7887 | return NULL; |
| 7888 | } |
| 7889 | |
| 7890 | /* Create a three-level trie */ |
| 7891 | result = PyObject_MALLOC(sizeof(struct encoding_map) + |
| 7892 | 16*count2 + 128*count3 - 1); |
| 7893 | if (!result) |
| 7894 | return PyErr_NoMemory(); |
| 7895 | PyObject_Init(result, &EncodingMapType); |
| 7896 | mresult = (struct encoding_map*)result; |
| 7897 | mresult->count2 = count2; |
| 7898 | mresult->count3 = count3; |
| 7899 | mlevel1 = mresult->level1; |
| 7900 | mlevel2 = mresult->level23; |
| 7901 | mlevel3 = mresult->level23 + 16*count2; |
| 7902 | memcpy(mlevel1, level1, 32); |
| 7903 | memset(mlevel2, 0xFF, 16*count2); |
| 7904 | memset(mlevel3, 0, 128*count3); |
| 7905 | count3 = 0; |
| 7906 | for (i = 1; i < 256; i++) { |
| 7907 | int o1, o2, o3, i2, i3; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7908 | if (PyUnicode_READ(kind, data, i) == 0xFFFE) |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7909 | /* unmapped character */ |
| 7910 | continue; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7911 | o1 = PyUnicode_READ(kind, data, i)>>11; |
| 7912 | o2 = (PyUnicode_READ(kind, data, i)>>7) & 0xF; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7913 | i2 = 16*mlevel1[o1] + o2; |
| 7914 | if (mlevel2[i2] == 0xFF) |
| 7915 | mlevel2[i2] = count3++; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7916 | o3 = PyUnicode_READ(kind, data, i) & 0x7F; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7917 | i3 = 128*mlevel2[i2] + o3; |
| 7918 | mlevel3[i3] = i; |
| 7919 | } |
| 7920 | return result; |
| 7921 | } |
| 7922 | |
| 7923 | static int |
| 7924 | encoding_map_lookup(Py_UNICODE c, PyObject *mapping) |
| 7925 | { |
| 7926 | struct encoding_map *map = (struct encoding_map*)mapping; |
| 7927 | int l1 = c>>11; |
| 7928 | int l2 = (c>>7) & 0xF; |
| 7929 | int l3 = c & 0x7F; |
| 7930 | int i; |
| 7931 | |
| 7932 | #ifdef Py_UNICODE_WIDE |
| 7933 | if (c > 0xFFFF) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7934 | return -1; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7935 | } |
| 7936 | #endif |
| 7937 | if (c == 0) |
| 7938 | return 0; |
| 7939 | /* level 1*/ |
| 7940 | i = map->level1[l1]; |
| 7941 | if (i == 0xFF) { |
| 7942 | return -1; |
| 7943 | } |
| 7944 | /* level 2*/ |
| 7945 | i = map->level23[16*i+l2]; |
| 7946 | if (i == 0xFF) { |
| 7947 | return -1; |
| 7948 | } |
| 7949 | /* level 3 */ |
| 7950 | i = map->level23[16*map->count2 + 128*i + l3]; |
| 7951 | if (i == 0) { |
| 7952 | return -1; |
| 7953 | } |
| 7954 | return i; |
| 7955 | } |
| 7956 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7957 | /* Lookup the character ch in the mapping. If the character |
| 7958 | can't be found, Py_None is returned (or NULL, if another |
Fred Drake | db390c1 | 2005-10-28 14:39:47 +0000 | [diff] [blame] | 7959 | error occurred). */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7960 | static PyObject * |
| 7961 | charmapencode_lookup(Py_UNICODE c, PyObject *mapping) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7962 | { |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 7963 | PyObject *w = PyLong_FromLong((long)c); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7964 | PyObject *x; |
| 7965 | |
| 7966 | if (w == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7967 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7968 | x = PyObject_GetItem(mapping, w); |
| 7969 | Py_DECREF(w); |
| 7970 | if (x == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7971 | if (PyErr_ExceptionMatches(PyExc_LookupError)) { |
| 7972 | /* No mapping found means: mapping is undefined. */ |
| 7973 | PyErr_Clear(); |
| 7974 | x = Py_None; |
| 7975 | Py_INCREF(x); |
| 7976 | return x; |
| 7977 | } else |
| 7978 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7979 | } |
Walter Dörwald | adc7274 | 2003-01-08 22:01:33 +0000 | [diff] [blame] | 7980 | else if (x == Py_None) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7981 | return x; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 7982 | else if (PyLong_Check(x)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7983 | long value = PyLong_AS_LONG(x); |
| 7984 | if (value < 0 || value > 255) { |
| 7985 | PyErr_SetString(PyExc_TypeError, |
| 7986 | "character mapping must be in range(256)"); |
| 7987 | Py_DECREF(x); |
| 7988 | return NULL; |
| 7989 | } |
| 7990 | return x; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7991 | } |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 7992 | else if (PyBytes_Check(x)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7993 | return x; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7994 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7995 | /* wrong return value */ |
| 7996 | PyErr_Format(PyExc_TypeError, |
| 7997 | "character mapping must return integer, bytes or None, not %.400s", |
| 7998 | x->ob_type->tp_name); |
| 7999 | Py_DECREF(x); |
| 8000 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8001 | } |
| 8002 | } |
| 8003 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8004 | static int |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 8005 | charmapencode_resize(PyObject **outobj, Py_ssize_t *outpos, Py_ssize_t requiredsize) |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8006 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8007 | Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj); |
| 8008 | /* exponentially overallocate to minimize reallocations */ |
| 8009 | if (requiredsize < 2*outsize) |
| 8010 | requiredsize = 2*outsize; |
| 8011 | if (_PyBytes_Resize(outobj, requiredsize)) |
| 8012 | return -1; |
| 8013 | return 0; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8014 | } |
| 8015 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8016 | typedef enum charmapencode_result { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8017 | enc_SUCCESS, enc_FAILED, enc_EXCEPTION |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8018 | } charmapencode_result; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8019 | /* lookup the character, put the result in the output string and adjust |
Walter Dörwald | 827b055 | 2007-05-12 13:23:53 +0000 | [diff] [blame] | 8020 | various state variables. Resize the output bytes object if not enough |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8021 | space is available. Return a new reference to the object that |
| 8022 | was put in the output buffer, or Py_None, if the mapping was undefined |
| 8023 | (in which case no character was written) or NULL, if a |
Andrew M. Kuchling | 8294de5 | 2005-11-02 16:36:12 +0000 | [diff] [blame] | 8024 | reallocation error occurred. The caller must decref the result */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8025 | static charmapencode_result |
| 8026 | charmapencode_output(Py_UNICODE c, PyObject *mapping, |
| 8027 | PyObject **outobj, Py_ssize_t *outpos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8028 | { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8029 | PyObject *rep; |
| 8030 | char *outstart; |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 8031 | Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8032 | |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 8033 | if (Py_TYPE(mapping) == &EncodingMapType) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8034 | int res = encoding_map_lookup(c, mapping); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8035 | Py_ssize_t requiredsize = *outpos+1; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8036 | if (res == -1) |
| 8037 | return enc_FAILED; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8038 | if (outsize<requiredsize) |
| 8039 | if (charmapencode_resize(outobj, outpos, requiredsize)) |
| 8040 | return enc_EXCEPTION; |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 8041 | outstart = PyBytes_AS_STRING(*outobj); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8042 | outstart[(*outpos)++] = (char)res; |
| 8043 | return enc_SUCCESS; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8044 | } |
| 8045 | |
| 8046 | rep = charmapencode_lookup(c, mapping); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8047 | if (rep==NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8048 | return enc_EXCEPTION; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8049 | else if (rep==Py_None) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8050 | Py_DECREF(rep); |
| 8051 | return enc_FAILED; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8052 | } else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8053 | if (PyLong_Check(rep)) { |
| 8054 | Py_ssize_t requiredsize = *outpos+1; |
| 8055 | if (outsize<requiredsize) |
| 8056 | if (charmapencode_resize(outobj, outpos, requiredsize)) { |
| 8057 | Py_DECREF(rep); |
| 8058 | return enc_EXCEPTION; |
| 8059 | } |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 8060 | outstart = PyBytes_AS_STRING(*outobj); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8061 | outstart[(*outpos)++] = (char)PyLong_AS_LONG(rep); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8062 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8063 | else { |
| 8064 | const char *repchars = PyBytes_AS_STRING(rep); |
| 8065 | Py_ssize_t repsize = PyBytes_GET_SIZE(rep); |
| 8066 | Py_ssize_t requiredsize = *outpos+repsize; |
| 8067 | if (outsize<requiredsize) |
| 8068 | if (charmapencode_resize(outobj, outpos, requiredsize)) { |
| 8069 | Py_DECREF(rep); |
| 8070 | return enc_EXCEPTION; |
| 8071 | } |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 8072 | outstart = PyBytes_AS_STRING(*outobj); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8073 | memcpy(outstart + *outpos, repchars, repsize); |
| 8074 | *outpos += repsize; |
| 8075 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8076 | } |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8077 | Py_DECREF(rep); |
| 8078 | return enc_SUCCESS; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8079 | } |
| 8080 | |
| 8081 | /* handle an error in PyUnicode_EncodeCharmap |
| 8082 | Return 0 on success, -1 on error */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8083 | static int |
| 8084 | charmap_encoding_error( |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8085 | PyObject *unicode, Py_ssize_t *inpos, PyObject *mapping, |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8086 | PyObject **exceptionObject, |
Walter Dörwald | e5402fb | 2003-08-14 20:25:29 +0000 | [diff] [blame] | 8087 | int *known_errorHandler, PyObject **errorHandler, const char *errors, |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 8088 | PyObject **res, Py_ssize_t *respos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8089 | { |
| 8090 | PyObject *repunicode = NULL; /* initialize to prevent gcc warning */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8091 | Py_ssize_t size, repsize; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8092 | Py_ssize_t newpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8093 | Py_UNICODE *uni2; |
| 8094 | /* startpos for collecting unencodable chars */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8095 | Py_ssize_t collstartpos = *inpos; |
| 8096 | Py_ssize_t collendpos = *inpos+1; |
| 8097 | Py_ssize_t collpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8098 | char *encoding = "charmap"; |
| 8099 | char *reason = "character maps to <undefined>"; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8100 | charmapencode_result x; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8101 | Py_UCS4 ch; |
Brian Curtin | 2787ea4 | 2011-11-02 15:09:37 -0500 | [diff] [blame] | 8102 | int val; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8103 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8104 | if (PyUnicode_READY(unicode) < 0) |
| 8105 | return -1; |
| 8106 | size = PyUnicode_GET_LENGTH(unicode); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8107 | /* find all unencodable characters */ |
| 8108 | while (collendpos < size) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 8109 | PyObject *rep; |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 8110 | if (Py_TYPE(mapping) == &EncodingMapType) { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8111 | ch = PyUnicode_READ_CHAR(unicode, collendpos); |
Brian Curtin | 2787ea4 | 2011-11-02 15:09:37 -0500 | [diff] [blame] | 8112 | val = encoding_map_lookup(ch, mapping); |
| 8113 | if (val != -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8114 | break; |
| 8115 | ++collendpos; |
| 8116 | continue; |
| 8117 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8118 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8119 | ch = PyUnicode_READ_CHAR(unicode, collendpos); |
| 8120 | rep = charmapencode_lookup(ch, mapping); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8121 | if (rep==NULL) |
| 8122 | return -1; |
| 8123 | else if (rep!=Py_None) { |
| 8124 | Py_DECREF(rep); |
| 8125 | break; |
| 8126 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8127 | Py_DECREF(rep); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8128 | ++collendpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8129 | } |
| 8130 | /* cache callback name lookup |
| 8131 | * (if not done yet, i.e. it's the first error) */ |
| 8132 | if (*known_errorHandler==-1) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8133 | if ((errors==NULL) || (!strcmp(errors, "strict"))) |
| 8134 | *known_errorHandler = 1; |
| 8135 | else if (!strcmp(errors, "replace")) |
| 8136 | *known_errorHandler = 2; |
| 8137 | else if (!strcmp(errors, "ignore")) |
| 8138 | *known_errorHandler = 3; |
| 8139 | else if (!strcmp(errors, "xmlcharrefreplace")) |
| 8140 | *known_errorHandler = 4; |
| 8141 | else |
| 8142 | *known_errorHandler = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8143 | } |
| 8144 | switch (*known_errorHandler) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8145 | case 1: /* strict */ |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8146 | raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8147 | return -1; |
| 8148 | case 2: /* replace */ |
| 8149 | for (collpos = collstartpos; collpos<collendpos; ++collpos) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8150 | x = charmapencode_output('?', mapping, res, respos); |
| 8151 | if (x==enc_EXCEPTION) { |
| 8152 | return -1; |
| 8153 | } |
| 8154 | else if (x==enc_FAILED) { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8155 | raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8156 | return -1; |
| 8157 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8158 | } |
| 8159 | /* fall through */ |
| 8160 | case 3: /* ignore */ |
| 8161 | *inpos = collendpos; |
| 8162 | break; |
| 8163 | case 4: /* xmlcharrefreplace */ |
| 8164 | /* generate replacement (temporarily (mis)uses p) */ |
| 8165 | for (collpos = collstartpos; collpos < collendpos; ++collpos) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8166 | char buffer[2+29+1+1]; |
| 8167 | char *cp; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8168 | sprintf(buffer, "&#%d;", (int)PyUnicode_READ_CHAR(unicode, collpos)); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8169 | for (cp = buffer; *cp; ++cp) { |
| 8170 | x = charmapencode_output(*cp, mapping, res, respos); |
| 8171 | if (x==enc_EXCEPTION) |
| 8172 | return -1; |
| 8173 | else if (x==enc_FAILED) { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8174 | raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8175 | return -1; |
| 8176 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8177 | } |
| 8178 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8179 | *inpos = collendpos; |
| 8180 | break; |
| 8181 | default: |
| 8182 | repunicode = unicode_encode_call_errorhandler(errors, errorHandler, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8183 | encoding, reason, unicode, exceptionObject, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8184 | collstartpos, collendpos, &newpos); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8185 | if (repunicode == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8186 | return -1; |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 8187 | if (PyBytes_Check(repunicode)) { |
| 8188 | /* Directly copy bytes result to output. */ |
| 8189 | Py_ssize_t outsize = PyBytes_Size(*res); |
| 8190 | Py_ssize_t requiredsize; |
| 8191 | repsize = PyBytes_Size(repunicode); |
| 8192 | requiredsize = *respos + repsize; |
| 8193 | if (requiredsize > outsize) |
| 8194 | /* Make room for all additional bytes. */ |
| 8195 | if (charmapencode_resize(res, respos, requiredsize)) { |
| 8196 | Py_DECREF(repunicode); |
| 8197 | return -1; |
| 8198 | } |
| 8199 | memcpy(PyBytes_AsString(*res) + *respos, |
| 8200 | PyBytes_AsString(repunicode), repsize); |
| 8201 | *respos += repsize; |
| 8202 | *inpos = newpos; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 8203 | Py_DECREF(repunicode); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 8204 | break; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 8205 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8206 | /* generate replacement */ |
| 8207 | repsize = PyUnicode_GET_SIZE(repunicode); |
| 8208 | for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8209 | x = charmapencode_output(*uni2, mapping, res, respos); |
| 8210 | if (x==enc_EXCEPTION) { |
| 8211 | return -1; |
| 8212 | } |
| 8213 | else if (x==enc_FAILED) { |
| 8214 | Py_DECREF(repunicode); |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8215 | raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8216 | return -1; |
| 8217 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8218 | } |
| 8219 | *inpos = newpos; |
| 8220 | Py_DECREF(repunicode); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8221 | } |
| 8222 | return 0; |
| 8223 | } |
| 8224 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8225 | PyObject * |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8226 | _PyUnicode_EncodeCharmap(PyObject *unicode, |
| 8227 | PyObject *mapping, |
| 8228 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8229 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8230 | /* output object */ |
| 8231 | PyObject *res = NULL; |
| 8232 | /* current input position */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8233 | Py_ssize_t inpos = 0; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8234 | Py_ssize_t size; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8235 | /* current output position */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8236 | Py_ssize_t respos = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8237 | PyObject *errorHandler = NULL; |
| 8238 | PyObject *exc = NULL; |
| 8239 | /* the following variable is used for caching string comparisons |
| 8240 | * -1=not initialized, 0=unknown, 1=strict, 2=replace, |
| 8241 | * 3=ignore, 4=xmlcharrefreplace */ |
| 8242 | int known_errorHandler = -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8243 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8244 | if (PyUnicode_READY(unicode) < 0) |
| 8245 | return NULL; |
| 8246 | size = PyUnicode_GET_LENGTH(unicode); |
| 8247 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8248 | /* Default to Latin-1 */ |
| 8249 | if (mapping == NULL) |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8250 | return unicode_encode_ucs1(unicode, errors, 256); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8251 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8252 | /* allocate enough for a simple encoding without |
| 8253 | replacements, if we need more, we'll resize */ |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 8254 | res = PyBytes_FromStringAndSize(NULL, size); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8255 | if (res == NULL) |
| 8256 | goto onError; |
Marc-André Lemburg | b752077 | 2000-08-14 11:29:19 +0000 | [diff] [blame] | 8257 | if (size == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8258 | return res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8259 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8260 | while (inpos<size) { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8261 | Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, inpos); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8262 | /* try to encode it */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8263 | charmapencode_result x = charmapencode_output(ch, mapping, &res, &respos); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8264 | if (x==enc_EXCEPTION) /* error */ |
| 8265 | goto onError; |
| 8266 | if (x==enc_FAILED) { /* unencodable character */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8267 | if (charmap_encoding_error(unicode, &inpos, mapping, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8268 | &exc, |
| 8269 | &known_errorHandler, &errorHandler, errors, |
| 8270 | &res, &respos)) { |
| 8271 | goto onError; |
| 8272 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8273 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8274 | else |
| 8275 | /* done with this character => adjust input position */ |
| 8276 | ++inpos; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8277 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8278 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8279 | /* Resize if we allocated to much */ |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 8280 | if (respos<PyBytes_GET_SIZE(res)) |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 8281 | if (_PyBytes_Resize(&res, respos) < 0) |
| 8282 | goto onError; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 8283 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8284 | Py_XDECREF(exc); |
| 8285 | Py_XDECREF(errorHandler); |
| 8286 | return res; |
| 8287 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8288 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8289 | Py_XDECREF(res); |
| 8290 | Py_XDECREF(exc); |
| 8291 | Py_XDECREF(errorHandler); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8292 | return NULL; |
| 8293 | } |
| 8294 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8295 | /* Deprecated */ |
| 8296 | PyObject * |
| 8297 | PyUnicode_EncodeCharmap(const Py_UNICODE *p, |
| 8298 | Py_ssize_t size, |
| 8299 | PyObject *mapping, |
| 8300 | const char *errors) |
| 8301 | { |
| 8302 | PyObject *result; |
| 8303 | PyObject *unicode = PyUnicode_FromUnicode(p, size); |
| 8304 | if (unicode == NULL) |
| 8305 | return NULL; |
| 8306 | result = _PyUnicode_EncodeCharmap(unicode, mapping, errors); |
| 8307 | Py_DECREF(unicode); |
Victor Stinner | fc026c9 | 2011-11-04 00:24:51 +0100 | [diff] [blame] | 8308 | return result; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8309 | } |
| 8310 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8311 | PyObject * |
| 8312 | PyUnicode_AsCharmapString(PyObject *unicode, |
| 8313 | PyObject *mapping) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8314 | { |
| 8315 | if (!PyUnicode_Check(unicode) || mapping == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8316 | PyErr_BadArgument(); |
| 8317 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8318 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8319 | return _PyUnicode_EncodeCharmap(unicode, mapping, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8320 | } |
| 8321 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8322 | /* create or adjust a UnicodeTranslateError */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8323 | static void |
| 8324 | make_translate_exception(PyObject **exceptionObject, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8325 | PyObject *unicode, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8326 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 8327 | const char *reason) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8328 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8329 | if (*exceptionObject == NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8330 | *exceptionObject = _PyUnicodeTranslateError_Create( |
| 8331 | unicode, startpos, endpos, reason); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8332 | } |
| 8333 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8334 | if (PyUnicodeTranslateError_SetStart(*exceptionObject, startpos)) |
| 8335 | goto onError; |
| 8336 | if (PyUnicodeTranslateError_SetEnd(*exceptionObject, endpos)) |
| 8337 | goto onError; |
| 8338 | if (PyUnicodeTranslateError_SetReason(*exceptionObject, reason)) |
| 8339 | goto onError; |
| 8340 | return; |
| 8341 | onError: |
| 8342 | Py_DECREF(*exceptionObject); |
| 8343 | *exceptionObject = NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8344 | } |
| 8345 | } |
| 8346 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8347 | /* raises a UnicodeTranslateError */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8348 | static void |
| 8349 | raise_translate_exception(PyObject **exceptionObject, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8350 | PyObject *unicode, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8351 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 8352 | const char *reason) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8353 | { |
| 8354 | make_translate_exception(exceptionObject, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8355 | unicode, startpos, endpos, reason); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8356 | if (*exceptionObject != NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8357 | PyCodec_StrictErrors(*exceptionObject); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8358 | } |
| 8359 | |
| 8360 | /* error handling callback helper: |
| 8361 | build arguments, call the callback and check the arguments, |
| 8362 | put the result into newpos and return the replacement string, which |
| 8363 | has to be freed by the caller */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8364 | static PyObject * |
| 8365 | unicode_translate_call_errorhandler(const char *errors, |
| 8366 | PyObject **errorHandler, |
| 8367 | const char *reason, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8368 | PyObject *unicode, PyObject **exceptionObject, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8369 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 8370 | Py_ssize_t *newpos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8371 | { |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 8372 | static char *argparse = "O!n;translating error handler must return (str, int) tuple"; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8373 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 8374 | Py_ssize_t i_newpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8375 | PyObject *restuple; |
| 8376 | PyObject *resunicode; |
| 8377 | |
| 8378 | if (*errorHandler == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8379 | *errorHandler = PyCodec_LookupError(errors); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8380 | if (*errorHandler == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8381 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8382 | } |
| 8383 | |
| 8384 | make_translate_exception(exceptionObject, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8385 | unicode, startpos, endpos, reason); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8386 | if (*exceptionObject == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8387 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8388 | |
| 8389 | restuple = PyObject_CallFunctionObjArgs( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8390 | *errorHandler, *exceptionObject, NULL); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8391 | if (restuple == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8392 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8393 | if (!PyTuple_Check(restuple)) { |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 8394 | PyErr_SetString(PyExc_TypeError, &argparse[4]); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8395 | Py_DECREF(restuple); |
| 8396 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8397 | } |
| 8398 | if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8399 | &resunicode, &i_newpos)) { |
| 8400 | Py_DECREF(restuple); |
| 8401 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8402 | } |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8403 | if (i_newpos<0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8404 | *newpos = PyUnicode_GET_LENGTH(unicode)+i_newpos; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8405 | else |
| 8406 | *newpos = i_newpos; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8407 | if (*newpos<0 || *newpos>PyUnicode_GET_LENGTH(unicode)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8408 | PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos); |
| 8409 | Py_DECREF(restuple); |
| 8410 | return NULL; |
Walter Dörwald | 2e0b18a | 2003-01-31 17:19:08 +0000 | [diff] [blame] | 8411 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8412 | Py_INCREF(resunicode); |
| 8413 | Py_DECREF(restuple); |
| 8414 | return resunicode; |
| 8415 | } |
| 8416 | |
| 8417 | /* Lookup the character ch in the mapping and put the result in result, |
| 8418 | which must be decrefed by the caller. |
| 8419 | Return 0 on success, -1 on error */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8420 | static int |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8421 | charmaptranslate_lookup(Py_UCS4 c, PyObject *mapping, PyObject **result) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8422 | { |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 8423 | PyObject *w = PyLong_FromLong((long)c); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8424 | PyObject *x; |
| 8425 | |
| 8426 | if (w == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8427 | return -1; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8428 | x = PyObject_GetItem(mapping, w); |
| 8429 | Py_DECREF(w); |
| 8430 | if (x == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8431 | if (PyErr_ExceptionMatches(PyExc_LookupError)) { |
| 8432 | /* No mapping found means: use 1:1 mapping. */ |
| 8433 | PyErr_Clear(); |
| 8434 | *result = NULL; |
| 8435 | return 0; |
| 8436 | } else |
| 8437 | return -1; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8438 | } |
| 8439 | else if (x == Py_None) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8440 | *result = x; |
| 8441 | return 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8442 | } |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 8443 | else if (PyLong_Check(x)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8444 | long value = PyLong_AS_LONG(x); |
| 8445 | long max = PyUnicode_GetMax(); |
| 8446 | if (value < 0 || value > max) { |
| 8447 | PyErr_Format(PyExc_TypeError, |
Guido van Rossum | 5a2f7e60 | 2007-10-24 21:13:09 +0000 | [diff] [blame] | 8448 | "character mapping must be in range(0x%x)", max+1); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8449 | Py_DECREF(x); |
| 8450 | return -1; |
| 8451 | } |
| 8452 | *result = x; |
| 8453 | return 0; |
| 8454 | } |
| 8455 | else if (PyUnicode_Check(x)) { |
| 8456 | *result = x; |
| 8457 | return 0; |
| 8458 | } |
| 8459 | else { |
| 8460 | /* wrong return value */ |
| 8461 | PyErr_SetString(PyExc_TypeError, |
| 8462 | "character mapping must return integer, None or str"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8463 | Py_DECREF(x); |
| 8464 | return -1; |
| 8465 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8466 | } |
| 8467 | /* ensure that *outobj is at least requiredsize characters long, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8468 | if not reallocate and adjust various state variables. |
| 8469 | Return 0 on success, -1 on error */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8470 | static int |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8471 | charmaptranslate_makespace(Py_UCS4 **outobj, Py_ssize_t *psize, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8472 | Py_ssize_t requiredsize) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8473 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8474 | Py_ssize_t oldsize = *psize; |
Walter Dörwald | 4894c30 | 2003-10-24 14:25:28 +0000 | [diff] [blame] | 8475 | if (requiredsize > oldsize) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8476 | /* exponentially overallocate to minimize reallocations */ |
| 8477 | if (requiredsize < 2 * oldsize) |
| 8478 | requiredsize = 2 * oldsize; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8479 | *outobj = PyMem_Realloc(*outobj, requiredsize * sizeof(Py_UCS4)); |
| 8480 | if (*outobj == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8481 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8482 | *psize = requiredsize; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8483 | } |
| 8484 | return 0; |
| 8485 | } |
| 8486 | /* lookup the character, put the result in the output string and adjust |
| 8487 | various state variables. Return a new reference to the object that |
| 8488 | was put in the output buffer in *result, or Py_None, if the mapping was |
| 8489 | undefined (in which case no character was written). |
| 8490 | The called must decref result. |
| 8491 | Return 0 on success, -1 on error. */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8492 | static int |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8493 | charmaptranslate_output(PyObject *input, Py_ssize_t ipos, |
| 8494 | PyObject *mapping, Py_UCS4 **output, |
| 8495 | Py_ssize_t *osize, Py_ssize_t *opos, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8496 | PyObject **res) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8497 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8498 | Py_UCS4 curinp = PyUnicode_READ_CHAR(input, ipos); |
| 8499 | if (charmaptranslate_lookup(curinp, mapping, res)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8500 | return -1; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8501 | if (*res==NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8502 | /* not found => default to 1:1 mapping */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8503 | (*output)[(*opos)++] = curinp; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8504 | } |
| 8505 | else if (*res==Py_None) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8506 | ; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 8507 | else if (PyLong_Check(*res)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8508 | /* no overflow check, because we know that the space is enough */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8509 | (*output)[(*opos)++] = (Py_UCS4)PyLong_AS_LONG(*res); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8510 | } |
| 8511 | else if (PyUnicode_Check(*res)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8512 | Py_ssize_t repsize; |
| 8513 | if (PyUnicode_READY(*res) == -1) |
| 8514 | return -1; |
| 8515 | repsize = PyUnicode_GET_LENGTH(*res); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8516 | if (repsize==1) { |
| 8517 | /* no overflow check, because we know that the space is enough */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8518 | (*output)[(*opos)++] = PyUnicode_READ_CHAR(*res, 0); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8519 | } |
| 8520 | else if (repsize!=0) { |
| 8521 | /* more than one character */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8522 | Py_ssize_t requiredsize = *opos + |
| 8523 | (PyUnicode_GET_LENGTH(input) - ipos) + |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8524 | repsize - 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8525 | Py_ssize_t i; |
| 8526 | if (charmaptranslate_makespace(output, osize, requiredsize)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8527 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8528 | for(i = 0; i < repsize; i++) |
| 8529 | (*output)[(*opos)++] = PyUnicode_READ_CHAR(*res, i); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8530 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8531 | } |
| 8532 | else |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8533 | return -1; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8534 | return 0; |
| 8535 | } |
| 8536 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8537 | PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8538 | _PyUnicode_TranslateCharmap(PyObject *input, |
| 8539 | PyObject *mapping, |
| 8540 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8541 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8542 | /* input object */ |
| 8543 | char *idata; |
| 8544 | Py_ssize_t size, i; |
| 8545 | int kind; |
| 8546 | /* output buffer */ |
| 8547 | Py_UCS4 *output = NULL; |
| 8548 | Py_ssize_t osize; |
| 8549 | PyObject *res; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8550 | /* current output position */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8551 | Py_ssize_t opos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8552 | char *reason = "character maps to <undefined>"; |
| 8553 | PyObject *errorHandler = NULL; |
| 8554 | PyObject *exc = NULL; |
| 8555 | /* the following variable is used for caching string comparisons |
| 8556 | * -1=not initialized, 0=unknown, 1=strict, 2=replace, |
| 8557 | * 3=ignore, 4=xmlcharrefreplace */ |
| 8558 | int known_errorHandler = -1; |
| 8559 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8560 | if (mapping == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8561 | PyErr_BadArgument(); |
| 8562 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8563 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8564 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8565 | if (PyUnicode_READY(input) == -1) |
| 8566 | return NULL; |
| 8567 | idata = (char*)PyUnicode_DATA(input); |
| 8568 | kind = PyUnicode_KIND(input); |
| 8569 | size = PyUnicode_GET_LENGTH(input); |
| 8570 | i = 0; |
| 8571 | |
| 8572 | if (size == 0) { |
| 8573 | Py_INCREF(input); |
| 8574 | return input; |
| 8575 | } |
| 8576 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8577 | /* allocate enough for a simple 1:1 translation without |
| 8578 | replacements, if we need more, we'll resize */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8579 | osize = size; |
| 8580 | output = PyMem_Malloc(osize * sizeof(Py_UCS4)); |
| 8581 | opos = 0; |
| 8582 | if (output == NULL) { |
| 8583 | PyErr_NoMemory(); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8584 | goto onError; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8585 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8586 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8587 | while (i<size) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8588 | /* try to encode it */ |
| 8589 | PyObject *x = NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8590 | if (charmaptranslate_output(input, i, mapping, |
| 8591 | &output, &osize, &opos, &x)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8592 | Py_XDECREF(x); |
| 8593 | goto onError; |
| 8594 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8595 | Py_XDECREF(x); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8596 | if (x!=Py_None) /* it worked => adjust input pointer */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8597 | ++i; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8598 | else { /* untranslatable character */ |
| 8599 | PyObject *repunicode = NULL; /* initialize to prevent gcc warning */ |
| 8600 | Py_ssize_t repsize; |
| 8601 | Py_ssize_t newpos; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8602 | Py_ssize_t uni2; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8603 | /* startpos for collecting untranslatable chars */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8604 | Py_ssize_t collstart = i; |
| 8605 | Py_ssize_t collend = i+1; |
| 8606 | Py_ssize_t coll; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8607 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8608 | /* find all untranslatable characters */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8609 | while (collend < size) { |
| 8610 | if (charmaptranslate_lookup(PyUnicode_READ(kind,idata, collend), mapping, &x)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8611 | goto onError; |
| 8612 | Py_XDECREF(x); |
| 8613 | if (x!=Py_None) |
| 8614 | break; |
| 8615 | ++collend; |
| 8616 | } |
| 8617 | /* cache callback name lookup |
| 8618 | * (if not done yet, i.e. it's the first error) */ |
| 8619 | if (known_errorHandler==-1) { |
| 8620 | if ((errors==NULL) || (!strcmp(errors, "strict"))) |
| 8621 | known_errorHandler = 1; |
| 8622 | else if (!strcmp(errors, "replace")) |
| 8623 | known_errorHandler = 2; |
| 8624 | else if (!strcmp(errors, "ignore")) |
| 8625 | known_errorHandler = 3; |
| 8626 | else if (!strcmp(errors, "xmlcharrefreplace")) |
| 8627 | known_errorHandler = 4; |
| 8628 | else |
| 8629 | known_errorHandler = 0; |
| 8630 | } |
| 8631 | switch (known_errorHandler) { |
| 8632 | case 1: /* strict */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8633 | raise_translate_exception(&exc, input, collstart, |
| 8634 | collend, reason); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8635 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8636 | case 2: /* replace */ |
| 8637 | /* No need to check for space, this is a 1:1 replacement */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8638 | for (coll = collstart; coll<collend; coll++) |
| 8639 | output[opos++] = '?'; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8640 | /* fall through */ |
| 8641 | case 3: /* ignore */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8642 | i = collend; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8643 | break; |
| 8644 | case 4: /* xmlcharrefreplace */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8645 | /* generate replacement (temporarily (mis)uses i) */ |
| 8646 | for (i = collstart; i < collend; ++i) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8647 | char buffer[2+29+1+1]; |
| 8648 | char *cp; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8649 | sprintf(buffer, "&#%d;", PyUnicode_READ(kind, idata, i)); |
| 8650 | if (charmaptranslate_makespace(&output, &osize, |
| 8651 | opos+strlen(buffer)+(size-collend))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8652 | goto onError; |
| 8653 | for (cp = buffer; *cp; ++cp) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8654 | output[opos++] = *cp; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8655 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8656 | i = collend; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8657 | break; |
| 8658 | default: |
| 8659 | repunicode = unicode_translate_call_errorhandler(errors, &errorHandler, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8660 | reason, input, &exc, |
| 8661 | collstart, collend, &newpos); |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 8662 | if (repunicode == NULL || _PyUnicode_READY_REPLACE(&repunicode)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8663 | goto onError; |
| 8664 | /* generate replacement */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8665 | repsize = PyUnicode_GET_LENGTH(repunicode); |
| 8666 | if (charmaptranslate_makespace(&output, &osize, |
| 8667 | opos+repsize+(size-collend))) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8668 | Py_DECREF(repunicode); |
| 8669 | goto onError; |
| 8670 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8671 | for (uni2 = 0; repsize-->0; ++uni2) |
| 8672 | output[opos++] = PyUnicode_READ_CHAR(repunicode, uni2); |
| 8673 | i = newpos; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8674 | Py_DECREF(repunicode); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8675 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8676 | } |
| 8677 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8678 | res = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, output, opos); |
| 8679 | if (!res) |
| 8680 | goto onError; |
| 8681 | PyMem_Free(output); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8682 | Py_XDECREF(exc); |
| 8683 | Py_XDECREF(errorHandler); |
| 8684 | return res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8685 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8686 | onError: |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8687 | PyMem_Free(output); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8688 | Py_XDECREF(exc); |
| 8689 | Py_XDECREF(errorHandler); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8690 | return NULL; |
| 8691 | } |
| 8692 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8693 | /* Deprecated. Use PyUnicode_Translate instead. */ |
| 8694 | PyObject * |
| 8695 | PyUnicode_TranslateCharmap(const Py_UNICODE *p, |
| 8696 | Py_ssize_t size, |
| 8697 | PyObject *mapping, |
| 8698 | const char *errors) |
| 8699 | { |
| 8700 | PyObject *unicode = PyUnicode_FromUnicode(p, size); |
| 8701 | if (!unicode) |
| 8702 | return NULL; |
| 8703 | return _PyUnicode_TranslateCharmap(unicode, mapping, errors); |
| 8704 | } |
| 8705 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8706 | PyObject * |
| 8707 | PyUnicode_Translate(PyObject *str, |
| 8708 | PyObject *mapping, |
| 8709 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8710 | { |
| 8711 | PyObject *result; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 8712 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8713 | str = PyUnicode_FromObject(str); |
| 8714 | if (str == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8715 | goto onError; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8716 | result = _PyUnicode_TranslateCharmap(str, mapping, errors); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8717 | Py_DECREF(str); |
| 8718 | return result; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 8719 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8720 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8721 | Py_XDECREF(str); |
| 8722 | return NULL; |
| 8723 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 8724 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8725 | static Py_UCS4 |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 8726 | fix_decimal_and_space_to_ascii(PyObject *self) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8727 | { |
| 8728 | /* No need to call PyUnicode_READY(self) because this function is only |
| 8729 | called as a callback from fixup() which does it already. */ |
| 8730 | const Py_ssize_t len = PyUnicode_GET_LENGTH(self); |
| 8731 | const int kind = PyUnicode_KIND(self); |
| 8732 | void *data = PyUnicode_DATA(self); |
| 8733 | Py_UCS4 maxchar = 0, ch, fixed; |
| 8734 | Py_ssize_t i; |
| 8735 | |
| 8736 | for (i = 0; i < len; ++i) { |
| 8737 | ch = PyUnicode_READ(kind, data, i); |
| 8738 | fixed = 0; |
| 8739 | if (ch > 127) { |
| 8740 | if (Py_UNICODE_ISSPACE(ch)) |
| 8741 | fixed = ' '; |
| 8742 | else { |
| 8743 | const int decimal = Py_UNICODE_TODECIMAL(ch); |
| 8744 | if (decimal >= 0) |
| 8745 | fixed = '0' + decimal; |
| 8746 | } |
| 8747 | if (fixed != 0) { |
| 8748 | if (fixed > maxchar) |
| 8749 | maxchar = fixed; |
| 8750 | PyUnicode_WRITE(kind, data, i, fixed); |
| 8751 | } |
| 8752 | else if (ch > maxchar) |
| 8753 | maxchar = ch; |
| 8754 | } |
| 8755 | else if (ch > maxchar) |
| 8756 | maxchar = ch; |
| 8757 | } |
| 8758 | |
| 8759 | return maxchar; |
| 8760 | } |
| 8761 | |
| 8762 | PyObject * |
| 8763 | _PyUnicode_TransformDecimalAndSpaceToASCII(PyObject *unicode) |
| 8764 | { |
| 8765 | if (!PyUnicode_Check(unicode)) { |
| 8766 | PyErr_BadInternalCall(); |
| 8767 | return NULL; |
| 8768 | } |
| 8769 | if (PyUnicode_READY(unicode) == -1) |
| 8770 | return NULL; |
| 8771 | if (PyUnicode_MAX_CHAR_VALUE(unicode) <= 127) { |
| 8772 | /* If the string is already ASCII, just return the same string */ |
| 8773 | Py_INCREF(unicode); |
| 8774 | return unicode; |
| 8775 | } |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 8776 | return fixup(unicode, fix_decimal_and_space_to_ascii); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8777 | } |
| 8778 | |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 8779 | PyObject * |
| 8780 | PyUnicode_TransformDecimalToASCII(Py_UNICODE *s, |
| 8781 | Py_ssize_t length) |
| 8782 | { |
| 8783 | PyObject *result; |
| 8784 | Py_UNICODE *p; /* write pointer into result */ |
| 8785 | Py_ssize_t i; |
| 8786 | /* Copy to a new string */ |
| 8787 | result = (PyObject *)_PyUnicode_New(length); |
| 8788 | Py_UNICODE_COPY(PyUnicode_AS_UNICODE(result), s, length); |
| 8789 | if (result == NULL) |
| 8790 | return result; |
| 8791 | p = PyUnicode_AS_UNICODE(result); |
| 8792 | /* Iterate over code points */ |
| 8793 | for (i = 0; i < length; i++) { |
| 8794 | Py_UNICODE ch =s[i]; |
| 8795 | if (ch > 127) { |
| 8796 | int decimal = Py_UNICODE_TODECIMAL(ch); |
| 8797 | if (decimal >= 0) |
| 8798 | p[i] = '0' + decimal; |
| 8799 | } |
| 8800 | } |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 8801 | #ifndef DONT_MAKE_RESULT_READY |
| 8802 | if (_PyUnicode_READY_REPLACE(&result)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8803 | Py_DECREF(result); |
| 8804 | return NULL; |
| 8805 | } |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 8806 | #endif |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 8807 | assert(_PyUnicode_CheckConsistency(result, 1)); |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 8808 | return result; |
| 8809 | } |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8810 | /* --- Decimal Encoder ---------------------------------------------------- */ |
| 8811 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8812 | int |
| 8813 | PyUnicode_EncodeDecimal(Py_UNICODE *s, |
| 8814 | Py_ssize_t length, |
| 8815 | char *output, |
| 8816 | const char *errors) |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8817 | { |
| 8818 | Py_UNICODE *p, *end; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8819 | PyObject *errorHandler = NULL; |
| 8820 | PyObject *exc = NULL; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8821 | PyObject *unicode; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8822 | const char *encoding = "decimal"; |
| 8823 | const char *reason = "invalid decimal Unicode string"; |
| 8824 | /* the following variable is used for caching string comparisons |
| 8825 | * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */ |
| 8826 | int known_errorHandler = -1; |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8827 | |
| 8828 | if (output == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8829 | PyErr_BadArgument(); |
| 8830 | return -1; |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8831 | } |
| 8832 | |
| 8833 | p = s; |
| 8834 | end = s + length; |
| 8835 | while (p < end) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8836 | register Py_UNICODE ch = *p; |
| 8837 | int decimal; |
| 8838 | PyObject *repunicode; |
| 8839 | Py_ssize_t repsize; |
| 8840 | Py_ssize_t newpos; |
| 8841 | Py_UNICODE *uni2; |
| 8842 | Py_UNICODE *collstart; |
| 8843 | Py_UNICODE *collend; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 8844 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8845 | if (Py_UNICODE_ISSPACE(ch)) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8846 | *output++ = ' '; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8847 | ++p; |
| 8848 | continue; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8849 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8850 | decimal = Py_UNICODE_TODECIMAL(ch); |
| 8851 | if (decimal >= 0) { |
| 8852 | *output++ = '0' + decimal; |
| 8853 | ++p; |
| 8854 | continue; |
| 8855 | } |
| 8856 | if (0 < ch && ch < 256) { |
| 8857 | *output++ = (char)ch; |
| 8858 | ++p; |
| 8859 | continue; |
| 8860 | } |
| 8861 | /* All other characters are considered unencodable */ |
| 8862 | collstart = p; |
| 8863 | collend = p+1; |
| 8864 | while (collend < end) { |
| 8865 | if ((0 < *collend && *collend < 256) || |
| 8866 | !Py_UNICODE_ISSPACE(*collend) || |
| 8867 | Py_UNICODE_TODECIMAL(*collend)) |
| 8868 | break; |
| 8869 | } |
| 8870 | /* cache callback name lookup |
| 8871 | * (if not done yet, i.e. it's the first error) */ |
| 8872 | if (known_errorHandler==-1) { |
| 8873 | if ((errors==NULL) || (!strcmp(errors, "strict"))) |
| 8874 | known_errorHandler = 1; |
| 8875 | else if (!strcmp(errors, "replace")) |
| 8876 | known_errorHandler = 2; |
| 8877 | else if (!strcmp(errors, "ignore")) |
| 8878 | known_errorHandler = 3; |
| 8879 | else if (!strcmp(errors, "xmlcharrefreplace")) |
| 8880 | known_errorHandler = 4; |
| 8881 | else |
| 8882 | known_errorHandler = 0; |
| 8883 | } |
| 8884 | switch (known_errorHandler) { |
| 8885 | case 1: /* strict */ |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8886 | unicode = PyUnicode_FromUnicode(s, length); |
| 8887 | if (unicode == NULL) |
| 8888 | goto onError; |
| 8889 | raise_encode_exception(&exc, encoding, unicode, collstart-s, collend-s, reason); |
| 8890 | Py_DECREF(unicode); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8891 | goto onError; |
| 8892 | case 2: /* replace */ |
| 8893 | for (p = collstart; p < collend; ++p) |
| 8894 | *output++ = '?'; |
| 8895 | /* fall through */ |
| 8896 | case 3: /* ignore */ |
| 8897 | p = collend; |
| 8898 | break; |
| 8899 | case 4: /* xmlcharrefreplace */ |
| 8900 | /* generate replacement (temporarily (mis)uses p) */ |
| 8901 | for (p = collstart; p < collend; ++p) |
| 8902 | output += sprintf(output, "&#%d;", (int)*p); |
| 8903 | p = collend; |
| 8904 | break; |
| 8905 | default: |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8906 | unicode = PyUnicode_FromUnicode(s, length); |
| 8907 | if (unicode == NULL) |
| 8908 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8909 | repunicode = unicode_encode_call_errorhandler(errors, &errorHandler, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8910 | encoding, reason, unicode, &exc, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8911 | collstart-s, collend-s, &newpos); |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8912 | Py_DECREF(unicode); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8913 | if (repunicode == NULL) |
| 8914 | goto onError; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 8915 | if (!PyUnicode_Check(repunicode)) { |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 8916 | /* Byte results not supported, since they have no decimal property. */ |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 8917 | PyErr_SetString(PyExc_TypeError, "error handler should return unicode"); |
| 8918 | Py_DECREF(repunicode); |
| 8919 | goto onError; |
| 8920 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8921 | /* generate replacement */ |
| 8922 | repsize = PyUnicode_GET_SIZE(repunicode); |
| 8923 | for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) { |
| 8924 | Py_UNICODE ch = *uni2; |
| 8925 | if (Py_UNICODE_ISSPACE(ch)) |
| 8926 | *output++ = ' '; |
| 8927 | else { |
| 8928 | decimal = Py_UNICODE_TODECIMAL(ch); |
| 8929 | if (decimal >= 0) |
| 8930 | *output++ = '0' + decimal; |
| 8931 | else if (0 < ch && ch < 256) |
| 8932 | *output++ = (char)ch; |
| 8933 | else { |
| 8934 | Py_DECREF(repunicode); |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8935 | unicode = PyUnicode_FromUnicode(s, length); |
| 8936 | if (unicode == NULL) |
| 8937 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8938 | raise_encode_exception(&exc, encoding, |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8939 | unicode, collstart-s, collend-s, reason); |
| 8940 | Py_DECREF(unicode); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8941 | goto onError; |
| 8942 | } |
| 8943 | } |
| 8944 | } |
| 8945 | p = s + newpos; |
| 8946 | Py_DECREF(repunicode); |
| 8947 | } |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8948 | } |
| 8949 | /* 0-terminate the output string */ |
| 8950 | *output++ = '\0'; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8951 | Py_XDECREF(exc); |
| 8952 | Py_XDECREF(errorHandler); |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8953 | return 0; |
| 8954 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8955 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8956 | Py_XDECREF(exc); |
| 8957 | Py_XDECREF(errorHandler); |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8958 | return -1; |
| 8959 | } |
| 8960 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8961 | /* --- Helpers ------------------------------------------------------------ */ |
| 8962 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8963 | static Py_ssize_t |
Victor Stinner | 794d567 | 2011-10-10 03:21:36 +0200 | [diff] [blame] | 8964 | any_find_slice(int direction, PyObject* s1, PyObject* s2, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8965 | Py_ssize_t start, |
| 8966 | Py_ssize_t end) |
| 8967 | { |
| 8968 | int kind1, kind2, kind; |
| 8969 | void *buf1, *buf2; |
| 8970 | Py_ssize_t len1, len2, result; |
| 8971 | |
| 8972 | kind1 = PyUnicode_KIND(s1); |
| 8973 | kind2 = PyUnicode_KIND(s2); |
| 8974 | kind = kind1 > kind2 ? kind1 : kind2; |
| 8975 | buf1 = PyUnicode_DATA(s1); |
| 8976 | buf2 = PyUnicode_DATA(s2); |
| 8977 | if (kind1 != kind) |
| 8978 | buf1 = _PyUnicode_AsKind(s1, kind); |
| 8979 | if (!buf1) |
| 8980 | return -2; |
| 8981 | if (kind2 != kind) |
| 8982 | buf2 = _PyUnicode_AsKind(s2, kind); |
| 8983 | if (!buf2) { |
| 8984 | if (kind1 != kind) PyMem_Free(buf1); |
| 8985 | return -2; |
| 8986 | } |
| 8987 | len1 = PyUnicode_GET_LENGTH(s1); |
| 8988 | len2 = PyUnicode_GET_LENGTH(s2); |
| 8989 | |
Victor Stinner | 794d567 | 2011-10-10 03:21:36 +0200 | [diff] [blame] | 8990 | if (direction > 0) { |
| 8991 | switch(kind) { |
| 8992 | case PyUnicode_1BYTE_KIND: |
| 8993 | if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2)) |
| 8994 | result = asciilib_find_slice(buf1, len1, buf2, len2, start, end); |
| 8995 | else |
| 8996 | result = ucs1lib_find_slice(buf1, len1, buf2, len2, start, end); |
| 8997 | break; |
| 8998 | case PyUnicode_2BYTE_KIND: |
| 8999 | result = ucs2lib_find_slice(buf1, len1, buf2, len2, start, end); |
| 9000 | break; |
| 9001 | case PyUnicode_4BYTE_KIND: |
| 9002 | result = ucs4lib_find_slice(buf1, len1, buf2, len2, start, end); |
| 9003 | break; |
| 9004 | default: |
| 9005 | assert(0); result = -2; |
| 9006 | } |
| 9007 | } |
| 9008 | else { |
| 9009 | switch(kind) { |
| 9010 | case PyUnicode_1BYTE_KIND: |
| 9011 | if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2)) |
| 9012 | result = asciilib_rfind_slice(buf1, len1, buf2, len2, start, end); |
| 9013 | else |
| 9014 | result = ucs1lib_rfind_slice(buf1, len1, buf2, len2, start, end); |
| 9015 | break; |
| 9016 | case PyUnicode_2BYTE_KIND: |
| 9017 | result = ucs2lib_rfind_slice(buf1, len1, buf2, len2, start, end); |
| 9018 | break; |
| 9019 | case PyUnicode_4BYTE_KIND: |
| 9020 | result = ucs4lib_rfind_slice(buf1, len1, buf2, len2, start, end); |
| 9021 | break; |
| 9022 | default: |
| 9023 | assert(0); result = -2; |
| 9024 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9025 | } |
| 9026 | |
| 9027 | if (kind1 != kind) |
| 9028 | PyMem_Free(buf1); |
| 9029 | if (kind2 != kind) |
| 9030 | PyMem_Free(buf2); |
| 9031 | |
| 9032 | return result; |
| 9033 | } |
| 9034 | |
| 9035 | Py_ssize_t |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9036 | _PyUnicode_InsertThousandsGrouping(PyObject *unicode, int kind, void *data, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9037 | Py_ssize_t n_buffer, |
| 9038 | void *digits, Py_ssize_t n_digits, |
| 9039 | Py_ssize_t min_width, |
| 9040 | const char *grouping, |
| 9041 | const char *thousands_sep) |
| 9042 | { |
| 9043 | switch(kind) { |
| 9044 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9045 | if (unicode != NULL && PyUnicode_IS_ASCII(unicode)) |
| 9046 | return _PyUnicode_ascii_InsertThousandsGrouping( |
| 9047 | (Py_UCS1*)data, n_buffer, (Py_UCS1*)digits, n_digits, |
| 9048 | min_width, grouping, thousands_sep); |
| 9049 | else |
| 9050 | return _PyUnicode_ucs1_InsertThousandsGrouping( |
| 9051 | (Py_UCS1*)data, n_buffer, (Py_UCS1*)digits, n_digits, |
| 9052 | min_width, grouping, thousands_sep); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9053 | case PyUnicode_2BYTE_KIND: |
| 9054 | return _PyUnicode_ucs2_InsertThousandsGrouping( |
| 9055 | (Py_UCS2*)data, n_buffer, (Py_UCS2*)digits, n_digits, |
| 9056 | min_width, grouping, thousands_sep); |
| 9057 | case PyUnicode_4BYTE_KIND: |
| 9058 | return _PyUnicode_ucs4_InsertThousandsGrouping( |
| 9059 | (Py_UCS4*)data, n_buffer, (Py_UCS4*)digits, n_digits, |
| 9060 | min_width, grouping, thousands_sep); |
| 9061 | } |
| 9062 | assert(0); |
| 9063 | return -1; |
| 9064 | } |
| 9065 | |
| 9066 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9067 | /* helper macro to fixup start/end slice values */ |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 9068 | #define ADJUST_INDICES(start, end, len) \ |
| 9069 | if (end > len) \ |
| 9070 | end = len; \ |
| 9071 | else if (end < 0) { \ |
| 9072 | end += len; \ |
| 9073 | if (end < 0) \ |
| 9074 | end = 0; \ |
| 9075 | } \ |
| 9076 | if (start < 0) { \ |
| 9077 | start += len; \ |
| 9078 | if (start < 0) \ |
| 9079 | start = 0; \ |
| 9080 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9081 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9082 | Py_ssize_t |
| 9083 | PyUnicode_Count(PyObject *str, |
| 9084 | PyObject *substr, |
| 9085 | Py_ssize_t start, |
| 9086 | Py_ssize_t end) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9087 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 9088 | Py_ssize_t result; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 9089 | PyObject* str_obj; |
| 9090 | PyObject* sub_obj; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9091 | int kind1, kind2, kind; |
| 9092 | void *buf1 = NULL, *buf2 = NULL; |
| 9093 | Py_ssize_t len1, len2; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9094 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 9095 | str_obj = PyUnicode_FromObject(str); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9096 | if (!str_obj || PyUnicode_READY(str_obj) == -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9097 | return -1; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 9098 | sub_obj = PyUnicode_FromObject(substr); |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 9099 | if (!sub_obj || PyUnicode_READY(sub_obj) == -1) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9100 | Py_DECREF(str_obj); |
| 9101 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9102 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9103 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9104 | kind1 = PyUnicode_KIND(str_obj); |
| 9105 | kind2 = PyUnicode_KIND(sub_obj); |
| 9106 | kind = kind1 > kind2 ? kind1 : kind2; |
| 9107 | buf1 = PyUnicode_DATA(str_obj); |
| 9108 | if (kind1 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9109 | buf1 = _PyUnicode_AsKind(str_obj, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9110 | if (!buf1) |
| 9111 | goto onError; |
| 9112 | buf2 = PyUnicode_DATA(sub_obj); |
| 9113 | if (kind2 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9114 | buf2 = _PyUnicode_AsKind(sub_obj, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9115 | if (!buf2) |
| 9116 | goto onError; |
| 9117 | len1 = PyUnicode_GET_LENGTH(str_obj); |
| 9118 | len2 = PyUnicode_GET_LENGTH(sub_obj); |
| 9119 | |
| 9120 | ADJUST_INDICES(start, end, len1); |
| 9121 | switch(kind) { |
| 9122 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9123 | if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sub_obj)) |
| 9124 | result = asciilib_count( |
| 9125 | ((Py_UCS1*)buf1) + start, end - start, |
| 9126 | buf2, len2, PY_SSIZE_T_MAX |
| 9127 | ); |
| 9128 | else |
| 9129 | result = ucs1lib_count( |
| 9130 | ((Py_UCS1*)buf1) + start, end - start, |
| 9131 | buf2, len2, PY_SSIZE_T_MAX |
| 9132 | ); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9133 | break; |
| 9134 | case PyUnicode_2BYTE_KIND: |
| 9135 | result = ucs2lib_count( |
| 9136 | ((Py_UCS2*)buf1) + start, end - start, |
| 9137 | buf2, len2, PY_SSIZE_T_MAX |
| 9138 | ); |
| 9139 | break; |
| 9140 | case PyUnicode_4BYTE_KIND: |
| 9141 | result = ucs4lib_count( |
| 9142 | ((Py_UCS4*)buf1) + start, end - start, |
| 9143 | buf2, len2, PY_SSIZE_T_MAX |
| 9144 | ); |
| 9145 | break; |
| 9146 | default: |
| 9147 | assert(0); result = 0; |
| 9148 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9149 | |
| 9150 | Py_DECREF(sub_obj); |
| 9151 | Py_DECREF(str_obj); |
| 9152 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9153 | if (kind1 != kind) |
| 9154 | PyMem_Free(buf1); |
| 9155 | if (kind2 != kind) |
| 9156 | PyMem_Free(buf2); |
| 9157 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9158 | return result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9159 | onError: |
| 9160 | Py_DECREF(sub_obj); |
| 9161 | Py_DECREF(str_obj); |
| 9162 | if (kind1 != kind && buf1) |
| 9163 | PyMem_Free(buf1); |
| 9164 | if (kind2 != kind && buf2) |
| 9165 | PyMem_Free(buf2); |
| 9166 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9167 | } |
| 9168 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9169 | Py_ssize_t |
| 9170 | PyUnicode_Find(PyObject *str, |
| 9171 | PyObject *sub, |
| 9172 | Py_ssize_t start, |
| 9173 | Py_ssize_t end, |
| 9174 | int direction) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9175 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 9176 | Py_ssize_t result; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9177 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9178 | str = PyUnicode_FromObject(str); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9179 | if (!str || PyUnicode_READY(str) == -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9180 | return -2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9181 | sub = PyUnicode_FromObject(sub); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9182 | if (!sub || PyUnicode_READY(sub) == -1) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9183 | Py_DECREF(str); |
| 9184 | return -2; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9185 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9186 | |
Victor Stinner | 794d567 | 2011-10-10 03:21:36 +0200 | [diff] [blame] | 9187 | result = any_find_slice(direction, |
| 9188 | str, sub, start, end |
| 9189 | ); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9190 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9191 | Py_DECREF(str); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9192 | Py_DECREF(sub); |
| 9193 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9194 | return result; |
| 9195 | } |
| 9196 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9197 | Py_ssize_t |
| 9198 | PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, |
| 9199 | Py_ssize_t start, Py_ssize_t end, |
| 9200 | int direction) |
| 9201 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9202 | int kind; |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 9203 | Py_ssize_t result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9204 | if (PyUnicode_READY(str) == -1) |
| 9205 | return -2; |
Victor Stinner | 267aa24 | 2011-10-02 01:08:37 +0200 | [diff] [blame] | 9206 | if (start < 0 || end < 0) { |
| 9207 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 9208 | return -2; |
| 9209 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9210 | if (end > PyUnicode_GET_LENGTH(str)) |
| 9211 | end = PyUnicode_GET_LENGTH(str); |
| 9212 | kind = PyUnicode_KIND(str); |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 9213 | result = findchar(PyUnicode_1BYTE_DATA(str) + kind*start, |
| 9214 | kind, end-start, ch, direction); |
| 9215 | if (result == -1) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9216 | return -1; |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 9217 | else |
| 9218 | return start + result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9219 | } |
| 9220 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9221 | static int |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 9222 | tailmatch(PyObject *self, |
| 9223 | PyObject *substring, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9224 | Py_ssize_t start, |
| 9225 | Py_ssize_t end, |
| 9226 | int direction) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9227 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9228 | int kind_self; |
| 9229 | int kind_sub; |
| 9230 | void *data_self; |
| 9231 | void *data_sub; |
| 9232 | Py_ssize_t offset; |
| 9233 | Py_ssize_t i; |
| 9234 | Py_ssize_t end_sub; |
| 9235 | |
| 9236 | if (PyUnicode_READY(self) == -1 || |
| 9237 | PyUnicode_READY(substring) == -1) |
| 9238 | return 0; |
| 9239 | |
| 9240 | if (PyUnicode_GET_LENGTH(substring) == 0) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9241 | return 1; |
| 9242 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9243 | ADJUST_INDICES(start, end, PyUnicode_GET_LENGTH(self)); |
| 9244 | end -= PyUnicode_GET_LENGTH(substring); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9245 | if (end < start) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9246 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9247 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9248 | kind_self = PyUnicode_KIND(self); |
| 9249 | data_self = PyUnicode_DATA(self); |
| 9250 | kind_sub = PyUnicode_KIND(substring); |
| 9251 | data_sub = PyUnicode_DATA(substring); |
| 9252 | end_sub = PyUnicode_GET_LENGTH(substring) - 1; |
| 9253 | |
| 9254 | if (direction > 0) |
| 9255 | offset = end; |
| 9256 | else |
| 9257 | offset = start; |
| 9258 | |
| 9259 | if (PyUnicode_READ(kind_self, data_self, offset) == |
| 9260 | PyUnicode_READ(kind_sub, data_sub, 0) && |
| 9261 | PyUnicode_READ(kind_self, data_self, offset + end_sub) == |
| 9262 | PyUnicode_READ(kind_sub, data_sub, end_sub)) { |
| 9263 | /* If both are of the same kind, memcmp is sufficient */ |
| 9264 | if (kind_self == kind_sub) { |
| 9265 | return ! memcmp((char *)data_self + |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9266 | (offset * PyUnicode_KIND(substring)), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9267 | data_sub, |
| 9268 | PyUnicode_GET_LENGTH(substring) * |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9269 | PyUnicode_KIND(substring)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9270 | } |
| 9271 | /* otherwise we have to compare each character by first accesing it */ |
| 9272 | else { |
| 9273 | /* We do not need to compare 0 and len(substring)-1 because |
| 9274 | the if statement above ensured already that they are equal |
| 9275 | when we end up here. */ |
| 9276 | // TODO: honor direction and do a forward or backwards search |
| 9277 | for (i = 1; i < end_sub; ++i) { |
| 9278 | if (PyUnicode_READ(kind_self, data_self, offset + i) != |
| 9279 | PyUnicode_READ(kind_sub, data_sub, i)) |
| 9280 | return 0; |
| 9281 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9282 | return 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9283 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9284 | } |
| 9285 | |
| 9286 | return 0; |
| 9287 | } |
| 9288 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9289 | Py_ssize_t |
| 9290 | PyUnicode_Tailmatch(PyObject *str, |
| 9291 | PyObject *substr, |
| 9292 | Py_ssize_t start, |
| 9293 | Py_ssize_t end, |
| 9294 | int direction) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9295 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 9296 | Py_ssize_t result; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9297 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9298 | str = PyUnicode_FromObject(str); |
| 9299 | if (str == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9300 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9301 | substr = PyUnicode_FromObject(substr); |
| 9302 | if (substr == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9303 | Py_DECREF(str); |
| 9304 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9305 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9306 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 9307 | result = tailmatch(str, substr, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9308 | start, end, direction); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9309 | Py_DECREF(str); |
| 9310 | Py_DECREF(substr); |
| 9311 | return result; |
| 9312 | } |
| 9313 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9314 | /* Apply fixfct filter to the Unicode object self and return a |
| 9315 | reference to the modified object */ |
| 9316 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9317 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9318 | fixup(PyObject *self, |
| 9319 | Py_UCS4 (*fixfct)(PyObject *s)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9320 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9321 | PyObject *u; |
| 9322 | Py_UCS4 maxchar_old, maxchar_new = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9323 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9324 | if (PyUnicode_READY(self) == -1) |
| 9325 | return NULL; |
| 9326 | maxchar_old = PyUnicode_MAX_CHAR_VALUE(self); |
| 9327 | u = PyUnicode_New(PyUnicode_GET_LENGTH(self), |
| 9328 | maxchar_old); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9329 | if (u == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9330 | return NULL; |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 9331 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9332 | Py_MEMCPY(PyUnicode_1BYTE_DATA(u), PyUnicode_1BYTE_DATA(self), |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9333 | PyUnicode_GET_LENGTH(u) * PyUnicode_KIND(u)); |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 9334 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9335 | /* fix functions return the new maximum character in a string, |
| 9336 | if the kind of the resulting unicode object does not change, |
| 9337 | everything is fine. Otherwise we need to change the string kind |
| 9338 | and re-run the fix function. */ |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9339 | maxchar_new = fixfct(u); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9340 | if (maxchar_new == 0) |
| 9341 | /* do nothing, keep maxchar_new at 0 which means no changes. */; |
| 9342 | else if (maxchar_new <= 127) |
| 9343 | maxchar_new = 127; |
| 9344 | else if (maxchar_new <= 255) |
| 9345 | maxchar_new = 255; |
| 9346 | else if (maxchar_new <= 65535) |
| 9347 | maxchar_new = 65535; |
| 9348 | else |
| 9349 | maxchar_new = 1114111; /* 0x10ffff */ |
| 9350 | |
| 9351 | if (!maxchar_new && PyUnicode_CheckExact(self)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9352 | /* fixfct should return TRUE if it modified the buffer. If |
| 9353 | FALSE, return a reference to the original buffer instead |
| 9354 | (to save space, not time) */ |
| 9355 | Py_INCREF(self); |
| 9356 | Py_DECREF(u); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9357 | return self; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9358 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9359 | else if (maxchar_new == maxchar_old) { |
| 9360 | return u; |
| 9361 | } |
| 9362 | else { |
| 9363 | /* In case the maximum character changed, we need to |
| 9364 | convert the string to the new category. */ |
Victor Stinner | 6c7a52a | 2011-09-28 21:39:17 +0200 | [diff] [blame] | 9365 | PyObject *v = PyUnicode_New(PyUnicode_GET_LENGTH(self), maxchar_new); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9366 | if (v == NULL) { |
| 9367 | Py_DECREF(u); |
| 9368 | return NULL; |
| 9369 | } |
| 9370 | if (maxchar_new > maxchar_old) { |
| 9371 | /* If the maxchar increased so that the kind changed, not all |
| 9372 | characters are representable anymore and we need to fix the |
| 9373 | string again. This only happens in very few cases. */ |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9374 | copy_characters(v, 0, self, 0, PyUnicode_GET_LENGTH(self)); |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9375 | maxchar_old = fixfct(v); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9376 | assert(maxchar_old > 0 && maxchar_old <= maxchar_new); |
| 9377 | } |
Victor Stinner | 6c7a52a | 2011-09-28 21:39:17 +0200 | [diff] [blame] | 9378 | else { |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9379 | copy_characters(v, 0, u, 0, PyUnicode_GET_LENGTH(self)); |
Victor Stinner | 6c7a52a | 2011-09-28 21:39:17 +0200 | [diff] [blame] | 9380 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9381 | |
| 9382 | Py_DECREF(u); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 9383 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9384 | return v; |
| 9385 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9386 | } |
| 9387 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9388 | static Py_UCS4 |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9389 | fixupper(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9390 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9391 | /* No need to call PyUnicode_READY(self) because this function is only |
| 9392 | called as a callback from fixup() which does it already. */ |
| 9393 | const Py_ssize_t len = PyUnicode_GET_LENGTH(self); |
| 9394 | const int kind = PyUnicode_KIND(self); |
| 9395 | void *data = PyUnicode_DATA(self); |
| 9396 | int touched = 0; |
| 9397 | Py_UCS4 maxchar = 0; |
| 9398 | Py_ssize_t i; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9399 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9400 | for (i = 0; i < len; ++i) { |
| 9401 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 9402 | const Py_UCS4 up = Py_UNICODE_TOUPPER(ch); |
| 9403 | if (up != ch) { |
| 9404 | if (up > maxchar) |
| 9405 | maxchar = up; |
| 9406 | PyUnicode_WRITE(kind, data, i, up); |
| 9407 | touched = 1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9408 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9409 | else if (ch > maxchar) |
| 9410 | maxchar = ch; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9411 | } |
| 9412 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9413 | if (touched) |
| 9414 | return maxchar; |
| 9415 | else |
| 9416 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9417 | } |
| 9418 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9419 | static Py_UCS4 |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9420 | fixlower(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9421 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9422 | /* No need to call PyUnicode_READY(self) because fixup() which does it. */ |
| 9423 | const Py_ssize_t len = PyUnicode_GET_LENGTH(self); |
| 9424 | const int kind = PyUnicode_KIND(self); |
| 9425 | void *data = PyUnicode_DATA(self); |
| 9426 | int touched = 0; |
| 9427 | Py_UCS4 maxchar = 0; |
| 9428 | Py_ssize_t i; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9429 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9430 | for(i = 0; i < len; ++i) { |
| 9431 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 9432 | const Py_UCS4 lo = Py_UNICODE_TOLOWER(ch); |
| 9433 | if (lo != ch) { |
| 9434 | if (lo > maxchar) |
| 9435 | maxchar = lo; |
| 9436 | PyUnicode_WRITE(kind, data, i, lo); |
| 9437 | touched = 1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9438 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9439 | else if (ch > maxchar) |
| 9440 | maxchar = ch; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9441 | } |
| 9442 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9443 | if (touched) |
| 9444 | return maxchar; |
| 9445 | else |
| 9446 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9447 | } |
| 9448 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9449 | static Py_UCS4 |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9450 | fixswapcase(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9451 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9452 | /* No need to call PyUnicode_READY(self) because fixup() which does it. */ |
| 9453 | const Py_ssize_t len = PyUnicode_GET_LENGTH(self); |
| 9454 | const int kind = PyUnicode_KIND(self); |
| 9455 | void *data = PyUnicode_DATA(self); |
| 9456 | int touched = 0; |
| 9457 | Py_UCS4 maxchar = 0; |
| 9458 | Py_ssize_t i; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9459 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9460 | for(i = 0; i < len; ++i) { |
| 9461 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 9462 | Py_UCS4 nu = 0; |
| 9463 | |
| 9464 | if (Py_UNICODE_ISUPPER(ch)) |
| 9465 | nu = Py_UNICODE_TOLOWER(ch); |
| 9466 | else if (Py_UNICODE_ISLOWER(ch)) |
| 9467 | nu = Py_UNICODE_TOUPPER(ch); |
| 9468 | |
| 9469 | if (nu != 0) { |
| 9470 | if (nu > maxchar) |
| 9471 | maxchar = nu; |
| 9472 | PyUnicode_WRITE(kind, data, i, nu); |
| 9473 | touched = 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9474 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9475 | else if (ch > maxchar) |
| 9476 | maxchar = ch; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9477 | } |
| 9478 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9479 | if (touched) |
| 9480 | return maxchar; |
| 9481 | else |
| 9482 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9483 | } |
| 9484 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9485 | static Py_UCS4 |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9486 | fixcapitalize(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9487 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9488 | /* No need to call PyUnicode_READY(self) because fixup() which does it. */ |
| 9489 | const Py_ssize_t len = PyUnicode_GET_LENGTH(self); |
| 9490 | const int kind = PyUnicode_KIND(self); |
| 9491 | void *data = PyUnicode_DATA(self); |
| 9492 | int touched = 0; |
| 9493 | Py_UCS4 maxchar = 0; |
| 9494 | Py_ssize_t i = 0; |
| 9495 | Py_UCS4 ch; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9496 | |
Marc-André Lemburg | fde66e1 | 2001-01-29 11:14:16 +0000 | [diff] [blame] | 9497 | if (len == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9498 | return 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9499 | |
| 9500 | ch = PyUnicode_READ(kind, data, i); |
| 9501 | if (!Py_UNICODE_ISUPPER(ch)) { |
| 9502 | maxchar = Py_UNICODE_TOUPPER(ch); |
| 9503 | PyUnicode_WRITE(kind, data, i, maxchar); |
| 9504 | touched = 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9505 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9506 | ++i; |
| 9507 | for(; i < len; ++i) { |
| 9508 | ch = PyUnicode_READ(kind, data, i); |
| 9509 | if (!Py_UNICODE_ISLOWER(ch)) { |
| 9510 | const Py_UCS4 lo = Py_UNICODE_TOLOWER(ch); |
| 9511 | if (lo > maxchar) |
| 9512 | maxchar = lo; |
| 9513 | PyUnicode_WRITE(kind, data, i, lo); |
| 9514 | touched = 1; |
Marc-André Lemburg | fde66e1 | 2001-01-29 11:14:16 +0000 | [diff] [blame] | 9515 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9516 | else if (ch > maxchar) |
| 9517 | maxchar = ch; |
Marc-André Lemburg | fde66e1 | 2001-01-29 11:14:16 +0000 | [diff] [blame] | 9518 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9519 | |
| 9520 | if (touched) |
| 9521 | return maxchar; |
| 9522 | else |
| 9523 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9524 | } |
| 9525 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9526 | static Py_UCS4 |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9527 | fixtitle(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9528 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9529 | /* No need to call PyUnicode_READY(self) because fixup() which does it. */ |
| 9530 | const Py_ssize_t len = PyUnicode_GET_LENGTH(self); |
| 9531 | const int kind = PyUnicode_KIND(self); |
| 9532 | void *data = PyUnicode_DATA(self); |
| 9533 | Py_UCS4 maxchar = 0; |
| 9534 | Py_ssize_t i = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9535 | int previous_is_cased; |
| 9536 | |
| 9537 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9538 | if (len == 1) { |
| 9539 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 9540 | const Py_UCS4 ti = Py_UNICODE_TOTITLE(ch); |
| 9541 | if (ti != ch) { |
| 9542 | PyUnicode_WRITE(kind, data, i, ti); |
| 9543 | return ti; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9544 | } |
| 9545 | else |
| 9546 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9547 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9548 | previous_is_cased = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9549 | for(; i < len; ++i) { |
| 9550 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 9551 | Py_UCS4 nu; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9552 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9553 | if (previous_is_cased) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9554 | nu = Py_UNICODE_TOLOWER(ch); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9555 | else |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9556 | nu = Py_UNICODE_TOTITLE(ch); |
| 9557 | |
| 9558 | if (nu > maxchar) |
| 9559 | maxchar = nu; |
| 9560 | PyUnicode_WRITE(kind, data, i, nu); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9561 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9562 | if (Py_UNICODE_ISLOWER(ch) || |
| 9563 | Py_UNICODE_ISUPPER(ch) || |
| 9564 | Py_UNICODE_ISTITLE(ch)) |
| 9565 | previous_is_cased = 1; |
| 9566 | else |
| 9567 | previous_is_cased = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9568 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9569 | return maxchar; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9570 | } |
| 9571 | |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9572 | PyObject * |
| 9573 | PyUnicode_Join(PyObject *separator, PyObject *seq) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9574 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9575 | PyObject *sep = NULL; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9576 | Py_ssize_t seplen; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9577 | PyObject *res = NULL; /* the result */ |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9578 | PyObject *fseq; /* PySequence_Fast(seq) */ |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9579 | Py_ssize_t seqlen; /* len(fseq) -- number of items in sequence */ |
| 9580 | PyObject **items; |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9581 | PyObject *item; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9582 | Py_ssize_t sz, i, res_offset; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9583 | Py_UCS4 maxchar; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9584 | Py_UCS4 item_maxchar; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9585 | int use_memcpy; |
| 9586 | unsigned char *res_data = NULL, *sep_data = NULL; |
| 9587 | PyObject *last_obj; |
| 9588 | unsigned int kind = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9589 | |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9590 | fseq = PySequence_Fast(seq, ""); |
| 9591 | if (fseq == NULL) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 9592 | return NULL; |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9593 | } |
| 9594 | |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9595 | /* NOTE: the following code can't call back into Python code, |
| 9596 | * so we are sure that fseq won't be mutated. |
Tim Peters | 91879ab | 2004-08-27 22:35:44 +0000 | [diff] [blame] | 9597 | */ |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9598 | |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9599 | seqlen = PySequence_Fast_GET_SIZE(fseq); |
| 9600 | /* If empty sequence, return u"". */ |
| 9601 | if (seqlen == 0) { |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9602 | Py_DECREF(fseq); |
| 9603 | Py_INCREF(unicode_empty); |
| 9604 | res = unicode_empty; |
| 9605 | return res; |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9606 | } |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9607 | |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9608 | /* If singleton sequence with an exact Unicode, return that. */ |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9609 | last_obj = NULL; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9610 | items = PySequence_Fast_ITEMS(fseq); |
Victor Stinner | acf47b8 | 2011-10-06 12:32:37 +0200 | [diff] [blame] | 9611 | if (seqlen == 1) { |
| 9612 | if (PyUnicode_CheckExact(items[0])) { |
| 9613 | res = items[0]; |
| 9614 | Py_INCREF(res); |
| 9615 | Py_DECREF(fseq); |
| 9616 | return res; |
| 9617 | } |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9618 | seplen = 0; |
Victor Stinner | c6f0df7 | 2011-10-06 15:58:54 +0200 | [diff] [blame] | 9619 | maxchar = 0; |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9620 | } |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9621 | else { |
Victor Stinner | acf47b8 | 2011-10-06 12:32:37 +0200 | [diff] [blame] | 9622 | /* Set up sep and seplen */ |
| 9623 | if (separator == NULL) { |
| 9624 | /* fall back to a blank space separator */ |
| 9625 | sep = PyUnicode_FromOrdinal(' '); |
| 9626 | if (!sep) |
| 9627 | goto onError; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9628 | seplen = 1; |
Victor Stinner | acf47b8 | 2011-10-06 12:32:37 +0200 | [diff] [blame] | 9629 | maxchar = 32; |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9630 | } |
Victor Stinner | acf47b8 | 2011-10-06 12:32:37 +0200 | [diff] [blame] | 9631 | else { |
| 9632 | if (!PyUnicode_Check(separator)) { |
| 9633 | PyErr_Format(PyExc_TypeError, |
| 9634 | "separator: expected str instance," |
| 9635 | " %.80s found", |
| 9636 | Py_TYPE(separator)->tp_name); |
| 9637 | goto onError; |
| 9638 | } |
| 9639 | if (PyUnicode_READY(separator)) |
| 9640 | goto onError; |
| 9641 | sep = separator; |
| 9642 | seplen = PyUnicode_GET_LENGTH(separator); |
| 9643 | maxchar = PyUnicode_MAX_CHAR_VALUE(separator); |
| 9644 | /* inc refcount to keep this code path symmetric with the |
| 9645 | above case of a blank separator */ |
| 9646 | Py_INCREF(sep); |
| 9647 | } |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9648 | last_obj = sep; |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9649 | } |
| 9650 | |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9651 | /* There are at least two things to join, or else we have a subclass |
| 9652 | * of str in the sequence. |
| 9653 | * Do a pre-pass to figure out the total amount of space we'll |
| 9654 | * need (sz), and see whether all argument are strings. |
| 9655 | */ |
| 9656 | sz = 0; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9657 | #ifdef Py_DEBUG |
| 9658 | use_memcpy = 0; |
| 9659 | #else |
| 9660 | use_memcpy = 1; |
| 9661 | #endif |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9662 | for (i = 0; i < seqlen; i++) { |
| 9663 | const Py_ssize_t old_sz = sz; |
| 9664 | item = items[i]; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9665 | if (!PyUnicode_Check(item)) { |
| 9666 | PyErr_Format(PyExc_TypeError, |
| 9667 | "sequence item %zd: expected str instance," |
| 9668 | " %.80s found", |
| 9669 | i, Py_TYPE(item)->tp_name); |
| 9670 | goto onError; |
| 9671 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9672 | if (PyUnicode_READY(item) == -1) |
| 9673 | goto onError; |
| 9674 | sz += PyUnicode_GET_LENGTH(item); |
| 9675 | item_maxchar = PyUnicode_MAX_CHAR_VALUE(item); |
Victor Stinner | c6f0df7 | 2011-10-06 15:58:54 +0200 | [diff] [blame] | 9676 | maxchar = Py_MAX(maxchar, item_maxchar); |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9677 | if (i != 0) |
| 9678 | sz += seplen; |
| 9679 | if (sz < old_sz || sz > PY_SSIZE_T_MAX) { |
| 9680 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9681 | "join() result is too long for a Python string"); |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9682 | goto onError; |
| 9683 | } |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9684 | if (use_memcpy && last_obj != NULL) { |
| 9685 | if (PyUnicode_KIND(last_obj) != PyUnicode_KIND(item)) |
| 9686 | use_memcpy = 0; |
| 9687 | } |
| 9688 | last_obj = item; |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9689 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9690 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9691 | res = PyUnicode_New(sz, maxchar); |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9692 | if (res == NULL) |
| 9693 | goto onError; |
Tim Peters | 91879ab | 2004-08-27 22:35:44 +0000 | [diff] [blame] | 9694 | |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9695 | /* Catenate everything. */ |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9696 | #ifdef Py_DEBUG |
| 9697 | use_memcpy = 0; |
| 9698 | #else |
| 9699 | if (use_memcpy) { |
| 9700 | res_data = PyUnicode_1BYTE_DATA(res); |
| 9701 | kind = PyUnicode_KIND(res); |
| 9702 | if (seplen != 0) |
| 9703 | sep_data = PyUnicode_1BYTE_DATA(sep); |
| 9704 | } |
| 9705 | #endif |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9706 | for (i = 0, res_offset = 0; i < seqlen; ++i) { |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9707 | Py_ssize_t itemlen; |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9708 | item = items[i]; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9709 | /* Copy item, and maybe the separator. */ |
Victor Stinner | 9ce5a83 | 2011-10-03 23:36:02 +0200 | [diff] [blame] | 9710 | if (i && seplen != 0) { |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9711 | if (use_memcpy) { |
| 9712 | Py_MEMCPY(res_data, |
| 9713 | sep_data, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9714 | kind * seplen); |
| 9715 | res_data += kind * seplen; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9716 | } |
| 9717 | else { |
| 9718 | copy_characters(res, res_offset, sep, 0, seplen); |
| 9719 | res_offset += seplen; |
| 9720 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9721 | } |
Victor Stinner | 9ce5a83 | 2011-10-03 23:36:02 +0200 | [diff] [blame] | 9722 | itemlen = PyUnicode_GET_LENGTH(item); |
| 9723 | if (itemlen != 0) { |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9724 | if (use_memcpy) { |
| 9725 | Py_MEMCPY(res_data, |
| 9726 | PyUnicode_DATA(item), |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9727 | kind * itemlen); |
| 9728 | res_data += kind * itemlen; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9729 | } |
| 9730 | else { |
| 9731 | copy_characters(res, res_offset, item, 0, itemlen); |
| 9732 | res_offset += itemlen; |
| 9733 | } |
Victor Stinner | 9ce5a83 | 2011-10-03 23:36:02 +0200 | [diff] [blame] | 9734 | } |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9735 | } |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9736 | if (use_memcpy) |
| 9737 | assert(res_data == PyUnicode_1BYTE_DATA(res) |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9738 | + kind * PyUnicode_GET_LENGTH(res)); |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9739 | else |
| 9740 | assert(res_offset == PyUnicode_GET_LENGTH(res)); |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9741 | |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9742 | Py_DECREF(fseq); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9743 | Py_XDECREF(sep); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 9744 | assert(_PyUnicode_CheckConsistency(res, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9745 | return res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9746 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9747 | onError: |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9748 | Py_DECREF(fseq); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9749 | Py_XDECREF(sep); |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9750 | Py_XDECREF(res); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9751 | return NULL; |
| 9752 | } |
| 9753 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9754 | #define FILL(kind, data, value, start, length) \ |
| 9755 | do { \ |
| 9756 | Py_ssize_t i_ = 0; \ |
| 9757 | assert(kind != PyUnicode_WCHAR_KIND); \ |
| 9758 | switch ((kind)) { \ |
| 9759 | case PyUnicode_1BYTE_KIND: { \ |
| 9760 | unsigned char * to_ = (unsigned char *)((data)) + (start); \ |
| 9761 | memset(to_, (unsigned char)value, length); \ |
| 9762 | break; \ |
| 9763 | } \ |
| 9764 | case PyUnicode_2BYTE_KIND: { \ |
| 9765 | Py_UCS2 * to_ = (Py_UCS2 *)((data)) + (start); \ |
| 9766 | for (; i_ < (length); ++i_, ++to_) *to_ = (value); \ |
| 9767 | break; \ |
| 9768 | } \ |
| 9769 | default: { \ |
| 9770 | Py_UCS4 * to_ = (Py_UCS4 *)((data)) + (start); \ |
| 9771 | for (; i_ < (length); ++i_, ++to_) *to_ = (value); \ |
| 9772 | break; \ |
| 9773 | } \ |
| 9774 | } \ |
| 9775 | } while (0) |
| 9776 | |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9777 | static PyObject * |
| 9778 | pad(PyObject *self, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9779 | Py_ssize_t left, |
| 9780 | Py_ssize_t right, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9781 | Py_UCS4 fill) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9782 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9783 | PyObject *u; |
| 9784 | Py_UCS4 maxchar; |
Victor Stinner | 6c7a52a | 2011-09-28 21:39:17 +0200 | [diff] [blame] | 9785 | int kind; |
| 9786 | void *data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9787 | |
| 9788 | if (left < 0) |
| 9789 | left = 0; |
| 9790 | if (right < 0) |
| 9791 | right = 0; |
| 9792 | |
Tim Peters | 7a29bd5 | 2001-09-12 03:03:31 +0000 | [diff] [blame] | 9793 | if (left == 0 && right == 0 && PyUnicode_CheckExact(self)) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9794 | Py_INCREF(self); |
| 9795 | return self; |
| 9796 | } |
| 9797 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9798 | if (left > PY_SSIZE_T_MAX - _PyUnicode_LENGTH(self) || |
| 9799 | right > PY_SSIZE_T_MAX - (left + _PyUnicode_LENGTH(self))) { |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 9800 | PyErr_SetString(PyExc_OverflowError, "padded string is too long"); |
| 9801 | return NULL; |
| 9802 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9803 | maxchar = PyUnicode_MAX_CHAR_VALUE(self); |
| 9804 | if (fill > maxchar) |
| 9805 | maxchar = fill; |
| 9806 | u = PyUnicode_New(left + _PyUnicode_LENGTH(self) + right, maxchar); |
Victor Stinner | 6c7a52a | 2011-09-28 21:39:17 +0200 | [diff] [blame] | 9807 | if (!u) |
| 9808 | return NULL; |
| 9809 | |
| 9810 | kind = PyUnicode_KIND(u); |
| 9811 | data = PyUnicode_DATA(u); |
| 9812 | if (left) |
| 9813 | FILL(kind, data, fill, 0, left); |
| 9814 | if (right) |
| 9815 | FILL(kind, data, fill, left + _PyUnicode_LENGTH(self), right); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9816 | copy_characters(u, left, self, 0, _PyUnicode_LENGTH(self)); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 9817 | assert(_PyUnicode_CheckConsistency(u, 1)); |
| 9818 | return u; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9819 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9820 | #undef FILL |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9821 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9822 | PyObject * |
| 9823 | PyUnicode_Splitlines(PyObject *string, int keepends) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9824 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9825 | PyObject *list; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9826 | |
| 9827 | string = PyUnicode_FromObject(string); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9828 | if (string == NULL || PyUnicode_READY(string) == -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9829 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9830 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9831 | switch(PyUnicode_KIND(string)) { |
| 9832 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9833 | if (PyUnicode_IS_ASCII(string)) |
| 9834 | list = asciilib_splitlines( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9835 | string, PyUnicode_1BYTE_DATA(string), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9836 | PyUnicode_GET_LENGTH(string), keepends); |
| 9837 | else |
| 9838 | list = ucs1lib_splitlines( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9839 | string, PyUnicode_1BYTE_DATA(string), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9840 | PyUnicode_GET_LENGTH(string), keepends); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9841 | break; |
| 9842 | case PyUnicode_2BYTE_KIND: |
| 9843 | list = ucs2lib_splitlines( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9844 | string, PyUnicode_2BYTE_DATA(string), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9845 | PyUnicode_GET_LENGTH(string), keepends); |
| 9846 | break; |
| 9847 | case PyUnicode_4BYTE_KIND: |
| 9848 | list = ucs4lib_splitlines( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9849 | string, PyUnicode_4BYTE_DATA(string), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9850 | PyUnicode_GET_LENGTH(string), keepends); |
| 9851 | break; |
| 9852 | default: |
| 9853 | assert(0); |
| 9854 | list = 0; |
| 9855 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9856 | Py_DECREF(string); |
| 9857 | return list; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9858 | } |
| 9859 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9860 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9861 | split(PyObject *self, |
| 9862 | PyObject *substring, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9863 | Py_ssize_t maxcount) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9864 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9865 | int kind1, kind2, kind; |
| 9866 | void *buf1, *buf2; |
| 9867 | Py_ssize_t len1, len2; |
| 9868 | PyObject* out; |
| 9869 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9870 | if (maxcount < 0) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 9871 | maxcount = PY_SSIZE_T_MAX; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9872 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9873 | if (PyUnicode_READY(self) == -1) |
| 9874 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9875 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9876 | if (substring == NULL) |
| 9877 | switch(PyUnicode_KIND(self)) { |
| 9878 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9879 | if (PyUnicode_IS_ASCII(self)) |
| 9880 | return asciilib_split_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9881 | self, PyUnicode_1BYTE_DATA(self), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9882 | PyUnicode_GET_LENGTH(self), maxcount |
| 9883 | ); |
| 9884 | else |
| 9885 | return ucs1lib_split_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9886 | self, PyUnicode_1BYTE_DATA(self), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9887 | PyUnicode_GET_LENGTH(self), maxcount |
| 9888 | ); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9889 | case PyUnicode_2BYTE_KIND: |
| 9890 | return ucs2lib_split_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9891 | self, PyUnicode_2BYTE_DATA(self), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9892 | PyUnicode_GET_LENGTH(self), maxcount |
| 9893 | ); |
| 9894 | case PyUnicode_4BYTE_KIND: |
| 9895 | return ucs4lib_split_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9896 | self, PyUnicode_4BYTE_DATA(self), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9897 | PyUnicode_GET_LENGTH(self), maxcount |
| 9898 | ); |
| 9899 | default: |
| 9900 | assert(0); |
| 9901 | return NULL; |
| 9902 | } |
| 9903 | |
| 9904 | if (PyUnicode_READY(substring) == -1) |
| 9905 | return NULL; |
| 9906 | |
| 9907 | kind1 = PyUnicode_KIND(self); |
| 9908 | kind2 = PyUnicode_KIND(substring); |
| 9909 | kind = kind1 > kind2 ? kind1 : kind2; |
| 9910 | buf1 = PyUnicode_DATA(self); |
| 9911 | buf2 = PyUnicode_DATA(substring); |
| 9912 | if (kind1 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9913 | buf1 = _PyUnicode_AsKind(self, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9914 | if (!buf1) |
| 9915 | return NULL; |
| 9916 | if (kind2 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9917 | buf2 = _PyUnicode_AsKind(substring, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9918 | if (!buf2) { |
| 9919 | if (kind1 != kind) PyMem_Free(buf1); |
| 9920 | return NULL; |
| 9921 | } |
| 9922 | len1 = PyUnicode_GET_LENGTH(self); |
| 9923 | len2 = PyUnicode_GET_LENGTH(substring); |
| 9924 | |
| 9925 | switch(kind) { |
| 9926 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9927 | if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring)) |
| 9928 | out = asciilib_split( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9929 | self, buf1, len1, buf2, len2, maxcount); |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9930 | else |
| 9931 | out = ucs1lib_split( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9932 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9933 | break; |
| 9934 | case PyUnicode_2BYTE_KIND: |
| 9935 | out = ucs2lib_split( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9936 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9937 | break; |
| 9938 | case PyUnicode_4BYTE_KIND: |
| 9939 | out = ucs4lib_split( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9940 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9941 | break; |
| 9942 | default: |
| 9943 | out = NULL; |
| 9944 | } |
| 9945 | if (kind1 != kind) |
| 9946 | PyMem_Free(buf1); |
| 9947 | if (kind2 != kind) |
| 9948 | PyMem_Free(buf2); |
| 9949 | return out; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9950 | } |
| 9951 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9952 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9953 | rsplit(PyObject *self, |
| 9954 | PyObject *substring, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9955 | Py_ssize_t maxcount) |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 9956 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9957 | int kind1, kind2, kind; |
| 9958 | void *buf1, *buf2; |
| 9959 | Py_ssize_t len1, len2; |
| 9960 | PyObject* out; |
| 9961 | |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 9962 | if (maxcount < 0) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 9963 | maxcount = PY_SSIZE_T_MAX; |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 9964 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9965 | if (PyUnicode_READY(self) == -1) |
| 9966 | return NULL; |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 9967 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9968 | if (substring == NULL) |
| 9969 | switch(PyUnicode_KIND(self)) { |
| 9970 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9971 | if (PyUnicode_IS_ASCII(self)) |
| 9972 | return asciilib_rsplit_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9973 | self, PyUnicode_1BYTE_DATA(self), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9974 | PyUnicode_GET_LENGTH(self), maxcount |
| 9975 | ); |
| 9976 | else |
| 9977 | return ucs1lib_rsplit_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9978 | self, PyUnicode_1BYTE_DATA(self), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9979 | PyUnicode_GET_LENGTH(self), maxcount |
| 9980 | ); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9981 | case PyUnicode_2BYTE_KIND: |
| 9982 | return ucs2lib_rsplit_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9983 | self, PyUnicode_2BYTE_DATA(self), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9984 | PyUnicode_GET_LENGTH(self), maxcount |
| 9985 | ); |
| 9986 | case PyUnicode_4BYTE_KIND: |
| 9987 | return ucs4lib_rsplit_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9988 | self, PyUnicode_4BYTE_DATA(self), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9989 | PyUnicode_GET_LENGTH(self), maxcount |
| 9990 | ); |
| 9991 | default: |
| 9992 | assert(0); |
| 9993 | return NULL; |
| 9994 | } |
| 9995 | |
| 9996 | if (PyUnicode_READY(substring) == -1) |
| 9997 | return NULL; |
| 9998 | |
| 9999 | kind1 = PyUnicode_KIND(self); |
| 10000 | kind2 = PyUnicode_KIND(substring); |
| 10001 | kind = kind1 > kind2 ? kind1 : kind2; |
| 10002 | buf1 = PyUnicode_DATA(self); |
| 10003 | buf2 = PyUnicode_DATA(substring); |
| 10004 | if (kind1 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10005 | buf1 = _PyUnicode_AsKind(self, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10006 | if (!buf1) |
| 10007 | return NULL; |
| 10008 | if (kind2 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10009 | buf2 = _PyUnicode_AsKind(substring, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10010 | if (!buf2) { |
| 10011 | if (kind1 != kind) PyMem_Free(buf1); |
| 10012 | return NULL; |
| 10013 | } |
| 10014 | len1 = PyUnicode_GET_LENGTH(self); |
| 10015 | len2 = PyUnicode_GET_LENGTH(substring); |
| 10016 | |
| 10017 | switch(kind) { |
| 10018 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10019 | if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring)) |
| 10020 | out = asciilib_rsplit( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10021 | self, buf1, len1, buf2, len2, maxcount); |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10022 | else |
| 10023 | out = ucs1lib_rsplit( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10024 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10025 | break; |
| 10026 | case PyUnicode_2BYTE_KIND: |
| 10027 | out = ucs2lib_rsplit( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10028 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10029 | break; |
| 10030 | case PyUnicode_4BYTE_KIND: |
| 10031 | out = ucs4lib_rsplit( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10032 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10033 | break; |
| 10034 | default: |
| 10035 | out = NULL; |
| 10036 | } |
| 10037 | if (kind1 != kind) |
| 10038 | PyMem_Free(buf1); |
| 10039 | if (kind2 != kind) |
| 10040 | PyMem_Free(buf2); |
| 10041 | return out; |
| 10042 | } |
| 10043 | |
| 10044 | static Py_ssize_t |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10045 | anylib_find(int kind, PyObject *str1, void *buf1, Py_ssize_t len1, |
| 10046 | PyObject *str2, void *buf2, Py_ssize_t len2, Py_ssize_t offset) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10047 | { |
| 10048 | switch(kind) { |
| 10049 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10050 | if (PyUnicode_IS_ASCII(str1) && PyUnicode_IS_ASCII(str2)) |
| 10051 | return asciilib_find(buf1, len1, buf2, len2, offset); |
| 10052 | else |
| 10053 | return ucs1lib_find(buf1, len1, buf2, len2, offset); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10054 | case PyUnicode_2BYTE_KIND: |
| 10055 | return ucs2lib_find(buf1, len1, buf2, len2, offset); |
| 10056 | case PyUnicode_4BYTE_KIND: |
| 10057 | return ucs4lib_find(buf1, len1, buf2, len2, offset); |
| 10058 | } |
| 10059 | assert(0); |
| 10060 | return -1; |
| 10061 | } |
| 10062 | |
| 10063 | static Py_ssize_t |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10064 | anylib_count(int kind, PyObject *sstr, void* sbuf, Py_ssize_t slen, |
| 10065 | PyObject *str1, void *buf1, Py_ssize_t len1, Py_ssize_t maxcount) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10066 | { |
| 10067 | switch(kind) { |
| 10068 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10069 | if (PyUnicode_IS_ASCII(sstr) && PyUnicode_IS_ASCII(str1)) |
| 10070 | return asciilib_count(sbuf, slen, buf1, len1, maxcount); |
| 10071 | else |
| 10072 | return ucs1lib_count(sbuf, slen, buf1, len1, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10073 | case PyUnicode_2BYTE_KIND: |
| 10074 | return ucs2lib_count(sbuf, slen, buf1, len1, maxcount); |
| 10075 | case PyUnicode_4BYTE_KIND: |
| 10076 | return ucs4lib_count(sbuf, slen, buf1, len1, maxcount); |
| 10077 | } |
| 10078 | assert(0); |
| 10079 | return 0; |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 10080 | } |
| 10081 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10082 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10083 | replace(PyObject *self, PyObject *str1, |
| 10084 | PyObject *str2, Py_ssize_t maxcount) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10085 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10086 | PyObject *u; |
| 10087 | char *sbuf = PyUnicode_DATA(self); |
| 10088 | char *buf1 = PyUnicode_DATA(str1); |
| 10089 | char *buf2 = PyUnicode_DATA(str2); |
| 10090 | int srelease = 0, release1 = 0, release2 = 0; |
| 10091 | int skind = PyUnicode_KIND(self); |
| 10092 | int kind1 = PyUnicode_KIND(str1); |
| 10093 | int kind2 = PyUnicode_KIND(str2); |
| 10094 | Py_ssize_t slen = PyUnicode_GET_LENGTH(self); |
| 10095 | Py_ssize_t len1 = PyUnicode_GET_LENGTH(str1); |
| 10096 | Py_ssize_t len2 = PyUnicode_GET_LENGTH(str2); |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10097 | int mayshrink; |
| 10098 | Py_UCS4 maxchar, maxchar_str2; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10099 | |
| 10100 | if (maxcount < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10101 | maxcount = PY_SSIZE_T_MAX; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10102 | else if (maxcount == 0 || slen == 0) |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10103 | goto nothing; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10104 | |
Victor Stinner | 59de0ee | 2011-10-07 10:01:28 +0200 | [diff] [blame] | 10105 | if (str1 == str2) |
| 10106 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10107 | if (skind < kind1) |
| 10108 | /* substring too wide to be present */ |
| 10109 | goto nothing; |
| 10110 | |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10111 | maxchar = PyUnicode_MAX_CHAR_VALUE(self); |
| 10112 | maxchar_str2 = PyUnicode_MAX_CHAR_VALUE(str2); |
| 10113 | /* Replacing str1 with str2 may cause a maxchar reduction in the |
| 10114 | result string. */ |
| 10115 | mayshrink = (maxchar_str2 < maxchar); |
| 10116 | maxchar = Py_MAX(maxchar, maxchar_str2); |
| 10117 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10118 | if (len1 == len2) { |
Antoine Pitrou | cbfdee3 | 2010-01-13 08:58:08 +0000 | [diff] [blame] | 10119 | Py_ssize_t i; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10120 | /* same length */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10121 | if (len1 == 0) |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10122 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10123 | if (len1 == 1) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10124 | /* replace characters */ |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10125 | Py_UCS4 u1, u2; |
| 10126 | int rkind; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10127 | u1 = PyUnicode_READ_CHAR(str1, 0); |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 10128 | if (findchar(sbuf, PyUnicode_KIND(self), |
| 10129 | slen, u1, 1) < 0) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10130 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10131 | u2 = PyUnicode_READ_CHAR(str2, 0); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10132 | u = PyUnicode_New(slen, maxchar); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10133 | if (!u) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10134 | goto error; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 10135 | copy_characters(u, 0, self, 0, slen); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10136 | rkind = PyUnicode_KIND(u); |
| 10137 | for (i = 0; i < PyUnicode_GET_LENGTH(u); i++) |
| 10138 | if (PyUnicode_READ(rkind, PyUnicode_DATA(u), i) == u1) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10139 | if (--maxcount < 0) |
| 10140 | break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10141 | PyUnicode_WRITE(rkind, PyUnicode_DATA(u), i, u2); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10142 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10143 | } |
| 10144 | else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10145 | int rkind = skind; |
| 10146 | char *res; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 10147 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10148 | if (kind1 < rkind) { |
| 10149 | /* widen substring */ |
| 10150 | buf1 = _PyUnicode_AsKind(str1, rkind); |
| 10151 | if (!buf1) goto error; |
| 10152 | release1 = 1; |
| 10153 | } |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10154 | i = anylib_find(rkind, self, sbuf, slen, str1, buf1, len1, 0); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10155 | if (i < 0) |
| 10156 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10157 | if (rkind > kind2) { |
| 10158 | /* widen replacement */ |
| 10159 | buf2 = _PyUnicode_AsKind(str2, rkind); |
| 10160 | if (!buf2) goto error; |
| 10161 | release2 = 1; |
| 10162 | } |
| 10163 | else if (rkind < kind2) { |
| 10164 | /* widen self and buf1 */ |
| 10165 | rkind = kind2; |
| 10166 | if (release1) PyMem_Free(buf1); |
| 10167 | sbuf = _PyUnicode_AsKind(self, rkind); |
| 10168 | if (!sbuf) goto error; |
| 10169 | srelease = 1; |
| 10170 | buf1 = _PyUnicode_AsKind(str1, rkind); |
| 10171 | if (!buf1) goto error; |
| 10172 | release1 = 1; |
| 10173 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10174 | u = PyUnicode_New(slen, maxchar); |
| 10175 | if (!u) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10176 | goto error; |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10177 | assert(PyUnicode_KIND(u) == rkind); |
| 10178 | res = PyUnicode_DATA(u); |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 10179 | |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10180 | memcpy(res, sbuf, rkind * slen); |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10181 | /* change everything in-place, starting with this one */ |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10182 | memcpy(res + rkind * i, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10183 | buf2, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10184 | rkind * len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10185 | i += len1; |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10186 | |
| 10187 | while ( --maxcount > 0) { |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10188 | i = anylib_find(rkind, self, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10189 | sbuf+rkind*i, slen-i, |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10190 | str1, buf1, len1, i); |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10191 | if (i == -1) |
| 10192 | break; |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10193 | memcpy(res + rkind * i, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10194 | buf2, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10195 | rkind * len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10196 | i += len1; |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10197 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10198 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10199 | } |
| 10200 | else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10201 | Py_ssize_t n, i, j, ires; |
| 10202 | Py_ssize_t product, new_size; |
| 10203 | int rkind = skind; |
| 10204 | char *res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10205 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10206 | if (kind1 < rkind) { |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10207 | /* widen substring */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10208 | buf1 = _PyUnicode_AsKind(str1, rkind); |
| 10209 | if (!buf1) goto error; |
| 10210 | release1 = 1; |
| 10211 | } |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10212 | n = anylib_count(rkind, self, sbuf, slen, str1, buf1, len1, maxcount); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10213 | if (n == 0) |
| 10214 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10215 | if (kind2 < rkind) { |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10216 | /* widen replacement */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10217 | buf2 = _PyUnicode_AsKind(str2, rkind); |
| 10218 | if (!buf2) goto error; |
| 10219 | release2 = 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10220 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10221 | else if (kind2 > rkind) { |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10222 | /* widen self and buf1 */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10223 | rkind = kind2; |
| 10224 | sbuf = _PyUnicode_AsKind(self, rkind); |
| 10225 | if (!sbuf) goto error; |
| 10226 | srelease = 1; |
| 10227 | if (release1) PyMem_Free(buf1); |
| 10228 | buf1 = _PyUnicode_AsKind(str1, rkind); |
| 10229 | if (!buf1) goto error; |
| 10230 | release1 = 1; |
| 10231 | } |
| 10232 | /* new_size = PyUnicode_GET_LENGTH(self) + n * (PyUnicode_GET_LENGTH(str2) - |
| 10233 | PyUnicode_GET_LENGTH(str1))); */ |
| 10234 | product = n * (len2-len1); |
| 10235 | if ((product / (len2-len1)) != n) { |
| 10236 | PyErr_SetString(PyExc_OverflowError, |
| 10237 | "replace string is too long"); |
| 10238 | goto error; |
| 10239 | } |
| 10240 | new_size = slen + product; |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10241 | if (new_size == 0) { |
| 10242 | Py_INCREF(unicode_empty); |
| 10243 | u = unicode_empty; |
| 10244 | goto done; |
| 10245 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10246 | if (new_size < 0 || new_size > (PY_SSIZE_T_MAX >> (rkind-1))) { |
| 10247 | PyErr_SetString(PyExc_OverflowError, |
| 10248 | "replace string is too long"); |
| 10249 | goto error; |
| 10250 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10251 | u = PyUnicode_New(new_size, maxchar); |
| 10252 | if (!u) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10253 | goto error; |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10254 | assert(PyUnicode_KIND(u) == rkind); |
| 10255 | res = PyUnicode_DATA(u); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10256 | ires = i = 0; |
| 10257 | if (len1 > 0) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10258 | while (n-- > 0) { |
| 10259 | /* look for next match */ |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10260 | j = anylib_find(rkind, self, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10261 | sbuf + rkind * i, slen-i, |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10262 | str1, buf1, len1, i); |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10263 | if (j == -1) |
| 10264 | break; |
| 10265 | else if (j > i) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10266 | /* copy unchanged part [i:j] */ |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10267 | memcpy(res + rkind * ires, |
| 10268 | sbuf + rkind * i, |
| 10269 | rkind * (j-i)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10270 | ires += j - i; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10271 | } |
| 10272 | /* copy substitution string */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10273 | if (len2 > 0) { |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10274 | memcpy(res + rkind * ires, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10275 | buf2, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10276 | rkind * len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10277 | ires += len2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10278 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10279 | i = j + len1; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10280 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10281 | if (i < slen) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10282 | /* copy tail [i:] */ |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10283 | memcpy(res + rkind * ires, |
| 10284 | sbuf + rkind * i, |
| 10285 | rkind * (slen-i)); |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10286 | } |
| 10287 | else { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10288 | /* interleave */ |
| 10289 | while (n > 0) { |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10290 | memcpy(res + rkind * ires, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10291 | buf2, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10292 | rkind * len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10293 | ires += len2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10294 | if (--n <= 0) |
| 10295 | break; |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10296 | memcpy(res + rkind * ires, |
| 10297 | sbuf + rkind * i, |
| 10298 | rkind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10299 | ires++; |
| 10300 | i++; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10301 | } |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10302 | memcpy(res + rkind * ires, |
| 10303 | sbuf + rkind * i, |
| 10304 | rkind * (slen-i)); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10305 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10306 | } |
| 10307 | |
| 10308 | if (mayshrink) { |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 10309 | unicode_adjust_maxchar(&u); |
| 10310 | if (u == NULL) |
| 10311 | goto error; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10312 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10313 | |
| 10314 | done: |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10315 | if (srelease) |
| 10316 | PyMem_FREE(sbuf); |
| 10317 | if (release1) |
| 10318 | PyMem_FREE(buf1); |
| 10319 | if (release2) |
| 10320 | PyMem_FREE(buf2); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 10321 | assert(_PyUnicode_CheckConsistency(u, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10322 | return u; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10323 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10324 | nothing: |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10325 | /* nothing to replace; return original string (when possible) */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10326 | if (srelease) |
| 10327 | PyMem_FREE(sbuf); |
| 10328 | if (release1) |
| 10329 | PyMem_FREE(buf1); |
| 10330 | if (release2) |
| 10331 | PyMem_FREE(buf2); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10332 | if (PyUnicode_CheckExact(self)) { |
| 10333 | Py_INCREF(self); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10334 | return self; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10335 | } |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 10336 | return PyUnicode_Copy(self); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10337 | error: |
| 10338 | if (srelease && sbuf) |
| 10339 | PyMem_FREE(sbuf); |
| 10340 | if (release1 && buf1) |
| 10341 | PyMem_FREE(buf1); |
| 10342 | if (release2 && buf2) |
| 10343 | PyMem_FREE(buf2); |
| 10344 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10345 | } |
| 10346 | |
| 10347 | /* --- Unicode Object Methods --------------------------------------------- */ |
| 10348 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10349 | PyDoc_STRVAR(title__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10350 | "S.title() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10351 | \n\ |
| 10352 | Return a titlecased version of S, i.e. words start with title case\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10353 | characters, all remaining cased characters have lower case."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10354 | |
| 10355 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 10356 | unicode_title(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10357 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10358 | return fixup(self, fixtitle); |
| 10359 | } |
| 10360 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10361 | PyDoc_STRVAR(capitalize__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10362 | "S.capitalize() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10363 | \n\ |
| 10364 | Return a capitalized version of S, i.e. make the first character\n\ |
Senthil Kumaran | e51ee8a | 2010-07-05 12:00:56 +0000 | [diff] [blame] | 10365 | have upper case and the rest lower case."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10366 | |
| 10367 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 10368 | unicode_capitalize(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10369 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10370 | return fixup(self, fixcapitalize); |
| 10371 | } |
| 10372 | |
| 10373 | #if 0 |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10374 | PyDoc_STRVAR(capwords__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10375 | "S.capwords() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10376 | \n\ |
| 10377 | Apply .capitalize() to all words in S and return the result with\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10378 | normalized whitespace (all whitespace strings are replaced by ' ')."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10379 | |
| 10380 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10381 | unicode_capwords(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10382 | { |
| 10383 | PyObject *list; |
| 10384 | PyObject *item; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 10385 | Py_ssize_t i; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10386 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10387 | /* Split into words */ |
| 10388 | list = split(self, NULL, -1); |
| 10389 | if (!list) |
| 10390 | return NULL; |
| 10391 | |
| 10392 | /* Capitalize each word */ |
| 10393 | for (i = 0; i < PyList_GET_SIZE(list); i++) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10394 | item = fixup(PyList_GET_ITEM(list, i), |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10395 | fixcapitalize); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10396 | if (item == NULL) |
| 10397 | goto onError; |
| 10398 | Py_DECREF(PyList_GET_ITEM(list, i)); |
| 10399 | PyList_SET_ITEM(list, i, item); |
| 10400 | } |
| 10401 | |
| 10402 | /* Join the words to form a new string */ |
| 10403 | item = PyUnicode_Join(NULL, list); |
| 10404 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10405 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10406 | Py_DECREF(list); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10407 | return item; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10408 | } |
| 10409 | #endif |
| 10410 | |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 10411 | /* Argument converter. Coerces to a single unicode character */ |
| 10412 | |
| 10413 | static int |
| 10414 | convert_uc(PyObject *obj, void *addr) |
| 10415 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10416 | Py_UCS4 *fillcharloc = (Py_UCS4 *)addr; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10417 | PyObject *uniobj; |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 10418 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10419 | uniobj = PyUnicode_FromObject(obj); |
| 10420 | if (uniobj == NULL) { |
| 10421 | PyErr_SetString(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10422 | "The fill character cannot be converted to Unicode"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10423 | return 0; |
| 10424 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10425 | if (PyUnicode_GET_LENGTH(uniobj) != 1) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10426 | PyErr_SetString(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10427 | "The fill character must be exactly one character long"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10428 | Py_DECREF(uniobj); |
| 10429 | return 0; |
| 10430 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10431 | *fillcharloc = PyUnicode_READ_CHAR(uniobj, 0); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10432 | Py_DECREF(uniobj); |
| 10433 | return 1; |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 10434 | } |
| 10435 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10436 | PyDoc_STRVAR(center__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10437 | "S.center(width[, fillchar]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10438 | \n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 10439 | Return S centered in a string of length width. Padding is\n\ |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 10440 | done using the specified fill character (default is a space)"); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10441 | |
| 10442 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 10443 | unicode_center(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10444 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 10445 | Py_ssize_t marg, left; |
| 10446 | Py_ssize_t width; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10447 | Py_UCS4 fillchar = ' '; |
| 10448 | |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 10449 | if (!PyArg_ParseTuple(args, "n|O&:center", &width, convert_uc, &fillchar)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10450 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10451 | |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 10452 | if (PyUnicode_READY(self) == -1) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10453 | return NULL; |
| 10454 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10455 | if (_PyUnicode_LENGTH(self) >= width && PyUnicode_CheckExact(self)) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10456 | Py_INCREF(self); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10457 | return self; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10458 | } |
| 10459 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10460 | marg = width - _PyUnicode_LENGTH(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10461 | left = marg / 2 + (marg & width & 1); |
| 10462 | |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 10463 | return pad(self, left, marg - left, fillchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10464 | } |
| 10465 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10466 | /* This function assumes that str1 and str2 are readied by the caller. */ |
| 10467 | |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10468 | static int |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10469 | unicode_compare(PyObject *str1, PyObject *str2) |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10470 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10471 | int kind1, kind2; |
| 10472 | void *data1, *data2; |
| 10473 | Py_ssize_t len1, len2, i; |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10474 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10475 | kind1 = PyUnicode_KIND(str1); |
| 10476 | kind2 = PyUnicode_KIND(str2); |
| 10477 | data1 = PyUnicode_DATA(str1); |
| 10478 | data2 = PyUnicode_DATA(str2); |
| 10479 | len1 = PyUnicode_GET_LENGTH(str1); |
| 10480 | len2 = PyUnicode_GET_LENGTH(str2); |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10481 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10482 | for (i = 0; i < len1 && i < len2; ++i) { |
| 10483 | Py_UCS4 c1, c2; |
| 10484 | c1 = PyUnicode_READ(kind1, data1, i); |
| 10485 | c2 = PyUnicode_READ(kind2, data2, i); |
Fredrik Lundh | 45714e9 | 2001-06-26 16:39:36 +0000 | [diff] [blame] | 10486 | |
| 10487 | if (c1 != c2) |
| 10488 | return (c1 < c2) ? -1 : 1; |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10489 | } |
| 10490 | |
| 10491 | return (len1 < len2) ? -1 : (len1 != len2); |
| 10492 | } |
| 10493 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10494 | int |
| 10495 | PyUnicode_Compare(PyObject *left, PyObject *right) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10496 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10497 | if (PyUnicode_Check(left) && PyUnicode_Check(right)) { |
| 10498 | if (PyUnicode_READY(left) == -1 || |
| 10499 | PyUnicode_READY(right) == -1) |
| 10500 | return -1; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10501 | return unicode_compare(left, right); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10502 | } |
Guido van Rossum | 09dc34f | 2007-05-04 04:17:33 +0000 | [diff] [blame] | 10503 | PyErr_Format(PyExc_TypeError, |
| 10504 | "Can't compare %.100s and %.100s", |
| 10505 | left->ob_type->tp_name, |
| 10506 | right->ob_type->tp_name); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10507 | return -1; |
| 10508 | } |
| 10509 | |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 10510 | int |
| 10511 | PyUnicode_CompareWithASCIIString(PyObject* uni, const char* str) |
| 10512 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10513 | Py_ssize_t i; |
| 10514 | int kind; |
| 10515 | void *data; |
| 10516 | Py_UCS4 chr; |
| 10517 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 10518 | assert(_PyUnicode_CHECK(uni)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10519 | if (PyUnicode_READY(uni) == -1) |
| 10520 | return -1; |
| 10521 | kind = PyUnicode_KIND(uni); |
| 10522 | data = PyUnicode_DATA(uni); |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 10523 | /* Compare Unicode string and source character set string */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10524 | for (i = 0; (chr = PyUnicode_READ(kind, data, i)) && str[i]; i++) |
| 10525 | if (chr != str[i]) |
| 10526 | return (chr < (unsigned char)(str[i])) ? -1 : 1; |
Benjamin Peterson | 8667a9b | 2010-01-09 21:45:28 +0000 | [diff] [blame] | 10527 | /* This check keeps Python strings that end in '\0' from comparing equal |
| 10528 | to C strings identical up to that point. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10529 | if (PyUnicode_GET_LENGTH(uni) != i || chr) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10530 | return 1; /* uni is longer */ |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 10531 | if (str[i]) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10532 | return -1; /* str is longer */ |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 10533 | return 0; |
| 10534 | } |
| 10535 | |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10536 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10537 | #define TEST_COND(cond) \ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10538 | ((cond) ? Py_True : Py_False) |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10539 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10540 | PyObject * |
| 10541 | PyUnicode_RichCompare(PyObject *left, PyObject *right, int op) |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 10542 | { |
| 10543 | int result; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10544 | |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10545 | if (PyUnicode_Check(left) && PyUnicode_Check(right)) { |
| 10546 | PyObject *v; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10547 | if (PyUnicode_READY(left) == -1 || |
| 10548 | PyUnicode_READY(right) == -1) |
| 10549 | return NULL; |
| 10550 | if (PyUnicode_GET_LENGTH(left) != PyUnicode_GET_LENGTH(right) || |
| 10551 | PyUnicode_KIND(left) != PyUnicode_KIND(right)) { |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10552 | if (op == Py_EQ) { |
| 10553 | Py_INCREF(Py_False); |
| 10554 | return Py_False; |
| 10555 | } |
| 10556 | if (op == Py_NE) { |
| 10557 | Py_INCREF(Py_True); |
| 10558 | return Py_True; |
| 10559 | } |
| 10560 | } |
| 10561 | if (left == right) |
| 10562 | result = 0; |
| 10563 | else |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10564 | result = unicode_compare(left, right); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10565 | |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10566 | /* Convert the return value to a Boolean */ |
| 10567 | switch (op) { |
| 10568 | case Py_EQ: |
| 10569 | v = TEST_COND(result == 0); |
| 10570 | break; |
| 10571 | case Py_NE: |
| 10572 | v = TEST_COND(result != 0); |
| 10573 | break; |
| 10574 | case Py_LE: |
| 10575 | v = TEST_COND(result <= 0); |
| 10576 | break; |
| 10577 | case Py_GE: |
| 10578 | v = TEST_COND(result >= 0); |
| 10579 | break; |
| 10580 | case Py_LT: |
| 10581 | v = TEST_COND(result == -1); |
| 10582 | break; |
| 10583 | case Py_GT: |
| 10584 | v = TEST_COND(result == 1); |
| 10585 | break; |
| 10586 | default: |
| 10587 | PyErr_BadArgument(); |
| 10588 | return NULL; |
| 10589 | } |
| 10590 | Py_INCREF(v); |
| 10591 | return v; |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 10592 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10593 | |
Brian Curtin | dfc80e3 | 2011-08-10 20:28:54 -0500 | [diff] [blame] | 10594 | Py_RETURN_NOTIMPLEMENTED; |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 10595 | } |
| 10596 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10597 | int |
| 10598 | PyUnicode_Contains(PyObject *container, PyObject *element) |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10599 | { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10600 | PyObject *str, *sub; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10601 | int kind1, kind2, kind; |
| 10602 | void *buf1, *buf2; |
| 10603 | Py_ssize_t len1, len2; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 10604 | int result; |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10605 | |
| 10606 | /* Coerce the two arguments */ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10607 | sub = PyUnicode_FromObject(element); |
| 10608 | if (!sub) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10609 | PyErr_Format(PyExc_TypeError, |
| 10610 | "'in <string>' requires string as left operand, not %s", |
| 10611 | element->ob_type->tp_name); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10612 | return -1; |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10613 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10614 | if (PyUnicode_READY(sub) == -1) |
| 10615 | return -1; |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10616 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10617 | str = PyUnicode_FromObject(container); |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 10618 | if (!str || PyUnicode_READY(str) == -1) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10619 | Py_DECREF(sub); |
| 10620 | return -1; |
| 10621 | } |
| 10622 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10623 | kind1 = PyUnicode_KIND(str); |
| 10624 | kind2 = PyUnicode_KIND(sub); |
| 10625 | kind = kind1 > kind2 ? kind1 : kind2; |
| 10626 | buf1 = PyUnicode_DATA(str); |
| 10627 | buf2 = PyUnicode_DATA(sub); |
| 10628 | if (kind1 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10629 | buf1 = _PyUnicode_AsKind(str, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10630 | if (!buf1) { |
| 10631 | Py_DECREF(sub); |
| 10632 | return -1; |
| 10633 | } |
| 10634 | if (kind2 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10635 | buf2 = _PyUnicode_AsKind(sub, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10636 | if (!buf2) { |
| 10637 | Py_DECREF(sub); |
| 10638 | if (kind1 != kind) PyMem_Free(buf1); |
| 10639 | return -1; |
| 10640 | } |
| 10641 | len1 = PyUnicode_GET_LENGTH(str); |
| 10642 | len2 = PyUnicode_GET_LENGTH(sub); |
| 10643 | |
| 10644 | switch(kind) { |
| 10645 | case PyUnicode_1BYTE_KIND: |
| 10646 | result = ucs1lib_find(buf1, len1, buf2, len2, 0) != -1; |
| 10647 | break; |
| 10648 | case PyUnicode_2BYTE_KIND: |
| 10649 | result = ucs2lib_find(buf1, len1, buf2, len2, 0) != -1; |
| 10650 | break; |
| 10651 | case PyUnicode_4BYTE_KIND: |
| 10652 | result = ucs4lib_find(buf1, len1, buf2, len2, 0) != -1; |
| 10653 | break; |
| 10654 | default: |
| 10655 | result = -1; |
| 10656 | assert(0); |
| 10657 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10658 | |
| 10659 | Py_DECREF(str); |
| 10660 | Py_DECREF(sub); |
| 10661 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10662 | if (kind1 != kind) |
| 10663 | PyMem_Free(buf1); |
| 10664 | if (kind2 != kind) |
| 10665 | PyMem_Free(buf2); |
| 10666 | |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10667 | return result; |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10668 | } |
| 10669 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10670 | /* Concat to string or Unicode object giving a new Unicode object. */ |
| 10671 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10672 | PyObject * |
| 10673 | PyUnicode_Concat(PyObject *left, PyObject *right) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10674 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10675 | PyObject *u = NULL, *v = NULL, *w; |
Victor Stinner | 127226b | 2011-10-13 01:12:34 +0200 | [diff] [blame] | 10676 | Py_UCS4 maxchar, maxchar2; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10677 | |
| 10678 | /* Coerce the two arguments */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10679 | u = PyUnicode_FromObject(left); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10680 | if (u == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10681 | goto onError; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10682 | v = PyUnicode_FromObject(right); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10683 | if (v == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10684 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10685 | |
| 10686 | /* Shortcuts */ |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 10687 | if (v == unicode_empty) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10688 | Py_DECREF(v); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10689 | return u; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10690 | } |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 10691 | if (u == unicode_empty) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10692 | Py_DECREF(u); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10693 | return v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10694 | } |
| 10695 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10696 | maxchar = PyUnicode_MAX_CHAR_VALUE(u); |
Victor Stinner | 127226b | 2011-10-13 01:12:34 +0200 | [diff] [blame] | 10697 | maxchar2 = PyUnicode_MAX_CHAR_VALUE(v); |
| 10698 | maxchar = Py_MAX(maxchar, maxchar2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10699 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10700 | /* Concat the two Unicode strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10701 | w = PyUnicode_New( |
| 10702 | PyUnicode_GET_LENGTH(u) + PyUnicode_GET_LENGTH(v), |
| 10703 | maxchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10704 | if (w == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10705 | goto onError; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 10706 | copy_characters(w, 0, u, 0, PyUnicode_GET_LENGTH(u)); |
| 10707 | copy_characters(w, PyUnicode_GET_LENGTH(u), v, 0, PyUnicode_GET_LENGTH(v)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10708 | Py_DECREF(u); |
| 10709 | Py_DECREF(v); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 10710 | assert(_PyUnicode_CheckConsistency(w, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10711 | return w; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10712 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10713 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10714 | Py_XDECREF(u); |
| 10715 | Py_XDECREF(v); |
| 10716 | return NULL; |
| 10717 | } |
| 10718 | |
Victor Stinner | b092365 | 2011-10-04 01:17:31 +0200 | [diff] [blame] | 10719 | static void |
| 10720 | unicode_append_inplace(PyObject **p_left, PyObject *right) |
| 10721 | { |
| 10722 | Py_ssize_t left_len, right_len, new_len; |
Victor Stinner | b092365 | 2011-10-04 01:17:31 +0200 | [diff] [blame] | 10723 | |
| 10724 | assert(PyUnicode_IS_READY(*p_left)); |
| 10725 | assert(PyUnicode_IS_READY(right)); |
| 10726 | |
| 10727 | left_len = PyUnicode_GET_LENGTH(*p_left); |
| 10728 | right_len = PyUnicode_GET_LENGTH(right); |
| 10729 | if (left_len > PY_SSIZE_T_MAX - right_len) { |
| 10730 | PyErr_SetString(PyExc_OverflowError, |
| 10731 | "strings are too large to concat"); |
| 10732 | goto error; |
| 10733 | } |
| 10734 | new_len = left_len + right_len; |
| 10735 | |
| 10736 | /* Now we own the last reference to 'left', so we can resize it |
| 10737 | * in-place. |
| 10738 | */ |
| 10739 | if (unicode_resize(p_left, new_len) != 0) { |
| 10740 | /* XXX if _PyUnicode_Resize() fails, 'left' has been |
| 10741 | * deallocated so it cannot be put back into |
| 10742 | * 'variable'. The MemoryError is raised when there |
| 10743 | * is no value in 'variable', which might (very |
| 10744 | * remotely) be a cause of incompatibilities. |
| 10745 | */ |
| 10746 | goto error; |
| 10747 | } |
| 10748 | /* copy 'right' into the newly allocated area of 'left' */ |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 10749 | copy_characters(*p_left, left_len, right, 0, right_len); |
| 10750 | _PyUnicode_DIRTY(*p_left); |
Victor Stinner | b092365 | 2011-10-04 01:17:31 +0200 | [diff] [blame] | 10751 | return; |
| 10752 | |
| 10753 | error: |
| 10754 | Py_DECREF(*p_left); |
| 10755 | *p_left = NULL; |
| 10756 | } |
| 10757 | |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 10758 | void |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10759 | PyUnicode_Append(PyObject **p_left, PyObject *right) |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 10760 | { |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10761 | PyObject *left, *res; |
| 10762 | |
| 10763 | if (p_left == NULL) { |
| 10764 | if (!PyErr_Occurred()) |
| 10765 | PyErr_BadInternalCall(); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10766 | return; |
| 10767 | } |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10768 | left = *p_left; |
| 10769 | if (right == NULL || !PyUnicode_Check(left)) { |
| 10770 | if (!PyErr_Occurred()) |
| 10771 | PyErr_BadInternalCall(); |
| 10772 | goto error; |
| 10773 | } |
| 10774 | |
Victor Stinner | e1335c7 | 2011-10-04 20:53:03 +0200 | [diff] [blame] | 10775 | if (PyUnicode_READY(left)) |
| 10776 | goto error; |
| 10777 | if (PyUnicode_READY(right)) |
| 10778 | goto error; |
| 10779 | |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10780 | if (PyUnicode_CheckExact(left) && left != unicode_empty |
| 10781 | && PyUnicode_CheckExact(right) && right != unicode_empty |
| 10782 | && unicode_resizable(left) |
| 10783 | && (_PyUnicode_KIND(right) <= _PyUnicode_KIND(left) |
| 10784 | || _PyUnicode_WSTR(left) != NULL)) |
| 10785 | { |
Victor Stinner | b092365 | 2011-10-04 01:17:31 +0200 | [diff] [blame] | 10786 | /* Don't resize for ascii += latin1. Convert ascii to latin1 requires |
| 10787 | to change the structure size, but characters are stored just after |
Georg Brandl | 7597add | 2011-10-05 16:36:47 +0200 | [diff] [blame] | 10788 | the structure, and so it requires to move all characters which is |
Victor Stinner | b092365 | 2011-10-04 01:17:31 +0200 | [diff] [blame] | 10789 | not so different than duplicating the string. */ |
| 10790 | if (!(PyUnicode_IS_ASCII(left) && !PyUnicode_IS_ASCII(right))) |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10791 | { |
Victor Stinner | b092365 | 2011-10-04 01:17:31 +0200 | [diff] [blame] | 10792 | unicode_append_inplace(p_left, right); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 10793 | if (p_left != NULL) |
| 10794 | assert(_PyUnicode_CheckConsistency(*p_left, 1)); |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10795 | return; |
| 10796 | } |
| 10797 | } |
| 10798 | |
| 10799 | res = PyUnicode_Concat(left, right); |
| 10800 | if (res == NULL) |
| 10801 | goto error; |
| 10802 | Py_DECREF(left); |
| 10803 | *p_left = res; |
| 10804 | return; |
| 10805 | |
| 10806 | error: |
| 10807 | Py_DECREF(*p_left); |
| 10808 | *p_left = NULL; |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 10809 | } |
| 10810 | |
| 10811 | void |
| 10812 | PyUnicode_AppendAndDel(PyObject **pleft, PyObject *right) |
| 10813 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10814 | PyUnicode_Append(pleft, right); |
| 10815 | Py_XDECREF(right); |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 10816 | } |
| 10817 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10818 | PyDoc_STRVAR(count__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10819 | "S.count(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10820 | \n\ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10821 | Return the number of non-overlapping occurrences of substring sub in\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 10822 | string S[start:end]. Optional arguments start and end are\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10823 | interpreted as in slice notation."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10824 | |
| 10825 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10826 | unicode_count(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10827 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10828 | PyObject *substring; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 10829 | Py_ssize_t start = 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 10830 | Py_ssize_t end = PY_SSIZE_T_MAX; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10831 | PyObject *result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10832 | int kind1, kind2, kind; |
| 10833 | void *buf1, *buf2; |
| 10834 | Py_ssize_t len1, len2, iresult; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10835 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 10836 | if (!stringlib_parse_args_finds_unicode("count", args, &substring, |
| 10837 | &start, &end)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10838 | return NULL; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 10839 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10840 | kind1 = PyUnicode_KIND(self); |
| 10841 | kind2 = PyUnicode_KIND(substring); |
| 10842 | kind = kind1 > kind2 ? kind1 : kind2; |
| 10843 | buf1 = PyUnicode_DATA(self); |
| 10844 | buf2 = PyUnicode_DATA(substring); |
| 10845 | if (kind1 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10846 | buf1 = _PyUnicode_AsKind(self, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10847 | if (!buf1) { |
| 10848 | Py_DECREF(substring); |
| 10849 | return NULL; |
| 10850 | } |
| 10851 | if (kind2 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10852 | buf2 = _PyUnicode_AsKind(substring, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10853 | if (!buf2) { |
| 10854 | Py_DECREF(substring); |
| 10855 | if (kind1 != kind) PyMem_Free(buf1); |
| 10856 | return NULL; |
| 10857 | } |
| 10858 | len1 = PyUnicode_GET_LENGTH(self); |
| 10859 | len2 = PyUnicode_GET_LENGTH(substring); |
| 10860 | |
| 10861 | ADJUST_INDICES(start, end, len1); |
| 10862 | switch(kind) { |
| 10863 | case PyUnicode_1BYTE_KIND: |
| 10864 | iresult = ucs1lib_count( |
| 10865 | ((Py_UCS1*)buf1) + start, end - start, |
| 10866 | buf2, len2, PY_SSIZE_T_MAX |
| 10867 | ); |
| 10868 | break; |
| 10869 | case PyUnicode_2BYTE_KIND: |
| 10870 | iresult = ucs2lib_count( |
| 10871 | ((Py_UCS2*)buf1) + start, end - start, |
| 10872 | buf2, len2, PY_SSIZE_T_MAX |
| 10873 | ); |
| 10874 | break; |
| 10875 | case PyUnicode_4BYTE_KIND: |
| 10876 | iresult = ucs4lib_count( |
| 10877 | ((Py_UCS4*)buf1) + start, end - start, |
| 10878 | buf2, len2, PY_SSIZE_T_MAX |
| 10879 | ); |
| 10880 | break; |
| 10881 | default: |
| 10882 | assert(0); iresult = 0; |
| 10883 | } |
| 10884 | |
| 10885 | result = PyLong_FromSsize_t(iresult); |
| 10886 | |
| 10887 | if (kind1 != kind) |
| 10888 | PyMem_Free(buf1); |
| 10889 | if (kind2 != kind) |
| 10890 | PyMem_Free(buf2); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10891 | |
| 10892 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10893 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10894 | return result; |
| 10895 | } |
| 10896 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10897 | PyDoc_STRVAR(encode__doc__, |
Victor Stinner | c911bbf | 2010-11-07 19:04:46 +0000 | [diff] [blame] | 10898 | "S.encode(encoding='utf-8', errors='strict') -> bytes\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10899 | \n\ |
Victor Stinner | e14e212 | 2010-11-07 18:41:46 +0000 | [diff] [blame] | 10900 | Encode S using the codec registered for encoding. Default encoding\n\ |
| 10901 | is 'utf-8'. errors may be given to set a different error\n\ |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 10902 | handling scheme. Default is 'strict' meaning that encoding errors raise\n\ |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 10903 | a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and\n\ |
| 10904 | 'xmlcharrefreplace' as well as any other name registered with\n\ |
| 10905 | codecs.register_error that can handle UnicodeEncodeErrors."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10906 | |
| 10907 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10908 | unicode_encode(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10909 | { |
Benjamin Peterson | 308d637 | 2009-09-18 21:42:35 +0000 | [diff] [blame] | 10910 | static char *kwlist[] = {"encoding", "errors", 0}; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10911 | char *encoding = NULL; |
| 10912 | char *errors = NULL; |
Guido van Rossum | 35d9428 | 2007-08-27 18:20:11 +0000 | [diff] [blame] | 10913 | |
Benjamin Peterson | 308d637 | 2009-09-18 21:42:35 +0000 | [diff] [blame] | 10914 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:encode", |
| 10915 | kwlist, &encoding, &errors)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10916 | return NULL; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10917 | return PyUnicode_AsEncodedString(self, encoding, errors); |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 10918 | } |
| 10919 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10920 | PyDoc_STRVAR(expandtabs__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10921 | "S.expandtabs([tabsize]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10922 | \n\ |
| 10923 | Return a copy of S where all tab characters are expanded using spaces.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10924 | If tabsize is not given, a tab size of 8 characters is assumed."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10925 | |
| 10926 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10927 | unicode_expandtabs(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10928 | { |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10929 | Py_ssize_t i, j, line_pos, src_len, incr; |
| 10930 | Py_UCS4 ch; |
| 10931 | PyObject *u; |
| 10932 | void *src_data, *dest_data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10933 | int tabsize = 8; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10934 | int kind; |
Antoine Pitrou | e19aa38 | 2011-10-04 16:04:01 +0200 | [diff] [blame] | 10935 | int found; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10936 | |
| 10937 | if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10938 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10939 | |
Antoine Pitrou | 2242522 | 2011-10-04 19:10:51 +0200 | [diff] [blame] | 10940 | if (PyUnicode_READY(self) == -1) |
| 10941 | return NULL; |
| 10942 | |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 10943 | /* First pass: determine size of output string */ |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10944 | src_len = PyUnicode_GET_LENGTH(self); |
| 10945 | i = j = line_pos = 0; |
| 10946 | kind = PyUnicode_KIND(self); |
| 10947 | src_data = PyUnicode_DATA(self); |
Antoine Pitrou | e19aa38 | 2011-10-04 16:04:01 +0200 | [diff] [blame] | 10948 | found = 0; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10949 | for (; i < src_len; i++) { |
| 10950 | ch = PyUnicode_READ(kind, src_data, i); |
| 10951 | if (ch == '\t') { |
Antoine Pitrou | e19aa38 | 2011-10-04 16:04:01 +0200 | [diff] [blame] | 10952 | found = 1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10953 | if (tabsize > 0) { |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10954 | incr = tabsize - (line_pos % tabsize); /* cannot overflow */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10955 | if (j > PY_SSIZE_T_MAX - incr) |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10956 | goto overflow; |
| 10957 | line_pos += incr; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10958 | j += incr; |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 10959 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10960 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10961 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10962 | if (j > PY_SSIZE_T_MAX - 1) |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10963 | goto overflow; |
| 10964 | line_pos++; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10965 | j++; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10966 | if (ch == '\n' || ch == '\r') |
| 10967 | line_pos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10968 | } |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10969 | } |
Antoine Pitrou | e19aa38 | 2011-10-04 16:04:01 +0200 | [diff] [blame] | 10970 | if (!found && PyUnicode_CheckExact(self)) { |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10971 | Py_INCREF(self); |
| 10972 | return self; |
Antoine Pitrou | e19aa38 | 2011-10-04 16:04:01 +0200 | [diff] [blame] | 10973 | } |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 10974 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10975 | /* Second pass: create output string and fill it */ |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10976 | u = PyUnicode_New(j, PyUnicode_MAX_CHAR_VALUE(self)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10977 | if (!u) |
| 10978 | return NULL; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10979 | dest_data = PyUnicode_DATA(u); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10980 | |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10981 | i = j = line_pos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10982 | |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10983 | for (; i < src_len; i++) { |
| 10984 | ch = PyUnicode_READ(kind, src_data, i); |
| 10985 | if (ch == '\t') { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10986 | if (tabsize > 0) { |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10987 | incr = tabsize - (line_pos % tabsize); |
| 10988 | line_pos += incr; |
| 10989 | while (incr--) { |
| 10990 | PyUnicode_WRITE(kind, dest_data, j, ' '); |
| 10991 | j++; |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 10992 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10993 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10994 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10995 | else { |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10996 | line_pos++; |
| 10997 | PyUnicode_WRITE(kind, dest_data, j, ch); |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 10998 | j++; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10999 | if (ch == '\n' || ch == '\r') |
| 11000 | line_pos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11001 | } |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 11002 | } |
| 11003 | assert (j == PyUnicode_GET_LENGTH(u)); |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 11004 | #ifndef DONT_MAKE_RESULT_READY |
| 11005 | if (_PyUnicode_READY_REPLACE(&u)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11006 | Py_DECREF(u); |
| 11007 | return NULL; |
| 11008 | } |
Victor Stinner | 17efeed | 2011-10-04 20:05:46 +0200 | [diff] [blame] | 11009 | #endif |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 11010 | assert(_PyUnicode_CheckConsistency(u, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11011 | return u; |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 11012 | |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 11013 | overflow: |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 11014 | PyErr_SetString(PyExc_OverflowError, "new string is too long"); |
| 11015 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11016 | } |
| 11017 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11018 | PyDoc_STRVAR(find__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11019 | "S.find(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11020 | \n\ |
| 11021 | Return the lowest index in S where substring sub is found,\n\ |
Senthil Kumaran | 53516a8 | 2011-07-27 23:33:54 +0800 | [diff] [blame] | 11022 | such that sub is contained within S[start:end]. Optional\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11023 | arguments start and end are interpreted as in slice notation.\n\ |
| 11024 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11025 | Return -1 on failure."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11026 | |
| 11027 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11028 | unicode_find(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11029 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11030 | PyObject *substring; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 11031 | Py_ssize_t start; |
| 11032 | Py_ssize_t end; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11033 | Py_ssize_t result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11034 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 11035 | if (!stringlib_parse_args_finds_unicode("find", args, &substring, |
| 11036 | &start, &end)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11037 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11038 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11039 | if (PyUnicode_READY(self) == -1) |
| 11040 | return NULL; |
| 11041 | if (PyUnicode_READY(substring) == -1) |
| 11042 | return NULL; |
| 11043 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11044 | result = any_find_slice(1, self, substring, start, end); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11045 | |
| 11046 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11047 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11048 | if (result == -2) |
| 11049 | return NULL; |
| 11050 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 11051 | return PyLong_FromSsize_t(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11052 | } |
| 11053 | |
| 11054 | static PyObject * |
Victor Stinner | 2fe5ced | 2011-10-02 00:25:40 +0200 | [diff] [blame] | 11055 | unicode_getitem(PyObject *self, Py_ssize_t index) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11056 | { |
Victor Stinner | 2fe5ced | 2011-10-02 00:25:40 +0200 | [diff] [blame] | 11057 | Py_UCS4 ch = PyUnicode_ReadChar(self, index); |
| 11058 | if (ch == (Py_UCS4)-1) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11059 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11060 | return PyUnicode_FromOrdinal(ch); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11061 | } |
| 11062 | |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11063 | /* Believe it or not, this produces the same value for ASCII strings |
Mark Dickinson | 57e683e | 2011-09-24 18:18:40 +0100 | [diff] [blame] | 11064 | as bytes_hash(). */ |
Benjamin Peterson | 8f67d08 | 2010-10-17 20:54:53 +0000 | [diff] [blame] | 11065 | static Py_hash_t |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11066 | unicode_hash(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11067 | { |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11068 | Py_ssize_t len; |
Mark Dickinson | 57e683e | 2011-09-24 18:18:40 +0100 | [diff] [blame] | 11069 | Py_uhash_t x; |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11070 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11071 | if (_PyUnicode_HASH(self) != -1) |
| 11072 | return _PyUnicode_HASH(self); |
| 11073 | if (PyUnicode_READY(self) == -1) |
| 11074 | return -1; |
| 11075 | len = PyUnicode_GET_LENGTH(self); |
| 11076 | |
| 11077 | /* The hash function as a macro, gets expanded three times below. */ |
| 11078 | #define HASH(P) \ |
| 11079 | x = (Py_uhash_t)*P << 7; \ |
| 11080 | while (--len >= 0) \ |
| 11081 | x = (1000003*x) ^ (Py_uhash_t)*P++; |
| 11082 | |
| 11083 | switch (PyUnicode_KIND(self)) { |
| 11084 | case PyUnicode_1BYTE_KIND: { |
| 11085 | const unsigned char *c = PyUnicode_1BYTE_DATA(self); |
| 11086 | HASH(c); |
| 11087 | break; |
| 11088 | } |
| 11089 | case PyUnicode_2BYTE_KIND: { |
| 11090 | const Py_UCS2 *s = PyUnicode_2BYTE_DATA(self); |
| 11091 | HASH(s); |
| 11092 | break; |
| 11093 | } |
| 11094 | default: { |
| 11095 | Py_UCS4 *l; |
| 11096 | assert(PyUnicode_KIND(self) == PyUnicode_4BYTE_KIND && |
| 11097 | "Impossible switch case in unicode_hash"); |
| 11098 | l = PyUnicode_4BYTE_DATA(self); |
| 11099 | HASH(l); |
| 11100 | break; |
| 11101 | } |
| 11102 | } |
| 11103 | x ^= (Py_uhash_t)PyUnicode_GET_LENGTH(self); |
| 11104 | |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11105 | if (x == -1) |
| 11106 | x = -2; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11107 | _PyUnicode_HASH(self) = x; |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11108 | return x; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11109 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11110 | #undef HASH |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11111 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11112 | PyDoc_STRVAR(index__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11113 | "S.index(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11114 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11115 | Like S.find() but raise ValueError when the substring is not found."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11116 | |
| 11117 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11118 | unicode_index(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11119 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 11120 | Py_ssize_t result; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11121 | PyObject *substring; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 11122 | Py_ssize_t start; |
| 11123 | Py_ssize_t end; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11124 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 11125 | if (!stringlib_parse_args_finds_unicode("index", args, &substring, |
| 11126 | &start, &end)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11127 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11128 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11129 | if (PyUnicode_READY(self) == -1) |
| 11130 | return NULL; |
| 11131 | if (PyUnicode_READY(substring) == -1) |
| 11132 | return NULL; |
| 11133 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11134 | result = any_find_slice(1, self, substring, start, end); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11135 | |
| 11136 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11137 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11138 | if (result == -2) |
| 11139 | return NULL; |
| 11140 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11141 | if (result < 0) { |
| 11142 | PyErr_SetString(PyExc_ValueError, "substring not found"); |
| 11143 | return NULL; |
| 11144 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11145 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 11146 | return PyLong_FromSsize_t(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11147 | } |
| 11148 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11149 | PyDoc_STRVAR(islower__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11150 | "S.islower() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11151 | \n\ |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11152 | Return True if all cased characters in S are lowercase and there is\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11153 | at least one cased character in S, False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11154 | |
| 11155 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11156 | unicode_islower(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11157 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11158 | Py_ssize_t i, length; |
| 11159 | int kind; |
| 11160 | void *data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11161 | int cased; |
| 11162 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11163 | if (PyUnicode_READY(self) == -1) |
| 11164 | return NULL; |
| 11165 | length = PyUnicode_GET_LENGTH(self); |
| 11166 | kind = PyUnicode_KIND(self); |
| 11167 | data = PyUnicode_DATA(self); |
| 11168 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11169 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11170 | if (length == 1) |
| 11171 | return PyBool_FromLong( |
| 11172 | Py_UNICODE_ISLOWER(PyUnicode_READ(kind, data, 0))); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11173 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11174 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11175 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11176 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11177 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11178 | cased = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11179 | for (i = 0; i < length; i++) { |
| 11180 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 11181 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11182 | if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) |
| 11183 | return PyBool_FromLong(0); |
| 11184 | else if (!cased && Py_UNICODE_ISLOWER(ch)) |
| 11185 | cased = 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11186 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11187 | return PyBool_FromLong(cased); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11188 | } |
| 11189 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11190 | PyDoc_STRVAR(isupper__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11191 | "S.isupper() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11192 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11193 | Return True if all cased characters in S are uppercase and there is\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11194 | at least one cased character in S, False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11195 | |
| 11196 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11197 | unicode_isupper(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11198 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11199 | Py_ssize_t i, length; |
| 11200 | int kind; |
| 11201 | void *data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11202 | int cased; |
| 11203 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11204 | if (PyUnicode_READY(self) == -1) |
| 11205 | return NULL; |
| 11206 | length = PyUnicode_GET_LENGTH(self); |
| 11207 | kind = PyUnicode_KIND(self); |
| 11208 | data = PyUnicode_DATA(self); |
| 11209 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11210 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11211 | if (length == 1) |
| 11212 | return PyBool_FromLong( |
| 11213 | Py_UNICODE_ISUPPER(PyUnicode_READ(kind, data, 0)) != 0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11214 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11215 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11216 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11217 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11218 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11219 | cased = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11220 | for (i = 0; i < length; i++) { |
| 11221 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 11222 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11223 | if (Py_UNICODE_ISLOWER(ch) || Py_UNICODE_ISTITLE(ch)) |
| 11224 | return PyBool_FromLong(0); |
| 11225 | else if (!cased && Py_UNICODE_ISUPPER(ch)) |
| 11226 | cased = 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11227 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11228 | return PyBool_FromLong(cased); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11229 | } |
| 11230 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11231 | PyDoc_STRVAR(istitle__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11232 | "S.istitle() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11233 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11234 | Return True if S is a titlecased string and there is at least one\n\ |
| 11235 | character in S, i.e. upper- and titlecase characters may only\n\ |
| 11236 | follow uncased characters and lowercase characters only cased ones.\n\ |
| 11237 | Return False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11238 | |
| 11239 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11240 | unicode_istitle(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11241 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11242 | Py_ssize_t i, length; |
| 11243 | int kind; |
| 11244 | void *data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11245 | int cased, previous_is_cased; |
| 11246 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11247 | if (PyUnicode_READY(self) == -1) |
| 11248 | return NULL; |
| 11249 | length = PyUnicode_GET_LENGTH(self); |
| 11250 | kind = PyUnicode_KIND(self); |
| 11251 | data = PyUnicode_DATA(self); |
| 11252 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11253 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11254 | if (length == 1) { |
| 11255 | Py_UCS4 ch = PyUnicode_READ(kind, data, 0); |
| 11256 | return PyBool_FromLong((Py_UNICODE_ISTITLE(ch) != 0) || |
| 11257 | (Py_UNICODE_ISUPPER(ch) != 0)); |
| 11258 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11259 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11260 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11261 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11262 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11263 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11264 | cased = 0; |
| 11265 | previous_is_cased = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11266 | for (i = 0; i < length; i++) { |
| 11267 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 11268 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11269 | if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) { |
| 11270 | if (previous_is_cased) |
| 11271 | return PyBool_FromLong(0); |
| 11272 | previous_is_cased = 1; |
| 11273 | cased = 1; |
| 11274 | } |
| 11275 | else if (Py_UNICODE_ISLOWER(ch)) { |
| 11276 | if (!previous_is_cased) |
| 11277 | return PyBool_FromLong(0); |
| 11278 | previous_is_cased = 1; |
| 11279 | cased = 1; |
| 11280 | } |
| 11281 | else |
| 11282 | previous_is_cased = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11283 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11284 | return PyBool_FromLong(cased); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11285 | } |
| 11286 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11287 | PyDoc_STRVAR(isspace__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11288 | "S.isspace() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11289 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11290 | Return True if all characters in S are whitespace\n\ |
| 11291 | and there is at least one character in S, False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11292 | |
| 11293 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11294 | unicode_isspace(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11295 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11296 | Py_ssize_t i, length; |
| 11297 | int kind; |
| 11298 | void *data; |
| 11299 | |
| 11300 | if (PyUnicode_READY(self) == -1) |
| 11301 | return NULL; |
| 11302 | length = PyUnicode_GET_LENGTH(self); |
| 11303 | kind = PyUnicode_KIND(self); |
| 11304 | data = PyUnicode_DATA(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11305 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11306 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11307 | if (length == 1) |
| 11308 | return PyBool_FromLong( |
| 11309 | Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, 0))); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11310 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11311 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11312 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11313 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11314 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11315 | for (i = 0; i < length; i++) { |
| 11316 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Ezio Melotti | 93e7afc | 2011-08-22 14:08:38 +0300 | [diff] [blame] | 11317 | if (!Py_UNICODE_ISSPACE(ch)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11318 | return PyBool_FromLong(0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11319 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11320 | return PyBool_FromLong(1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11321 | } |
| 11322 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11323 | PyDoc_STRVAR(isalpha__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11324 | "S.isalpha() -> bool\n\ |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11325 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11326 | Return True if all characters in S are alphabetic\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11327 | and there is at least one character in S, False otherwise."); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11328 | |
| 11329 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11330 | unicode_isalpha(PyObject *self) |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11331 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11332 | Py_ssize_t i, length; |
| 11333 | int kind; |
| 11334 | void *data; |
| 11335 | |
| 11336 | if (PyUnicode_READY(self) == -1) |
| 11337 | return NULL; |
| 11338 | length = PyUnicode_GET_LENGTH(self); |
| 11339 | kind = PyUnicode_KIND(self); |
| 11340 | data = PyUnicode_DATA(self); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11341 | |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11342 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11343 | if (length == 1) |
| 11344 | return PyBool_FromLong( |
| 11345 | Py_UNICODE_ISALPHA(PyUnicode_READ(kind, data, 0))); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11346 | |
| 11347 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11348 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11349 | return PyBool_FromLong(0); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11350 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11351 | for (i = 0; i < length; i++) { |
| 11352 | if (!Py_UNICODE_ISALPHA(PyUnicode_READ(kind, data, i))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11353 | return PyBool_FromLong(0); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11354 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11355 | return PyBool_FromLong(1); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11356 | } |
| 11357 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11358 | PyDoc_STRVAR(isalnum__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11359 | "S.isalnum() -> bool\n\ |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11360 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11361 | Return True if all characters in S are alphanumeric\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11362 | and there is at least one character in S, False otherwise."); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11363 | |
| 11364 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11365 | unicode_isalnum(PyObject *self) |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11366 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11367 | int kind; |
| 11368 | void *data; |
| 11369 | Py_ssize_t len, i; |
| 11370 | |
| 11371 | if (PyUnicode_READY(self) == -1) |
| 11372 | return NULL; |
| 11373 | |
| 11374 | kind = PyUnicode_KIND(self); |
| 11375 | data = PyUnicode_DATA(self); |
| 11376 | len = PyUnicode_GET_LENGTH(self); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11377 | |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11378 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11379 | if (len == 1) { |
| 11380 | const Py_UCS4 ch = PyUnicode_READ(kind, data, 0); |
| 11381 | return PyBool_FromLong(Py_UNICODE_ISALNUM(ch)); |
| 11382 | } |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11383 | |
| 11384 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11385 | if (len == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11386 | return PyBool_FromLong(0); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11387 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11388 | for (i = 0; i < len; i++) { |
| 11389 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Ezio Melotti | 93e7afc | 2011-08-22 14:08:38 +0300 | [diff] [blame] | 11390 | if (!Py_UNICODE_ISALNUM(ch)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11391 | return PyBool_FromLong(0); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11392 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11393 | return PyBool_FromLong(1); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11394 | } |
| 11395 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11396 | PyDoc_STRVAR(isdecimal__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11397 | "S.isdecimal() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11398 | \n\ |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11399 | Return True if there are only decimal characters in S,\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11400 | False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11401 | |
| 11402 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11403 | unicode_isdecimal(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11404 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11405 | Py_ssize_t i, length; |
| 11406 | int kind; |
| 11407 | void *data; |
| 11408 | |
| 11409 | if (PyUnicode_READY(self) == -1) |
| 11410 | return NULL; |
| 11411 | length = PyUnicode_GET_LENGTH(self); |
| 11412 | kind = PyUnicode_KIND(self); |
| 11413 | data = PyUnicode_DATA(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11414 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11415 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11416 | if (length == 1) |
| 11417 | return PyBool_FromLong( |
| 11418 | Py_UNICODE_ISDECIMAL(PyUnicode_READ(kind, data, 0))); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11419 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11420 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11421 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11422 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11423 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11424 | for (i = 0; i < length; i++) { |
| 11425 | if (!Py_UNICODE_ISDECIMAL(PyUnicode_READ(kind, data, i))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11426 | return PyBool_FromLong(0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11427 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11428 | return PyBool_FromLong(1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11429 | } |
| 11430 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11431 | PyDoc_STRVAR(isdigit__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11432 | "S.isdigit() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11433 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11434 | Return True if all characters in S are digits\n\ |
| 11435 | and there is at least one character in S, False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11436 | |
| 11437 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11438 | unicode_isdigit(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11439 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11440 | Py_ssize_t i, length; |
| 11441 | int kind; |
| 11442 | void *data; |
| 11443 | |
| 11444 | if (PyUnicode_READY(self) == -1) |
| 11445 | return NULL; |
| 11446 | length = PyUnicode_GET_LENGTH(self); |
| 11447 | kind = PyUnicode_KIND(self); |
| 11448 | data = PyUnicode_DATA(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11449 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11450 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11451 | if (length == 1) { |
| 11452 | const Py_UCS4 ch = PyUnicode_READ(kind, data, 0); |
| 11453 | return PyBool_FromLong(Py_UNICODE_ISDIGIT(ch)); |
| 11454 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11455 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11456 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11457 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11458 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11459 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11460 | for (i = 0; i < length; i++) { |
| 11461 | if (!Py_UNICODE_ISDIGIT(PyUnicode_READ(kind, data, i))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11462 | return PyBool_FromLong(0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11463 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11464 | return PyBool_FromLong(1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11465 | } |
| 11466 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11467 | PyDoc_STRVAR(isnumeric__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11468 | "S.isnumeric() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11469 | \n\ |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11470 | Return True if there are only numeric characters in S,\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11471 | False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11472 | |
| 11473 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11474 | unicode_isnumeric(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11475 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11476 | Py_ssize_t i, length; |
| 11477 | int kind; |
| 11478 | void *data; |
| 11479 | |
| 11480 | if (PyUnicode_READY(self) == -1) |
| 11481 | return NULL; |
| 11482 | length = PyUnicode_GET_LENGTH(self); |
| 11483 | kind = PyUnicode_KIND(self); |
| 11484 | data = PyUnicode_DATA(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11485 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11486 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11487 | if (length == 1) |
| 11488 | return PyBool_FromLong( |
| 11489 | Py_UNICODE_ISNUMERIC(PyUnicode_READ(kind, data, 0))); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11490 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11491 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11492 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11493 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11494 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11495 | for (i = 0; i < length; i++) { |
| 11496 | if (!Py_UNICODE_ISNUMERIC(PyUnicode_READ(kind, data, i))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11497 | return PyBool_FromLong(0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11498 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11499 | return PyBool_FromLong(1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11500 | } |
| 11501 | |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11502 | int |
| 11503 | PyUnicode_IsIdentifier(PyObject *self) |
| 11504 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11505 | int kind; |
| 11506 | void *data; |
| 11507 | Py_ssize_t i; |
Ezio Melotti | 93e7afc | 2011-08-22 14:08:38 +0300 | [diff] [blame] | 11508 | Py_UCS4 first; |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11509 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11510 | if (PyUnicode_READY(self) == -1) { |
| 11511 | Py_FatalError("identifier not ready"); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11512 | return 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11513 | } |
| 11514 | |
| 11515 | /* Special case for empty strings */ |
| 11516 | if (PyUnicode_GET_LENGTH(self) == 0) |
| 11517 | return 0; |
| 11518 | kind = PyUnicode_KIND(self); |
| 11519 | data = PyUnicode_DATA(self); |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11520 | |
| 11521 | /* PEP 3131 says that the first character must be in |
| 11522 | XID_Start and subsequent characters in XID_Continue, |
| 11523 | and for the ASCII range, the 2.x rules apply (i.e |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11524 | start with letters and underscore, continue with |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11525 | letters, digits, underscore). However, given the current |
| 11526 | definition of XID_Start and XID_Continue, it is sufficient |
| 11527 | to check just for these, except that _ must be allowed |
| 11528 | as starting an identifier. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11529 | first = PyUnicode_READ(kind, data, 0); |
Benjamin Peterson | f413b80 | 2011-08-12 22:17:18 -0500 | [diff] [blame] | 11530 | if (!_PyUnicode_IsXidStart(first) && first != 0x5F /* LOW LINE */) |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11531 | return 0; |
| 11532 | |
Benjamin Peterson | 9c6e6a0 | 2011-09-28 08:09:05 -0400 | [diff] [blame] | 11533 | for (i = 1; i < PyUnicode_GET_LENGTH(self); i++) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11534 | if (!_PyUnicode_IsXidContinue(PyUnicode_READ(kind, data, i))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11535 | return 0; |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11536 | return 1; |
| 11537 | } |
| 11538 | |
| 11539 | PyDoc_STRVAR(isidentifier__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11540 | "S.isidentifier() -> bool\n\ |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11541 | \n\ |
| 11542 | Return True if S is a valid identifier according\n\ |
| 11543 | to the language definition."); |
| 11544 | |
| 11545 | static PyObject* |
| 11546 | unicode_isidentifier(PyObject *self) |
| 11547 | { |
| 11548 | return PyBool_FromLong(PyUnicode_IsIdentifier(self)); |
| 11549 | } |
| 11550 | |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11551 | PyDoc_STRVAR(isprintable__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11552 | "S.isprintable() -> bool\n\ |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11553 | \n\ |
| 11554 | Return True if all characters in S are considered\n\ |
| 11555 | printable in repr() or S is empty, False otherwise."); |
| 11556 | |
| 11557 | static PyObject* |
| 11558 | unicode_isprintable(PyObject *self) |
| 11559 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11560 | Py_ssize_t i, length; |
| 11561 | int kind; |
| 11562 | void *data; |
| 11563 | |
| 11564 | if (PyUnicode_READY(self) == -1) |
| 11565 | return NULL; |
| 11566 | length = PyUnicode_GET_LENGTH(self); |
| 11567 | kind = PyUnicode_KIND(self); |
| 11568 | data = PyUnicode_DATA(self); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11569 | |
| 11570 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11571 | if (length == 1) |
| 11572 | return PyBool_FromLong( |
| 11573 | Py_UNICODE_ISPRINTABLE(PyUnicode_READ(kind, data, 0))); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11574 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11575 | for (i = 0; i < length; i++) { |
| 11576 | if (!Py_UNICODE_ISPRINTABLE(PyUnicode_READ(kind, data, i))) { |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11577 | Py_RETURN_FALSE; |
| 11578 | } |
| 11579 | } |
| 11580 | Py_RETURN_TRUE; |
| 11581 | } |
| 11582 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11583 | PyDoc_STRVAR(join__doc__, |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 11584 | "S.join(iterable) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11585 | \n\ |
| 11586 | Return a string which is the concatenation of the strings in the\n\ |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 11587 | iterable. The separator between elements is S."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11588 | |
| 11589 | static PyObject* |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 11590 | unicode_join(PyObject *self, PyObject *data) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11591 | { |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 11592 | return PyUnicode_Join(self, data); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11593 | } |
| 11594 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 11595 | static Py_ssize_t |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11596 | unicode_length(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11597 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11598 | if (PyUnicode_READY(self) == -1) |
| 11599 | return -1; |
| 11600 | return PyUnicode_GET_LENGTH(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11601 | } |
| 11602 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11603 | PyDoc_STRVAR(ljust__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11604 | "S.ljust(width[, fillchar]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11605 | \n\ |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 11606 | Return S left-justified in a Unicode string of length width. Padding is\n\ |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 11607 | done using the specified fill character (default is a space)."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11608 | |
| 11609 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 11610 | unicode_ljust(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11611 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 11612 | Py_ssize_t width; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11613 | Py_UCS4 fillchar = ' '; |
| 11614 | |
| 11615 | if (PyUnicode_READY(self) == -1) |
| 11616 | return NULL; |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 11617 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 11618 | if (!PyArg_ParseTuple(args, "n|O&:ljust", &width, convert_uc, &fillchar)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11619 | return NULL; |
| 11620 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11621 | if (_PyUnicode_LENGTH(self) >= width && PyUnicode_CheckExact(self)) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11622 | Py_INCREF(self); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11623 | return self; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11624 | } |
| 11625 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11626 | return pad(self, 0, width - _PyUnicode_LENGTH(self), fillchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11627 | } |
| 11628 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11629 | PyDoc_STRVAR(lower__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11630 | "S.lower() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11631 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11632 | Return a copy of the string S converted to lowercase."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11633 | |
| 11634 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 11635 | unicode_lower(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11636 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11637 | return fixup(self, fixlower); |
| 11638 | } |
| 11639 | |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11640 | #define LEFTSTRIP 0 |
| 11641 | #define RIGHTSTRIP 1 |
| 11642 | #define BOTHSTRIP 2 |
| 11643 | |
| 11644 | /* Arrays indexed by above */ |
| 11645 | static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"}; |
| 11646 | |
| 11647 | #define STRIPNAME(i) (stripformat[i]+3) |
| 11648 | |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11649 | /* externally visible for str.strip(unicode) */ |
| 11650 | PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11651 | _PyUnicode_XStrip(PyObject *self, int striptype, PyObject *sepobj) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11652 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11653 | void *data; |
| 11654 | int kind; |
| 11655 | Py_ssize_t i, j, len; |
| 11656 | BLOOM_MASK sepmask; |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11657 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11658 | if (PyUnicode_READY(self) == -1 || PyUnicode_READY(sepobj) == -1) |
| 11659 | return NULL; |
| 11660 | |
| 11661 | kind = PyUnicode_KIND(self); |
| 11662 | data = PyUnicode_DATA(self); |
| 11663 | len = PyUnicode_GET_LENGTH(self); |
| 11664 | sepmask = make_bloom_mask(PyUnicode_KIND(sepobj), |
| 11665 | PyUnicode_DATA(sepobj), |
| 11666 | PyUnicode_GET_LENGTH(sepobj)); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11667 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11668 | i = 0; |
| 11669 | if (striptype != RIGHTSTRIP) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11670 | while (i < len && |
| 11671 | BLOOM_MEMBER(sepmask, PyUnicode_READ(kind, data, i), sepobj)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11672 | i++; |
| 11673 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11674 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11675 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11676 | j = len; |
| 11677 | if (striptype != LEFTSTRIP) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11678 | do { |
| 11679 | j--; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11680 | } while (j >= i && |
| 11681 | BLOOM_MEMBER(sepmask, PyUnicode_READ(kind, data, j), sepobj)); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11682 | j++; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11683 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11684 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11685 | return PyUnicode_Substring(self, i, j); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11686 | } |
| 11687 | |
| 11688 | PyObject* |
| 11689 | PyUnicode_Substring(PyObject *self, Py_ssize_t start, Py_ssize_t end) |
| 11690 | { |
| 11691 | unsigned char *data; |
| 11692 | int kind; |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 11693 | Py_ssize_t length; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11694 | |
Victor Stinner | de636f3 | 2011-10-01 03:55:54 +0200 | [diff] [blame] | 11695 | if (PyUnicode_READY(self) == -1) |
| 11696 | return NULL; |
| 11697 | |
| 11698 | end = Py_MIN(end, PyUnicode_GET_LENGTH(self)); |
| 11699 | |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 11700 | if (start == 0 && end == PyUnicode_GET_LENGTH(self)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11701 | { |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 11702 | if (PyUnicode_CheckExact(self)) { |
| 11703 | Py_INCREF(self); |
| 11704 | return self; |
| 11705 | } |
| 11706 | else |
| 11707 | return PyUnicode_Copy(self); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11708 | } |
| 11709 | |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 11710 | length = end - start; |
| 11711 | if (length == 1) |
Victor Stinner | 2fe5ced | 2011-10-02 00:25:40 +0200 | [diff] [blame] | 11712 | return unicode_getitem(self, start); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11713 | |
Victor Stinner | de636f3 | 2011-10-01 03:55:54 +0200 | [diff] [blame] | 11714 | if (start < 0 || end < 0) { |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 11715 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 11716 | return NULL; |
| 11717 | } |
| 11718 | |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 11719 | if (PyUnicode_IS_ASCII(self)) { |
| 11720 | kind = PyUnicode_KIND(self); |
| 11721 | data = PyUnicode_1BYTE_DATA(self); |
| 11722 | return unicode_fromascii(data + start, length); |
| 11723 | } |
| 11724 | else { |
| 11725 | kind = PyUnicode_KIND(self); |
| 11726 | data = PyUnicode_1BYTE_DATA(self); |
| 11727 | return PyUnicode_FromKindAndData(kind, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 11728 | data + kind * start, |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 11729 | length); |
| 11730 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11731 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11732 | |
| 11733 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11734 | do_strip(PyObject *self, int striptype) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11735 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11736 | int kind; |
| 11737 | void *data; |
| 11738 | Py_ssize_t len, i, j; |
| 11739 | |
| 11740 | if (PyUnicode_READY(self) == -1) |
| 11741 | return NULL; |
| 11742 | |
| 11743 | kind = PyUnicode_KIND(self); |
| 11744 | data = PyUnicode_DATA(self); |
| 11745 | len = PyUnicode_GET_LENGTH(self); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11746 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11747 | i = 0; |
| 11748 | if (striptype != RIGHTSTRIP) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11749 | while (i < len && Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, i))) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11750 | i++; |
| 11751 | } |
| 11752 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11753 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11754 | j = len; |
| 11755 | if (striptype != LEFTSTRIP) { |
| 11756 | do { |
| 11757 | j--; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11758 | } while (j >= i && Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, j))); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11759 | j++; |
| 11760 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11761 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11762 | return PyUnicode_Substring(self, i, j); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11763 | } |
| 11764 | |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11765 | |
| 11766 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11767 | do_argstrip(PyObject *self, int striptype, PyObject *args) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11768 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11769 | PyObject *sep = NULL; |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11770 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11771 | if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep)) |
| 11772 | return NULL; |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11773 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11774 | if (sep != NULL && sep != Py_None) { |
| 11775 | if (PyUnicode_Check(sep)) |
| 11776 | return _PyUnicode_XStrip(self, striptype, sep); |
| 11777 | else { |
| 11778 | PyErr_Format(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11779 | "%s arg must be None or str", |
| 11780 | STRIPNAME(striptype)); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11781 | return NULL; |
| 11782 | } |
| 11783 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11784 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11785 | return do_strip(self, striptype); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11786 | } |
| 11787 | |
| 11788 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11789 | PyDoc_STRVAR(strip__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11790 | "S.strip([chars]) -> str\n\ |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11791 | \n\ |
| 11792 | Return a copy of the string S with leading and trailing\n\ |
| 11793 | whitespace removed.\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 11794 | If chars is given and not None, remove characters in chars instead."); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11795 | |
| 11796 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11797 | unicode_strip(PyObject *self, PyObject *args) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11798 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11799 | if (PyTuple_GET_SIZE(args) == 0) |
| 11800 | return do_strip(self, BOTHSTRIP); /* Common case */ |
| 11801 | else |
| 11802 | return do_argstrip(self, BOTHSTRIP, args); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11803 | } |
| 11804 | |
| 11805 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11806 | PyDoc_STRVAR(lstrip__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11807 | "S.lstrip([chars]) -> str\n\ |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11808 | \n\ |
| 11809 | Return a copy of the string S with leading whitespace removed.\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 11810 | If chars is given and not None, remove characters in chars instead."); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11811 | |
| 11812 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11813 | unicode_lstrip(PyObject *self, PyObject *args) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11814 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11815 | if (PyTuple_GET_SIZE(args) == 0) |
| 11816 | return do_strip(self, LEFTSTRIP); /* Common case */ |
| 11817 | else |
| 11818 | return do_argstrip(self, LEFTSTRIP, args); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11819 | } |
| 11820 | |
| 11821 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11822 | PyDoc_STRVAR(rstrip__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11823 | "S.rstrip([chars]) -> str\n\ |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11824 | \n\ |
| 11825 | Return a copy of the string S with trailing whitespace removed.\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 11826 | If chars is given and not None, remove characters in chars instead."); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11827 | |
| 11828 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11829 | unicode_rstrip(PyObject *self, PyObject *args) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11830 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11831 | if (PyTuple_GET_SIZE(args) == 0) |
| 11832 | return do_strip(self, RIGHTSTRIP); /* Common case */ |
| 11833 | else |
| 11834 | return do_argstrip(self, RIGHTSTRIP, args); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11835 | } |
| 11836 | |
| 11837 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11838 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11839 | unicode_repeat(PyObject *str, Py_ssize_t len) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11840 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11841 | PyObject *u; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11842 | Py_ssize_t nchars, n; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11843 | |
Georg Brandl | 222de0f | 2009-04-12 12:01:50 +0000 | [diff] [blame] | 11844 | if (len < 1) { |
| 11845 | Py_INCREF(unicode_empty); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 11846 | return unicode_empty; |
Georg Brandl | 222de0f | 2009-04-12 12:01:50 +0000 | [diff] [blame] | 11847 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11848 | |
Tim Peters | 7a29bd5 | 2001-09-12 03:03:31 +0000 | [diff] [blame] | 11849 | if (len == 1 && PyUnicode_CheckExact(str)) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11850 | /* no repeat, return original string */ |
| 11851 | Py_INCREF(str); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11852 | return str; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11853 | } |
Tim Peters | 8f42246 | 2000-09-09 06:13:41 +0000 | [diff] [blame] | 11854 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11855 | if (PyUnicode_READY(str) == -1) |
| 11856 | return NULL; |
| 11857 | |
Victor Stinner | c759f3e | 2011-10-01 03:09:58 +0200 | [diff] [blame] | 11858 | if (PyUnicode_GET_LENGTH(str) > PY_SSIZE_T_MAX / len) { |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11859 | PyErr_SetString(PyExc_OverflowError, |
| 11860 | "repeated string is too long"); |
| 11861 | return NULL; |
| 11862 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11863 | nchars = len * PyUnicode_GET_LENGTH(str); |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11864 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11865 | u = PyUnicode_New(nchars, PyUnicode_MAX_CHAR_VALUE(str)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11866 | if (!u) |
| 11867 | return NULL; |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11868 | assert(PyUnicode_KIND(u) == PyUnicode_KIND(str)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11869 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11870 | if (PyUnicode_GET_LENGTH(str) == 1) { |
| 11871 | const int kind = PyUnicode_KIND(str); |
| 11872 | const Py_UCS4 fill_char = PyUnicode_READ(kind, PyUnicode_DATA(str), 0); |
| 11873 | void *to = PyUnicode_DATA(u); |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11874 | if (kind == PyUnicode_1BYTE_KIND) |
| 11875 | memset(to, (unsigned char)fill_char, len); |
| 11876 | else { |
| 11877 | for (n = 0; n < len; ++n) |
| 11878 | PyUnicode_WRITE(kind, to, n, fill_char); |
| 11879 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11880 | } |
| 11881 | else { |
| 11882 | /* number of characters copied this far */ |
| 11883 | Py_ssize_t done = PyUnicode_GET_LENGTH(str); |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 11884 | const Py_ssize_t char_size = PyUnicode_KIND(str); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11885 | char *to = (char *) PyUnicode_DATA(u); |
| 11886 | Py_MEMCPY(to, PyUnicode_DATA(str), |
| 11887 | PyUnicode_GET_LENGTH(str) * char_size); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11888 | while (done < nchars) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11889 | n = (done <= nchars-done) ? done : nchars-done; |
| 11890 | Py_MEMCPY(to + (done * char_size), to, n * char_size); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11891 | done += n; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11892 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11893 | } |
| 11894 | |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 11895 | assert(_PyUnicode_CheckConsistency(u, 1)); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11896 | return u; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11897 | } |
| 11898 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 11899 | PyObject * |
| 11900 | PyUnicode_Replace(PyObject *obj, |
| 11901 | PyObject *subobj, |
| 11902 | PyObject *replobj, |
| 11903 | Py_ssize_t maxcount) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11904 | { |
| 11905 | PyObject *self; |
| 11906 | PyObject *str1; |
| 11907 | PyObject *str2; |
| 11908 | PyObject *result; |
| 11909 | |
| 11910 | self = PyUnicode_FromObject(obj); |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 11911 | if (self == NULL || PyUnicode_READY(self) == -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11912 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11913 | str1 = PyUnicode_FromObject(subobj); |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 11914 | if (str1 == NULL || PyUnicode_READY(str1) == -1) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11915 | Py_DECREF(self); |
| 11916 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11917 | } |
| 11918 | str2 = PyUnicode_FromObject(replobj); |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 11919 | if (str2 == NULL || PyUnicode_READY(str2)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11920 | Py_DECREF(self); |
| 11921 | Py_DECREF(str1); |
| 11922 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11923 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11924 | result = replace(self, str1, str2, maxcount); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11925 | Py_DECREF(self); |
| 11926 | Py_DECREF(str1); |
| 11927 | Py_DECREF(str2); |
| 11928 | return result; |
| 11929 | } |
| 11930 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11931 | PyDoc_STRVAR(replace__doc__, |
Ezio Melotti | c1897e7 | 2010-06-26 18:50:39 +0000 | [diff] [blame] | 11932 | "S.replace(old, new[, count]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11933 | \n\ |
| 11934 | Return a copy of S with all occurrences of substring\n\ |
Georg Brandl | f08a9dd | 2008-06-10 16:57:31 +0000 | [diff] [blame] | 11935 | old replaced by new. If the optional argument count is\n\ |
| 11936 | given, only the first count occurrences are replaced."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11937 | |
| 11938 | static PyObject* |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11939 | unicode_replace(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11940 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11941 | PyObject *str1; |
| 11942 | PyObject *str2; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 11943 | Py_ssize_t maxcount = -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11944 | PyObject *result; |
| 11945 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 11946 | if (!PyArg_ParseTuple(args, "OO|n:replace", &str1, &str2, &maxcount)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11947 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11948 | if (!PyUnicode_READY(self) == -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11949 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11950 | str1 = PyUnicode_FromObject(str1); |
| 11951 | if (str1 == NULL || PyUnicode_READY(str1) == -1) |
| 11952 | return NULL; |
| 11953 | str2 = PyUnicode_FromObject(str2); |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 11954 | if (str2 == NULL || PyUnicode_READY(str2) == -1) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11955 | Py_DECREF(str1); |
| 11956 | return NULL; |
Walter Dörwald | f6b56ae | 2003-02-09 23:42:56 +0000 | [diff] [blame] | 11957 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11958 | |
| 11959 | result = replace(self, str1, str2, maxcount); |
| 11960 | |
| 11961 | Py_DECREF(str1); |
| 11962 | Py_DECREF(str2); |
| 11963 | return result; |
| 11964 | } |
| 11965 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 11966 | static PyObject * |
| 11967 | unicode_repr(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11968 | { |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 11969 | PyObject *repr; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11970 | Py_ssize_t isize; |
| 11971 | Py_ssize_t osize, squote, dquote, i, o; |
| 11972 | Py_UCS4 max, quote; |
| 11973 | int ikind, okind; |
| 11974 | void *idata, *odata; |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 11975 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11976 | if (PyUnicode_READY(unicode) == -1) |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 11977 | return NULL; |
| 11978 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11979 | isize = PyUnicode_GET_LENGTH(unicode); |
| 11980 | idata = PyUnicode_DATA(unicode); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 11981 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11982 | /* Compute length of output, quote characters, and |
| 11983 | maximum character */ |
| 11984 | osize = 2; /* quotes */ |
| 11985 | max = 127; |
| 11986 | squote = dquote = 0; |
| 11987 | ikind = PyUnicode_KIND(unicode); |
| 11988 | for (i = 0; i < isize; i++) { |
| 11989 | Py_UCS4 ch = PyUnicode_READ(ikind, idata, i); |
| 11990 | switch (ch) { |
| 11991 | case '\'': squote++; osize++; break; |
| 11992 | case '"': dquote++; osize++; break; |
| 11993 | case '\\': case '\t': case '\r': case '\n': |
| 11994 | osize += 2; break; |
| 11995 | default: |
| 11996 | /* Fast-path ASCII */ |
| 11997 | if (ch < ' ' || ch == 0x7f) |
| 11998 | osize += 4; /* \xHH */ |
| 11999 | else if (ch < 0x7f) |
| 12000 | osize++; |
| 12001 | else if (Py_UNICODE_ISPRINTABLE(ch)) { |
| 12002 | osize++; |
| 12003 | max = ch > max ? ch : max; |
| 12004 | } |
| 12005 | else if (ch < 0x100) |
| 12006 | osize += 4; /* \xHH */ |
| 12007 | else if (ch < 0x10000) |
| 12008 | osize += 6; /* \uHHHH */ |
| 12009 | else |
| 12010 | osize += 10; /* \uHHHHHHHH */ |
| 12011 | } |
| 12012 | } |
| 12013 | |
| 12014 | quote = '\''; |
| 12015 | if (squote) { |
| 12016 | if (dquote) |
| 12017 | /* Both squote and dquote present. Use squote, |
| 12018 | and escape them */ |
| 12019 | osize += squote; |
| 12020 | else |
| 12021 | quote = '"'; |
| 12022 | } |
| 12023 | |
| 12024 | repr = PyUnicode_New(osize, max); |
| 12025 | if (repr == NULL) |
| 12026 | return NULL; |
| 12027 | okind = PyUnicode_KIND(repr); |
| 12028 | odata = PyUnicode_DATA(repr); |
| 12029 | |
| 12030 | PyUnicode_WRITE(okind, odata, 0, quote); |
| 12031 | PyUnicode_WRITE(okind, odata, osize-1, quote); |
| 12032 | |
| 12033 | for (i = 0, o = 1; i < isize; i++) { |
| 12034 | Py_UCS4 ch = PyUnicode_READ(ikind, idata, i); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12035 | |
| 12036 | /* Escape quotes and backslashes */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12037 | if ((ch == quote) || (ch == '\\')) { |
| 12038 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12039 | PyUnicode_WRITE(okind, odata, o++, ch); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12040 | continue; |
| 12041 | } |
| 12042 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12043 | /* Map special whitespace to '\t', \n', '\r' */ |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12044 | if (ch == '\t') { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12045 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12046 | PyUnicode_WRITE(okind, odata, o++, 't'); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12047 | } |
| 12048 | else if (ch == '\n') { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12049 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12050 | PyUnicode_WRITE(okind, odata, o++, 'n'); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12051 | } |
| 12052 | else if (ch == '\r') { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12053 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12054 | PyUnicode_WRITE(okind, odata, o++, 'r'); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12055 | } |
| 12056 | |
| 12057 | /* Map non-printable US ASCII to '\xhh' */ |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12058 | else if (ch < ' ' || ch == 0x7F) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12059 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12060 | PyUnicode_WRITE(okind, odata, o++, 'x'); |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 12061 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0x000F]); |
| 12062 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0x000F]); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12063 | } |
| 12064 | |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12065 | /* Copy ASCII characters as-is */ |
| 12066 | else if (ch < 0x7F) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12067 | PyUnicode_WRITE(okind, odata, o++, ch); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12068 | } |
| 12069 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12070 | /* Non-ASCII characters */ |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12071 | else { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12072 | /* Map Unicode whitespace and control characters |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12073 | (categories Z* and C* except ASCII space) |
| 12074 | */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12075 | if (!Py_UNICODE_ISPRINTABLE(ch)) { |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12076 | /* Map 8-bit characters to '\xhh' */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12077 | if (ch <= 0xff) { |
| 12078 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12079 | PyUnicode_WRITE(okind, odata, o++, 'x'); |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 12080 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0x000F]); |
| 12081 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0x000F]); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12082 | } |
| 12083 | /* Map 21-bit characters to '\U00xxxxxx' */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12084 | else if (ch >= 0x10000) { |
| 12085 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12086 | PyUnicode_WRITE(okind, odata, o++, 'U'); |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 12087 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 28) & 0xF]); |
| 12088 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 24) & 0xF]); |
| 12089 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 20) & 0xF]); |
| 12090 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 16) & 0xF]); |
| 12091 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 12) & 0xF]); |
| 12092 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 8) & 0xF]); |
| 12093 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0xF]); |
| 12094 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0xF]); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12095 | } |
| 12096 | /* Map 16-bit characters to '\uxxxx' */ |
| 12097 | else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12098 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12099 | PyUnicode_WRITE(okind, odata, o++, 'u'); |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 12100 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 12) & 0xF]); |
| 12101 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 8) & 0xF]); |
| 12102 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0xF]); |
| 12103 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0xF]); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12104 | } |
| 12105 | } |
| 12106 | /* Copy characters as-is */ |
| 12107 | else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12108 | PyUnicode_WRITE(okind, odata, o++, ch); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12109 | } |
| 12110 | } |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12111 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12112 | /* Closing quote already added at the beginning */ |
Victor Stinner | 05d1189 | 2011-10-06 01:13:58 +0200 | [diff] [blame] | 12113 | assert(_PyUnicode_CheckConsistency(repr, 1)); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12114 | return repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12115 | } |
| 12116 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12117 | PyDoc_STRVAR(rfind__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12118 | "S.rfind(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12119 | \n\ |
| 12120 | Return the highest index in S where substring sub is found,\n\ |
Senthil Kumaran | 53516a8 | 2011-07-27 23:33:54 +0800 | [diff] [blame] | 12121 | such that sub is contained within S[start:end]. Optional\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12122 | arguments start and end are interpreted as in slice notation.\n\ |
| 12123 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12124 | Return -1 on failure."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12125 | |
| 12126 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12127 | unicode_rfind(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12128 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12129 | PyObject *substring; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 12130 | Py_ssize_t start; |
| 12131 | Py_ssize_t end; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12132 | Py_ssize_t result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12133 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 12134 | if (!stringlib_parse_args_finds_unicode("rfind", args, &substring, |
| 12135 | &start, &end)) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12136 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12137 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12138 | if (PyUnicode_READY(self) == -1) |
| 12139 | return NULL; |
| 12140 | if (PyUnicode_READY(substring) == -1) |
| 12141 | return NULL; |
| 12142 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12143 | result = any_find_slice(-1, self, substring, start, end); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12144 | |
| 12145 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12146 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12147 | if (result == -2) |
| 12148 | return NULL; |
| 12149 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 12150 | return PyLong_FromSsize_t(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12151 | } |
| 12152 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12153 | PyDoc_STRVAR(rindex__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12154 | "S.rindex(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12155 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12156 | Like S.rfind() but raise ValueError when the substring is not found."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12157 | |
| 12158 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12159 | unicode_rindex(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12160 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12161 | PyObject *substring; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 12162 | Py_ssize_t start; |
| 12163 | Py_ssize_t end; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12164 | Py_ssize_t result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12165 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 12166 | if (!stringlib_parse_args_finds_unicode("rindex", args, &substring, |
| 12167 | &start, &end)) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12168 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12169 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12170 | if (PyUnicode_READY(self) == -1) |
| 12171 | return NULL; |
| 12172 | if (PyUnicode_READY(substring) == -1) |
| 12173 | return NULL; |
| 12174 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12175 | result = any_find_slice(-1, self, substring, start, end); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12176 | |
| 12177 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12178 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12179 | if (result == -2) |
| 12180 | return NULL; |
| 12181 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12182 | if (result < 0) { |
| 12183 | PyErr_SetString(PyExc_ValueError, "substring not found"); |
| 12184 | return NULL; |
| 12185 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12186 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 12187 | return PyLong_FromSsize_t(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12188 | } |
| 12189 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12190 | PyDoc_STRVAR(rjust__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12191 | "S.rjust(width[, fillchar]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12192 | \n\ |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 12193 | Return S right-justified in a string of length width. Padding is\n\ |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 12194 | done using the specified fill character (default is a space)."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12195 | |
| 12196 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12197 | unicode_rjust(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12198 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 12199 | Py_ssize_t width; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12200 | Py_UCS4 fillchar = ' '; |
| 12201 | |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 12202 | if (!PyArg_ParseTuple(args, "n|O&:rjust", &width, convert_uc, &fillchar)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12203 | return NULL; |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 12204 | |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 12205 | if (PyUnicode_READY(self) == -1) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12206 | return NULL; |
| 12207 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12208 | if (_PyUnicode_LENGTH(self) >= width && PyUnicode_CheckExact(self)) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12209 | Py_INCREF(self); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12210 | return self; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12211 | } |
| 12212 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12213 | return pad(self, width - _PyUnicode_LENGTH(self), 0, fillchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12214 | } |
| 12215 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 12216 | PyObject * |
| 12217 | PyUnicode_Split(PyObject *s, PyObject *sep, Py_ssize_t maxsplit) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12218 | { |
| 12219 | PyObject *result; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 12220 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12221 | s = PyUnicode_FromObject(s); |
| 12222 | if (s == NULL) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12223 | return NULL; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12224 | if (sep != NULL) { |
| 12225 | sep = PyUnicode_FromObject(sep); |
| 12226 | if (sep == NULL) { |
| 12227 | Py_DECREF(s); |
| 12228 | return NULL; |
| 12229 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12230 | } |
| 12231 | |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12232 | result = split(s, sep, maxsplit); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12233 | |
| 12234 | Py_DECREF(s); |
| 12235 | Py_XDECREF(sep); |
| 12236 | return result; |
| 12237 | } |
| 12238 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12239 | PyDoc_STRVAR(split__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12240 | "S.split([sep[, maxsplit]]) -> list of strings\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12241 | \n\ |
| 12242 | Return a list of the words in S, using sep as the\n\ |
| 12243 | delimiter string. If maxsplit is given, at most maxsplit\n\ |
Alexandre Vassalotti | 5f8ced2 | 2008-05-16 00:03:33 +0000 | [diff] [blame] | 12244 | splits are done. If sep is not specified or is None, any\n\ |
Alexandre Vassalotti | 8ae3e05 | 2008-05-16 00:41:41 +0000 | [diff] [blame] | 12245 | whitespace string is a separator and empty strings are\n\ |
| 12246 | removed from the result."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12247 | |
| 12248 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12249 | unicode_split(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12250 | { |
| 12251 | PyObject *substring = Py_None; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12252 | Py_ssize_t maxcount = -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12253 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12254 | if (!PyArg_ParseTuple(args, "|On:split", &substring, &maxcount)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12255 | return NULL; |
| 12256 | |
| 12257 | if (substring == Py_None) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12258 | return split(self, NULL, maxcount); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12259 | else if (PyUnicode_Check(substring)) |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12260 | return split(self, substring, maxcount); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12261 | else |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12262 | return PyUnicode_Split(self, substring, maxcount); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12263 | } |
| 12264 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12265 | PyObject * |
| 12266 | PyUnicode_Partition(PyObject *str_in, PyObject *sep_in) |
| 12267 | { |
| 12268 | PyObject* str_obj; |
| 12269 | PyObject* sep_obj; |
| 12270 | PyObject* out; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12271 | int kind1, kind2, kind; |
| 12272 | void *buf1 = NULL, *buf2 = NULL; |
| 12273 | Py_ssize_t len1, len2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12274 | |
| 12275 | str_obj = PyUnicode_FromObject(str_in); |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 12276 | if (!str_obj || PyUnicode_READY(str_obj) == -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12277 | return NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12278 | sep_obj = PyUnicode_FromObject(sep_in); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12279 | if (!sep_obj || PyUnicode_READY(sep_obj) == -1) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12280 | Py_DECREF(str_obj); |
| 12281 | return NULL; |
| 12282 | } |
| 12283 | |
Victor Stinner | 14f8f02 | 2011-10-05 20:58:25 +0200 | [diff] [blame] | 12284 | kind1 = PyUnicode_KIND(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12285 | kind2 = PyUnicode_KIND(sep_obj); |
Victor Stinner | 14f8f02 | 2011-10-05 20:58:25 +0200 | [diff] [blame] | 12286 | kind = Py_MAX(kind1, kind2); |
| 12287 | buf1 = PyUnicode_DATA(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12288 | if (kind1 != kind) |
Victor Stinner | 14f8f02 | 2011-10-05 20:58:25 +0200 | [diff] [blame] | 12289 | buf1 = _PyUnicode_AsKind(str_obj, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12290 | if (!buf1) |
| 12291 | goto onError; |
| 12292 | buf2 = PyUnicode_DATA(sep_obj); |
| 12293 | if (kind2 != kind) |
| 12294 | buf2 = _PyUnicode_AsKind(sep_obj, kind); |
| 12295 | if (!buf2) |
| 12296 | goto onError; |
| 12297 | len1 = PyUnicode_GET_LENGTH(str_obj); |
| 12298 | len2 = PyUnicode_GET_LENGTH(sep_obj); |
| 12299 | |
Victor Stinner | 14f8f02 | 2011-10-05 20:58:25 +0200 | [diff] [blame] | 12300 | switch(PyUnicode_KIND(str_obj)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12301 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 12302 | if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj)) |
| 12303 | out = asciilib_partition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12304 | else |
| 12305 | out = ucs1lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12306 | break; |
| 12307 | case PyUnicode_2BYTE_KIND: |
| 12308 | out = ucs2lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12309 | break; |
| 12310 | case PyUnicode_4BYTE_KIND: |
| 12311 | out = ucs4lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12312 | break; |
| 12313 | default: |
| 12314 | assert(0); |
| 12315 | out = 0; |
| 12316 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12317 | |
| 12318 | Py_DECREF(sep_obj); |
| 12319 | Py_DECREF(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12320 | if (kind1 != kind) |
| 12321 | PyMem_Free(buf1); |
| 12322 | if (kind2 != kind) |
| 12323 | PyMem_Free(buf2); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12324 | |
| 12325 | return out; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12326 | onError: |
| 12327 | Py_DECREF(sep_obj); |
| 12328 | Py_DECREF(str_obj); |
| 12329 | if (kind1 != kind && buf1) |
| 12330 | PyMem_Free(buf1); |
| 12331 | if (kind2 != kind && buf2) |
| 12332 | PyMem_Free(buf2); |
| 12333 | return NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12334 | } |
| 12335 | |
| 12336 | |
| 12337 | PyObject * |
| 12338 | PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in) |
| 12339 | { |
| 12340 | PyObject* str_obj; |
| 12341 | PyObject* sep_obj; |
| 12342 | PyObject* out; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12343 | int kind1, kind2, kind; |
| 12344 | void *buf1 = NULL, *buf2 = NULL; |
| 12345 | Py_ssize_t len1, len2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12346 | |
| 12347 | str_obj = PyUnicode_FromObject(str_in); |
| 12348 | if (!str_obj) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12349 | return NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12350 | sep_obj = PyUnicode_FromObject(sep_in); |
| 12351 | if (!sep_obj) { |
| 12352 | Py_DECREF(str_obj); |
| 12353 | return NULL; |
| 12354 | } |
| 12355 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12356 | kind1 = PyUnicode_KIND(str_in); |
| 12357 | kind2 = PyUnicode_KIND(sep_obj); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 12358 | kind = Py_MAX(kind1, kind2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12359 | buf1 = PyUnicode_DATA(str_in); |
| 12360 | if (kind1 != kind) |
| 12361 | buf1 = _PyUnicode_AsKind(str_in, kind); |
| 12362 | if (!buf1) |
| 12363 | goto onError; |
| 12364 | buf2 = PyUnicode_DATA(sep_obj); |
| 12365 | if (kind2 != kind) |
| 12366 | buf2 = _PyUnicode_AsKind(sep_obj, kind); |
| 12367 | if (!buf2) |
| 12368 | goto onError; |
| 12369 | len1 = PyUnicode_GET_LENGTH(str_obj); |
| 12370 | len2 = PyUnicode_GET_LENGTH(sep_obj); |
| 12371 | |
| 12372 | switch(PyUnicode_KIND(str_in)) { |
| 12373 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 12374 | if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj)) |
| 12375 | out = asciilib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12376 | else |
| 12377 | out = ucs1lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12378 | break; |
| 12379 | case PyUnicode_2BYTE_KIND: |
| 12380 | out = ucs2lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12381 | break; |
| 12382 | case PyUnicode_4BYTE_KIND: |
| 12383 | out = ucs4lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12384 | break; |
| 12385 | default: |
| 12386 | assert(0); |
| 12387 | out = 0; |
| 12388 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12389 | |
| 12390 | Py_DECREF(sep_obj); |
| 12391 | Py_DECREF(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12392 | if (kind1 != kind) |
| 12393 | PyMem_Free(buf1); |
| 12394 | if (kind2 != kind) |
| 12395 | PyMem_Free(buf2); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12396 | |
| 12397 | return out; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12398 | onError: |
| 12399 | Py_DECREF(sep_obj); |
| 12400 | Py_DECREF(str_obj); |
| 12401 | if (kind1 != kind && buf1) |
| 12402 | PyMem_Free(buf1); |
| 12403 | if (kind2 != kind && buf2) |
| 12404 | PyMem_Free(buf2); |
| 12405 | return NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12406 | } |
| 12407 | |
| 12408 | PyDoc_STRVAR(partition__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12409 | "S.partition(sep) -> (head, sep, tail)\n\ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12410 | \n\ |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 12411 | Search for the separator sep in S, and return the part before it,\n\ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12412 | the separator itself, and the part after it. If the separator is not\n\ |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 12413 | found, return S and two empty strings."); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12414 | |
| 12415 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12416 | unicode_partition(PyObject *self, PyObject *separator) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12417 | { |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12418 | return PyUnicode_Partition(self, separator); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12419 | } |
| 12420 | |
| 12421 | PyDoc_STRVAR(rpartition__doc__, |
Ezio Melotti | 5b2b242 | 2010-01-25 11:58:28 +0000 | [diff] [blame] | 12422 | "S.rpartition(sep) -> (head, sep, tail)\n\ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12423 | \n\ |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 12424 | Search for the separator sep in S, starting at the end of S, and return\n\ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12425 | the part before it, the separator itself, and the part after it. If the\n\ |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 12426 | separator is not found, return two empty strings and S."); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12427 | |
| 12428 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12429 | unicode_rpartition(PyObject *self, PyObject *separator) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12430 | { |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12431 | return PyUnicode_RPartition(self, separator); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12432 | } |
| 12433 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 12434 | PyObject * |
| 12435 | PyUnicode_RSplit(PyObject *s, PyObject *sep, Py_ssize_t maxsplit) |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12436 | { |
| 12437 | PyObject *result; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12438 | |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12439 | s = PyUnicode_FromObject(s); |
| 12440 | if (s == NULL) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12441 | return NULL; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12442 | if (sep != NULL) { |
| 12443 | sep = PyUnicode_FromObject(sep); |
| 12444 | if (sep == NULL) { |
| 12445 | Py_DECREF(s); |
| 12446 | return NULL; |
| 12447 | } |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12448 | } |
| 12449 | |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12450 | result = rsplit(s, sep, maxsplit); |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12451 | |
| 12452 | Py_DECREF(s); |
| 12453 | Py_XDECREF(sep); |
| 12454 | return result; |
| 12455 | } |
| 12456 | |
| 12457 | PyDoc_STRVAR(rsplit__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12458 | "S.rsplit([sep[, maxsplit]]) -> list of strings\n\ |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12459 | \n\ |
| 12460 | Return a list of the words in S, using sep as the\n\ |
| 12461 | delimiter string, starting at the end of the string and\n\ |
| 12462 | working to the front. If maxsplit is given, at most maxsplit\n\ |
| 12463 | splits are done. If sep is not specified, any whitespace string\n\ |
| 12464 | is a separator."); |
| 12465 | |
| 12466 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12467 | unicode_rsplit(PyObject *self, PyObject *args) |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12468 | { |
| 12469 | PyObject *substring = Py_None; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12470 | Py_ssize_t maxcount = -1; |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12471 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12472 | if (!PyArg_ParseTuple(args, "|On:rsplit", &substring, &maxcount)) |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12473 | return NULL; |
| 12474 | |
| 12475 | if (substring == Py_None) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12476 | return rsplit(self, NULL, maxcount); |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12477 | else if (PyUnicode_Check(substring)) |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12478 | return rsplit(self, substring, maxcount); |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12479 | else |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12480 | return PyUnicode_RSplit(self, substring, maxcount); |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12481 | } |
| 12482 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12483 | PyDoc_STRVAR(splitlines__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12484 | "S.splitlines([keepends]) -> list of strings\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12485 | \n\ |
| 12486 | Return a list of the lines in S, breaking at line boundaries.\n\ |
Guido van Rossum | 8666291 | 2000-04-11 15:38:46 +0000 | [diff] [blame] | 12487 | Line breaks are not included in the resulting list unless keepends\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12488 | is given and true."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12489 | |
| 12490 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12491 | unicode_splitlines(PyObject *self, PyObject *args, PyObject *kwds) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12492 | { |
Mark Dickinson | 0d5f6ad | 2011-09-24 09:14:39 +0100 | [diff] [blame] | 12493 | static char *kwlist[] = {"keepends", 0}; |
Guido van Rossum | 8666291 | 2000-04-11 15:38:46 +0000 | [diff] [blame] | 12494 | int keepends = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12495 | |
Mark Dickinson | 0d5f6ad | 2011-09-24 09:14:39 +0100 | [diff] [blame] | 12496 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "|i:splitlines", |
| 12497 | kwlist, &keepends)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12498 | return NULL; |
| 12499 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12500 | return PyUnicode_Splitlines(self, keepends); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12501 | } |
| 12502 | |
| 12503 | static |
Guido van Rossum | f15a29f | 2007-05-04 00:41:39 +0000 | [diff] [blame] | 12504 | PyObject *unicode_str(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12505 | { |
Walter Dörwald | 346737f | 2007-05-31 10:44:43 +0000 | [diff] [blame] | 12506 | if (PyUnicode_CheckExact(self)) { |
| 12507 | Py_INCREF(self); |
| 12508 | return self; |
| 12509 | } else |
| 12510 | /* Subtype -- return genuine unicode string with the same value. */ |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 12511 | return PyUnicode_Copy(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12512 | } |
| 12513 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12514 | PyDoc_STRVAR(swapcase__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12515 | "S.swapcase() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12516 | \n\ |
| 12517 | Return a copy of S with uppercase characters converted to lowercase\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12518 | and vice versa."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12519 | |
| 12520 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12521 | unicode_swapcase(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12522 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12523 | return fixup(self, fixswapcase); |
| 12524 | } |
| 12525 | |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12526 | PyDoc_STRVAR(maketrans__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12527 | "str.maketrans(x[, y[, z]]) -> dict (static method)\n\ |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12528 | \n\ |
| 12529 | Return a translation table usable for str.translate().\n\ |
| 12530 | If there is only one argument, it must be a dictionary mapping Unicode\n\ |
| 12531 | ordinals (integers) or characters to Unicode ordinals, strings or None.\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 12532 | Character keys will be then converted to ordinals.\n\ |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12533 | If there are two arguments, they must be strings of equal length, and\n\ |
| 12534 | in the resulting dictionary, each character in x will be mapped to the\n\ |
| 12535 | character at the same position in y. If there is a third argument, it\n\ |
| 12536 | must be a string, whose characters will be mapped to None in the result."); |
| 12537 | |
| 12538 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12539 | unicode_maketrans(PyObject *null, PyObject *args) |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12540 | { |
| 12541 | PyObject *x, *y = NULL, *z = NULL; |
| 12542 | PyObject *new = NULL, *key, *value; |
| 12543 | Py_ssize_t i = 0; |
| 12544 | int res; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12545 | |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12546 | if (!PyArg_ParseTuple(args, "O|UU:maketrans", &x, &y, &z)) |
| 12547 | return NULL; |
| 12548 | new = PyDict_New(); |
| 12549 | if (!new) |
| 12550 | return NULL; |
| 12551 | if (y != NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12552 | int x_kind, y_kind, z_kind; |
| 12553 | void *x_data, *y_data, *z_data; |
| 12554 | |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12555 | /* x must be a string too, of equal length */ |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12556 | if (!PyUnicode_Check(x)) { |
| 12557 | PyErr_SetString(PyExc_TypeError, "first maketrans argument must " |
| 12558 | "be a string if there is a second argument"); |
| 12559 | goto err; |
| 12560 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12561 | if (PyUnicode_GET_LENGTH(x) != PyUnicode_GET_LENGTH(y)) { |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12562 | PyErr_SetString(PyExc_ValueError, "the first two maketrans " |
| 12563 | "arguments must have equal length"); |
| 12564 | goto err; |
| 12565 | } |
| 12566 | /* create entries for translating chars in x to those in y */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12567 | x_kind = PyUnicode_KIND(x); |
| 12568 | y_kind = PyUnicode_KIND(y); |
| 12569 | x_data = PyUnicode_DATA(x); |
| 12570 | y_data = PyUnicode_DATA(y); |
| 12571 | for (i = 0; i < PyUnicode_GET_LENGTH(x); i++) { |
| 12572 | key = PyLong_FromLong(PyUnicode_READ(x_kind, x_data, i)); |
| 12573 | value = PyLong_FromLong(PyUnicode_READ(y_kind, y_data, i)); |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12574 | if (!key || !value) |
| 12575 | goto err; |
| 12576 | res = PyDict_SetItem(new, key, value); |
| 12577 | Py_DECREF(key); |
| 12578 | Py_DECREF(value); |
| 12579 | if (res < 0) |
| 12580 | goto err; |
| 12581 | } |
| 12582 | /* create entries for deleting chars in z */ |
| 12583 | if (z != NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12584 | z_kind = PyUnicode_KIND(z); |
| 12585 | z_data = PyUnicode_DATA(z); |
Victor Stinner | c4f281e | 2011-10-11 22:11:42 +0200 | [diff] [blame] | 12586 | for (i = 0; i < PyUnicode_GET_LENGTH(z); i++) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12587 | key = PyLong_FromLong(PyUnicode_READ(z_kind, z_data, i)); |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12588 | if (!key) |
| 12589 | goto err; |
| 12590 | res = PyDict_SetItem(new, key, Py_None); |
| 12591 | Py_DECREF(key); |
| 12592 | if (res < 0) |
| 12593 | goto err; |
| 12594 | } |
| 12595 | } |
| 12596 | } else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12597 | int kind; |
| 12598 | void *data; |
| 12599 | |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12600 | /* x must be a dict */ |
Raymond Hettinger | 3ad0576 | 2009-05-29 22:11:22 +0000 | [diff] [blame] | 12601 | if (!PyDict_CheckExact(x)) { |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12602 | PyErr_SetString(PyExc_TypeError, "if you give only one argument " |
| 12603 | "to maketrans it must be a dict"); |
| 12604 | goto err; |
| 12605 | } |
| 12606 | /* copy entries into the new dict, converting string keys to int keys */ |
| 12607 | while (PyDict_Next(x, &i, &key, &value)) { |
| 12608 | if (PyUnicode_Check(key)) { |
| 12609 | /* convert string keys to integer keys */ |
| 12610 | PyObject *newkey; |
Victor Stinner | c4f281e | 2011-10-11 22:11:42 +0200 | [diff] [blame] | 12611 | if (PyUnicode_GET_LENGTH(key) != 1) { |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12612 | PyErr_SetString(PyExc_ValueError, "string keys in translate " |
| 12613 | "table must be of length 1"); |
| 12614 | goto err; |
| 12615 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12616 | kind = PyUnicode_KIND(key); |
| 12617 | data = PyUnicode_DATA(key); |
| 12618 | newkey = PyLong_FromLong(PyUnicode_READ(kind, data, 0)); |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12619 | if (!newkey) |
| 12620 | goto err; |
| 12621 | res = PyDict_SetItem(new, newkey, value); |
| 12622 | Py_DECREF(newkey); |
| 12623 | if (res < 0) |
| 12624 | goto err; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 12625 | } else if (PyLong_Check(key)) { |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12626 | /* just keep integer keys */ |
| 12627 | if (PyDict_SetItem(new, key, value) < 0) |
| 12628 | goto err; |
| 12629 | } else { |
| 12630 | PyErr_SetString(PyExc_TypeError, "keys in translate table must " |
| 12631 | "be strings or integers"); |
| 12632 | goto err; |
| 12633 | } |
| 12634 | } |
| 12635 | } |
| 12636 | return new; |
| 12637 | err: |
| 12638 | Py_DECREF(new); |
| 12639 | return NULL; |
| 12640 | } |
| 12641 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12642 | PyDoc_STRVAR(translate__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12643 | "S.translate(table) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12644 | \n\ |
| 12645 | Return a copy of the string S, where all characters have been mapped\n\ |
| 12646 | through the given translation table, which must be a mapping of\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 12647 | Unicode ordinals to Unicode ordinals, strings, or None.\n\ |
Walter Dörwald | 5c1ee17 | 2002-09-04 20:31:32 +0000 | [diff] [blame] | 12648 | Unmapped characters are left untouched. Characters mapped to None\n\ |
| 12649 | are deleted."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12650 | |
| 12651 | static PyObject* |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12652 | unicode_translate(PyObject *self, PyObject *table) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12653 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12654 | return _PyUnicode_TranslateCharmap(self, table, "ignore"); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12655 | } |
| 12656 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12657 | PyDoc_STRVAR(upper__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12658 | "S.upper() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12659 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12660 | Return a copy of S converted to uppercase."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12661 | |
| 12662 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12663 | unicode_upper(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12664 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12665 | return fixup(self, fixupper); |
| 12666 | } |
| 12667 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12668 | PyDoc_STRVAR(zfill__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12669 | "S.zfill(width) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12670 | \n\ |
Benjamin Peterson | 9aa4299 | 2008-09-10 21:57:34 +0000 | [diff] [blame] | 12671 | Pad a numeric string S with zeros on the left, to fill a field\n\ |
| 12672 | of the specified width. The string S is never truncated."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12673 | |
| 12674 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12675 | unicode_zfill(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12676 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12677 | Py_ssize_t fill; |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12678 | PyObject *u; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12679 | Py_ssize_t width; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12680 | int kind; |
| 12681 | void *data; |
| 12682 | Py_UCS4 chr; |
| 12683 | |
| 12684 | if (PyUnicode_READY(self) == -1) |
| 12685 | return NULL; |
| 12686 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12687 | if (!PyArg_ParseTuple(args, "n:zfill", &width)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12688 | return NULL; |
| 12689 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12690 | if (PyUnicode_GET_LENGTH(self) >= width) { |
Walter Dörwald | 0fe940c | 2002-04-15 18:42:15 +0000 | [diff] [blame] | 12691 | if (PyUnicode_CheckExact(self)) { |
| 12692 | Py_INCREF(self); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12693 | return self; |
Walter Dörwald | 0fe940c | 2002-04-15 18:42:15 +0000 | [diff] [blame] | 12694 | } |
| 12695 | else |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12696 | return PyUnicode_Copy(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12697 | } |
| 12698 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12699 | fill = width - _PyUnicode_LENGTH(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12700 | |
| 12701 | u = pad(self, fill, 0, '0'); |
| 12702 | |
Walter Dörwald | 068325e | 2002-04-15 13:36:47 +0000 | [diff] [blame] | 12703 | if (u == NULL) |
| 12704 | return NULL; |
| 12705 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12706 | kind = PyUnicode_KIND(u); |
| 12707 | data = PyUnicode_DATA(u); |
| 12708 | chr = PyUnicode_READ(kind, data, fill); |
| 12709 | |
| 12710 | if (chr == '+' || chr == '-') { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12711 | /* move sign to beginning of string */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12712 | PyUnicode_WRITE(kind, data, 0, chr); |
| 12713 | PyUnicode_WRITE(kind, data, fill, '0'); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12714 | } |
| 12715 | |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 12716 | assert(_PyUnicode_CheckConsistency(u, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12717 | return u; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12718 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12719 | |
| 12720 | #if 0 |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 12721 | static PyObject * |
| 12722 | unicode__decimal2ascii(PyObject *self) |
| 12723 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12724 | return PyUnicode_TransformDecimalAndSpaceToASCII(self); |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 12725 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12726 | #endif |
| 12727 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12728 | PyDoc_STRVAR(startswith__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12729 | "S.startswith(prefix[, start[, end]]) -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12730 | \n\ |
Guido van Rossum | a713218 | 2003-04-09 19:32:45 +0000 | [diff] [blame] | 12731 | Return True if S starts with the specified prefix, False otherwise.\n\ |
| 12732 | With optional start, test S beginning at that position.\n\ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12733 | With optional end, stop comparing S at that position.\n\ |
| 12734 | prefix can also be a tuple of strings to try."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12735 | |
| 12736 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12737 | unicode_startswith(PyObject *self, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12738 | PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12739 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12740 | PyObject *subobj; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12741 | PyObject *substring; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12742 | Py_ssize_t start = 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 12743 | Py_ssize_t end = PY_SSIZE_T_MAX; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12744 | int result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12745 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 12746 | if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12747 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12748 | if (PyTuple_Check(subobj)) { |
| 12749 | Py_ssize_t i; |
| 12750 | for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12751 | substring = PyUnicode_FromObject(PyTuple_GET_ITEM(subobj, i)); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12752 | if (substring == NULL) |
| 12753 | return NULL; |
| 12754 | result = tailmatch(self, substring, start, end, -1); |
| 12755 | Py_DECREF(substring); |
| 12756 | if (result) { |
| 12757 | Py_RETURN_TRUE; |
| 12758 | } |
| 12759 | } |
| 12760 | /* nothing matched */ |
| 12761 | Py_RETURN_FALSE; |
| 12762 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12763 | substring = PyUnicode_FromObject(subobj); |
Ezio Melotti | ba42fd5 | 2011-04-26 06:09:45 +0300 | [diff] [blame] | 12764 | if (substring == NULL) { |
| 12765 | if (PyErr_ExceptionMatches(PyExc_TypeError)) |
| 12766 | PyErr_Format(PyExc_TypeError, "startswith first arg must be str or " |
| 12767 | "a tuple of str, not %s", Py_TYPE(subobj)->tp_name); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12768 | return NULL; |
Ezio Melotti | ba42fd5 | 2011-04-26 06:09:45 +0300 | [diff] [blame] | 12769 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12770 | result = tailmatch(self, substring, start, end, -1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12771 | Py_DECREF(substring); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12772 | return PyBool_FromLong(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12773 | } |
| 12774 | |
| 12775 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12776 | PyDoc_STRVAR(endswith__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12777 | "S.endswith(suffix[, start[, end]]) -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12778 | \n\ |
Guido van Rossum | a713218 | 2003-04-09 19:32:45 +0000 | [diff] [blame] | 12779 | Return True if S ends with the specified suffix, False otherwise.\n\ |
| 12780 | With optional start, test S beginning at that position.\n\ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12781 | With optional end, stop comparing S at that position.\n\ |
| 12782 | suffix can also be a tuple of strings to try."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12783 | |
| 12784 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12785 | unicode_endswith(PyObject *self, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12786 | PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12787 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12788 | PyObject *subobj; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12789 | PyObject *substring; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12790 | Py_ssize_t start = 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 12791 | Py_ssize_t end = PY_SSIZE_T_MAX; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12792 | int result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12793 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 12794 | if (!stringlib_parse_args_finds("endswith", args, &subobj, &start, &end)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12795 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12796 | if (PyTuple_Check(subobj)) { |
| 12797 | Py_ssize_t i; |
| 12798 | for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12799 | substring = PyUnicode_FromObject( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12800 | PyTuple_GET_ITEM(subobj, i)); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12801 | if (substring == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12802 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12803 | result = tailmatch(self, substring, start, end, +1); |
| 12804 | Py_DECREF(substring); |
| 12805 | if (result) { |
| 12806 | Py_RETURN_TRUE; |
| 12807 | } |
| 12808 | } |
| 12809 | Py_RETURN_FALSE; |
| 12810 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12811 | substring = PyUnicode_FromObject(subobj); |
Ezio Melotti | ba42fd5 | 2011-04-26 06:09:45 +0300 | [diff] [blame] | 12812 | if (substring == NULL) { |
| 12813 | if (PyErr_ExceptionMatches(PyExc_TypeError)) |
| 12814 | PyErr_Format(PyExc_TypeError, "endswith first arg must be str or " |
| 12815 | "a tuple of str, not %s", Py_TYPE(subobj)->tp_name); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12816 | return NULL; |
Ezio Melotti | ba42fd5 | 2011-04-26 06:09:45 +0300 | [diff] [blame] | 12817 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12818 | result = tailmatch(self, substring, start, end, +1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12819 | Py_DECREF(substring); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12820 | return PyBool_FromLong(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12821 | } |
| 12822 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12823 | #include "stringlib/unicode_format.h" |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12824 | |
| 12825 | PyDoc_STRVAR(format__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12826 | "S.format(*args, **kwargs) -> str\n\ |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12827 | \n\ |
Eric Smith | 51d2fd9 | 2010-11-06 19:27:37 +0000 | [diff] [blame] | 12828 | Return a formatted version of S, using substitutions from args and kwargs.\n\ |
| 12829 | The substitutions are identified by braces ('{' and '}')."); |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12830 | |
Eric Smith | 27bbca6 | 2010-11-04 17:06:58 +0000 | [diff] [blame] | 12831 | PyDoc_STRVAR(format_map__doc__, |
| 12832 | "S.format_map(mapping) -> str\n\ |
| 12833 | \n\ |
Eric Smith | 51d2fd9 | 2010-11-06 19:27:37 +0000 | [diff] [blame] | 12834 | Return a formatted version of S, using substitutions from mapping.\n\ |
| 12835 | The substitutions are identified by braces ('{' and '}')."); |
Eric Smith | 27bbca6 | 2010-11-04 17:06:58 +0000 | [diff] [blame] | 12836 | |
Eric Smith | 4a7d76d | 2008-05-30 18:10:19 +0000 | [diff] [blame] | 12837 | static PyObject * |
| 12838 | unicode__format__(PyObject* self, PyObject* args) |
| 12839 | { |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 12840 | PyObject *format_spec, *out; |
Eric Smith | 4a7d76d | 2008-05-30 18:10:19 +0000 | [diff] [blame] | 12841 | |
| 12842 | if (!PyArg_ParseTuple(args, "U:__format__", &format_spec)) |
| 12843 | return NULL; |
| 12844 | |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 12845 | out = _PyUnicode_FormatAdvanced(self, format_spec, 0, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12846 | PyUnicode_GET_LENGTH(format_spec)); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 12847 | return out; |
Eric Smith | 4a7d76d | 2008-05-30 18:10:19 +0000 | [diff] [blame] | 12848 | } |
| 12849 | |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12850 | PyDoc_STRVAR(p_format__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12851 | "S.__format__(format_spec) -> str\n\ |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12852 | \n\ |
Eric Smith | 51d2fd9 | 2010-11-06 19:27:37 +0000 | [diff] [blame] | 12853 | Return a formatted version of S as described by format_spec."); |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12854 | |
| 12855 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12856 | unicode__sizeof__(PyObject *v) |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 12857 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12858 | Py_ssize_t size; |
| 12859 | |
| 12860 | /* If it's a compact object, account for base structure + |
| 12861 | character data. */ |
| 12862 | if (PyUnicode_IS_COMPACT_ASCII(v)) |
| 12863 | size = sizeof(PyASCIIObject) + PyUnicode_GET_LENGTH(v) + 1; |
| 12864 | else if (PyUnicode_IS_COMPACT(v)) |
| 12865 | size = sizeof(PyCompactUnicodeObject) + |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 12866 | (PyUnicode_GET_LENGTH(v) + 1) * PyUnicode_KIND(v); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12867 | else { |
| 12868 | /* If it is a two-block object, account for base object, and |
| 12869 | for character block if present. */ |
| 12870 | size = sizeof(PyUnicodeObject); |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 12871 | if (_PyUnicode_DATA_ANY(v)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12872 | size += (PyUnicode_GET_LENGTH(v) + 1) * |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 12873 | PyUnicode_KIND(v); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12874 | } |
| 12875 | /* If the wstr pointer is present, account for it unless it is shared |
Victor Stinner | a3be613 | 2011-10-03 02:16:37 +0200 | [diff] [blame] | 12876 | with the data pointer. Check if the data is not shared. */ |
Victor Stinner | 0349091 | 2011-10-03 23:45:12 +0200 | [diff] [blame] | 12877 | if (_PyUnicode_HAS_WSTR_MEMORY(v)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12878 | size += (PyUnicode_WSTR_LENGTH(v) + 1) * sizeof(wchar_t); |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 12879 | if (_PyUnicode_HAS_UTF8_MEMORY(v)) |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 12880 | size += PyUnicode_UTF8_LENGTH(v) + 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12881 | |
| 12882 | return PyLong_FromSsize_t(size); |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 12883 | } |
| 12884 | |
| 12885 | PyDoc_STRVAR(sizeof__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12886 | "S.__sizeof__() -> size of S in memory, in bytes"); |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 12887 | |
| 12888 | static PyObject * |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 12889 | unicode_getnewargs(PyObject *v) |
Guido van Rossum | 5d9113d | 2003-01-29 17:58:45 +0000 | [diff] [blame] | 12890 | { |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 12891 | PyObject *copy = PyUnicode_Copy(v); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12892 | if (!copy) |
| 12893 | return NULL; |
| 12894 | return Py_BuildValue("(N)", copy); |
Guido van Rossum | 5d9113d | 2003-01-29 17:58:45 +0000 | [diff] [blame] | 12895 | } |
| 12896 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12897 | static PyMethodDef unicode_methods[] = { |
| 12898 | |
| 12899 | /* Order is according to common usage: often used methods should |
| 12900 | appear first, since lookup is done sequentially. */ |
| 12901 | |
Benjamin Peterson | 28a4dce | 2010-12-12 01:33:04 +0000 | [diff] [blame] | 12902 | {"encode", (PyCFunction) unicode_encode, METH_VARARGS | METH_KEYWORDS, encode__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 12903 | {"replace", (PyCFunction) unicode_replace, METH_VARARGS, replace__doc__}, |
| 12904 | {"split", (PyCFunction) unicode_split, METH_VARARGS, split__doc__}, |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12905 | {"rsplit", (PyCFunction) unicode_rsplit, METH_VARARGS, rsplit__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 12906 | {"join", (PyCFunction) unicode_join, METH_O, join__doc__}, |
| 12907 | {"capitalize", (PyCFunction) unicode_capitalize, METH_NOARGS, capitalize__doc__}, |
| 12908 | {"title", (PyCFunction) unicode_title, METH_NOARGS, title__doc__}, |
| 12909 | {"center", (PyCFunction) unicode_center, METH_VARARGS, center__doc__}, |
| 12910 | {"count", (PyCFunction) unicode_count, METH_VARARGS, count__doc__}, |
| 12911 | {"expandtabs", (PyCFunction) unicode_expandtabs, METH_VARARGS, expandtabs__doc__}, |
| 12912 | {"find", (PyCFunction) unicode_find, METH_VARARGS, find__doc__}, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12913 | {"partition", (PyCFunction) unicode_partition, METH_O, partition__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 12914 | {"index", (PyCFunction) unicode_index, METH_VARARGS, index__doc__}, |
| 12915 | {"ljust", (PyCFunction) unicode_ljust, METH_VARARGS, ljust__doc__}, |
| 12916 | {"lower", (PyCFunction) unicode_lower, METH_NOARGS, lower__doc__}, |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 12917 | {"lstrip", (PyCFunction) unicode_lstrip, METH_VARARGS, lstrip__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 12918 | {"rfind", (PyCFunction) unicode_rfind, METH_VARARGS, rfind__doc__}, |
| 12919 | {"rindex", (PyCFunction) unicode_rindex, METH_VARARGS, rindex__doc__}, |
| 12920 | {"rjust", (PyCFunction) unicode_rjust, METH_VARARGS, rjust__doc__}, |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 12921 | {"rstrip", (PyCFunction) unicode_rstrip, METH_VARARGS, rstrip__doc__}, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12922 | {"rpartition", (PyCFunction) unicode_rpartition, METH_O, rpartition__doc__}, |
Mark Dickinson | 0d5f6ad | 2011-09-24 09:14:39 +0100 | [diff] [blame] | 12923 | {"splitlines", (PyCFunction) unicode_splitlines, METH_VARARGS | METH_KEYWORDS, splitlines__doc__}, |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 12924 | {"strip", (PyCFunction) unicode_strip, METH_VARARGS, strip__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 12925 | {"swapcase", (PyCFunction) unicode_swapcase, METH_NOARGS, swapcase__doc__}, |
| 12926 | {"translate", (PyCFunction) unicode_translate, METH_O, translate__doc__}, |
| 12927 | {"upper", (PyCFunction) unicode_upper, METH_NOARGS, upper__doc__}, |
| 12928 | {"startswith", (PyCFunction) unicode_startswith, METH_VARARGS, startswith__doc__}, |
| 12929 | {"endswith", (PyCFunction) unicode_endswith, METH_VARARGS, endswith__doc__}, |
| 12930 | {"islower", (PyCFunction) unicode_islower, METH_NOARGS, islower__doc__}, |
| 12931 | {"isupper", (PyCFunction) unicode_isupper, METH_NOARGS, isupper__doc__}, |
| 12932 | {"istitle", (PyCFunction) unicode_istitle, METH_NOARGS, istitle__doc__}, |
| 12933 | {"isspace", (PyCFunction) unicode_isspace, METH_NOARGS, isspace__doc__}, |
| 12934 | {"isdecimal", (PyCFunction) unicode_isdecimal, METH_NOARGS, isdecimal__doc__}, |
| 12935 | {"isdigit", (PyCFunction) unicode_isdigit, METH_NOARGS, isdigit__doc__}, |
| 12936 | {"isnumeric", (PyCFunction) unicode_isnumeric, METH_NOARGS, isnumeric__doc__}, |
| 12937 | {"isalpha", (PyCFunction) unicode_isalpha, METH_NOARGS, isalpha__doc__}, |
| 12938 | {"isalnum", (PyCFunction) unicode_isalnum, METH_NOARGS, isalnum__doc__}, |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 12939 | {"isidentifier", (PyCFunction) unicode_isidentifier, METH_NOARGS, isidentifier__doc__}, |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12940 | {"isprintable", (PyCFunction) unicode_isprintable, METH_NOARGS, isprintable__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 12941 | {"zfill", (PyCFunction) unicode_zfill, METH_VARARGS, zfill__doc__}, |
Eric Smith | 9cd1e09 | 2007-08-31 18:39:38 +0000 | [diff] [blame] | 12942 | {"format", (PyCFunction) do_string_format, METH_VARARGS | METH_KEYWORDS, format__doc__}, |
Eric Smith | 27bbca6 | 2010-11-04 17:06:58 +0000 | [diff] [blame] | 12943 | {"format_map", (PyCFunction) do_string_format_map, METH_O, format_map__doc__}, |
Eric Smith | 4a7d76d | 2008-05-30 18:10:19 +0000 | [diff] [blame] | 12944 | {"__format__", (PyCFunction) unicode__format__, METH_VARARGS, p_format__doc__}, |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12945 | {"maketrans", (PyCFunction) unicode_maketrans, |
| 12946 | METH_VARARGS | METH_STATIC, maketrans__doc__}, |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 12947 | {"__sizeof__", (PyCFunction) unicode__sizeof__, METH_NOARGS, sizeof__doc__}, |
Walter Dörwald | 068325e | 2002-04-15 13:36:47 +0000 | [diff] [blame] | 12948 | #if 0 |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 12949 | {"capwords", (PyCFunction) unicode_capwords, METH_NOARGS, capwords__doc__}, |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12950 | #endif |
| 12951 | |
| 12952 | #if 0 |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 12953 | /* These methods are just used for debugging the implementation. */ |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 12954 | {"_decimal2ascii", (PyCFunction) unicode__decimal2ascii, METH_NOARGS}, |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12955 | #endif |
| 12956 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12957 | {"__getnewargs__", (PyCFunction)unicode_getnewargs, METH_NOARGS}, |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12958 | {NULL, NULL} |
| 12959 | }; |
| 12960 | |
Neil Schemenauer | ce30bc9 | 2002-11-18 16:10:18 +0000 | [diff] [blame] | 12961 | static PyObject * |
| 12962 | unicode_mod(PyObject *v, PyObject *w) |
| 12963 | { |
Brian Curtin | dfc80e3 | 2011-08-10 20:28:54 -0500 | [diff] [blame] | 12964 | if (!PyUnicode_Check(v)) |
| 12965 | Py_RETURN_NOTIMPLEMENTED; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12966 | return PyUnicode_Format(v, w); |
Neil Schemenauer | ce30bc9 | 2002-11-18 16:10:18 +0000 | [diff] [blame] | 12967 | } |
| 12968 | |
| 12969 | static PyNumberMethods unicode_as_number = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12970 | 0, /*nb_add*/ |
| 12971 | 0, /*nb_subtract*/ |
| 12972 | 0, /*nb_multiply*/ |
| 12973 | unicode_mod, /*nb_remainder*/ |
Neil Schemenauer | ce30bc9 | 2002-11-18 16:10:18 +0000 | [diff] [blame] | 12974 | }; |
| 12975 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12976 | static PySequenceMethods unicode_as_sequence = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12977 | (lenfunc) unicode_length, /* sq_length */ |
| 12978 | PyUnicode_Concat, /* sq_concat */ |
| 12979 | (ssizeargfunc) unicode_repeat, /* sq_repeat */ |
| 12980 | (ssizeargfunc) unicode_getitem, /* sq_item */ |
| 12981 | 0, /* sq_slice */ |
| 12982 | 0, /* sq_ass_item */ |
| 12983 | 0, /* sq_ass_slice */ |
| 12984 | PyUnicode_Contains, /* sq_contains */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12985 | }; |
| 12986 | |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 12987 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12988 | unicode_subscript(PyObject* self, PyObject* item) |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 12989 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12990 | if (PyUnicode_READY(self) == -1) |
| 12991 | return NULL; |
| 12992 | |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 12993 | if (PyIndex_Check(item)) { |
| 12994 | Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError); |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 12995 | if (i == -1 && PyErr_Occurred()) |
| 12996 | return NULL; |
| 12997 | if (i < 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12998 | i += PyUnicode_GET_LENGTH(self); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12999 | return unicode_getitem(self, i); |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13000 | } else if (PySlice_Check(item)) { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 13001 | Py_ssize_t start, stop, step, slicelength, cur, i; |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13002 | PyObject *result; |
| 13003 | void *src_data, *dest_data; |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13004 | int src_kind, dest_kind; |
Victor Stinner | c80d6d2 | 2011-10-05 14:13:28 +0200 | [diff] [blame] | 13005 | Py_UCS4 ch, max_char, kind_limit; |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13006 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13007 | if (PySlice_GetIndicesEx(item, PyUnicode_GET_LENGTH(self), |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13008 | &start, &stop, &step, &slicelength) < 0) { |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13009 | return NULL; |
| 13010 | } |
| 13011 | |
| 13012 | if (slicelength <= 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13013 | return PyUnicode_New(0, 0); |
| 13014 | } else if (start == 0 && step == 1 && |
| 13015 | slicelength == PyUnicode_GET_LENGTH(self) && |
Thomas Wouters | ed03b41 | 2007-08-28 21:37:11 +0000 | [diff] [blame] | 13016 | PyUnicode_CheckExact(self)) { |
| 13017 | Py_INCREF(self); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13018 | return self; |
Thomas Wouters | ed03b41 | 2007-08-28 21:37:11 +0000 | [diff] [blame] | 13019 | } else if (step == 1) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13020 | return PyUnicode_Substring(self, |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 13021 | start, start + slicelength); |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13022 | } |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13023 | /* General case */ |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13024 | src_kind = PyUnicode_KIND(self); |
| 13025 | src_data = PyUnicode_DATA(self); |
Victor Stinner | 55c9911 | 2011-10-13 01:17:06 +0200 | [diff] [blame] | 13026 | if (!PyUnicode_IS_ASCII(self)) { |
| 13027 | kind_limit = kind_maxchar_limit(src_kind); |
| 13028 | max_char = 0; |
| 13029 | for (cur = start, i = 0; i < slicelength; cur += step, i++) { |
| 13030 | ch = PyUnicode_READ(src_kind, src_data, cur); |
| 13031 | if (ch > max_char) { |
| 13032 | max_char = ch; |
| 13033 | if (max_char >= kind_limit) |
| 13034 | break; |
| 13035 | } |
Victor Stinner | c80d6d2 | 2011-10-05 14:13:28 +0200 | [diff] [blame] | 13036 | } |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13037 | } |
Victor Stinner | 55c9911 | 2011-10-13 01:17:06 +0200 | [diff] [blame] | 13038 | else |
| 13039 | max_char = 127; |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13040 | result = PyUnicode_New(slicelength, max_char); |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13041 | if (result == NULL) |
| 13042 | return NULL; |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13043 | dest_kind = PyUnicode_KIND(result); |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13044 | dest_data = PyUnicode_DATA(result); |
| 13045 | |
| 13046 | for (cur = start, i = 0; i < slicelength; cur += step, i++) { |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13047 | Py_UCS4 ch = PyUnicode_READ(src_kind, src_data, cur); |
| 13048 | PyUnicode_WRITE(dest_kind, dest_data, i, ch); |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13049 | } |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 13050 | assert(_PyUnicode_CheckConsistency(result, 1)); |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13051 | return result; |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13052 | } else { |
| 13053 | PyErr_SetString(PyExc_TypeError, "string indices must be integers"); |
| 13054 | return NULL; |
| 13055 | } |
| 13056 | } |
| 13057 | |
| 13058 | static PyMappingMethods unicode_as_mapping = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13059 | (lenfunc)unicode_length, /* mp_length */ |
| 13060 | (binaryfunc)unicode_subscript, /* mp_subscript */ |
| 13061 | (objobjargproc)0, /* mp_ass_subscript */ |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13062 | }; |
| 13063 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13064 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13065 | /* Helpers for PyUnicode_Format() */ |
| 13066 | |
| 13067 | static PyObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 13068 | getnextarg(PyObject *args, Py_ssize_t arglen, Py_ssize_t *p_argidx) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13069 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 13070 | Py_ssize_t argidx = *p_argidx; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13071 | if (argidx < arglen) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13072 | (*p_argidx)++; |
| 13073 | if (arglen < 0) |
| 13074 | return args; |
| 13075 | else |
| 13076 | return PyTuple_GetItem(args, argidx); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13077 | } |
| 13078 | PyErr_SetString(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13079 | "not enough arguments for format string"); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13080 | return NULL; |
| 13081 | } |
| 13082 | |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13083 | /* Returns a new reference to a PyUnicode object, or NULL on failure. */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13084 | |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13085 | static PyObject * |
| 13086 | formatfloat(PyObject *v, int flags, int prec, int type) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13087 | { |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13088 | char *p; |
| 13089 | PyObject *result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13090 | double x; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 13091 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13092 | x = PyFloat_AsDouble(v); |
| 13093 | if (x == -1.0 && PyErr_Occurred()) |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13094 | return NULL; |
| 13095 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13096 | if (prec < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13097 | prec = 6; |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 13098 | |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 13099 | p = PyOS_double_to_string(x, type, prec, |
| 13100 | (flags & F_ALT) ? Py_DTSF_ALT : 0, NULL); |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13101 | if (p == NULL) |
| 13102 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13103 | result = PyUnicode_DecodeASCII(p, strlen(p), NULL); |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 13104 | PyMem_Free(p); |
| 13105 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13106 | } |
| 13107 | |
Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 13108 | static PyObject* |
| 13109 | formatlong(PyObject *val, int flags, int prec, int type) |
| 13110 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13111 | char *buf; |
| 13112 | int len; |
| 13113 | PyObject *str; /* temporary string object. */ |
| 13114 | PyObject *result; |
Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 13115 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13116 | str = _PyBytes_FormatLong(val, flags, prec, type, &buf, &len); |
| 13117 | if (!str) |
| 13118 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13119 | result = PyUnicode_DecodeASCII(buf, len, NULL); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13120 | Py_DECREF(str); |
| 13121 | return result; |
Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 13122 | } |
| 13123 | |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13124 | static Py_UCS4 |
| 13125 | formatchar(PyObject *v) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13126 | { |
Amaury Forgeot d'Arc | a4db686 | 2008-07-04 21:26:43 +0000 | [diff] [blame] | 13127 | /* presume that the buffer is at least 3 characters long */ |
Marc-André Lemburg | d4ab4a5 | 2000-06-08 17:54:00 +0000 | [diff] [blame] | 13128 | if (PyUnicode_Check(v)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13129 | if (PyUnicode_GET_LENGTH(v) == 1) { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13130 | return PyUnicode_READ_CHAR(v, 0); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13131 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13132 | goto onError; |
| 13133 | } |
| 13134 | else { |
| 13135 | /* Integer input truncated to a character */ |
| 13136 | long x; |
| 13137 | x = PyLong_AsLong(v); |
| 13138 | if (x == -1 && PyErr_Occurred()) |
| 13139 | goto onError; |
| 13140 | |
| 13141 | if (x < 0 || x > 0x10ffff) { |
| 13142 | PyErr_SetString(PyExc_OverflowError, |
| 13143 | "%c arg not in range(0x110000)"); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13144 | return (Py_UCS4) -1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13145 | } |
| 13146 | |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13147 | return (Py_UCS4) x; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13148 | } |
Amaury Forgeot d'Arc | a4db686 | 2008-07-04 21:26:43 +0000 | [diff] [blame] | 13149 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13150 | onError: |
Marc-André Lemburg | d4ab4a5 | 2000-06-08 17:54:00 +0000 | [diff] [blame] | 13151 | PyErr_SetString(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13152 | "%c requires int or char"); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13153 | return (Py_UCS4) -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13154 | } |
| 13155 | |
Antoine Pitrou | 978b9d2 | 2011-10-07 12:35:48 +0200 | [diff] [blame] | 13156 | static int |
| 13157 | repeat_accumulate(_PyAccu *acc, PyObject *obj, Py_ssize_t count) |
| 13158 | { |
| 13159 | int r; |
| 13160 | assert(count > 0); |
| 13161 | assert(PyUnicode_Check(obj)); |
| 13162 | if (count > 5) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13163 | PyObject *repeated = unicode_repeat(obj, count); |
Antoine Pitrou | 978b9d2 | 2011-10-07 12:35:48 +0200 | [diff] [blame] | 13164 | if (repeated == NULL) |
| 13165 | return -1; |
| 13166 | r = _PyAccu_Accumulate(acc, repeated); |
| 13167 | Py_DECREF(repeated); |
| 13168 | return r; |
| 13169 | } |
| 13170 | else { |
| 13171 | do { |
| 13172 | if (_PyAccu_Accumulate(acc, obj)) |
| 13173 | return -1; |
| 13174 | } while (--count); |
| 13175 | return 0; |
| 13176 | } |
| 13177 | } |
| 13178 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 13179 | PyObject * |
| 13180 | PyUnicode_Format(PyObject *format, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13181 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13182 | void *fmt; |
| 13183 | int fmtkind; |
| 13184 | PyObject *result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13185 | int kind; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13186 | int r; |
| 13187 | Py_ssize_t fmtcnt, fmtpos, arglen, argidx; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13188 | int args_owned = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13189 | PyObject *dict = NULL; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13190 | PyObject *temp = NULL; |
| 13191 | PyObject *second = NULL; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13192 | PyObject *uformat; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13193 | _PyAccu acc; |
| 13194 | static PyObject *plus, *minus, *blank, *zero, *percent; |
| 13195 | |
| 13196 | if (!plus && !(plus = get_latin1_char('+'))) |
| 13197 | return NULL; |
| 13198 | if (!minus && !(minus = get_latin1_char('-'))) |
| 13199 | return NULL; |
| 13200 | if (!blank && !(blank = get_latin1_char(' '))) |
| 13201 | return NULL; |
| 13202 | if (!zero && !(zero = get_latin1_char('0'))) |
| 13203 | return NULL; |
| 13204 | if (!percent && !(percent = get_latin1_char('%'))) |
| 13205 | return NULL; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 13206 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13207 | if (format == NULL || args == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13208 | PyErr_BadInternalCall(); |
| 13209 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13210 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13211 | uformat = PyUnicode_FromObject(format); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13212 | if (uformat == NULL || PyUnicode_READY(uformat) == -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13213 | return NULL; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13214 | if (_PyAccu_Init(&acc)) |
| 13215 | goto onError; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13216 | fmt = PyUnicode_DATA(uformat); |
| 13217 | fmtkind = PyUnicode_KIND(uformat); |
| 13218 | fmtcnt = PyUnicode_GET_LENGTH(uformat); |
| 13219 | fmtpos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13220 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13221 | if (PyTuple_Check(args)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13222 | arglen = PyTuple_Size(args); |
| 13223 | argidx = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13224 | } |
| 13225 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13226 | arglen = -1; |
| 13227 | argidx = -2; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13228 | } |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 13229 | if (Py_TYPE(args)->tp_as_mapping && !PyTuple_Check(args) && |
Christian Heimes | f386311 | 2007-11-22 07:46:41 +0000 | [diff] [blame] | 13230 | !PyUnicode_Check(args)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13231 | dict = args; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13232 | |
| 13233 | while (--fmtcnt >= 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13234 | if (PyUnicode_READ(fmtkind, fmt, fmtpos) != '%') { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13235 | PyObject *nonfmt; |
| 13236 | Py_ssize_t nonfmtpos; |
| 13237 | nonfmtpos = fmtpos++; |
| 13238 | while (fmtcnt >= 0 && |
| 13239 | PyUnicode_READ(fmtkind, fmt, fmtpos) != '%') { |
| 13240 | fmtpos++; |
| 13241 | fmtcnt--; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13242 | } |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 13243 | nonfmt = PyUnicode_Substring(uformat, nonfmtpos, fmtpos); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13244 | if (nonfmt == NULL) |
| 13245 | goto onError; |
| 13246 | r = _PyAccu_Accumulate(&acc, nonfmt); |
| 13247 | Py_DECREF(nonfmt); |
| 13248 | if (r) |
| 13249 | goto onError; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13250 | } |
| 13251 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13252 | /* Got a format specifier */ |
| 13253 | int flags = 0; |
| 13254 | Py_ssize_t width = -1; |
| 13255 | int prec = -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13256 | Py_UCS4 c = '\0'; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13257 | Py_UCS4 fill, sign; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13258 | int isnumok; |
| 13259 | PyObject *v = NULL; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13260 | void *pbuf = NULL; |
| 13261 | Py_ssize_t pindex, len; |
| 13262 | PyObject *signobj = NULL, *fillobj = NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13263 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13264 | fmtpos++; |
| 13265 | if (PyUnicode_READ(fmtkind, fmt, fmtpos) == '(') { |
| 13266 | Py_ssize_t keystart; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13267 | Py_ssize_t keylen; |
| 13268 | PyObject *key; |
| 13269 | int pcount = 1; |
Christian Heimes | a612dc0 | 2008-02-24 13:08:18 +0000 | [diff] [blame] | 13270 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13271 | if (dict == NULL) { |
| 13272 | PyErr_SetString(PyExc_TypeError, |
| 13273 | "format requires a mapping"); |
| 13274 | goto onError; |
| 13275 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13276 | ++fmtpos; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13277 | --fmtcnt; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13278 | keystart = fmtpos; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13279 | /* Skip over balanced parentheses */ |
| 13280 | while (pcount > 0 && --fmtcnt >= 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13281 | if (PyUnicode_READ(fmtkind, fmt, fmtpos) == ')') |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13282 | --pcount; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13283 | else if (PyUnicode_READ(fmtkind, fmt, fmtpos) == '(') |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13284 | ++pcount; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13285 | fmtpos++; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13286 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13287 | keylen = fmtpos - keystart - 1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13288 | if (fmtcnt < 0 || pcount > 0) { |
| 13289 | PyErr_SetString(PyExc_ValueError, |
| 13290 | "incomplete format key"); |
| 13291 | goto onError; |
| 13292 | } |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 13293 | key = PyUnicode_Substring(uformat, |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 13294 | keystart, keystart + keylen); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13295 | if (key == NULL) |
| 13296 | goto onError; |
| 13297 | if (args_owned) { |
| 13298 | Py_DECREF(args); |
| 13299 | args_owned = 0; |
| 13300 | } |
| 13301 | args = PyObject_GetItem(dict, key); |
| 13302 | Py_DECREF(key); |
| 13303 | if (args == NULL) { |
| 13304 | goto onError; |
| 13305 | } |
| 13306 | args_owned = 1; |
| 13307 | arglen = -1; |
| 13308 | argidx = -2; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13309 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13310 | while (--fmtcnt >= 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13311 | switch (c = PyUnicode_READ(fmtkind, fmt, fmtpos++)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13312 | case '-': flags |= F_LJUST; continue; |
| 13313 | case '+': flags |= F_SIGN; continue; |
| 13314 | case ' ': flags |= F_BLANK; continue; |
| 13315 | case '#': flags |= F_ALT; continue; |
| 13316 | case '0': flags |= F_ZERO; continue; |
| 13317 | } |
| 13318 | break; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13319 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13320 | if (c == '*') { |
| 13321 | v = getnextarg(args, arglen, &argidx); |
| 13322 | if (v == NULL) |
| 13323 | goto onError; |
| 13324 | if (!PyLong_Check(v)) { |
| 13325 | PyErr_SetString(PyExc_TypeError, |
| 13326 | "* wants int"); |
| 13327 | goto onError; |
| 13328 | } |
| 13329 | width = PyLong_AsLong(v); |
| 13330 | if (width == -1 && PyErr_Occurred()) |
| 13331 | goto onError; |
| 13332 | if (width < 0) { |
| 13333 | flags |= F_LJUST; |
| 13334 | width = -width; |
| 13335 | } |
| 13336 | if (--fmtcnt >= 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13337 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13338 | } |
| 13339 | else if (c >= '0' && c <= '9') { |
| 13340 | width = c - '0'; |
| 13341 | while (--fmtcnt >= 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13342 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13343 | if (c < '0' || c > '9') |
| 13344 | break; |
| 13345 | if ((width*10) / 10 != width) { |
| 13346 | PyErr_SetString(PyExc_ValueError, |
| 13347 | "width too big"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13348 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13349 | } |
| 13350 | width = width*10 + (c - '0'); |
| 13351 | } |
| 13352 | } |
| 13353 | if (c == '.') { |
| 13354 | prec = 0; |
| 13355 | if (--fmtcnt >= 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13356 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13357 | if (c == '*') { |
| 13358 | v = getnextarg(args, arglen, &argidx); |
| 13359 | if (v == NULL) |
| 13360 | goto onError; |
| 13361 | if (!PyLong_Check(v)) { |
| 13362 | PyErr_SetString(PyExc_TypeError, |
| 13363 | "* wants int"); |
| 13364 | goto onError; |
| 13365 | } |
| 13366 | prec = PyLong_AsLong(v); |
| 13367 | if (prec == -1 && PyErr_Occurred()) |
| 13368 | goto onError; |
| 13369 | if (prec < 0) |
| 13370 | prec = 0; |
| 13371 | if (--fmtcnt >= 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13372 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13373 | } |
| 13374 | else if (c >= '0' && c <= '9') { |
| 13375 | prec = c - '0'; |
| 13376 | while (--fmtcnt >= 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13377 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13378 | if (c < '0' || c > '9') |
| 13379 | break; |
| 13380 | if ((prec*10) / 10 != prec) { |
| 13381 | PyErr_SetString(PyExc_ValueError, |
| 13382 | "prec too big"); |
| 13383 | goto onError; |
| 13384 | } |
| 13385 | prec = prec*10 + (c - '0'); |
| 13386 | } |
| 13387 | } |
| 13388 | } /* prec */ |
| 13389 | if (fmtcnt >= 0) { |
| 13390 | if (c == 'h' || c == 'l' || c == 'L') { |
| 13391 | if (--fmtcnt >= 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13392 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13393 | } |
| 13394 | } |
| 13395 | if (fmtcnt < 0) { |
| 13396 | PyErr_SetString(PyExc_ValueError, |
| 13397 | "incomplete format"); |
| 13398 | goto onError; |
| 13399 | } |
| 13400 | if (c != '%') { |
| 13401 | v = getnextarg(args, arglen, &argidx); |
| 13402 | if (v == NULL) |
| 13403 | goto onError; |
| 13404 | } |
| 13405 | sign = 0; |
| 13406 | fill = ' '; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13407 | fillobj = blank; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13408 | switch (c) { |
| 13409 | |
| 13410 | case '%': |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13411 | _PyAccu_Accumulate(&acc, percent); |
| 13412 | continue; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13413 | |
| 13414 | case 's': |
| 13415 | case 'r': |
| 13416 | case 'a': |
Victor Stinner | 808fc0a | 2010-03-22 12:50:40 +0000 | [diff] [blame] | 13417 | if (PyUnicode_CheckExact(v) && c == 's') { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13418 | temp = v; |
| 13419 | Py_INCREF(temp); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13420 | } |
| 13421 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13422 | if (c == 's') |
| 13423 | temp = PyObject_Str(v); |
| 13424 | else if (c == 'r') |
| 13425 | temp = PyObject_Repr(v); |
| 13426 | else |
| 13427 | temp = PyObject_ASCII(v); |
| 13428 | if (temp == NULL) |
| 13429 | goto onError; |
| 13430 | if (PyUnicode_Check(temp)) |
| 13431 | /* nothing to do */; |
| 13432 | else { |
| 13433 | Py_DECREF(temp); |
| 13434 | PyErr_SetString(PyExc_TypeError, |
| 13435 | "%s argument has non-string str()"); |
| 13436 | goto onError; |
| 13437 | } |
| 13438 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13439 | if (PyUnicode_READY(temp) == -1) { |
| 13440 | Py_CLEAR(temp); |
| 13441 | goto onError; |
| 13442 | } |
| 13443 | pbuf = PyUnicode_DATA(temp); |
| 13444 | kind = PyUnicode_KIND(temp); |
| 13445 | len = PyUnicode_GET_LENGTH(temp); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13446 | if (prec >= 0 && len > prec) |
| 13447 | len = prec; |
| 13448 | break; |
| 13449 | |
| 13450 | case 'i': |
| 13451 | case 'd': |
| 13452 | case 'u': |
| 13453 | case 'o': |
| 13454 | case 'x': |
| 13455 | case 'X': |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13456 | isnumok = 0; |
| 13457 | if (PyNumber_Check(v)) { |
| 13458 | PyObject *iobj=NULL; |
| 13459 | |
| 13460 | if (PyLong_Check(v)) { |
| 13461 | iobj = v; |
| 13462 | Py_INCREF(iobj); |
| 13463 | } |
| 13464 | else { |
| 13465 | iobj = PyNumber_Long(v); |
| 13466 | } |
| 13467 | if (iobj!=NULL) { |
| 13468 | if (PyLong_Check(iobj)) { |
| 13469 | isnumok = 1; |
Senthil Kumaran | 9ebe08d | 2011-07-03 21:03:16 -0700 | [diff] [blame] | 13470 | temp = formatlong(iobj, flags, prec, (c == 'i'? 'd': c)); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13471 | Py_DECREF(iobj); |
| 13472 | if (!temp) |
| 13473 | goto onError; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13474 | if (PyUnicode_READY(temp) == -1) { |
| 13475 | Py_CLEAR(temp); |
| 13476 | goto onError; |
| 13477 | } |
| 13478 | pbuf = PyUnicode_DATA(temp); |
| 13479 | kind = PyUnicode_KIND(temp); |
| 13480 | len = PyUnicode_GET_LENGTH(temp); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13481 | sign = 1; |
| 13482 | } |
| 13483 | else { |
| 13484 | Py_DECREF(iobj); |
| 13485 | } |
| 13486 | } |
| 13487 | } |
| 13488 | if (!isnumok) { |
| 13489 | PyErr_Format(PyExc_TypeError, |
| 13490 | "%%%c format: a number is required, " |
| 13491 | "not %.200s", (char)c, Py_TYPE(v)->tp_name); |
| 13492 | goto onError; |
| 13493 | } |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13494 | if (flags & F_ZERO) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13495 | fill = '0'; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13496 | fillobj = zero; |
| 13497 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13498 | break; |
| 13499 | |
| 13500 | case 'e': |
| 13501 | case 'E': |
| 13502 | case 'f': |
| 13503 | case 'F': |
| 13504 | case 'g': |
| 13505 | case 'G': |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13506 | temp = formatfloat(v, flags, prec, c); |
| 13507 | if (!temp) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13508 | goto onError; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13509 | if (PyUnicode_READY(temp) == -1) { |
| 13510 | Py_CLEAR(temp); |
| 13511 | goto onError; |
| 13512 | } |
| 13513 | pbuf = PyUnicode_DATA(temp); |
| 13514 | kind = PyUnicode_KIND(temp); |
| 13515 | len = PyUnicode_GET_LENGTH(temp); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13516 | sign = 1; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13517 | if (flags & F_ZERO) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13518 | fill = '0'; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13519 | fillobj = zero; |
| 13520 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13521 | break; |
| 13522 | |
| 13523 | case 'c': |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13524 | { |
| 13525 | Py_UCS4 ch = formatchar(v); |
| 13526 | if (ch == (Py_UCS4) -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13527 | goto onError; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13528 | temp = _PyUnicode_FromUCS4(&ch, 1); |
| 13529 | if (temp == NULL) |
| 13530 | goto onError; |
| 13531 | pbuf = PyUnicode_DATA(temp); |
| 13532 | kind = PyUnicode_KIND(temp); |
| 13533 | len = PyUnicode_GET_LENGTH(temp); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13534 | break; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13535 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13536 | |
| 13537 | default: |
| 13538 | PyErr_Format(PyExc_ValueError, |
| 13539 | "unsupported format character '%c' (0x%x) " |
| 13540 | "at index %zd", |
| 13541 | (31<=c && c<=126) ? (char)c : '?', |
| 13542 | (int)c, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13543 | fmtpos - 1); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13544 | goto onError; |
| 13545 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13546 | /* pbuf is initialized here. */ |
| 13547 | pindex = 0; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13548 | if (sign) { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13549 | if (PyUnicode_READ(kind, pbuf, pindex) == '-') { |
| 13550 | signobj = minus; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13551 | len--; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13552 | pindex++; |
| 13553 | } |
| 13554 | else if (PyUnicode_READ(kind, pbuf, pindex) == '+') { |
| 13555 | signobj = plus; |
| 13556 | len--; |
| 13557 | pindex++; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13558 | } |
| 13559 | else if (flags & F_SIGN) |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13560 | signobj = plus; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13561 | else if (flags & F_BLANK) |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13562 | signobj = blank; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13563 | else |
| 13564 | sign = 0; |
| 13565 | } |
| 13566 | if (width < len) |
| 13567 | width = len; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13568 | if (sign) { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13569 | if (fill != ' ') { |
| 13570 | assert(signobj != NULL); |
| 13571 | if (_PyAccu_Accumulate(&acc, signobj)) |
| 13572 | goto onError; |
| 13573 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13574 | if (width > len) |
| 13575 | width--; |
| 13576 | } |
| 13577 | if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13578 | assert(PyUnicode_READ(kind, pbuf, pindex) == '0'); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13579 | assert(PyUnicode_READ(kind, pbuf, pindex + 1) == c); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13580 | if (fill != ' ') { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13581 | second = get_latin1_char( |
| 13582 | PyUnicode_READ(kind, pbuf, pindex + 1)); |
| 13583 | pindex += 2; |
| 13584 | if (second == NULL || |
| 13585 | _PyAccu_Accumulate(&acc, zero) || |
| 13586 | _PyAccu_Accumulate(&acc, second)) |
| 13587 | goto onError; |
| 13588 | Py_CLEAR(second); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13589 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13590 | width -= 2; |
| 13591 | if (width < 0) |
| 13592 | width = 0; |
| 13593 | len -= 2; |
| 13594 | } |
| 13595 | if (width > len && !(flags & F_LJUST)) { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13596 | assert(fillobj != NULL); |
Antoine Pitrou | 978b9d2 | 2011-10-07 12:35:48 +0200 | [diff] [blame] | 13597 | if (repeat_accumulate(&acc, fillobj, width - len)) |
| 13598 | goto onError; |
| 13599 | width = len; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13600 | } |
| 13601 | if (fill == ' ') { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13602 | if (sign) { |
| 13603 | assert(signobj != NULL); |
| 13604 | if (_PyAccu_Accumulate(&acc, signobj)) |
| 13605 | goto onError; |
| 13606 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13607 | if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13608 | assert(PyUnicode_READ(kind, pbuf, pindex) == '0'); |
| 13609 | assert(PyUnicode_READ(kind, pbuf, pindex+1) == c); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13610 | second = get_latin1_char( |
| 13611 | PyUnicode_READ(kind, pbuf, pindex + 1)); |
| 13612 | pindex += 2; |
| 13613 | if (second == NULL || |
| 13614 | _PyAccu_Accumulate(&acc, zero) || |
| 13615 | _PyAccu_Accumulate(&acc, second)) |
| 13616 | goto onError; |
| 13617 | Py_CLEAR(second); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13618 | } |
| 13619 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13620 | /* Copy all characters, preserving len */ |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13621 | if (temp != NULL) { |
| 13622 | assert(pbuf == PyUnicode_DATA(temp)); |
| 13623 | v = PyUnicode_Substring(temp, pindex, pindex + len); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13624 | } |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13625 | else { |
| 13626 | const char *p = (const char *) pbuf; |
| 13627 | assert(pbuf != NULL); |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 13628 | p += kind * pindex; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13629 | v = PyUnicode_FromKindAndData(kind, p, len); |
| 13630 | } |
| 13631 | if (v == NULL) |
| 13632 | goto onError; |
| 13633 | r = _PyAccu_Accumulate(&acc, v); |
| 13634 | Py_DECREF(v); |
| 13635 | if (r) |
| 13636 | goto onError; |
Antoine Pitrou | 978b9d2 | 2011-10-07 12:35:48 +0200 | [diff] [blame] | 13637 | if (width > len && repeat_accumulate(&acc, blank, width - len)) |
| 13638 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13639 | if (dict && (argidx < arglen) && c != '%') { |
| 13640 | PyErr_SetString(PyExc_TypeError, |
| 13641 | "not all arguments converted during string formatting"); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13642 | goto onError; |
| 13643 | } |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13644 | Py_CLEAR(temp); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13645 | } /* '%' */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13646 | } /* until end */ |
| 13647 | if (argidx < arglen && !dict) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13648 | PyErr_SetString(PyExc_TypeError, |
| 13649 | "not all arguments converted during string formatting"); |
| 13650 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13651 | } |
| 13652 | |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13653 | result = _PyAccu_Finish(&acc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13654 | if (args_owned) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13655 | Py_DECREF(args); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13656 | } |
| 13657 | Py_DECREF(uformat); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13658 | Py_XDECREF(temp); |
| 13659 | Py_XDECREF(second); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 13660 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13661 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13662 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13663 | Py_DECREF(uformat); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13664 | Py_XDECREF(temp); |
| 13665 | Py_XDECREF(second); |
| 13666 | _PyAccu_Destroy(&acc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13667 | if (args_owned) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13668 | Py_DECREF(args); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13669 | } |
| 13670 | return NULL; |
| 13671 | } |
| 13672 | |
Jeremy Hylton | 938ace6 | 2002-07-17 16:30:39 +0000 | [diff] [blame] | 13673 | static PyObject * |
Guido van Rossum | e023fe0 | 2001-08-30 03:12:59 +0000 | [diff] [blame] | 13674 | unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds); |
| 13675 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 13676 | static PyObject * |
| 13677 | unicode_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 13678 | { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13679 | PyObject *x = NULL; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13680 | static char *kwlist[] = {"object", "encoding", "errors", 0}; |
| 13681 | char *encoding = NULL; |
| 13682 | char *errors = NULL; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 13683 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13684 | if (type != &PyUnicode_Type) |
| 13685 | return unicode_subtype_new(type, args, kwds); |
| 13686 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:str", |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13687 | kwlist, &x, &encoding, &errors)) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13688 | return NULL; |
| 13689 | if (x == NULL) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 13690 | return PyUnicode_New(0, 0); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13691 | if (encoding == NULL && errors == NULL) |
| 13692 | return PyObject_Str(x); |
| 13693 | else |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13694 | return PyUnicode_FromEncodedObject(x, encoding, errors); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 13695 | } |
| 13696 | |
Guido van Rossum | e023fe0 | 2001-08-30 03:12:59 +0000 | [diff] [blame] | 13697 | static PyObject * |
| 13698 | unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 13699 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13700 | PyObject *unicode, *self; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13701 | Py_ssize_t length, char_size; |
| 13702 | int share_wstr, share_utf8; |
| 13703 | unsigned int kind; |
| 13704 | void *data; |
Guido van Rossum | e023fe0 | 2001-08-30 03:12:59 +0000 | [diff] [blame] | 13705 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13706 | assert(PyType_IsSubtype(type, &PyUnicode_Type)); |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13707 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13708 | unicode = unicode_new(&PyUnicode_Type, args, kwds); |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13709 | if (unicode == NULL) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13710 | return NULL; |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 13711 | assert(_PyUnicode_CHECK(unicode)); |
Victor Stinner | e06e145 | 2011-10-04 20:52:31 +0200 | [diff] [blame] | 13712 | if (PyUnicode_READY(unicode)) |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13713 | return NULL; |
| 13714 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13715 | self = type->tp_alloc(type, 0); |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13716 | if (self == NULL) { |
| 13717 | Py_DECREF(unicode); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13718 | return NULL; |
| 13719 | } |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13720 | kind = PyUnicode_KIND(unicode); |
| 13721 | length = PyUnicode_GET_LENGTH(unicode); |
| 13722 | |
| 13723 | _PyUnicode_LENGTH(self) = length; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 13724 | #ifdef Py_DEBUG |
| 13725 | _PyUnicode_HASH(self) = -1; |
| 13726 | #else |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13727 | _PyUnicode_HASH(self) = _PyUnicode_HASH(unicode); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 13728 | #endif |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13729 | _PyUnicode_STATE(self).interned = 0; |
| 13730 | _PyUnicode_STATE(self).kind = kind; |
| 13731 | _PyUnicode_STATE(self).compact = 0; |
Victor Stinner | 3cf4637 | 2011-10-03 14:42:15 +0200 | [diff] [blame] | 13732 | _PyUnicode_STATE(self).ascii = _PyUnicode_STATE(unicode).ascii; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13733 | _PyUnicode_STATE(self).ready = 1; |
| 13734 | _PyUnicode_WSTR(self) = NULL; |
| 13735 | _PyUnicode_UTF8_LENGTH(self) = 0; |
| 13736 | _PyUnicode_UTF8(self) = NULL; |
| 13737 | _PyUnicode_WSTR_LENGTH(self) = 0; |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 13738 | _PyUnicode_DATA_ANY(self) = NULL; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13739 | |
| 13740 | share_utf8 = 0; |
| 13741 | share_wstr = 0; |
| 13742 | if (kind == PyUnicode_1BYTE_KIND) { |
| 13743 | char_size = 1; |
| 13744 | if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128) |
| 13745 | share_utf8 = 1; |
| 13746 | } |
| 13747 | else if (kind == PyUnicode_2BYTE_KIND) { |
| 13748 | char_size = 2; |
| 13749 | if (sizeof(wchar_t) == 2) |
| 13750 | share_wstr = 1; |
| 13751 | } |
| 13752 | else { |
| 13753 | assert(kind == PyUnicode_4BYTE_KIND); |
| 13754 | char_size = 4; |
| 13755 | if (sizeof(wchar_t) == 4) |
| 13756 | share_wstr = 1; |
| 13757 | } |
| 13758 | |
| 13759 | /* Ensure we won't overflow the length. */ |
| 13760 | if (length > (PY_SSIZE_T_MAX / char_size - 1)) { |
| 13761 | PyErr_NoMemory(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13762 | goto onError; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13763 | } |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13764 | data = PyObject_MALLOC((length + 1) * char_size); |
| 13765 | if (data == NULL) { |
| 13766 | PyErr_NoMemory(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13767 | goto onError; |
| 13768 | } |
| 13769 | |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 13770 | _PyUnicode_DATA_ANY(self) = data; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13771 | if (share_utf8) { |
| 13772 | _PyUnicode_UTF8_LENGTH(self) = length; |
| 13773 | _PyUnicode_UTF8(self) = data; |
| 13774 | } |
| 13775 | if (share_wstr) { |
| 13776 | _PyUnicode_WSTR_LENGTH(self) = length; |
| 13777 | _PyUnicode_WSTR(self) = (wchar_t *)data; |
| 13778 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13779 | |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13780 | Py_MEMCPY(data, PyUnicode_DATA(unicode), |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 13781 | kind * (length + 1)); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 13782 | assert(_PyUnicode_CheckConsistency(self, 1)); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 13783 | #ifdef Py_DEBUG |
| 13784 | _PyUnicode_HASH(self) = _PyUnicode_HASH(unicode); |
| 13785 | #endif |
Victor Stinner | dd18d3a | 2011-10-22 11:08:10 +0200 | [diff] [blame] | 13786 | Py_DECREF(unicode); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 13787 | return self; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13788 | |
| 13789 | onError: |
| 13790 | Py_DECREF(unicode); |
| 13791 | Py_DECREF(self); |
| 13792 | return NULL; |
Guido van Rossum | e023fe0 | 2001-08-30 03:12:59 +0000 | [diff] [blame] | 13793 | } |
| 13794 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 13795 | PyDoc_STRVAR(unicode_doc, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13796 | "str(string[, encoding[, errors]]) -> str\n\ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 13797 | \n\ |
Collin Winter | d474ce8 | 2007-08-07 19:42:11 +0000 | [diff] [blame] | 13798 | Create a new string object from the given encoded string.\n\ |
Skip Montanaro | 35b37a5 | 2002-07-26 16:22:46 +0000 | [diff] [blame] | 13799 | encoding defaults to the current default string encoding.\n\ |
| 13800 | errors can be 'strict', 'replace' or 'ignore' and defaults to 'strict'."); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 13801 | |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 13802 | static PyObject *unicode_iter(PyObject *seq); |
| 13803 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13804 | PyTypeObject PyUnicode_Type = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 13805 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13806 | "str", /* tp_name */ |
| 13807 | sizeof(PyUnicodeObject), /* tp_size */ |
| 13808 | 0, /* tp_itemsize */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13809 | /* Slots */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13810 | (destructor)unicode_dealloc, /* tp_dealloc */ |
| 13811 | 0, /* tp_print */ |
| 13812 | 0, /* tp_getattr */ |
| 13813 | 0, /* tp_setattr */ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 13814 | 0, /* tp_reserved */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13815 | unicode_repr, /* tp_repr */ |
| 13816 | &unicode_as_number, /* tp_as_number */ |
| 13817 | &unicode_as_sequence, /* tp_as_sequence */ |
| 13818 | &unicode_as_mapping, /* tp_as_mapping */ |
| 13819 | (hashfunc) unicode_hash, /* tp_hash*/ |
| 13820 | 0, /* tp_call*/ |
| 13821 | (reprfunc) unicode_str, /* tp_str */ |
| 13822 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 13823 | 0, /* tp_setattro */ |
| 13824 | 0, /* tp_as_buffer */ |
| 13825 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13826 | Py_TPFLAGS_UNICODE_SUBCLASS, /* tp_flags */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13827 | unicode_doc, /* tp_doc */ |
| 13828 | 0, /* tp_traverse */ |
| 13829 | 0, /* tp_clear */ |
| 13830 | PyUnicode_RichCompare, /* tp_richcompare */ |
| 13831 | 0, /* tp_weaklistoffset */ |
| 13832 | unicode_iter, /* tp_iter */ |
| 13833 | 0, /* tp_iternext */ |
| 13834 | unicode_methods, /* tp_methods */ |
| 13835 | 0, /* tp_members */ |
| 13836 | 0, /* tp_getset */ |
| 13837 | &PyBaseObject_Type, /* tp_base */ |
| 13838 | 0, /* tp_dict */ |
| 13839 | 0, /* tp_descr_get */ |
| 13840 | 0, /* tp_descr_set */ |
| 13841 | 0, /* tp_dictoffset */ |
| 13842 | 0, /* tp_init */ |
| 13843 | 0, /* tp_alloc */ |
| 13844 | unicode_new, /* tp_new */ |
| 13845 | PyObject_Del, /* tp_free */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13846 | }; |
| 13847 | |
| 13848 | /* Initialize the Unicode implementation */ |
| 13849 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 13850 | int _PyUnicode_Init(void) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13851 | { |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 13852 | int i; |
| 13853 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 13854 | /* XXX - move this array to unicodectype.c ? */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13855 | Py_UCS2 linebreak[] = { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 13856 | 0x000A, /* LINE FEED */ |
| 13857 | 0x000D, /* CARRIAGE RETURN */ |
| 13858 | 0x001C, /* FILE SEPARATOR */ |
| 13859 | 0x001D, /* GROUP SEPARATOR */ |
| 13860 | 0x001E, /* RECORD SEPARATOR */ |
| 13861 | 0x0085, /* NEXT LINE */ |
| 13862 | 0x2028, /* LINE SEPARATOR */ |
| 13863 | 0x2029, /* PARAGRAPH SEPARATOR */ |
| 13864 | }; |
| 13865 | |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 13866 | /* Init the implementation */ |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 13867 | unicode_empty = PyUnicode_New(0, 0); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 13868 | assert(_PyUnicode_CheckConsistency(unicode_empty, 1)); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 13869 | if (!unicode_empty) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13870 | Py_FatalError("Can't create empty string"); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 13871 | |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 13872 | for (i = 0; i < 256; i++) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13873 | unicode_latin1[i] = NULL; |
Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 13874 | if (PyType_Ready(&PyUnicode_Type) < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13875 | Py_FatalError("Can't initialize 'unicode'"); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 13876 | |
| 13877 | /* initialize the linebreak bloom filter */ |
| 13878 | bloom_linebreak = make_bloom_mask( |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13879 | PyUnicode_2BYTE_KIND, linebreak, |
Victor Stinner | 6394188 | 2011-09-29 00:42:28 +0200 | [diff] [blame] | 13880 | Py_ARRAY_LENGTH(linebreak)); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 13881 | |
| 13882 | PyType_Ready(&EncodingMapType); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 13883 | |
| 13884 | #ifdef HAVE_MBCS |
| 13885 | winver.dwOSVersionInfoSize = sizeof(winver); |
| 13886 | if (!GetVersionEx((OSVERSIONINFO*)&winver)) { |
| 13887 | PyErr_SetFromWindowsErr(0); |
| 13888 | return -1; |
| 13889 | } |
| 13890 | #endif |
| 13891 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13892 | } |
| 13893 | |
| 13894 | /* Finalize the Unicode implementation */ |
| 13895 | |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 13896 | int |
| 13897 | PyUnicode_ClearFreeList(void) |
| 13898 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13899 | return 0; |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 13900 | } |
| 13901 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13902 | void |
Thomas Wouters | 7889010 | 2000-07-22 19:25:51 +0000 | [diff] [blame] | 13903 | _PyUnicode_Fini(void) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13904 | { |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 13905 | int i; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13906 | |
Guido van Rossum | 4ae8ef8 | 2000-10-03 18:09:04 +0000 | [diff] [blame] | 13907 | Py_XDECREF(unicode_empty); |
| 13908 | unicode_empty = NULL; |
Barry Warsaw | 5b4c228 | 2000-10-03 20:45:26 +0000 | [diff] [blame] | 13909 | |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 13910 | for (i = 0; i < 256; i++) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13911 | if (unicode_latin1[i]) { |
| 13912 | Py_DECREF(unicode_latin1[i]); |
| 13913 | unicode_latin1[i] = NULL; |
| 13914 | } |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 13915 | } |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 13916 | _PyUnicode_ClearStaticStrings(); |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 13917 | (void)PyUnicode_ClearFreeList(); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13918 | } |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 13919 | |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 13920 | void |
| 13921 | PyUnicode_InternInPlace(PyObject **p) |
| 13922 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13923 | register PyObject *s = *p; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13924 | PyObject *t; |
Victor Stinner | 4fae54c | 2011-10-03 02:01:52 +0200 | [diff] [blame] | 13925 | #ifdef Py_DEBUG |
| 13926 | assert(s != NULL); |
| 13927 | assert(_PyUnicode_CHECK(s)); |
| 13928 | #else |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13929 | if (s == NULL || !PyUnicode_Check(s)) |
Victor Stinner | 4fae54c | 2011-10-03 02:01:52 +0200 | [diff] [blame] | 13930 | return; |
| 13931 | #endif |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13932 | /* If it's a subclass, we don't really know what putting |
| 13933 | it in the interned dict might do. */ |
| 13934 | if (!PyUnicode_CheckExact(s)) |
| 13935 | return; |
| 13936 | if (PyUnicode_CHECK_INTERNED(s)) |
| 13937 | return; |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 13938 | if (_PyUnicode_READY_REPLACE(p)) { |
Victor Stinner | 6b56a7f | 2011-10-04 20:04:52 +0200 | [diff] [blame] | 13939 | assert(0 && "_PyUnicode_READY_REPLACE fail in PyUnicode_InternInPlace"); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13940 | return; |
| 13941 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13942 | s = *p; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13943 | if (interned == NULL) { |
| 13944 | interned = PyDict_New(); |
| 13945 | if (interned == NULL) { |
| 13946 | PyErr_Clear(); /* Don't leave an exception */ |
| 13947 | return; |
| 13948 | } |
| 13949 | } |
| 13950 | /* It might be that the GetItem call fails even |
| 13951 | though the key is present in the dictionary, |
| 13952 | namely when this happens during a stack overflow. */ |
| 13953 | Py_ALLOW_RECURSION |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 13954 | t = PyDict_GetItem(interned, s); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13955 | Py_END_ALLOW_RECURSION |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 13956 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13957 | if (t) { |
| 13958 | Py_INCREF(t); |
| 13959 | Py_DECREF(*p); |
| 13960 | *p = t; |
| 13961 | return; |
| 13962 | } |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 13963 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13964 | PyThreadState_GET()->recursion_critical = 1; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 13965 | if (PyDict_SetItem(interned, s, s) < 0) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13966 | PyErr_Clear(); |
| 13967 | PyThreadState_GET()->recursion_critical = 0; |
| 13968 | return; |
| 13969 | } |
| 13970 | PyThreadState_GET()->recursion_critical = 0; |
| 13971 | /* The two references in interned are not counted by refcnt. |
| 13972 | The deallocator will take care of this */ |
| 13973 | Py_REFCNT(s) -= 2; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13974 | _PyUnicode_STATE(s).interned = SSTATE_INTERNED_MORTAL; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 13975 | } |
| 13976 | |
| 13977 | void |
| 13978 | PyUnicode_InternImmortal(PyObject **p) |
| 13979 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13980 | PyUnicode_InternInPlace(p); |
| 13981 | if (PyUnicode_CHECK_INTERNED(*p) != SSTATE_INTERNED_IMMORTAL) { |
Victor Stinner | af9e4b8 | 2011-10-23 20:07:00 +0200 | [diff] [blame] | 13982 | _PyUnicode_STATE(*p).interned = SSTATE_INTERNED_IMMORTAL; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13983 | Py_INCREF(*p); |
| 13984 | } |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 13985 | } |
| 13986 | |
| 13987 | PyObject * |
| 13988 | PyUnicode_InternFromString(const char *cp) |
| 13989 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13990 | PyObject *s = PyUnicode_FromString(cp); |
| 13991 | if (s == NULL) |
| 13992 | return NULL; |
| 13993 | PyUnicode_InternInPlace(&s); |
| 13994 | return s; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 13995 | } |
| 13996 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 13997 | void |
| 13998 | _Py_ReleaseInternedUnicodeStrings(void) |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 13999 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14000 | PyObject *keys; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14001 | PyObject *s; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14002 | Py_ssize_t i, n; |
| 14003 | Py_ssize_t immortal_size = 0, mortal_size = 0; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14004 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14005 | if (interned == NULL || !PyDict_Check(interned)) |
| 14006 | return; |
| 14007 | keys = PyDict_Keys(interned); |
| 14008 | if (keys == NULL || !PyList_Check(keys)) { |
| 14009 | PyErr_Clear(); |
| 14010 | return; |
| 14011 | } |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14012 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14013 | /* Since _Py_ReleaseInternedUnicodeStrings() is intended to help a leak |
| 14014 | detector, interned unicode strings are not forcibly deallocated; |
| 14015 | rather, we give them their stolen references back, and then clear |
| 14016 | and DECREF the interned dict. */ |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14017 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14018 | n = PyList_GET_SIZE(keys); |
| 14019 | fprintf(stderr, "releasing %" PY_FORMAT_SIZE_T "d interned strings\n", |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 14020 | n); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14021 | for (i = 0; i < n; i++) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14022 | s = PyList_GET_ITEM(keys, i); |
Victor Stinner | 6b56a7f | 2011-10-04 20:04:52 +0200 | [diff] [blame] | 14023 | if (PyUnicode_READY(s) == -1) { |
| 14024 | assert(0 && "could not ready string"); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14025 | fprintf(stderr, "could not ready string\n"); |
Victor Stinner | 6b56a7f | 2011-10-04 20:04:52 +0200 | [diff] [blame] | 14026 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14027 | switch (PyUnicode_CHECK_INTERNED(s)) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14028 | case SSTATE_NOT_INTERNED: |
| 14029 | /* XXX Shouldn't happen */ |
| 14030 | break; |
| 14031 | case SSTATE_INTERNED_IMMORTAL: |
| 14032 | Py_REFCNT(s) += 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14033 | immortal_size += PyUnicode_GET_LENGTH(s); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14034 | break; |
| 14035 | case SSTATE_INTERNED_MORTAL: |
| 14036 | Py_REFCNT(s) += 2; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14037 | mortal_size += PyUnicode_GET_LENGTH(s); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14038 | break; |
| 14039 | default: |
| 14040 | Py_FatalError("Inconsistent interned string state."); |
| 14041 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14042 | _PyUnicode_STATE(s).interned = SSTATE_NOT_INTERNED; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14043 | } |
| 14044 | fprintf(stderr, "total size of all interned strings: " |
| 14045 | "%" PY_FORMAT_SIZE_T "d/%" PY_FORMAT_SIZE_T "d " |
| 14046 | "mortal/immortal\n", mortal_size, immortal_size); |
| 14047 | Py_DECREF(keys); |
| 14048 | PyDict_Clear(interned); |
| 14049 | Py_DECREF(interned); |
| 14050 | interned = NULL; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14051 | } |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14052 | |
| 14053 | |
| 14054 | /********************* Unicode Iterator **************************/ |
| 14055 | |
| 14056 | typedef struct { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14057 | PyObject_HEAD |
| 14058 | Py_ssize_t it_index; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14059 | PyObject *it_seq; /* Set to NULL when iterator is exhausted */ |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14060 | } unicodeiterobject; |
| 14061 | |
| 14062 | static void |
| 14063 | unicodeiter_dealloc(unicodeiterobject *it) |
| 14064 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14065 | _PyObject_GC_UNTRACK(it); |
| 14066 | Py_XDECREF(it->it_seq); |
| 14067 | PyObject_GC_Del(it); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14068 | } |
| 14069 | |
| 14070 | static int |
| 14071 | unicodeiter_traverse(unicodeiterobject *it, visitproc visit, void *arg) |
| 14072 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14073 | Py_VISIT(it->it_seq); |
| 14074 | return 0; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14075 | } |
| 14076 | |
| 14077 | static PyObject * |
| 14078 | unicodeiter_next(unicodeiterobject *it) |
| 14079 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14080 | PyObject *seq, *item; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14081 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14082 | assert(it != NULL); |
| 14083 | seq = it->it_seq; |
| 14084 | if (seq == NULL) |
| 14085 | return NULL; |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 14086 | assert(_PyUnicode_CHECK(seq)); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14087 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14088 | if (it->it_index < PyUnicode_GET_LENGTH(seq)) { |
| 14089 | int kind = PyUnicode_KIND(seq); |
| 14090 | void *data = PyUnicode_DATA(seq); |
| 14091 | Py_UCS4 chr = PyUnicode_READ(kind, data, it->it_index); |
| 14092 | item = PyUnicode_FromOrdinal(chr); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14093 | if (item != NULL) |
| 14094 | ++it->it_index; |
| 14095 | return item; |
| 14096 | } |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14097 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14098 | Py_DECREF(seq); |
| 14099 | it->it_seq = NULL; |
| 14100 | return NULL; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14101 | } |
| 14102 | |
| 14103 | static PyObject * |
| 14104 | unicodeiter_len(unicodeiterobject *it) |
| 14105 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14106 | Py_ssize_t len = 0; |
| 14107 | if (it->it_seq) |
Victor Stinner | c4f281e | 2011-10-11 22:11:42 +0200 | [diff] [blame] | 14108 | len = PyUnicode_GET_LENGTH(it->it_seq) - it->it_index; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14109 | return PyLong_FromSsize_t(len); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14110 | } |
| 14111 | |
| 14112 | PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it))."); |
| 14113 | |
| 14114 | static PyMethodDef unicodeiter_methods[] = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14115 | {"__length_hint__", (PyCFunction)unicodeiter_len, METH_NOARGS, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 14116 | length_hint_doc}, |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14117 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14118 | }; |
| 14119 | |
| 14120 | PyTypeObject PyUnicodeIter_Type = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14121 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 14122 | "str_iterator", /* tp_name */ |
| 14123 | sizeof(unicodeiterobject), /* tp_basicsize */ |
| 14124 | 0, /* tp_itemsize */ |
| 14125 | /* methods */ |
| 14126 | (destructor)unicodeiter_dealloc, /* tp_dealloc */ |
| 14127 | 0, /* tp_print */ |
| 14128 | 0, /* tp_getattr */ |
| 14129 | 0, /* tp_setattr */ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 14130 | 0, /* tp_reserved */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14131 | 0, /* tp_repr */ |
| 14132 | 0, /* tp_as_number */ |
| 14133 | 0, /* tp_as_sequence */ |
| 14134 | 0, /* tp_as_mapping */ |
| 14135 | 0, /* tp_hash */ |
| 14136 | 0, /* tp_call */ |
| 14137 | 0, /* tp_str */ |
| 14138 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 14139 | 0, /* tp_setattro */ |
| 14140 | 0, /* tp_as_buffer */ |
| 14141 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ |
| 14142 | 0, /* tp_doc */ |
| 14143 | (traverseproc)unicodeiter_traverse, /* tp_traverse */ |
| 14144 | 0, /* tp_clear */ |
| 14145 | 0, /* tp_richcompare */ |
| 14146 | 0, /* tp_weaklistoffset */ |
| 14147 | PyObject_SelfIter, /* tp_iter */ |
| 14148 | (iternextfunc)unicodeiter_next, /* tp_iternext */ |
| 14149 | unicodeiter_methods, /* tp_methods */ |
| 14150 | 0, |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14151 | }; |
| 14152 | |
| 14153 | static PyObject * |
| 14154 | unicode_iter(PyObject *seq) |
| 14155 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14156 | unicodeiterobject *it; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14157 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14158 | if (!PyUnicode_Check(seq)) { |
| 14159 | PyErr_BadInternalCall(); |
| 14160 | return NULL; |
| 14161 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14162 | if (PyUnicode_READY(seq) == -1) |
| 14163 | return NULL; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14164 | it = PyObject_GC_New(unicodeiterobject, &PyUnicodeIter_Type); |
| 14165 | if (it == NULL) |
| 14166 | return NULL; |
| 14167 | it->it_index = 0; |
| 14168 | Py_INCREF(seq); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14169 | it->it_seq = seq; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14170 | _PyObject_GC_TRACK(it); |
| 14171 | return (PyObject *)it; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14172 | } |
| 14173 | |
Martin v. Löwis | 0d3072e | 2011-10-31 08:40:56 +0100 | [diff] [blame] | 14174 | |
| 14175 | size_t |
| 14176 | Py_UNICODE_strlen(const Py_UNICODE *u) |
| 14177 | { |
| 14178 | int res = 0; |
| 14179 | while(*u++) |
| 14180 | res++; |
| 14181 | return res; |
| 14182 | } |
| 14183 | |
| 14184 | Py_UNICODE* |
| 14185 | Py_UNICODE_strcpy(Py_UNICODE *s1, const Py_UNICODE *s2) |
| 14186 | { |
| 14187 | Py_UNICODE *u = s1; |
| 14188 | while ((*u++ = *s2++)); |
| 14189 | return s1; |
| 14190 | } |
| 14191 | |
| 14192 | Py_UNICODE* |
| 14193 | Py_UNICODE_strncpy(Py_UNICODE *s1, const Py_UNICODE *s2, size_t n) |
| 14194 | { |
| 14195 | Py_UNICODE *u = s1; |
| 14196 | while ((*u++ = *s2++)) |
| 14197 | if (n-- == 0) |
| 14198 | break; |
| 14199 | return s1; |
| 14200 | } |
| 14201 | |
| 14202 | Py_UNICODE* |
| 14203 | Py_UNICODE_strcat(Py_UNICODE *s1, const Py_UNICODE *s2) |
| 14204 | { |
| 14205 | Py_UNICODE *u1 = s1; |
| 14206 | u1 += Py_UNICODE_strlen(u1); |
| 14207 | Py_UNICODE_strcpy(u1, s2); |
| 14208 | return s1; |
| 14209 | } |
| 14210 | |
| 14211 | int |
| 14212 | Py_UNICODE_strcmp(const Py_UNICODE *s1, const Py_UNICODE *s2) |
| 14213 | { |
| 14214 | while (*s1 && *s2 && *s1 == *s2) |
| 14215 | s1++, s2++; |
| 14216 | if (*s1 && *s2) |
| 14217 | return (*s1 < *s2) ? -1 : +1; |
| 14218 | if (*s1) |
| 14219 | return 1; |
| 14220 | if (*s2) |
| 14221 | return -1; |
| 14222 | return 0; |
| 14223 | } |
| 14224 | |
| 14225 | int |
| 14226 | Py_UNICODE_strncmp(const Py_UNICODE *s1, const Py_UNICODE *s2, size_t n) |
| 14227 | { |
| 14228 | register Py_UNICODE u1, u2; |
| 14229 | for (; n != 0; n--) { |
| 14230 | u1 = *s1; |
| 14231 | u2 = *s2; |
| 14232 | if (u1 != u2) |
| 14233 | return (u1 < u2) ? -1 : +1; |
| 14234 | if (u1 == '\0') |
| 14235 | return 0; |
| 14236 | s1++; |
| 14237 | s2++; |
| 14238 | } |
| 14239 | return 0; |
| 14240 | } |
| 14241 | |
| 14242 | Py_UNICODE* |
| 14243 | Py_UNICODE_strchr(const Py_UNICODE *s, Py_UNICODE c) |
| 14244 | { |
| 14245 | const Py_UNICODE *p; |
| 14246 | for (p = s; *p; p++) |
| 14247 | if (*p == c) |
| 14248 | return (Py_UNICODE*)p; |
| 14249 | return NULL; |
| 14250 | } |
| 14251 | |
| 14252 | Py_UNICODE* |
| 14253 | Py_UNICODE_strrchr(const Py_UNICODE *s, Py_UNICODE c) |
| 14254 | { |
| 14255 | const Py_UNICODE *p; |
| 14256 | p = s + Py_UNICODE_strlen(s); |
| 14257 | while (p != s) { |
| 14258 | p--; |
| 14259 | if (*p == c) |
| 14260 | return (Py_UNICODE*)p; |
| 14261 | } |
| 14262 | return NULL; |
| 14263 | } |
Victor Stinner | 331ea92 | 2010-08-10 16:37:20 +0000 | [diff] [blame] | 14264 | |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14265 | Py_UNICODE* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14266 | PyUnicode_AsUnicodeCopy(PyObject *unicode) |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14267 | { |
Victor Stinner | 577db2c | 2011-10-11 22:12:48 +0200 | [diff] [blame] | 14268 | Py_UNICODE *u, *copy; |
Victor Stinner | 57ffa9d | 2011-10-23 20:10:08 +0200 | [diff] [blame] | 14269 | Py_ssize_t len, size; |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14270 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14271 | if (!PyUnicode_Check(unicode)) { |
| 14272 | PyErr_BadArgument(); |
| 14273 | return NULL; |
| 14274 | } |
Victor Stinner | 57ffa9d | 2011-10-23 20:10:08 +0200 | [diff] [blame] | 14275 | u = PyUnicode_AsUnicodeAndSize(unicode, &len); |
Victor Stinner | 577db2c | 2011-10-11 22:12:48 +0200 | [diff] [blame] | 14276 | if (u == NULL) |
| 14277 | return NULL; |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14278 | /* Ensure we won't overflow the size. */ |
Victor Stinner | 57ffa9d | 2011-10-23 20:10:08 +0200 | [diff] [blame] | 14279 | if (len > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) { |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14280 | PyErr_NoMemory(); |
| 14281 | return NULL; |
| 14282 | } |
Victor Stinner | 57ffa9d | 2011-10-23 20:10:08 +0200 | [diff] [blame] | 14283 | size = len + 1; /* copy the null character */ |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14284 | size *= sizeof(Py_UNICODE); |
| 14285 | copy = PyMem_Malloc(size); |
| 14286 | if (copy == NULL) { |
| 14287 | PyErr_NoMemory(); |
| 14288 | return NULL; |
| 14289 | } |
Victor Stinner | 577db2c | 2011-10-11 22:12:48 +0200 | [diff] [blame] | 14290 | memcpy(copy, u, size); |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14291 | return copy; |
| 14292 | } |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 14293 | |
Georg Brandl | 66c221e | 2010-10-14 07:04:07 +0000 | [diff] [blame] | 14294 | /* A _string module, to export formatter_parser and formatter_field_name_split |
| 14295 | to the string.Formatter class implemented in Python. */ |
| 14296 | |
| 14297 | static PyMethodDef _string_methods[] = { |
| 14298 | {"formatter_field_name_split", (PyCFunction) formatter_field_name_split, |
| 14299 | METH_O, PyDoc_STR("split the argument as a field name")}, |
| 14300 | {"formatter_parser", (PyCFunction) formatter_parser, |
| 14301 | METH_O, PyDoc_STR("parse the argument as a format string")}, |
| 14302 | {NULL, NULL} |
| 14303 | }; |
| 14304 | |
| 14305 | static struct PyModuleDef _string_module = { |
| 14306 | PyModuleDef_HEAD_INIT, |
| 14307 | "_string", |
| 14308 | PyDoc_STR("string helper module"), |
| 14309 | 0, |
| 14310 | _string_methods, |
| 14311 | NULL, |
| 14312 | NULL, |
| 14313 | NULL, |
| 14314 | NULL |
| 14315 | }; |
| 14316 | |
| 14317 | PyMODINIT_FUNC |
| 14318 | PyInit__string(void) |
| 14319 | { |
| 14320 | return PyModule_Create(&_string_module); |
| 14321 | } |
| 14322 | |
| 14323 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 14324 | #ifdef __cplusplus |
| 14325 | } |
| 14326 | #endif |