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" |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 44 | #include "bytes_methods.h" |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 45 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 46 | #ifdef MS_WINDOWS |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 47 | #include <windows.h> |
| 48 | #endif |
Guido van Rossum | fd4b957 | 2000-04-10 13:51:10 +0000 | [diff] [blame] | 49 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 50 | /* Endianness switches; defaults to little endian */ |
| 51 | |
| 52 | #ifdef WORDS_BIGENDIAN |
| 53 | # define BYTEORDER_IS_BIG_ENDIAN |
| 54 | #else |
| 55 | # define BYTEORDER_IS_LITTLE_ENDIAN |
| 56 | #endif |
| 57 | |
Marc-André Lemburg | d4ab4a5 | 2000-06-08 17:54:00 +0000 | [diff] [blame] | 58 | /* --- Globals ------------------------------------------------------------ |
| 59 | |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 60 | NOTE: In the interpreter's initialization phase, some globals are currently |
| 61 | initialized dynamically as needed. In the process Unicode objects may |
| 62 | be created before the Unicode type is ready. |
Marc-André Lemburg | d4ab4a5 | 2000-06-08 17:54:00 +0000 | [diff] [blame] | 63 | |
| 64 | */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 65 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 66 | |
| 67 | #ifdef __cplusplus |
| 68 | extern "C" { |
| 69 | #endif |
| 70 | |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 71 | /* Maximum code point of Unicode 6.0: 0x10ffff (1,114,111) */ |
| 72 | #define MAX_UNICODE 0x10ffff |
| 73 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 74 | #ifdef Py_DEBUG |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 75 | # define _PyUnicode_CHECK(op) _PyUnicode_CheckConsistency(op, 0) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 76 | #else |
| 77 | # define _PyUnicode_CHECK(op) PyUnicode_Check(op) |
| 78 | #endif |
Victor Stinner | fb5f5f2 | 2011-09-28 21:39:49 +0200 | [diff] [blame] | 79 | |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 80 | #define _PyUnicode_UTF8(op) \ |
| 81 | (((PyCompactUnicodeObject*)(op))->utf8) |
| 82 | #define PyUnicode_UTF8(op) \ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 83 | (assert(_PyUnicode_CHECK(op)), \ |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 84 | assert(PyUnicode_IS_READY(op)), \ |
| 85 | PyUnicode_IS_COMPACT_ASCII(op) ? \ |
| 86 | ((char*)((PyASCIIObject*)(op) + 1)) : \ |
| 87 | _PyUnicode_UTF8(op)) |
Victor Stinner | bc8b81b | 2011-09-29 19:31:34 +0200 | [diff] [blame] | 88 | #define _PyUnicode_UTF8_LENGTH(op) \ |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 89 | (((PyCompactUnicodeObject*)(op))->utf8_length) |
| 90 | #define PyUnicode_UTF8_LENGTH(op) \ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 91 | (assert(_PyUnicode_CHECK(op)), \ |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 92 | assert(PyUnicode_IS_READY(op)), \ |
| 93 | PyUnicode_IS_COMPACT_ASCII(op) ? \ |
| 94 | ((PyASCIIObject*)(op))->length : \ |
| 95 | _PyUnicode_UTF8_LENGTH(op)) |
Victor Stinner | a5f9163 | 2011-10-04 01:07:11 +0200 | [diff] [blame] | 96 | #define _PyUnicode_WSTR(op) \ |
| 97 | (((PyASCIIObject*)(op))->wstr) |
| 98 | #define _PyUnicode_WSTR_LENGTH(op) \ |
| 99 | (((PyCompactUnicodeObject*)(op))->wstr_length) |
| 100 | #define _PyUnicode_LENGTH(op) \ |
| 101 | (((PyASCIIObject *)(op))->length) |
| 102 | #define _PyUnicode_STATE(op) \ |
| 103 | (((PyASCIIObject *)(op))->state) |
| 104 | #define _PyUnicode_HASH(op) \ |
| 105 | (((PyASCIIObject *)(op))->hash) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 106 | #define _PyUnicode_KIND(op) \ |
| 107 | (assert(_PyUnicode_CHECK(op)), \ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 108 | ((PyASCIIObject *)(op))->state.kind) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 109 | #define _PyUnicode_GET_LENGTH(op) \ |
| 110 | (assert(_PyUnicode_CHECK(op)), \ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 111 | ((PyASCIIObject *)(op))->length) |
Victor Stinner | a5f9163 | 2011-10-04 01:07:11 +0200 | [diff] [blame] | 112 | #define _PyUnicode_DATA_ANY(op) \ |
| 113 | (((PyUnicodeObject*)(op))->data.any) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 114 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 115 | #undef PyUnicode_READY |
| 116 | #define PyUnicode_READY(op) \ |
| 117 | (assert(_PyUnicode_CHECK(op)), \ |
| 118 | (PyUnicode_IS_READY(op) ? \ |
Victor Stinner | a5f9163 | 2011-10-04 01:07:11 +0200 | [diff] [blame] | 119 | 0 : \ |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 120 | _PyUnicode_Ready(op))) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 121 | |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 122 | #define _PyUnicode_SHARE_UTF8(op) \ |
| 123 | (assert(_PyUnicode_CHECK(op)), \ |
| 124 | assert(!PyUnicode_IS_COMPACT_ASCII(op)), \ |
| 125 | (_PyUnicode_UTF8(op) == PyUnicode_DATA(op))) |
| 126 | #define _PyUnicode_SHARE_WSTR(op) \ |
| 127 | (assert(_PyUnicode_CHECK(op)), \ |
| 128 | (_PyUnicode_WSTR(unicode) == PyUnicode_DATA(op))) |
| 129 | |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 130 | /* true if the Unicode object has an allocated UTF-8 memory block |
| 131 | (not shared with other data) */ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 132 | #define _PyUnicode_HAS_UTF8_MEMORY(op) \ |
| 133 | (assert(_PyUnicode_CHECK(op)), \ |
| 134 | (!PyUnicode_IS_COMPACT_ASCII(op) \ |
| 135 | && _PyUnicode_UTF8(op) \ |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 136 | && _PyUnicode_UTF8(op) != PyUnicode_DATA(op))) |
| 137 | |
Victor Stinner | 0349091 | 2011-10-03 23:45:12 +0200 | [diff] [blame] | 138 | /* true if the Unicode object has an allocated wstr memory block |
| 139 | (not shared with other data) */ |
| 140 | #define _PyUnicode_HAS_WSTR_MEMORY(op) \ |
| 141 | (assert(_PyUnicode_CHECK(op)), \ |
| 142 | (_PyUnicode_WSTR(op) && \ |
| 143 | (!PyUnicode_IS_READY(op) || \ |
| 144 | _PyUnicode_WSTR(op) != PyUnicode_DATA(op)))) |
| 145 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 146 | /* Generic helper macro to convert characters of different types. |
| 147 | from_type and to_type have to be valid type names, begin and end |
| 148 | are pointers to the source characters which should be of type |
| 149 | "from_type *". to is a pointer of type "to_type *" and points to the |
| 150 | buffer where the result characters are written to. */ |
| 151 | #define _PyUnicode_CONVERT_BYTES(from_type, to_type, begin, end, to) \ |
| 152 | do { \ |
Antoine Pitrou | e459a08 | 2011-10-11 20:58:41 +0200 | [diff] [blame] | 153 | to_type *_to = (to_type *) to; \ |
| 154 | const from_type *_iter = (begin); \ |
| 155 | const from_type *_end = (end); \ |
| 156 | Py_ssize_t n = (_end) - (_iter); \ |
| 157 | const from_type *_unrolled_end = \ |
Antoine Pitrou | ca8aa4a | 2012-09-20 20:56:47 +0200 | [diff] [blame] | 158 | _iter + _Py_SIZE_ROUND_DOWN(n, 4); \ |
Antoine Pitrou | e459a08 | 2011-10-11 20:58:41 +0200 | [diff] [blame] | 159 | while (_iter < (_unrolled_end)) { \ |
| 160 | _to[0] = (to_type) _iter[0]; \ |
| 161 | _to[1] = (to_type) _iter[1]; \ |
| 162 | _to[2] = (to_type) _iter[2]; \ |
| 163 | _to[3] = (to_type) _iter[3]; \ |
| 164 | _iter += 4; _to += 4; \ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 165 | } \ |
Antoine Pitrou | e459a08 | 2011-10-11 20:58:41 +0200 | [diff] [blame] | 166 | while (_iter < (_end)) \ |
| 167 | *_to++ = (to_type) *_iter++; \ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 168 | } while (0) |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 169 | |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 170 | /* This dictionary holds all interned unicode strings. Note that references |
| 171 | to strings in this dictionary are *not* counted in the string's ob_refcnt. |
| 172 | When the interned string reaches a refcnt of 0 the string deallocation |
| 173 | function will delete the reference from this dictionary. |
| 174 | |
| 175 | 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] | 176 | 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] | 177 | */ |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 178 | static PyObject *interned = NULL; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 179 | |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 180 | /* The empty Unicode object is shared to improve performance. */ |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 181 | static PyObject *unicode_empty = NULL; |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 182 | |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 183 | #define _Py_INCREF_UNICODE_EMPTY() \ |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 184 | do { \ |
| 185 | if (unicode_empty != NULL) \ |
| 186 | Py_INCREF(unicode_empty); \ |
| 187 | else { \ |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 188 | unicode_empty = PyUnicode_New(0, 0); \ |
| 189 | if (unicode_empty != NULL) { \ |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 190 | Py_INCREF(unicode_empty); \ |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 191 | assert(_PyUnicode_CheckConsistency(unicode_empty, 1)); \ |
| 192 | } \ |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 193 | } \ |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 194 | } while (0) |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 195 | |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 196 | #define _Py_RETURN_UNICODE_EMPTY() \ |
| 197 | do { \ |
| 198 | _Py_INCREF_UNICODE_EMPTY(); \ |
| 199 | return unicode_empty; \ |
| 200 | } while (0) |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 201 | |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 202 | /* List of static strings. */ |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 203 | static _Py_Identifier *static_strings = NULL; |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 204 | |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 205 | /* Single character Unicode strings in the Latin-1 range are being |
| 206 | shared as well. */ |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 207 | static PyObject *unicode_latin1[256] = {NULL}; |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 208 | |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 209 | /* Fast detection of the most frequent whitespace characters */ |
| 210 | const unsigned char _Py_ascii_whitespace[] = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 211 | 0, 0, 0, 0, 0, 0, 0, 0, |
Florent Xicluna | 806d8cf | 2010-03-30 19:34:18 +0000 | [diff] [blame] | 212 | /* case 0x0009: * CHARACTER TABULATION */ |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 213 | /* case 0x000A: * LINE FEED */ |
Florent Xicluna | 806d8cf | 2010-03-30 19:34:18 +0000 | [diff] [blame] | 214 | /* case 0x000B: * LINE TABULATION */ |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 215 | /* case 0x000C: * FORM FEED */ |
| 216 | /* case 0x000D: * CARRIAGE RETURN */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 217 | 0, 1, 1, 1, 1, 1, 0, 0, |
| 218 | 0, 0, 0, 0, 0, 0, 0, 0, |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 219 | /* case 0x001C: * FILE SEPARATOR */ |
| 220 | /* case 0x001D: * GROUP SEPARATOR */ |
| 221 | /* case 0x001E: * RECORD SEPARATOR */ |
| 222 | /* case 0x001F: * UNIT SEPARATOR */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 223 | 0, 0, 0, 0, 1, 1, 1, 1, |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 224 | /* case 0x0020: * SPACE */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 225 | 1, 0, 0, 0, 0, 0, 0, 0, |
| 226 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 227 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 228 | 0, 0, 0, 0, 0, 0, 0, 0, |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 229 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 230 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 231 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 232 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 233 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 234 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 235 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 236 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 237 | 0, 0, 0, 0, 0, 0, 0, 0 |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 238 | }; |
| 239 | |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 240 | /* forward */ |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 241 | static PyUnicodeObject *_PyUnicode_New(Py_ssize_t length); |
Victor Stinner | 1b4f9ce | 2011-10-03 13:28:14 +0200 | [diff] [blame] | 242 | static PyObject* get_latin1_char(unsigned char ch); |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 243 | static int unicode_modifiable(PyObject *unicode); |
| 244 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 245 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 246 | static PyObject * |
Victor Stinner | d21b58c | 2013-02-26 00:15:54 +0100 | [diff] [blame] | 247 | _PyUnicode_FromUCS1(const Py_UCS1 *s, Py_ssize_t size); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 248 | static PyObject * |
| 249 | _PyUnicode_FromUCS2(const Py_UCS2 *s, Py_ssize_t size); |
| 250 | static PyObject * |
| 251 | _PyUnicode_FromUCS4(const Py_UCS4 *s, Py_ssize_t size); |
| 252 | |
| 253 | static PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 254 | unicode_encode_call_errorhandler(const char *errors, |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 255 | PyObject **errorHandler,const char *encoding, const char *reason, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 256 | PyObject *unicode, PyObject **exceptionObject, |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 257 | Py_ssize_t startpos, Py_ssize_t endpos, Py_ssize_t *newpos); |
| 258 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 259 | static void |
| 260 | raise_encode_exception(PyObject **exceptionObject, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 261 | const char *encoding, |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 262 | PyObject *unicode, |
| 263 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 264 | const char *reason); |
Victor Stinner | 31be90b | 2010-04-22 19:38:16 +0000 | [diff] [blame] | 265 | |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 266 | /* Same for linebreaks */ |
| 267 | static unsigned char ascii_linebreak[] = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 268 | 0, 0, 0, 0, 0, 0, 0, 0, |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 269 | /* 0x000A, * LINE FEED */ |
Florent Xicluna | 806d8cf | 2010-03-30 19:34:18 +0000 | [diff] [blame] | 270 | /* 0x000B, * LINE TABULATION */ |
| 271 | /* 0x000C, * FORM FEED */ |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 272 | /* 0x000D, * CARRIAGE RETURN */ |
Florent Xicluna | 806d8cf | 2010-03-30 19:34:18 +0000 | [diff] [blame] | 273 | 0, 0, 1, 1, 1, 1, 0, 0, |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 274 | 0, 0, 0, 0, 0, 0, 0, 0, |
Christian Heimes | 1a8501c | 2008-10-02 19:56:01 +0000 | [diff] [blame] | 275 | /* 0x001C, * FILE SEPARATOR */ |
| 276 | /* 0x001D, * GROUP SEPARATOR */ |
| 277 | /* 0x001E, * RECORD SEPARATOR */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 278 | 0, 0, 0, 0, 1, 1, 1, 0, |
| 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, |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 283 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 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, |
| 287 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 288 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 289 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 290 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 291 | 0, 0, 0, 0, 0, 0, 0, 0 |
Christian Heimes | 190d79e | 2008-01-30 11:58:22 +0000 | [diff] [blame] | 292 | }; |
| 293 | |
Ezio Melotti | 48a2f8f | 2011-09-29 00:18:19 +0300 | [diff] [blame] | 294 | /* The max unicode value is always 0x10FFFF while using the PEP-393 API. |
| 295 | 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] | 296 | Py_UNICODE |
Marc-André Lemburg | 6c6bfb7 | 2001-07-20 17:39:11 +0000 | [diff] [blame] | 297 | PyUnicode_GetMax(void) |
Martin v. Löwis | ce9b5a5 | 2001-06-27 06:28:56 +0000 | [diff] [blame] | 298 | { |
Fredrik Lundh | 8f45585 | 2001-06-27 18:59:43 +0000 | [diff] [blame] | 299 | #ifdef Py_UNICODE_WIDE |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 300 | return 0x10FFFF; |
Martin v. Löwis | ce9b5a5 | 2001-06-27 06:28:56 +0000 | [diff] [blame] | 301 | #else |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 302 | /* This is actually an illegal character, so it should |
| 303 | not be passed to unichr. */ |
| 304 | return 0xFFFF; |
Martin v. Löwis | ce9b5a5 | 2001-06-27 06:28:56 +0000 | [diff] [blame] | 305 | #endif |
| 306 | } |
| 307 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 308 | #ifdef Py_DEBUG |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 309 | int |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 310 | _PyUnicode_CheckConsistency(PyObject *op, int check_content) |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 311 | { |
| 312 | PyASCIIObject *ascii; |
| 313 | unsigned int kind; |
| 314 | |
| 315 | assert(PyUnicode_Check(op)); |
| 316 | |
| 317 | ascii = (PyASCIIObject *)op; |
| 318 | kind = ascii->state.kind; |
| 319 | |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 320 | if (ascii->state.ascii == 1 && ascii->state.compact == 1) { |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 321 | assert(kind == PyUnicode_1BYTE_KIND); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 322 | assert(ascii->state.ready == 1); |
| 323 | } |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 324 | else { |
Victor Stinner | 85041a5 | 2011-10-03 14:42:39 +0200 | [diff] [blame] | 325 | PyCompactUnicodeObject *compact = (PyCompactUnicodeObject *)op; |
Victor Stinner | 7f11ad4 | 2011-10-04 00:00:20 +0200 | [diff] [blame] | 326 | void *data; |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 327 | |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 328 | if (ascii->state.compact == 1) { |
| 329 | data = compact + 1; |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 330 | assert(kind == PyUnicode_1BYTE_KIND |
| 331 | || kind == PyUnicode_2BYTE_KIND |
| 332 | || kind == PyUnicode_4BYTE_KIND); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 333 | assert(ascii->state.ascii == 0); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 334 | assert(ascii->state.ready == 1); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 335 | assert (compact->utf8 != data); |
Victor Stinner | e30c0a1 | 2011-11-04 20:54:05 +0100 | [diff] [blame] | 336 | } |
| 337 | else { |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 338 | PyUnicodeObject *unicode = (PyUnicodeObject *)op; |
| 339 | |
| 340 | data = unicode->data.any; |
| 341 | if (kind == PyUnicode_WCHAR_KIND) { |
Victor Stinner | e30c0a1 | 2011-11-04 20:54:05 +0100 | [diff] [blame] | 342 | assert(ascii->length == 0); |
| 343 | assert(ascii->hash == -1); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 344 | assert(ascii->state.compact == 0); |
| 345 | assert(ascii->state.ascii == 0); |
| 346 | assert(ascii->state.ready == 0); |
Victor Stinner | e30c0a1 | 2011-11-04 20:54:05 +0100 | [diff] [blame] | 347 | assert(ascii->state.interned == SSTATE_NOT_INTERNED); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 348 | assert(ascii->wstr != NULL); |
| 349 | assert(data == NULL); |
| 350 | assert(compact->utf8 == NULL); |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 351 | } |
| 352 | else { |
| 353 | assert(kind == PyUnicode_1BYTE_KIND |
| 354 | || kind == PyUnicode_2BYTE_KIND |
| 355 | || kind == PyUnicode_4BYTE_KIND); |
| 356 | assert(ascii->state.compact == 0); |
| 357 | assert(ascii->state.ready == 1); |
| 358 | assert(data != NULL); |
| 359 | if (ascii->state.ascii) { |
| 360 | assert (compact->utf8 == data); |
| 361 | assert (compact->utf8_length == ascii->length); |
| 362 | } |
| 363 | else |
| 364 | assert (compact->utf8 != data); |
| 365 | } |
| 366 | } |
| 367 | if (kind != PyUnicode_WCHAR_KIND) { |
Victor Stinner | 7f11ad4 | 2011-10-04 00:00:20 +0200 | [diff] [blame] | 368 | if ( |
| 369 | #if SIZEOF_WCHAR_T == 2 |
| 370 | kind == PyUnicode_2BYTE_KIND |
| 371 | #else |
| 372 | kind == PyUnicode_4BYTE_KIND |
| 373 | #endif |
| 374 | ) |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 375 | { |
| 376 | assert(ascii->wstr == data); |
| 377 | assert(compact->wstr_length == ascii->length); |
| 378 | } else |
| 379 | assert(ascii->wstr != data); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 380 | } |
Victor Stinner | a41463c | 2011-10-04 01:05:08 +0200 | [diff] [blame] | 381 | |
| 382 | if (compact->utf8 == NULL) |
| 383 | assert(compact->utf8_length == 0); |
| 384 | if (ascii->wstr == NULL) |
| 385 | assert(compact->wstr_length == 0); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 386 | } |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 387 | /* check that the best kind is used */ |
| 388 | if (check_content && kind != PyUnicode_WCHAR_KIND) |
| 389 | { |
| 390 | Py_ssize_t i; |
| 391 | Py_UCS4 maxchar = 0; |
Victor Stinner | 718fbf0 | 2012-04-26 00:39:37 +0200 | [diff] [blame] | 392 | void *data; |
| 393 | Py_UCS4 ch; |
| 394 | |
| 395 | data = PyUnicode_DATA(ascii); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 396 | for (i=0; i < ascii->length; i++) |
| 397 | { |
Victor Stinner | 718fbf0 | 2012-04-26 00:39:37 +0200 | [diff] [blame] | 398 | ch = PyUnicode_READ(kind, data, i); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 399 | if (ch > maxchar) |
| 400 | maxchar = ch; |
| 401 | } |
| 402 | if (kind == PyUnicode_1BYTE_KIND) { |
Victor Stinner | 77faf69 | 2011-11-20 18:56:05 +0100 | [diff] [blame] | 403 | if (ascii->state.ascii == 0) { |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 404 | assert(maxchar >= 128); |
Victor Stinner | 77faf69 | 2011-11-20 18:56:05 +0100 | [diff] [blame] | 405 | assert(maxchar <= 255); |
| 406 | } |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 407 | else |
| 408 | assert(maxchar < 128); |
| 409 | } |
Victor Stinner | 77faf69 | 2011-11-20 18:56:05 +0100 | [diff] [blame] | 410 | else if (kind == PyUnicode_2BYTE_KIND) { |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 411 | assert(maxchar >= 0x100); |
Victor Stinner | 77faf69 | 2011-11-20 18:56:05 +0100 | [diff] [blame] | 412 | assert(maxchar <= 0xFFFF); |
| 413 | } |
| 414 | else { |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 415 | assert(maxchar >= 0x10000); |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 416 | assert(maxchar <= MAX_UNICODE); |
Victor Stinner | 77faf69 | 2011-11-20 18:56:05 +0100 | [diff] [blame] | 417 | } |
Victor Stinner | 718fbf0 | 2012-04-26 00:39:37 +0200 | [diff] [blame] | 418 | assert(PyUnicode_READ(kind, data, ascii->length) == 0); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 419 | } |
Benjamin Peterson | ccc51c1 | 2011-10-03 19:34:12 -0400 | [diff] [blame] | 420 | return 1; |
| 421 | } |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 422 | #endif |
| 423 | |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 424 | static PyObject* |
| 425 | unicode_result_wchar(PyObject *unicode) |
| 426 | { |
| 427 | #ifndef Py_DEBUG |
| 428 | Py_ssize_t len; |
| 429 | |
| 430 | assert(Py_REFCNT(unicode) == 1); |
| 431 | |
| 432 | len = _PyUnicode_WSTR_LENGTH(unicode); |
| 433 | if (len == 0) { |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 434 | Py_DECREF(unicode); |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 435 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | if (len == 1) { |
| 439 | wchar_t ch = _PyUnicode_WSTR(unicode)[0]; |
Victor Stinner | d21b58c | 2013-02-26 00:15:54 +0100 | [diff] [blame] | 440 | if ((Py_UCS4)ch < 256) { |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 441 | PyObject *latin1_char = get_latin1_char((unsigned char)ch); |
| 442 | Py_DECREF(unicode); |
| 443 | return latin1_char; |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | if (_PyUnicode_Ready(unicode) < 0) { |
| 448 | Py_XDECREF(unicode); |
| 449 | return NULL; |
| 450 | } |
| 451 | #else |
| 452 | /* don't make the result ready in debug mode to ensure that the caller |
| 453 | makes the string ready before using it */ |
| 454 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
| 455 | #endif |
| 456 | return unicode; |
| 457 | } |
| 458 | |
| 459 | static PyObject* |
| 460 | unicode_result_ready(PyObject *unicode) |
| 461 | { |
| 462 | Py_ssize_t length; |
| 463 | |
| 464 | length = PyUnicode_GET_LENGTH(unicode); |
| 465 | if (length == 0) { |
| 466 | if (unicode != unicode_empty) { |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 467 | Py_DECREF(unicode); |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 468 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 469 | } |
| 470 | return unicode_empty; |
| 471 | } |
| 472 | |
| 473 | if (length == 1) { |
| 474 | Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, 0); |
| 475 | if (ch < 256) { |
| 476 | PyObject *latin1_char = unicode_latin1[ch]; |
| 477 | if (latin1_char != NULL) { |
| 478 | if (unicode != latin1_char) { |
| 479 | Py_INCREF(latin1_char); |
| 480 | Py_DECREF(unicode); |
| 481 | } |
| 482 | return latin1_char; |
| 483 | } |
| 484 | else { |
| 485 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
| 486 | Py_INCREF(unicode); |
| 487 | unicode_latin1[ch] = unicode; |
| 488 | return unicode; |
| 489 | } |
| 490 | } |
| 491 | } |
| 492 | |
| 493 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
| 494 | return unicode; |
| 495 | } |
| 496 | |
| 497 | static PyObject* |
| 498 | unicode_result(PyObject *unicode) |
| 499 | { |
| 500 | assert(_PyUnicode_CHECK(unicode)); |
| 501 | if (PyUnicode_IS_READY(unicode)) |
| 502 | return unicode_result_ready(unicode); |
| 503 | else |
| 504 | return unicode_result_wchar(unicode); |
| 505 | } |
| 506 | |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 507 | static PyObject* |
| 508 | unicode_result_unchanged(PyObject *unicode) |
| 509 | { |
| 510 | if (PyUnicode_CheckExact(unicode)) { |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 511 | if (PyUnicode_READY(unicode) == -1) |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 512 | return NULL; |
| 513 | Py_INCREF(unicode); |
| 514 | return unicode; |
| 515 | } |
| 516 | else |
| 517 | /* Subtype -- return genuine unicode string with the same value. */ |
Victor Stinner | bf6e560 | 2011-12-12 01:53:47 +0100 | [diff] [blame] | 518 | return _PyUnicode_Copy(unicode); |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 519 | } |
| 520 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 521 | #ifdef HAVE_MBCS |
| 522 | static OSVERSIONINFOEX winver; |
| 523 | #endif |
| 524 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 525 | /* --- Bloom Filters ----------------------------------------------------- */ |
| 526 | |
| 527 | /* stuff to implement simple "bloom filters" for Unicode characters. |
| 528 | to keep things simple, we use a single bitmask, using the least 5 |
| 529 | bits from each unicode characters as the bit index. */ |
| 530 | |
| 531 | /* the linebreak mask is set up by Unicode_Init below */ |
| 532 | |
Antoine Pitrou | f068f94 | 2010-01-13 14:19:12 +0000 | [diff] [blame] | 533 | #if LONG_BIT >= 128 |
| 534 | #define BLOOM_WIDTH 128 |
| 535 | #elif LONG_BIT >= 64 |
| 536 | #define BLOOM_WIDTH 64 |
| 537 | #elif LONG_BIT >= 32 |
| 538 | #define BLOOM_WIDTH 32 |
| 539 | #else |
| 540 | #error "LONG_BIT is smaller than 32" |
| 541 | #endif |
| 542 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 543 | #define BLOOM_MASK unsigned long |
| 544 | |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 545 | static BLOOM_MASK bloom_linebreak = ~(BLOOM_MASK)0; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 546 | |
Antoine Pitrou | f068f94 | 2010-01-13 14:19:12 +0000 | [diff] [blame] | 547 | #define BLOOM_ADD(mask, ch) ((mask |= (1UL << ((ch) & (BLOOM_WIDTH - 1))))) |
| 548 | #define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1))))) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 549 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 550 | #define BLOOM_LINEBREAK(ch) \ |
| 551 | ((ch) < 128U ? ascii_linebreak[(ch)] : \ |
| 552 | (BLOOM(bloom_linebreak, (ch)) && Py_UNICODE_ISLINEBREAK(ch))) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 553 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 554 | Py_LOCAL_INLINE(BLOOM_MASK) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 555 | make_bloom_mask(int kind, void* ptr, Py_ssize_t len) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 556 | { |
| 557 | /* calculate simple bloom-style bitmask for a given unicode string */ |
| 558 | |
Antoine Pitrou | f068f94 | 2010-01-13 14:19:12 +0000 | [diff] [blame] | 559 | BLOOM_MASK mask; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 560 | Py_ssize_t i; |
| 561 | |
| 562 | mask = 0; |
| 563 | for (i = 0; i < len; i++) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 564 | BLOOM_ADD(mask, PyUnicode_READ(kind, ptr, i)); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 565 | |
| 566 | return mask; |
| 567 | } |
| 568 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 569 | #define BLOOM_MEMBER(mask, chr, str) \ |
| 570 | (BLOOM(mask, chr) \ |
| 571 | && (PyUnicode_FindChar(str, chr, 0, PyUnicode_GET_LENGTH(str), 1) >= 0)) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 572 | |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 573 | /* Compilation of templated routines */ |
| 574 | |
| 575 | #include "stringlib/asciilib.h" |
| 576 | #include "stringlib/fastsearch.h" |
| 577 | #include "stringlib/partition.h" |
| 578 | #include "stringlib/split.h" |
| 579 | #include "stringlib/count.h" |
| 580 | #include "stringlib/find.h" |
| 581 | #include "stringlib/find_max_char.h" |
| 582 | #include "stringlib/localeutil.h" |
| 583 | #include "stringlib/undef.h" |
| 584 | |
| 585 | #include "stringlib/ucs1lib.h" |
| 586 | #include "stringlib/fastsearch.h" |
| 587 | #include "stringlib/partition.h" |
| 588 | #include "stringlib/split.h" |
| 589 | #include "stringlib/count.h" |
| 590 | #include "stringlib/find.h" |
| 591 | #include "stringlib/find_max_char.h" |
| 592 | #include "stringlib/localeutil.h" |
| 593 | #include "stringlib/undef.h" |
| 594 | |
| 595 | #include "stringlib/ucs2lib.h" |
| 596 | #include "stringlib/fastsearch.h" |
| 597 | #include "stringlib/partition.h" |
| 598 | #include "stringlib/split.h" |
| 599 | #include "stringlib/count.h" |
| 600 | #include "stringlib/find.h" |
| 601 | #include "stringlib/find_max_char.h" |
| 602 | #include "stringlib/localeutil.h" |
| 603 | #include "stringlib/undef.h" |
| 604 | |
| 605 | #include "stringlib/ucs4lib.h" |
| 606 | #include "stringlib/fastsearch.h" |
| 607 | #include "stringlib/partition.h" |
| 608 | #include "stringlib/split.h" |
| 609 | #include "stringlib/count.h" |
| 610 | #include "stringlib/find.h" |
| 611 | #include "stringlib/find_max_char.h" |
| 612 | #include "stringlib/localeutil.h" |
| 613 | #include "stringlib/undef.h" |
| 614 | |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 615 | #include "stringlib/unicodedefs.h" |
| 616 | #include "stringlib/fastsearch.h" |
| 617 | #include "stringlib/count.h" |
| 618 | #include "stringlib/find.h" |
Antoine Pitrou | 0a3229d | 2011-11-21 20:39:13 +0100 | [diff] [blame] | 619 | #include "stringlib/undef.h" |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 620 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 621 | /* --- Unicode Object ----------------------------------------------------- */ |
| 622 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 623 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 624 | fixup(PyObject *self, Py_UCS4 (*fixfct)(PyObject *s)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 625 | |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 626 | Py_LOCAL_INLINE(Py_ssize_t) findchar(void *s, int kind, |
| 627 | Py_ssize_t size, Py_UCS4 ch, |
| 628 | int direction) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 629 | { |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 630 | int mode = (direction == 1) ? FAST_SEARCH : FAST_RSEARCH; |
| 631 | |
| 632 | switch (kind) { |
| 633 | case PyUnicode_1BYTE_KIND: |
| 634 | { |
| 635 | Py_UCS1 ch1 = (Py_UCS1) ch; |
| 636 | if (ch1 == ch) |
| 637 | return ucs1lib_fastsearch((Py_UCS1 *) s, size, &ch1, 1, 0, mode); |
| 638 | else |
| 639 | return -1; |
| 640 | } |
| 641 | case PyUnicode_2BYTE_KIND: |
| 642 | { |
| 643 | Py_UCS2 ch2 = (Py_UCS2) ch; |
| 644 | if (ch2 == ch) |
| 645 | return ucs2lib_fastsearch((Py_UCS2 *) s, size, &ch2, 1, 0, mode); |
| 646 | else |
| 647 | return -1; |
| 648 | } |
| 649 | case PyUnicode_4BYTE_KIND: |
| 650 | return ucs4lib_fastsearch((Py_UCS4 *) s, size, &ch, 1, 0, mode); |
| 651 | default: |
| 652 | assert(0); |
| 653 | return -1; |
Victor Stinner | 9e7a1bc | 2011-10-13 00:18:12 +0200 | [diff] [blame] | 654 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 655 | } |
| 656 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 657 | static PyObject* |
| 658 | resize_compact(PyObject *unicode, Py_ssize_t length) |
| 659 | { |
| 660 | Py_ssize_t char_size; |
| 661 | Py_ssize_t struct_size; |
| 662 | Py_ssize_t new_size; |
| 663 | int share_wstr; |
Victor Stinner | 84def37 | 2011-12-11 20:04:56 +0100 | [diff] [blame] | 664 | PyObject *new_unicode; |
Victor Stinner | 7989157 | 2012-05-03 13:43:07 +0200 | [diff] [blame] | 665 | assert(unicode_modifiable(unicode)); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 666 | assert(PyUnicode_IS_READY(unicode)); |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 667 | assert(PyUnicode_IS_COMPACT(unicode)); |
| 668 | |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 669 | char_size = PyUnicode_KIND(unicode); |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 670 | if (PyUnicode_IS_ASCII(unicode)) |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 671 | struct_size = sizeof(PyASCIIObject); |
| 672 | else |
| 673 | struct_size = sizeof(PyCompactUnicodeObject); |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 674 | share_wstr = _PyUnicode_SHARE_WSTR(unicode); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 675 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 676 | if (length > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1)) { |
| 677 | PyErr_NoMemory(); |
| 678 | return NULL; |
| 679 | } |
| 680 | new_size = (struct_size + (length + 1) * char_size); |
| 681 | |
Victor Stinner | 84def37 | 2011-12-11 20:04:56 +0100 | [diff] [blame] | 682 | _Py_DEC_REFTOTAL; |
| 683 | _Py_ForgetReference(unicode); |
| 684 | |
| 685 | new_unicode = (PyObject *)PyObject_REALLOC((char *)unicode, new_size); |
| 686 | if (new_unicode == NULL) { |
Victor Stinner | b0a82a6 | 2011-12-12 13:08:33 +0100 | [diff] [blame] | 687 | _Py_NewReference(unicode); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 688 | PyErr_NoMemory(); |
| 689 | return NULL; |
| 690 | } |
Victor Stinner | 84def37 | 2011-12-11 20:04:56 +0100 | [diff] [blame] | 691 | unicode = new_unicode; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 692 | _Py_NewReference(unicode); |
Victor Stinner | 84def37 | 2011-12-11 20:04:56 +0100 | [diff] [blame] | 693 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 694 | _PyUnicode_LENGTH(unicode) = length; |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 695 | if (share_wstr) { |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 696 | _PyUnicode_WSTR(unicode) = PyUnicode_DATA(unicode); |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 697 | if (!PyUnicode_IS_ASCII(unicode)) |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 698 | _PyUnicode_WSTR_LENGTH(unicode) = length; |
| 699 | } |
Victor Stinner | bbbac2e | 2013-02-07 23:12:46 +0100 | [diff] [blame] | 700 | else if (_PyUnicode_HAS_WSTR_MEMORY(unicode)) { |
| 701 | PyObject_DEL(_PyUnicode_WSTR(unicode)); |
| 702 | _PyUnicode_WSTR(unicode) = NULL; |
| 703 | } |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 704 | PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode), |
| 705 | length, 0); |
Victor Stinner | 7989157 | 2012-05-03 13:43:07 +0200 | [diff] [blame] | 706 | assert(_PyUnicode_CheckConsistency(unicode, 0)); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 707 | return unicode; |
| 708 | } |
| 709 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 710 | static int |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 711 | resize_inplace(PyObject *unicode, Py_ssize_t length) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 712 | { |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 713 | wchar_t *wstr; |
Victor Stinner | 7a9105a | 2011-12-12 00:13:42 +0100 | [diff] [blame] | 714 | Py_ssize_t new_size; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 715 | assert(!PyUnicode_IS_COMPACT(unicode)); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 716 | assert(Py_REFCNT(unicode) == 1); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 717 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 718 | if (PyUnicode_IS_READY(unicode)) { |
| 719 | Py_ssize_t char_size; |
Victor Stinner | 1c8d0c7 | 2011-10-03 12:11:00 +0200 | [diff] [blame] | 720 | int share_wstr, share_utf8; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 721 | void *data; |
| 722 | |
| 723 | data = _PyUnicode_DATA_ANY(unicode); |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 724 | char_size = PyUnicode_KIND(unicode); |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 725 | share_wstr = _PyUnicode_SHARE_WSTR(unicode); |
| 726 | share_utf8 = _PyUnicode_SHARE_UTF8(unicode); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 727 | |
| 728 | if (length > (PY_SSIZE_T_MAX / char_size - 1)) { |
| 729 | PyErr_NoMemory(); |
| 730 | return -1; |
| 731 | } |
| 732 | new_size = (length + 1) * char_size; |
| 733 | |
Victor Stinner | 7a9105a | 2011-12-12 00:13:42 +0100 | [diff] [blame] | 734 | if (!share_utf8 && _PyUnicode_HAS_UTF8_MEMORY(unicode)) |
| 735 | { |
| 736 | PyObject_DEL(_PyUnicode_UTF8(unicode)); |
| 737 | _PyUnicode_UTF8(unicode) = NULL; |
| 738 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
| 739 | } |
| 740 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 741 | data = (PyObject *)PyObject_REALLOC(data, new_size); |
| 742 | if (data == NULL) { |
| 743 | PyErr_NoMemory(); |
| 744 | return -1; |
| 745 | } |
| 746 | _PyUnicode_DATA_ANY(unicode) = data; |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 747 | if (share_wstr) { |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 748 | _PyUnicode_WSTR(unicode) = data; |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 749 | _PyUnicode_WSTR_LENGTH(unicode) = length; |
| 750 | } |
| 751 | if (share_utf8) { |
Victor Stinner | 1c8d0c7 | 2011-10-03 12:11:00 +0200 | [diff] [blame] | 752 | _PyUnicode_UTF8(unicode) = data; |
Victor Stinner | c379ead | 2011-10-03 12:52:27 +0200 | [diff] [blame] | 753 | _PyUnicode_UTF8_LENGTH(unicode) = length; |
| 754 | } |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 755 | _PyUnicode_LENGTH(unicode) = length; |
| 756 | PyUnicode_WRITE(PyUnicode_KIND(unicode), data, length, 0); |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 757 | if (share_wstr || _PyUnicode_WSTR(unicode) == NULL) { |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 758 | assert(_PyUnicode_CheckConsistency(unicode, 0)); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 759 | return 0; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 760 | } |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 761 | } |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 762 | assert(_PyUnicode_WSTR(unicode) != NULL); |
| 763 | |
| 764 | /* check for integer overflow */ |
| 765 | if (length > PY_SSIZE_T_MAX / sizeof(wchar_t) - 1) { |
| 766 | PyErr_NoMemory(); |
| 767 | return -1; |
| 768 | } |
Victor Stinner | 7a9105a | 2011-12-12 00:13:42 +0100 | [diff] [blame] | 769 | new_size = sizeof(wchar_t) * (length + 1); |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 770 | wstr = _PyUnicode_WSTR(unicode); |
Victor Stinner | 7a9105a | 2011-12-12 00:13:42 +0100 | [diff] [blame] | 771 | wstr = PyObject_REALLOC(wstr, new_size); |
Victor Stinner | 9566311 | 2011-10-04 01:03:50 +0200 | [diff] [blame] | 772 | if (!wstr) { |
| 773 | PyErr_NoMemory(); |
| 774 | return -1; |
| 775 | } |
| 776 | _PyUnicode_WSTR(unicode) = wstr; |
| 777 | _PyUnicode_WSTR(unicode)[length] = 0; |
| 778 | _PyUnicode_WSTR_LENGTH(unicode) = length; |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 779 | assert(_PyUnicode_CheckConsistency(unicode, 0)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 780 | return 0; |
| 781 | } |
| 782 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 783 | static PyObject* |
| 784 | resize_copy(PyObject *unicode, Py_ssize_t length) |
| 785 | { |
| 786 | Py_ssize_t copy_length; |
Victor Stinner | 7a9105a | 2011-12-12 00:13:42 +0100 | [diff] [blame] | 787 | if (_PyUnicode_KIND(unicode) != PyUnicode_WCHAR_KIND) { |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 788 | PyObject *copy; |
Victor Stinner | 7a9105a | 2011-12-12 00:13:42 +0100 | [diff] [blame] | 789 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 790 | if (PyUnicode_READY(unicode) == -1) |
Victor Stinner | 7a9105a | 2011-12-12 00:13:42 +0100 | [diff] [blame] | 791 | return NULL; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 792 | |
| 793 | copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode)); |
| 794 | if (copy == NULL) |
| 795 | return NULL; |
| 796 | |
| 797 | copy_length = Py_MIN(length, PyUnicode_GET_LENGTH(unicode)); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 798 | _PyUnicode_FastCopyCharacters(copy, 0, unicode, 0, copy_length); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 799 | return copy; |
Victor Stinner | 8cfcbed | 2011-10-03 23:19:21 +0200 | [diff] [blame] | 800 | } |
| 801 | else { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 802 | PyObject *w; |
Victor Stinner | 7a9105a | 2011-12-12 00:13:42 +0100 | [diff] [blame] | 803 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 804 | w = (PyObject*)_PyUnicode_New(length); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 805 | if (w == NULL) |
| 806 | return NULL; |
| 807 | copy_length = _PyUnicode_WSTR_LENGTH(unicode); |
| 808 | copy_length = Py_MIN(copy_length, length); |
| 809 | Py_UNICODE_COPY(_PyUnicode_WSTR(w), _PyUnicode_WSTR(unicode), |
| 810 | copy_length); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 811 | return w; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 812 | } |
| 813 | } |
| 814 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 815 | /* 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] | 816 | Ux0000 terminated; some code (e.g. new_identifier) |
| 817 | relies on that. |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 818 | |
| 819 | XXX This allocator could further be enhanced by assuring that the |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 820 | free list never reduces its size below 1. |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 821 | |
| 822 | */ |
| 823 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 824 | static PyUnicodeObject * |
| 825 | _PyUnicode_New(Py_ssize_t length) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 826 | { |
| 827 | register PyUnicodeObject *unicode; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 828 | size_t new_size; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 829 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 830 | /* Optimization for empty strings */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 831 | if (length == 0 && unicode_empty != NULL) { |
| 832 | Py_INCREF(unicode_empty); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 833 | return (PyUnicodeObject*)unicode_empty; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 834 | } |
| 835 | |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 836 | /* Ensure we won't overflow the size. */ |
| 837 | if (length > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) { |
| 838 | return (PyUnicodeObject *)PyErr_NoMemory(); |
| 839 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 840 | if (length < 0) { |
| 841 | PyErr_SetString(PyExc_SystemError, |
| 842 | "Negative size passed to _PyUnicode_New"); |
| 843 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 844 | } |
| 845 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 846 | unicode = PyObject_New(PyUnicodeObject, &PyUnicode_Type); |
| 847 | if (unicode == NULL) |
| 848 | return NULL; |
| 849 | new_size = sizeof(Py_UNICODE) * ((size_t)length + 1); |
| 850 | _PyUnicode_WSTR(unicode) = (Py_UNICODE*) PyObject_MALLOC(new_size); |
| 851 | if (!_PyUnicode_WSTR(unicode)) { |
Victor Stinner | b0a82a6 | 2011-12-12 13:08:33 +0100 | [diff] [blame] | 852 | Py_DECREF(unicode); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 853 | PyErr_NoMemory(); |
Victor Stinner | b0a82a6 | 2011-12-12 13:08:33 +0100 | [diff] [blame] | 854 | return NULL; |
Guido van Rossum | 3c1bb80 | 2000-04-27 20:13:50 +0000 | [diff] [blame] | 855 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 856 | |
Jeremy Hylton | d808279 | 2003-09-16 19:41:39 +0000 | [diff] [blame] | 857 | /* Initialize the first element to guard against cases where |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 858 | * the caller fails before initializing str -- unicode_resize() |
| 859 | * reads str[0], and the Keep-Alive optimization can keep memory |
| 860 | * allocated for str alive across a call to unicode_dealloc(unicode). |
| 861 | * We don't want unicode_resize to read uninitialized memory in |
| 862 | * that case. |
| 863 | */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 864 | _PyUnicode_WSTR(unicode)[0] = 0; |
| 865 | _PyUnicode_WSTR(unicode)[length] = 0; |
| 866 | _PyUnicode_WSTR_LENGTH(unicode) = length; |
| 867 | _PyUnicode_HASH(unicode) = -1; |
| 868 | _PyUnicode_STATE(unicode).interned = 0; |
| 869 | _PyUnicode_STATE(unicode).kind = 0; |
| 870 | _PyUnicode_STATE(unicode).compact = 0; |
| 871 | _PyUnicode_STATE(unicode).ready = 0; |
| 872 | _PyUnicode_STATE(unicode).ascii = 0; |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 873 | _PyUnicode_DATA_ANY(unicode) = NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 874 | _PyUnicode_LENGTH(unicode) = 0; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 875 | _PyUnicode_UTF8(unicode) = NULL; |
| 876 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 877 | assert(_PyUnicode_CheckConsistency((PyObject *)unicode, 0)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 878 | return unicode; |
| 879 | } |
| 880 | |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 881 | static const char* |
| 882 | unicode_kind_name(PyObject *unicode) |
| 883 | { |
Victor Stinner | 42dfd71 | 2011-10-03 14:41:45 +0200 | [diff] [blame] | 884 | /* don't check consistency: unicode_kind_name() is called from |
| 885 | _PyUnicode_Dump() */ |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 886 | if (!PyUnicode_IS_COMPACT(unicode)) |
| 887 | { |
| 888 | if (!PyUnicode_IS_READY(unicode)) |
| 889 | return "wstr"; |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 890 | switch (PyUnicode_KIND(unicode)) |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 891 | { |
| 892 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 893 | if (PyUnicode_IS_ASCII(unicode)) |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 894 | return "legacy ascii"; |
| 895 | else |
| 896 | return "legacy latin1"; |
| 897 | case PyUnicode_2BYTE_KIND: |
| 898 | return "legacy UCS2"; |
| 899 | case PyUnicode_4BYTE_KIND: |
| 900 | return "legacy UCS4"; |
| 901 | default: |
| 902 | return "<legacy invalid kind>"; |
| 903 | } |
| 904 | } |
| 905 | assert(PyUnicode_IS_READY(unicode)); |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 906 | switch (PyUnicode_KIND(unicode)) { |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 907 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 908 | if (PyUnicode_IS_ASCII(unicode)) |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 909 | return "ascii"; |
| 910 | else |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 911 | return "latin1"; |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 912 | case PyUnicode_2BYTE_KIND: |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 913 | return "UCS2"; |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 914 | case PyUnicode_4BYTE_KIND: |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 915 | return "UCS4"; |
Victor Stinner | f42dc44 | 2011-10-02 23:33:16 +0200 | [diff] [blame] | 916 | default: |
| 917 | return "<invalid compact kind>"; |
| 918 | } |
| 919 | } |
| 920 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 921 | #ifdef Py_DEBUG |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 922 | /* Functions wrapping macros for use in debugger */ |
| 923 | char *_PyUnicode_utf8(void *unicode){ |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 924 | return PyUnicode_UTF8(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 925 | } |
| 926 | |
| 927 | void *_PyUnicode_compact_data(void *unicode) { |
| 928 | return _PyUnicode_COMPACT_DATA(unicode); |
| 929 | } |
| 930 | void *_PyUnicode_data(void *unicode){ |
| 931 | printf("obj %p\n", unicode); |
| 932 | printf("compact %d\n", PyUnicode_IS_COMPACT(unicode)); |
| 933 | printf("compact ascii %d\n", PyUnicode_IS_COMPACT_ASCII(unicode)); |
| 934 | printf("ascii op %p\n", ((void*)((PyASCIIObject*)(unicode) + 1))); |
| 935 | printf("compact op %p\n", ((void*)((PyCompactUnicodeObject*)(unicode) + 1))); |
| 936 | printf("compact data %p\n", _PyUnicode_COMPACT_DATA(unicode)); |
| 937 | return PyUnicode_DATA(unicode); |
| 938 | } |
Victor Stinner | fe0c155 | 2011-10-03 02:59:31 +0200 | [diff] [blame] | 939 | |
| 940 | void |
| 941 | _PyUnicode_Dump(PyObject *op) |
| 942 | { |
| 943 | PyASCIIObject *ascii = (PyASCIIObject *)op; |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 944 | PyCompactUnicodeObject *compact = (PyCompactUnicodeObject *)op; |
| 945 | PyUnicodeObject *unicode = (PyUnicodeObject *)op; |
| 946 | void *data; |
Victor Stinner | 0d60e87 | 2011-10-23 19:47:19 +0200 | [diff] [blame] | 947 | |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 948 | if (ascii->state.compact) |
Victor Stinner | 0d60e87 | 2011-10-23 19:47:19 +0200 | [diff] [blame] | 949 | { |
| 950 | if (ascii->state.ascii) |
| 951 | data = (ascii + 1); |
| 952 | else |
| 953 | data = (compact + 1); |
| 954 | } |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 955 | else |
| 956 | data = unicode->data.any; |
Victor Stinner | 0d60e87 | 2011-10-23 19:47:19 +0200 | [diff] [blame] | 957 | printf("%s: len=%zu, ",unicode_kind_name(op), ascii->length); |
| 958 | |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 959 | if (ascii->wstr == data) |
| 960 | printf("shared "); |
| 961 | printf("wstr=%p", ascii->wstr); |
Victor Stinner | 0d60e87 | 2011-10-23 19:47:19 +0200 | [diff] [blame] | 962 | |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 963 | if (!(ascii->state.ascii == 1 && ascii->state.compact == 1)) { |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 964 | printf(" (%zu), ", compact->wstr_length); |
| 965 | if (!ascii->state.compact && compact->utf8 == unicode->data.any) |
| 966 | printf("shared "); |
| 967 | printf("utf8=%p (%zu)", compact->utf8, compact->utf8_length); |
Victor Stinner | fe0c155 | 2011-10-03 02:59:31 +0200 | [diff] [blame] | 968 | } |
Victor Stinner | a849a4b | 2011-10-03 12:12:11 +0200 | [diff] [blame] | 969 | printf(", data=%p\n", data); |
Victor Stinner | fe0c155 | 2011-10-03 02:59:31 +0200 | [diff] [blame] | 970 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 971 | #endif |
| 972 | |
| 973 | PyObject * |
| 974 | PyUnicode_New(Py_ssize_t size, Py_UCS4 maxchar) |
| 975 | { |
| 976 | PyObject *obj; |
| 977 | PyCompactUnicodeObject *unicode; |
| 978 | void *data; |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 979 | enum PyUnicode_Kind kind; |
Victor Stinner | 9e9d689 | 2011-10-04 01:02:02 +0200 | [diff] [blame] | 980 | int is_sharing, is_ascii; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 981 | Py_ssize_t char_size; |
| 982 | Py_ssize_t struct_size; |
| 983 | |
| 984 | /* Optimization for empty strings */ |
| 985 | if (size == 0 && unicode_empty != NULL) { |
| 986 | Py_INCREF(unicode_empty); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 987 | return unicode_empty; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 988 | } |
| 989 | |
Victor Stinner | 9e9d689 | 2011-10-04 01:02:02 +0200 | [diff] [blame] | 990 | is_ascii = 0; |
| 991 | is_sharing = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 992 | struct_size = sizeof(PyCompactUnicodeObject); |
| 993 | if (maxchar < 128) { |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 994 | kind = PyUnicode_1BYTE_KIND; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 995 | char_size = 1; |
| 996 | is_ascii = 1; |
| 997 | struct_size = sizeof(PyASCIIObject); |
| 998 | } |
| 999 | else if (maxchar < 256) { |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 1000 | kind = PyUnicode_1BYTE_KIND; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1001 | char_size = 1; |
| 1002 | } |
| 1003 | else if (maxchar < 65536) { |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 1004 | kind = PyUnicode_2BYTE_KIND; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1005 | char_size = 2; |
| 1006 | if (sizeof(wchar_t) == 2) |
| 1007 | is_sharing = 1; |
| 1008 | } |
| 1009 | else { |
Victor Stinner | c9590ad | 2012-03-04 01:34:37 +0100 | [diff] [blame] | 1010 | if (maxchar > MAX_UNICODE) { |
| 1011 | PyErr_SetString(PyExc_SystemError, |
| 1012 | "invalid maximum character passed to PyUnicode_New"); |
| 1013 | return NULL; |
| 1014 | } |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 1015 | kind = PyUnicode_4BYTE_KIND; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1016 | char_size = 4; |
| 1017 | if (sizeof(wchar_t) == 4) |
| 1018 | is_sharing = 1; |
| 1019 | } |
| 1020 | |
| 1021 | /* Ensure we won't overflow the size. */ |
| 1022 | if (size < 0) { |
| 1023 | PyErr_SetString(PyExc_SystemError, |
| 1024 | "Negative size passed to PyUnicode_New"); |
| 1025 | return NULL; |
| 1026 | } |
| 1027 | if (size > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1)) |
| 1028 | return PyErr_NoMemory(); |
| 1029 | |
| 1030 | /* Duplicated allocation code from _PyObject_New() instead of a call to |
| 1031 | * PyObject_New() so we are able to allocate space for the object and |
| 1032 | * it's data buffer. |
| 1033 | */ |
| 1034 | obj = (PyObject *) PyObject_MALLOC(struct_size + (size + 1) * char_size); |
| 1035 | if (obj == NULL) |
| 1036 | return PyErr_NoMemory(); |
| 1037 | obj = PyObject_INIT(obj, &PyUnicode_Type); |
| 1038 | if (obj == NULL) |
| 1039 | return NULL; |
| 1040 | |
| 1041 | unicode = (PyCompactUnicodeObject *)obj; |
| 1042 | if (is_ascii) |
| 1043 | data = ((PyASCIIObject*)obj) + 1; |
| 1044 | else |
| 1045 | data = unicode + 1; |
| 1046 | _PyUnicode_LENGTH(unicode) = size; |
| 1047 | _PyUnicode_HASH(unicode) = -1; |
| 1048 | _PyUnicode_STATE(unicode).interned = 0; |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 1049 | _PyUnicode_STATE(unicode).kind = kind; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1050 | _PyUnicode_STATE(unicode).compact = 1; |
| 1051 | _PyUnicode_STATE(unicode).ready = 1; |
| 1052 | _PyUnicode_STATE(unicode).ascii = is_ascii; |
| 1053 | if (is_ascii) { |
| 1054 | ((char*)data)[size] = 0; |
| 1055 | _PyUnicode_WSTR(unicode) = NULL; |
| 1056 | } |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 1057 | else if (kind == PyUnicode_1BYTE_KIND) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1058 | ((char*)data)[size] = 0; |
| 1059 | _PyUnicode_WSTR(unicode) = NULL; |
| 1060 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1061 | unicode->utf8 = NULL; |
Victor Stinner | 9e9d689 | 2011-10-04 01:02:02 +0200 | [diff] [blame] | 1062 | unicode->utf8_length = 0; |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 1063 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1064 | else { |
| 1065 | unicode->utf8 = NULL; |
Victor Stinner | 9e9d689 | 2011-10-04 01:02:02 +0200 | [diff] [blame] | 1066 | unicode->utf8_length = 0; |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 1067 | if (kind == PyUnicode_2BYTE_KIND) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1068 | ((Py_UCS2*)data)[size] = 0; |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 1069 | else /* kind == PyUnicode_4BYTE_KIND */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1070 | ((Py_UCS4*)data)[size] = 0; |
| 1071 | if (is_sharing) { |
| 1072 | _PyUnicode_WSTR_LENGTH(unicode) = size; |
| 1073 | _PyUnicode_WSTR(unicode) = (wchar_t *)data; |
| 1074 | } |
| 1075 | else { |
| 1076 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
| 1077 | _PyUnicode_WSTR(unicode) = NULL; |
| 1078 | } |
| 1079 | } |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 1080 | #ifdef Py_DEBUG |
| 1081 | /* Fill the data with invalid characters to detect bugs earlier. |
| 1082 | _PyUnicode_CheckConsistency(str, 1) detects invalid characters, |
| 1083 | at least for ASCII and UCS-4 strings. U+00FF is invalid in ASCII |
| 1084 | and U+FFFFFFFF is an invalid character in Unicode 6.0. */ |
| 1085 | memset(data, 0xff, size * kind); |
| 1086 | #endif |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 1087 | assert(_PyUnicode_CheckConsistency((PyObject*)unicode, 0)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1088 | return obj; |
| 1089 | } |
| 1090 | |
| 1091 | #if SIZEOF_WCHAR_T == 2 |
| 1092 | /* Helper function to convert a 16-bits wchar_t representation to UCS4, this |
| 1093 | will decode surrogate pairs, the other conversions are implemented as macros |
Georg Brandl | 7597add | 2011-10-05 16:36:47 +0200 | [diff] [blame] | 1094 | for efficiency. |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1095 | |
| 1096 | This function assumes that unicode can hold one more code point than wstr |
| 1097 | characters for a terminating null character. */ |
Victor Stinner | c53be96 | 2011-10-02 21:33:54 +0200 | [diff] [blame] | 1098 | static void |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1099 | 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] | 1100 | PyObject *unicode) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1101 | { |
| 1102 | const wchar_t *iter; |
| 1103 | Py_UCS4 *ucs4_out; |
| 1104 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 1105 | assert(unicode != NULL); |
| 1106 | assert(_PyUnicode_CHECK(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1107 | assert(_PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND); |
| 1108 | ucs4_out = PyUnicode_4BYTE_DATA(unicode); |
| 1109 | |
| 1110 | for (iter = begin; iter < end; ) { |
| 1111 | assert(ucs4_out < (PyUnicode_4BYTE_DATA(unicode) + |
| 1112 | _PyUnicode_GET_LENGTH(unicode))); |
Victor Stinner | 551ac95 | 2011-11-29 22:58:13 +0100 | [diff] [blame] | 1113 | if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0]) |
| 1114 | && (iter+1) < end |
| 1115 | && Py_UNICODE_IS_LOW_SURROGATE(iter[1])) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1116 | { |
Victor Stinner | 551ac95 | 2011-11-29 22:58:13 +0100 | [diff] [blame] | 1117 | *ucs4_out++ = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1118 | iter += 2; |
| 1119 | } |
| 1120 | else { |
| 1121 | *ucs4_out++ = *iter; |
| 1122 | iter++; |
| 1123 | } |
| 1124 | } |
| 1125 | assert(ucs4_out == (PyUnicode_4BYTE_DATA(unicode) + |
| 1126 | _PyUnicode_GET_LENGTH(unicode))); |
| 1127 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1128 | } |
| 1129 | #endif |
| 1130 | |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 1131 | static int |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 1132 | unicode_check_modifiable(PyObject *unicode) |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 1133 | { |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 1134 | if (!unicode_modifiable(unicode)) { |
Victor Stinner | 0169804 | 2011-10-04 00:04:26 +0200 | [diff] [blame] | 1135 | PyErr_SetString(PyExc_SystemError, |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 1136 | "Cannot modify a string currently used"); |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 1137 | return -1; |
| 1138 | } |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 1139 | return 0; |
| 1140 | } |
| 1141 | |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1142 | static int |
| 1143 | _copy_characters(PyObject *to, Py_ssize_t to_start, |
| 1144 | PyObject *from, Py_ssize_t from_start, |
| 1145 | Py_ssize_t how_many, int check_maxchar) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1146 | { |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1147 | unsigned int from_kind, to_kind; |
| 1148 | void *from_data, *to_data; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1149 | |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 1150 | assert(0 <= how_many); |
| 1151 | assert(0 <= from_start); |
| 1152 | assert(0 <= to_start); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1153 | assert(PyUnicode_Check(from)); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1154 | assert(PyUnicode_IS_READY(from)); |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 1155 | assert(from_start + how_many <= PyUnicode_GET_LENGTH(from)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1156 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 1157 | assert(PyUnicode_Check(to)); |
| 1158 | assert(PyUnicode_IS_READY(to)); |
| 1159 | assert(to_start + how_many <= PyUnicode_GET_LENGTH(to)); |
| 1160 | |
Victor Stinner | c9d369f | 2012-06-16 02:22:37 +0200 | [diff] [blame] | 1161 | if (how_many == 0) |
| 1162 | return 0; |
| 1163 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1164 | from_kind = PyUnicode_KIND(from); |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1165 | from_data = PyUnicode_DATA(from); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1166 | to_kind = PyUnicode_KIND(to); |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1167 | to_data = PyUnicode_DATA(to); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1168 | |
Victor Stinner | f185226 | 2012-06-16 16:38:26 +0200 | [diff] [blame] | 1169 | #ifdef Py_DEBUG |
| 1170 | if (!check_maxchar |
| 1171 | && PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to)) |
| 1172 | { |
| 1173 | const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); |
| 1174 | Py_UCS4 ch; |
| 1175 | Py_ssize_t i; |
| 1176 | for (i=0; i < how_many; i++) { |
| 1177 | ch = PyUnicode_READ(from_kind, from_data, from_start + i); |
| 1178 | assert(ch <= to_maxchar); |
| 1179 | } |
| 1180 | } |
| 1181 | #endif |
| 1182 | |
Victor Stinner | c9d369f | 2012-06-16 02:22:37 +0200 | [diff] [blame] | 1183 | if (from_kind == to_kind) { |
Victor Stinner | f185226 | 2012-06-16 16:38:26 +0200 | [diff] [blame] | 1184 | if (check_maxchar |
| 1185 | && !PyUnicode_IS_ASCII(from) && PyUnicode_IS_ASCII(to)) |
| 1186 | { |
Victor Stinner | c9d369f | 2012-06-16 02:22:37 +0200 | [diff] [blame] | 1187 | /* Writing Latin-1 characters into an ASCII string requires to |
| 1188 | check that all written characters are pure ASCII */ |
Victor Stinner | f185226 | 2012-06-16 16:38:26 +0200 | [diff] [blame] | 1189 | Py_UCS4 max_char; |
| 1190 | max_char = ucs1lib_find_max_char(from_data, |
| 1191 | (Py_UCS1*)from_data + how_many); |
| 1192 | if (max_char >= 128) |
| 1193 | return -1; |
Victor Stinner | c9d369f | 2012-06-16 02:22:37 +0200 | [diff] [blame] | 1194 | } |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 1195 | Py_MEMCPY((char*)to_data + to_kind * to_start, |
| 1196 | (char*)from_data + from_kind * from_start, |
| 1197 | to_kind * how_many); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1198 | } |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1199 | else if (from_kind == PyUnicode_1BYTE_KIND |
| 1200 | && to_kind == PyUnicode_2BYTE_KIND) |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1201 | { |
| 1202 | _PyUnicode_CONVERT_BYTES( |
| 1203 | Py_UCS1, Py_UCS2, |
| 1204 | PyUnicode_1BYTE_DATA(from) + from_start, |
| 1205 | PyUnicode_1BYTE_DATA(from) + from_start + how_many, |
| 1206 | PyUnicode_2BYTE_DATA(to) + to_start |
| 1207 | ); |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1208 | } |
Victor Stinner | 157f83f | 2011-09-28 21:41:31 +0200 | [diff] [blame] | 1209 | else if (from_kind == PyUnicode_1BYTE_KIND |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1210 | && to_kind == PyUnicode_4BYTE_KIND) |
| 1211 | { |
| 1212 | _PyUnicode_CONVERT_BYTES( |
| 1213 | Py_UCS1, Py_UCS4, |
| 1214 | PyUnicode_1BYTE_DATA(from) + from_start, |
| 1215 | PyUnicode_1BYTE_DATA(from) + from_start + how_many, |
| 1216 | PyUnicode_4BYTE_DATA(to) + to_start |
| 1217 | ); |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1218 | } |
| 1219 | else if (from_kind == PyUnicode_2BYTE_KIND |
| 1220 | && to_kind == PyUnicode_4BYTE_KIND) |
| 1221 | { |
| 1222 | _PyUnicode_CONVERT_BYTES( |
| 1223 | Py_UCS2, Py_UCS4, |
| 1224 | PyUnicode_2BYTE_DATA(from) + from_start, |
| 1225 | PyUnicode_2BYTE_DATA(from) + from_start + how_many, |
| 1226 | PyUnicode_4BYTE_DATA(to) + to_start |
| 1227 | ); |
Victor Stinner | be78eaf | 2011-09-28 21:37:03 +0200 | [diff] [blame] | 1228 | } |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1229 | else { |
Victor Stinner | c9d369f | 2012-06-16 02:22:37 +0200 | [diff] [blame] | 1230 | assert (PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to)); |
| 1231 | |
Victor Stinner | c9d369f | 2012-06-16 02:22:37 +0200 | [diff] [blame] | 1232 | if (!check_maxchar) { |
| 1233 | if (from_kind == PyUnicode_2BYTE_KIND |
| 1234 | && to_kind == PyUnicode_1BYTE_KIND) |
| 1235 | { |
| 1236 | _PyUnicode_CONVERT_BYTES( |
| 1237 | Py_UCS2, Py_UCS1, |
| 1238 | PyUnicode_2BYTE_DATA(from) + from_start, |
| 1239 | PyUnicode_2BYTE_DATA(from) + from_start + how_many, |
| 1240 | PyUnicode_1BYTE_DATA(to) + to_start |
| 1241 | ); |
| 1242 | } |
| 1243 | else if (from_kind == PyUnicode_4BYTE_KIND |
| 1244 | && to_kind == PyUnicode_1BYTE_KIND) |
| 1245 | { |
| 1246 | _PyUnicode_CONVERT_BYTES( |
| 1247 | Py_UCS4, Py_UCS1, |
| 1248 | PyUnicode_4BYTE_DATA(from) + from_start, |
| 1249 | PyUnicode_4BYTE_DATA(from) + from_start + how_many, |
| 1250 | PyUnicode_1BYTE_DATA(to) + to_start |
| 1251 | ); |
| 1252 | } |
| 1253 | else if (from_kind == PyUnicode_4BYTE_KIND |
| 1254 | && to_kind == PyUnicode_2BYTE_KIND) |
| 1255 | { |
| 1256 | _PyUnicode_CONVERT_BYTES( |
| 1257 | Py_UCS4, Py_UCS2, |
| 1258 | PyUnicode_4BYTE_DATA(from) + from_start, |
| 1259 | PyUnicode_4BYTE_DATA(from) + from_start + how_many, |
| 1260 | PyUnicode_2BYTE_DATA(to) + to_start |
| 1261 | ); |
| 1262 | } |
| 1263 | else { |
| 1264 | assert(0); |
| 1265 | return -1; |
| 1266 | } |
| 1267 | } |
Victor Stinner | f185226 | 2012-06-16 16:38:26 +0200 | [diff] [blame] | 1268 | else { |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1269 | const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1270 | Py_UCS4 ch; |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1271 | Py_ssize_t i; |
| 1272 | |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1273 | for (i=0; i < how_many; i++) { |
| 1274 | ch = PyUnicode_READ(from_kind, from_data, from_start + i); |
Victor Stinner | c9d369f | 2012-06-16 02:22:37 +0200 | [diff] [blame] | 1275 | if (ch > to_maxchar) |
| 1276 | return -1; |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1277 | PyUnicode_WRITE(to_kind, to_data, to_start + i, ch); |
| 1278 | } |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1279 | } |
| 1280 | } |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1281 | return 0; |
| 1282 | } |
| 1283 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 1284 | void |
| 1285 | _PyUnicode_FastCopyCharacters( |
| 1286 | PyObject *to, Py_ssize_t to_start, |
| 1287 | PyObject *from, Py_ssize_t from_start, Py_ssize_t how_many) |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1288 | { |
| 1289 | (void)_copy_characters(to, to_start, from, from_start, how_many, 0); |
| 1290 | } |
| 1291 | |
| 1292 | Py_ssize_t |
| 1293 | PyUnicode_CopyCharacters(PyObject *to, Py_ssize_t to_start, |
| 1294 | PyObject *from, Py_ssize_t from_start, |
| 1295 | Py_ssize_t how_many) |
| 1296 | { |
| 1297 | int err; |
| 1298 | |
| 1299 | if (!PyUnicode_Check(from) || !PyUnicode_Check(to)) { |
| 1300 | PyErr_BadInternalCall(); |
| 1301 | return -1; |
| 1302 | } |
| 1303 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 1304 | if (PyUnicode_READY(from) == -1) |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1305 | return -1; |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 1306 | if (PyUnicode_READY(to) == -1) |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1307 | return -1; |
| 1308 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 1309 | if (from_start < 0) { |
| 1310 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 1311 | return -1; |
| 1312 | } |
| 1313 | if (to_start < 0) { |
| 1314 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 1315 | return -1; |
| 1316 | } |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1317 | how_many = Py_MIN(PyUnicode_GET_LENGTH(from), how_many); |
| 1318 | if (to_start + how_many > PyUnicode_GET_LENGTH(to)) { |
| 1319 | PyErr_Format(PyExc_SystemError, |
| 1320 | "Cannot write %zi characters at %zi " |
| 1321 | "in a string of %zi characters", |
| 1322 | how_many, to_start, PyUnicode_GET_LENGTH(to)); |
| 1323 | return -1; |
| 1324 | } |
| 1325 | |
| 1326 | if (how_many == 0) |
| 1327 | return 0; |
| 1328 | |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 1329 | if (unicode_check_modifiable(to)) |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1330 | return -1; |
| 1331 | |
| 1332 | err = _copy_characters(to, to_start, from, from_start, how_many, 1); |
| 1333 | if (err) { |
| 1334 | PyErr_Format(PyExc_SystemError, |
| 1335 | "Cannot copy %s characters " |
| 1336 | "into a string of %s characters", |
| 1337 | unicode_kind_name(from), |
| 1338 | unicode_kind_name(to)); |
| 1339 | return -1; |
| 1340 | } |
Victor Stinner | a0702ab | 2011-09-29 14:14:38 +0200 | [diff] [blame] | 1341 | return how_many; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1342 | } |
| 1343 | |
Victor Stinner | 1722216 | 2011-09-28 22:15:37 +0200 | [diff] [blame] | 1344 | /* Find the maximum code point and count the number of surrogate pairs so a |
| 1345 | correct string length can be computed before converting a string to UCS4. |
| 1346 | This function counts single surrogates as a character and not as a pair. |
| 1347 | |
| 1348 | Return 0 on success, or -1 on error. */ |
| 1349 | static int |
| 1350 | find_maxchar_surrogates(const wchar_t *begin, const wchar_t *end, |
| 1351 | Py_UCS4 *maxchar, Py_ssize_t *num_surrogates) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1352 | { |
| 1353 | const wchar_t *iter; |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 1354 | Py_UCS4 ch; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1355 | |
Victor Stinner | c53be96 | 2011-10-02 21:33:54 +0200 | [diff] [blame] | 1356 | assert(num_surrogates != NULL && maxchar != NULL); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1357 | *num_surrogates = 0; |
| 1358 | *maxchar = 0; |
| 1359 | |
| 1360 | for (iter = begin; iter < end; ) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1361 | #if SIZEOF_WCHAR_T == 2 |
Victor Stinner | ca4f207 | 2011-11-22 03:38:40 +0100 | [diff] [blame] | 1362 | if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0]) |
| 1363 | && (iter+1) < end |
| 1364 | && Py_UNICODE_IS_LOW_SURROGATE(iter[1])) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1365 | { |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 1366 | ch = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1367 | ++(*num_surrogates); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1368 | iter += 2; |
| 1369 | } |
| 1370 | else |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1371 | #endif |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 1372 | { |
| 1373 | ch = *iter; |
| 1374 | iter++; |
| 1375 | } |
| 1376 | if (ch > *maxchar) { |
| 1377 | *maxchar = ch; |
| 1378 | if (*maxchar > MAX_UNICODE) { |
| 1379 | PyErr_Format(PyExc_ValueError, |
| 1380 | "character U+%x is not in range [U+0000; U+10ffff]", |
| 1381 | ch); |
| 1382 | return -1; |
| 1383 | } |
| 1384 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1385 | } |
| 1386 | return 0; |
| 1387 | } |
| 1388 | |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1389 | int |
| 1390 | _PyUnicode_Ready(PyObject *unicode) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1391 | { |
| 1392 | wchar_t *end; |
| 1393 | Py_UCS4 maxchar = 0; |
| 1394 | Py_ssize_t num_surrogates; |
| 1395 | #if SIZEOF_WCHAR_T == 2 |
| 1396 | Py_ssize_t length_wo_surrogates; |
| 1397 | #endif |
| 1398 | |
Georg Brandl | 7597add | 2011-10-05 16:36:47 +0200 | [diff] [blame] | 1399 | /* _PyUnicode_Ready() is only intended for old-style API usage where |
Victor Stinner | d8f6510 | 2011-09-29 19:43:17 +0200 | [diff] [blame] | 1400 | strings were created using _PyObject_New() and where no canonical |
| 1401 | representation (the str field) has been set yet aka strings |
| 1402 | which are not yet ready. */ |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 1403 | assert(_PyUnicode_CHECK(unicode)); |
| 1404 | assert(_PyUnicode_KIND(unicode) == PyUnicode_WCHAR_KIND); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1405 | assert(_PyUnicode_WSTR(unicode) != NULL); |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1406 | assert(_PyUnicode_DATA_ANY(unicode) == NULL); |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1407 | assert(_PyUnicode_UTF8(unicode) == NULL); |
Victor Stinner | d8f6510 | 2011-09-29 19:43:17 +0200 | [diff] [blame] | 1408 | /* Actually, it should neither be interned nor be anything else: */ |
| 1409 | assert(_PyUnicode_STATE(unicode).interned == SSTATE_NOT_INTERNED); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1410 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1411 | end = _PyUnicode_WSTR(unicode) + _PyUnicode_WSTR_LENGTH(unicode); |
Victor Stinner | 1722216 | 2011-09-28 22:15:37 +0200 | [diff] [blame] | 1412 | if (find_maxchar_surrogates(_PyUnicode_WSTR(unicode), end, |
Victor Stinner | d8f6510 | 2011-09-29 19:43:17 +0200 | [diff] [blame] | 1413 | &maxchar, &num_surrogates) == -1) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1414 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1415 | |
| 1416 | if (maxchar < 256) { |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1417 | _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(_PyUnicode_WSTR_LENGTH(unicode) + 1); |
| 1418 | if (!_PyUnicode_DATA_ANY(unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1419 | PyErr_NoMemory(); |
| 1420 | return -1; |
| 1421 | } |
Victor Stinner | fb5f5f2 | 2011-09-28 21:39:49 +0200 | [diff] [blame] | 1422 | _PyUnicode_CONVERT_BYTES(wchar_t, unsigned char, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1423 | _PyUnicode_WSTR(unicode), end, |
| 1424 | PyUnicode_1BYTE_DATA(unicode)); |
| 1425 | PyUnicode_1BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0'; |
| 1426 | _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
| 1427 | _PyUnicode_STATE(unicode).kind = PyUnicode_1BYTE_KIND; |
| 1428 | if (maxchar < 128) { |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 1429 | _PyUnicode_STATE(unicode).ascii = 1; |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1430 | _PyUnicode_UTF8(unicode) = _PyUnicode_DATA_ANY(unicode); |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1431 | _PyUnicode_UTF8_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1432 | } |
| 1433 | else { |
Victor Stinner | a3b334d | 2011-10-03 13:53:37 +0200 | [diff] [blame] | 1434 | _PyUnicode_STATE(unicode).ascii = 0; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1435 | _PyUnicode_UTF8(unicode) = NULL; |
| 1436 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1437 | } |
| 1438 | PyObject_FREE(_PyUnicode_WSTR(unicode)); |
| 1439 | _PyUnicode_WSTR(unicode) = NULL; |
| 1440 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
| 1441 | } |
| 1442 | /* In this case we might have to convert down from 4-byte native |
| 1443 | wchar_t to 2-byte unicode. */ |
| 1444 | else if (maxchar < 65536) { |
| 1445 | assert(num_surrogates == 0 && |
| 1446 | "FindMaxCharAndNumSurrogatePairs() messed up"); |
| 1447 | |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1448 | #if SIZEOF_WCHAR_T == 2 |
| 1449 | /* We can share representations and are done. */ |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1450 | _PyUnicode_DATA_ANY(unicode) = _PyUnicode_WSTR(unicode); |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1451 | PyUnicode_2BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0'; |
| 1452 | _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
| 1453 | _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1454 | _PyUnicode_UTF8(unicode) = NULL; |
| 1455 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1456 | #else |
| 1457 | /* sizeof(wchar_t) == 4 */ |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1458 | _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC( |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1459 | 2 * (_PyUnicode_WSTR_LENGTH(unicode) + 1)); |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1460 | if (!_PyUnicode_DATA_ANY(unicode)) { |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1461 | PyErr_NoMemory(); |
| 1462 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1463 | } |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1464 | _PyUnicode_CONVERT_BYTES(wchar_t, Py_UCS2, |
| 1465 | _PyUnicode_WSTR(unicode), end, |
| 1466 | PyUnicode_2BYTE_DATA(unicode)); |
| 1467 | PyUnicode_2BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0'; |
| 1468 | _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
| 1469 | _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1470 | _PyUnicode_UTF8(unicode) = NULL; |
| 1471 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Victor Stinner | 506f592 | 2011-09-28 22:34:18 +0200 | [diff] [blame] | 1472 | PyObject_FREE(_PyUnicode_WSTR(unicode)); |
| 1473 | _PyUnicode_WSTR(unicode) = NULL; |
| 1474 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
| 1475 | #endif |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1476 | } |
| 1477 | /* maxchar exeeds 16 bit, wee need 4 bytes for unicode characters */ |
| 1478 | else { |
| 1479 | #if SIZEOF_WCHAR_T == 2 |
| 1480 | /* in case the native representation is 2-bytes, we need to allocate a |
| 1481 | new normalized 4-byte version. */ |
| 1482 | length_wo_surrogates = _PyUnicode_WSTR_LENGTH(unicode) - num_surrogates; |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1483 | _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(4 * (length_wo_surrogates + 1)); |
| 1484 | if (!_PyUnicode_DATA_ANY(unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1485 | PyErr_NoMemory(); |
| 1486 | return -1; |
| 1487 | } |
| 1488 | _PyUnicode_LENGTH(unicode) = length_wo_surrogates; |
| 1489 | _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND; |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1490 | _PyUnicode_UTF8(unicode) = NULL; |
| 1491 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Victor Stinner | 126c559 | 2011-10-03 04:17:10 +0200 | [diff] [blame] | 1492 | /* unicode_convert_wchar_to_ucs4() requires a ready string */ |
| 1493 | _PyUnicode_STATE(unicode).ready = 1; |
Victor Stinner | c53be96 | 2011-10-02 21:33:54 +0200 | [diff] [blame] | 1494 | unicode_convert_wchar_to_ucs4(_PyUnicode_WSTR(unicode), end, unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1495 | PyObject_FREE(_PyUnicode_WSTR(unicode)); |
| 1496 | _PyUnicode_WSTR(unicode) = NULL; |
| 1497 | _PyUnicode_WSTR_LENGTH(unicode) = 0; |
| 1498 | #else |
| 1499 | assert(num_surrogates == 0); |
| 1500 | |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 1501 | _PyUnicode_DATA_ANY(unicode) = _PyUnicode_WSTR(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1502 | _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode); |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1503 | _PyUnicode_UTF8(unicode) = NULL; |
| 1504 | _PyUnicode_UTF8_LENGTH(unicode) = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1505 | _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND; |
| 1506 | #endif |
| 1507 | PyUnicode_4BYTE_DATA(unicode)[_PyUnicode_LENGTH(unicode)] = '\0'; |
| 1508 | } |
| 1509 | _PyUnicode_STATE(unicode).ready = 1; |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1510 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1511 | return 0; |
| 1512 | } |
| 1513 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1514 | static void |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1515 | unicode_dealloc(register PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1516 | { |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1517 | switch (PyUnicode_CHECK_INTERNED(unicode)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1518 | case SSTATE_NOT_INTERNED: |
| 1519 | break; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1520 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1521 | case SSTATE_INTERNED_MORTAL: |
| 1522 | /* revive dead object temporarily for DelItem */ |
| 1523 | Py_REFCNT(unicode) = 3; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 1524 | if (PyDict_DelItem(interned, unicode) != 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1525 | Py_FatalError( |
| 1526 | "deletion of interned string failed"); |
| 1527 | break; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1528 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1529 | case SSTATE_INTERNED_IMMORTAL: |
| 1530 | Py_FatalError("Immortal interned string died."); |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1531 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1532 | default: |
| 1533 | Py_FatalError("Inconsistent interned string state."); |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 1534 | } |
| 1535 | |
Victor Stinner | 0349091 | 2011-10-03 23:45:12 +0200 | [diff] [blame] | 1536 | if (_PyUnicode_HAS_WSTR_MEMORY(unicode)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1537 | PyObject_DEL(_PyUnicode_WSTR(unicode)); |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 1538 | if (_PyUnicode_HAS_UTF8_MEMORY(unicode)) |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 1539 | PyObject_DEL(_PyUnicode_UTF8(unicode)); |
Victor Stinner | b0a82a6 | 2011-12-12 13:08:33 +0100 | [diff] [blame] | 1540 | if (!PyUnicode_IS_COMPACT(unicode) && _PyUnicode_DATA_ANY(unicode)) |
| 1541 | PyObject_DEL(_PyUnicode_DATA_ANY(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1542 | |
Victor Stinner | b0a82a6 | 2011-12-12 13:08:33 +0100 | [diff] [blame] | 1543 | Py_TYPE(unicode)->tp_free(unicode); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1544 | } |
| 1545 | |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1546 | #ifdef Py_DEBUG |
| 1547 | static int |
| 1548 | unicode_is_singleton(PyObject *unicode) |
| 1549 | { |
| 1550 | PyASCIIObject *ascii = (PyASCIIObject *)unicode; |
| 1551 | if (unicode == unicode_empty) |
| 1552 | return 1; |
| 1553 | if (ascii->state.kind != PyUnicode_WCHAR_KIND && ascii->length == 1) |
| 1554 | { |
| 1555 | Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, 0); |
| 1556 | if (ch < 256 && unicode_latin1[ch] == unicode) |
| 1557 | return 1; |
| 1558 | } |
| 1559 | return 0; |
| 1560 | } |
| 1561 | #endif |
| 1562 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1563 | static int |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 1564 | unicode_modifiable(PyObject *unicode) |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1565 | { |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 1566 | assert(_PyUnicode_CHECK(unicode)); |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1567 | if (Py_REFCNT(unicode) != 1) |
| 1568 | return 0; |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 1569 | if (_PyUnicode_HASH(unicode) != -1) |
| 1570 | return 0; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1571 | if (PyUnicode_CHECK_INTERNED(unicode)) |
| 1572 | return 0; |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 1573 | if (!PyUnicode_CheckExact(unicode)) |
| 1574 | return 0; |
Victor Stinner | 77bb47b | 2011-10-03 20:06:05 +0200 | [diff] [blame] | 1575 | #ifdef Py_DEBUG |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 1576 | /* singleton refcount is greater than 1 */ |
| 1577 | assert(!unicode_is_singleton(unicode)); |
Victor Stinner | 77bb47b | 2011-10-03 20:06:05 +0200 | [diff] [blame] | 1578 | #endif |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1579 | return 1; |
| 1580 | } |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1581 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1582 | static int |
| 1583 | unicode_resize(PyObject **p_unicode, Py_ssize_t length) |
| 1584 | { |
| 1585 | PyObject *unicode; |
| 1586 | Py_ssize_t old_length; |
| 1587 | |
| 1588 | assert(p_unicode != NULL); |
| 1589 | unicode = *p_unicode; |
| 1590 | |
| 1591 | assert(unicode != NULL); |
| 1592 | assert(PyUnicode_Check(unicode)); |
| 1593 | assert(0 <= length); |
| 1594 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 1595 | if (_PyUnicode_KIND(unicode) == PyUnicode_WCHAR_KIND) |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1596 | old_length = PyUnicode_WSTR_LENGTH(unicode); |
| 1597 | else |
| 1598 | old_length = PyUnicode_GET_LENGTH(unicode); |
| 1599 | if (old_length == length) |
| 1600 | return 0; |
| 1601 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1602 | if (length == 0) { |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 1603 | _Py_INCREF_UNICODE_EMPTY(); |
| 1604 | if (!unicode_empty) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1605 | return -1; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1606 | Py_DECREF(*p_unicode); |
| 1607 | *p_unicode = unicode_empty; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1608 | return 0; |
| 1609 | } |
| 1610 | |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 1611 | if (!unicode_modifiable(unicode)) { |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1612 | PyObject *copy = resize_copy(unicode, length); |
| 1613 | if (copy == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1614 | return -1; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1615 | Py_DECREF(*p_unicode); |
| 1616 | *p_unicode = copy; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1617 | return 0; |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1618 | } |
| 1619 | |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1620 | if (PyUnicode_IS_COMPACT(unicode)) { |
Victor Stinner | b0a82a6 | 2011-12-12 13:08:33 +0100 | [diff] [blame] | 1621 | PyObject *new_unicode = resize_compact(unicode, length); |
| 1622 | if (new_unicode == NULL) |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1623 | return -1; |
Victor Stinner | b0a82a6 | 2011-12-12 13:08:33 +0100 | [diff] [blame] | 1624 | *p_unicode = new_unicode; |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1625 | return 0; |
Benjamin Peterson | 4bfce8f | 2011-10-03 19:35:07 -0400 | [diff] [blame] | 1626 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1627 | return resize_inplace(unicode, length); |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1628 | } |
| 1629 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1630 | int |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1631 | PyUnicode_Resize(PyObject **p_unicode, Py_ssize_t length) |
Alexandre Vassalotti | aa0e531 | 2008-12-27 06:43:58 +0000 | [diff] [blame] | 1632 | { |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1633 | PyObject *unicode; |
| 1634 | if (p_unicode == NULL) { |
| 1635 | PyErr_BadInternalCall(); |
| 1636 | return -1; |
| 1637 | } |
| 1638 | unicode = *p_unicode; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1639 | if (unicode == NULL || !PyUnicode_Check(unicode) || length < 0) |
Victor Stinner | fe226c0 | 2011-10-03 03:52:20 +0200 | [diff] [blame] | 1640 | { |
| 1641 | PyErr_BadInternalCall(); |
| 1642 | return -1; |
| 1643 | } |
| 1644 | return unicode_resize(p_unicode, length); |
Alexandre Vassalotti | aa0e531 | 2008-12-27 06:43:58 +0000 | [diff] [blame] | 1645 | } |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1646 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1647 | static int |
Victor Stinner | 1b487b4 | 2012-05-03 12:29:04 +0200 | [diff] [blame] | 1648 | unicode_widen(PyObject **p_unicode, Py_ssize_t length, |
| 1649 | unsigned int maxchar) |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1650 | { |
| 1651 | PyObject *result; |
| 1652 | assert(PyUnicode_IS_READY(*p_unicode)); |
Victor Stinner | 1b487b4 | 2012-05-03 12:29:04 +0200 | [diff] [blame] | 1653 | assert(length <= PyUnicode_GET_LENGTH(*p_unicode)); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1654 | if (maxchar <= PyUnicode_MAX_CHAR_VALUE(*p_unicode)) |
| 1655 | return 0; |
| 1656 | result = PyUnicode_New(PyUnicode_GET_LENGTH(*p_unicode), |
| 1657 | maxchar); |
| 1658 | if (result == NULL) |
| 1659 | return -1; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 1660 | _PyUnicode_FastCopyCharacters(result, 0, *p_unicode, 0, length); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1661 | Py_DECREF(*p_unicode); |
| 1662 | *p_unicode = result; |
| 1663 | return 0; |
| 1664 | } |
| 1665 | |
| 1666 | static int |
| 1667 | unicode_putchar(PyObject **p_unicode, Py_ssize_t *pos, |
| 1668 | Py_UCS4 ch) |
| 1669 | { |
Victor Stinner | 15e9ed2 | 2012-02-22 13:36:20 +0100 | [diff] [blame] | 1670 | assert(ch <= MAX_UNICODE); |
Victor Stinner | 1b487b4 | 2012-05-03 12:29:04 +0200 | [diff] [blame] | 1671 | if (unicode_widen(p_unicode, *pos, ch) < 0) |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 1672 | return -1; |
| 1673 | PyUnicode_WRITE(PyUnicode_KIND(*p_unicode), |
| 1674 | PyUnicode_DATA(*p_unicode), |
| 1675 | (*pos)++, ch); |
| 1676 | return 0; |
| 1677 | } |
| 1678 | |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1679 | /* Copy a ASCII or latin1 char* string into a Python Unicode string. |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1680 | |
Victor Stinner | b429d3b | 2012-02-22 21:22:20 +0100 | [diff] [blame] | 1681 | WARNING: The function doesn't copy the terminating null character and |
| 1682 | doesn't check the maximum character (may write a latin1 character in an |
| 1683 | ASCII string). */ |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 1684 | static void |
| 1685 | unicode_write_cstr(PyObject *unicode, Py_ssize_t index, |
| 1686 | const char *str, Py_ssize_t len) |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1687 | { |
| 1688 | enum PyUnicode_Kind kind = PyUnicode_KIND(unicode); |
| 1689 | void *data = PyUnicode_DATA(unicode); |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 1690 | const char *end = str + len; |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1691 | |
| 1692 | switch (kind) { |
| 1693 | case PyUnicode_1BYTE_KIND: { |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1694 | assert(index + len <= PyUnicode_GET_LENGTH(unicode)); |
Antoine Pitrou | ba6bafc | 2012-02-22 16:41:50 +0100 | [diff] [blame] | 1695 | memcpy((char *) data + index, str, len); |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 1696 | break; |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1697 | } |
| 1698 | case PyUnicode_2BYTE_KIND: { |
| 1699 | Py_UCS2 *start = (Py_UCS2 *)data + index; |
| 1700 | Py_UCS2 *ucs2 = start; |
| 1701 | assert(index <= PyUnicode_GET_LENGTH(unicode)); |
| 1702 | |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 1703 | for (; str < end; ++ucs2, ++str) |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1704 | *ucs2 = (Py_UCS2)*str; |
| 1705 | |
| 1706 | assert((ucs2 - start) <= PyUnicode_GET_LENGTH(unicode)); |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 1707 | break; |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1708 | } |
| 1709 | default: { |
| 1710 | Py_UCS4 *start = (Py_UCS4 *)data + index; |
| 1711 | Py_UCS4 *ucs4 = start; |
| 1712 | assert(kind == PyUnicode_4BYTE_KIND); |
| 1713 | assert(index <= PyUnicode_GET_LENGTH(unicode)); |
| 1714 | |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 1715 | for (; str < end; ++ucs4, ++str) |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1716 | *ucs4 = (Py_UCS4)*str; |
| 1717 | |
| 1718 | assert((ucs4 - start) <= PyUnicode_GET_LENGTH(unicode)); |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 1719 | } |
| 1720 | } |
| 1721 | } |
| 1722 | |
| 1723 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1724 | static PyObject* |
| 1725 | get_latin1_char(unsigned char ch) |
| 1726 | { |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 1727 | PyObject *unicode = unicode_latin1[ch]; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1728 | if (!unicode) { |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 1729 | unicode = PyUnicode_New(1, ch); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1730 | if (!unicode) |
| 1731 | return NULL; |
| 1732 | PyUnicode_1BYTE_DATA(unicode)[0] = ch; |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1733 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1734 | unicode_latin1[ch] = unicode; |
| 1735 | } |
| 1736 | Py_INCREF(unicode); |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 1737 | return unicode; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1738 | } |
| 1739 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1740 | PyObject * |
| 1741 | PyUnicode_FromUnicode(const Py_UNICODE *u, Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1742 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 1743 | PyObject *unicode; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1744 | Py_UCS4 maxchar = 0; |
| 1745 | Py_ssize_t num_surrogates; |
| 1746 | |
| 1747 | if (u == NULL) |
| 1748 | return (PyObject*)_PyUnicode_New(size); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1749 | |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1750 | /* If the Unicode data is known at construction time, we can apply |
| 1751 | some optimizations which share commonly used objects. */ |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 1752 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1753 | /* Optimization for empty strings */ |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 1754 | if (size == 0) |
| 1755 | _Py_RETURN_UNICODE_EMPTY(); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 1756 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1757 | /* Single character Unicode objects in the Latin-1 range are |
| 1758 | shared when using this constructor */ |
Victor Stinner | d21b58c | 2013-02-26 00:15:54 +0100 | [diff] [blame] | 1759 | if (size == 1 && (Py_UCS4)*u < 256) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1760 | return get_latin1_char((unsigned char)*u); |
| 1761 | |
| 1762 | /* If not empty and not single character, copy the Unicode data |
| 1763 | into the new object */ |
Victor Stinner | d8f6510 | 2011-09-29 19:43:17 +0200 | [diff] [blame] | 1764 | if (find_maxchar_surrogates(u, u + size, |
| 1765 | &maxchar, &num_surrogates) == -1) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1766 | return NULL; |
| 1767 | |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 1768 | unicode = PyUnicode_New(size - num_surrogates, maxchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1769 | if (!unicode) |
| 1770 | return NULL; |
| 1771 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1772 | switch (PyUnicode_KIND(unicode)) { |
| 1773 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | fb5f5f2 | 2011-09-28 21:39:49 +0200 | [diff] [blame] | 1774 | _PyUnicode_CONVERT_BYTES(Py_UNICODE, unsigned char, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1775 | u, u + size, PyUnicode_1BYTE_DATA(unicode)); |
| 1776 | break; |
| 1777 | case PyUnicode_2BYTE_KIND: |
| 1778 | #if Py_UNICODE_SIZE == 2 |
| 1779 | Py_MEMCPY(PyUnicode_2BYTE_DATA(unicode), u, size * 2); |
| 1780 | #else |
Victor Stinner | fb5f5f2 | 2011-09-28 21:39:49 +0200 | [diff] [blame] | 1781 | _PyUnicode_CONVERT_BYTES(Py_UNICODE, Py_UCS2, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1782 | u, u + size, PyUnicode_2BYTE_DATA(unicode)); |
| 1783 | #endif |
| 1784 | break; |
| 1785 | case PyUnicode_4BYTE_KIND: |
| 1786 | #if SIZEOF_WCHAR_T == 2 |
| 1787 | /* This is the only case which has to process surrogates, thus |
| 1788 | a simple copy loop is not enough and we need a function. */ |
Victor Stinner | c53be96 | 2011-10-02 21:33:54 +0200 | [diff] [blame] | 1789 | unicode_convert_wchar_to_ucs4(u, u + size, unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1790 | #else |
| 1791 | assert(num_surrogates == 0); |
| 1792 | Py_MEMCPY(PyUnicode_4BYTE_DATA(unicode), u, size * 4); |
| 1793 | #endif |
| 1794 | break; |
| 1795 | default: |
| 1796 | assert(0 && "Impossible state"); |
| 1797 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1798 | |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1799 | return unicode_result(unicode); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 1800 | } |
| 1801 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1802 | PyObject * |
| 1803 | PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size) |
Walter Dörwald | acaa5a1 | 2007-05-05 12:00:46 +0000 | [diff] [blame] | 1804 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 1805 | if (size < 0) { |
| 1806 | PyErr_SetString(PyExc_SystemError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 1807 | "Negative size passed to PyUnicode_FromStringAndSize"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 1808 | return NULL; |
| 1809 | } |
Victor Stinner | a1d12bb | 2011-12-11 21:53:09 +0100 | [diff] [blame] | 1810 | if (u != NULL) |
| 1811 | return PyUnicode_DecodeUTF8Stateful(u, size, NULL, NULL); |
| 1812 | else |
| 1813 | return (PyObject *)_PyUnicode_New(size); |
Walter Dörwald | acaa5a1 | 2007-05-05 12:00:46 +0000 | [diff] [blame] | 1814 | } |
| 1815 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 1816 | PyObject * |
| 1817 | PyUnicode_FromString(const char *u) |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 1818 | { |
| 1819 | size_t size = strlen(u); |
| 1820 | if (size > PY_SSIZE_T_MAX) { |
| 1821 | PyErr_SetString(PyExc_OverflowError, "input too long"); |
| 1822 | return NULL; |
| 1823 | } |
Victor Stinner | a1d12bb | 2011-12-11 21:53:09 +0100 | [diff] [blame] | 1824 | return PyUnicode_DecodeUTF8Stateful(u, (Py_ssize_t)size, NULL, NULL); |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 1825 | } |
| 1826 | |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 1827 | PyObject * |
| 1828 | _PyUnicode_FromId(_Py_Identifier *id) |
| 1829 | { |
| 1830 | if (!id->object) { |
Victor Stinner | d1cd99b | 2012-02-07 23:05:55 +0100 | [diff] [blame] | 1831 | id->object = PyUnicode_DecodeUTF8Stateful(id->string, |
| 1832 | strlen(id->string), |
| 1833 | NULL, NULL); |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 1834 | if (!id->object) |
| 1835 | return NULL; |
| 1836 | PyUnicode_InternInPlace(&id->object); |
| 1837 | assert(!id->next); |
| 1838 | id->next = static_strings; |
| 1839 | static_strings = id; |
| 1840 | } |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 1841 | return id->object; |
| 1842 | } |
| 1843 | |
| 1844 | void |
| 1845 | _PyUnicode_ClearStaticStrings() |
| 1846 | { |
Benjamin Peterson | 0c270a8 | 2013-01-09 09:52:01 -0600 | [diff] [blame] | 1847 | _Py_Identifier *tmp, *s = static_strings; |
| 1848 | while (s) { |
| 1849 | Py_DECREF(s->object); |
| 1850 | s->object = NULL; |
| 1851 | tmp = s->next; |
| 1852 | s->next = NULL; |
| 1853 | s = tmp; |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 1854 | } |
Benjamin Peterson | 0c270a8 | 2013-01-09 09:52:01 -0600 | [diff] [blame] | 1855 | static_strings = NULL; |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 1856 | } |
| 1857 | |
Benjamin Peterson | 0df5429 | 2012-03-26 14:50:32 -0400 | [diff] [blame] | 1858 | /* Internal function, doesn't check maximum character */ |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1859 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 1860 | PyObject* |
| 1861 | _PyUnicode_FromASCII(const char *buffer, Py_ssize_t size) |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 1862 | { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 1863 | const unsigned char *s = (const unsigned char *)buffer; |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 1864 | PyObject *unicode; |
Victor Stinner | e6b2d44 | 2011-12-11 21:54:30 +0100 | [diff] [blame] | 1865 | if (size == 1) { |
Victor Stinner | 0617b6e | 2011-10-05 23:26:01 +0200 | [diff] [blame] | 1866 | #ifdef Py_DEBUG |
Victor Stinner | d21b58c | 2013-02-26 00:15:54 +0100 | [diff] [blame] | 1867 | assert((unsigned char)s[0] < 128); |
Victor Stinner | 0617b6e | 2011-10-05 23:26:01 +0200 | [diff] [blame] | 1868 | #endif |
Antoine Pitrou | 7c46da7 | 2011-10-06 22:07:51 +0200 | [diff] [blame] | 1869 | return get_latin1_char(s[0]); |
Victor Stinner | e6b2d44 | 2011-12-11 21:54:30 +0100 | [diff] [blame] | 1870 | } |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 1871 | unicode = PyUnicode_New(size, 127); |
| 1872 | if (!unicode) |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 1873 | return NULL; |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 1874 | memcpy(PyUnicode_1BYTE_DATA(unicode), s, size); |
| 1875 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
| 1876 | return unicode; |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 1877 | } |
| 1878 | |
Victor Stinner | c80d6d2 | 2011-10-05 14:13:28 +0200 | [diff] [blame] | 1879 | static Py_UCS4 |
| 1880 | kind_maxchar_limit(unsigned int kind) |
| 1881 | { |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 1882 | switch (kind) { |
Victor Stinner | c80d6d2 | 2011-10-05 14:13:28 +0200 | [diff] [blame] | 1883 | case PyUnicode_1BYTE_KIND: |
| 1884 | return 0x80; |
| 1885 | case PyUnicode_2BYTE_KIND: |
| 1886 | return 0x100; |
| 1887 | case PyUnicode_4BYTE_KIND: |
| 1888 | return 0x10000; |
| 1889 | default: |
| 1890 | assert(0 && "invalid kind"); |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 1891 | return MAX_UNICODE; |
Victor Stinner | c80d6d2 | 2011-10-05 14:13:28 +0200 | [diff] [blame] | 1892 | } |
| 1893 | } |
| 1894 | |
Victor Stinner | e6abb48 | 2012-05-02 01:15:40 +0200 | [diff] [blame] | 1895 | Py_LOCAL_INLINE(Py_UCS4) |
| 1896 | align_maxchar(Py_UCS4 maxchar) |
| 1897 | { |
| 1898 | if (maxchar <= 127) |
| 1899 | return 127; |
| 1900 | else if (maxchar <= 255) |
| 1901 | return 255; |
| 1902 | else if (maxchar <= 65535) |
| 1903 | return 65535; |
| 1904 | else |
| 1905 | return MAX_UNICODE; |
| 1906 | } |
| 1907 | |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 1908 | static PyObject* |
Victor Stinner | d21b58c | 2013-02-26 00:15:54 +0100 | [diff] [blame] | 1909 | _PyUnicode_FromUCS1(const Py_UCS1* u, Py_ssize_t size) |
Mark Dickinson | 081dfee | 2009-03-18 14:47:41 +0000 | [diff] [blame] | 1910 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1911 | PyObject *res; |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1912 | unsigned char max_char; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1913 | |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 1914 | if (size == 0) |
| 1915 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1916 | assert(size > 0); |
Antoine Pitrou | 7c46da7 | 2011-10-06 22:07:51 +0200 | [diff] [blame] | 1917 | if (size == 1) |
| 1918 | return get_latin1_char(u[0]); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1919 | |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1920 | max_char = ucs1lib_find_max_char(u, u + size); |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1921 | res = PyUnicode_New(size, max_char); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1922 | if (!res) |
| 1923 | return NULL; |
| 1924 | memcpy(PyUnicode_1BYTE_DATA(res), u, size); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1925 | assert(_PyUnicode_CheckConsistency(res, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1926 | return res; |
Mark Dickinson | 081dfee | 2009-03-18 14:47:41 +0000 | [diff] [blame] | 1927 | } |
| 1928 | |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 1929 | static PyObject* |
| 1930 | _PyUnicode_FromUCS2(const Py_UCS2 *u, Py_ssize_t size) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1931 | { |
| 1932 | PyObject *res; |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1933 | Py_UCS2 max_char; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1934 | |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 1935 | if (size == 0) |
| 1936 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1937 | assert(size > 0); |
Victor Stinner | b6cd014 | 2012-05-03 02:17:04 +0200 | [diff] [blame] | 1938 | if (size == 1) { |
| 1939 | Py_UCS4 ch = u[0]; |
| 1940 | if (ch < 256) |
| 1941 | return get_latin1_char((unsigned char)ch); |
| 1942 | |
| 1943 | res = PyUnicode_New(1, ch); |
| 1944 | if (res == NULL) |
| 1945 | return NULL; |
| 1946 | PyUnicode_WRITE(PyUnicode_KIND(res), PyUnicode_DATA(res), 0, ch); |
| 1947 | assert(_PyUnicode_CheckConsistency(res, 1)); |
| 1948 | return res; |
| 1949 | } |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1950 | |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1951 | max_char = ucs2lib_find_max_char(u, u + size); |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1952 | res = PyUnicode_New(size, max_char); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1953 | if (!res) |
| 1954 | return NULL; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1955 | if (max_char >= 256) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1956 | memcpy(PyUnicode_2BYTE_DATA(res), u, sizeof(Py_UCS2)*size); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1957 | else { |
| 1958 | _PyUnicode_CONVERT_BYTES( |
| 1959 | Py_UCS2, Py_UCS1, u, u + size, PyUnicode_1BYTE_DATA(res)); |
| 1960 | } |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1961 | assert(_PyUnicode_CheckConsistency(res, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1962 | return res; |
| 1963 | } |
| 1964 | |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 1965 | static PyObject* |
| 1966 | _PyUnicode_FromUCS4(const Py_UCS4 *u, Py_ssize_t size) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1967 | { |
| 1968 | PyObject *res; |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1969 | Py_UCS4 max_char; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1970 | |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 1971 | if (size == 0) |
| 1972 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1973 | assert(size > 0); |
Victor Stinner | b6cd014 | 2012-05-03 02:17:04 +0200 | [diff] [blame] | 1974 | if (size == 1) { |
| 1975 | Py_UCS4 ch = u[0]; |
| 1976 | if (ch < 256) |
| 1977 | return get_latin1_char((unsigned char)ch); |
| 1978 | |
| 1979 | res = PyUnicode_New(1, ch); |
| 1980 | if (res == NULL) |
| 1981 | return NULL; |
| 1982 | PyUnicode_WRITE(PyUnicode_KIND(res), PyUnicode_DATA(res), 0, ch); |
| 1983 | assert(_PyUnicode_CheckConsistency(res, 1)); |
| 1984 | return res; |
| 1985 | } |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 1986 | |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 1987 | max_char = ucs4lib_find_max_char(u, u + size); |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 1988 | res = PyUnicode_New(size, max_char); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1989 | if (!res) |
| 1990 | return NULL; |
Antoine Pitrou | 950468e | 2011-10-11 22:45:48 +0200 | [diff] [blame] | 1991 | if (max_char < 256) |
| 1992 | _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS1, u, u + size, |
| 1993 | PyUnicode_1BYTE_DATA(res)); |
| 1994 | else if (max_char < 0x10000) |
| 1995 | _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS2, u, u + size, |
| 1996 | PyUnicode_2BYTE_DATA(res)); |
| 1997 | else |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 1998 | memcpy(PyUnicode_4BYTE_DATA(res), u, sizeof(Py_UCS4)*size); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 1999 | assert(_PyUnicode_CheckConsistency(res, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2000 | return res; |
| 2001 | } |
| 2002 | |
| 2003 | PyObject* |
| 2004 | PyUnicode_FromKindAndData(int kind, const void *buffer, Py_ssize_t size) |
| 2005 | { |
Victor Stinner | cfed46e | 2011-11-22 01:29:14 +0100 | [diff] [blame] | 2006 | if (size < 0) { |
| 2007 | PyErr_SetString(PyExc_ValueError, "size must be positive"); |
| 2008 | return NULL; |
| 2009 | } |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 2010 | switch (kind) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2011 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 2012 | return _PyUnicode_FromUCS1(buffer, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2013 | case PyUnicode_2BYTE_KIND: |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 2014 | return _PyUnicode_FromUCS2(buffer, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2015 | case PyUnicode_4BYTE_KIND: |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 2016 | return _PyUnicode_FromUCS4(buffer, size); |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 2017 | default: |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 2018 | PyErr_SetString(PyExc_SystemError, "invalid kind"); |
| 2019 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2020 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2021 | } |
| 2022 | |
Victor Stinner | ece58de | 2012-04-23 23:36:38 +0200 | [diff] [blame] | 2023 | Py_UCS4 |
| 2024 | _PyUnicode_FindMaxChar(PyObject *unicode, Py_ssize_t start, Py_ssize_t end) |
| 2025 | { |
| 2026 | enum PyUnicode_Kind kind; |
| 2027 | void *startptr, *endptr; |
| 2028 | |
| 2029 | assert(PyUnicode_IS_READY(unicode)); |
| 2030 | assert(0 <= start); |
| 2031 | assert(end <= PyUnicode_GET_LENGTH(unicode)); |
| 2032 | assert(start <= end); |
| 2033 | |
| 2034 | if (start == 0 && end == PyUnicode_GET_LENGTH(unicode)) |
| 2035 | return PyUnicode_MAX_CHAR_VALUE(unicode); |
| 2036 | |
| 2037 | if (start == end) |
| 2038 | return 127; |
| 2039 | |
Victor Stinner | 94d558b | 2012-04-27 22:26:58 +0200 | [diff] [blame] | 2040 | if (PyUnicode_IS_ASCII(unicode)) |
| 2041 | return 127; |
| 2042 | |
Victor Stinner | ece58de | 2012-04-23 23:36:38 +0200 | [diff] [blame] | 2043 | kind = PyUnicode_KIND(unicode); |
Benjamin Peterson | f3b7d86 | 2012-04-23 18:07:01 -0400 | [diff] [blame] | 2044 | startptr = PyUnicode_DATA(unicode); |
Benjamin Peterson | b9f4c9d | 2012-04-23 21:45:40 -0400 | [diff] [blame] | 2045 | endptr = (char *)startptr + end * kind; |
| 2046 | startptr = (char *)startptr + start * kind; |
Benjamin Peterson | 2844a7a | 2012-04-23 18:00:25 -0400 | [diff] [blame] | 2047 | switch(kind) { |
| 2048 | case PyUnicode_1BYTE_KIND: |
| 2049 | return ucs1lib_find_max_char(startptr, endptr); |
| 2050 | case PyUnicode_2BYTE_KIND: |
| 2051 | return ucs2lib_find_max_char(startptr, endptr); |
| 2052 | case PyUnicode_4BYTE_KIND: |
| 2053 | return ucs4lib_find_max_char(startptr, endptr); |
Victor Stinner | ece58de | 2012-04-23 23:36:38 +0200 | [diff] [blame] | 2054 | default: |
Benjamin Peterson | 2844a7a | 2012-04-23 18:00:25 -0400 | [diff] [blame] | 2055 | assert(0); |
| 2056 | return 0; |
Victor Stinner | ece58de | 2012-04-23 23:36:38 +0200 | [diff] [blame] | 2057 | } |
| 2058 | } |
| 2059 | |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 2060 | /* Ensure that a string uses the most efficient storage, if it is not the |
| 2061 | case: create a new string with of the right kind. Write NULL into *p_unicode |
| 2062 | on error. */ |
Antoine Pitrou | 53bb548 | 2011-10-10 23:49:24 +0200 | [diff] [blame] | 2063 | static void |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 2064 | unicode_adjust_maxchar(PyObject **p_unicode) |
| 2065 | { |
| 2066 | PyObject *unicode, *copy; |
| 2067 | Py_UCS4 max_char; |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 2068 | Py_ssize_t len; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 2069 | unsigned int kind; |
| 2070 | |
| 2071 | assert(p_unicode != NULL); |
| 2072 | unicode = *p_unicode; |
| 2073 | assert(PyUnicode_IS_READY(unicode)); |
| 2074 | if (PyUnicode_IS_ASCII(unicode)) |
| 2075 | return; |
| 2076 | |
| 2077 | len = PyUnicode_GET_LENGTH(unicode); |
| 2078 | kind = PyUnicode_KIND(unicode); |
| 2079 | if (kind == PyUnicode_1BYTE_KIND) { |
| 2080 | const Py_UCS1 *u = PyUnicode_1BYTE_DATA(unicode); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 2081 | max_char = ucs1lib_find_max_char(u, u + len); |
| 2082 | if (max_char >= 128) |
| 2083 | return; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 2084 | } |
| 2085 | else if (kind == PyUnicode_2BYTE_KIND) { |
| 2086 | const Py_UCS2 *u = PyUnicode_2BYTE_DATA(unicode); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 2087 | max_char = ucs2lib_find_max_char(u, u + len); |
| 2088 | if (max_char >= 256) |
| 2089 | return; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 2090 | } |
| 2091 | else { |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 2092 | const Py_UCS4 *u = PyUnicode_4BYTE_DATA(unicode); |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 2093 | assert(kind == PyUnicode_4BYTE_KIND); |
Antoine Pitrou | dd4e2f0 | 2011-10-13 00:02:27 +0200 | [diff] [blame] | 2094 | max_char = ucs4lib_find_max_char(u, u + len); |
| 2095 | if (max_char >= 0x10000) |
| 2096 | return; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 2097 | } |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 2098 | copy = PyUnicode_New(len, max_char); |
Victor Stinner | ca439ee | 2012-06-16 03:17:34 +0200 | [diff] [blame] | 2099 | if (copy != NULL) |
| 2100 | _PyUnicode_FastCopyCharacters(copy, 0, unicode, 0, len); |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 2101 | Py_DECREF(unicode); |
| 2102 | *p_unicode = copy; |
| 2103 | } |
| 2104 | |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 2105 | PyObject* |
Victor Stinner | bf6e560 | 2011-12-12 01:53:47 +0100 | [diff] [blame] | 2106 | _PyUnicode_Copy(PyObject *unicode) |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 2107 | { |
Victor Stinner | 87af4f2 | 2011-11-21 23:03:47 +0100 | [diff] [blame] | 2108 | Py_ssize_t length; |
Victor Stinner | c841e7d | 2011-10-01 01:34:32 +0200 | [diff] [blame] | 2109 | PyObject *copy; |
Victor Stinner | c841e7d | 2011-10-01 01:34:32 +0200 | [diff] [blame] | 2110 | |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 2111 | if (!PyUnicode_Check(unicode)) { |
| 2112 | PyErr_BadInternalCall(); |
| 2113 | return NULL; |
| 2114 | } |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 2115 | if (PyUnicode_READY(unicode) == -1) |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 2116 | return NULL; |
Victor Stinner | c841e7d | 2011-10-01 01:34:32 +0200 | [diff] [blame] | 2117 | |
Victor Stinner | 87af4f2 | 2011-11-21 23:03:47 +0100 | [diff] [blame] | 2118 | length = PyUnicode_GET_LENGTH(unicode); |
| 2119 | copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode)); |
Victor Stinner | c841e7d | 2011-10-01 01:34:32 +0200 | [diff] [blame] | 2120 | if (!copy) |
| 2121 | return NULL; |
| 2122 | assert(PyUnicode_KIND(copy) == PyUnicode_KIND(unicode)); |
| 2123 | |
Victor Stinner | 87af4f2 | 2011-11-21 23:03:47 +0100 | [diff] [blame] | 2124 | Py_MEMCPY(PyUnicode_DATA(copy), PyUnicode_DATA(unicode), |
| 2125 | length * PyUnicode_KIND(unicode)); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 2126 | assert(_PyUnicode_CheckConsistency(copy, 1)); |
Victor Stinner | c841e7d | 2011-10-01 01:34:32 +0200 | [diff] [blame] | 2127 | return copy; |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 2128 | } |
| 2129 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2130 | |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 2131 | /* Widen Unicode objects to larger buffers. Don't write terminating null |
| 2132 | character. Return NULL on error. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2133 | |
| 2134 | void* |
| 2135 | _PyUnicode_AsKind(PyObject *s, unsigned int kind) |
| 2136 | { |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 2137 | Py_ssize_t len; |
| 2138 | void *result; |
| 2139 | unsigned int skind; |
| 2140 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 2141 | if (PyUnicode_READY(s) == -1) |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 2142 | return NULL; |
| 2143 | |
| 2144 | len = PyUnicode_GET_LENGTH(s); |
| 2145 | skind = PyUnicode_KIND(s); |
| 2146 | if (skind >= kind) { |
Victor Stinner | 0169804 | 2011-10-04 00:04:26 +0200 | [diff] [blame] | 2147 | PyErr_SetString(PyExc_SystemError, "invalid widening attempt"); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2148 | return NULL; |
| 2149 | } |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 2150 | switch (kind) { |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 2151 | case PyUnicode_2BYTE_KIND: |
| 2152 | result = PyMem_Malloc(len * sizeof(Py_UCS2)); |
| 2153 | if (!result) |
| 2154 | return PyErr_NoMemory(); |
| 2155 | assert(skind == PyUnicode_1BYTE_KIND); |
| 2156 | _PyUnicode_CONVERT_BYTES( |
| 2157 | Py_UCS1, Py_UCS2, |
| 2158 | PyUnicode_1BYTE_DATA(s), |
| 2159 | PyUnicode_1BYTE_DATA(s) + len, |
| 2160 | result); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2161 | return result; |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 2162 | case PyUnicode_4BYTE_KIND: |
| 2163 | result = PyMem_Malloc(len * sizeof(Py_UCS4)); |
| 2164 | if (!result) |
| 2165 | return PyErr_NoMemory(); |
| 2166 | if (skind == PyUnicode_2BYTE_KIND) { |
| 2167 | _PyUnicode_CONVERT_BYTES( |
| 2168 | Py_UCS2, Py_UCS4, |
| 2169 | PyUnicode_2BYTE_DATA(s), |
| 2170 | PyUnicode_2BYTE_DATA(s) + len, |
| 2171 | result); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2172 | } |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 2173 | else { |
| 2174 | assert(skind == PyUnicode_1BYTE_KIND); |
| 2175 | _PyUnicode_CONVERT_BYTES( |
| 2176 | Py_UCS1, Py_UCS4, |
| 2177 | PyUnicode_1BYTE_DATA(s), |
| 2178 | PyUnicode_1BYTE_DATA(s) + len, |
| 2179 | result); |
| 2180 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2181 | return result; |
Victor Stinner | bc603d1 | 2011-10-02 01:00:40 +0200 | [diff] [blame] | 2182 | default: |
| 2183 | break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2184 | } |
Victor Stinner | 0169804 | 2011-10-04 00:04:26 +0200 | [diff] [blame] | 2185 | PyErr_SetString(PyExc_SystemError, "invalid kind"); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2186 | return NULL; |
| 2187 | } |
| 2188 | |
| 2189 | static Py_UCS4* |
| 2190 | as_ucs4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize, |
| 2191 | int copy_null) |
| 2192 | { |
| 2193 | int kind; |
| 2194 | void *data; |
| 2195 | Py_ssize_t len, targetlen; |
| 2196 | if (PyUnicode_READY(string) == -1) |
| 2197 | return NULL; |
| 2198 | kind = PyUnicode_KIND(string); |
| 2199 | data = PyUnicode_DATA(string); |
| 2200 | len = PyUnicode_GET_LENGTH(string); |
| 2201 | targetlen = len; |
| 2202 | if (copy_null) |
| 2203 | targetlen++; |
| 2204 | if (!target) { |
| 2205 | if (PY_SSIZE_T_MAX / sizeof(Py_UCS4) < targetlen) { |
| 2206 | PyErr_NoMemory(); |
| 2207 | return NULL; |
| 2208 | } |
| 2209 | target = PyMem_Malloc(targetlen * sizeof(Py_UCS4)); |
| 2210 | if (!target) { |
| 2211 | PyErr_NoMemory(); |
| 2212 | return NULL; |
| 2213 | } |
| 2214 | } |
| 2215 | else { |
| 2216 | if (targetsize < targetlen) { |
| 2217 | PyErr_Format(PyExc_SystemError, |
| 2218 | "string is longer than the buffer"); |
| 2219 | if (copy_null && 0 < targetsize) |
| 2220 | target[0] = 0; |
| 2221 | return NULL; |
| 2222 | } |
| 2223 | } |
Antoine Pitrou | 950468e | 2011-10-11 22:45:48 +0200 | [diff] [blame] | 2224 | if (kind == PyUnicode_1BYTE_KIND) { |
| 2225 | Py_UCS1 *start = (Py_UCS1 *) data; |
| 2226 | _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] | 2227 | } |
Antoine Pitrou | 950468e | 2011-10-11 22:45:48 +0200 | [diff] [blame] | 2228 | else if (kind == PyUnicode_2BYTE_KIND) { |
| 2229 | Py_UCS2 *start = (Py_UCS2 *) data; |
| 2230 | _PyUnicode_CONVERT_BYTES(Py_UCS2, Py_UCS4, start, start + len, target); |
| 2231 | } |
| 2232 | else { |
| 2233 | assert(kind == PyUnicode_4BYTE_KIND); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2234 | Py_MEMCPY(target, data, len * sizeof(Py_UCS4)); |
Antoine Pitrou | 950468e | 2011-10-11 22:45:48 +0200 | [diff] [blame] | 2235 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2236 | if (copy_null) |
| 2237 | target[len] = 0; |
| 2238 | return target; |
| 2239 | } |
| 2240 | |
| 2241 | Py_UCS4* |
| 2242 | PyUnicode_AsUCS4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize, |
| 2243 | int copy_null) |
| 2244 | { |
Antoine Pitrou | de20b0b | 2011-11-10 21:47:38 +0100 | [diff] [blame] | 2245 | if (target == NULL || targetsize < 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2246 | PyErr_BadInternalCall(); |
| 2247 | return NULL; |
| 2248 | } |
| 2249 | return as_ucs4(string, target, targetsize, copy_null); |
| 2250 | } |
| 2251 | |
| 2252 | Py_UCS4* |
| 2253 | PyUnicode_AsUCS4Copy(PyObject *string) |
| 2254 | { |
| 2255 | return as_ucs4(string, NULL, 0, 1); |
| 2256 | } |
| 2257 | |
| 2258 | #ifdef HAVE_WCHAR_H |
Mark Dickinson | 081dfee | 2009-03-18 14:47:41 +0000 | [diff] [blame] | 2259 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2260 | PyObject * |
| 2261 | PyUnicode_FromWideChar(register const wchar_t *w, Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2262 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2263 | if (w == NULL) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2264 | if (size == 0) |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 2265 | _Py_RETURN_UNICODE_EMPTY(); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2266 | PyErr_BadInternalCall(); |
| 2267 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2268 | } |
| 2269 | |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 2270 | if (size == -1) { |
| 2271 | size = wcslen(w); |
| 2272 | } |
| 2273 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2274 | return PyUnicode_FromUnicode(w, size); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2275 | } |
| 2276 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2277 | #endif /* HAVE_WCHAR_H */ |
Mark Dickinson | 081dfee | 2009-03-18 14:47:41 +0000 | [diff] [blame] | 2278 | |
Walter Dörwald | 346737f | 2007-05-31 10:44:43 +0000 | [diff] [blame] | 2279 | static void |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2280 | makefmt(char *fmt, int longflag, int longlongflag, int size_tflag, |
| 2281 | int zeropad, int width, int precision, char c) |
Walter Dörwald | 346737f | 2007-05-31 10:44:43 +0000 | [diff] [blame] | 2282 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2283 | *fmt++ = '%'; |
| 2284 | if (width) { |
| 2285 | if (zeropad) |
| 2286 | *fmt++ = '0'; |
| 2287 | fmt += sprintf(fmt, "%d", width); |
| 2288 | } |
| 2289 | if (precision) |
| 2290 | fmt += sprintf(fmt, ".%d", precision); |
| 2291 | if (longflag) |
| 2292 | *fmt++ = 'l'; |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2293 | else if (longlongflag) { |
| 2294 | /* longlongflag should only ever be nonzero on machines with |
| 2295 | HAVE_LONG_LONG defined */ |
| 2296 | #ifdef HAVE_LONG_LONG |
| 2297 | char *f = PY_FORMAT_LONG_LONG; |
| 2298 | while (*f) |
| 2299 | *fmt++ = *f++; |
| 2300 | #else |
| 2301 | /* we shouldn't ever get here */ |
| 2302 | assert(0); |
| 2303 | *fmt++ = 'l'; |
| 2304 | #endif |
| 2305 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2306 | else if (size_tflag) { |
| 2307 | char *f = PY_FORMAT_SIZE_T; |
| 2308 | while (*f) |
| 2309 | *fmt++ = *f++; |
| 2310 | } |
| 2311 | *fmt++ = c; |
| 2312 | *fmt = '\0'; |
Walter Dörwald | 346737f | 2007-05-31 10:44:43 +0000 | [diff] [blame] | 2313 | } |
| 2314 | |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2315 | /* helper for PyUnicode_FromFormatV() */ |
| 2316 | |
| 2317 | static const char* |
| 2318 | parse_format_flags(const char *f, |
| 2319 | int *p_width, int *p_precision, |
| 2320 | int *p_longflag, int *p_longlongflag, int *p_size_tflag) |
| 2321 | { |
| 2322 | int width, precision, longflag, longlongflag, size_tflag; |
| 2323 | |
| 2324 | /* parse the width.precision part, e.g. "%2.5s" => width=2, precision=5 */ |
| 2325 | f++; |
| 2326 | width = 0; |
| 2327 | while (Py_ISDIGIT((unsigned)*f)) |
| 2328 | width = (width*10) + *f++ - '0'; |
| 2329 | precision = 0; |
| 2330 | if (*f == '.') { |
| 2331 | f++; |
| 2332 | while (Py_ISDIGIT((unsigned)*f)) |
| 2333 | precision = (precision*10) + *f++ - '0'; |
| 2334 | if (*f == '%') { |
| 2335 | /* "%.3%s" => f points to "3" */ |
| 2336 | f--; |
| 2337 | } |
| 2338 | } |
| 2339 | if (*f == '\0') { |
| 2340 | /* bogus format "%.1" => go backward, f points to "1" */ |
| 2341 | f--; |
| 2342 | } |
| 2343 | if (p_width != NULL) |
| 2344 | *p_width = width; |
| 2345 | if (p_precision != NULL) |
| 2346 | *p_precision = precision; |
| 2347 | |
| 2348 | /* Handle %ld, %lu, %lld and %llu. */ |
| 2349 | longflag = 0; |
| 2350 | longlongflag = 0; |
Victor Stinner | e7faec1 | 2011-03-02 00:01:53 +0000 | [diff] [blame] | 2351 | size_tflag = 0; |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2352 | |
| 2353 | if (*f == 'l') { |
Victor Stinner | 6d970f4 | 2011-03-02 00:04:25 +0000 | [diff] [blame] | 2354 | if (f[1] == 'd' || f[1] == 'u' || f[1] == 'i') { |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2355 | longflag = 1; |
| 2356 | ++f; |
| 2357 | } |
| 2358 | #ifdef HAVE_LONG_LONG |
| 2359 | else if (f[1] == 'l' && |
Victor Stinner | 6d970f4 | 2011-03-02 00:04:25 +0000 | [diff] [blame] | 2360 | (f[2] == 'd' || f[2] == 'u' || f[2] == 'i')) { |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2361 | longlongflag = 1; |
| 2362 | f += 2; |
| 2363 | } |
| 2364 | #endif |
| 2365 | } |
| 2366 | /* handle the size_t flag. */ |
Victor Stinner | 6d970f4 | 2011-03-02 00:04:25 +0000 | [diff] [blame] | 2367 | 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] | 2368 | size_tflag = 1; |
| 2369 | ++f; |
| 2370 | } |
| 2371 | if (p_longflag != NULL) |
| 2372 | *p_longflag = longflag; |
| 2373 | if (p_longlongflag != NULL) |
| 2374 | *p_longlongflag = longlongflag; |
| 2375 | if (p_size_tflag != NULL) |
| 2376 | *p_size_tflag = size_tflag; |
| 2377 | return f; |
| 2378 | } |
| 2379 | |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2380 | /* maximum number of characters required for output of %ld. 21 characters |
| 2381 | allows for 64-bit integers (in decimal) and an optional sign. */ |
| 2382 | #define MAX_LONG_CHARS 21 |
| 2383 | /* maximum number of characters required for output of %lld. |
| 2384 | We need at most ceil(log10(256)*SIZEOF_LONG_LONG) digits, |
| 2385 | plus 1 for the sign. 53/22 is an upper bound for log10(256). */ |
| 2386 | #define MAX_LONG_LONG_CHARS (2 + (SIZEOF_LONG_LONG*53-1) / 22) |
| 2387 | |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2388 | PyObject * |
| 2389 | PyUnicode_FromFormatV(const char *format, va_list vargs) |
| 2390 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2391 | va_list count; |
| 2392 | Py_ssize_t callcount = 0; |
| 2393 | PyObject **callresults = NULL; |
| 2394 | PyObject **callresult = NULL; |
| 2395 | Py_ssize_t n = 0; |
| 2396 | int width = 0; |
| 2397 | int precision = 0; |
| 2398 | int zeropad; |
| 2399 | const char* f; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2400 | PyObject *string; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2401 | /* used by sprintf */ |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2402 | char fmt[61]; /* should be enough for %0width.precisionlld */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2403 | Py_UCS4 maxchar = 127; /* result is ASCII by default */ |
| 2404 | Py_UCS4 argmaxchar; |
| 2405 | Py_ssize_t numbersize = 0; |
| 2406 | char *numberresults = NULL; |
| 2407 | char *numberresult = NULL; |
| 2408 | Py_ssize_t i; |
| 2409 | int kind; |
| 2410 | void *data; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2411 | |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 2412 | Py_VA_COPY(count, vargs); |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2413 | /* step 1: count the number of %S/%R/%A/%s format specifications |
| 2414 | * (we call PyObject_Str()/PyObject_Repr()/PyObject_ASCII()/ |
| 2415 | * 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] | 2416 | * result in an array) |
Georg Brandl | 7597add | 2011-10-05 16:36:47 +0200 | [diff] [blame] | 2417 | * also estimate a upper bound for all the number formats in the string, |
| 2418 | * 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] | 2419 | * buffer before putting everything together. */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2420 | for (f = format; *f; f++) { |
| 2421 | if (*f == '%') { |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2422 | int longlongflag; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2423 | /* skip width or width.precision (eg. "1.2" of "%1.2f") */ |
| 2424 | f = parse_format_flags(f, &width, NULL, NULL, &longlongflag, NULL); |
| 2425 | if (*f == 's' || *f=='S' || *f=='R' || *f=='A' || *f=='V') |
| 2426 | ++callcount; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2427 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2428 | else if (*f == 'd' || *f=='u' || *f=='i' || *f=='x' || *f=='p') { |
Mark Dickinson | 6ce4a9a | 2009-11-16 17:00:11 +0000 | [diff] [blame] | 2429 | #ifdef HAVE_LONG_LONG |
| 2430 | if (longlongflag) { |
| 2431 | if (width < MAX_LONG_LONG_CHARS) |
| 2432 | width = MAX_LONG_LONG_CHARS; |
| 2433 | } |
| 2434 | else |
| 2435 | #endif |
| 2436 | /* MAX_LONG_CHARS is enough to hold a 64-bit integer, |
| 2437 | including sign. Decimal takes the most space. This |
| 2438 | isn't enough for octal. If a width is specified we |
| 2439 | need more (which we allocate later). */ |
| 2440 | if (width < MAX_LONG_CHARS) |
| 2441 | width = MAX_LONG_CHARS; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2442 | |
| 2443 | /* account for the size + '\0' to separate numbers |
| 2444 | inside of the numberresults buffer */ |
| 2445 | numbersize += (width + 1); |
| 2446 | } |
| 2447 | } |
| 2448 | else if ((unsigned char)*f > 127) { |
| 2449 | PyErr_Format(PyExc_ValueError, |
| 2450 | "PyUnicode_FromFormatV() expects an ASCII-encoded format " |
| 2451 | "string, got a non-ASCII byte: 0x%02x", |
| 2452 | (unsigned char)*f); |
| 2453 | return NULL; |
| 2454 | } |
| 2455 | } |
| 2456 | /* step 2: allocate memory for the results of |
| 2457 | * PyObject_Str()/PyObject_Repr()/PyUnicode_DecodeUTF8() calls */ |
| 2458 | if (callcount) { |
| 2459 | callresults = PyObject_Malloc(sizeof(PyObject *) * callcount); |
| 2460 | if (!callresults) { |
| 2461 | PyErr_NoMemory(); |
| 2462 | return NULL; |
| 2463 | } |
| 2464 | callresult = callresults; |
| 2465 | } |
| 2466 | /* step 2.5: allocate memory for the results of formating numbers */ |
| 2467 | if (numbersize) { |
| 2468 | numberresults = PyObject_Malloc(numbersize); |
| 2469 | if (!numberresults) { |
| 2470 | PyErr_NoMemory(); |
| 2471 | goto fail; |
| 2472 | } |
| 2473 | numberresult = numberresults; |
| 2474 | } |
| 2475 | |
| 2476 | /* step 3: format numbers and figure out how large a buffer we need */ |
| 2477 | for (f = format; *f; f++) { |
| 2478 | if (*f == '%') { |
| 2479 | const char* p; |
| 2480 | int longflag; |
| 2481 | int longlongflag; |
| 2482 | int size_tflag; |
| 2483 | int numprinted; |
| 2484 | |
| 2485 | p = f; |
| 2486 | zeropad = (f[1] == '0'); |
| 2487 | f = parse_format_flags(f, &width, &precision, |
| 2488 | &longflag, &longlongflag, &size_tflag); |
| 2489 | switch (*f) { |
| 2490 | case 'c': |
| 2491 | { |
Serhiy Storchaka | 8eeae21 | 2013-06-23 20:12:14 +0300 | [diff] [blame] | 2492 | int ordinal = va_arg(count, int); |
| 2493 | if (ordinal < 0 || ordinal > MAX_UNICODE) { |
| 2494 | PyErr_SetString(PyExc_OverflowError, |
| 2495 | "%c arg not in range(0x110000)"); |
| 2496 | goto fail; |
| 2497 | } |
| 2498 | maxchar = Py_MAX(maxchar, (Py_UCS4)ordinal); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2499 | n++; |
| 2500 | break; |
| 2501 | } |
| 2502 | case '%': |
| 2503 | n++; |
| 2504 | break; |
| 2505 | case 'i': |
| 2506 | case 'd': |
| 2507 | makefmt(fmt, longflag, longlongflag, size_tflag, zeropad, |
| 2508 | width, precision, *f); |
| 2509 | if (longflag) |
| 2510 | numprinted = sprintf(numberresult, fmt, |
| 2511 | va_arg(count, long)); |
| 2512 | #ifdef HAVE_LONG_LONG |
| 2513 | else if (longlongflag) |
| 2514 | numprinted = sprintf(numberresult, fmt, |
| 2515 | va_arg(count, PY_LONG_LONG)); |
| 2516 | #endif |
| 2517 | else if (size_tflag) |
| 2518 | numprinted = sprintf(numberresult, fmt, |
| 2519 | va_arg(count, Py_ssize_t)); |
| 2520 | else |
| 2521 | numprinted = sprintf(numberresult, fmt, |
| 2522 | va_arg(count, int)); |
| 2523 | n += numprinted; |
| 2524 | /* advance by +1 to skip over the '\0' */ |
| 2525 | numberresult += (numprinted + 1); |
| 2526 | assert(*(numberresult - 1) == '\0'); |
| 2527 | assert(*(numberresult - 2) != '\0'); |
| 2528 | assert(numprinted >= 0); |
| 2529 | assert(numberresult <= numberresults + numbersize); |
| 2530 | break; |
| 2531 | case 'u': |
| 2532 | makefmt(fmt, longflag, longlongflag, size_tflag, zeropad, |
| 2533 | width, precision, 'u'); |
| 2534 | if (longflag) |
| 2535 | numprinted = sprintf(numberresult, fmt, |
| 2536 | va_arg(count, unsigned long)); |
| 2537 | #ifdef HAVE_LONG_LONG |
| 2538 | else if (longlongflag) |
| 2539 | numprinted = sprintf(numberresult, fmt, |
| 2540 | va_arg(count, unsigned PY_LONG_LONG)); |
| 2541 | #endif |
| 2542 | else if (size_tflag) |
| 2543 | numprinted = sprintf(numberresult, fmt, |
| 2544 | va_arg(count, size_t)); |
| 2545 | else |
| 2546 | numprinted = sprintf(numberresult, fmt, |
| 2547 | va_arg(count, unsigned int)); |
| 2548 | n += numprinted; |
| 2549 | numberresult += (numprinted + 1); |
| 2550 | assert(*(numberresult - 1) == '\0'); |
| 2551 | assert(*(numberresult - 2) != '\0'); |
| 2552 | assert(numprinted >= 0); |
| 2553 | assert(numberresult <= numberresults + numbersize); |
| 2554 | break; |
| 2555 | case 'x': |
| 2556 | makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'x'); |
| 2557 | numprinted = sprintf(numberresult, fmt, va_arg(count, int)); |
| 2558 | n += numprinted; |
| 2559 | numberresult += (numprinted + 1); |
| 2560 | assert(*(numberresult - 1) == '\0'); |
| 2561 | assert(*(numberresult - 2) != '\0'); |
| 2562 | assert(numprinted >= 0); |
| 2563 | assert(numberresult <= numberresults + numbersize); |
| 2564 | break; |
| 2565 | case 'p': |
| 2566 | numprinted = sprintf(numberresult, "%p", va_arg(count, void*)); |
| 2567 | /* %p is ill-defined: ensure leading 0x. */ |
| 2568 | if (numberresult[1] == 'X') |
| 2569 | numberresult[1] = 'x'; |
| 2570 | else if (numberresult[1] != 'x') { |
| 2571 | memmove(numberresult + 2, numberresult, |
| 2572 | strlen(numberresult) + 1); |
| 2573 | numberresult[0] = '0'; |
| 2574 | numberresult[1] = 'x'; |
| 2575 | numprinted += 2; |
| 2576 | } |
| 2577 | n += numprinted; |
| 2578 | numberresult += (numprinted + 1); |
| 2579 | assert(*(numberresult - 1) == '\0'); |
| 2580 | assert(*(numberresult - 2) != '\0'); |
| 2581 | assert(numprinted >= 0); |
| 2582 | assert(numberresult <= numberresults + numbersize); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2583 | break; |
| 2584 | case 's': |
| 2585 | { |
| 2586 | /* UTF-8 */ |
Georg Brandl | 780b2a6 | 2009-05-05 09:19:59 +0000 | [diff] [blame] | 2587 | const char *s = va_arg(count, const char*); |
Victor Stinner | a1d12bb | 2011-12-11 21:53:09 +0100 | [diff] [blame] | 2588 | PyObject *str = PyUnicode_DecodeUTF8Stateful(s, strlen(s), "replace", NULL); |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2589 | if (!str) |
| 2590 | goto fail; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2591 | /* since PyUnicode_DecodeUTF8 returns already flexible |
| 2592 | unicode objects, there is no need to call ready on them */ |
| 2593 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(str); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 2594 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2595 | n += PyUnicode_GET_LENGTH(str); |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2596 | /* Remember the str and switch to the next slot */ |
| 2597 | *callresult++ = str; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2598 | break; |
| 2599 | } |
| 2600 | case 'U': |
| 2601 | { |
| 2602 | PyObject *obj = va_arg(count, PyObject *); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 2603 | assert(obj && _PyUnicode_CHECK(obj)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2604 | if (PyUnicode_READY(obj) == -1) |
| 2605 | goto fail; |
| 2606 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(obj); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 2607 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2608 | n += PyUnicode_GET_LENGTH(obj); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2609 | break; |
| 2610 | } |
| 2611 | case 'V': |
| 2612 | { |
| 2613 | PyObject *obj = va_arg(count, PyObject *); |
| 2614 | const char *str = va_arg(count, const char *); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2615 | PyObject *str_obj; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2616 | assert(obj || str); |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 2617 | assert(!obj || _PyUnicode_CHECK(obj)); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2618 | if (obj) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2619 | if (PyUnicode_READY(obj) == -1) |
| 2620 | goto fail; |
| 2621 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(obj); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 2622 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2623 | n += PyUnicode_GET_LENGTH(obj); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2624 | *callresult++ = NULL; |
| 2625 | } |
| 2626 | else { |
Victor Stinner | a1d12bb | 2011-12-11 21:53:09 +0100 | [diff] [blame] | 2627 | str_obj = PyUnicode_DecodeUTF8Stateful(str, strlen(str), "replace", NULL); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2628 | if (!str_obj) |
| 2629 | goto fail; |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 2630 | if (PyUnicode_READY(str_obj) == -1) { |
Victor Stinner | e1335c7 | 2011-10-04 20:53:03 +0200 | [diff] [blame] | 2631 | Py_DECREF(str_obj); |
| 2632 | goto fail; |
| 2633 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2634 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(str_obj); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 2635 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2636 | n += PyUnicode_GET_LENGTH(str_obj); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2637 | *callresult++ = str_obj; |
| 2638 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2639 | break; |
| 2640 | } |
| 2641 | case 'S': |
| 2642 | { |
| 2643 | PyObject *obj = va_arg(count, PyObject *); |
| 2644 | PyObject *str; |
| 2645 | assert(obj); |
| 2646 | str = PyObject_Str(obj); |
Benjamin Peterson | c8d8b88 | 2012-01-14 13:37:31 -0500 | [diff] [blame] | 2647 | if (!str) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2648 | goto fail; |
Benjamin Peterson | c8d8b88 | 2012-01-14 13:37:31 -0500 | [diff] [blame] | 2649 | if (PyUnicode_READY(str) == -1) { |
| 2650 | Py_DECREF(str); |
| 2651 | goto fail; |
| 2652 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2653 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(str); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 2654 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2655 | n += PyUnicode_GET_LENGTH(str); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2656 | /* Remember the str and switch to the next slot */ |
| 2657 | *callresult++ = str; |
| 2658 | break; |
| 2659 | } |
| 2660 | case 'R': |
| 2661 | { |
| 2662 | PyObject *obj = va_arg(count, PyObject *); |
| 2663 | PyObject *repr; |
| 2664 | assert(obj); |
| 2665 | repr = PyObject_Repr(obj); |
Benjamin Peterson | c8d8b88 | 2012-01-14 13:37:31 -0500 | [diff] [blame] | 2666 | if (!repr) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2667 | goto fail; |
Benjamin Peterson | c8d8b88 | 2012-01-14 13:37:31 -0500 | [diff] [blame] | 2668 | if (PyUnicode_READY(repr) == -1) { |
| 2669 | Py_DECREF(repr); |
| 2670 | goto fail; |
| 2671 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2672 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(repr); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 2673 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2674 | n += PyUnicode_GET_LENGTH(repr); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2675 | /* Remember the repr and switch to the next slot */ |
| 2676 | *callresult++ = repr; |
| 2677 | break; |
| 2678 | } |
| 2679 | case 'A': |
| 2680 | { |
| 2681 | PyObject *obj = va_arg(count, PyObject *); |
| 2682 | PyObject *ascii; |
| 2683 | assert(obj); |
| 2684 | ascii = PyObject_ASCII(obj); |
Benjamin Peterson | c8d8b88 | 2012-01-14 13:37:31 -0500 | [diff] [blame] | 2685 | if (!ascii) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2686 | goto fail; |
Benjamin Peterson | c8d8b88 | 2012-01-14 13:37:31 -0500 | [diff] [blame] | 2687 | if (PyUnicode_READY(ascii) == -1) { |
| 2688 | Py_DECREF(ascii); |
| 2689 | goto fail; |
| 2690 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2691 | argmaxchar = PyUnicode_MAX_CHAR_VALUE(ascii); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 2692 | maxchar = Py_MAX(maxchar, argmaxchar); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2693 | n += PyUnicode_GET_LENGTH(ascii); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2694 | /* Remember the repr and switch to the next slot */ |
| 2695 | *callresult++ = ascii; |
| 2696 | break; |
| 2697 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2698 | default: |
| 2699 | /* if we stumble upon an unknown |
| 2700 | formatting code, copy the rest of |
| 2701 | the format string to the output |
| 2702 | string. (we cannot just skip the |
| 2703 | code, since there's no way to know |
| 2704 | what's in the argument list) */ |
| 2705 | n += strlen(p); |
| 2706 | goto expand; |
| 2707 | } |
| 2708 | } else |
| 2709 | n++; |
| 2710 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2711 | expand: |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2712 | /* step 4: fill the buffer */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2713 | /* Since we've analyzed how much space we need, |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2714 | we don't have to resize the string. |
| 2715 | There can be no errors beyond this point. */ |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2716 | string = PyUnicode_New(n, maxchar); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2717 | if (!string) |
| 2718 | goto fail; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2719 | kind = PyUnicode_KIND(string); |
| 2720 | data = PyUnicode_DATA(string); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2721 | callresult = callresults; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2722 | numberresult = numberresults; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2723 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2724 | for (i = 0, f = format; *f; f++) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2725 | if (*f == '%') { |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2726 | const char* p; |
Victor Stinner | 9686545 | 2011-03-01 23:44:09 +0000 | [diff] [blame] | 2727 | |
| 2728 | p = f; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2729 | f = parse_format_flags(f, NULL, NULL, NULL, NULL, NULL); |
| 2730 | /* checking for == because the last argument could be a empty |
| 2731 | string, which causes i to point to end, the assert at the end of |
| 2732 | the loop */ |
| 2733 | assert(i <= PyUnicode_GET_LENGTH(string)); |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2734 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2735 | switch (*f) { |
| 2736 | case 'c': |
Victor Stinner | 5ed8b2c | 2011-02-21 21:13:44 +0000 | [diff] [blame] | 2737 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2738 | const int ordinal = va_arg(vargs, int); |
| 2739 | PyUnicode_WRITE(kind, data, i++, ordinal); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2740 | break; |
Victor Stinner | 5ed8b2c | 2011-02-21 21:13:44 +0000 | [diff] [blame] | 2741 | } |
Victor Stinner | 6d970f4 | 2011-03-02 00:04:25 +0000 | [diff] [blame] | 2742 | case 'i': |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2743 | case 'd': |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2744 | case 'u': |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2745 | case 'x': |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2746 | case 'p': |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 2747 | { |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 2748 | Py_ssize_t len; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2749 | /* unused, since we already have the result */ |
| 2750 | if (*f == 'p') |
| 2751 | (void) va_arg(vargs, void *); |
| 2752 | else |
| 2753 | (void) va_arg(vargs, int); |
| 2754 | /* extract the result from numberresults and append. */ |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 2755 | len = strlen(numberresult); |
| 2756 | unicode_write_cstr(string, i, numberresult, len); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2757 | /* skip over the separating '\0' */ |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 2758 | i += len; |
| 2759 | numberresult += len; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2760 | assert(*numberresult == '\0'); |
| 2761 | numberresult++; |
| 2762 | assert(numberresult <= numberresults + numbersize); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2763 | break; |
Victor Stinner | c516610 | 2012-02-22 13:55:02 +0100 | [diff] [blame] | 2764 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2765 | case 's': |
| 2766 | { |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2767 | /* unused, since we already have the result */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2768 | Py_ssize_t size; |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2769 | (void) va_arg(vargs, char *); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2770 | size = PyUnicode_GET_LENGTH(*callresult); |
| 2771 | assert(PyUnicode_KIND(*callresult) <= PyUnicode_KIND(string)); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 2772 | _PyUnicode_FastCopyCharacters(string, i, *callresult, 0, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2773 | i += size; |
Walter Dörwald | c1651a0 | 2009-05-03 22:55:55 +0000 | [diff] [blame] | 2774 | /* We're done with the unicode()/repr() => forget it */ |
| 2775 | Py_DECREF(*callresult); |
| 2776 | /* switch to next unicode()/repr() result */ |
| 2777 | ++callresult; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2778 | break; |
| 2779 | } |
| 2780 | case 'U': |
| 2781 | { |
| 2782 | PyObject *obj = va_arg(vargs, PyObject *); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2783 | Py_ssize_t size; |
| 2784 | assert(PyUnicode_KIND(obj) <= PyUnicode_KIND(string)); |
| 2785 | size = PyUnicode_GET_LENGTH(obj); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 2786 | _PyUnicode_FastCopyCharacters(string, i, obj, 0, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2787 | i += size; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2788 | break; |
| 2789 | } |
| 2790 | case 'V': |
| 2791 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2792 | Py_ssize_t size; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2793 | PyObject *obj = va_arg(vargs, PyObject *); |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2794 | va_arg(vargs, const char *); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2795 | if (obj) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2796 | size = PyUnicode_GET_LENGTH(obj); |
| 2797 | assert(PyUnicode_KIND(obj) <= PyUnicode_KIND(string)); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 2798 | _PyUnicode_FastCopyCharacters(string, i, obj, 0, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2799 | i += size; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2800 | } else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2801 | size = PyUnicode_GET_LENGTH(*callresult); |
| 2802 | assert(PyUnicode_KIND(*callresult) <= |
| 2803 | PyUnicode_KIND(string)); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 2804 | _PyUnicode_FastCopyCharacters(string, i, *callresult, 0, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2805 | i += size; |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2806 | Py_DECREF(*callresult); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2807 | } |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2808 | ++callresult; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2809 | break; |
| 2810 | } |
| 2811 | case 'S': |
| 2812 | case 'R': |
Victor Stinner | 9a90900 | 2010-10-18 20:59:24 +0000 | [diff] [blame] | 2813 | case 'A': |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2814 | { |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2815 | Py_ssize_t size = PyUnicode_GET_LENGTH(*callresult); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2816 | /* unused, since we already have the result */ |
| 2817 | (void) va_arg(vargs, PyObject *); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2818 | assert(PyUnicode_KIND(*callresult) <= PyUnicode_KIND(string)); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 2819 | _PyUnicode_FastCopyCharacters(string, i, *callresult, 0, size); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 2820 | i += size; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2821 | /* We're done with the unicode()/repr() => forget it */ |
| 2822 | Py_DECREF(*callresult); |
| 2823 | /* switch to next unicode()/repr() result */ |
| 2824 | ++callresult; |
| 2825 | break; |
| 2826 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2827 | case '%': |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2828 | PyUnicode_WRITE(kind, data, i++, '%'); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2829 | break; |
| 2830 | default: |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 2831 | { |
| 2832 | Py_ssize_t len = strlen(p); |
| 2833 | unicode_write_cstr(string, i, p, len); |
| 2834 | i += len; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2835 | assert(i == PyUnicode_GET_LENGTH(string)); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2836 | goto end; |
| 2837 | } |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 2838 | } |
Victor Stinner | 1205f27 | 2010-09-11 00:54:47 +0000 | [diff] [blame] | 2839 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2840 | else { |
| 2841 | assert(i < PyUnicode_GET_LENGTH(string)); |
| 2842 | PyUnicode_WRITE(kind, data, i++, *f); |
| 2843 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2844 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2845 | assert(i == PyUnicode_GET_LENGTH(string)); |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2846 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2847 | end: |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2848 | if (callresults) |
| 2849 | PyObject_Free(callresults); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2850 | if (numberresults) |
| 2851 | PyObject_Free(numberresults); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 2852 | return unicode_result(string); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2853 | fail: |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2854 | if (callresults) { |
| 2855 | PyObject **callresult2 = callresults; |
| 2856 | while (callresult2 < callresult) { |
Victor Stinner | 2512a8b | 2011-03-01 22:46:52 +0000 | [diff] [blame] | 2857 | Py_XDECREF(*callresult2); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2858 | ++callresult2; |
| 2859 | } |
| 2860 | PyObject_Free(callresults); |
| 2861 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2862 | if (numberresults) |
| 2863 | PyObject_Free(numberresults); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2864 | return NULL; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2865 | } |
| 2866 | |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2867 | PyObject * |
| 2868 | PyUnicode_FromFormat(const char *format, ...) |
| 2869 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2870 | PyObject* ret; |
| 2871 | va_list vargs; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2872 | |
| 2873 | #ifdef HAVE_STDARG_PROTOTYPES |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2874 | va_start(vargs, format); |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2875 | #else |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2876 | va_start(vargs); |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2877 | #endif |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 2878 | ret = PyUnicode_FromFormatV(format, vargs); |
| 2879 | va_end(vargs); |
| 2880 | return ret; |
Walter Dörwald | d203431 | 2007-05-18 16:29:38 +0000 | [diff] [blame] | 2881 | } |
| 2882 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2883 | #ifdef HAVE_WCHAR_H |
| 2884 | |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2885 | /* Helper function for PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(): |
| 2886 | convert a Unicode object to a wide character string. |
| 2887 | |
Victor Stinner | d88d983 | 2011-09-06 02:00:05 +0200 | [diff] [blame] | 2888 | - 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] | 2889 | character) required to convert the unicode object. Ignore size argument. |
| 2890 | |
Victor Stinner | d88d983 | 2011-09-06 02:00:05 +0200 | [diff] [blame] | 2891 | - Otherwise: return the number of wide characters (excluding the null |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2892 | character) written into w. Write at most size wide characters (including |
Victor Stinner | d88d983 | 2011-09-06 02:00:05 +0200 | [diff] [blame] | 2893 | the null character). */ |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2894 | static Py_ssize_t |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2895 | unicode_aswidechar(PyObject *unicode, |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2896 | wchar_t *w, |
| 2897 | Py_ssize_t size) |
| 2898 | { |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2899 | Py_ssize_t res; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2900 | const wchar_t *wstr; |
| 2901 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2902 | wstr = PyUnicode_AsUnicodeAndSize(unicode, &res); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2903 | if (wstr == NULL) |
| 2904 | return -1; |
| 2905 | |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2906 | if (w != NULL) { |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2907 | if (size > res) |
| 2908 | size = res + 1; |
| 2909 | else |
| 2910 | res = size; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2911 | Py_MEMCPY(w, wstr, size * sizeof(wchar_t)); |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2912 | return res; |
| 2913 | } |
| 2914 | else |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2915 | return res + 1; |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2916 | } |
| 2917 | |
| 2918 | Py_ssize_t |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 2919 | PyUnicode_AsWideChar(PyObject *unicode, |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2920 | wchar_t *w, |
| 2921 | Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2922 | { |
| 2923 | if (unicode == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2924 | PyErr_BadInternalCall(); |
| 2925 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2926 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2927 | return unicode_aswidechar(unicode, w, size); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2928 | } |
| 2929 | |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2930 | wchar_t* |
Victor Stinner | beb4135b | 2010-10-07 01:02:42 +0000 | [diff] [blame] | 2931 | PyUnicode_AsWideCharString(PyObject *unicode, |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2932 | Py_ssize_t *size) |
| 2933 | { |
| 2934 | wchar_t* buffer; |
| 2935 | Py_ssize_t buflen; |
| 2936 | |
| 2937 | if (unicode == NULL) { |
| 2938 | PyErr_BadInternalCall(); |
| 2939 | return NULL; |
| 2940 | } |
| 2941 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2942 | buflen = unicode_aswidechar(unicode, NULL, 0); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2943 | if (buflen == -1) |
| 2944 | return NULL; |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2945 | if (PY_SSIZE_T_MAX / sizeof(wchar_t) < buflen) { |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2946 | PyErr_NoMemory(); |
| 2947 | return NULL; |
| 2948 | } |
| 2949 | |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2950 | buffer = PyMem_MALLOC(buflen * sizeof(wchar_t)); |
| 2951 | if (buffer == NULL) { |
| 2952 | PyErr_NoMemory(); |
| 2953 | return NULL; |
| 2954 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 2955 | buflen = unicode_aswidechar(unicode, buffer, buflen); |
Stefan Krah | 8528c31 | 2012-08-19 21:52:43 +0200 | [diff] [blame] | 2956 | if (buflen == -1) { |
| 2957 | PyMem_FREE(buffer); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2958 | return NULL; |
Stefan Krah | 8528c31 | 2012-08-19 21:52:43 +0200 | [diff] [blame] | 2959 | } |
Victor Stinner | 5593d8a | 2010-10-02 11:11:27 +0000 | [diff] [blame] | 2960 | if (size != NULL) |
| 2961 | *size = buflen; |
Victor Stinner | 137c34c | 2010-09-29 10:25:54 +0000 | [diff] [blame] | 2962 | return buffer; |
| 2963 | } |
| 2964 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2965 | #endif /* HAVE_WCHAR_H */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2966 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2967 | PyObject * |
| 2968 | PyUnicode_FromOrdinal(int ordinal) |
Marc-André Lemburg | cc8764c | 2002-08-11 12:23:04 +0000 | [diff] [blame] | 2969 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2970 | PyObject *v; |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 2971 | if (ordinal < 0 || ordinal > MAX_UNICODE) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2972 | PyErr_SetString(PyExc_ValueError, |
| 2973 | "chr() arg not in range(0x110000)"); |
| 2974 | return NULL; |
Marc-André Lemburg | cc8764c | 2002-08-11 12:23:04 +0000 | [diff] [blame] | 2975 | } |
Guido van Rossum | 8ac004e | 2007-07-15 13:00:05 +0000 | [diff] [blame] | 2976 | |
Victor Stinner | d21b58c | 2013-02-26 00:15:54 +0100 | [diff] [blame] | 2977 | if ((Py_UCS4)ordinal < 256) |
| 2978 | return get_latin1_char((unsigned char)ordinal); |
Marc-André Lemburg | cc8764c | 2002-08-11 12:23:04 +0000 | [diff] [blame] | 2979 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2980 | v = PyUnicode_New(1, ordinal); |
| 2981 | if (v == NULL) |
| 2982 | return NULL; |
| 2983 | PyUnicode_WRITE(PyUnicode_KIND(v), PyUnicode_DATA(v), 0, ordinal); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 2984 | assert(_PyUnicode_CheckConsistency(v, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 2985 | return v; |
Marc-André Lemburg | cc8764c | 2002-08-11 12:23:04 +0000 | [diff] [blame] | 2986 | } |
| 2987 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 2988 | PyObject * |
| 2989 | PyUnicode_FromObject(register PyObject *obj) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 2990 | { |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 2991 | /* XXX Perhaps we should make this API an alias of |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2992 | PyObject_Str() instead ?! */ |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 2993 | if (PyUnicode_CheckExact(obj)) { |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 2994 | if (PyUnicode_READY(obj) == -1) |
Victor Stinner | d3a83d5 | 2011-10-01 03:09:33 +0200 | [diff] [blame] | 2995 | return NULL; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 2996 | Py_INCREF(obj); |
| 2997 | return obj; |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 2998 | } |
| 2999 | if (PyUnicode_Check(obj)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3000 | /* For a Unicode subtype that's not a Unicode object, |
| 3001 | return a true Unicode object with the same data. */ |
Victor Stinner | bf6e560 | 2011-12-12 01:53:47 +0100 | [diff] [blame] | 3002 | return _PyUnicode_Copy(obj); |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 3003 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 3004 | PyErr_Format(PyExc_TypeError, |
| 3005 | "Can't convert '%.100s' object to str implicitly", |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 3006 | Py_TYPE(obj)->tp_name); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 3007 | return NULL; |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 3008 | } |
| 3009 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3010 | PyObject * |
| 3011 | PyUnicode_FromEncodedObject(register PyObject *obj, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3012 | const char *encoding, |
| 3013 | const char *errors) |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 3014 | { |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 3015 | Py_buffer buffer; |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 3016 | PyObject *v; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3017 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3018 | if (obj == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3019 | PyErr_BadInternalCall(); |
| 3020 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3021 | } |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 3022 | |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 3023 | /* Decoding bytes objects is the most common case and should be fast */ |
| 3024 | if (PyBytes_Check(obj)) { |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 3025 | if (PyBytes_GET_SIZE(obj) == 0) |
| 3026 | _Py_RETURN_UNICODE_EMPTY(); |
| 3027 | v = PyUnicode_Decode( |
| 3028 | PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj), |
| 3029 | encoding, errors); |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 3030 | return v; |
| 3031 | } |
| 3032 | |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 3033 | if (PyUnicode_Check(obj)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3034 | PyErr_SetString(PyExc_TypeError, |
| 3035 | "decoding str is not supported"); |
| 3036 | return NULL; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 3037 | } |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 3038 | |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 3039 | /* Retrieve a bytes buffer view through the PEP 3118 buffer interface */ |
| 3040 | if (PyObject_GetBuffer(obj, &buffer, PyBUF_SIMPLE) < 0) { |
| 3041 | PyErr_Format(PyExc_TypeError, |
| 3042 | "coercing to str: need bytes, bytearray " |
| 3043 | "or buffer-like object, %.80s found", |
| 3044 | Py_TYPE(obj)->tp_name); |
| 3045 | return NULL; |
Marc-André Lemburg | 6871f6a | 2001-09-20 12:53:16 +0000 | [diff] [blame] | 3046 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3047 | |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 3048 | if (buffer.len == 0) { |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 3049 | PyBuffer_Release(&buffer); |
| 3050 | _Py_RETURN_UNICODE_EMPTY(); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3051 | } |
Marc-André Lemburg | ad7c98e | 2001-01-17 17:09:53 +0000 | [diff] [blame] | 3052 | |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 3053 | v = PyUnicode_Decode((char*) buffer.buf, buffer.len, encoding, errors); |
Antoine Pitrou | b0fa831 | 2010-09-01 15:10:12 +0000 | [diff] [blame] | 3054 | PyBuffer_Release(&buffer); |
Marc-André Lemburg | 5a5c81a | 2000-07-07 13:46:42 +0000 | [diff] [blame] | 3055 | return v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3056 | } |
| 3057 | |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 3058 | /* Convert encoding to lower case and replace '_' with '-' in order to |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3059 | catch e.g. UTF_8. Return 0 on error (encoding is longer than lower_len-1), |
| 3060 | 1 on success. */ |
Victor Stinner | 20b654a | 2013-01-03 01:08:58 +0100 | [diff] [blame] | 3061 | int |
| 3062 | _Py_normalize_encoding(const char *encoding, |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3063 | char *lower, |
| 3064 | size_t lower_len) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3065 | { |
Guido van Rossum | daa251c | 2007-10-25 23:47:33 +0000 | [diff] [blame] | 3066 | const char *e; |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 3067 | char *l; |
| 3068 | char *l_end; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 3069 | |
Benjamin Peterson | 7a6debe | 2011-10-15 09:25:28 -0400 | [diff] [blame] | 3070 | if (encoding == NULL) { |
| 3071 | strcpy(lower, "utf-8"); |
| 3072 | return 1; |
| 3073 | } |
Guido van Rossum | daa251c | 2007-10-25 23:47:33 +0000 | [diff] [blame] | 3074 | e = encoding; |
| 3075 | l = lower; |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 3076 | l_end = &lower[lower_len - 1]; |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3077 | while (*e) { |
| 3078 | if (l == l_end) |
| 3079 | return 0; |
David Malcolm | 9696088 | 2010-11-05 17:23:41 +0000 | [diff] [blame] | 3080 | if (Py_ISUPPER(*e)) { |
| 3081 | *l++ = Py_TOLOWER(*e++); |
Guido van Rossum | daa251c | 2007-10-25 23:47:33 +0000 | [diff] [blame] | 3082 | } |
| 3083 | else if (*e == '_') { |
| 3084 | *l++ = '-'; |
| 3085 | e++; |
| 3086 | } |
| 3087 | else { |
| 3088 | *l++ = *e++; |
| 3089 | } |
| 3090 | } |
| 3091 | *l = '\0'; |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3092 | return 1; |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 3093 | } |
| 3094 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3095 | PyObject * |
| 3096 | PyUnicode_Decode(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3097 | Py_ssize_t size, |
| 3098 | const char *encoding, |
| 3099 | const char *errors) |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 3100 | { |
| 3101 | PyObject *buffer = NULL, *unicode; |
| 3102 | Py_buffer info; |
| 3103 | char lower[11]; /* Enough for any encoding shortcut */ |
| 3104 | |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 3105 | /* Shortcuts for common default encodings */ |
Victor Stinner | 20b654a | 2013-01-03 01:08:58 +0100 | [diff] [blame] | 3106 | if (_Py_normalize_encoding(encoding, lower, sizeof(lower))) { |
Alexander Belopolsky | 1d52146 | 2011-02-25 19:19:57 +0000 | [diff] [blame] | 3107 | if ((strcmp(lower, "utf-8") == 0) || |
| 3108 | (strcmp(lower, "utf8") == 0)) |
Victor Stinner | a1d12bb | 2011-12-11 21:53:09 +0100 | [diff] [blame] | 3109 | return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3110 | else if ((strcmp(lower, "latin-1") == 0) || |
Alexander Belopolsky | 1d52146 | 2011-02-25 19:19:57 +0000 | [diff] [blame] | 3111 | (strcmp(lower, "latin1") == 0) || |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3112 | (strcmp(lower, "iso-8859-1") == 0)) |
| 3113 | return PyUnicode_DecodeLatin1(s, size, errors); |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 3114 | #ifdef HAVE_MBCS |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3115 | else if (strcmp(lower, "mbcs") == 0) |
| 3116 | return PyUnicode_DecodeMBCS(s, size, errors); |
Mark Hammond | 0ccda1e | 2003-07-01 00:13:27 +0000 | [diff] [blame] | 3117 | #endif |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3118 | else if (strcmp(lower, "ascii") == 0) |
| 3119 | return PyUnicode_DecodeASCII(s, size, errors); |
| 3120 | else if (strcmp(lower, "utf-16") == 0) |
| 3121 | return PyUnicode_DecodeUTF16(s, size, errors, 0); |
| 3122 | else if (strcmp(lower, "utf-32") == 0) |
| 3123 | return PyUnicode_DecodeUTF32(s, size, errors, 0); |
| 3124 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3125 | |
| 3126 | /* Decode via the codec registry */ |
Guido van Rossum | be801ac | 2007-10-08 03:32:34 +0000 | [diff] [blame] | 3127 | buffer = NULL; |
Antoine Pitrou | c3b3924 | 2009-01-03 16:59:18 +0000 | [diff] [blame] | 3128 | 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] | 3129 | goto onError; |
Antoine Pitrou | ee58fa4 | 2008-08-19 18:22:14 +0000 | [diff] [blame] | 3130 | buffer = PyMemoryView_FromBuffer(&info); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3131 | if (buffer == NULL) |
| 3132 | goto onError; |
| 3133 | unicode = PyCodec_Decode(buffer, encoding, errors); |
| 3134 | if (unicode == NULL) |
| 3135 | goto onError; |
| 3136 | if (!PyUnicode_Check(unicode)) { |
| 3137 | PyErr_Format(PyExc_TypeError, |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 3138 | "decoder did not return a str object (type=%.400s)", |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 3139 | Py_TYPE(unicode)->tp_name); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3140 | Py_DECREF(unicode); |
| 3141 | goto onError; |
| 3142 | } |
| 3143 | Py_DECREF(buffer); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 3144 | return unicode_result(unicode); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3145 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3146 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3147 | Py_XDECREF(buffer); |
| 3148 | return NULL; |
| 3149 | } |
| 3150 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3151 | PyObject * |
| 3152 | PyUnicode_AsDecodedObject(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3153 | const char *encoding, |
| 3154 | const char *errors) |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3155 | { |
| 3156 | PyObject *v; |
| 3157 | |
| 3158 | if (!PyUnicode_Check(unicode)) { |
| 3159 | PyErr_BadArgument(); |
| 3160 | goto onError; |
| 3161 | } |
| 3162 | |
| 3163 | if (encoding == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3164 | encoding = PyUnicode_GetDefaultEncoding(); |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3165 | |
| 3166 | /* Decode via the codec registry */ |
| 3167 | v = PyCodec_Decode(unicode, encoding, errors); |
| 3168 | if (v == NULL) |
| 3169 | goto onError; |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 3170 | return unicode_result(v); |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3171 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3172 | onError: |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3173 | return NULL; |
| 3174 | } |
| 3175 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3176 | PyObject * |
| 3177 | PyUnicode_AsDecodedUnicode(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3178 | const char *encoding, |
| 3179 | const char *errors) |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3180 | { |
| 3181 | PyObject *v; |
| 3182 | |
| 3183 | if (!PyUnicode_Check(unicode)) { |
| 3184 | PyErr_BadArgument(); |
| 3185 | goto onError; |
| 3186 | } |
| 3187 | |
| 3188 | if (encoding == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3189 | encoding = PyUnicode_GetDefaultEncoding(); |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3190 | |
| 3191 | /* Decode via the codec registry */ |
| 3192 | v = PyCodec_Decode(unicode, encoding, errors); |
| 3193 | if (v == NULL) |
| 3194 | goto onError; |
| 3195 | if (!PyUnicode_Check(v)) { |
| 3196 | PyErr_Format(PyExc_TypeError, |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 3197 | "decoder did not return a str object (type=%.400s)", |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3198 | Py_TYPE(v)->tp_name); |
| 3199 | Py_DECREF(v); |
| 3200 | goto onError; |
| 3201 | } |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 3202 | return unicode_result(v); |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3203 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3204 | onError: |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3205 | return NULL; |
| 3206 | } |
| 3207 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3208 | PyObject * |
| 3209 | PyUnicode_Encode(const Py_UNICODE *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3210 | Py_ssize_t size, |
| 3211 | const char *encoding, |
| 3212 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3213 | { |
| 3214 | PyObject *v, *unicode; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3215 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3216 | unicode = PyUnicode_FromUnicode(s, size); |
| 3217 | if (unicode == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3218 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3219 | v = PyUnicode_AsEncodedString(unicode, encoding, errors); |
| 3220 | Py_DECREF(unicode); |
| 3221 | return v; |
| 3222 | } |
| 3223 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3224 | PyObject * |
| 3225 | PyUnicode_AsEncodedObject(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3226 | const char *encoding, |
| 3227 | const char *errors) |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3228 | { |
| 3229 | PyObject *v; |
| 3230 | |
| 3231 | if (!PyUnicode_Check(unicode)) { |
| 3232 | PyErr_BadArgument(); |
| 3233 | goto onError; |
| 3234 | } |
| 3235 | |
| 3236 | if (encoding == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3237 | encoding = PyUnicode_GetDefaultEncoding(); |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3238 | |
| 3239 | /* Encode via the codec registry */ |
| 3240 | v = PyCodec_Encode(unicode, encoding, errors); |
| 3241 | if (v == NULL) |
| 3242 | goto onError; |
| 3243 | return v; |
| 3244 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3245 | onError: |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 3246 | return NULL; |
| 3247 | } |
| 3248 | |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3249 | static size_t |
| 3250 | wcstombs_errorpos(const wchar_t *wstr) |
| 3251 | { |
| 3252 | size_t len; |
| 3253 | #if SIZEOF_WCHAR_T == 2 |
| 3254 | wchar_t buf[3]; |
| 3255 | #else |
| 3256 | wchar_t buf[2]; |
| 3257 | #endif |
| 3258 | char outbuf[MB_LEN_MAX]; |
| 3259 | const wchar_t *start, *previous; |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3260 | |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3261 | #if SIZEOF_WCHAR_T == 2 |
| 3262 | buf[2] = 0; |
| 3263 | #else |
| 3264 | buf[1] = 0; |
| 3265 | #endif |
| 3266 | start = wstr; |
| 3267 | while (*wstr != L'\0') |
| 3268 | { |
| 3269 | previous = wstr; |
| 3270 | #if SIZEOF_WCHAR_T == 2 |
| 3271 | if (Py_UNICODE_IS_HIGH_SURROGATE(wstr[0]) |
| 3272 | && Py_UNICODE_IS_LOW_SURROGATE(wstr[1])) |
| 3273 | { |
| 3274 | buf[0] = wstr[0]; |
| 3275 | buf[1] = wstr[1]; |
| 3276 | wstr += 2; |
| 3277 | } |
| 3278 | else { |
| 3279 | buf[0] = *wstr; |
| 3280 | buf[1] = 0; |
| 3281 | wstr++; |
| 3282 | } |
| 3283 | #else |
| 3284 | buf[0] = *wstr; |
| 3285 | wstr++; |
| 3286 | #endif |
| 3287 | len = wcstombs(outbuf, buf, sizeof(outbuf)); |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3288 | if (len == (size_t)-1) |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3289 | return previous - start; |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3290 | } |
| 3291 | |
| 3292 | /* failed to find the unencodable character */ |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3293 | return 0; |
| 3294 | } |
| 3295 | |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3296 | static int |
| 3297 | locale_error_handler(const char *errors, int *surrogateescape) |
| 3298 | { |
| 3299 | if (errors == NULL) { |
| 3300 | *surrogateescape = 0; |
| 3301 | return 0; |
| 3302 | } |
| 3303 | |
| 3304 | if (strcmp(errors, "strict") == 0) { |
| 3305 | *surrogateescape = 0; |
| 3306 | return 0; |
| 3307 | } |
| 3308 | if (strcmp(errors, "surrogateescape") == 0) { |
| 3309 | *surrogateescape = 1; |
| 3310 | return 0; |
| 3311 | } |
| 3312 | PyErr_Format(PyExc_ValueError, |
| 3313 | "only 'strict' and 'surrogateescape' error handlers " |
| 3314 | "are supported, not '%s'", |
| 3315 | errors); |
| 3316 | return -1; |
| 3317 | } |
| 3318 | |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3319 | PyObject * |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3320 | PyUnicode_EncodeLocale(PyObject *unicode, const char *errors) |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3321 | { |
| 3322 | Py_ssize_t wlen, wlen2; |
| 3323 | wchar_t *wstr; |
| 3324 | PyObject *bytes = NULL; |
| 3325 | char *errmsg; |
Raymond Hettinger | e56666d | 2013-08-04 11:51:03 -0700 | [diff] [blame] | 3326 | PyObject *reason = NULL; |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3327 | PyObject *exc; |
| 3328 | size_t error_pos; |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3329 | int surrogateescape; |
| 3330 | |
| 3331 | if (locale_error_handler(errors, &surrogateescape) < 0) |
| 3332 | return NULL; |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3333 | |
| 3334 | wstr = PyUnicode_AsWideCharString(unicode, &wlen); |
| 3335 | if (wstr == NULL) |
| 3336 | return NULL; |
| 3337 | |
| 3338 | wlen2 = wcslen(wstr); |
| 3339 | if (wlen2 != wlen) { |
| 3340 | PyMem_Free(wstr); |
| 3341 | PyErr_SetString(PyExc_TypeError, "embedded null character"); |
| 3342 | return NULL; |
| 3343 | } |
| 3344 | |
| 3345 | if (surrogateescape) { |
| 3346 | /* locale encoding with surrogateescape */ |
| 3347 | char *str; |
| 3348 | |
| 3349 | str = _Py_wchar2char(wstr, &error_pos); |
| 3350 | if (str == NULL) { |
| 3351 | if (error_pos == (size_t)-1) { |
| 3352 | PyErr_NoMemory(); |
| 3353 | PyMem_Free(wstr); |
| 3354 | return NULL; |
| 3355 | } |
| 3356 | else { |
| 3357 | goto encode_error; |
| 3358 | } |
| 3359 | } |
| 3360 | PyMem_Free(wstr); |
| 3361 | |
| 3362 | bytes = PyBytes_FromString(str); |
| 3363 | PyMem_Free(str); |
| 3364 | } |
| 3365 | else { |
| 3366 | size_t len, len2; |
| 3367 | |
| 3368 | len = wcstombs(NULL, wstr, 0); |
| 3369 | if (len == (size_t)-1) { |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3370 | error_pos = (size_t)-1; |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3371 | goto encode_error; |
| 3372 | } |
| 3373 | |
| 3374 | bytes = PyBytes_FromStringAndSize(NULL, len); |
| 3375 | if (bytes == NULL) { |
| 3376 | PyMem_Free(wstr); |
| 3377 | return NULL; |
| 3378 | } |
| 3379 | |
| 3380 | len2 = wcstombs(PyBytes_AS_STRING(bytes), wstr, len+1); |
| 3381 | if (len2 == (size_t)-1 || len2 > len) { |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3382 | error_pos = (size_t)-1; |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3383 | goto encode_error; |
| 3384 | } |
| 3385 | PyMem_Free(wstr); |
| 3386 | } |
| 3387 | return bytes; |
| 3388 | |
| 3389 | encode_error: |
| 3390 | errmsg = strerror(errno); |
| 3391 | assert(errmsg != NULL); |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3392 | |
| 3393 | if (error_pos == (size_t)-1) |
| 3394 | error_pos = wcstombs_errorpos(wstr); |
| 3395 | |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3396 | PyMem_Free(wstr); |
| 3397 | Py_XDECREF(bytes); |
| 3398 | |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3399 | if (errmsg != NULL) { |
| 3400 | size_t errlen; |
| 3401 | wstr = _Py_char2wchar(errmsg, &errlen); |
| 3402 | if (wstr != NULL) { |
| 3403 | reason = PyUnicode_FromWideChar(wstr, errlen); |
| 3404 | PyMem_Free(wstr); |
| 3405 | } else |
| 3406 | errmsg = NULL; |
| 3407 | } |
| 3408 | if (errmsg == NULL) |
Victor Stinner | 1f33f2b | 2011-12-17 04:45:09 +0100 | [diff] [blame] | 3409 | reason = PyUnicode_FromString( |
| 3410 | "wcstombs() encountered an unencodable " |
| 3411 | "wide character"); |
| 3412 | if (reason == NULL) |
| 3413 | return NULL; |
| 3414 | |
| 3415 | exc = PyObject_CallFunction(PyExc_UnicodeEncodeError, "sOnnO", |
| 3416 | "locale", unicode, |
| 3417 | (Py_ssize_t)error_pos, |
| 3418 | (Py_ssize_t)(error_pos+1), |
| 3419 | reason); |
| 3420 | Py_DECREF(reason); |
| 3421 | if (exc != NULL) { |
| 3422 | PyCodec_StrictErrors(exc); |
| 3423 | Py_XDECREF(exc); |
| 3424 | } |
Victor Stinner | f2ea71f | 2011-12-17 04:13:41 +0100 | [diff] [blame] | 3425 | return NULL; |
| 3426 | } |
| 3427 | |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3428 | PyObject * |
| 3429 | PyUnicode_EncodeFSDefault(PyObject *unicode) |
Victor Stinner | ae6265f | 2010-05-15 16:27:27 +0000 | [diff] [blame] | 3430 | { |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 3431 | #ifdef HAVE_MBCS |
Victor Stinner | ac931b1 | 2011-11-20 18:27:03 +0100 | [diff] [blame] | 3432 | return PyUnicode_EncodeCodePage(CP_ACP, unicode, NULL); |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3433 | #elif defined(__APPLE__) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3434 | return _PyUnicode_AsUTF8String(unicode, "surrogateescape"); |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3435 | #else |
Victor Stinner | 793b531 | 2011-04-27 00:24:21 +0200 | [diff] [blame] | 3436 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 3437 | /* Bootstrap check: if the filesystem codec is implemented in Python, we |
| 3438 | cannot use it to encode and decode filenames before it is loaded. Load |
| 3439 | the Python codec requires to encode at least its own filename. Use the C |
| 3440 | version of the locale codec until the codec registry is initialized and |
| 3441 | the Python codec is loaded. |
| 3442 | |
| 3443 | Py_FileSystemDefaultEncoding is shared between all interpreters, we |
| 3444 | cannot only rely on it: check also interp->fscodec_initialized for |
| 3445 | subinterpreters. */ |
| 3446 | if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) { |
Victor Stinner | ae6265f | 2010-05-15 16:27:27 +0000 | [diff] [blame] | 3447 | return PyUnicode_AsEncodedString(unicode, |
| 3448 | Py_FileSystemDefaultEncoding, |
| 3449 | "surrogateescape"); |
Victor Stinner | c39211f | 2010-09-29 16:35:47 +0000 | [diff] [blame] | 3450 | } |
| 3451 | else { |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3452 | return PyUnicode_EncodeLocale(unicode, "surrogateescape"); |
Victor Stinner | c39211f | 2010-09-29 16:35:47 +0000 | [diff] [blame] | 3453 | } |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3454 | #endif |
Victor Stinner | ae6265f | 2010-05-15 16:27:27 +0000 | [diff] [blame] | 3455 | } |
| 3456 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3457 | PyObject * |
| 3458 | PyUnicode_AsEncodedString(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3459 | const char *encoding, |
| 3460 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3461 | { |
| 3462 | PyObject *v; |
Victor Stinner | 600d3be | 2010-06-10 12:00:55 +0000 | [diff] [blame] | 3463 | char lower[11]; /* Enough for any encoding shortcut */ |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3464 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3465 | if (!PyUnicode_Check(unicode)) { |
| 3466 | PyErr_BadArgument(); |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3467 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3468 | } |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 3469 | |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 3470 | /* Shortcuts for common default encodings */ |
Victor Stinner | 20b654a | 2013-01-03 01:08:58 +0100 | [diff] [blame] | 3471 | if (_Py_normalize_encoding(encoding, lower, sizeof(lower))) { |
Alexander Belopolsky | 1d52146 | 2011-02-25 19:19:57 +0000 | [diff] [blame] | 3472 | if ((strcmp(lower, "utf-8") == 0) || |
| 3473 | (strcmp(lower, "utf8") == 0)) |
Victor Stinner | a5c68c3 | 2011-03-02 01:03:14 +0000 | [diff] [blame] | 3474 | { |
Victor Stinner | 2f283c2 | 2011-03-02 01:21:46 +0000 | [diff] [blame] | 3475 | if (errors == NULL || strcmp(errors, "strict") == 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3476 | return _PyUnicode_AsUTF8String(unicode, NULL); |
Victor Stinner | 2f283c2 | 2011-03-02 01:21:46 +0000 | [diff] [blame] | 3477 | else |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3478 | return _PyUnicode_AsUTF8String(unicode, errors); |
Victor Stinner | a5c68c3 | 2011-03-02 01:03:14 +0000 | [diff] [blame] | 3479 | } |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3480 | else if ((strcmp(lower, "latin-1") == 0) || |
Alexander Belopolsky | 1d52146 | 2011-02-25 19:19:57 +0000 | [diff] [blame] | 3481 | (strcmp(lower, "latin1") == 0) || |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3482 | (strcmp(lower, "iso-8859-1") == 0)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3483 | return _PyUnicode_AsLatin1String(unicode, errors); |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 3484 | #ifdef HAVE_MBCS |
Victor Stinner | ac931b1 | 2011-11-20 18:27:03 +0100 | [diff] [blame] | 3485 | else if (strcmp(lower, "mbcs") == 0) |
| 3486 | return PyUnicode_EncodeCodePage(CP_ACP, unicode, errors); |
Mark Hammond | 0ccda1e | 2003-07-01 00:13:27 +0000 | [diff] [blame] | 3487 | #endif |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3488 | else if (strcmp(lower, "ascii") == 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3489 | return _PyUnicode_AsASCIIString(unicode, errors); |
Victor Stinner | 37296e8 | 2010-06-10 13:36:23 +0000 | [diff] [blame] | 3490 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3491 | |
| 3492 | /* Encode via the codec registry */ |
| 3493 | v = PyCodec_Encode(unicode, encoding, errors); |
| 3494 | if (v == NULL) |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3495 | return NULL; |
| 3496 | |
| 3497 | /* The normal path */ |
| 3498 | if (PyBytes_Check(v)) |
| 3499 | return v; |
| 3500 | |
| 3501 | /* 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] | 3502 | if (PyByteArray_Check(v)) { |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 3503 | int error; |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3504 | PyObject *b; |
Victor Stinner | 4a2b7a1 | 2010-08-13 14:03:48 +0000 | [diff] [blame] | 3505 | |
| 3506 | error = PyErr_WarnFormat(PyExc_RuntimeWarning, 1, |
| 3507 | "encoder %s returned bytearray instead of bytes", |
| 3508 | encoding); |
| 3509 | if (error) { |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3510 | Py_DECREF(v); |
| 3511 | return NULL; |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3512 | } |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3513 | |
Amaury Forgeot d'Arc | f048111 | 2008-09-05 20:48:47 +0000 | [diff] [blame] | 3514 | b = PyBytes_FromStringAndSize(PyByteArray_AS_STRING(v), Py_SIZE(v)); |
| 3515 | Py_DECREF(v); |
| 3516 | return b; |
| 3517 | } |
| 3518 | |
| 3519 | PyErr_Format(PyExc_TypeError, |
| 3520 | "encoder did not return a bytes object (type=%.400s)", |
| 3521 | Py_TYPE(v)->tp_name); |
| 3522 | Py_DECREF(v); |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3523 | return NULL; |
| 3524 | } |
| 3525 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3526 | PyObject * |
| 3527 | PyUnicode_AsEncodedUnicode(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 3528 | const char *encoding, |
| 3529 | const char *errors) |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3530 | { |
| 3531 | PyObject *v; |
| 3532 | |
| 3533 | if (!PyUnicode_Check(unicode)) { |
| 3534 | PyErr_BadArgument(); |
| 3535 | goto onError; |
| 3536 | } |
| 3537 | |
| 3538 | if (encoding == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3539 | encoding = PyUnicode_GetDefaultEncoding(); |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3540 | |
| 3541 | /* Encode via the codec registry */ |
| 3542 | v = PyCodec_Encode(unicode, encoding, errors); |
| 3543 | if (v == NULL) |
| 3544 | goto onError; |
| 3545 | if (!PyUnicode_Check(v)) { |
| 3546 | PyErr_Format(PyExc_TypeError, |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 3547 | "encoder did not return an str object (type=%.400s)", |
Marc-André Lemburg | b2750b5 | 2008-06-06 12:18:17 +0000 | [diff] [blame] | 3548 | Py_TYPE(v)->tp_name); |
| 3549 | Py_DECREF(v); |
| 3550 | goto onError; |
| 3551 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3552 | return v; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 3553 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 3554 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3555 | return NULL; |
| 3556 | } |
| 3557 | |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3558 | static size_t |
| 3559 | mbstowcs_errorpos(const char *str, size_t len) |
| 3560 | { |
| 3561 | #ifdef HAVE_MBRTOWC |
| 3562 | const char *start = str; |
| 3563 | mbstate_t mbs; |
| 3564 | size_t converted; |
| 3565 | wchar_t ch; |
| 3566 | |
| 3567 | memset(&mbs, 0, sizeof mbs); |
| 3568 | while (len) |
| 3569 | { |
| 3570 | converted = mbrtowc(&ch, (char*)str, len, &mbs); |
| 3571 | if (converted == 0) |
| 3572 | /* Reached end of string */ |
| 3573 | break; |
| 3574 | if (converted == (size_t)-1 || converted == (size_t)-2) { |
| 3575 | /* Conversion error or incomplete character */ |
| 3576 | return str - start; |
| 3577 | } |
| 3578 | else { |
| 3579 | str += converted; |
| 3580 | len -= converted; |
| 3581 | } |
| 3582 | } |
| 3583 | /* failed to find the undecodable byte sequence */ |
| 3584 | return 0; |
| 3585 | #endif |
| 3586 | return 0; |
| 3587 | } |
| 3588 | |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3589 | PyObject* |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 3590 | PyUnicode_DecodeLocaleAndSize(const char *str, Py_ssize_t len, |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3591 | const char *errors) |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 3592 | { |
| 3593 | wchar_t smallbuf[256]; |
| 3594 | size_t smallbuf_len = Py_ARRAY_LENGTH(smallbuf); |
| 3595 | wchar_t *wstr; |
| 3596 | size_t wlen, wlen2; |
| 3597 | PyObject *unicode; |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3598 | int surrogateescape; |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3599 | size_t error_pos; |
| 3600 | char *errmsg; |
| 3601 | PyObject *reason, *exc; |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3602 | |
| 3603 | if (locale_error_handler(errors, &surrogateescape) < 0) |
| 3604 | return NULL; |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 3605 | |
| 3606 | if (str[len] != '\0' || len != strlen(str)) { |
| 3607 | PyErr_SetString(PyExc_TypeError, "embedded null character"); |
| 3608 | return NULL; |
| 3609 | } |
| 3610 | |
| 3611 | if (surrogateescape) |
| 3612 | { |
| 3613 | wstr = _Py_char2wchar(str, &wlen); |
| 3614 | if (wstr == NULL) { |
| 3615 | if (wlen == (size_t)-1) |
| 3616 | PyErr_NoMemory(); |
| 3617 | else |
| 3618 | PyErr_SetFromErrno(PyExc_OSError); |
| 3619 | return NULL; |
| 3620 | } |
| 3621 | |
| 3622 | unicode = PyUnicode_FromWideChar(wstr, wlen); |
| 3623 | PyMem_Free(wstr); |
| 3624 | } |
| 3625 | else { |
| 3626 | #ifndef HAVE_BROKEN_MBSTOWCS |
| 3627 | wlen = mbstowcs(NULL, str, 0); |
| 3628 | #else |
| 3629 | wlen = len; |
| 3630 | #endif |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3631 | if (wlen == (size_t)-1) |
| 3632 | goto decode_error; |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 3633 | if (wlen+1 <= smallbuf_len) { |
| 3634 | wstr = smallbuf; |
| 3635 | } |
| 3636 | else { |
| 3637 | if (wlen > PY_SSIZE_T_MAX / sizeof(wchar_t) - 1) |
| 3638 | return PyErr_NoMemory(); |
| 3639 | |
| 3640 | wstr = PyMem_Malloc((wlen+1) * sizeof(wchar_t)); |
| 3641 | if (!wstr) |
| 3642 | return PyErr_NoMemory(); |
| 3643 | } |
| 3644 | |
| 3645 | /* This shouldn't fail now */ |
| 3646 | wlen2 = mbstowcs(wstr, str, wlen+1); |
| 3647 | if (wlen2 == (size_t)-1) { |
| 3648 | if (wstr != smallbuf) |
| 3649 | PyMem_Free(wstr); |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3650 | goto decode_error; |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 3651 | } |
| 3652 | #ifdef HAVE_BROKEN_MBSTOWCS |
| 3653 | assert(wlen2 == wlen); |
| 3654 | #endif |
| 3655 | unicode = PyUnicode_FromWideChar(wstr, wlen2); |
| 3656 | if (wstr != smallbuf) |
| 3657 | PyMem_Free(wstr); |
| 3658 | } |
| 3659 | return unicode; |
Victor Stinner | 2f19707 | 2011-12-17 07:08:30 +0100 | [diff] [blame] | 3660 | |
| 3661 | decode_error: |
| 3662 | errmsg = strerror(errno); |
| 3663 | assert(errmsg != NULL); |
| 3664 | |
| 3665 | error_pos = mbstowcs_errorpos(str, len); |
| 3666 | if (errmsg != NULL) { |
| 3667 | size_t errlen; |
| 3668 | wstr = _Py_char2wchar(errmsg, &errlen); |
| 3669 | if (wstr != NULL) { |
| 3670 | reason = PyUnicode_FromWideChar(wstr, errlen); |
| 3671 | PyMem_Free(wstr); |
| 3672 | } else |
| 3673 | errmsg = NULL; |
| 3674 | } |
| 3675 | if (errmsg == NULL) |
| 3676 | reason = PyUnicode_FromString( |
| 3677 | "mbstowcs() encountered an invalid multibyte sequence"); |
| 3678 | if (reason == NULL) |
| 3679 | return NULL; |
| 3680 | |
| 3681 | exc = PyObject_CallFunction(PyExc_UnicodeDecodeError, "sy#nnO", |
| 3682 | "locale", str, len, |
| 3683 | (Py_ssize_t)error_pos, |
| 3684 | (Py_ssize_t)(error_pos+1), |
| 3685 | reason); |
| 3686 | Py_DECREF(reason); |
| 3687 | if (exc != NULL) { |
| 3688 | PyCodec_StrictErrors(exc); |
| 3689 | Py_XDECREF(exc); |
| 3690 | } |
| 3691 | return NULL; |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 3692 | } |
| 3693 | |
| 3694 | PyObject* |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3695 | PyUnicode_DecodeLocale(const char *str, const char *errors) |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 3696 | { |
| 3697 | Py_ssize_t size = (Py_ssize_t)strlen(str); |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3698 | return PyUnicode_DecodeLocaleAndSize(str, size, errors); |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 3699 | } |
| 3700 | |
| 3701 | |
| 3702 | PyObject* |
Christian Heimes | 5894ba7 | 2007-11-04 11:43:14 +0000 | [diff] [blame] | 3703 | PyUnicode_DecodeFSDefault(const char *s) { |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3704 | Py_ssize_t size = (Py_ssize_t)strlen(s); |
Christian Heimes | 5894ba7 | 2007-11-04 11:43:14 +0000 | [diff] [blame] | 3705 | return PyUnicode_DecodeFSDefaultAndSize(s, size); |
| 3706 | } |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3707 | |
Christian Heimes | 5894ba7 | 2007-11-04 11:43:14 +0000 | [diff] [blame] | 3708 | PyObject* |
| 3709 | PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size) |
| 3710 | { |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 3711 | #ifdef HAVE_MBCS |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3712 | return PyUnicode_DecodeMBCS(s, size, NULL); |
| 3713 | #elif defined(__APPLE__) |
Victor Stinner | a1d12bb | 2011-12-11 21:53:09 +0100 | [diff] [blame] | 3714 | return PyUnicode_DecodeUTF8Stateful(s, size, "surrogateescape", NULL); |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3715 | #else |
Victor Stinner | 793b531 | 2011-04-27 00:24:21 +0200 | [diff] [blame] | 3716 | PyInterpreterState *interp = PyThreadState_GET()->interp; |
| 3717 | /* Bootstrap check: if the filesystem codec is implemented in Python, we |
| 3718 | cannot use it to encode and decode filenames before it is loaded. Load |
| 3719 | the Python codec requires to encode at least its own filename. Use the C |
| 3720 | version of the locale codec until the codec registry is initialized and |
| 3721 | the Python codec is loaded. |
| 3722 | |
| 3723 | Py_FileSystemDefaultEncoding is shared between all interpreters, we |
| 3724 | cannot only rely on it: check also interp->fscodec_initialized for |
| 3725 | subinterpreters. */ |
| 3726 | if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) { |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3727 | return PyUnicode_Decode(s, size, |
| 3728 | Py_FileSystemDefaultEncoding, |
Victor Stinner | b9a20ad | 2010-04-30 16:37:52 +0000 | [diff] [blame] | 3729 | "surrogateescape"); |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3730 | } |
| 3731 | else { |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 3732 | return PyUnicode_DecodeLocaleAndSize(s, size, "surrogateescape"); |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3733 | } |
Victor Stinner | ad15872 | 2010-10-27 00:25:46 +0000 | [diff] [blame] | 3734 | #endif |
Guido van Rossum | 00bc0e0 | 2007-10-15 02:52:41 +0000 | [diff] [blame] | 3735 | } |
| 3736 | |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3737 | |
| 3738 | int |
Antoine Pitrou | 1334884 | 2012-01-29 18:36:34 +0100 | [diff] [blame] | 3739 | _PyUnicode_HasNULChars(PyObject* s) |
| 3740 | { |
| 3741 | static PyObject *nul = NULL; |
| 3742 | |
| 3743 | if (nul == NULL) |
| 3744 | nul = PyUnicode_FromStringAndSize("\0", 1); |
| 3745 | if (nul == NULL) |
| 3746 | return -1; |
| 3747 | return PyUnicode_Contains(s, nul); |
| 3748 | } |
| 3749 | |
| 3750 | |
| 3751 | int |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3752 | PyUnicode_FSConverter(PyObject* arg, void* addr) |
| 3753 | { |
| 3754 | PyObject *output = NULL; |
| 3755 | Py_ssize_t size; |
| 3756 | void *data; |
Martin v. Löwis | c15bdef | 2009-05-29 14:47:46 +0000 | [diff] [blame] | 3757 | if (arg == NULL) { |
| 3758 | Py_DECREF(*(PyObject**)addr); |
| 3759 | return 1; |
| 3760 | } |
Victor Stinner | dcb2403 | 2010-04-22 12:08:36 +0000 | [diff] [blame] | 3761 | if (PyBytes_Check(arg)) { |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3762 | output = arg; |
| 3763 | Py_INCREF(output); |
| 3764 | } |
| 3765 | else { |
| 3766 | arg = PyUnicode_FromObject(arg); |
| 3767 | if (!arg) |
| 3768 | return 0; |
Victor Stinner | ae6265f | 2010-05-15 16:27:27 +0000 | [diff] [blame] | 3769 | output = PyUnicode_EncodeFSDefault(arg); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3770 | Py_DECREF(arg); |
| 3771 | if (!output) |
| 3772 | return 0; |
| 3773 | if (!PyBytes_Check(output)) { |
| 3774 | Py_DECREF(output); |
| 3775 | PyErr_SetString(PyExc_TypeError, "encoder failed to return bytes"); |
| 3776 | return 0; |
| 3777 | } |
| 3778 | } |
Victor Stinner | 0ea2a46 | 2010-04-30 00:22:08 +0000 | [diff] [blame] | 3779 | size = PyBytes_GET_SIZE(output); |
| 3780 | data = PyBytes_AS_STRING(output); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3781 | if (size != strlen(data)) { |
Benjamin Peterson | 7a6b44a | 2011-08-18 13:51:47 -0500 | [diff] [blame] | 3782 | PyErr_SetString(PyExc_TypeError, "embedded NUL character"); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3783 | Py_DECREF(output); |
| 3784 | return 0; |
| 3785 | } |
| 3786 | *(PyObject**)addr = output; |
Martin v. Löwis | c15bdef | 2009-05-29 14:47:46 +0000 | [diff] [blame] | 3787 | return Py_CLEANUP_SUPPORTED; |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 3788 | } |
| 3789 | |
| 3790 | |
Victor Stinner | 47fcb5b | 2010-08-13 23:59:58 +0000 | [diff] [blame] | 3791 | int |
| 3792 | PyUnicode_FSDecoder(PyObject* arg, void* addr) |
| 3793 | { |
| 3794 | PyObject *output = NULL; |
Victor Stinner | 47fcb5b | 2010-08-13 23:59:58 +0000 | [diff] [blame] | 3795 | if (arg == NULL) { |
| 3796 | Py_DECREF(*(PyObject**)addr); |
| 3797 | return 1; |
| 3798 | } |
| 3799 | if (PyUnicode_Check(arg)) { |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 3800 | if (PyUnicode_READY(arg) == -1) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3801 | return 0; |
Victor Stinner | 47fcb5b | 2010-08-13 23:59:58 +0000 | [diff] [blame] | 3802 | output = arg; |
| 3803 | Py_INCREF(output); |
| 3804 | } |
| 3805 | else { |
| 3806 | arg = PyBytes_FromObject(arg); |
| 3807 | if (!arg) |
| 3808 | return 0; |
| 3809 | output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(arg), |
| 3810 | PyBytes_GET_SIZE(arg)); |
| 3811 | Py_DECREF(arg); |
| 3812 | if (!output) |
| 3813 | return 0; |
| 3814 | if (!PyUnicode_Check(output)) { |
| 3815 | Py_DECREF(output); |
| 3816 | PyErr_SetString(PyExc_TypeError, "decoder failed to return unicode"); |
| 3817 | return 0; |
| 3818 | } |
| 3819 | } |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 3820 | if (PyUnicode_READY(output) == -1) { |
Victor Stinner | 065836e | 2011-10-27 01:56:33 +0200 | [diff] [blame] | 3821 | Py_DECREF(output); |
| 3822 | return 0; |
| 3823 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3824 | if (findchar(PyUnicode_DATA(output), PyUnicode_KIND(output), |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 3825 | PyUnicode_GET_LENGTH(output), 0, 1) >= 0) { |
Victor Stinner | 47fcb5b | 2010-08-13 23:59:58 +0000 | [diff] [blame] | 3826 | PyErr_SetString(PyExc_TypeError, "embedded NUL character"); |
| 3827 | Py_DECREF(output); |
| 3828 | return 0; |
| 3829 | } |
| 3830 | *(PyObject**)addr = output; |
| 3831 | return Py_CLEANUP_SUPPORTED; |
| 3832 | } |
| 3833 | |
| 3834 | |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 3835 | char* |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3836 | PyUnicode_AsUTF8AndSize(PyObject *unicode, Py_ssize_t *psize) |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 3837 | { |
Christian Heimes | f386311 | 2007-11-22 07:46:41 +0000 | [diff] [blame] | 3838 | PyObject *bytes; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3839 | |
Neal Norwitz | e0a0a6e | 2007-08-25 01:04:21 +0000 | [diff] [blame] | 3840 | if (!PyUnicode_Check(unicode)) { |
| 3841 | PyErr_BadArgument(); |
| 3842 | return NULL; |
| 3843 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3844 | if (PyUnicode_READY(unicode) == -1) |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 3845 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3846 | |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 3847 | if (PyUnicode_UTF8(unicode) == NULL) { |
| 3848 | assert(!PyUnicode_IS_COMPACT_ASCII(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3849 | bytes = _PyUnicode_AsUTF8String(unicode, "strict"); |
| 3850 | if (bytes == NULL) |
| 3851 | return NULL; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3852 | _PyUnicode_UTF8(unicode) = PyObject_MALLOC(PyBytes_GET_SIZE(bytes) + 1); |
| 3853 | if (_PyUnicode_UTF8(unicode) == NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3854 | Py_DECREF(bytes); |
| 3855 | return NULL; |
| 3856 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3857 | _PyUnicode_UTF8_LENGTH(unicode) = PyBytes_GET_SIZE(bytes); |
| 3858 | Py_MEMCPY(_PyUnicode_UTF8(unicode), |
| 3859 | PyBytes_AS_STRING(bytes), |
| 3860 | _PyUnicode_UTF8_LENGTH(unicode) + 1); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3861 | Py_DECREF(bytes); |
| 3862 | } |
| 3863 | |
| 3864 | if (psize) |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 3865 | *psize = PyUnicode_UTF8_LENGTH(unicode); |
| 3866 | return PyUnicode_UTF8(unicode); |
Guido van Rossum | 7d1df6c | 2007-08-29 13:53:23 +0000 | [diff] [blame] | 3867 | } |
| 3868 | |
| 3869 | char* |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3870 | PyUnicode_AsUTF8(PyObject *unicode) |
Guido van Rossum | 7d1df6c | 2007-08-29 13:53:23 +0000 | [diff] [blame] | 3871 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3872 | return PyUnicode_AsUTF8AndSize(unicode, NULL); |
| 3873 | } |
| 3874 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3875 | Py_UNICODE * |
| 3876 | PyUnicode_AsUnicodeAndSize(PyObject *unicode, Py_ssize_t *size) |
| 3877 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3878 | const unsigned char *one_byte; |
| 3879 | #if SIZEOF_WCHAR_T == 4 |
| 3880 | const Py_UCS2 *two_bytes; |
| 3881 | #else |
| 3882 | const Py_UCS4 *four_bytes; |
| 3883 | const Py_UCS4 *ucs4_end; |
| 3884 | Py_ssize_t num_surrogates; |
| 3885 | #endif |
| 3886 | wchar_t *w; |
| 3887 | wchar_t *wchar_end; |
| 3888 | |
| 3889 | if (!PyUnicode_Check(unicode)) { |
| 3890 | PyErr_BadArgument(); |
| 3891 | return NULL; |
| 3892 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3893 | if (_PyUnicode_WSTR(unicode) == NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3894 | /* Non-ASCII compact unicode object */ |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3895 | assert(_PyUnicode_KIND(unicode) != 0); |
| 3896 | assert(PyUnicode_IS_READY(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3897 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3898 | if (PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3899 | #if SIZEOF_WCHAR_T == 2 |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3900 | four_bytes = PyUnicode_4BYTE_DATA(unicode); |
| 3901 | ucs4_end = four_bytes + _PyUnicode_LENGTH(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3902 | num_surrogates = 0; |
| 3903 | |
| 3904 | for (; four_bytes < ucs4_end; ++four_bytes) { |
| 3905 | if (*four_bytes > 0xFFFF) |
| 3906 | ++num_surrogates; |
| 3907 | } |
| 3908 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3909 | _PyUnicode_WSTR(unicode) = (wchar_t *) PyObject_MALLOC( |
| 3910 | sizeof(wchar_t) * (_PyUnicode_LENGTH(unicode) + 1 + num_surrogates)); |
| 3911 | if (!_PyUnicode_WSTR(unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3912 | PyErr_NoMemory(); |
| 3913 | return NULL; |
| 3914 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3915 | _PyUnicode_WSTR_LENGTH(unicode) = _PyUnicode_LENGTH(unicode) + num_surrogates; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3916 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3917 | w = _PyUnicode_WSTR(unicode); |
| 3918 | wchar_end = w + _PyUnicode_WSTR_LENGTH(unicode); |
| 3919 | four_bytes = PyUnicode_4BYTE_DATA(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3920 | for (; four_bytes < ucs4_end; ++four_bytes, ++w) { |
| 3921 | if (*four_bytes > 0xFFFF) { |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 3922 | assert(*four_bytes <= MAX_UNICODE); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3923 | /* encode surrogate pair in this case */ |
Victor Stinner | 551ac95 | 2011-11-29 22:58:13 +0100 | [diff] [blame] | 3924 | *w++ = Py_UNICODE_HIGH_SURROGATE(*four_bytes); |
| 3925 | *w = Py_UNICODE_LOW_SURROGATE(*four_bytes); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3926 | } |
| 3927 | else |
| 3928 | *w = *four_bytes; |
| 3929 | |
| 3930 | if (w > wchar_end) { |
| 3931 | assert(0 && "Miscalculated string end"); |
| 3932 | } |
| 3933 | } |
| 3934 | *w = 0; |
| 3935 | #else |
| 3936 | /* sizeof(wchar_t) == 4 */ |
| 3937 | Py_FatalError("Impossible unicode object state, wstr and str " |
| 3938 | "should share memory already."); |
| 3939 | return NULL; |
| 3940 | #endif |
| 3941 | } |
| 3942 | else { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3943 | _PyUnicode_WSTR(unicode) = (wchar_t *) PyObject_MALLOC(sizeof(wchar_t) * |
| 3944 | (_PyUnicode_LENGTH(unicode) + 1)); |
| 3945 | if (!_PyUnicode_WSTR(unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3946 | PyErr_NoMemory(); |
| 3947 | return NULL; |
| 3948 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3949 | if (!PyUnicode_IS_COMPACT_ASCII(unicode)) |
| 3950 | _PyUnicode_WSTR_LENGTH(unicode) = _PyUnicode_LENGTH(unicode); |
| 3951 | w = _PyUnicode_WSTR(unicode); |
| 3952 | wchar_end = w + _PyUnicode_LENGTH(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3953 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3954 | if (PyUnicode_KIND(unicode) == PyUnicode_1BYTE_KIND) { |
| 3955 | one_byte = PyUnicode_1BYTE_DATA(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3956 | for (; w < wchar_end; ++one_byte, ++w) |
| 3957 | *w = *one_byte; |
| 3958 | /* null-terminate the wstr */ |
| 3959 | *w = 0; |
| 3960 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3961 | else if (PyUnicode_KIND(unicode) == PyUnicode_2BYTE_KIND) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3962 | #if SIZEOF_WCHAR_T == 4 |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3963 | two_bytes = PyUnicode_2BYTE_DATA(unicode); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3964 | for (; w < wchar_end; ++two_bytes, ++w) |
| 3965 | *w = *two_bytes; |
| 3966 | /* null-terminate the wstr */ |
| 3967 | *w = 0; |
| 3968 | #else |
| 3969 | /* sizeof(wchar_t) == 2 */ |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3970 | PyObject_FREE(_PyUnicode_WSTR(unicode)); |
| 3971 | _PyUnicode_WSTR(unicode) = NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3972 | Py_FatalError("Impossible unicode object state, wstr " |
| 3973 | "and str should share memory already."); |
| 3974 | return NULL; |
| 3975 | #endif |
| 3976 | } |
| 3977 | else { |
| 3978 | assert(0 && "This should never happen."); |
| 3979 | } |
| 3980 | } |
| 3981 | } |
| 3982 | if (size != NULL) |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 3983 | *size = PyUnicode_WSTR_LENGTH(unicode); |
| 3984 | return _PyUnicode_WSTR(unicode); |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 3985 | } |
| 3986 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3987 | Py_UNICODE * |
| 3988 | PyUnicode_AsUnicode(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3989 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3990 | return PyUnicode_AsUnicodeAndSize(unicode, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3991 | } |
| 3992 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3993 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 3994 | Py_ssize_t |
| 3995 | PyUnicode_GetSize(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 3996 | { |
| 3997 | if (!PyUnicode_Check(unicode)) { |
| 3998 | PyErr_BadArgument(); |
| 3999 | goto onError; |
| 4000 | } |
| 4001 | return PyUnicode_GET_SIZE(unicode); |
| 4002 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4003 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4004 | return -1; |
| 4005 | } |
| 4006 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4007 | Py_ssize_t |
| 4008 | PyUnicode_GetLength(PyObject *unicode) |
| 4009 | { |
Victor Stinner | 0762133 | 2012-06-16 04:53:46 +0200 | [diff] [blame] | 4010 | if (!PyUnicode_Check(unicode)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4011 | PyErr_BadArgument(); |
| 4012 | return -1; |
| 4013 | } |
Victor Stinner | 0762133 | 2012-06-16 04:53:46 +0200 | [diff] [blame] | 4014 | if (PyUnicode_READY(unicode) == -1) |
| 4015 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4016 | return PyUnicode_GET_LENGTH(unicode); |
| 4017 | } |
| 4018 | |
| 4019 | Py_UCS4 |
| 4020 | PyUnicode_ReadChar(PyObject *unicode, Py_ssize_t index) |
| 4021 | { |
Victor Stinner | 2fe5ced | 2011-10-02 00:25:40 +0200 | [diff] [blame] | 4022 | if (!PyUnicode_Check(unicode) || PyUnicode_READY(unicode) == -1) { |
| 4023 | PyErr_BadArgument(); |
| 4024 | return (Py_UCS4)-1; |
| 4025 | } |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 4026 | if (index < 0 || index >= PyUnicode_GET_LENGTH(unicode)) { |
Victor Stinner | 2fe5ced | 2011-10-02 00:25:40 +0200 | [diff] [blame] | 4027 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4028 | return (Py_UCS4)-1; |
| 4029 | } |
| 4030 | return PyUnicode_READ_CHAR(unicode, index); |
| 4031 | } |
| 4032 | |
| 4033 | int |
| 4034 | PyUnicode_WriteChar(PyObject *unicode, Py_ssize_t index, Py_UCS4 ch) |
| 4035 | { |
| 4036 | if (!PyUnicode_Check(unicode) || !PyUnicode_IS_COMPACT(unicode)) { |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 4037 | PyErr_BadArgument(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4038 | return -1; |
| 4039 | } |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 4040 | assert(PyUnicode_IS_READY(unicode)); |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 4041 | if (index < 0 || index >= PyUnicode_GET_LENGTH(unicode)) { |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 4042 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 4043 | return -1; |
| 4044 | } |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 4045 | if (unicode_check_modifiable(unicode)) |
Victor Stinner | cd9950f | 2011-10-02 00:34:53 +0200 | [diff] [blame] | 4046 | return -1; |
Victor Stinner | c9590ad | 2012-03-04 01:34:37 +0100 | [diff] [blame] | 4047 | if (ch > PyUnicode_MAX_CHAR_VALUE(unicode)) { |
| 4048 | PyErr_SetString(PyExc_ValueError, "character out of range"); |
| 4049 | return -1; |
| 4050 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4051 | PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode), |
| 4052 | index, ch); |
| 4053 | return 0; |
| 4054 | } |
| 4055 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4056 | const char * |
| 4057 | PyUnicode_GetDefaultEncoding(void) |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 4058 | { |
Victor Stinner | 42cb462 | 2010-09-01 19:39:01 +0000 | [diff] [blame] | 4059 | return "utf-8"; |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 4060 | } |
| 4061 | |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 4062 | /* create or adjust a UnicodeDecodeError */ |
| 4063 | static void |
| 4064 | make_decode_exception(PyObject **exceptionObject, |
| 4065 | const char *encoding, |
| 4066 | const char *input, Py_ssize_t length, |
| 4067 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 4068 | const char *reason) |
| 4069 | { |
| 4070 | if (*exceptionObject == NULL) { |
| 4071 | *exceptionObject = PyUnicodeDecodeError_Create( |
| 4072 | encoding, input, length, startpos, endpos, reason); |
| 4073 | } |
| 4074 | else { |
| 4075 | if (PyUnicodeDecodeError_SetStart(*exceptionObject, startpos)) |
| 4076 | goto onError; |
| 4077 | if (PyUnicodeDecodeError_SetEnd(*exceptionObject, endpos)) |
| 4078 | goto onError; |
| 4079 | if (PyUnicodeDecodeError_SetReason(*exceptionObject, reason)) |
| 4080 | goto onError; |
| 4081 | } |
| 4082 | return; |
| 4083 | |
| 4084 | onError: |
| 4085 | Py_DECREF(*exceptionObject); |
| 4086 | *exceptionObject = NULL; |
| 4087 | } |
| 4088 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4089 | /* error handling callback helper: |
| 4090 | build arguments, call the callback and check the arguments, |
Fred Drake | db390c1 | 2005-10-28 14:39:47 +0000 | [diff] [blame] | 4091 | if no exception occurred, copy the replacement to the output |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4092 | and adjust various state variables. |
| 4093 | return 0 on success, -1 on error |
| 4094 | */ |
| 4095 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4096 | static int |
| 4097 | unicode_decode_call_errorhandler(const char *errors, PyObject **errorHandler, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 4098 | const char *encoding, const char *reason, |
| 4099 | const char **input, const char **inend, Py_ssize_t *startinpos, |
| 4100 | Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4101 | PyObject **output, Py_ssize_t *outpos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4102 | { |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 4103 | 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] | 4104 | |
| 4105 | PyObject *restuple = NULL; |
| 4106 | PyObject *repunicode = NULL; |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 4107 | Py_ssize_t outsize; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 4108 | Py_ssize_t insize; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 4109 | Py_ssize_t requiredsize; |
| 4110 | Py_ssize_t newpos; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 4111 | PyObject *inputobj = NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4112 | int res = -1; |
| 4113 | |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 4114 | if (_PyUnicode_KIND(*output) != PyUnicode_WCHAR_KIND) |
| 4115 | outsize = PyUnicode_GET_LENGTH(*output); |
| 4116 | else |
| 4117 | outsize = _PyUnicode_WSTR_LENGTH(*output); |
| 4118 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4119 | if (*errorHandler == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4120 | *errorHandler = PyCodec_LookupError(errors); |
| 4121 | if (*errorHandler == NULL) |
| 4122 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4123 | } |
| 4124 | |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 4125 | make_decode_exception(exceptionObject, |
| 4126 | encoding, |
| 4127 | *input, *inend - *input, |
| 4128 | *startinpos, *endinpos, |
| 4129 | reason); |
| 4130 | if (*exceptionObject == NULL) |
| 4131 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4132 | |
| 4133 | restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL); |
| 4134 | if (restuple == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4135 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4136 | if (!PyTuple_Check(restuple)) { |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 4137 | PyErr_SetString(PyExc_TypeError, &argparse[4]); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4138 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4139 | } |
| 4140 | if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, &repunicode, &newpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4141 | goto onError; |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 4142 | if (PyUnicode_READY(repunicode) == -1) |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4143 | goto onError; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 4144 | |
| 4145 | /* Copy back the bytes variables, which might have been modified by the |
| 4146 | callback */ |
| 4147 | inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject); |
| 4148 | if (!inputobj) |
| 4149 | goto onError; |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 4150 | if (!PyBytes_Check(inputobj)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4151 | PyErr_Format(PyExc_TypeError, "exception attribute object must be bytes"); |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 4152 | } |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 4153 | *input = PyBytes_AS_STRING(inputobj); |
| 4154 | insize = PyBytes_GET_SIZE(inputobj); |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 4155 | *inend = *input + insize; |
Walter Dörwald | 36f938f | 2007-08-10 10:11:43 +0000 | [diff] [blame] | 4156 | /* we can DECREF safely, as the exception has another reference, |
| 4157 | so the object won't go away. */ |
| 4158 | Py_DECREF(inputobj); |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 4159 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4160 | if (newpos<0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4161 | newpos = insize+newpos; |
Walter Dörwald | 2e0b18a | 2003-01-31 17:19:08 +0000 | [diff] [blame] | 4162 | if (newpos<0 || newpos>insize) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4163 | PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", newpos); |
| 4164 | goto onError; |
Walter Dörwald | 2e0b18a | 2003-01-31 17:19:08 +0000 | [diff] [blame] | 4165 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4166 | |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 4167 | if (_PyUnicode_KIND(*output) != PyUnicode_WCHAR_KIND) { |
| 4168 | /* need more space? (at least enough for what we |
| 4169 | have+the replacement+the rest of the string (starting |
| 4170 | at the new input position), so we won't have to check space |
| 4171 | when there are no errors in the rest of the string) */ |
| 4172 | Py_ssize_t replen = PyUnicode_GET_LENGTH(repunicode); |
| 4173 | requiredsize = *outpos + replen + insize-newpos; |
| 4174 | if (requiredsize > outsize) { |
| 4175 | if (requiredsize<2*outsize) |
| 4176 | requiredsize = 2*outsize; |
| 4177 | if (unicode_resize(output, requiredsize) < 0) |
| 4178 | goto onError; |
| 4179 | } |
Victor Stinner | 1b487b4 | 2012-05-03 12:29:04 +0200 | [diff] [blame] | 4180 | if (unicode_widen(output, *outpos, |
| 4181 | PyUnicode_MAX_CHAR_VALUE(repunicode)) < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4182 | goto onError; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 4183 | _PyUnicode_FastCopyCharacters(*output, *outpos, repunicode, 0, replen); |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 4184 | *outpos += replen; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4185 | } |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 4186 | else { |
| 4187 | wchar_t *repwstr; |
| 4188 | Py_ssize_t repwlen; |
| 4189 | repwstr = PyUnicode_AsUnicodeAndSize(repunicode, &repwlen); |
| 4190 | if (repwstr == NULL) |
| 4191 | goto onError; |
| 4192 | /* need more space? (at least enough for what we |
| 4193 | have+the replacement+the rest of the string (starting |
| 4194 | at the new input position), so we won't have to check space |
| 4195 | when there are no errors in the rest of the string) */ |
| 4196 | requiredsize = *outpos + repwlen + insize-newpos; |
| 4197 | if (requiredsize > outsize) { |
| 4198 | if (requiredsize < 2*outsize) |
| 4199 | requiredsize = 2*outsize; |
| 4200 | if (unicode_resize(output, requiredsize) < 0) |
| 4201 | goto onError; |
| 4202 | } |
| 4203 | wcsncpy(_PyUnicode_WSTR(*output) + *outpos, repwstr, repwlen); |
| 4204 | *outpos += repwlen; |
| 4205 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4206 | *endinpos = newpos; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 4207 | *inptr = *input + newpos; |
Walter Dörwald | e78178e | 2007-07-30 13:31:40 +0000 | [diff] [blame] | 4208 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4209 | /* we made it! */ |
| 4210 | res = 0; |
| 4211 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4212 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4213 | Py_XDECREF(restuple); |
| 4214 | return res; |
| 4215 | } |
| 4216 | |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4217 | /* --- UTF-7 Codec -------------------------------------------------------- */ |
| 4218 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4219 | /* See RFC2152 for details. We encode conservatively and decode liberally. */ |
| 4220 | |
| 4221 | /* Three simple macros defining base-64. */ |
| 4222 | |
| 4223 | /* Is c a base-64 character? */ |
| 4224 | |
| 4225 | #define IS_BASE64(c) \ |
| 4226 | (((c) >= 'A' && (c) <= 'Z') || \ |
| 4227 | ((c) >= 'a' && (c) <= 'z') || \ |
| 4228 | ((c) >= '0' && (c) <= '9') || \ |
| 4229 | (c) == '+' || (c) == '/') |
| 4230 | |
| 4231 | /* given that c is a base-64 character, what is its base-64 value? */ |
| 4232 | |
| 4233 | #define FROM_BASE64(c) \ |
| 4234 | (((c) >= 'A' && (c) <= 'Z') ? (c) - 'A' : \ |
| 4235 | ((c) >= 'a' && (c) <= 'z') ? (c) - 'a' + 26 : \ |
| 4236 | ((c) >= '0' && (c) <= '9') ? (c) - '0' + 52 : \ |
| 4237 | (c) == '+' ? 62 : 63) |
| 4238 | |
| 4239 | /* What is the base-64 character of the bottom 6 bits of n? */ |
| 4240 | |
| 4241 | #define TO_BASE64(n) \ |
| 4242 | ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[(n) & 0x3f]) |
| 4243 | |
| 4244 | /* DECODE_DIRECT: this byte encountered in a UTF-7 string should be |
| 4245 | * decoded as itself. We are permissive on decoding; the only ASCII |
| 4246 | * byte not decoding to itself is the + which begins a base64 |
| 4247 | * string. */ |
| 4248 | |
| 4249 | #define DECODE_DIRECT(c) \ |
| 4250 | ((c) <= 127 && (c) != '+') |
| 4251 | |
| 4252 | /* The UTF-7 encoder treats ASCII characters differently according to |
| 4253 | * whether they are Set D, Set O, Whitespace, or special (i.e. none of |
| 4254 | * the above). See RFC2152. This array identifies these different |
| 4255 | * sets: |
| 4256 | * 0 : "Set D" |
| 4257 | * alphanumeric and '(),-./:? |
| 4258 | * 1 : "Set O" |
| 4259 | * !"#$%&*;<=>@[]^_`{|} |
| 4260 | * 2 : "whitespace" |
| 4261 | * ht nl cr sp |
| 4262 | * 3 : special (must be base64 encoded) |
| 4263 | * everything else (i.e. +\~ and non-printing codes 0-8 11-12 14-31 127) |
| 4264 | */ |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4265 | |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 4266 | static |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4267 | char utf7_category[128] = { |
| 4268 | /* nul soh stx etx eot enq ack bel bs ht nl vt np cr so si */ |
| 4269 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, 3, 2, 3, 3, |
| 4270 | /* dle dc1 dc2 dc3 dc4 nak syn etb can em sub esc fs gs rs us */ |
| 4271 | 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, |
| 4272 | /* sp ! " # $ % & ' ( ) * + , - . / */ |
| 4273 | 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0, |
| 4274 | /* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */ |
| 4275 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, |
| 4276 | /* @ A B C D E F G H I J K L M N O */ |
| 4277 | 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 4278 | /* P Q R S T U V W X Y Z [ \ ] ^ _ */ |
| 4279 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 1, |
| 4280 | /* ` a b c d e f g h i j k l m n o */ |
| 4281 | 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 4282 | /* p q r s t u v w x y z { | } ~ del */ |
| 4283 | 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] | 4284 | }; |
| 4285 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4286 | /* ENCODE_DIRECT: this character should be encoded as itself. The |
| 4287 | * answer depends on whether we are encoding set O as itself, and also |
| 4288 | * on whether we are encoding whitespace as itself. RFC2152 makes it |
| 4289 | * clear that the answers to these questions vary between |
| 4290 | * applications, so this code needs to be flexible. */ |
Marc-André Lemburg | e115ec8 | 2005-10-19 22:33:31 +0000 | [diff] [blame] | 4291 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4292 | #define ENCODE_DIRECT(c, directO, directWS) \ |
| 4293 | ((c) < 128 && (c) > 0 && \ |
| 4294 | ((utf7_category[(c)] == 0) || \ |
| 4295 | (directWS && (utf7_category[(c)] == 2)) || \ |
| 4296 | (directO && (utf7_category[(c)] == 1)))) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4297 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4298 | PyObject * |
| 4299 | PyUnicode_DecodeUTF7(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 4300 | Py_ssize_t size, |
| 4301 | const char *errors) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4302 | { |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 4303 | return PyUnicode_DecodeUTF7Stateful(s, size, errors, NULL); |
| 4304 | } |
| 4305 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4306 | /* The decoder. The only state we preserve is our read position, |
| 4307 | * i.e. how many characters we have consumed. So if we end in the |
| 4308 | * middle of a shift sequence we have to back off the read position |
| 4309 | * and the output to the beginning of the sequence, otherwise we lose |
| 4310 | * all the shift state (seen bits, number of bits seen, high |
| 4311 | * surrogate). */ |
| 4312 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4313 | PyObject * |
| 4314 | PyUnicode_DecodeUTF7Stateful(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 4315 | Py_ssize_t size, |
| 4316 | const char *errors, |
| 4317 | Py_ssize_t *consumed) |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 4318 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4319 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 4320 | Py_ssize_t startinpos; |
| 4321 | Py_ssize_t endinpos; |
| 4322 | Py_ssize_t outpos; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4323 | const char *e; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4324 | PyObject *unicode; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4325 | const char *errmsg = ""; |
| 4326 | int inShift = 0; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4327 | Py_ssize_t shiftOutStart; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4328 | unsigned int base64bits = 0; |
| 4329 | unsigned long base64buffer = 0; |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 4330 | Py_UCS4 surrogate = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4331 | PyObject *errorHandler = NULL; |
| 4332 | PyObject *exc = NULL; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4333 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4334 | /* Start off assuming it's all ASCII. Widen later as necessary. */ |
| 4335 | unicode = PyUnicode_New(size, 127); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4336 | if (!unicode) |
| 4337 | return NULL; |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 4338 | if (size == 0) { |
| 4339 | if (consumed) |
| 4340 | *consumed = 0; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4341 | return unicode; |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 4342 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4343 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4344 | shiftOutStart = outpos = 0; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4345 | e = s + size; |
| 4346 | |
| 4347 | while (s < e) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4348 | Py_UCS4 ch; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4349 | restart: |
Antoine Pitrou | 5ffd9e9 | 2008-07-25 18:05:24 +0000 | [diff] [blame] | 4350 | ch = (unsigned char) *s; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4351 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4352 | if (inShift) { /* in a base-64 section */ |
| 4353 | if (IS_BASE64(ch)) { /* consume a base-64 character */ |
| 4354 | base64buffer = (base64buffer << 6) | FROM_BASE64(ch); |
| 4355 | base64bits += 6; |
| 4356 | s++; |
| 4357 | if (base64bits >= 16) { |
| 4358 | /* we have enough bits for a UTF-16 value */ |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 4359 | Py_UCS4 outCh = (Py_UCS4)(base64buffer >> (base64bits-16)); |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4360 | base64bits -= 16; |
| 4361 | base64buffer &= (1 << base64bits) - 1; /* clear high bits */ |
Serhiy Storchaka | 35804e4 | 2013-10-19 20:38:19 +0300 | [diff] [blame] | 4362 | assert(outCh <= 0xffff); |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4363 | if (surrogate) { |
| 4364 | /* expecting a second surrogate */ |
Victor Stinner | 551ac95 | 2011-11-29 22:58:13 +0100 | [diff] [blame] | 4365 | if (Py_UNICODE_IS_LOW_SURROGATE(outCh)) { |
| 4366 | Py_UCS4 ch2 = Py_UNICODE_JOIN_SURROGATES(surrogate, outCh); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4367 | if (unicode_putchar(&unicode, &outpos, ch2) < 0) |
| 4368 | goto onError; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4369 | surrogate = 0; |
Antoine Pitrou | 5418ee0 | 2011-11-15 01:42:21 +0100 | [diff] [blame] | 4370 | continue; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4371 | } |
| 4372 | else { |
Antoine Pitrou | 78edf75 | 2011-11-15 01:44:16 +0100 | [diff] [blame] | 4373 | if (unicode_putchar(&unicode, &outpos, surrogate) < 0) |
| 4374 | goto onError; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4375 | surrogate = 0; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4376 | } |
| 4377 | } |
Victor Stinner | 551ac95 | 2011-11-29 22:58:13 +0100 | [diff] [blame] | 4378 | if (Py_UNICODE_IS_HIGH_SURROGATE(outCh)) { |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4379 | /* first surrogate */ |
| 4380 | surrogate = outCh; |
| 4381 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4382 | else { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4383 | if (unicode_putchar(&unicode, &outpos, outCh) < 0) |
| 4384 | goto onError; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4385 | } |
| 4386 | } |
| 4387 | } |
| 4388 | else { /* now leaving a base-64 section */ |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4389 | inShift = 0; |
| 4390 | s++; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4391 | if (surrogate) { |
Antoine Pitrou | 78edf75 | 2011-11-15 01:44:16 +0100 | [diff] [blame] | 4392 | if (unicode_putchar(&unicode, &outpos, surrogate) < 0) |
| 4393 | goto onError; |
Antoine Pitrou | 5418ee0 | 2011-11-15 01:42:21 +0100 | [diff] [blame] | 4394 | surrogate = 0; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4395 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4396 | if (base64bits > 0) { /* left-over bits */ |
| 4397 | if (base64bits >= 6) { |
| 4398 | /* We've seen at least one base-64 character */ |
| 4399 | errmsg = "partial character in shift sequence"; |
| 4400 | goto utf7Error; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4401 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4402 | else { |
| 4403 | /* Some bits remain; they should be zero */ |
| 4404 | if (base64buffer != 0) { |
| 4405 | errmsg = "non-zero padding bits in shift sequence"; |
| 4406 | goto utf7Error; |
| 4407 | } |
| 4408 | } |
| 4409 | } |
| 4410 | if (ch != '-') { |
| 4411 | /* '-' is absorbed; other terminating |
| 4412 | characters are preserved */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4413 | if (unicode_putchar(&unicode, &outpos, ch) < 0) |
| 4414 | goto onError; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4415 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4416 | } |
| 4417 | } |
| 4418 | else if ( ch == '+' ) { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4419 | startinpos = s-starts; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4420 | s++; /* consume '+' */ |
| 4421 | if (s < e && *s == '-') { /* '+-' encodes '+' */ |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4422 | s++; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4423 | if (unicode_putchar(&unicode, &outpos, '+') < 0) |
| 4424 | goto onError; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4425 | } |
| 4426 | else { /* begin base64-encoded section */ |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4427 | inShift = 1; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4428 | shiftOutStart = outpos; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4429 | base64bits = 0; |
Serhiy Storchaka | 35804e4 | 2013-10-19 20:38:19 +0300 | [diff] [blame] | 4430 | base64buffer = 0; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4431 | } |
| 4432 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4433 | else if (DECODE_DIRECT(ch)) { /* character decodes as itself */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4434 | if (unicode_putchar(&unicode, &outpos, ch) < 0) |
| 4435 | goto onError; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4436 | s++; |
| 4437 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4438 | else { |
| 4439 | startinpos = s-starts; |
| 4440 | s++; |
| 4441 | errmsg = "unexpected special character"; |
| 4442 | goto utf7Error; |
| 4443 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4444 | continue; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4445 | utf7Error: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4446 | endinpos = s-starts; |
| 4447 | if (unicode_decode_call_errorhandler( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4448 | errors, &errorHandler, |
| 4449 | "utf7", errmsg, |
| 4450 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4451 | &unicode, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4452 | goto onError; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4453 | } |
| 4454 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4455 | /* end of string */ |
| 4456 | |
| 4457 | if (inShift && !consumed) { /* in shift sequence, no more to follow */ |
| 4458 | /* if we're in an inconsistent state, that's an error */ |
| 4459 | if (surrogate || |
| 4460 | (base64bits >= 6) || |
| 4461 | (base64bits > 0 && base64buffer != 0)) { |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4462 | endinpos = size; |
| 4463 | if (unicode_decode_call_errorhandler( |
| 4464 | errors, &errorHandler, |
| 4465 | "utf7", "unterminated shift sequence", |
| 4466 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4467 | &unicode, &outpos)) |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4468 | goto onError; |
| 4469 | if (s < e) |
| 4470 | goto restart; |
| 4471 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4472 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4473 | |
| 4474 | /* return state */ |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 4475 | if (consumed) { |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4476 | if (inShift) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4477 | outpos = shiftOutStart; /* back off output */ |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 4478 | *consumed = startinpos; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4479 | } |
| 4480 | else { |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 4481 | *consumed = s-starts; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4482 | } |
Christian Heimes | 5d14c2b | 2007-11-20 23:38:09 +0000 | [diff] [blame] | 4483 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4484 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 4485 | if (unicode_resize(&unicode, outpos) < 0) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4486 | goto onError; |
| 4487 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4488 | Py_XDECREF(errorHandler); |
| 4489 | Py_XDECREF(exc); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 4490 | return unicode_result(unicode); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4491 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4492 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 4493 | Py_XDECREF(errorHandler); |
| 4494 | Py_XDECREF(exc); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4495 | Py_DECREF(unicode); |
| 4496 | return NULL; |
| 4497 | } |
| 4498 | |
| 4499 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4500 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4501 | _PyUnicode_EncodeUTF7(PyObject *str, |
| 4502 | int base64SetO, |
| 4503 | int base64WhiteSpace, |
| 4504 | const char *errors) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4505 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4506 | int kind; |
| 4507 | void *data; |
| 4508 | Py_ssize_t len; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 4509 | PyObject *v; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4510 | int inShift = 0; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4511 | Py_ssize_t i; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4512 | unsigned int base64bits = 0; |
| 4513 | unsigned long base64buffer = 0; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4514 | char * out; |
| 4515 | char * start; |
| 4516 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 4517 | if (PyUnicode_READY(str) == -1) |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4518 | return NULL; |
| 4519 | kind = PyUnicode_KIND(str); |
| 4520 | data = PyUnicode_DATA(str); |
| 4521 | len = PyUnicode_GET_LENGTH(str); |
| 4522 | |
| 4523 | if (len == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4524 | return PyBytes_FromStringAndSize(NULL, 0); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4525 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4526 | /* It might be possible to tighten this worst case */ |
Mark Dickinson | c04ddff | 2012-10-06 18:04:49 +0100 | [diff] [blame] | 4527 | if (len > PY_SSIZE_T_MAX / 8) |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 4528 | return PyErr_NoMemory(); |
Mark Dickinson | c04ddff | 2012-10-06 18:04:49 +0100 | [diff] [blame] | 4529 | v = PyBytes_FromStringAndSize(NULL, len * 8); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4530 | if (v == NULL) |
| 4531 | return NULL; |
| 4532 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 4533 | start = out = PyBytes_AS_STRING(v); |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4534 | for (i = 0; i < len; ++i) { |
Victor Stinner | 0e36826 | 2011-11-10 20:12:49 +0100 | [diff] [blame] | 4535 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4536 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4537 | if (inShift) { |
| 4538 | if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) { |
| 4539 | /* shifting out */ |
| 4540 | if (base64bits) { /* output remaining bits */ |
| 4541 | *out++ = TO_BASE64(base64buffer << (6-base64bits)); |
| 4542 | base64buffer = 0; |
| 4543 | base64bits = 0; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4544 | } |
| 4545 | inShift = 0; |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4546 | /* Characters not in the BASE64 set implicitly unshift the sequence |
| 4547 | so no '-' is required, except if the character is itself a '-' */ |
| 4548 | if (IS_BASE64(ch) || ch == '-') { |
| 4549 | *out++ = '-'; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4550 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4551 | *out++ = (char) ch; |
| 4552 | } |
| 4553 | else { |
| 4554 | goto encode_char; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 4555 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4556 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4557 | else { /* not in a shift sequence */ |
| 4558 | if (ch == '+') { |
| 4559 | *out++ = '+'; |
| 4560 | *out++ = '-'; |
| 4561 | } |
| 4562 | else if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) { |
| 4563 | *out++ = (char) ch; |
| 4564 | } |
| 4565 | else { |
| 4566 | *out++ = '+'; |
| 4567 | inShift = 1; |
| 4568 | goto encode_char; |
| 4569 | } |
| 4570 | } |
| 4571 | continue; |
| 4572 | encode_char: |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4573 | if (ch >= 0x10000) { |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 4574 | assert(ch <= MAX_UNICODE); |
Victor Stinner | 0d3721d | 2011-11-22 03:27:53 +0100 | [diff] [blame] | 4575 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4576 | /* code first surrogate */ |
| 4577 | base64bits += 16; |
| 4578 | base64buffer = (base64buffer << 16) | 0xd800 | ((ch-0x10000) >> 10); |
| 4579 | while (base64bits >= 6) { |
| 4580 | *out++ = TO_BASE64(base64buffer >> (base64bits-6)); |
| 4581 | base64bits -= 6; |
| 4582 | } |
| 4583 | /* prepare second surrogate */ |
Victor Stinner | 551ac95 | 2011-11-29 22:58:13 +0100 | [diff] [blame] | 4584 | ch = Py_UNICODE_LOW_SURROGATE(ch); |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4585 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4586 | base64bits += 16; |
| 4587 | base64buffer = (base64buffer << 16) | ch; |
| 4588 | while (base64bits >= 6) { |
| 4589 | *out++ = TO_BASE64(base64buffer >> (base64bits-6)); |
| 4590 | base64bits -= 6; |
| 4591 | } |
Hye-Shik Chang | 1bc09b7 | 2004-01-03 19:35:43 +0000 | [diff] [blame] | 4592 | } |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4593 | if (base64bits) |
| 4594 | *out++= TO_BASE64(base64buffer << (6-base64bits) ); |
| 4595 | if (inShift) |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4596 | *out++ = '-'; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 4597 | if (_PyBytes_Resize(&v, out - start) < 0) |
| 4598 | return NULL; |
| 4599 | return v; |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4600 | } |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4601 | PyObject * |
| 4602 | PyUnicode_EncodeUTF7(const Py_UNICODE *s, |
| 4603 | Py_ssize_t size, |
| 4604 | int base64SetO, |
| 4605 | int base64WhiteSpace, |
| 4606 | const char *errors) |
| 4607 | { |
| 4608 | PyObject *result; |
| 4609 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 4610 | if (tmp == NULL) |
| 4611 | return NULL; |
Victor Stinner | 0e36826 | 2011-11-10 20:12:49 +0100 | [diff] [blame] | 4612 | result = _PyUnicode_EncodeUTF7(tmp, base64SetO, |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 4613 | base64WhiteSpace, errors); |
| 4614 | Py_DECREF(tmp); |
| 4615 | return result; |
| 4616 | } |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4617 | |
Antoine Pitrou | 244651a | 2009-05-04 18:56:13 +0000 | [diff] [blame] | 4618 | #undef IS_BASE64 |
| 4619 | #undef FROM_BASE64 |
| 4620 | #undef TO_BASE64 |
| 4621 | #undef DECODE_DIRECT |
| 4622 | #undef ENCODE_DIRECT |
Marc-André Lemburg | c60e6f7 | 2001-09-20 10:35:46 +0000 | [diff] [blame] | 4623 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4624 | /* --- UTF-8 Codec -------------------------------------------------------- */ |
| 4625 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4626 | PyObject * |
| 4627 | PyUnicode_DecodeUTF8(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 4628 | Py_ssize_t size, |
| 4629 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4630 | { |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 4631 | return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); |
| 4632 | } |
| 4633 | |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4634 | #include "stringlib/asciilib.h" |
| 4635 | #include "stringlib/codecs.h" |
| 4636 | #include "stringlib/undef.h" |
| 4637 | |
Antoine Pitrou | 0a3229d | 2011-11-21 20:39:13 +0100 | [diff] [blame] | 4638 | #include "stringlib/ucs1lib.h" |
| 4639 | #include "stringlib/codecs.h" |
| 4640 | #include "stringlib/undef.h" |
| 4641 | |
| 4642 | #include "stringlib/ucs2lib.h" |
| 4643 | #include "stringlib/codecs.h" |
| 4644 | #include "stringlib/undef.h" |
| 4645 | |
| 4646 | #include "stringlib/ucs4lib.h" |
| 4647 | #include "stringlib/codecs.h" |
| 4648 | #include "stringlib/undef.h" |
| 4649 | |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4650 | /* Mask to quickly check whether a C 'long' contains a |
| 4651 | non-ASCII, UTF8-encoded char. */ |
| 4652 | #if (SIZEOF_LONG == 8) |
Mark Dickinson | 01ac8b6 | 2012-07-07 14:08:48 +0200 | [diff] [blame] | 4653 | # define ASCII_CHAR_MASK 0x8080808080808080UL |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4654 | #elif (SIZEOF_LONG == 4) |
Mark Dickinson | 01ac8b6 | 2012-07-07 14:08:48 +0200 | [diff] [blame] | 4655 | # define ASCII_CHAR_MASK 0x80808080UL |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4656 | #else |
| 4657 | # error C 'long' size should be either 4 or 8! |
| 4658 | #endif |
| 4659 | |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4660 | static Py_ssize_t |
| 4661 | ascii_decode(const char *start, const char *end, Py_UCS1 *dest) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4662 | { |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4663 | const char *p = start; |
Antoine Pitrou | ca8aa4a | 2012-09-20 20:56:47 +0200 | [diff] [blame] | 4664 | const char *aligned_end = (const char *) _Py_ALIGN_DOWN(end, SIZEOF_LONG); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4665 | |
Antoine Pitrou | 8b0e984 | 2013-05-11 15:58:34 +0200 | [diff] [blame] | 4666 | /* |
| 4667 | * Issue #17237: m68k is a bit different from most architectures in |
| 4668 | * that objects do not use "natural alignment" - for example, int and |
| 4669 | * long are only aligned at 2-byte boundaries. Therefore the assert() |
| 4670 | * won't work; also, tests have shown that skipping the "optimised |
| 4671 | * version" will even speed up m68k. |
| 4672 | */ |
| 4673 | #if !defined(__m68k__) |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4674 | #if SIZEOF_LONG <= SIZEOF_VOID_P |
Antoine Pitrou | ca8aa4a | 2012-09-20 20:56:47 +0200 | [diff] [blame] | 4675 | assert(_Py_IS_ALIGNED(dest, SIZEOF_LONG)); |
| 4676 | if (_Py_IS_ALIGNED(p, SIZEOF_LONG)) { |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4677 | /* Fast path, see in STRINGLIB(utf8_decode) for |
| 4678 | an explanation. */ |
| 4679 | /* Help register allocation */ |
| 4680 | register const char *_p = p; |
| 4681 | register Py_UCS1 * q = dest; |
| 4682 | while (_p < aligned_end) { |
| 4683 | unsigned long value = *(const unsigned long *) _p; |
| 4684 | if (value & ASCII_CHAR_MASK) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4685 | break; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4686 | *((unsigned long *)q) = value; |
| 4687 | _p += SIZEOF_LONG; |
| 4688 | q += SIZEOF_LONG; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 4689 | } |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4690 | p = _p; |
| 4691 | while (p < end) { |
| 4692 | if ((unsigned char)*p & 0x80) |
| 4693 | break; |
| 4694 | *q++ = *p++; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4695 | } |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4696 | return p - start; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4697 | } |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4698 | #endif |
Antoine Pitrou | 8b0e984 | 2013-05-11 15:58:34 +0200 | [diff] [blame] | 4699 | #endif |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4700 | while (p < end) { |
| 4701 | /* Fast path, see in STRINGLIB(utf8_decode) in stringlib/codecs.h |
| 4702 | for an explanation. */ |
Antoine Pitrou | ca8aa4a | 2012-09-20 20:56:47 +0200 | [diff] [blame] | 4703 | if (_Py_IS_ALIGNED(p, SIZEOF_LONG)) { |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4704 | /* Help register allocation */ |
| 4705 | register const char *_p = p; |
| 4706 | while (_p < aligned_end) { |
| 4707 | unsigned long value = *(unsigned long *) _p; |
| 4708 | if (value & ASCII_CHAR_MASK) |
| 4709 | break; |
| 4710 | _p += SIZEOF_LONG; |
| 4711 | } |
| 4712 | p = _p; |
| 4713 | if (_p == end) |
| 4714 | break; |
| 4715 | } |
| 4716 | if ((unsigned char)*p & 0x80) |
| 4717 | break; |
| 4718 | ++p; |
| 4719 | } |
| 4720 | memcpy(dest, start, p - start); |
| 4721 | return p - start; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4722 | } |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4723 | |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4724 | PyObject * |
| 4725 | PyUnicode_DecodeUTF8Stateful(const char *s, |
| 4726 | Py_ssize_t size, |
| 4727 | const char *errors, |
| 4728 | Py_ssize_t *consumed) |
| 4729 | { |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4730 | PyObject *unicode; |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4731 | const char *starts = s; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4732 | const char *end = s + size; |
| 4733 | Py_ssize_t outpos; |
| 4734 | |
| 4735 | Py_ssize_t startinpos; |
| 4736 | Py_ssize_t endinpos; |
| 4737 | const char *errmsg = ""; |
| 4738 | PyObject *errorHandler = NULL; |
| 4739 | PyObject *exc = NULL; |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4740 | |
| 4741 | if (size == 0) { |
| 4742 | if (consumed) |
| 4743 | *consumed = 0; |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 4744 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4745 | } |
| 4746 | |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4747 | /* ASCII is equivalent to the first 128 ordinals in Unicode. */ |
| 4748 | if (size == 1 && (unsigned char)s[0] < 128) { |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4749 | if (consumed) |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4750 | *consumed = 1; |
| 4751 | return get_latin1_char((unsigned char)s[0]); |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4752 | } |
| 4753 | |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4754 | unicode = PyUnicode_New(size, 127); |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4755 | if (!unicode) |
| 4756 | return NULL; |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4757 | |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4758 | outpos = ascii_decode(s, end, PyUnicode_1BYTE_DATA(unicode)); |
| 4759 | s += outpos; |
| 4760 | while (s < end) { |
| 4761 | Py_UCS4 ch; |
| 4762 | int kind = PyUnicode_KIND(unicode); |
| 4763 | if (kind == PyUnicode_1BYTE_KIND) { |
| 4764 | if (PyUnicode_IS_ASCII(unicode)) |
| 4765 | ch = asciilib_utf8_decode(&s, end, |
| 4766 | PyUnicode_1BYTE_DATA(unicode), &outpos); |
| 4767 | else |
| 4768 | ch = ucs1lib_utf8_decode(&s, end, |
| 4769 | PyUnicode_1BYTE_DATA(unicode), &outpos); |
| 4770 | } else if (kind == PyUnicode_2BYTE_KIND) { |
| 4771 | ch = ucs2lib_utf8_decode(&s, end, |
| 4772 | PyUnicode_2BYTE_DATA(unicode), &outpos); |
| 4773 | } else { |
| 4774 | assert(kind == PyUnicode_4BYTE_KIND); |
| 4775 | ch = ucs4lib_utf8_decode(&s, end, |
| 4776 | PyUnicode_4BYTE_DATA(unicode), &outpos); |
| 4777 | } |
| 4778 | |
| 4779 | switch (ch) { |
| 4780 | case 0: |
| 4781 | if (s == end || consumed) |
| 4782 | goto End; |
| 4783 | errmsg = "unexpected end of data"; |
| 4784 | startinpos = s - starts; |
Ezio Melotti | f7ed5d1 | 2012-11-04 23:21:38 +0200 | [diff] [blame] | 4785 | endinpos = end - starts; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4786 | break; |
| 4787 | case 1: |
| 4788 | errmsg = "invalid start byte"; |
| 4789 | startinpos = s - starts; |
| 4790 | endinpos = startinpos + 1; |
| 4791 | break; |
| 4792 | case 2: |
Ezio Melotti | f7ed5d1 | 2012-11-04 23:21:38 +0200 | [diff] [blame] | 4793 | case 3: |
| 4794 | case 4: |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4795 | errmsg = "invalid continuation byte"; |
| 4796 | startinpos = s - starts; |
Ezio Melotti | f7ed5d1 | 2012-11-04 23:21:38 +0200 | [diff] [blame] | 4797 | endinpos = startinpos + ch - 1; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4798 | break; |
| 4799 | default: |
| 4800 | if (unicode_putchar(&unicode, &outpos, ch) < 0) |
| 4801 | goto onError; |
| 4802 | continue; |
| 4803 | } |
| 4804 | |
| 4805 | if (unicode_decode_call_errorhandler( |
| 4806 | errors, &errorHandler, |
| 4807 | "utf-8", errmsg, |
| 4808 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
| 4809 | &unicode, &outpos)) |
| 4810 | goto onError; |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4811 | } |
| 4812 | |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4813 | End: |
| 4814 | if (unicode_resize(&unicode, outpos) < 0) |
| 4815 | goto onError; |
| 4816 | |
| 4817 | if (consumed) |
| 4818 | *consumed = s - starts; |
| 4819 | |
| 4820 | Py_XDECREF(errorHandler); |
| 4821 | Py_XDECREF(exc); |
| 4822 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
| 4823 | return unicode; |
| 4824 | |
| 4825 | onError: |
| 4826 | Py_XDECREF(errorHandler); |
| 4827 | Py_XDECREF(exc); |
| 4828 | Py_XDECREF(unicode); |
| 4829 | return NULL; |
Victor Stinner | 785938e | 2011-12-11 20:09:03 +0100 | [diff] [blame] | 4830 | } |
| 4831 | |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4832 | #ifdef __APPLE__ |
| 4833 | |
| 4834 | /* Simplified UTF-8 decoder using surrogateescape error handler, |
Victor Stinner | 27b1ca2 | 2012-12-03 12:47:59 +0100 | [diff] [blame] | 4835 | used to decode the command line arguments on Mac OS X. |
| 4836 | |
| 4837 | Return a pointer to a newly allocated wide character string (use |
| 4838 | PyMem_Free() to free the memory), or NULL on memory allocation error. */ |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4839 | |
| 4840 | wchar_t* |
| 4841 | _Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size) |
| 4842 | { |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4843 | const char *e; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4844 | wchar_t *unicode; |
| 4845 | Py_ssize_t outpos; |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4846 | |
| 4847 | /* Note: size will always be longer than the resulting Unicode |
| 4848 | character count */ |
Victor Stinner | 27b1ca2 | 2012-12-03 12:47:59 +0100 | [diff] [blame] | 4849 | if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1)) |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4850 | return NULL; |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4851 | unicode = PyMem_Malloc((size + 1) * sizeof(wchar_t)); |
| 4852 | if (!unicode) |
| 4853 | return NULL; |
| 4854 | |
| 4855 | /* Unpack UTF-8 encoded data */ |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4856 | e = s + size; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4857 | outpos = 0; |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4858 | while (s < e) { |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4859 | Py_UCS4 ch; |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4860 | #if SIZEOF_WCHAR_T == 4 |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4861 | ch = ucs4lib_utf8_decode(&s, e, (Py_UCS4 *)unicode, &outpos); |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4862 | #else |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4863 | ch = ucs2lib_utf8_decode(&s, e, (Py_UCS2 *)unicode, &outpos); |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4864 | #endif |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4865 | if (ch > 0xFF) { |
| 4866 | #if SIZEOF_WCHAR_T == 4 |
| 4867 | assert(0); |
| 4868 | #else |
| 4869 | assert(Py_UNICODE_IS_SURROGATE(ch)); |
| 4870 | /* compute and append the two surrogates: */ |
| 4871 | unicode[outpos++] = (wchar_t)Py_UNICODE_HIGH_SURROGATE(ch); |
| 4872 | unicode[outpos++] = (wchar_t)Py_UNICODE_LOW_SURROGATE(ch); |
| 4873 | #endif |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4874 | } |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4875 | else { |
| 4876 | if (!ch && s == e) |
| 4877 | break; |
| 4878 | /* surrogateescape */ |
| 4879 | unicode[outpos++] = 0xDC00 + (unsigned char)*s++; |
| 4880 | } |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4881 | } |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 4882 | unicode[outpos] = L'\0'; |
Victor Stinner | f933e1a | 2010-10-20 22:58:25 +0000 | [diff] [blame] | 4883 | return unicode; |
| 4884 | } |
| 4885 | |
| 4886 | #endif /* __APPLE__ */ |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 4887 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4888 | /* Primary internal function which creates utf8 encoded bytes objects. |
| 4889 | |
| 4890 | Allocation strategy: if the string is short, convert into a stack buffer |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4891 | and allocate exactly as much space needed at the end. Else allocate the |
| 4892 | maximum possible needed (4 result bytes per Unicode character), and return |
| 4893 | the excess memory at the end. |
Martin v. Löwis | 2a7ff35 | 2002-04-21 09:59:45 +0000 | [diff] [blame] | 4894 | */ |
Tim Peters | 7e3d961 | 2002-04-21 03:26:37 +0000 | [diff] [blame] | 4895 | PyObject * |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4896 | _PyUnicode_AsUTF8String(PyObject *unicode, const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4897 | { |
Victor Stinner | 6099a03 | 2011-12-18 14:22:26 +0100 | [diff] [blame] | 4898 | enum PyUnicode_Kind kind; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4899 | void *data; |
| 4900 | Py_ssize_t size; |
Marc-André Lemburg | bd3be8f | 2002-02-07 11:33:49 +0000 | [diff] [blame] | 4901 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4902 | if (!PyUnicode_Check(unicode)) { |
| 4903 | PyErr_BadArgument(); |
| 4904 | return NULL; |
| 4905 | } |
| 4906 | |
| 4907 | if (PyUnicode_READY(unicode) == -1) |
| 4908 | return NULL; |
| 4909 | |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 4910 | if (PyUnicode_UTF8(unicode)) |
| 4911 | return PyBytes_FromStringAndSize(PyUnicode_UTF8(unicode), |
| 4912 | PyUnicode_UTF8_LENGTH(unicode)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4913 | |
| 4914 | kind = PyUnicode_KIND(unicode); |
| 4915 | data = PyUnicode_DATA(unicode); |
| 4916 | size = PyUnicode_GET_LENGTH(unicode); |
| 4917 | |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 4918 | switch (kind) { |
Victor Stinner | 6099a03 | 2011-12-18 14:22:26 +0100 | [diff] [blame] | 4919 | default: |
| 4920 | assert(0); |
| 4921 | case PyUnicode_1BYTE_KIND: |
| 4922 | /* the string cannot be ASCII, or PyUnicode_UTF8() would be set */ |
| 4923 | assert(!PyUnicode_IS_ASCII(unicode)); |
| 4924 | return ucs1lib_utf8_encoder(unicode, data, size, errors); |
| 4925 | case PyUnicode_2BYTE_KIND: |
| 4926 | return ucs2lib_utf8_encoder(unicode, data, size, errors); |
| 4927 | case PyUnicode_4BYTE_KIND: |
| 4928 | return ucs4lib_utf8_encoder(unicode, data, size, errors); |
Tim Peters | 602f740 | 2002-04-27 18:03:26 +0000 | [diff] [blame] | 4929 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4930 | } |
| 4931 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4932 | PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4933 | PyUnicode_EncodeUTF8(const Py_UNICODE *s, |
| 4934 | Py_ssize_t size, |
| 4935 | const char *errors) |
| 4936 | { |
| 4937 | PyObject *v, *unicode; |
| 4938 | |
| 4939 | unicode = PyUnicode_FromUnicode(s, size); |
| 4940 | if (unicode == NULL) |
| 4941 | return NULL; |
| 4942 | v = _PyUnicode_AsUTF8String(unicode, errors); |
| 4943 | Py_DECREF(unicode); |
| 4944 | return v; |
| 4945 | } |
| 4946 | |
| 4947 | PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 4948 | PyUnicode_AsUTF8String(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4949 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 4950 | return _PyUnicode_AsUTF8String(unicode, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 4951 | } |
| 4952 | |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4953 | /* --- UTF-32 Codec ------------------------------------------------------- */ |
| 4954 | |
| 4955 | PyObject * |
| 4956 | PyUnicode_DecodeUTF32(const char *s, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4957 | Py_ssize_t size, |
| 4958 | const char *errors, |
| 4959 | int *byteorder) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4960 | { |
| 4961 | return PyUnicode_DecodeUTF32Stateful(s, size, errors, byteorder, NULL); |
| 4962 | } |
| 4963 | |
| 4964 | PyObject * |
| 4965 | PyUnicode_DecodeUTF32Stateful(const char *s, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 4966 | Py_ssize_t size, |
| 4967 | const char *errors, |
| 4968 | int *byteorder, |
| 4969 | Py_ssize_t *consumed) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4970 | { |
| 4971 | const char *starts = s; |
| 4972 | Py_ssize_t startinpos; |
| 4973 | Py_ssize_t endinpos; |
| 4974 | Py_ssize_t outpos; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 4975 | PyObject *unicode; |
Mark Dickinson | 7db923c | 2010-06-12 09:10:14 +0000 | [diff] [blame] | 4976 | const unsigned char *q, *e; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4977 | int bo = 0; /* assume native ordering by default */ |
| 4978 | const char *errmsg = ""; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4979 | /* Offsets from q for retrieving bytes in the right order. */ |
| 4980 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
| 4981 | int iorder[] = {0, 1, 2, 3}; |
| 4982 | #else |
| 4983 | int iorder[] = {3, 2, 1, 0}; |
| 4984 | #endif |
| 4985 | PyObject *errorHandler = NULL; |
| 4986 | PyObject *exc = NULL; |
Victor Stinner | 313a120 | 2010-06-11 23:56:51 +0000 | [diff] [blame] | 4987 | |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 4988 | q = (unsigned char *)s; |
| 4989 | e = q + size; |
| 4990 | |
| 4991 | if (byteorder) |
| 4992 | bo = *byteorder; |
| 4993 | |
| 4994 | /* Check for BOM marks (U+FEFF) in the input and adjust current |
| 4995 | byte order setting accordingly. In native mode, the leading BOM |
| 4996 | mark is skipped, in all other modes, it is copied to the output |
| 4997 | stream as-is (giving a ZWNBSP character). */ |
| 4998 | if (bo == 0) { |
| 4999 | if (size >= 4) { |
| 5000 | const Py_UCS4 bom = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5001 | (q[iorder[1]] << 8) | q[iorder[0]]; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5002 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5003 | if (bom == 0x0000FEFF) { |
| 5004 | q += 4; |
| 5005 | bo = -1; |
| 5006 | } |
| 5007 | else if (bom == 0xFFFE0000) { |
| 5008 | q += 4; |
| 5009 | bo = 1; |
| 5010 | } |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5011 | #else |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5012 | if (bom == 0x0000FEFF) { |
| 5013 | q += 4; |
| 5014 | bo = 1; |
| 5015 | } |
| 5016 | else if (bom == 0xFFFE0000) { |
| 5017 | q += 4; |
| 5018 | bo = -1; |
| 5019 | } |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5020 | #endif |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5021 | } |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5022 | } |
| 5023 | |
| 5024 | if (bo == -1) { |
| 5025 | /* force LE */ |
| 5026 | iorder[0] = 0; |
| 5027 | iorder[1] = 1; |
| 5028 | iorder[2] = 2; |
| 5029 | iorder[3] = 3; |
| 5030 | } |
| 5031 | else if (bo == 1) { |
| 5032 | /* force BE */ |
| 5033 | iorder[0] = 3; |
| 5034 | iorder[1] = 2; |
| 5035 | iorder[2] = 1; |
| 5036 | iorder[3] = 0; |
| 5037 | } |
| 5038 | |
Antoine Pitrou | cc0cfd3 | 2010-06-11 21:46:32 +0000 | [diff] [blame] | 5039 | /* This might be one to much, because of a BOM */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5040 | unicode = PyUnicode_New((size+3)/4, 127); |
Antoine Pitrou | cc0cfd3 | 2010-06-11 21:46:32 +0000 | [diff] [blame] | 5041 | if (!unicode) |
| 5042 | return NULL; |
| 5043 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5044 | return unicode; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5045 | outpos = 0; |
Antoine Pitrou | cc0cfd3 | 2010-06-11 21:46:32 +0000 | [diff] [blame] | 5046 | |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5047 | while (q < e) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5048 | Py_UCS4 ch; |
| 5049 | /* remaining bytes at the end? (size should be divisible by 4) */ |
| 5050 | if (e-q<4) { |
| 5051 | if (consumed) |
| 5052 | break; |
| 5053 | errmsg = "truncated data"; |
| 5054 | startinpos = ((const char *)q)-starts; |
| 5055 | endinpos = ((const char *)e)-starts; |
| 5056 | goto utf32Error; |
| 5057 | /* The remaining input chars are ignored if the callback |
| 5058 | chooses to skip the input */ |
| 5059 | } |
| 5060 | ch = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) | |
| 5061 | (q[iorder[1]] << 8) | q[iorder[0]]; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5062 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5063 | if (ch >= 0x110000) |
| 5064 | { |
| 5065 | errmsg = "codepoint not in range(0x110000)"; |
| 5066 | startinpos = ((const char *)q)-starts; |
| 5067 | endinpos = startinpos+4; |
| 5068 | goto utf32Error; |
| 5069 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5070 | if (unicode_putchar(&unicode, &outpos, ch) < 0) |
| 5071 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5072 | q += 4; |
| 5073 | continue; |
| 5074 | utf32Error: |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5075 | if (unicode_decode_call_errorhandler( |
| 5076 | errors, &errorHandler, |
| 5077 | "utf32", errmsg, |
| 5078 | &starts, (const char **)&e, &startinpos, &endinpos, &exc, (const char **)&q, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5079 | &unicode, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5080 | goto onError; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5081 | } |
| 5082 | |
| 5083 | if (byteorder) |
| 5084 | *byteorder = bo; |
| 5085 | |
| 5086 | if (consumed) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5087 | *consumed = (const char *)q-starts; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5088 | |
| 5089 | /* Adjust length */ |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 5090 | if (unicode_resize(&unicode, outpos) < 0) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5091 | goto onError; |
| 5092 | |
| 5093 | Py_XDECREF(errorHandler); |
| 5094 | Py_XDECREF(exc); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 5095 | return unicode_result(unicode); |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5096 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5097 | onError: |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5098 | Py_DECREF(unicode); |
| 5099 | Py_XDECREF(errorHandler); |
| 5100 | Py_XDECREF(exc); |
| 5101 | return NULL; |
| 5102 | } |
| 5103 | |
| 5104 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5105 | _PyUnicode_EncodeUTF32(PyObject *str, |
| 5106 | const char *errors, |
| 5107 | int byteorder) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5108 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5109 | int kind; |
| 5110 | void *data; |
| 5111 | Py_ssize_t len; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5112 | PyObject *v; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5113 | unsigned char *p; |
Mark Dickinson | c04ddff | 2012-10-06 18:04:49 +0100 | [diff] [blame] | 5114 | Py_ssize_t nsize, i; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5115 | /* Offsets from p for storing byte pairs in the right order. */ |
| 5116 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
| 5117 | int iorder[] = {0, 1, 2, 3}; |
| 5118 | #else |
| 5119 | int iorder[] = {3, 2, 1, 0}; |
| 5120 | #endif |
| 5121 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5122 | #define STORECHAR(CH) \ |
| 5123 | do { \ |
| 5124 | p[iorder[3]] = ((CH) >> 24) & 0xff; \ |
| 5125 | p[iorder[2]] = ((CH) >> 16) & 0xff; \ |
| 5126 | p[iorder[1]] = ((CH) >> 8) & 0xff; \ |
| 5127 | p[iorder[0]] = (CH) & 0xff; \ |
| 5128 | p += 4; \ |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5129 | } while(0) |
| 5130 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5131 | if (!PyUnicode_Check(str)) { |
| 5132 | PyErr_BadArgument(); |
| 5133 | return NULL; |
| 5134 | } |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 5135 | if (PyUnicode_READY(str) == -1) |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5136 | return NULL; |
| 5137 | kind = PyUnicode_KIND(str); |
| 5138 | data = PyUnicode_DATA(str); |
| 5139 | len = PyUnicode_GET_LENGTH(str); |
| 5140 | |
| 5141 | nsize = len + (byteorder == 0); |
Mark Dickinson | c04ddff | 2012-10-06 18:04:49 +0100 | [diff] [blame] | 5142 | if (nsize > PY_SSIZE_T_MAX / 4) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5143 | return PyErr_NoMemory(); |
Mark Dickinson | c04ddff | 2012-10-06 18:04:49 +0100 | [diff] [blame] | 5144 | v = PyBytes_FromStringAndSize(NULL, nsize * 4); |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5145 | if (v == NULL) |
| 5146 | return NULL; |
| 5147 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5148 | p = (unsigned char *)PyBytes_AS_STRING(v); |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5149 | if (byteorder == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5150 | STORECHAR(0xFEFF); |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5151 | if (len == 0) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 5152 | goto done; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5153 | |
| 5154 | if (byteorder == -1) { |
| 5155 | /* force LE */ |
| 5156 | iorder[0] = 0; |
| 5157 | iorder[1] = 1; |
| 5158 | iorder[2] = 2; |
| 5159 | iorder[3] = 3; |
| 5160 | } |
| 5161 | else if (byteorder == 1) { |
| 5162 | /* force BE */ |
| 5163 | iorder[0] = 3; |
| 5164 | iorder[1] = 2; |
| 5165 | iorder[2] = 1; |
| 5166 | iorder[3] = 0; |
| 5167 | } |
| 5168 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5169 | for (i = 0; i < len; i++) |
| 5170 | STORECHAR(PyUnicode_READ(kind, data, i)); |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 5171 | |
| 5172 | done: |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5173 | return v; |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5174 | #undef STORECHAR |
| 5175 | } |
| 5176 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5177 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5178 | PyUnicode_EncodeUTF32(const Py_UNICODE *s, |
| 5179 | Py_ssize_t size, |
| 5180 | const char *errors, |
| 5181 | int byteorder) |
| 5182 | { |
| 5183 | PyObject *result; |
| 5184 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 5185 | if (tmp == NULL) |
| 5186 | return NULL; |
| 5187 | result = _PyUnicode_EncodeUTF32(tmp, errors, byteorder); |
| 5188 | Py_DECREF(tmp); |
| 5189 | return result; |
| 5190 | } |
| 5191 | |
| 5192 | PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5193 | PyUnicode_AsUTF32String(PyObject *unicode) |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5194 | { |
Victor Stinner | b960b34 | 2011-11-20 19:12:52 +0100 | [diff] [blame] | 5195 | return _PyUnicode_EncodeUTF32(unicode, NULL, 0); |
Walter Dörwald | 41980ca | 2007-08-16 21:55:45 +0000 | [diff] [blame] | 5196 | } |
| 5197 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5198 | /* --- UTF-16 Codec ------------------------------------------------------- */ |
| 5199 | |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5200 | PyObject * |
| 5201 | PyUnicode_DecodeUTF16(const char *s, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5202 | Py_ssize_t size, |
| 5203 | const char *errors, |
| 5204 | int *byteorder) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5205 | { |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5206 | return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL); |
| 5207 | } |
| 5208 | |
| 5209 | PyObject * |
| 5210 | PyUnicode_DecodeUTF16Stateful(const char *s, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5211 | Py_ssize_t size, |
| 5212 | const char *errors, |
| 5213 | int *byteorder, |
| 5214 | Py_ssize_t *consumed) |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5215 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5216 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 5217 | Py_ssize_t startinpos; |
| 5218 | Py_ssize_t endinpos; |
| 5219 | Py_ssize_t outpos; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5220 | PyObject *unicode; |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5221 | const unsigned char *q, *e; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5222 | int bo = 0; /* assume native ordering by default */ |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5223 | int native_ordering; |
Marc-André Lemburg | 9542f48 | 2000-07-17 18:23:13 +0000 | [diff] [blame] | 5224 | const char *errmsg = ""; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5225 | PyObject *errorHandler = NULL; |
| 5226 | PyObject *exc = NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5227 | |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5228 | q = (unsigned char *)s; |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5229 | e = q + size; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5230 | |
| 5231 | if (byteorder) |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5232 | bo = *byteorder; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5233 | |
Marc-André Lemburg | 489b56e | 2001-05-21 20:30:15 +0000 | [diff] [blame] | 5234 | /* Check for BOM marks (U+FEFF) in the input and adjust current |
| 5235 | byte order setting accordingly. In native mode, the leading BOM |
| 5236 | mark is skipped, in all other modes, it is copied to the output |
| 5237 | stream as-is (giving a ZWNBSP character). */ |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5238 | if (bo == 0 && size >= 2) { |
| 5239 | const Py_UCS4 bom = (q[1] << 8) | q[0]; |
| 5240 | if (bom == 0xFEFF) { |
| 5241 | q += 2; |
| 5242 | bo = -1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5243 | } |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5244 | else if (bom == 0xFFFE) { |
| 5245 | q += 2; |
| 5246 | bo = 1; |
| 5247 | } |
| 5248 | if (byteorder) |
| 5249 | *byteorder = bo; |
Marc-André Lemburg | 489b56e | 2001-05-21 20:30:15 +0000 | [diff] [blame] | 5250 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5251 | |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5252 | if (q == e) { |
| 5253 | if (consumed) |
| 5254 | *consumed = size; |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 5255 | _Py_RETURN_UNICODE_EMPTY(); |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5256 | } |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5257 | |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5258 | #ifdef BYTEORDER_IS_LITTLE_ENDIAN |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5259 | native_ordering = bo <= 0; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5260 | #else |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5261 | native_ordering = bo >= 0; |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5262 | #endif |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5263 | |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5264 | /* Note: size will always be longer than the resulting Unicode |
| 5265 | character count */ |
| 5266 | unicode = PyUnicode_New((e - q + 1) / 2, 127); |
| 5267 | if (!unicode) |
| 5268 | return NULL; |
| 5269 | |
| 5270 | outpos = 0; |
| 5271 | while (1) { |
| 5272 | Py_UCS4 ch = 0; |
| 5273 | if (e - q >= 2) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5274 | int kind = PyUnicode_KIND(unicode); |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5275 | if (kind == PyUnicode_1BYTE_KIND) { |
| 5276 | if (PyUnicode_IS_ASCII(unicode)) |
| 5277 | ch = asciilib_utf16_decode(&q, e, |
| 5278 | PyUnicode_1BYTE_DATA(unicode), &outpos, |
| 5279 | native_ordering); |
| 5280 | else |
| 5281 | ch = ucs1lib_utf16_decode(&q, e, |
| 5282 | PyUnicode_1BYTE_DATA(unicode), &outpos, |
| 5283 | native_ordering); |
| 5284 | } else if (kind == PyUnicode_2BYTE_KIND) { |
| 5285 | ch = ucs2lib_utf16_decode(&q, e, |
| 5286 | PyUnicode_2BYTE_DATA(unicode), &outpos, |
| 5287 | native_ordering); |
| 5288 | } else { |
| 5289 | assert(kind == PyUnicode_4BYTE_KIND); |
| 5290 | ch = ucs4lib_utf16_decode(&q, e, |
| 5291 | PyUnicode_4BYTE_DATA(unicode), &outpos, |
| 5292 | native_ordering); |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5293 | } |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5294 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5295 | |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5296 | switch (ch) |
| 5297 | { |
| 5298 | case 0: |
| 5299 | /* remaining byte at the end? (size should be even) */ |
| 5300 | if (q == e || consumed) |
| 5301 | goto End; |
| 5302 | errmsg = "truncated data"; |
| 5303 | startinpos = ((const char *)q) - starts; |
| 5304 | endinpos = ((const char *)e) - starts; |
| 5305 | break; |
| 5306 | /* The remaining input chars are ignored if the callback |
| 5307 | chooses to skip the input */ |
| 5308 | case 1: |
Serhiy Storchaka | 48e188e | 2013-01-08 23:14:24 +0200 | [diff] [blame] | 5309 | q -= 2; |
| 5310 | if (consumed) |
Serhiy Storchaka | ae3b32a | 2013-01-08 23:40:52 +0200 | [diff] [blame] | 5311 | goto End; |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5312 | errmsg = "unexpected end of data"; |
Serhiy Storchaka | 48e188e | 2013-01-08 23:14:24 +0200 | [diff] [blame] | 5313 | startinpos = ((const char *)q) - starts; |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5314 | endinpos = ((const char *)e) - starts; |
| 5315 | break; |
| 5316 | case 2: |
| 5317 | errmsg = "illegal encoding"; |
| 5318 | startinpos = ((const char *)q) - 2 - starts; |
| 5319 | endinpos = startinpos + 2; |
| 5320 | break; |
| 5321 | case 3: |
| 5322 | errmsg = "illegal UTF-16 surrogate"; |
| 5323 | startinpos = ((const char *)q) - 4 - starts; |
| 5324 | endinpos = startinpos + 2; |
| 5325 | break; |
| 5326 | default: |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5327 | if (unicode_putchar(&unicode, &outpos, ch) < 0) |
| 5328 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5329 | continue; |
| 5330 | } |
| 5331 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5332 | if (unicode_decode_call_errorhandler( |
Antoine Pitrou | ab86831 | 2009-01-10 15:40:25 +0000 | [diff] [blame] | 5333 | errors, |
| 5334 | &errorHandler, |
| 5335 | "utf16", errmsg, |
| 5336 | &starts, |
| 5337 | (const char **)&e, |
| 5338 | &startinpos, |
| 5339 | &endinpos, |
| 5340 | &exc, |
| 5341 | (const char **)&q, |
| 5342 | &unicode, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5343 | &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5344 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5345 | } |
| 5346 | |
Antoine Pitrou | 63065d7 | 2012-05-15 23:48:04 +0200 | [diff] [blame] | 5347 | End: |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5348 | if (consumed) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5349 | *consumed = (const char *)q-starts; |
Walter Dörwald | 6965203 | 2004-09-07 20:24:22 +0000 | [diff] [blame] | 5350 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5351 | /* Adjust length */ |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 5352 | if (unicode_resize(&unicode, outpos) < 0) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5353 | goto onError; |
| 5354 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5355 | Py_XDECREF(errorHandler); |
| 5356 | Py_XDECREF(exc); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 5357 | return unicode_result(unicode); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5358 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5359 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5360 | Py_DECREF(unicode); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5361 | Py_XDECREF(errorHandler); |
| 5362 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5363 | return NULL; |
| 5364 | } |
| 5365 | |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5366 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5367 | _PyUnicode_EncodeUTF16(PyObject *str, |
| 5368 | const char *errors, |
| 5369 | int byteorder) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5370 | { |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5371 | enum PyUnicode_Kind kind; |
| 5372 | const void *data; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5373 | Py_ssize_t len; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5374 | PyObject *v; |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5375 | unsigned short *out; |
| 5376 | Py_ssize_t bytesize; |
| 5377 | Py_ssize_t pairs; |
| 5378 | #ifdef WORDS_BIGENDIAN |
| 5379 | int native_ordering = byteorder >= 0; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5380 | #else |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5381 | int native_ordering = byteorder <= 0; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5382 | #endif |
| 5383 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5384 | if (!PyUnicode_Check(str)) { |
| 5385 | PyErr_BadArgument(); |
| 5386 | return NULL; |
| 5387 | } |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 5388 | if (PyUnicode_READY(str) == -1) |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5389 | return NULL; |
| 5390 | kind = PyUnicode_KIND(str); |
| 5391 | data = PyUnicode_DATA(str); |
| 5392 | len = PyUnicode_GET_LENGTH(str); |
Victor Stinner | 0e36826 | 2011-11-10 20:12:49 +0100 | [diff] [blame] | 5393 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5394 | pairs = 0; |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5395 | if (kind == PyUnicode_4BYTE_KIND) { |
| 5396 | const Py_UCS4 *in = (const Py_UCS4 *)data; |
| 5397 | const Py_UCS4 *end = in + len; |
| 5398 | while (in < end) |
| 5399 | if (*in++ >= 0x10000) |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5400 | pairs++; |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5401 | } |
| 5402 | if (len > PY_SSIZE_T_MAX / 2 - pairs - (byteorder == 0)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5403 | return PyErr_NoMemory(); |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5404 | bytesize = (len + pairs + (byteorder == 0)) * 2; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5405 | v = PyBytes_FromStringAndSize(NULL, bytesize); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5406 | if (v == NULL) |
| 5407 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5408 | |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5409 | /* output buffer is 2-bytes aligned */ |
Antoine Pitrou | ca8aa4a | 2012-09-20 20:56:47 +0200 | [diff] [blame] | 5410 | assert(_Py_IS_ALIGNED(PyBytes_AS_STRING(v), 2)); |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5411 | out = (unsigned short *)PyBytes_AS_STRING(v); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5412 | if (byteorder == 0) |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5413 | *out++ = 0xFEFF; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5414 | if (len == 0) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 5415 | goto done; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5416 | |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5417 | switch (kind) { |
| 5418 | case PyUnicode_1BYTE_KIND: { |
| 5419 | ucs1lib_utf16_encode(out, (const Py_UCS1 *)data, len, native_ordering); |
| 5420 | break; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5421 | } |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5422 | case PyUnicode_2BYTE_KIND: { |
| 5423 | ucs2lib_utf16_encode(out, (const Py_UCS2 *)data, len, native_ordering); |
| 5424 | break; |
Tim Peters | 772747b | 2001-08-09 22:21:55 +0000 | [diff] [blame] | 5425 | } |
Antoine Pitrou | 27f6a3b | 2012-06-15 22:15:23 +0200 | [diff] [blame] | 5426 | case PyUnicode_4BYTE_KIND: { |
| 5427 | ucs4lib_utf16_encode(out, (const Py_UCS4 *)data, len, native_ordering); |
| 5428 | break; |
| 5429 | } |
| 5430 | default: |
| 5431 | assert(0); |
Martin v. Löwis | 0ba70cc | 2001-06-26 22:22:37 +0000 | [diff] [blame] | 5432 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 5433 | |
| 5434 | done: |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5435 | return v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5436 | } |
| 5437 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5438 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5439 | PyUnicode_EncodeUTF16(const Py_UNICODE *s, |
| 5440 | Py_ssize_t size, |
| 5441 | const char *errors, |
| 5442 | int byteorder) |
| 5443 | { |
| 5444 | PyObject *result; |
| 5445 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 5446 | if (tmp == NULL) |
| 5447 | return NULL; |
| 5448 | result = _PyUnicode_EncodeUTF16(tmp, errors, byteorder); |
| 5449 | Py_DECREF(tmp); |
| 5450 | return result; |
| 5451 | } |
| 5452 | |
| 5453 | PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5454 | PyUnicode_AsUTF16String(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5455 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5456 | return _PyUnicode_EncodeUTF16(unicode, NULL, 0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5457 | } |
| 5458 | |
| 5459 | /* --- Unicode Escape Codec ----------------------------------------------- */ |
| 5460 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5461 | /* Helper function for PyUnicode_DecodeUnicodeEscape, determines |
| 5462 | if all the escapes in the string make it still a valid ASCII string. |
| 5463 | Returns -1 if any escapes were found which cause the string to |
| 5464 | pop out of ASCII range. Otherwise returns the length of the |
| 5465 | required buffer to hold the string. |
| 5466 | */ |
Antoine Pitrou | 53bb548 | 2011-10-10 23:49:24 +0200 | [diff] [blame] | 5467 | static Py_ssize_t |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5468 | length_of_escaped_ascii_string(const char *s, Py_ssize_t size) |
| 5469 | { |
| 5470 | const unsigned char *p = (const unsigned char *)s; |
| 5471 | const unsigned char *end = p + size; |
| 5472 | Py_ssize_t length = 0; |
| 5473 | |
| 5474 | if (size < 0) |
| 5475 | return -1; |
| 5476 | |
| 5477 | for (; p < end; ++p) { |
| 5478 | if (*p > 127) { |
| 5479 | /* Non-ASCII */ |
| 5480 | return -1; |
| 5481 | } |
| 5482 | else if (*p != '\\') { |
| 5483 | /* Normal character */ |
| 5484 | ++length; |
| 5485 | } |
| 5486 | else { |
| 5487 | /* Backslash-escape, check next char */ |
| 5488 | ++p; |
| 5489 | /* Escape sequence reaches till end of string or |
| 5490 | non-ASCII follow-up. */ |
| 5491 | if (p >= end || *p > 127) |
| 5492 | return -1; |
| 5493 | switch (*p) { |
| 5494 | case '\n': |
| 5495 | /* backslash + \n result in zero characters */ |
| 5496 | break; |
| 5497 | case '\\': case '\'': case '\"': |
| 5498 | case 'b': case 'f': case 't': |
| 5499 | case 'n': case 'r': case 'v': case 'a': |
| 5500 | ++length; |
| 5501 | break; |
| 5502 | case '0': case '1': case '2': case '3': |
| 5503 | case '4': case '5': case '6': case '7': |
| 5504 | case 'x': case 'u': case 'U': case 'N': |
| 5505 | /* these do not guarantee ASCII characters */ |
| 5506 | return -1; |
| 5507 | default: |
| 5508 | /* count the backslash + the other character */ |
| 5509 | length += 2; |
| 5510 | } |
| 5511 | } |
| 5512 | } |
| 5513 | return length; |
| 5514 | } |
| 5515 | |
Fredrik Lundh | 06d1268 | 2001-01-24 07:59:11 +0000 | [diff] [blame] | 5516 | static _PyUnicode_Name_CAPI *ucnhash_CAPI = NULL; |
Marc-André Lemburg | 0f774e3 | 2000-06-28 16:43:35 +0000 | [diff] [blame] | 5517 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5518 | PyObject * |
| 5519 | PyUnicode_DecodeUnicodeEscape(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 5520 | Py_ssize_t size, |
Victor Stinner | c17f540 | 2011-09-29 00:16:58 +0200 | [diff] [blame] | 5521 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5522 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5523 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 5524 | Py_ssize_t startinpos; |
| 5525 | Py_ssize_t endinpos; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5526 | PyObject *v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5527 | const char *end; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5528 | char* message; |
| 5529 | Py_UCS4 chr = 0xffffffff; /* in case 'getcode' messes up */ |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5530 | PyObject *errorHandler = NULL; |
| 5531 | PyObject *exc = NULL; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5532 | Py_ssize_t len; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5533 | Py_ssize_t i; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5534 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5535 | len = length_of_escaped_ascii_string(s, size); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5536 | |
| 5537 | /* After length_of_escaped_ascii_string() there are two alternatives, |
| 5538 | either the string is pure ASCII with named escapes like \n, etc. |
| 5539 | and we determined it's exact size (common case) |
| 5540 | or it contains \x, \u, ... escape sequences. then we create a |
| 5541 | 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] | 5542 | if (len >= 0) { |
| 5543 | v = PyUnicode_New(len, 127); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5544 | if (!v) |
| 5545 | goto onError; |
| 5546 | assert(PyUnicode_KIND(v) == PyUnicode_1BYTE_KIND); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5547 | } |
| 5548 | else { |
| 5549 | /* Escaped strings will always be longer than the resulting |
| 5550 | Unicode string, so we start with size here and then reduce the |
| 5551 | length after conversion to the true value. |
| 5552 | (but if the error callback returns a long replacement string |
| 5553 | we'll have to allocate more space) */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5554 | v = PyUnicode_New(size, 127); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5555 | if (!v) |
| 5556 | goto onError; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5557 | len = size; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5558 | } |
| 5559 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5560 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5561 | return v; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5562 | i = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5563 | end = s + size; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5564 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5565 | while (s < end) { |
| 5566 | unsigned char c; |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 5567 | Py_UCS4 x; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5568 | int digits; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5569 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5570 | /* The only case in which i == ascii_length is a backslash |
| 5571 | followed by a newline. */ |
| 5572 | assert(i <= len); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5573 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5574 | /* Non-escape characters are interpreted as Unicode ordinals */ |
| 5575 | if (*s != '\\') { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5576 | if (unicode_putchar(&v, &i, (unsigned char) *s++) < 0) |
| 5577 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5578 | continue; |
| 5579 | } |
| 5580 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5581 | startinpos = s-starts; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5582 | /* \ - Escapes */ |
| 5583 | s++; |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5584 | c = *s++; |
| 5585 | if (s > end) |
| 5586 | c = '\0'; /* Invalid after \ */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5587 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5588 | /* The only case in which i == ascii_length is a backslash |
| 5589 | followed by a newline. */ |
| 5590 | assert(i < len || (i == len && c == '\n')); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5591 | |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5592 | switch (c) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5593 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5594 | /* \x escapes */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5595 | #define WRITECHAR(ch) \ |
| 5596 | do { \ |
| 5597 | if (unicode_putchar(&v, &i, ch) < 0) \ |
| 5598 | goto onError; \ |
| 5599 | }while(0) |
| 5600 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5601 | case '\n': break; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5602 | case '\\': WRITECHAR('\\'); break; |
| 5603 | case '\'': WRITECHAR('\''); break; |
| 5604 | case '\"': WRITECHAR('\"'); break; |
| 5605 | case 'b': WRITECHAR('\b'); break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5606 | /* FF */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5607 | case 'f': WRITECHAR('\014'); break; |
| 5608 | case 't': WRITECHAR('\t'); break; |
| 5609 | case 'n': WRITECHAR('\n'); break; |
| 5610 | case 'r': WRITECHAR('\r'); break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5611 | /* VT */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5612 | case 'v': WRITECHAR('\013'); break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5613 | /* BEL, not classic C */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5614 | case 'a': WRITECHAR('\007'); break; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5615 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5616 | /* \OOO (octal) escapes */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5617 | case '0': case '1': case '2': case '3': |
| 5618 | case '4': case '5': case '6': case '7': |
Guido van Rossum | 0e4f657 | 2000-05-01 21:27:20 +0000 | [diff] [blame] | 5619 | x = s[-1] - '0'; |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5620 | if (s < end && '0' <= *s && *s <= '7') { |
Guido van Rossum | 0e4f657 | 2000-05-01 21:27:20 +0000 | [diff] [blame] | 5621 | x = (x<<3) + *s++ - '0'; |
Guido van Rossum | 8ce8a78 | 2007-11-01 19:42:39 +0000 | [diff] [blame] | 5622 | if (s < end && '0' <= *s && *s <= '7') |
Guido van Rossum | 0e4f657 | 2000-05-01 21:27:20 +0000 | [diff] [blame] | 5623 | x = (x<<3) + *s++ - '0'; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5624 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5625 | WRITECHAR(x); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5626 | break; |
| 5627 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5628 | /* hex escapes */ |
| 5629 | /* \xXX */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5630 | case 'x': |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5631 | digits = 2; |
| 5632 | message = "truncated \\xXX escape"; |
| 5633 | goto hexescape; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5634 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5635 | /* \uXXXX */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5636 | case 'u': |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5637 | digits = 4; |
| 5638 | message = "truncated \\uXXXX escape"; |
| 5639 | goto hexescape; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5640 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5641 | /* \UXXXXXXXX */ |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5642 | case 'U': |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5643 | digits = 8; |
| 5644 | message = "truncated \\UXXXXXXXX escape"; |
| 5645 | hexescape: |
| 5646 | chr = 0; |
Serhiy Storchaka | d679377 | 2013-01-29 10:20:44 +0200 | [diff] [blame] | 5647 | if (end - s < digits) { |
| 5648 | /* count only hex digits */ |
| 5649 | for (; s < end; ++s) { |
| 5650 | c = (unsigned char)*s; |
| 5651 | if (!Py_ISXDIGIT(c)) |
| 5652 | goto error; |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5653 | } |
Serhiy Storchaka | d679377 | 2013-01-29 10:20:44 +0200 | [diff] [blame] | 5654 | goto error; |
| 5655 | } |
| 5656 | for (; digits--; ++s) { |
| 5657 | c = (unsigned char)*s; |
| 5658 | if (!Py_ISXDIGIT(c)) |
| 5659 | goto error; |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5660 | chr = (chr<<4) & ~0xF; |
| 5661 | if (c >= '0' && c <= '9') |
| 5662 | chr += c - '0'; |
| 5663 | else if (c >= 'a' && c <= 'f') |
| 5664 | chr += 10 + c - 'a'; |
| 5665 | else |
| 5666 | chr += 10 + c - 'A'; |
| 5667 | } |
Jeremy Hylton | 504de6b | 2003-10-06 05:08:26 +0000 | [diff] [blame] | 5668 | if (chr == 0xffffffff && PyErr_Occurred()) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5669 | /* _decoding_error will have already written into the |
| 5670 | target buffer. */ |
| 5671 | break; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5672 | store: |
Fredrik Lundh | df84675 | 2000-09-03 11:29:49 +0000 | [diff] [blame] | 5673 | /* when we get here, chr is a 32-bit unicode character */ |
Serhiy Storchaka | 24193de | 2013-01-29 10:28:07 +0200 | [diff] [blame] | 5674 | message = "illegal Unicode character"; |
| 5675 | if (chr > MAX_UNICODE) |
Serhiy Storchaka | d679377 | 2013-01-29 10:20:44 +0200 | [diff] [blame] | 5676 | goto error; |
Serhiy Storchaka | 24193de | 2013-01-29 10:28:07 +0200 | [diff] [blame] | 5677 | WRITECHAR(chr); |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5678 | break; |
| 5679 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5680 | /* \N{name} */ |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5681 | case 'N': |
| 5682 | message = "malformed \\N character escape"; |
| 5683 | if (ucnhash_CAPI == NULL) { |
| 5684 | /* load the unicode data module */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5685 | ucnhash_CAPI = (_PyUnicode_Name_CAPI *)PyCapsule_Import( |
| 5686 | PyUnicodeData_CAPSULE_NAME, 1); |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5687 | if (ucnhash_CAPI == NULL) |
| 5688 | goto ucnhashError; |
| 5689 | } |
| 5690 | if (*s == '{') { |
| 5691 | const char *start = s+1; |
| 5692 | /* look for the closing brace */ |
| 5693 | while (*s != '}' && s < end) |
| 5694 | s++; |
| 5695 | if (s > start && s < end && *s == '}') { |
| 5696 | /* found a name. look it up in the unicode database */ |
| 5697 | message = "unknown Unicode character name"; |
| 5698 | s++; |
Serhiy Storchaka | 4f5f0e5 | 2013-01-21 11:38:00 +0200 | [diff] [blame] | 5699 | if (s - start - 1 <= INT_MAX && |
Serhiy Storchaka | c35f3a9 | 2013-01-21 11:42:57 +0200 | [diff] [blame] | 5700 | ucnhash_CAPI->getcode(NULL, start, (int)(s-start-1), |
Ezio Melotti | 931b8aa | 2011-10-21 21:57:36 +0300 | [diff] [blame] | 5701 | &chr, 0)) |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5702 | goto store; |
| 5703 | } |
| 5704 | } |
Serhiy Storchaka | d679377 | 2013-01-29 10:20:44 +0200 | [diff] [blame] | 5705 | goto error; |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5706 | |
| 5707 | default: |
Walter Dörwald | 8c07722 | 2002-03-25 11:16:18 +0000 | [diff] [blame] | 5708 | if (s > end) { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5709 | message = "\\ at end of string"; |
| 5710 | s--; |
Serhiy Storchaka | d679377 | 2013-01-29 10:20:44 +0200 | [diff] [blame] | 5711 | goto error; |
Walter Dörwald | 8c07722 | 2002-03-25 11:16:18 +0000 | [diff] [blame] | 5712 | } |
| 5713 | else { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5714 | WRITECHAR('\\'); |
Serhiy Storchaka | 73e3880 | 2013-01-25 23:52:21 +0200 | [diff] [blame] | 5715 | WRITECHAR((unsigned char)s[-1]); |
Walter Dörwald | 8c07722 | 2002-03-25 11:16:18 +0000 | [diff] [blame] | 5716 | } |
Fredrik Lundh | ccc7473 | 2001-02-18 22:13:49 +0000 | [diff] [blame] | 5717 | break; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5718 | } |
Serhiy Storchaka | d679377 | 2013-01-29 10:20:44 +0200 | [diff] [blame] | 5719 | continue; |
| 5720 | |
| 5721 | error: |
| 5722 | endinpos = s-starts; |
Serhiy Storchaka | d679377 | 2013-01-29 10:20:44 +0200 | [diff] [blame] | 5723 | if (unicode_decode_call_errorhandler( |
| 5724 | errors, &errorHandler, |
| 5725 | "unicodeescape", message, |
| 5726 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Serhiy Storchaka | 24193de | 2013-01-29 10:28:07 +0200 | [diff] [blame] | 5727 | &v, &i)) |
Serhiy Storchaka | d679377 | 2013-01-29 10:20:44 +0200 | [diff] [blame] | 5728 | goto onError; |
Serhiy Storchaka | 24193de | 2013-01-29 10:28:07 +0200 | [diff] [blame] | 5729 | len = PyUnicode_GET_LENGTH(v); |
Serhiy Storchaka | d679377 | 2013-01-29 10:20:44 +0200 | [diff] [blame] | 5730 | continue; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5731 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5732 | #undef WRITECHAR |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5733 | |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 5734 | if (unicode_resize(&v, i) < 0) |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5735 | goto onError; |
Walter Dörwald | d4ade08 | 2003-08-15 15:00:26 +0000 | [diff] [blame] | 5736 | Py_XDECREF(errorHandler); |
| 5737 | Py_XDECREF(exc); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 5738 | return unicode_result(v); |
Walter Dörwald | 8c07722 | 2002-03-25 11:16:18 +0000 | [diff] [blame] | 5739 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5740 | ucnhashError: |
Fredrik Lundh | 06d1268 | 2001-01-24 07:59:11 +0000 | [diff] [blame] | 5741 | PyErr_SetString( |
| 5742 | PyExc_UnicodeError, |
| 5743 | "\\N escapes not supported (can't load unicodedata module)" |
| 5744 | ); |
Hye-Shik Chang | 4af5c8c | 2006-03-07 15:39:21 +0000 | [diff] [blame] | 5745 | Py_XDECREF(v); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5746 | Py_XDECREF(errorHandler); |
| 5747 | Py_XDECREF(exc); |
Fredrik Lundh | f605606 | 2001-01-20 11:15:25 +0000 | [diff] [blame] | 5748 | return NULL; |
| 5749 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5750 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5751 | Py_XDECREF(v); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5752 | Py_XDECREF(errorHandler); |
| 5753 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5754 | return NULL; |
| 5755 | } |
| 5756 | |
| 5757 | /* Return a Unicode-Escape string version of the Unicode object. |
| 5758 | |
| 5759 | If quotes is true, the string is enclosed in u"" or u'' quotes as |
| 5760 | appropriate. |
| 5761 | |
| 5762 | */ |
| 5763 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5764 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5765 | PyUnicode_AsUnicodeEscapeString(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5766 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5767 | Py_ssize_t i, len; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5768 | PyObject *repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5769 | char *p; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5770 | int kind; |
| 5771 | void *data; |
| 5772 | Py_ssize_t expandsize = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5773 | |
Ezio Melotti | e7f9037 | 2012-10-05 03:33:31 +0300 | [diff] [blame] | 5774 | /* Initial allocation is based on the longest-possible character |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 5775 | escape. |
| 5776 | |
Ezio Melotti | e7f9037 | 2012-10-05 03:33:31 +0300 | [diff] [blame] | 5777 | For UCS1 strings it's '\xxx', 4 bytes per source character. |
| 5778 | For UCS2 strings it's '\uxxxx', 6 bytes per source character. |
| 5779 | For UCS4 strings it's '\U00xxxxxx', 10 bytes per source character. |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 5780 | */ |
| 5781 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5782 | if (!PyUnicode_Check(unicode)) { |
| 5783 | PyErr_BadArgument(); |
| 5784 | return NULL; |
| 5785 | } |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 5786 | if (PyUnicode_READY(unicode) == -1) |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5787 | return NULL; |
| 5788 | len = PyUnicode_GET_LENGTH(unicode); |
| 5789 | kind = PyUnicode_KIND(unicode); |
| 5790 | data = PyUnicode_DATA(unicode); |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 5791 | switch (kind) { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5792 | case PyUnicode_1BYTE_KIND: expandsize = 4; break; |
| 5793 | case PyUnicode_2BYTE_KIND: expandsize = 6; break; |
| 5794 | case PyUnicode_4BYTE_KIND: expandsize = 10; break; |
| 5795 | } |
| 5796 | |
| 5797 | if (len == 0) |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5798 | return PyBytes_FromStringAndSize(NULL, 0); |
| 5799 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5800 | if (len > (PY_SSIZE_T_MAX - 2 - 1) / expandsize) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5801 | return PyErr_NoMemory(); |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 5802 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5803 | repr = PyBytes_FromStringAndSize(NULL, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5804 | 2 |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5805 | + expandsize*len |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5806 | + 1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5807 | if (repr == NULL) |
| 5808 | return NULL; |
| 5809 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5810 | p = PyBytes_AS_STRING(repr); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5811 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5812 | for (i = 0; i < len; i++) { |
Victor Stinner | 3326cb6 | 2011-11-10 20:15:25 +0100 | [diff] [blame] | 5813 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 5814 | |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 5815 | /* Escape backslashes */ |
| 5816 | if (ch == '\\') { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5817 | *p++ = '\\'; |
| 5818 | *p++ = (char) ch; |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 5819 | continue; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 5820 | } |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 5821 | |
Martin v. Löwis | 0ba70cc | 2001-06-26 22:22:37 +0000 | [diff] [blame] | 5822 | /* Map 21-bit characters to '\U00xxxxxx' */ |
| 5823 | else if (ch >= 0x10000) { |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 5824 | assert(ch <= MAX_UNICODE); |
Martin v. Löwis | 0ba70cc | 2001-06-26 22:22:37 +0000 | [diff] [blame] | 5825 | *p++ = '\\'; |
| 5826 | *p++ = 'U'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 5827 | *p++ = Py_hexdigits[(ch >> 28) & 0x0000000F]; |
| 5828 | *p++ = Py_hexdigits[(ch >> 24) & 0x0000000F]; |
| 5829 | *p++ = Py_hexdigits[(ch >> 20) & 0x0000000F]; |
| 5830 | *p++ = Py_hexdigits[(ch >> 16) & 0x0000000F]; |
| 5831 | *p++ = Py_hexdigits[(ch >> 12) & 0x0000000F]; |
| 5832 | *p++ = Py_hexdigits[(ch >> 8) & 0x0000000F]; |
| 5833 | *p++ = Py_hexdigits[(ch >> 4) & 0x0000000F]; |
| 5834 | *p++ = Py_hexdigits[ch & 0x0000000F]; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5835 | continue; |
Martin v. Löwis | 0ba70cc | 2001-06-26 22:22:37 +0000 | [diff] [blame] | 5836 | } |
Marc-André Lemburg | 6c6bfb7 | 2001-07-20 17:39:11 +0000 | [diff] [blame] | 5837 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5838 | /* Map 16-bit characters to '\uxxxx' */ |
Marc-André Lemburg | 6c6bfb7 | 2001-07-20 17:39:11 +0000 | [diff] [blame] | 5839 | if (ch >= 256) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5840 | *p++ = '\\'; |
| 5841 | *p++ = 'u'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 5842 | *p++ = Py_hexdigits[(ch >> 12) & 0x000F]; |
| 5843 | *p++ = Py_hexdigits[(ch >> 8) & 0x000F]; |
| 5844 | *p++ = Py_hexdigits[(ch >> 4) & 0x000F]; |
| 5845 | *p++ = Py_hexdigits[ch & 0x000F]; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5846 | } |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 5847 | |
Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 5848 | /* Map special whitespace to '\t', \n', '\r' */ |
| 5849 | else if (ch == '\t') { |
| 5850 | *p++ = '\\'; |
| 5851 | *p++ = 't'; |
| 5852 | } |
| 5853 | else if (ch == '\n') { |
| 5854 | *p++ = '\\'; |
| 5855 | *p++ = 'n'; |
| 5856 | } |
| 5857 | else if (ch == '\r') { |
| 5858 | *p++ = '\\'; |
| 5859 | *p++ = 'r'; |
| 5860 | } |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 5861 | |
Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 5862 | /* Map non-printable US ASCII to '\xhh' */ |
Marc-André Lemburg | 11326de | 2001-11-28 12:56:20 +0000 | [diff] [blame] | 5863 | else if (ch < ' ' || ch >= 0x7F) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5864 | *p++ = '\\'; |
Ka-Ping Yee | fa004ad | 2001-01-24 17:19:08 +0000 | [diff] [blame] | 5865 | *p++ = 'x'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 5866 | *p++ = Py_hexdigits[(ch >> 4) & 0x000F]; |
| 5867 | *p++ = Py_hexdigits[ch & 0x000F]; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 5868 | } |
Marc-André Lemburg | 80d1dd5 | 2001-07-25 16:05:59 +0000 | [diff] [blame] | 5869 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5870 | /* Copy everything else as-is */ |
| 5871 | else |
| 5872 | *p++ = (char) ch; |
| 5873 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5874 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 5875 | assert(p - PyBytes_AS_STRING(repr) > 0); |
| 5876 | if (_PyBytes_Resize(&repr, p - PyBytes_AS_STRING(repr)) < 0) |
| 5877 | return NULL; |
| 5878 | return repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5879 | } |
| 5880 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5881 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5882 | PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s, |
| 5883 | Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5884 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5885 | PyObject *result; |
| 5886 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 5887 | if (tmp == NULL) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5888 | return NULL; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 5889 | result = PyUnicode_AsUnicodeEscapeString(tmp); |
| 5890 | Py_DECREF(tmp); |
| 5891 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5892 | } |
| 5893 | |
| 5894 | /* --- Raw Unicode Escape Codec ------------------------------------------- */ |
| 5895 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 5896 | PyObject * |
| 5897 | PyUnicode_DecodeRawUnicodeEscape(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 5898 | Py_ssize_t size, |
| 5899 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5900 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5901 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 5902 | Py_ssize_t startinpos; |
| 5903 | Py_ssize_t endinpos; |
| 5904 | Py_ssize_t outpos; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5905 | PyObject *v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5906 | const char *end; |
| 5907 | const char *bs; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5908 | PyObject *errorHandler = NULL; |
| 5909 | PyObject *exc = NULL; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 5910 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5911 | /* Escaped strings will always be longer than the resulting |
| 5912 | 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] | 5913 | length after conversion to the true value. (But decoding error |
| 5914 | handler might have to resize the string) */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5915 | v = PyUnicode_New(size, 127); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5916 | if (v == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5917 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5918 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 5919 | return v; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5920 | outpos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5921 | end = s + size; |
| 5922 | while (s < end) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5923 | unsigned char c; |
| 5924 | Py_UCS4 x; |
| 5925 | int i; |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 5926 | int count; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5927 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5928 | /* Non-escape characters are interpreted as Unicode ordinals */ |
| 5929 | if (*s != '\\') { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5930 | if (unicode_putchar(&v, &outpos, (unsigned char)*s++) < 0) |
| 5931 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5932 | continue; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 5933 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5934 | startinpos = s-starts; |
| 5935 | |
| 5936 | /* \u-escapes are only interpreted iff the number of leading |
| 5937 | backslashes if odd */ |
| 5938 | bs = s; |
| 5939 | for (;s < end;) { |
| 5940 | if (*s != '\\') |
| 5941 | break; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5942 | if (unicode_putchar(&v, &outpos, (unsigned char)*s++) < 0) |
| 5943 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5944 | } |
| 5945 | if (((s - bs) & 1) == 0 || |
| 5946 | s >= end || |
| 5947 | (*s != 'u' && *s != 'U')) { |
| 5948 | continue; |
| 5949 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5950 | outpos--; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5951 | count = *s=='u' ? 4 : 8; |
| 5952 | s++; |
| 5953 | |
| 5954 | /* \uXXXX with 4 hex digits, \Uxxxxxxxx with 8 */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5955 | for (x = 0, i = 0; i < count; ++i, ++s) { |
| 5956 | c = (unsigned char)*s; |
David Malcolm | 9696088 | 2010-11-05 17:23:41 +0000 | [diff] [blame] | 5957 | if (!Py_ISXDIGIT(c)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5958 | endinpos = s-starts; |
| 5959 | if (unicode_decode_call_errorhandler( |
| 5960 | errors, &errorHandler, |
| 5961 | "rawunicodeescape", "truncated \\uXXXX", |
| 5962 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5963 | &v, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5964 | goto onError; |
| 5965 | goto nextByte; |
| 5966 | } |
| 5967 | x = (x<<4) & ~0xF; |
| 5968 | if (c >= '0' && c <= '9') |
| 5969 | x += c - '0'; |
| 5970 | else if (c >= 'a' && c <= 'f') |
| 5971 | x += 10 + c - 'a'; |
| 5972 | else |
| 5973 | x += 10 + c - 'A'; |
| 5974 | } |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 5975 | if (x <= MAX_UNICODE) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5976 | if (unicode_putchar(&v, &outpos, x) < 0) |
| 5977 | goto onError; |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 5978 | } else { |
| 5979 | endinpos = s-starts; |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 5980 | if (unicode_decode_call_errorhandler( |
| 5981 | errors, &errorHandler, |
| 5982 | "rawunicodeescape", "\\Uxxxxxxxx out of range", |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5983 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 5984 | &v, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5985 | goto onError; |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 5986 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5987 | nextByte: |
| 5988 | ; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5989 | } |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 5990 | if (unicode_resize(&v, outpos) < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5991 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5992 | Py_XDECREF(errorHandler); |
| 5993 | Py_XDECREF(exc); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 5994 | return unicode_result(v); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 5995 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 5996 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 5997 | Py_XDECREF(v); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 5998 | Py_XDECREF(errorHandler); |
| 5999 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6000 | return NULL; |
| 6001 | } |
| 6002 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6003 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6004 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6005 | PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6006 | { |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6007 | PyObject *repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6008 | char *p; |
| 6009 | char *q; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6010 | Py_ssize_t expandsize, pos; |
| 6011 | int kind; |
| 6012 | void *data; |
| 6013 | Py_ssize_t len; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6014 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6015 | if (!PyUnicode_Check(unicode)) { |
| 6016 | PyErr_BadArgument(); |
| 6017 | return NULL; |
| 6018 | } |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 6019 | if (PyUnicode_READY(unicode) == -1) |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6020 | return NULL; |
| 6021 | kind = PyUnicode_KIND(unicode); |
| 6022 | data = PyUnicode_DATA(unicode); |
| 6023 | len = PyUnicode_GET_LENGTH(unicode); |
Benjamin Peterson | 1518e87 | 2011-11-23 10:44:52 -0600 | [diff] [blame] | 6024 | /* 4 byte characters can take up 10 bytes, 2 byte characters can take up 6 |
| 6025 | bytes, and 1 byte characters 4. */ |
| 6026 | expandsize = kind * 2 + 2; |
Victor Stinner | 0e36826 | 2011-11-10 20:12:49 +0100 | [diff] [blame] | 6027 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6028 | if (len > PY_SSIZE_T_MAX / expandsize) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6029 | return PyErr_NoMemory(); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6030 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6031 | repr = PyBytes_FromStringAndSize(NULL, expandsize * len); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6032 | if (repr == NULL) |
| 6033 | return NULL; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6034 | if (len == 0) |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6035 | return repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6036 | |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6037 | p = q = PyBytes_AS_STRING(repr); |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6038 | for (pos = 0; pos < len; pos++) { |
| 6039 | Py_UCS4 ch = PyUnicode_READ(kind, data, pos); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6040 | /* Map 32-bit characters to '\Uxxxxxxxx' */ |
| 6041 | if (ch >= 0x10000) { |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 6042 | assert(ch <= MAX_UNICODE); |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 6043 | *p++ = '\\'; |
| 6044 | *p++ = 'U'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 6045 | *p++ = Py_hexdigits[(ch >> 28) & 0xf]; |
| 6046 | *p++ = Py_hexdigits[(ch >> 24) & 0xf]; |
| 6047 | *p++ = Py_hexdigits[(ch >> 20) & 0xf]; |
| 6048 | *p++ = Py_hexdigits[(ch >> 16) & 0xf]; |
| 6049 | *p++ = Py_hexdigits[(ch >> 12) & 0xf]; |
| 6050 | *p++ = Py_hexdigits[(ch >> 8) & 0xf]; |
| 6051 | *p++ = Py_hexdigits[(ch >> 4) & 0xf]; |
| 6052 | *p++ = Py_hexdigits[ch & 15]; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6053 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6054 | /* Map 16-bit characters to '\uxxxx' */ |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6055 | else if (ch >= 256) { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6056 | *p++ = '\\'; |
| 6057 | *p++ = 'u'; |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 6058 | *p++ = Py_hexdigits[(ch >> 12) & 0xf]; |
| 6059 | *p++ = Py_hexdigits[(ch >> 8) & 0xf]; |
| 6060 | *p++ = Py_hexdigits[(ch >> 4) & 0xf]; |
| 6061 | *p++ = Py_hexdigits[ch & 15]; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6062 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6063 | /* Copy everything else as-is */ |
| 6064 | else |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6065 | *p++ = (char) ch; |
| 6066 | } |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 6067 | |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6068 | assert(p > q); |
| 6069 | if (_PyBytes_Resize(&repr, p - q) < 0) |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6070 | return NULL; |
| 6071 | return repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6072 | } |
| 6073 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6074 | PyObject * |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6075 | PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s, |
| 6076 | Py_ssize_t size) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6077 | { |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6078 | PyObject *result; |
| 6079 | PyObject *tmp = PyUnicode_FromUnicode(s, size); |
| 6080 | if (tmp == NULL) |
Walter Dörwald | 711005d | 2007-05-12 12:03:26 +0000 | [diff] [blame] | 6081 | return NULL; |
Martin v. Löwis | 1db7c13 | 2011-11-10 18:24:32 +0100 | [diff] [blame] | 6082 | result = PyUnicode_AsRawUnicodeEscapeString(tmp); |
| 6083 | Py_DECREF(tmp); |
| 6084 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6085 | } |
| 6086 | |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6087 | /* --- Unicode Internal Codec ------------------------------------------- */ |
| 6088 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6089 | PyObject * |
| 6090 | _PyUnicode_DecodeUnicodeInternal(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6091 | Py_ssize_t size, |
| 6092 | const char *errors) |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6093 | { |
| 6094 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 6095 | Py_ssize_t startinpos; |
| 6096 | Py_ssize_t endinpos; |
| 6097 | Py_ssize_t outpos; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6098 | PyObject *v; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6099 | const char *end; |
| 6100 | const char *reason; |
| 6101 | PyObject *errorHandler = NULL; |
| 6102 | PyObject *exc = NULL; |
| 6103 | |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6104 | if (PyErr_WarnEx(PyExc_DeprecationWarning, |
Ezio Melotti | 11060a4 | 2011-11-16 09:39:10 +0200 | [diff] [blame] | 6105 | "unicode_internal codec has been deprecated", |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6106 | 1)) |
| 6107 | return NULL; |
| 6108 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 6109 | /* XXX overflow detection missing */ |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6110 | 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] | 6111 | if (v == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6112 | goto onError; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6113 | if (PyUnicode_GET_LENGTH(v) == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 6114 | return v; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6115 | outpos = 0; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6116 | end = s + size; |
| 6117 | |
| 6118 | while (s < end) { |
Antoine Pitrou | 0290c7a | 2011-11-11 13:29:12 +0100 | [diff] [blame] | 6119 | Py_UNICODE uch; |
Antoine Pitrou | 44c6aff | 2011-11-11 02:59:42 +0100 | [diff] [blame] | 6120 | Py_UCS4 ch; |
Serhiy Storchaka | 03ee12e | 2013-02-07 16:25:25 +0200 | [diff] [blame] | 6121 | if (end - s < Py_UNICODE_SIZE) { |
Serhiy Storchaka | 3fd4ab3 | 2013-02-07 16:23:21 +0200 | [diff] [blame] | 6122 | endinpos = end-starts; |
| 6123 | reason = "truncated input"; |
| 6124 | goto error; |
| 6125 | } |
Antoine Pitrou | 44c6aff | 2011-11-11 02:59:42 +0100 | [diff] [blame] | 6126 | /* We copy the raw representation one byte at a time because the |
| 6127 | pointer may be unaligned (see test_codeccallbacks). */ |
Antoine Pitrou | 0290c7a | 2011-11-11 13:29:12 +0100 | [diff] [blame] | 6128 | ((char *) &uch)[0] = s[0]; |
| 6129 | ((char *) &uch)[1] = s[1]; |
Antoine Pitrou | 44c6aff | 2011-11-11 02:59:42 +0100 | [diff] [blame] | 6130 | #ifdef Py_UNICODE_WIDE |
Antoine Pitrou | 0290c7a | 2011-11-11 13:29:12 +0100 | [diff] [blame] | 6131 | ((char *) &uch)[2] = s[2]; |
| 6132 | ((char *) &uch)[3] = s[3]; |
Antoine Pitrou | 44c6aff | 2011-11-11 02:59:42 +0100 | [diff] [blame] | 6133 | #endif |
Antoine Pitrou | 0290c7a | 2011-11-11 13:29:12 +0100 | [diff] [blame] | 6134 | ch = uch; |
Serhiy Storchaka | 3fd4ab3 | 2013-02-07 16:23:21 +0200 | [diff] [blame] | 6135 | #ifdef Py_UNICODE_WIDE |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6136 | /* We have to sanity check the raw data, otherwise doom looms for |
| 6137 | some malformed UCS-4 data. */ |
Serhiy Storchaka | 03ee12e | 2013-02-07 16:25:25 +0200 | [diff] [blame] | 6138 | if (ch > 0x10ffff) { |
Serhiy Storchaka | 3fd4ab3 | 2013-02-07 16:23:21 +0200 | [diff] [blame] | 6139 | endinpos = s - starts + Py_UNICODE_SIZE; |
| 6140 | reason = "illegal code point (> 0x10FFFF)"; |
| 6141 | goto error; |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6142 | } |
Serhiy Storchaka | 3fd4ab3 | 2013-02-07 16:23:21 +0200 | [diff] [blame] | 6143 | #endif |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6144 | s += Py_UNICODE_SIZE; |
| 6145 | #ifndef Py_UNICODE_WIDE |
Serhiy Storchaka | 03ee12e | 2013-02-07 16:25:25 +0200 | [diff] [blame] | 6146 | if (Py_UNICODE_IS_HIGH_SURROGATE(ch) && end - s >= Py_UNICODE_SIZE) |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6147 | { |
Antoine Pitrou | 0290c7a | 2011-11-11 13:29:12 +0100 | [diff] [blame] | 6148 | Py_UNICODE uch2; |
| 6149 | ((char *) &uch2)[0] = s[0]; |
| 6150 | ((char *) &uch2)[1] = s[1]; |
Victor Stinner | 551ac95 | 2011-11-29 22:58:13 +0100 | [diff] [blame] | 6151 | if (Py_UNICODE_IS_LOW_SURROGATE(uch2)) |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6152 | { |
Victor Stinner | 551ac95 | 2011-11-29 22:58:13 +0100 | [diff] [blame] | 6153 | ch = Py_UNICODE_JOIN_SURROGATES(uch, uch2); |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6154 | s += Py_UNICODE_SIZE; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6155 | } |
| 6156 | } |
Victor Stinner | 9f4b1e9 | 2011-11-10 20:56:30 +0100 | [diff] [blame] | 6157 | #endif |
| 6158 | |
| 6159 | if (unicode_putchar(&v, &outpos, ch) < 0) |
| 6160 | goto onError; |
Serhiy Storchaka | 3fd4ab3 | 2013-02-07 16:23:21 +0200 | [diff] [blame] | 6161 | continue; |
| 6162 | |
| 6163 | error: |
| 6164 | startinpos = s - starts; |
Serhiy Storchaka | 3fd4ab3 | 2013-02-07 16:23:21 +0200 | [diff] [blame] | 6165 | if (unicode_decode_call_errorhandler( |
| 6166 | errors, &errorHandler, |
| 6167 | "unicode_internal", reason, |
| 6168 | &starts, &end, &startinpos, &endinpos, &exc, &s, |
Serhiy Storchaka | 03ee12e | 2013-02-07 16:25:25 +0200 | [diff] [blame] | 6169 | &v, &outpos)) |
Serhiy Storchaka | 3fd4ab3 | 2013-02-07 16:23:21 +0200 | [diff] [blame] | 6170 | goto onError; |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6171 | } |
| 6172 | |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 6173 | if (unicode_resize(&v, outpos) < 0) |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6174 | goto onError; |
| 6175 | Py_XDECREF(errorHandler); |
| 6176 | Py_XDECREF(exc); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 6177 | return unicode_result(v); |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6178 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6179 | onError: |
Walter Dörwald | a47d1c0 | 2005-08-30 10:23:14 +0000 | [diff] [blame] | 6180 | Py_XDECREF(v); |
| 6181 | Py_XDECREF(errorHandler); |
| 6182 | Py_XDECREF(exc); |
| 6183 | return NULL; |
| 6184 | } |
| 6185 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6186 | /* --- Latin-1 Codec ------------------------------------------------------ */ |
| 6187 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6188 | PyObject * |
| 6189 | PyUnicode_DecodeLatin1(const char *s, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6190 | Py_ssize_t size, |
| 6191 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6192 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6193 | /* Latin-1 is equivalent to the first 256 ordinals in Unicode. */ |
Victor Stinner | e57b1c0 | 2011-09-28 22:20:48 +0200 | [diff] [blame] | 6194 | return _PyUnicode_FromUCS1((unsigned char*)s, size); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6195 | } |
| 6196 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6197 | /* create or adjust a UnicodeEncodeError */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6198 | static void |
| 6199 | make_encode_exception(PyObject **exceptionObject, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6200 | const char *encoding, |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 6201 | PyObject *unicode, |
| 6202 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 6203 | const char *reason) |
| 6204 | { |
| 6205 | if (*exceptionObject == NULL) { |
| 6206 | *exceptionObject = PyObject_CallFunction( |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6207 | PyExc_UnicodeEncodeError, "sOnns", |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 6208 | encoding, unicode, startpos, endpos, reason); |
| 6209 | } |
| 6210 | else { |
| 6211 | if (PyUnicodeEncodeError_SetStart(*exceptionObject, startpos)) |
| 6212 | goto onError; |
| 6213 | if (PyUnicodeEncodeError_SetEnd(*exceptionObject, endpos)) |
| 6214 | goto onError; |
| 6215 | if (PyUnicodeEncodeError_SetReason(*exceptionObject, reason)) |
| 6216 | goto onError; |
| 6217 | return; |
| 6218 | onError: |
| 6219 | Py_DECREF(*exceptionObject); |
| 6220 | *exceptionObject = NULL; |
| 6221 | } |
| 6222 | } |
| 6223 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6224 | /* raises a UnicodeEncodeError */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6225 | static void |
| 6226 | raise_encode_exception(PyObject **exceptionObject, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6227 | const char *encoding, |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 6228 | PyObject *unicode, |
| 6229 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 6230 | const char *reason) |
| 6231 | { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 6232 | make_encode_exception(exceptionObject, |
Martin v. Löwis | 9e81668 | 2011-11-02 12:45:42 +0100 | [diff] [blame] | 6233 | encoding, unicode, startpos, endpos, reason); |
| 6234 | if (*exceptionObject != NULL) |
| 6235 | PyCodec_StrictErrors(*exceptionObject); |
| 6236 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6237 | |
| 6238 | /* error handling callback helper: |
| 6239 | build arguments, call the callback and check the arguments, |
| 6240 | put the result into newpos and return the replacement string, which |
| 6241 | has to be freed by the caller */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6242 | static PyObject * |
| 6243 | unicode_encode_call_errorhandler(const char *errors, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6244 | PyObject **errorHandler, |
| 6245 | const char *encoding, const char *reason, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6246 | PyObject *unicode, PyObject **exceptionObject, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6247 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 6248 | Py_ssize_t *newpos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6249 | { |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6250 | 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] | 6251 | Py_ssize_t len; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6252 | PyObject *restuple; |
| 6253 | PyObject *resunicode; |
| 6254 | |
| 6255 | if (*errorHandler == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6256 | *errorHandler = PyCodec_LookupError(errors); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6257 | if (*errorHandler == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6258 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6259 | } |
| 6260 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 6261 | if (PyUnicode_READY(unicode) == -1) |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6262 | return NULL; |
| 6263 | len = PyUnicode_GET_LENGTH(unicode); |
| 6264 | |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 6265 | make_encode_exception(exceptionObject, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6266 | encoding, unicode, startpos, endpos, reason); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6267 | if (*exceptionObject == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6268 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6269 | |
| 6270 | restuple = PyObject_CallFunctionObjArgs( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6271 | *errorHandler, *exceptionObject, NULL); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6272 | if (restuple == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6273 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6274 | if (!PyTuple_Check(restuple)) { |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6275 | PyErr_SetString(PyExc_TypeError, &argparse[3]); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6276 | Py_DECREF(restuple); |
| 6277 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6278 | } |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6279 | if (!PyArg_ParseTuple(restuple, argparse, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6280 | &resunicode, newpos)) { |
| 6281 | Py_DECREF(restuple); |
| 6282 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6283 | } |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6284 | if (!PyUnicode_Check(resunicode) && !PyBytes_Check(resunicode)) { |
| 6285 | PyErr_SetString(PyExc_TypeError, &argparse[3]); |
| 6286 | Py_DECREF(restuple); |
| 6287 | return NULL; |
| 6288 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6289 | if (*newpos<0) |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6290 | *newpos = len + *newpos; |
| 6291 | if (*newpos<0 || *newpos>len) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6292 | PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos); |
| 6293 | Py_DECREF(restuple); |
| 6294 | return NULL; |
Walter Dörwald | 2e0b18a | 2003-01-31 17:19:08 +0000 | [diff] [blame] | 6295 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6296 | Py_INCREF(resunicode); |
| 6297 | Py_DECREF(restuple); |
| 6298 | return resunicode; |
| 6299 | } |
| 6300 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6301 | static PyObject * |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6302 | unicode_encode_ucs1(PyObject *unicode, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6303 | const char *errors, |
Victor Stinner | fcd9653 | 2011-11-04 00:28:50 +0100 | [diff] [blame] | 6304 | unsigned int limit) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6305 | { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6306 | /* input state */ |
| 6307 | Py_ssize_t pos=0, size; |
| 6308 | int kind; |
| 6309 | void *data; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6310 | /* output object */ |
| 6311 | PyObject *res; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6312 | /* pointer into the output */ |
| 6313 | char *str; |
| 6314 | /* current output position */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 6315 | Py_ssize_t ressize; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6316 | const char *encoding = (limit == 256) ? "latin-1" : "ascii"; |
| 6317 | 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] | 6318 | PyObject *errorHandler = NULL; |
| 6319 | PyObject *exc = NULL; |
| 6320 | /* the following variable is used for caching string comparisons |
| 6321 | * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */ |
| 6322 | int known_errorHandler = -1; |
| 6323 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 6324 | if (PyUnicode_READY(unicode) == -1) |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6325 | return NULL; |
| 6326 | size = PyUnicode_GET_LENGTH(unicode); |
| 6327 | kind = PyUnicode_KIND(unicode); |
| 6328 | data = PyUnicode_DATA(unicode); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6329 | /* allocate enough for a simple encoding without |
| 6330 | replacements, if we need more, we'll resize */ |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 6331 | if (size == 0) |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 6332 | return PyBytes_FromStringAndSize(NULL, 0); |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6333 | res = PyBytes_FromStringAndSize(NULL, size); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6334 | if (res == NULL) |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 6335 | return NULL; |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6336 | str = PyBytes_AS_STRING(res); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6337 | ressize = size; |
| 6338 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6339 | while (pos < size) { |
| 6340 | Py_UCS4 c = PyUnicode_READ(kind, data, pos); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6341 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6342 | /* can we encode this? */ |
| 6343 | if (c<limit) { |
| 6344 | /* no overflow check, because we know that the space is enough */ |
| 6345 | *str++ = (char)c; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6346 | ++pos; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6347 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6348 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6349 | Py_ssize_t requiredsize; |
| 6350 | PyObject *repunicode; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6351 | Py_ssize_t repsize, newpos, respos, i; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6352 | /* startpos for collecting unencodable chars */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6353 | Py_ssize_t collstart = pos; |
| 6354 | Py_ssize_t collend = pos; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6355 | /* find all unecodable characters */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6356 | while ((collend < size) && (PyUnicode_READ(kind, data, collend)>=limit)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6357 | ++collend; |
| 6358 | /* cache callback name lookup (if not done yet, i.e. it's the first error) */ |
| 6359 | if (known_errorHandler==-1) { |
| 6360 | if ((errors==NULL) || (!strcmp(errors, "strict"))) |
| 6361 | known_errorHandler = 1; |
| 6362 | else if (!strcmp(errors, "replace")) |
| 6363 | known_errorHandler = 2; |
| 6364 | else if (!strcmp(errors, "ignore")) |
| 6365 | known_errorHandler = 3; |
| 6366 | else if (!strcmp(errors, "xmlcharrefreplace")) |
| 6367 | known_errorHandler = 4; |
| 6368 | else |
| 6369 | known_errorHandler = 0; |
| 6370 | } |
| 6371 | switch (known_errorHandler) { |
| 6372 | case 1: /* strict */ |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 6373 | raise_encode_exception(&exc, encoding, unicode, collstart, collend, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6374 | goto onError; |
| 6375 | case 2: /* replace */ |
| 6376 | while (collstart++<collend) |
| 6377 | *str++ = '?'; /* fall through */ |
| 6378 | case 3: /* ignore */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6379 | pos = collend; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6380 | break; |
| 6381 | case 4: /* xmlcharrefreplace */ |
| 6382 | respos = str - PyBytes_AS_STRING(res); |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6383 | /* determine replacement size */ |
| 6384 | for (i = collstart, repsize = 0; i < collend; ++i) { |
| 6385 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 6386 | if (ch < 10) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6387 | repsize += 2+1+1; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6388 | else if (ch < 100) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6389 | repsize += 2+2+1; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6390 | else if (ch < 1000) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6391 | repsize += 2+3+1; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6392 | else if (ch < 10000) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6393 | repsize += 2+4+1; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6394 | else if (ch < 100000) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6395 | repsize += 2+5+1; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6396 | else if (ch < 1000000) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6397 | repsize += 2+6+1; |
Victor Stinner | 0d3721d | 2011-11-22 03:27:53 +0100 | [diff] [blame] | 6398 | else { |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 6399 | assert(ch <= MAX_UNICODE); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6400 | repsize += 2+7+1; |
Victor Stinner | 0d3721d | 2011-11-22 03:27:53 +0100 | [diff] [blame] | 6401 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6402 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6403 | requiredsize = respos+repsize+(size-collend); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6404 | if (requiredsize > ressize) { |
| 6405 | if (requiredsize<2*ressize) |
| 6406 | requiredsize = 2*ressize; |
| 6407 | if (_PyBytes_Resize(&res, requiredsize)) |
| 6408 | goto onError; |
| 6409 | str = PyBytes_AS_STRING(res) + respos; |
| 6410 | ressize = requiredsize; |
| 6411 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6412 | /* generate replacement */ |
| 6413 | for (i = collstart; i < collend; ++i) { |
| 6414 | str += sprintf(str, "&#%d;", PyUnicode_READ(kind, data, i)); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6415 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6416 | pos = collend; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6417 | break; |
| 6418 | default: |
| 6419 | repunicode = unicode_encode_call_errorhandler(errors, &errorHandler, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6420 | encoding, reason, unicode, &exc, |
| 6421 | collstart, collend, &newpos); |
| 6422 | if (repunicode == NULL || (PyUnicode_Check(repunicode) && |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 6423 | PyUnicode_READY(repunicode) == -1)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6424 | goto onError; |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 6425 | if (PyBytes_Check(repunicode)) { |
| 6426 | /* Directly copy bytes result to output. */ |
| 6427 | repsize = PyBytes_Size(repunicode); |
| 6428 | if (repsize > 1) { |
| 6429 | /* Make room for all additional bytes. */ |
Amaury Forgeot d'Arc | 84ec8d9 | 2009-06-29 22:36:49 +0000 | [diff] [blame] | 6430 | respos = str - PyBytes_AS_STRING(res); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 6431 | if (_PyBytes_Resize(&res, ressize+repsize-1)) { |
| 6432 | Py_DECREF(repunicode); |
| 6433 | goto onError; |
| 6434 | } |
Amaury Forgeot d'Arc | 84ec8d9 | 2009-06-29 22:36:49 +0000 | [diff] [blame] | 6435 | str = PyBytes_AS_STRING(res) + respos; |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 6436 | ressize += repsize-1; |
| 6437 | } |
| 6438 | memcpy(str, PyBytes_AsString(repunicode), repsize); |
| 6439 | str += repsize; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6440 | pos = newpos; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6441 | Py_DECREF(repunicode); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 6442 | break; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 6443 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6444 | /* need more space? (at least enough for what we |
| 6445 | have+the replacement+the rest of the string, so |
| 6446 | we won't have to check space for encodable characters) */ |
| 6447 | respos = str - PyBytes_AS_STRING(res); |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6448 | repsize = PyUnicode_GET_LENGTH(repunicode); |
| 6449 | requiredsize = respos+repsize+(size-collend); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6450 | if (requiredsize > ressize) { |
| 6451 | if (requiredsize<2*ressize) |
| 6452 | requiredsize = 2*ressize; |
| 6453 | if (_PyBytes_Resize(&res, requiredsize)) { |
| 6454 | Py_DECREF(repunicode); |
| 6455 | goto onError; |
| 6456 | } |
| 6457 | str = PyBytes_AS_STRING(res) + respos; |
| 6458 | ressize = requiredsize; |
| 6459 | } |
| 6460 | /* check if there is anything unencodable in the replacement |
| 6461 | and copy it to the output */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6462 | for (i = 0; repsize-->0; ++i, ++str) { |
| 6463 | c = PyUnicode_READ_CHAR(repunicode, i); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6464 | if (c >= limit) { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 6465 | raise_encode_exception(&exc, encoding, unicode, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6466 | pos, pos+1, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6467 | Py_DECREF(repunicode); |
| 6468 | goto onError; |
| 6469 | } |
| 6470 | *str = (char)c; |
| 6471 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6472 | pos = newpos; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6473 | Py_DECREF(repunicode); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6474 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 6475 | } |
| 6476 | } |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6477 | /* Resize if we allocated to much */ |
| 6478 | size = str - PyBytes_AS_STRING(res); |
| 6479 | if (size < ressize) { /* If this falls res will be NULL */ |
Alexandre Vassalotti | bad1b92 | 2008-12-27 09:49:09 +0000 | [diff] [blame] | 6480 | assert(size >= 0); |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6481 | if (_PyBytes_Resize(&res, size) < 0) |
| 6482 | goto onError; |
| 6483 | } |
| 6484 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6485 | Py_XDECREF(errorHandler); |
| 6486 | Py_XDECREF(exc); |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 6487 | return res; |
| 6488 | |
| 6489 | onError: |
| 6490 | Py_XDECREF(res); |
| 6491 | Py_XDECREF(errorHandler); |
| 6492 | Py_XDECREF(exc); |
| 6493 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6494 | } |
| 6495 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6496 | /* Deprecated */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6497 | PyObject * |
| 6498 | PyUnicode_EncodeLatin1(const Py_UNICODE *p, |
Ezio Melotti | 2aa2b3b | 2011-09-29 00:58:57 +0300 | [diff] [blame] | 6499 | Py_ssize_t size, |
| 6500 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6501 | { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6502 | PyObject *result; |
| 6503 | PyObject *unicode = PyUnicode_FromUnicode(p, size); |
| 6504 | if (unicode == NULL) |
| 6505 | return NULL; |
| 6506 | result = unicode_encode_ucs1(unicode, errors, 256); |
| 6507 | Py_DECREF(unicode); |
| 6508 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6509 | } |
| 6510 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6511 | PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6512 | _PyUnicode_AsLatin1String(PyObject *unicode, const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6513 | { |
| 6514 | if (!PyUnicode_Check(unicode)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6515 | PyErr_BadArgument(); |
| 6516 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6517 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6518 | if (PyUnicode_READY(unicode) == -1) |
| 6519 | return NULL; |
| 6520 | /* Fast path: if it is a one-byte string, construct |
| 6521 | bytes object directly. */ |
| 6522 | if (PyUnicode_KIND(unicode) == PyUnicode_1BYTE_KIND) |
| 6523 | return PyBytes_FromStringAndSize(PyUnicode_DATA(unicode), |
| 6524 | PyUnicode_GET_LENGTH(unicode)); |
| 6525 | /* Non-Latin-1 characters present. Defer to above function to |
| 6526 | raise the exception. */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6527 | return unicode_encode_ucs1(unicode, errors, 256); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6528 | } |
| 6529 | |
| 6530 | PyObject* |
| 6531 | PyUnicode_AsLatin1String(PyObject *unicode) |
| 6532 | { |
| 6533 | return _PyUnicode_AsLatin1String(unicode, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6534 | } |
| 6535 | |
| 6536 | /* --- 7-bit ASCII Codec -------------------------------------------------- */ |
| 6537 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6538 | PyObject * |
| 6539 | PyUnicode_DecodeASCII(const char *s, |
| 6540 | Py_ssize_t size, |
| 6541 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6542 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6543 | const char *starts = s; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 6544 | PyObject *unicode; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6545 | int kind; |
| 6546 | void *data; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 6547 | Py_ssize_t startinpos; |
| 6548 | Py_ssize_t endinpos; |
| 6549 | Py_ssize_t outpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6550 | const char *e; |
| 6551 | PyObject *errorHandler = NULL; |
| 6552 | PyObject *exc = NULL; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6553 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6554 | if (size == 0) |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 6555 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 6556 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6557 | /* ASCII is equivalent to the first 128 ordinals in Unicode. */ |
Victor Stinner | 702c734 | 2011-10-05 13:50:52 +0200 | [diff] [blame] | 6558 | if (size == 1 && (unsigned char)s[0] < 128) |
| 6559 | return get_latin1_char((unsigned char)s[0]); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6560 | |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 6561 | unicode = PyUnicode_New(size, 127); |
| 6562 | if (unicode == NULL) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6563 | goto onError; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 6564 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6565 | e = s + size; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 6566 | data = PyUnicode_1BYTE_DATA(unicode); |
| 6567 | outpos = ascii_decode(s, e, (Py_UCS1 *)data); |
| 6568 | if (outpos == size) |
| 6569 | return unicode; |
| 6570 | |
| 6571 | s += outpos; |
| 6572 | kind = PyUnicode_1BYTE_KIND; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6573 | while (s < e) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6574 | register unsigned char c = (unsigned char)*s; |
| 6575 | if (c < 128) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6576 | PyUnicode_WRITE(kind, data, outpos++, c); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6577 | ++s; |
| 6578 | } |
| 6579 | else { |
| 6580 | startinpos = s-starts; |
| 6581 | endinpos = startinpos + 1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6582 | if (unicode_decode_call_errorhandler( |
| 6583 | errors, &errorHandler, |
| 6584 | "ascii", "ordinal not in range(128)", |
| 6585 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 6586 | &unicode, &outpos)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6587 | goto onError; |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 6588 | kind = PyUnicode_KIND(unicode); |
| 6589 | data = PyUnicode_DATA(unicode); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6590 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6591 | } |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 6592 | if (unicode_resize(&unicode, outpos) < 0) |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 6593 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6594 | Py_XDECREF(errorHandler); |
| 6595 | Py_XDECREF(exc); |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 6596 | assert(_PyUnicode_CheckConsistency(unicode, 1)); |
| 6597 | return unicode; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 6598 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6599 | onError: |
Antoine Pitrou | ca5f91b | 2012-05-10 16:36:02 +0200 | [diff] [blame] | 6600 | Py_XDECREF(unicode); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 6601 | Py_XDECREF(errorHandler); |
| 6602 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6603 | return NULL; |
| 6604 | } |
| 6605 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6606 | /* Deprecated */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6607 | PyObject * |
| 6608 | PyUnicode_EncodeASCII(const Py_UNICODE *p, |
| 6609 | Py_ssize_t size, |
| 6610 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6611 | { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6612 | PyObject *result; |
| 6613 | PyObject *unicode = PyUnicode_FromUnicode(p, size); |
| 6614 | if (unicode == NULL) |
| 6615 | return NULL; |
| 6616 | result = unicode_encode_ucs1(unicode, errors, 128); |
| 6617 | Py_DECREF(unicode); |
| 6618 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6619 | } |
| 6620 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6621 | PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6622 | _PyUnicode_AsASCIIString(PyObject *unicode, const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6623 | { |
| 6624 | if (!PyUnicode_Check(unicode)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6625 | PyErr_BadArgument(); |
| 6626 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6627 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6628 | if (PyUnicode_READY(unicode) == -1) |
| 6629 | return NULL; |
| 6630 | /* Fast path: if it is an ASCII-only string, construct bytes object |
| 6631 | directly. Else defer to above function to raise the exception. */ |
| 6632 | if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128) |
| 6633 | return PyBytes_FromStringAndSize(PyUnicode_DATA(unicode), |
| 6634 | PyUnicode_GET_LENGTH(unicode)); |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 6635 | return unicode_encode_ucs1(unicode, errors, 128); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 6636 | } |
| 6637 | |
| 6638 | PyObject * |
| 6639 | PyUnicode_AsASCIIString(PyObject *unicode) |
| 6640 | { |
| 6641 | return _PyUnicode_AsASCIIString(unicode, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 6642 | } |
| 6643 | |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 6644 | #ifdef HAVE_MBCS |
Guido van Rossum | 2ea3e14 | 2000-03-31 17:24:09 +0000 | [diff] [blame] | 6645 | |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 6646 | /* --- MBCS codecs for Windows -------------------------------------------- */ |
Guido van Rossum | 2ea3e14 | 2000-03-31 17:24:09 +0000 | [diff] [blame] | 6647 | |
Hirokazu Yamamoto | 3530246 | 2009-03-21 13:23:27 +0000 | [diff] [blame] | 6648 | #if SIZEOF_INT < SIZEOF_SIZE_T |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6649 | #define NEED_RETRY |
| 6650 | #endif |
| 6651 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6652 | #ifndef WC_ERR_INVALID_CHARS |
| 6653 | # define WC_ERR_INVALID_CHARS 0x0080 |
| 6654 | #endif |
| 6655 | |
| 6656 | static char* |
| 6657 | code_page_name(UINT code_page, PyObject **obj) |
| 6658 | { |
| 6659 | *obj = NULL; |
| 6660 | if (code_page == CP_ACP) |
| 6661 | return "mbcs"; |
| 6662 | if (code_page == CP_UTF7) |
| 6663 | return "CP_UTF7"; |
| 6664 | if (code_page == CP_UTF8) |
| 6665 | return "CP_UTF8"; |
| 6666 | |
| 6667 | *obj = PyBytes_FromFormat("cp%u", code_page); |
| 6668 | if (*obj == NULL) |
| 6669 | return NULL; |
| 6670 | return PyBytes_AS_STRING(*obj); |
| 6671 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6672 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6673 | static int |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6674 | is_dbcs_lead_byte(UINT code_page, const char *s, int offset) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6675 | { |
| 6676 | const char *curr = s + offset; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6677 | const char *prev; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6678 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6679 | if (!IsDBCSLeadByteEx(code_page, *curr)) |
| 6680 | return 0; |
| 6681 | |
| 6682 | prev = CharPrevExA(code_page, s, curr, 0); |
| 6683 | if (prev == curr) |
| 6684 | return 1; |
| 6685 | /* FIXME: This code is limited to "true" double-byte encodings, |
| 6686 | as it assumes an incomplete character consists of a single |
| 6687 | byte. */ |
| 6688 | if (curr - prev == 2) |
| 6689 | return 1; |
| 6690 | if (!IsDBCSLeadByteEx(code_page, *prev)) |
| 6691 | return 1; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6692 | return 0; |
| 6693 | } |
| 6694 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6695 | static DWORD |
| 6696 | decode_code_page_flags(UINT code_page) |
| 6697 | { |
| 6698 | if (code_page == CP_UTF7) { |
| 6699 | /* The CP_UTF7 decoder only supports flags=0 */ |
| 6700 | return 0; |
| 6701 | } |
| 6702 | else |
| 6703 | return MB_ERR_INVALID_CHARS; |
| 6704 | } |
| 6705 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6706 | /* |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6707 | * Decode a byte string from a Windows code page into unicode object in strict |
| 6708 | * mode. |
| 6709 | * |
| 6710 | * Returns consumed size if succeed, returns -2 on decode error, or raise a |
| 6711 | * WindowsError and returns -1 on other error. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6712 | */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6713 | static int |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6714 | decode_code_page_strict(UINT code_page, |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6715 | PyObject **v, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6716 | const char *in, |
| 6717 | int insize) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6718 | { |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6719 | const DWORD flags = decode_code_page_flags(code_page); |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 6720 | wchar_t *out; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6721 | DWORD outsize; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6722 | |
| 6723 | /* First get the size of the result */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6724 | assert(insize > 0); |
| 6725 | outsize = MultiByteToWideChar(code_page, flags, in, insize, NULL, 0); |
| 6726 | if (outsize <= 0) |
| 6727 | goto error; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6728 | |
| 6729 | if (*v == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6730 | /* Create unicode object */ |
Victor Stinner | ab59594 | 2011-12-17 04:59:06 +0100 | [diff] [blame] | 6731 | /* FIXME: don't use _PyUnicode_New(), but allocate a wchar_t* buffer */ |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6732 | *v = (PyObject*)_PyUnicode_New(outsize); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6733 | if (*v == NULL) |
| 6734 | return -1; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6735 | out = PyUnicode_AS_UNICODE(*v); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6736 | } |
| 6737 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6738 | /* Extend unicode object */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6739 | Py_ssize_t n = PyUnicode_GET_SIZE(*v); |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 6740 | if (unicode_resize(v, n + outsize) < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6741 | return -1; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6742 | out = PyUnicode_AS_UNICODE(*v) + n; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6743 | } |
| 6744 | |
| 6745 | /* Do the conversion */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6746 | outsize = MultiByteToWideChar(code_page, flags, in, insize, out, outsize); |
| 6747 | if (outsize <= 0) |
| 6748 | goto error; |
| 6749 | return insize; |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 6750 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6751 | error: |
| 6752 | if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION) |
| 6753 | return -2; |
| 6754 | PyErr_SetFromWindowsErr(0); |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 6755 | return -1; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6756 | } |
| 6757 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6758 | /* |
| 6759 | * Decode a byte string from a code page into unicode object with an error |
| 6760 | * handler. |
| 6761 | * |
| 6762 | * Returns consumed size if succeed, or raise a WindowsError or |
| 6763 | * UnicodeDecodeError exception and returns -1 on error. |
| 6764 | */ |
| 6765 | static int |
| 6766 | decode_code_page_errors(UINT code_page, |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6767 | PyObject **v, |
| 6768 | const char *in, const int size, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6769 | const char *errors) |
| 6770 | { |
| 6771 | const char *startin = in; |
| 6772 | const char *endin = in + size; |
| 6773 | const DWORD flags = decode_code_page_flags(code_page); |
| 6774 | /* Ideally, we should get reason from FormatMessage. This is the Windows |
| 6775 | 2000 English version of the message. */ |
| 6776 | const char *reason = "No mapping for the Unicode character exists " |
| 6777 | "in the target code page."; |
| 6778 | /* each step cannot decode more than 1 character, but a character can be |
| 6779 | represented as a surrogate pair */ |
| 6780 | wchar_t buffer[2], *startout, *out; |
| 6781 | int insize, outsize; |
| 6782 | PyObject *errorHandler = NULL; |
| 6783 | PyObject *exc = NULL; |
| 6784 | PyObject *encoding_obj = NULL; |
| 6785 | char *encoding; |
| 6786 | DWORD err; |
| 6787 | int ret = -1; |
| 6788 | |
| 6789 | assert(size > 0); |
| 6790 | |
| 6791 | encoding = code_page_name(code_page, &encoding_obj); |
| 6792 | if (encoding == NULL) |
| 6793 | return -1; |
| 6794 | |
| 6795 | if (errors == NULL || strcmp(errors, "strict") == 0) { |
| 6796 | /* The last error was ERROR_NO_UNICODE_TRANSLATION, then we raise a |
| 6797 | UnicodeDecodeError. */ |
| 6798 | make_decode_exception(&exc, encoding, in, size, 0, 0, reason); |
| 6799 | if (exc != NULL) { |
| 6800 | PyCodec_StrictErrors(exc); |
| 6801 | Py_CLEAR(exc); |
| 6802 | } |
| 6803 | goto error; |
| 6804 | } |
| 6805 | |
| 6806 | if (*v == NULL) { |
| 6807 | /* Create unicode object */ |
| 6808 | if (size > PY_SSIZE_T_MAX / (Py_ssize_t)Py_ARRAY_LENGTH(buffer)) { |
| 6809 | PyErr_NoMemory(); |
| 6810 | goto error; |
| 6811 | } |
Victor Stinner | ab59594 | 2011-12-17 04:59:06 +0100 | [diff] [blame] | 6812 | /* FIXME: don't use _PyUnicode_New(), but allocate a wchar_t* buffer */ |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6813 | *v = (PyObject*)_PyUnicode_New(size * Py_ARRAY_LENGTH(buffer)); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6814 | if (*v == NULL) |
| 6815 | goto error; |
| 6816 | startout = PyUnicode_AS_UNICODE(*v); |
| 6817 | } |
| 6818 | else { |
| 6819 | /* Extend unicode object */ |
| 6820 | Py_ssize_t n = PyUnicode_GET_SIZE(*v); |
| 6821 | if (size > (PY_SSIZE_T_MAX - n) / (Py_ssize_t)Py_ARRAY_LENGTH(buffer)) { |
| 6822 | PyErr_NoMemory(); |
| 6823 | goto error; |
| 6824 | } |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 6825 | if (unicode_resize(v, n + size * Py_ARRAY_LENGTH(buffer)) < 0) |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6826 | goto error; |
| 6827 | startout = PyUnicode_AS_UNICODE(*v) + n; |
| 6828 | } |
| 6829 | |
| 6830 | /* Decode the byte string character per character */ |
| 6831 | out = startout; |
| 6832 | while (in < endin) |
| 6833 | { |
| 6834 | /* Decode a character */ |
| 6835 | insize = 1; |
| 6836 | do |
| 6837 | { |
| 6838 | outsize = MultiByteToWideChar(code_page, flags, |
| 6839 | in, insize, |
| 6840 | buffer, Py_ARRAY_LENGTH(buffer)); |
| 6841 | if (outsize > 0) |
| 6842 | break; |
| 6843 | err = GetLastError(); |
| 6844 | if (err != ERROR_NO_UNICODE_TRANSLATION |
| 6845 | && err != ERROR_INSUFFICIENT_BUFFER) |
| 6846 | { |
| 6847 | PyErr_SetFromWindowsErr(0); |
| 6848 | goto error; |
| 6849 | } |
| 6850 | insize++; |
| 6851 | } |
| 6852 | /* 4=maximum length of a UTF-8 sequence */ |
| 6853 | while (insize <= 4 && (in + insize) <= endin); |
| 6854 | |
| 6855 | if (outsize <= 0) { |
| 6856 | Py_ssize_t startinpos, endinpos, outpos; |
| 6857 | |
| 6858 | startinpos = in - startin; |
| 6859 | endinpos = startinpos + 1; |
| 6860 | outpos = out - PyUnicode_AS_UNICODE(*v); |
| 6861 | if (unicode_decode_call_errorhandler( |
| 6862 | errors, &errorHandler, |
| 6863 | encoding, reason, |
| 6864 | &startin, &endin, &startinpos, &endinpos, &exc, &in, |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 6865 | v, &outpos)) |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6866 | { |
| 6867 | goto error; |
| 6868 | } |
Victor Stinner | 596a6c4 | 2011-11-09 00:02:18 +0100 | [diff] [blame] | 6869 | out = PyUnicode_AS_UNICODE(*v) + outpos; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6870 | } |
| 6871 | else { |
| 6872 | in += insize; |
| 6873 | memcpy(out, buffer, outsize * sizeof(wchar_t)); |
| 6874 | out += outsize; |
| 6875 | } |
| 6876 | } |
| 6877 | |
| 6878 | /* write a NUL character at the end */ |
| 6879 | *out = 0; |
| 6880 | |
| 6881 | /* Extend unicode object */ |
| 6882 | outsize = out - startout; |
| 6883 | assert(outsize <= PyUnicode_WSTR_LENGTH(*v)); |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 6884 | if (unicode_resize(v, outsize) < 0) |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6885 | goto error; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6886 | ret = size; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6887 | |
| 6888 | error: |
| 6889 | Py_XDECREF(encoding_obj); |
| 6890 | Py_XDECREF(errorHandler); |
| 6891 | Py_XDECREF(exc); |
| 6892 | return ret; |
| 6893 | } |
| 6894 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6895 | static PyObject * |
| 6896 | decode_code_page_stateful(int code_page, |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6897 | const char *s, Py_ssize_t size, |
| 6898 | const char *errors, Py_ssize_t *consumed) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6899 | { |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6900 | PyObject *v = NULL; |
| 6901 | int chunk_size, final, converted, done; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6902 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6903 | if (code_page < 0) { |
| 6904 | PyErr_SetString(PyExc_ValueError, "invalid code page number"); |
| 6905 | return NULL; |
| 6906 | } |
| 6907 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6908 | if (consumed) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 6909 | *consumed = 0; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6910 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6911 | do |
| 6912 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6913 | #ifdef NEED_RETRY |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6914 | if (size > INT_MAX) { |
| 6915 | chunk_size = INT_MAX; |
| 6916 | final = 0; |
| 6917 | done = 0; |
| 6918 | } |
| 6919 | else |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6920 | #endif |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6921 | { |
| 6922 | chunk_size = (int)size; |
| 6923 | final = (consumed == NULL); |
| 6924 | done = 1; |
| 6925 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6926 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6927 | /* Skip trailing lead-byte unless 'final' is set */ |
| 6928 | if (!final && is_dbcs_lead_byte(code_page, s, chunk_size - 1)) |
| 6929 | --chunk_size; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6930 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6931 | if (chunk_size == 0 && done) { |
| 6932 | if (v != NULL) |
| 6933 | break; |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 6934 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6935 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6936 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 6937 | |
| 6938 | converted = decode_code_page_strict(code_page, &v, |
| 6939 | s, chunk_size); |
| 6940 | if (converted == -2) |
| 6941 | converted = decode_code_page_errors(code_page, &v, |
| 6942 | s, chunk_size, |
| 6943 | errors); |
| 6944 | assert(converted != 0); |
| 6945 | |
| 6946 | if (converted < 0) { |
| 6947 | Py_XDECREF(v); |
| 6948 | return NULL; |
| 6949 | } |
| 6950 | |
| 6951 | if (consumed) |
| 6952 | *consumed += converted; |
| 6953 | |
| 6954 | s += converted; |
| 6955 | size -= converted; |
| 6956 | } while (!done); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6957 | |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 6958 | return unicode_result(v); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6959 | } |
| 6960 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6961 | PyObject * |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6962 | PyUnicode_DecodeCodePageStateful(int code_page, |
| 6963 | const char *s, |
| 6964 | Py_ssize_t size, |
| 6965 | const char *errors, |
| 6966 | Py_ssize_t *consumed) |
| 6967 | { |
| 6968 | return decode_code_page_stateful(code_page, s, size, errors, consumed); |
| 6969 | } |
| 6970 | |
| 6971 | PyObject * |
| 6972 | PyUnicode_DecodeMBCSStateful(const char *s, |
| 6973 | Py_ssize_t size, |
| 6974 | const char *errors, |
| 6975 | Py_ssize_t *consumed) |
| 6976 | { |
| 6977 | return decode_code_page_stateful(CP_ACP, s, size, errors, consumed); |
| 6978 | } |
| 6979 | |
| 6980 | PyObject * |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 6981 | PyUnicode_DecodeMBCS(const char *s, |
| 6982 | Py_ssize_t size, |
| 6983 | const char *errors) |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 6984 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6985 | return PyUnicode_DecodeMBCSStateful(s, size, errors, NULL); |
| 6986 | } |
| 6987 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 6988 | static DWORD |
| 6989 | encode_code_page_flags(UINT code_page, const char *errors) |
| 6990 | { |
| 6991 | if (code_page == CP_UTF8) { |
| 6992 | if (winver.dwMajorVersion >= 6) |
| 6993 | /* CP_UTF8 supports WC_ERR_INVALID_CHARS on Windows Vista |
| 6994 | and later */ |
| 6995 | return WC_ERR_INVALID_CHARS; |
| 6996 | else |
| 6997 | /* CP_UTF8 only supports flags=0 on Windows older than Vista */ |
| 6998 | return 0; |
| 6999 | } |
| 7000 | else if (code_page == CP_UTF7) { |
| 7001 | /* CP_UTF7 only supports flags=0 */ |
| 7002 | return 0; |
| 7003 | } |
| 7004 | else { |
| 7005 | if (errors != NULL && strcmp(errors, "replace") == 0) |
| 7006 | return 0; |
| 7007 | else |
| 7008 | return WC_NO_BEST_FIT_CHARS; |
| 7009 | } |
| 7010 | } |
| 7011 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7012 | /* |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7013 | * Encode a Unicode string to a Windows code page into a byte string in strict |
| 7014 | * mode. |
| 7015 | * |
| 7016 | * Returns consumed characters if succeed, returns -2 on encode error, or raise |
| 7017 | * a WindowsError and returns -1 on other error. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7018 | */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7019 | static int |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7020 | encode_code_page_strict(UINT code_page, PyObject **outbytes, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7021 | PyObject *unicode, Py_ssize_t offset, int len, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7022 | const char* errors) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7023 | { |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7024 | BOOL usedDefaultChar = FALSE; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7025 | BOOL *pusedDefaultChar = &usedDefaultChar; |
| 7026 | int outsize; |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7027 | PyObject *exc = NULL; |
Victor Stinner | 24729f3 | 2011-11-10 20:31:37 +0100 | [diff] [blame] | 7028 | wchar_t *p; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7029 | Py_ssize_t size; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7030 | const DWORD flags = encode_code_page_flags(code_page, NULL); |
| 7031 | char *out; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7032 | /* Create a substring so that we can get the UTF-16 representation |
| 7033 | of just the slice under consideration. */ |
| 7034 | PyObject *substring; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7035 | |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7036 | assert(len > 0); |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7037 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7038 | if (code_page != CP_UTF8 && code_page != CP_UTF7) |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7039 | pusedDefaultChar = &usedDefaultChar; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7040 | else |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7041 | pusedDefaultChar = NULL; |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7042 | |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7043 | substring = PyUnicode_Substring(unicode, offset, offset+len); |
| 7044 | if (substring == NULL) |
| 7045 | return -1; |
| 7046 | p = PyUnicode_AsUnicodeAndSize(substring, &size); |
| 7047 | if (p == NULL) { |
| 7048 | Py_DECREF(substring); |
| 7049 | return -1; |
| 7050 | } |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7051 | |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7052 | /* First get the size of the result */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7053 | outsize = WideCharToMultiByte(code_page, flags, |
| 7054 | p, size, |
| 7055 | NULL, 0, |
| 7056 | NULL, pusedDefaultChar); |
| 7057 | if (outsize <= 0) |
| 7058 | goto error; |
| 7059 | /* If we used a default char, then we failed! */ |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7060 | if (pusedDefaultChar && *pusedDefaultChar) { |
| 7061 | Py_DECREF(substring); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7062 | return -2; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7063 | } |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7064 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7065 | if (*outbytes == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7066 | /* Create string object */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7067 | *outbytes = PyBytes_FromStringAndSize(NULL, outsize); |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7068 | if (*outbytes == NULL) { |
| 7069 | Py_DECREF(substring); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7070 | return -1; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7071 | } |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7072 | out = PyBytes_AS_STRING(*outbytes); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7073 | } |
| 7074 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7075 | /* Extend string object */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7076 | const Py_ssize_t n = PyBytes_Size(*outbytes); |
| 7077 | if (outsize > PY_SSIZE_T_MAX - n) { |
| 7078 | PyErr_NoMemory(); |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7079 | Py_DECREF(substring); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7080 | return -1; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7081 | } |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7082 | if (_PyBytes_Resize(outbytes, n + outsize) < 0) { |
| 7083 | Py_DECREF(substring); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7084 | return -1; |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7085 | } |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7086 | out = PyBytes_AS_STRING(*outbytes) + n; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7087 | } |
| 7088 | |
| 7089 | /* Do the conversion */ |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7090 | outsize = WideCharToMultiByte(code_page, flags, |
| 7091 | p, size, |
| 7092 | out, outsize, |
| 7093 | NULL, pusedDefaultChar); |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7094 | Py_CLEAR(substring); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7095 | if (outsize <= 0) |
| 7096 | goto error; |
| 7097 | if (pusedDefaultChar && *pusedDefaultChar) |
| 7098 | return -2; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7099 | return 0; |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7100 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7101 | error: |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7102 | Py_XDECREF(substring); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7103 | if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION) |
| 7104 | return -2; |
| 7105 | PyErr_SetFromWindowsErr(0); |
Victor Stinner | 554f3f0 | 2010-06-16 23:33:54 +0000 | [diff] [blame] | 7106 | return -1; |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7107 | } |
| 7108 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7109 | /* |
| 7110 | * Encode a Unicode string to a Windows code page into a byte string using a |
| 7111 | * error handler. |
| 7112 | * |
| 7113 | * Returns consumed characters if succeed, or raise a WindowsError and returns |
| 7114 | * -1 on other error. |
| 7115 | */ |
| 7116 | static int |
| 7117 | encode_code_page_errors(UINT code_page, PyObject **outbytes, |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7118 | PyObject *unicode, Py_ssize_t unicode_offset, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7119 | Py_ssize_t insize, const char* errors) |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7120 | { |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7121 | const DWORD flags = encode_code_page_flags(code_page, errors); |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7122 | Py_ssize_t pos = unicode_offset; |
| 7123 | Py_ssize_t endin = unicode_offset + insize; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7124 | /* Ideally, we should get reason from FormatMessage. This is the Windows |
| 7125 | 2000 English version of the message. */ |
| 7126 | const char *reason = "invalid character"; |
| 7127 | /* 4=maximum length of a UTF-8 sequence */ |
| 7128 | char buffer[4]; |
| 7129 | BOOL usedDefaultChar = FALSE, *pusedDefaultChar; |
| 7130 | Py_ssize_t outsize; |
| 7131 | char *out; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7132 | PyObject *errorHandler = NULL; |
| 7133 | PyObject *exc = NULL; |
| 7134 | PyObject *encoding_obj = NULL; |
| 7135 | char *encoding; |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7136 | Py_ssize_t newpos, newoutsize; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7137 | PyObject *rep; |
| 7138 | int ret = -1; |
| 7139 | |
| 7140 | assert(insize > 0); |
| 7141 | |
| 7142 | encoding = code_page_name(code_page, &encoding_obj); |
| 7143 | if (encoding == NULL) |
| 7144 | return -1; |
| 7145 | |
| 7146 | if (errors == NULL || strcmp(errors, "strict") == 0) { |
| 7147 | /* The last error was ERROR_NO_UNICODE_TRANSLATION, |
| 7148 | then we raise a UnicodeEncodeError. */ |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 7149 | make_encode_exception(&exc, encoding, unicode, 0, 0, reason); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7150 | if (exc != NULL) { |
| 7151 | PyCodec_StrictErrors(exc); |
| 7152 | Py_DECREF(exc); |
| 7153 | } |
| 7154 | Py_XDECREF(encoding_obj); |
| 7155 | return -1; |
| 7156 | } |
| 7157 | |
| 7158 | if (code_page != CP_UTF8 && code_page != CP_UTF7) |
| 7159 | pusedDefaultChar = &usedDefaultChar; |
| 7160 | else |
| 7161 | pusedDefaultChar = NULL; |
| 7162 | |
| 7163 | if (Py_ARRAY_LENGTH(buffer) > PY_SSIZE_T_MAX / insize) { |
| 7164 | PyErr_NoMemory(); |
| 7165 | goto error; |
| 7166 | } |
| 7167 | outsize = insize * Py_ARRAY_LENGTH(buffer); |
| 7168 | |
| 7169 | if (*outbytes == NULL) { |
| 7170 | /* Create string object */ |
| 7171 | *outbytes = PyBytes_FromStringAndSize(NULL, outsize); |
| 7172 | if (*outbytes == NULL) |
| 7173 | goto error; |
| 7174 | out = PyBytes_AS_STRING(*outbytes); |
| 7175 | } |
| 7176 | else { |
| 7177 | /* Extend string object */ |
| 7178 | Py_ssize_t n = PyBytes_Size(*outbytes); |
| 7179 | if (n > PY_SSIZE_T_MAX - outsize) { |
| 7180 | PyErr_NoMemory(); |
| 7181 | goto error; |
| 7182 | } |
| 7183 | if (_PyBytes_Resize(outbytes, n + outsize) < 0) |
| 7184 | goto error; |
| 7185 | out = PyBytes_AS_STRING(*outbytes) + n; |
| 7186 | } |
| 7187 | |
| 7188 | /* Encode the string character per character */ |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7189 | while (pos < endin) |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7190 | { |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7191 | Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, pos); |
| 7192 | wchar_t chars[2]; |
| 7193 | int charsize; |
| 7194 | if (ch < 0x10000) { |
| 7195 | chars[0] = (wchar_t)ch; |
| 7196 | charsize = 1; |
| 7197 | } |
| 7198 | else { |
| 7199 | ch -= 0x10000; |
| 7200 | chars[0] = 0xd800 + (ch >> 10); |
| 7201 | chars[1] = 0xdc00 + (ch & 0x3ff); |
| 7202 | charsize = 2; |
| 7203 | } |
| 7204 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7205 | outsize = WideCharToMultiByte(code_page, flags, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7206 | chars, charsize, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7207 | buffer, Py_ARRAY_LENGTH(buffer), |
| 7208 | NULL, pusedDefaultChar); |
| 7209 | if (outsize > 0) { |
| 7210 | if (pusedDefaultChar == NULL || !(*pusedDefaultChar)) |
| 7211 | { |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7212 | pos++; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7213 | memcpy(out, buffer, outsize); |
| 7214 | out += outsize; |
| 7215 | continue; |
| 7216 | } |
| 7217 | } |
| 7218 | else if (GetLastError() != ERROR_NO_UNICODE_TRANSLATION) { |
| 7219 | PyErr_SetFromWindowsErr(0); |
| 7220 | goto error; |
| 7221 | } |
| 7222 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7223 | rep = unicode_encode_call_errorhandler( |
| 7224 | errors, &errorHandler, encoding, reason, |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7225 | unicode, &exc, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7226 | pos, pos + 1, &newpos); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7227 | if (rep == NULL) |
| 7228 | goto error; |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7229 | pos = newpos; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7230 | |
| 7231 | if (PyBytes_Check(rep)) { |
| 7232 | outsize = PyBytes_GET_SIZE(rep); |
| 7233 | if (outsize != 1) { |
| 7234 | Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes); |
| 7235 | newoutsize = PyBytes_GET_SIZE(*outbytes) + (outsize - 1); |
| 7236 | if (_PyBytes_Resize(outbytes, newoutsize) < 0) { |
| 7237 | Py_DECREF(rep); |
| 7238 | goto error; |
| 7239 | } |
| 7240 | out = PyBytes_AS_STRING(*outbytes) + offset; |
| 7241 | } |
| 7242 | memcpy(out, PyBytes_AS_STRING(rep), outsize); |
| 7243 | out += outsize; |
| 7244 | } |
| 7245 | else { |
| 7246 | Py_ssize_t i; |
| 7247 | enum PyUnicode_Kind kind; |
| 7248 | void *data; |
| 7249 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 7250 | if (PyUnicode_READY(rep) == -1) { |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7251 | Py_DECREF(rep); |
| 7252 | goto error; |
| 7253 | } |
| 7254 | |
| 7255 | outsize = PyUnicode_GET_LENGTH(rep); |
| 7256 | if (outsize != 1) { |
| 7257 | Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes); |
| 7258 | newoutsize = PyBytes_GET_SIZE(*outbytes) + (outsize - 1); |
| 7259 | if (_PyBytes_Resize(outbytes, newoutsize) < 0) { |
| 7260 | Py_DECREF(rep); |
| 7261 | goto error; |
| 7262 | } |
| 7263 | out = PyBytes_AS_STRING(*outbytes) + offset; |
| 7264 | } |
| 7265 | kind = PyUnicode_KIND(rep); |
| 7266 | data = PyUnicode_DATA(rep); |
| 7267 | for (i=0; i < outsize; i++) { |
| 7268 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 7269 | if (ch > 127) { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 7270 | raise_encode_exception(&exc, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7271 | encoding, unicode, |
| 7272 | pos, pos + 1, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7273 | "unable to encode error handler result to ASCII"); |
| 7274 | Py_DECREF(rep); |
| 7275 | goto error; |
| 7276 | } |
| 7277 | *out = (unsigned char)ch; |
| 7278 | out++; |
| 7279 | } |
| 7280 | } |
| 7281 | Py_DECREF(rep); |
| 7282 | } |
| 7283 | /* write a NUL byte */ |
| 7284 | *out = 0; |
| 7285 | outsize = out - PyBytes_AS_STRING(*outbytes); |
| 7286 | assert(outsize <= PyBytes_GET_SIZE(*outbytes)); |
| 7287 | if (_PyBytes_Resize(outbytes, outsize) < 0) |
| 7288 | goto error; |
| 7289 | ret = 0; |
| 7290 | |
| 7291 | error: |
| 7292 | Py_XDECREF(encoding_obj); |
| 7293 | Py_XDECREF(errorHandler); |
| 7294 | Py_XDECREF(exc); |
| 7295 | return ret; |
| 7296 | } |
| 7297 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7298 | static PyObject * |
| 7299 | encode_code_page(int code_page, |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7300 | PyObject *unicode, |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7301 | const char *errors) |
| 7302 | { |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7303 | Py_ssize_t len; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7304 | PyObject *outbytes = NULL; |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7305 | Py_ssize_t offset; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7306 | int chunk_len, ret, done; |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7307 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 7308 | if (PyUnicode_READY(unicode) == -1) |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7309 | return NULL; |
| 7310 | len = PyUnicode_GET_LENGTH(unicode); |
Guido van Rossum | 03e29f1 | 2000-05-04 15:52:20 +0000 | [diff] [blame] | 7311 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7312 | if (code_page < 0) { |
| 7313 | PyErr_SetString(PyExc_ValueError, "invalid code page number"); |
| 7314 | return NULL; |
| 7315 | } |
| 7316 | |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7317 | if (len == 0) |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7318 | return PyBytes_FromStringAndSize(NULL, 0); |
| 7319 | |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7320 | offset = 0; |
| 7321 | do |
| 7322 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7323 | #ifdef NEED_RETRY |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7324 | /* 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] | 7325 | chunks. */ |
| 7326 | if (len > INT_MAX/2) { |
| 7327 | chunk_len = INT_MAX/2; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7328 | done = 0; |
| 7329 | } |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7330 | else |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7331 | #endif |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7332 | { |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7333 | chunk_len = (int)len; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7334 | done = 1; |
| 7335 | } |
Victor Stinner | 2fc507f | 2011-11-04 20:06:39 +0100 | [diff] [blame] | 7336 | |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7337 | ret = encode_code_page_strict(code_page, &outbytes, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7338 | unicode, offset, chunk_len, |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7339 | errors); |
| 7340 | if (ret == -2) |
| 7341 | ret = encode_code_page_errors(code_page, &outbytes, |
| 7342 | unicode, offset, |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7343 | chunk_len, errors); |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7344 | if (ret < 0) { |
| 7345 | Py_XDECREF(outbytes); |
| 7346 | return NULL; |
| 7347 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7348 | |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7349 | offset += chunk_len; |
Martin v. Löwis | 3d32519 | 2011-11-04 18:23:06 +0100 | [diff] [blame] | 7350 | len -= chunk_len; |
Victor Stinner | 76a31a6 | 2011-11-04 00:05:13 +0100 | [diff] [blame] | 7351 | } while (!done); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7352 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7353 | return outbytes; |
| 7354 | } |
| 7355 | |
| 7356 | PyObject * |
| 7357 | PyUnicode_EncodeMBCS(const Py_UNICODE *p, |
| 7358 | Py_ssize_t size, |
| 7359 | const char *errors) |
| 7360 | { |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7361 | PyObject *unicode, *res; |
| 7362 | unicode = PyUnicode_FromUnicode(p, size); |
| 7363 | if (unicode == NULL) |
| 7364 | return NULL; |
| 7365 | res = encode_code_page(CP_ACP, unicode, errors); |
| 7366 | Py_DECREF(unicode); |
| 7367 | return res; |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 7368 | } |
| 7369 | |
| 7370 | PyObject * |
| 7371 | PyUnicode_EncodeCodePage(int code_page, |
| 7372 | PyObject *unicode, |
| 7373 | const char *errors) |
| 7374 | { |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7375 | return encode_code_page(code_page, unicode, errors); |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7376 | } |
Guido van Rossum | 2ea3e14 | 2000-03-31 17:24:09 +0000 | [diff] [blame] | 7377 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7378 | PyObject * |
| 7379 | PyUnicode_AsMBCSString(PyObject *unicode) |
Mark Hammond | 0ccda1e | 2003-07-01 00:13:27 +0000 | [diff] [blame] | 7380 | { |
| 7381 | if (!PyUnicode_Check(unicode)) { |
| 7382 | PyErr_BadArgument(); |
| 7383 | return NULL; |
| 7384 | } |
Victor Stinner | 7581cef | 2011-11-03 22:32:33 +0100 | [diff] [blame] | 7385 | return PyUnicode_EncodeCodePage(CP_ACP, unicode, NULL); |
Mark Hammond | 0ccda1e | 2003-07-01 00:13:27 +0000 | [diff] [blame] | 7386 | } |
| 7387 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 7388 | #undef NEED_RETRY |
| 7389 | |
Victor Stinner | 99b9538 | 2011-07-04 14:23:54 +0200 | [diff] [blame] | 7390 | #endif /* HAVE_MBCS */ |
Guido van Rossum | b7a40ba | 2000-03-28 02:01:52 +0000 | [diff] [blame] | 7391 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7392 | /* --- Character Mapping Codec -------------------------------------------- */ |
| 7393 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7394 | PyObject * |
| 7395 | PyUnicode_DecodeCharmap(const char *s, |
| 7396 | Py_ssize_t size, |
| 7397 | PyObject *mapping, |
| 7398 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7399 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7400 | const char *starts = s; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 7401 | Py_ssize_t startinpos; |
| 7402 | Py_ssize_t endinpos; |
| 7403 | Py_ssize_t outpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7404 | const char *e; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 7405 | PyObject *v; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 7406 | Py_ssize_t extrachars = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7407 | PyObject *errorHandler = NULL; |
| 7408 | PyObject *exc = NULL; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 7409 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7410 | /* Default to Latin-1 */ |
| 7411 | if (mapping == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7412 | return PyUnicode_DecodeLatin1(s, size, errors); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7413 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7414 | v = PyUnicode_New(size, 127); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7415 | if (v == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7416 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7417 | if (size == 0) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 7418 | return v; |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7419 | outpos = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7420 | e = s + size; |
Walter Dörwald | d1c1e10 | 2005-10-06 20:29:57 +0000 | [diff] [blame] | 7421 | if (PyUnicode_CheckExact(mapping)) { |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7422 | Py_ssize_t maplen; |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7423 | enum PyUnicode_Kind mapkind; |
| 7424 | void *mapdata; |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7425 | Py_UCS4 x; |
| 7426 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 7427 | if (PyUnicode_READY(mapping) == -1) |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7428 | return NULL; |
| 7429 | |
| 7430 | maplen = PyUnicode_GET_LENGTH(mapping); |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7431 | mapdata = PyUnicode_DATA(mapping); |
| 7432 | mapkind = PyUnicode_KIND(mapping); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7433 | while (s < e) { |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7434 | unsigned char ch; |
| 7435 | if (mapkind == PyUnicode_2BYTE_KIND && maplen >= 256) { |
| 7436 | enum PyUnicode_Kind outkind = PyUnicode_KIND(v); |
| 7437 | if (outkind == PyUnicode_1BYTE_KIND) { |
| 7438 | void *outdata = PyUnicode_DATA(v); |
| 7439 | Py_UCS4 maxchar = PyUnicode_MAX_CHAR_VALUE(v); |
| 7440 | while (s < e) { |
| 7441 | unsigned char ch = *s; |
| 7442 | x = PyUnicode_READ(PyUnicode_2BYTE_KIND, mapdata, ch); |
| 7443 | if (x > maxchar) |
| 7444 | goto Error; |
| 7445 | PyUnicode_WRITE(PyUnicode_1BYTE_KIND, outdata, outpos++, x); |
| 7446 | ++s; |
| 7447 | } |
| 7448 | break; |
| 7449 | } |
| 7450 | else if (outkind == PyUnicode_2BYTE_KIND) { |
| 7451 | void *outdata = PyUnicode_DATA(v); |
| 7452 | while (s < e) { |
| 7453 | unsigned char ch = *s; |
| 7454 | x = PyUnicode_READ(PyUnicode_2BYTE_KIND, mapdata, ch); |
| 7455 | if (x == 0xFFFE) |
| 7456 | goto Error; |
| 7457 | PyUnicode_WRITE(PyUnicode_2BYTE_KIND, outdata, outpos++, x); |
| 7458 | ++s; |
| 7459 | } |
| 7460 | break; |
| 7461 | } |
| 7462 | } |
| 7463 | ch = *s; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7464 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7465 | if (ch < maplen) |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7466 | x = PyUnicode_READ(mapkind, mapdata, ch); |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7467 | else |
| 7468 | x = 0xfffe; /* invalid value */ |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7469 | Error: |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7470 | if (x == 0xfffe) |
| 7471 | { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7472 | /* undefined mapping */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7473 | startinpos = s-starts; |
| 7474 | endinpos = startinpos+1; |
| 7475 | if (unicode_decode_call_errorhandler( |
| 7476 | errors, &errorHandler, |
| 7477 | "charmap", "character maps to <undefined>", |
| 7478 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7479 | &v, &outpos)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7480 | goto onError; |
| 7481 | } |
| 7482 | continue; |
| 7483 | } |
Victor Stinner | ebf3ba8 | 2011-11-10 20:30:22 +0100 | [diff] [blame] | 7484 | |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7485 | if (unicode_putchar(&v, &outpos, x) < 0) |
| 7486 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7487 | ++s; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7488 | } |
Walter Dörwald | d1c1e10 | 2005-10-06 20:29:57 +0000 | [diff] [blame] | 7489 | } |
| 7490 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7491 | while (s < e) { |
| 7492 | unsigned char ch = *s; |
| 7493 | PyObject *w, *x; |
Walter Dörwald | d1c1e10 | 2005-10-06 20:29:57 +0000 | [diff] [blame] | 7494 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7495 | /* Get mapping (char ordinal -> integer, Unicode char or None) */ |
| 7496 | w = PyLong_FromLong((long)ch); |
| 7497 | if (w == NULL) |
| 7498 | goto onError; |
| 7499 | x = PyObject_GetItem(mapping, w); |
| 7500 | Py_DECREF(w); |
| 7501 | if (x == NULL) { |
| 7502 | if (PyErr_ExceptionMatches(PyExc_LookupError)) { |
| 7503 | /* No mapping found means: mapping is undefined. */ |
| 7504 | PyErr_Clear(); |
Serhiy Storchaka | 4fb8cae | 2013-01-15 14:43:21 +0200 | [diff] [blame] | 7505 | goto Undefined; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7506 | } else |
| 7507 | goto onError; |
| 7508 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7509 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7510 | /* Apply mapping */ |
Serhiy Storchaka | 4fb8cae | 2013-01-15 14:43:21 +0200 | [diff] [blame] | 7511 | if (x == Py_None) |
| 7512 | goto Undefined; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7513 | if (PyLong_Check(x)) { |
| 7514 | long value = PyLong_AS_LONG(x); |
Serhiy Storchaka | 4fb8cae | 2013-01-15 14:43:21 +0200 | [diff] [blame] | 7515 | if (value == 0xFFFE) |
| 7516 | goto Undefined; |
Antoine Pitrou | a1f7655 | 2012-09-23 20:00:04 +0200 | [diff] [blame] | 7517 | if (value < 0 || value > MAX_UNICODE) { |
| 7518 | PyErr_Format(PyExc_TypeError, |
| 7519 | "character mapping must be in range(0x%lx)", |
| 7520 | (unsigned long)MAX_UNICODE + 1); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7521 | Py_DECREF(x); |
| 7522 | goto onError; |
| 7523 | } |
Serhiy Storchaka | afb1cb5 | 2013-01-29 12:13:22 +0200 | [diff] [blame] | 7524 | if (unicode_putchar(&v, &outpos, value) < 0) { |
| 7525 | Py_DECREF(x); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7526 | goto onError; |
Serhiy Storchaka | afb1cb5 | 2013-01-29 12:13:22 +0200 | [diff] [blame] | 7527 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7528 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7529 | else if (PyUnicode_Check(x)) { |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7530 | Py_ssize_t targetsize; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7531 | |
Serhiy Storchaka | afb1cb5 | 2013-01-29 12:13:22 +0200 | [diff] [blame] | 7532 | if (PyUnicode_READY(x) == -1) { |
| 7533 | Py_DECREF(x); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7534 | goto onError; |
Serhiy Storchaka | afb1cb5 | 2013-01-29 12:13:22 +0200 | [diff] [blame] | 7535 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7536 | targetsize = PyUnicode_GET_LENGTH(x); |
| 7537 | |
| 7538 | if (targetsize == 1) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7539 | /* 1-1 mapping */ |
Serhiy Storchaka | 45d16d9 | 2013-01-15 15:01:20 +0200 | [diff] [blame] | 7540 | Py_UCS4 value = PyUnicode_READ_CHAR(x, 0); |
Serhiy Storchaka | 4fb8cae | 2013-01-15 14:43:21 +0200 | [diff] [blame] | 7541 | if (value == 0xFFFE) |
| 7542 | goto Undefined; |
Serhiy Storchaka | afb1cb5 | 2013-01-29 12:13:22 +0200 | [diff] [blame] | 7543 | if (unicode_putchar(&v, &outpos, value) < 0) { |
| 7544 | Py_DECREF(x); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7545 | goto onError; |
Serhiy Storchaka | afb1cb5 | 2013-01-29 12:13:22 +0200 | [diff] [blame] | 7546 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7547 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7548 | else if (targetsize > 1) { |
| 7549 | /* 1-n mapping */ |
| 7550 | if (targetsize > extrachars) { |
| 7551 | /* resize first */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7552 | Py_ssize_t needed = (targetsize - extrachars) + \ |
| 7553 | (targetsize << 2); |
| 7554 | extrachars += needed; |
| 7555 | /* XXX overflow detection missing */ |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 7556 | if (unicode_resize(&v, |
| 7557 | PyUnicode_GET_LENGTH(v) + needed) < 0) |
| 7558 | { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7559 | Py_DECREF(x); |
| 7560 | goto onError; |
| 7561 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7562 | } |
Serhiy Storchaka | afb1cb5 | 2013-01-29 12:13:22 +0200 | [diff] [blame] | 7563 | if (unicode_widen(&v, outpos, |
| 7564 | PyUnicode_MAX_CHAR_VALUE(x)) < 0) { |
| 7565 | Py_DECREF(x); |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7566 | goto onError; |
Serhiy Storchaka | afb1cb5 | 2013-01-29 12:13:22 +0200 | [diff] [blame] | 7567 | } |
Martin v. Löwis | e9b11c1 | 2011-11-08 17:35:34 +0100 | [diff] [blame] | 7568 | PyUnicode_CopyCharacters(v, outpos, x, 0, targetsize); |
| 7569 | outpos += targetsize; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7570 | extrachars -= targetsize; |
| 7571 | } |
| 7572 | /* 1-0 mapping: skip the character */ |
| 7573 | } |
| 7574 | else { |
| 7575 | /* wrong return value */ |
| 7576 | PyErr_SetString(PyExc_TypeError, |
| 7577 | "character mapping must return integer, None or str"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7578 | Py_DECREF(x); |
| 7579 | goto onError; |
| 7580 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7581 | Py_DECREF(x); |
| 7582 | ++s; |
Serhiy Storchaka | 4fb8cae | 2013-01-15 14:43:21 +0200 | [diff] [blame] | 7583 | continue; |
| 7584 | Undefined: |
| 7585 | /* undefined mapping */ |
| 7586 | Py_XDECREF(x); |
Serhiy Storchaka | 4fb8cae | 2013-01-15 14:43:21 +0200 | [diff] [blame] | 7587 | startinpos = s-starts; |
| 7588 | endinpos = startinpos+1; |
| 7589 | if (unicode_decode_call_errorhandler( |
| 7590 | errors, &errorHandler, |
| 7591 | "charmap", "character maps to <undefined>", |
| 7592 | &starts, &e, &startinpos, &endinpos, &exc, &s, |
Serhiy Storchaka | 45d16d9 | 2013-01-15 15:01:20 +0200 | [diff] [blame] | 7593 | &v, &outpos)) { |
Serhiy Storchaka | 4fb8cae | 2013-01-15 14:43:21 +0200 | [diff] [blame] | 7594 | goto onError; |
| 7595 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7596 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7597 | } |
Victor Stinner | 16e6a80 | 2011-12-12 13:24:15 +0100 | [diff] [blame] | 7598 | if (unicode_resize(&v, outpos) < 0) |
Antoine Pitrou | a8f63c0 | 2011-11-08 18:37:16 +0100 | [diff] [blame] | 7599 | goto onError; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7600 | Py_XDECREF(errorHandler); |
| 7601 | Py_XDECREF(exc); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 7602 | return unicode_result(v); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 7603 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7604 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7605 | Py_XDECREF(errorHandler); |
| 7606 | Py_XDECREF(exc); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7607 | Py_XDECREF(v); |
| 7608 | return NULL; |
| 7609 | } |
| 7610 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7611 | /* Charmap encoding: the lookup table */ |
| 7612 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7613 | struct encoding_map { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7614 | PyObject_HEAD |
| 7615 | unsigned char level1[32]; |
| 7616 | int count2, count3; |
| 7617 | unsigned char level23[1]; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7618 | }; |
| 7619 | |
| 7620 | static PyObject* |
| 7621 | encoding_map_size(PyObject *obj, PyObject* args) |
| 7622 | { |
| 7623 | struct encoding_map *map = (struct encoding_map*)obj; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7624 | return PyLong_FromLong(sizeof(*map) - 1 + 16*map->count2 + |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7625 | 128*map->count3); |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7626 | } |
| 7627 | |
| 7628 | static PyMethodDef encoding_map_methods[] = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7629 | {"size", encoding_map_size, METH_NOARGS, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7630 | PyDoc_STR("Return the size (in bytes) of this object") }, |
| 7631 | { 0 } |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7632 | }; |
| 7633 | |
| 7634 | static void |
| 7635 | encoding_map_dealloc(PyObject* o) |
| 7636 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7637 | PyObject_FREE(o); |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7638 | } |
| 7639 | |
| 7640 | static PyTypeObject EncodingMapType = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7641 | PyVarObject_HEAD_INIT(NULL, 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7642 | "EncodingMap", /*tp_name*/ |
| 7643 | sizeof(struct encoding_map), /*tp_basicsize*/ |
| 7644 | 0, /*tp_itemsize*/ |
| 7645 | /* methods */ |
| 7646 | encoding_map_dealloc, /*tp_dealloc*/ |
| 7647 | 0, /*tp_print*/ |
| 7648 | 0, /*tp_getattr*/ |
| 7649 | 0, /*tp_setattr*/ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 7650 | 0, /*tp_reserved*/ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7651 | 0, /*tp_repr*/ |
| 7652 | 0, /*tp_as_number*/ |
| 7653 | 0, /*tp_as_sequence*/ |
| 7654 | 0, /*tp_as_mapping*/ |
| 7655 | 0, /*tp_hash*/ |
| 7656 | 0, /*tp_call*/ |
| 7657 | 0, /*tp_str*/ |
| 7658 | 0, /*tp_getattro*/ |
| 7659 | 0, /*tp_setattro*/ |
| 7660 | 0, /*tp_as_buffer*/ |
| 7661 | Py_TPFLAGS_DEFAULT, /*tp_flags*/ |
| 7662 | 0, /*tp_doc*/ |
| 7663 | 0, /*tp_traverse*/ |
| 7664 | 0, /*tp_clear*/ |
| 7665 | 0, /*tp_richcompare*/ |
| 7666 | 0, /*tp_weaklistoffset*/ |
| 7667 | 0, /*tp_iter*/ |
| 7668 | 0, /*tp_iternext*/ |
| 7669 | encoding_map_methods, /*tp_methods*/ |
| 7670 | 0, /*tp_members*/ |
| 7671 | 0, /*tp_getset*/ |
| 7672 | 0, /*tp_base*/ |
| 7673 | 0, /*tp_dict*/ |
| 7674 | 0, /*tp_descr_get*/ |
| 7675 | 0, /*tp_descr_set*/ |
| 7676 | 0, /*tp_dictoffset*/ |
| 7677 | 0, /*tp_init*/ |
| 7678 | 0, /*tp_alloc*/ |
| 7679 | 0, /*tp_new*/ |
| 7680 | 0, /*tp_free*/ |
| 7681 | 0, /*tp_is_gc*/ |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7682 | }; |
| 7683 | |
| 7684 | PyObject* |
| 7685 | PyUnicode_BuildEncodingMap(PyObject* string) |
| 7686 | { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7687 | PyObject *result; |
| 7688 | struct encoding_map *mresult; |
| 7689 | int i; |
| 7690 | int need_dict = 0; |
| 7691 | unsigned char level1[32]; |
| 7692 | unsigned char level2[512]; |
| 7693 | unsigned char *mlevel1, *mlevel2, *mlevel3; |
| 7694 | int count2 = 0, count3 = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7695 | int kind; |
| 7696 | void *data; |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7697 | Py_ssize_t length; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7698 | Py_UCS4 ch; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7699 | |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7700 | if (!PyUnicode_Check(string) || !PyUnicode_GET_LENGTH(string)) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7701 | PyErr_BadArgument(); |
| 7702 | return NULL; |
| 7703 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7704 | kind = PyUnicode_KIND(string); |
| 7705 | data = PyUnicode_DATA(string); |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7706 | length = PyUnicode_GET_LENGTH(string); |
| 7707 | length = Py_MIN(length, 256); |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7708 | memset(level1, 0xFF, sizeof level1); |
| 7709 | memset(level2, 0xFF, sizeof level2); |
| 7710 | |
| 7711 | /* If there isn't a one-to-one mapping of NULL to \0, |
| 7712 | or if there are non-BMP characters, we need to use |
| 7713 | a mapping dictionary. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7714 | if (PyUnicode_READ(kind, data, 0) != 0) |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7715 | need_dict = 1; |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7716 | for (i = 1; i < length; i++) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7717 | int l1, l2; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7718 | ch = PyUnicode_READ(kind, data, i); |
| 7719 | if (ch == 0 || ch > 0xFFFF) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7720 | need_dict = 1; |
| 7721 | break; |
| 7722 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7723 | if (ch == 0xFFFE) |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7724 | /* unmapped character */ |
| 7725 | continue; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7726 | l1 = ch >> 11; |
| 7727 | l2 = ch >> 7; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7728 | if (level1[l1] == 0xFF) |
| 7729 | level1[l1] = count2++; |
| 7730 | if (level2[l2] == 0xFF) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7731 | level2[l2] = count3++; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7732 | } |
| 7733 | |
| 7734 | if (count2 >= 0xFF || count3 >= 0xFF) |
| 7735 | need_dict = 1; |
| 7736 | |
| 7737 | if (need_dict) { |
| 7738 | PyObject *result = PyDict_New(); |
| 7739 | PyObject *key, *value; |
| 7740 | if (!result) |
| 7741 | return NULL; |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7742 | for (i = 0; i < length; i++) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 7743 | key = PyLong_FromLong(PyUnicode_READ(kind, data, i)); |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 7744 | value = PyLong_FromLong(i); |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7745 | if (!key || !value) |
| 7746 | goto failed1; |
| 7747 | if (PyDict_SetItem(result, key, value) == -1) |
| 7748 | goto failed1; |
| 7749 | Py_DECREF(key); |
| 7750 | Py_DECREF(value); |
| 7751 | } |
| 7752 | return result; |
| 7753 | failed1: |
| 7754 | Py_XDECREF(key); |
| 7755 | Py_XDECREF(value); |
| 7756 | Py_DECREF(result); |
| 7757 | return NULL; |
| 7758 | } |
| 7759 | |
| 7760 | /* Create a three-level trie */ |
| 7761 | result = PyObject_MALLOC(sizeof(struct encoding_map) + |
| 7762 | 16*count2 + 128*count3 - 1); |
| 7763 | if (!result) |
| 7764 | return PyErr_NoMemory(); |
| 7765 | PyObject_Init(result, &EncodingMapType); |
| 7766 | mresult = (struct encoding_map*)result; |
| 7767 | mresult->count2 = count2; |
| 7768 | mresult->count3 = count3; |
| 7769 | mlevel1 = mresult->level1; |
| 7770 | mlevel2 = mresult->level23; |
| 7771 | mlevel3 = mresult->level23 + 16*count2; |
| 7772 | memcpy(mlevel1, level1, 32); |
| 7773 | memset(mlevel2, 0xFF, 16*count2); |
| 7774 | memset(mlevel3, 0, 128*count3); |
| 7775 | count3 = 0; |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7776 | for (i = 1; i < length; i++) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7777 | int o1, o2, o3, i2, i3; |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7778 | Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
| 7779 | if (ch == 0xFFFE) |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7780 | /* unmapped character */ |
| 7781 | continue; |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7782 | o1 = ch>>11; |
| 7783 | o2 = (ch>>7) & 0xF; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7784 | i2 = 16*mlevel1[o1] + o2; |
| 7785 | if (mlevel2[i2] == 0xFF) |
| 7786 | mlevel2[i2] = count3++; |
Antoine Pitrou | aaefac7 | 2012-06-16 22:48:21 +0200 | [diff] [blame] | 7787 | o3 = ch & 0x7F; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7788 | i3 = 128*mlevel2[i2] + o3; |
| 7789 | mlevel3[i3] = i; |
| 7790 | } |
| 7791 | return result; |
| 7792 | } |
| 7793 | |
| 7794 | static int |
Victor Stinner | 2216899 | 2011-11-20 17:09:18 +0100 | [diff] [blame] | 7795 | encoding_map_lookup(Py_UCS4 c, PyObject *mapping) |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7796 | { |
| 7797 | struct encoding_map *map = (struct encoding_map*)mapping; |
| 7798 | int l1 = c>>11; |
| 7799 | int l2 = (c>>7) & 0xF; |
| 7800 | int l3 = c & 0x7F; |
| 7801 | int i; |
| 7802 | |
Victor Stinner | 2216899 | 2011-11-20 17:09:18 +0100 | [diff] [blame] | 7803 | if (c > 0xFFFF) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7804 | return -1; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7805 | if (c == 0) |
| 7806 | return 0; |
| 7807 | /* level 1*/ |
| 7808 | i = map->level1[l1]; |
| 7809 | if (i == 0xFF) { |
| 7810 | return -1; |
| 7811 | } |
| 7812 | /* level 2*/ |
| 7813 | i = map->level23[16*i+l2]; |
| 7814 | if (i == 0xFF) { |
| 7815 | return -1; |
| 7816 | } |
| 7817 | /* level 3 */ |
| 7818 | i = map->level23[16*map->count2 + 128*i + l3]; |
| 7819 | if (i == 0) { |
| 7820 | return -1; |
| 7821 | } |
| 7822 | return i; |
| 7823 | } |
| 7824 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7825 | /* Lookup the character ch in the mapping. If the character |
| 7826 | can't be found, Py_None is returned (or NULL, if another |
Fred Drake | db390c1 | 2005-10-28 14:39:47 +0000 | [diff] [blame] | 7827 | error occurred). */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7828 | static PyObject * |
Victor Stinner | 2216899 | 2011-11-20 17:09:18 +0100 | [diff] [blame] | 7829 | charmapencode_lookup(Py_UCS4 c, PyObject *mapping) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7830 | { |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 7831 | PyObject *w = PyLong_FromLong((long)c); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7832 | PyObject *x; |
| 7833 | |
| 7834 | if (w == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7835 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7836 | x = PyObject_GetItem(mapping, w); |
| 7837 | Py_DECREF(w); |
| 7838 | if (x == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7839 | if (PyErr_ExceptionMatches(PyExc_LookupError)) { |
| 7840 | /* No mapping found means: mapping is undefined. */ |
| 7841 | PyErr_Clear(); |
| 7842 | x = Py_None; |
| 7843 | Py_INCREF(x); |
| 7844 | return x; |
| 7845 | } else |
| 7846 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7847 | } |
Walter Dörwald | adc7274 | 2003-01-08 22:01:33 +0000 | [diff] [blame] | 7848 | else if (x == Py_None) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7849 | return x; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 7850 | else if (PyLong_Check(x)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7851 | long value = PyLong_AS_LONG(x); |
| 7852 | if (value < 0 || value > 255) { |
| 7853 | PyErr_SetString(PyExc_TypeError, |
| 7854 | "character mapping must be in range(256)"); |
| 7855 | Py_DECREF(x); |
| 7856 | return NULL; |
| 7857 | } |
| 7858 | return x; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7859 | } |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 7860 | else if (PyBytes_Check(x)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7861 | return x; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7862 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7863 | /* wrong return value */ |
| 7864 | PyErr_Format(PyExc_TypeError, |
| 7865 | "character mapping must return integer, bytes or None, not %.400s", |
| 7866 | x->ob_type->tp_name); |
| 7867 | Py_DECREF(x); |
| 7868 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 7869 | } |
| 7870 | } |
| 7871 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7872 | static int |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 7873 | charmapencode_resize(PyObject **outobj, Py_ssize_t *outpos, Py_ssize_t requiredsize) |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7874 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7875 | Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj); |
| 7876 | /* exponentially overallocate to minimize reallocations */ |
| 7877 | if (requiredsize < 2*outsize) |
| 7878 | requiredsize = 2*outsize; |
| 7879 | if (_PyBytes_Resize(outobj, requiredsize)) |
| 7880 | return -1; |
| 7881 | return 0; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7882 | } |
| 7883 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7884 | typedef enum charmapencode_result { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7885 | enc_SUCCESS, enc_FAILED, enc_EXCEPTION |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7886 | } charmapencode_result; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7887 | /* 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] | 7888 | various state variables. Resize the output bytes object if not enough |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7889 | space is available. Return a new reference to the object that |
| 7890 | was put in the output buffer, or Py_None, if the mapping was undefined |
| 7891 | (in which case no character was written) or NULL, if a |
Andrew M. Kuchling | 8294de5 | 2005-11-02 16:36:12 +0000 | [diff] [blame] | 7892 | reallocation error occurred. The caller must decref the result */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7893 | static charmapencode_result |
Victor Stinner | 2216899 | 2011-11-20 17:09:18 +0100 | [diff] [blame] | 7894 | charmapencode_output(Py_UCS4 c, PyObject *mapping, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7895 | PyObject **outobj, Py_ssize_t *outpos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7896 | { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7897 | PyObject *rep; |
| 7898 | char *outstart; |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 7899 | Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7900 | |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 7901 | if (Py_TYPE(mapping) == &EncodingMapType) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7902 | int res = encoding_map_lookup(c, mapping); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7903 | Py_ssize_t requiredsize = *outpos+1; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7904 | if (res == -1) |
| 7905 | return enc_FAILED; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7906 | if (outsize<requiredsize) |
| 7907 | if (charmapencode_resize(outobj, outpos, requiredsize)) |
| 7908 | return enc_EXCEPTION; |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 7909 | outstart = PyBytes_AS_STRING(*outobj); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7910 | outstart[(*outpos)++] = (char)res; |
| 7911 | return enc_SUCCESS; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7912 | } |
| 7913 | |
| 7914 | rep = charmapencode_lookup(c, mapping); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7915 | if (rep==NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7916 | return enc_EXCEPTION; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7917 | else if (rep==Py_None) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7918 | Py_DECREF(rep); |
| 7919 | return enc_FAILED; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7920 | } else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7921 | if (PyLong_Check(rep)) { |
| 7922 | Py_ssize_t requiredsize = *outpos+1; |
| 7923 | if (outsize<requiredsize) |
| 7924 | if (charmapencode_resize(outobj, outpos, requiredsize)) { |
| 7925 | Py_DECREF(rep); |
| 7926 | return enc_EXCEPTION; |
| 7927 | } |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 7928 | outstart = PyBytes_AS_STRING(*outobj); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7929 | outstart[(*outpos)++] = (char)PyLong_AS_LONG(rep); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7930 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7931 | else { |
| 7932 | const char *repchars = PyBytes_AS_STRING(rep); |
| 7933 | Py_ssize_t repsize = PyBytes_GET_SIZE(rep); |
| 7934 | Py_ssize_t requiredsize = *outpos+repsize; |
| 7935 | if (outsize<requiredsize) |
| 7936 | if (charmapencode_resize(outobj, outpos, requiredsize)) { |
| 7937 | Py_DECREF(rep); |
| 7938 | return enc_EXCEPTION; |
| 7939 | } |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 7940 | outstart = PyBytes_AS_STRING(*outobj); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7941 | memcpy(outstart + *outpos, repchars, repsize); |
| 7942 | *outpos += repsize; |
| 7943 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7944 | } |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7945 | Py_DECREF(rep); |
| 7946 | return enc_SUCCESS; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7947 | } |
| 7948 | |
| 7949 | /* handle an error in PyUnicode_EncodeCharmap |
| 7950 | Return 0 on success, -1 on error */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 7951 | static int |
| 7952 | charmap_encoding_error( |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 7953 | PyObject *unicode, Py_ssize_t *inpos, PyObject *mapping, |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7954 | PyObject **exceptionObject, |
Walter Dörwald | e5402fb | 2003-08-14 20:25:29 +0000 | [diff] [blame] | 7955 | int *known_errorHandler, PyObject **errorHandler, const char *errors, |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 7956 | PyObject **res, Py_ssize_t *respos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7957 | { |
| 7958 | PyObject *repunicode = NULL; /* initialize to prevent gcc warning */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 7959 | Py_ssize_t size, repsize; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 7960 | Py_ssize_t newpos; |
Victor Stinner | ae4f7c8 | 2011-11-20 18:28:55 +0100 | [diff] [blame] | 7961 | enum PyUnicode_Kind kind; |
| 7962 | void *data; |
| 7963 | Py_ssize_t index; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7964 | /* startpos for collecting unencodable chars */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 7965 | Py_ssize_t collstartpos = *inpos; |
| 7966 | Py_ssize_t collendpos = *inpos+1; |
| 7967 | Py_ssize_t collpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7968 | char *encoding = "charmap"; |
| 7969 | char *reason = "character maps to <undefined>"; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7970 | charmapencode_result x; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 7971 | Py_UCS4 ch; |
Brian Curtin | 2787ea4 | 2011-11-02 15:09:37 -0500 | [diff] [blame] | 7972 | int val; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7973 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 7974 | if (PyUnicode_READY(unicode) == -1) |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 7975 | return -1; |
| 7976 | size = PyUnicode_GET_LENGTH(unicode); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7977 | /* find all unencodable characters */ |
| 7978 | while (collendpos < size) { |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 7979 | PyObject *rep; |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 7980 | if (Py_TYPE(mapping) == &EncodingMapType) { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 7981 | ch = PyUnicode_READ_CHAR(unicode, collendpos); |
Brian Curtin | 2787ea4 | 2011-11-02 15:09:37 -0500 | [diff] [blame] | 7982 | val = encoding_map_lookup(ch, mapping); |
| 7983 | if (val != -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7984 | break; |
| 7985 | ++collendpos; |
| 7986 | continue; |
| 7987 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7988 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 7989 | ch = PyUnicode_READ_CHAR(unicode, collendpos); |
| 7990 | rep = charmapencode_lookup(ch, mapping); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7991 | if (rep==NULL) |
| 7992 | return -1; |
| 7993 | else if (rep!=Py_None) { |
| 7994 | Py_DECREF(rep); |
| 7995 | break; |
| 7996 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 7997 | Py_DECREF(rep); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 7998 | ++collendpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 7999 | } |
| 8000 | /* cache callback name lookup |
| 8001 | * (if not done yet, i.e. it's the first error) */ |
| 8002 | if (*known_errorHandler==-1) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8003 | if ((errors==NULL) || (!strcmp(errors, "strict"))) |
| 8004 | *known_errorHandler = 1; |
| 8005 | else if (!strcmp(errors, "replace")) |
| 8006 | *known_errorHandler = 2; |
| 8007 | else if (!strcmp(errors, "ignore")) |
| 8008 | *known_errorHandler = 3; |
| 8009 | else if (!strcmp(errors, "xmlcharrefreplace")) |
| 8010 | *known_errorHandler = 4; |
| 8011 | else |
| 8012 | *known_errorHandler = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8013 | } |
| 8014 | switch (*known_errorHandler) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8015 | case 1: /* strict */ |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8016 | raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8017 | return -1; |
| 8018 | case 2: /* replace */ |
| 8019 | for (collpos = collstartpos; collpos<collendpos; ++collpos) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8020 | x = charmapencode_output('?', mapping, res, respos); |
| 8021 | if (x==enc_EXCEPTION) { |
| 8022 | return -1; |
| 8023 | } |
| 8024 | else if (x==enc_FAILED) { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8025 | raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8026 | return -1; |
| 8027 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8028 | } |
| 8029 | /* fall through */ |
| 8030 | case 3: /* ignore */ |
| 8031 | *inpos = collendpos; |
| 8032 | break; |
| 8033 | case 4: /* xmlcharrefreplace */ |
| 8034 | /* generate replacement (temporarily (mis)uses p) */ |
| 8035 | for (collpos = collstartpos; collpos < collendpos; ++collpos) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8036 | char buffer[2+29+1+1]; |
| 8037 | char *cp; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8038 | sprintf(buffer, "&#%d;", (int)PyUnicode_READ_CHAR(unicode, collpos)); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8039 | for (cp = buffer; *cp; ++cp) { |
| 8040 | x = charmapencode_output(*cp, mapping, res, respos); |
| 8041 | if (x==enc_EXCEPTION) |
| 8042 | return -1; |
| 8043 | else if (x==enc_FAILED) { |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8044 | raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8045 | return -1; |
| 8046 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8047 | } |
| 8048 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8049 | *inpos = collendpos; |
| 8050 | break; |
| 8051 | default: |
| 8052 | repunicode = unicode_encode_call_errorhandler(errors, errorHandler, |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8053 | encoding, reason, unicode, exceptionObject, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8054 | collstartpos, collendpos, &newpos); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8055 | if (repunicode == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8056 | return -1; |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 8057 | if (PyBytes_Check(repunicode)) { |
| 8058 | /* Directly copy bytes result to output. */ |
| 8059 | Py_ssize_t outsize = PyBytes_Size(*res); |
| 8060 | Py_ssize_t requiredsize; |
| 8061 | repsize = PyBytes_Size(repunicode); |
| 8062 | requiredsize = *respos + repsize; |
| 8063 | if (requiredsize > outsize) |
| 8064 | /* Make room for all additional bytes. */ |
| 8065 | if (charmapencode_resize(res, respos, requiredsize)) { |
| 8066 | Py_DECREF(repunicode); |
| 8067 | return -1; |
| 8068 | } |
| 8069 | memcpy(PyBytes_AsString(*res) + *respos, |
| 8070 | PyBytes_AsString(repunicode), repsize); |
| 8071 | *respos += repsize; |
| 8072 | *inpos = newpos; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 8073 | Py_DECREF(repunicode); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 8074 | break; |
Martin v. Löwis | db12d45 | 2009-05-02 18:52:14 +0000 | [diff] [blame] | 8075 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8076 | /* generate replacement */ |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 8077 | if (PyUnicode_READY(repunicode) == -1) { |
Victor Stinner | ae4f7c8 | 2011-11-20 18:28:55 +0100 | [diff] [blame] | 8078 | Py_DECREF(repunicode); |
| 8079 | return -1; |
| 8080 | } |
Victor Stinner | 9e30aa5 | 2011-11-21 02:49:52 +0100 | [diff] [blame] | 8081 | repsize = PyUnicode_GET_LENGTH(repunicode); |
Victor Stinner | ae4f7c8 | 2011-11-20 18:28:55 +0100 | [diff] [blame] | 8082 | data = PyUnicode_DATA(repunicode); |
| 8083 | kind = PyUnicode_KIND(repunicode); |
| 8084 | for (index = 0; index < repsize; index++) { |
| 8085 | Py_UCS4 repch = PyUnicode_READ(kind, data, index); |
| 8086 | x = charmapencode_output(repch, mapping, res, respos); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8087 | if (x==enc_EXCEPTION) { |
Victor Stinner | ae4f7c8 | 2011-11-20 18:28:55 +0100 | [diff] [blame] | 8088 | Py_DECREF(repunicode); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8089 | return -1; |
| 8090 | } |
| 8091 | else if (x==enc_FAILED) { |
| 8092 | Py_DECREF(repunicode); |
Martin v. Löwis | 12be46c | 2011-11-04 19:04:15 +0100 | [diff] [blame] | 8093 | raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8094 | return -1; |
| 8095 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8096 | } |
| 8097 | *inpos = newpos; |
| 8098 | Py_DECREF(repunicode); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8099 | } |
| 8100 | return 0; |
| 8101 | } |
| 8102 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8103 | PyObject * |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8104 | _PyUnicode_EncodeCharmap(PyObject *unicode, |
| 8105 | PyObject *mapping, |
| 8106 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8107 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8108 | /* output object */ |
| 8109 | PyObject *res = NULL; |
| 8110 | /* current input position */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8111 | Py_ssize_t inpos = 0; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8112 | Py_ssize_t size; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8113 | /* current output position */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8114 | Py_ssize_t respos = 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8115 | PyObject *errorHandler = NULL; |
| 8116 | PyObject *exc = NULL; |
| 8117 | /* the following variable is used for caching string comparisons |
| 8118 | * -1=not initialized, 0=unknown, 1=strict, 2=replace, |
| 8119 | * 3=ignore, 4=xmlcharrefreplace */ |
| 8120 | int known_errorHandler = -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8121 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 8122 | if (PyUnicode_READY(unicode) == -1) |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8123 | return NULL; |
| 8124 | size = PyUnicode_GET_LENGTH(unicode); |
| 8125 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8126 | /* Default to Latin-1 */ |
| 8127 | if (mapping == NULL) |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8128 | return unicode_encode_ucs1(unicode, errors, 256); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8129 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8130 | /* allocate enough for a simple encoding without |
| 8131 | replacements, if we need more, we'll resize */ |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 8132 | res = PyBytes_FromStringAndSize(NULL, size); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8133 | if (res == NULL) |
| 8134 | goto onError; |
Marc-André Lemburg | b752077 | 2000-08-14 11:29:19 +0000 | [diff] [blame] | 8135 | if (size == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8136 | return res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8137 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8138 | while (inpos<size) { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8139 | Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, inpos); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8140 | /* try to encode it */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8141 | charmapencode_result x = charmapencode_output(ch, mapping, &res, &respos); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8142 | if (x==enc_EXCEPTION) /* error */ |
| 8143 | goto onError; |
| 8144 | if (x==enc_FAILED) { /* unencodable character */ |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8145 | if (charmap_encoding_error(unicode, &inpos, mapping, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8146 | &exc, |
| 8147 | &known_errorHandler, &errorHandler, errors, |
| 8148 | &res, &respos)) { |
| 8149 | goto onError; |
| 8150 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8151 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8152 | else |
| 8153 | /* done with this character => adjust input position */ |
| 8154 | ++inpos; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8155 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8156 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8157 | /* Resize if we allocated to much */ |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 8158 | if (respos<PyBytes_GET_SIZE(res)) |
Alexandre Vassalotti | 44531cb | 2008-12-27 09:16:49 +0000 | [diff] [blame] | 8159 | if (_PyBytes_Resize(&res, respos) < 0) |
| 8160 | goto onError; |
Guido van Rossum | 98297ee | 2007-11-06 21:34:58 +0000 | [diff] [blame] | 8161 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8162 | Py_XDECREF(exc); |
| 8163 | Py_XDECREF(errorHandler); |
| 8164 | return res; |
| 8165 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8166 | onError: |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8167 | Py_XDECREF(res); |
| 8168 | Py_XDECREF(exc); |
| 8169 | Py_XDECREF(errorHandler); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8170 | return NULL; |
| 8171 | } |
| 8172 | |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8173 | /* Deprecated */ |
| 8174 | PyObject * |
| 8175 | PyUnicode_EncodeCharmap(const Py_UNICODE *p, |
| 8176 | Py_ssize_t size, |
| 8177 | PyObject *mapping, |
| 8178 | const char *errors) |
| 8179 | { |
| 8180 | PyObject *result; |
| 8181 | PyObject *unicode = PyUnicode_FromUnicode(p, size); |
| 8182 | if (unicode == NULL) |
| 8183 | return NULL; |
| 8184 | result = _PyUnicode_EncodeCharmap(unicode, mapping, errors); |
| 8185 | Py_DECREF(unicode); |
Victor Stinner | fc026c9 | 2011-11-04 00:24:51 +0100 | [diff] [blame] | 8186 | return result; |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8187 | } |
| 8188 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8189 | PyObject * |
| 8190 | PyUnicode_AsCharmapString(PyObject *unicode, |
| 8191 | PyObject *mapping) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8192 | { |
| 8193 | if (!PyUnicode_Check(unicode) || mapping == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8194 | PyErr_BadArgument(); |
| 8195 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8196 | } |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8197 | return _PyUnicode_EncodeCharmap(unicode, mapping, NULL); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8198 | } |
| 8199 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8200 | /* create or adjust a UnicodeTranslateError */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8201 | static void |
| 8202 | make_translate_exception(PyObject **exceptionObject, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8203 | PyObject *unicode, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8204 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 8205 | const char *reason) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8206 | { |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8207 | if (*exceptionObject == NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8208 | *exceptionObject = _PyUnicodeTranslateError_Create( |
| 8209 | unicode, startpos, endpos, reason); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8210 | } |
| 8211 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8212 | if (PyUnicodeTranslateError_SetStart(*exceptionObject, startpos)) |
| 8213 | goto onError; |
| 8214 | if (PyUnicodeTranslateError_SetEnd(*exceptionObject, endpos)) |
| 8215 | goto onError; |
| 8216 | if (PyUnicodeTranslateError_SetReason(*exceptionObject, reason)) |
| 8217 | goto onError; |
| 8218 | return; |
| 8219 | onError: |
| 8220 | Py_DECREF(*exceptionObject); |
| 8221 | *exceptionObject = NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8222 | } |
| 8223 | } |
| 8224 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8225 | /* raises a UnicodeTranslateError */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8226 | static void |
| 8227 | raise_translate_exception(PyObject **exceptionObject, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8228 | PyObject *unicode, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8229 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 8230 | const char *reason) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8231 | { |
| 8232 | make_translate_exception(exceptionObject, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8233 | unicode, startpos, endpos, reason); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8234 | if (*exceptionObject != NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8235 | PyCodec_StrictErrors(*exceptionObject); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8236 | } |
| 8237 | |
| 8238 | /* error handling callback helper: |
| 8239 | build arguments, call the callback and check the arguments, |
| 8240 | put the result into newpos and return the replacement string, which |
| 8241 | has to be freed by the caller */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8242 | static PyObject * |
| 8243 | unicode_translate_call_errorhandler(const char *errors, |
| 8244 | PyObject **errorHandler, |
| 8245 | const char *reason, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8246 | PyObject *unicode, PyObject **exceptionObject, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8247 | Py_ssize_t startpos, Py_ssize_t endpos, |
| 8248 | Py_ssize_t *newpos) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8249 | { |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 8250 | 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] | 8251 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 8252 | Py_ssize_t i_newpos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8253 | PyObject *restuple; |
| 8254 | PyObject *resunicode; |
| 8255 | |
| 8256 | if (*errorHandler == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8257 | *errorHandler = PyCodec_LookupError(errors); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8258 | if (*errorHandler == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8259 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8260 | } |
| 8261 | |
| 8262 | make_translate_exception(exceptionObject, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8263 | unicode, startpos, endpos, reason); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8264 | if (*exceptionObject == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8265 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8266 | |
| 8267 | restuple = PyObject_CallFunctionObjArgs( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8268 | *errorHandler, *exceptionObject, NULL); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8269 | if (restuple == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8270 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8271 | if (!PyTuple_Check(restuple)) { |
Benjamin Peterson | d75fcb4 | 2009-02-19 04:22:03 +0000 | [diff] [blame] | 8272 | PyErr_SetString(PyExc_TypeError, &argparse[4]); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8273 | Py_DECREF(restuple); |
| 8274 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8275 | } |
| 8276 | if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8277 | &resunicode, &i_newpos)) { |
| 8278 | Py_DECREF(restuple); |
| 8279 | return NULL; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8280 | } |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8281 | if (i_newpos<0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8282 | *newpos = PyUnicode_GET_LENGTH(unicode)+i_newpos; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8283 | else |
| 8284 | *newpos = i_newpos; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8285 | if (*newpos<0 || *newpos>PyUnicode_GET_LENGTH(unicode)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8286 | PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos); |
| 8287 | Py_DECREF(restuple); |
| 8288 | return NULL; |
Walter Dörwald | 2e0b18a | 2003-01-31 17:19:08 +0000 | [diff] [blame] | 8289 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8290 | Py_INCREF(resunicode); |
| 8291 | Py_DECREF(restuple); |
| 8292 | return resunicode; |
| 8293 | } |
| 8294 | |
| 8295 | /* Lookup the character ch in the mapping and put the result in result, |
| 8296 | which must be decrefed by the caller. |
| 8297 | Return 0 on success, -1 on error */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8298 | static int |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8299 | charmaptranslate_lookup(Py_UCS4 c, PyObject *mapping, PyObject **result) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8300 | { |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 8301 | PyObject *w = PyLong_FromLong((long)c); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8302 | PyObject *x; |
| 8303 | |
| 8304 | if (w == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8305 | return -1; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8306 | x = PyObject_GetItem(mapping, w); |
| 8307 | Py_DECREF(w); |
| 8308 | if (x == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8309 | if (PyErr_ExceptionMatches(PyExc_LookupError)) { |
| 8310 | /* No mapping found means: use 1:1 mapping. */ |
| 8311 | PyErr_Clear(); |
| 8312 | *result = NULL; |
| 8313 | return 0; |
| 8314 | } else |
| 8315 | return -1; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8316 | } |
| 8317 | else if (x == Py_None) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8318 | *result = x; |
| 8319 | return 0; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8320 | } |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 8321 | else if (PyLong_Check(x)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8322 | long value = PyLong_AS_LONG(x); |
| 8323 | long max = PyUnicode_GetMax(); |
| 8324 | if (value < 0 || value > max) { |
| 8325 | PyErr_Format(PyExc_TypeError, |
Guido van Rossum | 5a2f7e60 | 2007-10-24 21:13:09 +0000 | [diff] [blame] | 8326 | "character mapping must be in range(0x%x)", max+1); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8327 | Py_DECREF(x); |
| 8328 | return -1; |
| 8329 | } |
| 8330 | *result = x; |
| 8331 | return 0; |
| 8332 | } |
| 8333 | else if (PyUnicode_Check(x)) { |
| 8334 | *result = x; |
| 8335 | return 0; |
| 8336 | } |
| 8337 | else { |
| 8338 | /* wrong return value */ |
| 8339 | PyErr_SetString(PyExc_TypeError, |
| 8340 | "character mapping must return integer, None or str"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8341 | Py_DECREF(x); |
| 8342 | return -1; |
| 8343 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8344 | } |
| 8345 | /* ensure that *outobj is at least requiredsize characters long, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8346 | if not reallocate and adjust various state variables. |
| 8347 | Return 0 on success, -1 on error */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8348 | static int |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8349 | charmaptranslate_makespace(Py_UCS4 **outobj, Py_ssize_t *psize, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8350 | Py_ssize_t requiredsize) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8351 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8352 | Py_ssize_t oldsize = *psize; |
Kristjan Valur Jonsson | 85634d7 | 2012-05-31 09:37:31 +0000 | [diff] [blame] | 8353 | Py_UCS4 *new_outobj; |
Walter Dörwald | 4894c30 | 2003-10-24 14:25:28 +0000 | [diff] [blame] | 8354 | if (requiredsize > oldsize) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8355 | /* exponentially overallocate to minimize reallocations */ |
| 8356 | if (requiredsize < 2 * oldsize) |
| 8357 | requiredsize = 2 * oldsize; |
Kristjan Valur Jonsson | 85634d7 | 2012-05-31 09:37:31 +0000 | [diff] [blame] | 8358 | new_outobj = PyMem_Realloc(*outobj, requiredsize * sizeof(Py_UCS4)); |
| 8359 | if (new_outobj == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8360 | return -1; |
Kristjan Valur Jonsson | 85634d7 | 2012-05-31 09:37:31 +0000 | [diff] [blame] | 8361 | *outobj = new_outobj; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8362 | *psize = requiredsize; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8363 | } |
| 8364 | return 0; |
| 8365 | } |
| 8366 | /* lookup the character, put the result in the output string and adjust |
| 8367 | various state variables. Return a new reference to the object that |
| 8368 | was put in the output buffer in *result, or Py_None, if the mapping was |
| 8369 | undefined (in which case no character was written). |
| 8370 | The called must decref result. |
| 8371 | Return 0 on success, -1 on error. */ |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8372 | static int |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8373 | charmaptranslate_output(PyObject *input, Py_ssize_t ipos, |
| 8374 | PyObject *mapping, Py_UCS4 **output, |
| 8375 | Py_ssize_t *osize, Py_ssize_t *opos, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8376 | PyObject **res) |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8377 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8378 | Py_UCS4 curinp = PyUnicode_READ_CHAR(input, ipos); |
| 8379 | if (charmaptranslate_lookup(curinp, mapping, res)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8380 | return -1; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8381 | if (*res==NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8382 | /* not found => default to 1:1 mapping */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8383 | (*output)[(*opos)++] = curinp; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8384 | } |
| 8385 | else if (*res==Py_None) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8386 | ; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 8387 | else if (PyLong_Check(*res)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8388 | /* 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] | 8389 | (*output)[(*opos)++] = (Py_UCS4)PyLong_AS_LONG(*res); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8390 | } |
| 8391 | else if (PyUnicode_Check(*res)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8392 | Py_ssize_t repsize; |
| 8393 | if (PyUnicode_READY(*res) == -1) |
| 8394 | return -1; |
| 8395 | repsize = PyUnicode_GET_LENGTH(*res); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8396 | if (repsize==1) { |
| 8397 | /* 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] | 8398 | (*output)[(*opos)++] = PyUnicode_READ_CHAR(*res, 0); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8399 | } |
| 8400 | else if (repsize!=0) { |
| 8401 | /* more than one character */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8402 | Py_ssize_t requiredsize = *opos + |
| 8403 | (PyUnicode_GET_LENGTH(input) - ipos) + |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8404 | repsize - 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8405 | Py_ssize_t i; |
| 8406 | if (charmaptranslate_makespace(output, osize, requiredsize)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8407 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8408 | for(i = 0; i < repsize; i++) |
| 8409 | (*output)[(*opos)++] = PyUnicode_READ_CHAR(*res, i); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8410 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8411 | } |
| 8412 | else |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8413 | return -1; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8414 | return 0; |
| 8415 | } |
| 8416 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8417 | PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8418 | _PyUnicode_TranslateCharmap(PyObject *input, |
| 8419 | PyObject *mapping, |
| 8420 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8421 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8422 | /* input object */ |
| 8423 | char *idata; |
| 8424 | Py_ssize_t size, i; |
| 8425 | int kind; |
| 8426 | /* output buffer */ |
| 8427 | Py_UCS4 *output = NULL; |
| 8428 | Py_ssize_t osize; |
| 8429 | PyObject *res; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8430 | /* current output position */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8431 | Py_ssize_t opos; |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8432 | char *reason = "character maps to <undefined>"; |
| 8433 | PyObject *errorHandler = NULL; |
| 8434 | PyObject *exc = NULL; |
| 8435 | /* the following variable is used for caching string comparisons |
| 8436 | * -1=not initialized, 0=unknown, 1=strict, 2=replace, |
| 8437 | * 3=ignore, 4=xmlcharrefreplace */ |
| 8438 | int known_errorHandler = -1; |
| 8439 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8440 | if (mapping == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8441 | PyErr_BadArgument(); |
| 8442 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8443 | } |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8444 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8445 | if (PyUnicode_READY(input) == -1) |
| 8446 | return NULL; |
| 8447 | idata = (char*)PyUnicode_DATA(input); |
| 8448 | kind = PyUnicode_KIND(input); |
| 8449 | size = PyUnicode_GET_LENGTH(input); |
| 8450 | i = 0; |
| 8451 | |
| 8452 | if (size == 0) { |
| 8453 | Py_INCREF(input); |
| 8454 | return input; |
| 8455 | } |
| 8456 | |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8457 | /* allocate enough for a simple 1:1 translation without |
| 8458 | replacements, if we need more, we'll resize */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8459 | osize = size; |
| 8460 | output = PyMem_Malloc(osize * sizeof(Py_UCS4)); |
| 8461 | opos = 0; |
| 8462 | if (output == NULL) { |
| 8463 | PyErr_NoMemory(); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8464 | goto onError; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8465 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8466 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8467 | while (i<size) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8468 | /* try to encode it */ |
| 8469 | PyObject *x = NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8470 | if (charmaptranslate_output(input, i, mapping, |
| 8471 | &output, &osize, &opos, &x)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8472 | Py_XDECREF(x); |
| 8473 | goto onError; |
| 8474 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8475 | Py_XDECREF(x); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8476 | if (x!=Py_None) /* it worked => adjust input pointer */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8477 | ++i; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8478 | else { /* untranslatable character */ |
| 8479 | PyObject *repunicode = NULL; /* initialize to prevent gcc warning */ |
| 8480 | Py_ssize_t repsize; |
| 8481 | Py_ssize_t newpos; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8482 | Py_ssize_t uni2; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8483 | /* startpos for collecting untranslatable chars */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8484 | Py_ssize_t collstart = i; |
| 8485 | Py_ssize_t collend = i+1; |
| 8486 | Py_ssize_t coll; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8487 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8488 | /* find all untranslatable characters */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8489 | while (collend < size) { |
| 8490 | if (charmaptranslate_lookup(PyUnicode_READ(kind,idata, collend), mapping, &x)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8491 | goto onError; |
| 8492 | Py_XDECREF(x); |
| 8493 | if (x!=Py_None) |
| 8494 | break; |
| 8495 | ++collend; |
| 8496 | } |
| 8497 | /* cache callback name lookup |
| 8498 | * (if not done yet, i.e. it's the first error) */ |
| 8499 | if (known_errorHandler==-1) { |
| 8500 | if ((errors==NULL) || (!strcmp(errors, "strict"))) |
| 8501 | known_errorHandler = 1; |
| 8502 | else if (!strcmp(errors, "replace")) |
| 8503 | known_errorHandler = 2; |
| 8504 | else if (!strcmp(errors, "ignore")) |
| 8505 | known_errorHandler = 3; |
| 8506 | else if (!strcmp(errors, "xmlcharrefreplace")) |
| 8507 | known_errorHandler = 4; |
| 8508 | else |
| 8509 | known_errorHandler = 0; |
| 8510 | } |
| 8511 | switch (known_errorHandler) { |
| 8512 | case 1: /* strict */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8513 | raise_translate_exception(&exc, input, collstart, |
| 8514 | collend, reason); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8515 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8516 | case 2: /* replace */ |
| 8517 | /* 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] | 8518 | for (coll = collstart; coll<collend; coll++) |
| 8519 | output[opos++] = '?'; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8520 | /* fall through */ |
| 8521 | case 3: /* ignore */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8522 | i = collend; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8523 | break; |
| 8524 | case 4: /* xmlcharrefreplace */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8525 | /* generate replacement (temporarily (mis)uses i) */ |
| 8526 | for (i = collstart; i < collend; ++i) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8527 | char buffer[2+29+1+1]; |
| 8528 | char *cp; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8529 | sprintf(buffer, "&#%d;", PyUnicode_READ(kind, idata, i)); |
| 8530 | if (charmaptranslate_makespace(&output, &osize, |
| 8531 | opos+strlen(buffer)+(size-collend))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8532 | goto onError; |
| 8533 | for (cp = buffer; *cp; ++cp) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8534 | output[opos++] = *cp; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8535 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8536 | i = collend; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8537 | break; |
| 8538 | default: |
| 8539 | repunicode = unicode_translate_call_errorhandler(errors, &errorHandler, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8540 | reason, input, &exc, |
| 8541 | collstart, collend, &newpos); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 8542 | if (repunicode == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8543 | goto onError; |
Benjamin Peterson | 9ca3ffa | 2012-01-01 16:04:29 -0600 | [diff] [blame] | 8544 | if (PyUnicode_READY(repunicode) == -1) { |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 8545 | Py_DECREF(repunicode); |
| 8546 | goto onError; |
| 8547 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8548 | /* generate replacement */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8549 | repsize = PyUnicode_GET_LENGTH(repunicode); |
| 8550 | if (charmaptranslate_makespace(&output, &osize, |
| 8551 | opos+repsize+(size-collend))) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8552 | Py_DECREF(repunicode); |
| 8553 | goto onError; |
| 8554 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8555 | for (uni2 = 0; repsize-->0; ++uni2) |
| 8556 | output[opos++] = PyUnicode_READ_CHAR(repunicode, uni2); |
| 8557 | i = newpos; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8558 | Py_DECREF(repunicode); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8559 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8560 | } |
| 8561 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8562 | res = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, output, opos); |
| 8563 | if (!res) |
| 8564 | goto onError; |
| 8565 | PyMem_Free(output); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8566 | Py_XDECREF(exc); |
| 8567 | Py_XDECREF(errorHandler); |
| 8568 | return res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8569 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8570 | onError: |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8571 | PyMem_Free(output); |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 8572 | Py_XDECREF(exc); |
| 8573 | Py_XDECREF(errorHandler); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8574 | return NULL; |
| 8575 | } |
| 8576 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8577 | /* Deprecated. Use PyUnicode_Translate instead. */ |
| 8578 | PyObject * |
| 8579 | PyUnicode_TranslateCharmap(const Py_UNICODE *p, |
| 8580 | Py_ssize_t size, |
| 8581 | PyObject *mapping, |
| 8582 | const char *errors) |
| 8583 | { |
Christian Heimes | 5f520f4 | 2012-09-11 14:03:25 +0200 | [diff] [blame] | 8584 | PyObject *result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8585 | PyObject *unicode = PyUnicode_FromUnicode(p, size); |
| 8586 | if (!unicode) |
| 8587 | return NULL; |
Christian Heimes | 5f520f4 | 2012-09-11 14:03:25 +0200 | [diff] [blame] | 8588 | result = _PyUnicode_TranslateCharmap(unicode, mapping, errors); |
| 8589 | Py_DECREF(unicode); |
| 8590 | return result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8591 | } |
| 8592 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8593 | PyObject * |
| 8594 | PyUnicode_Translate(PyObject *str, |
| 8595 | PyObject *mapping, |
| 8596 | const char *errors) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8597 | { |
| 8598 | PyObject *result; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 8599 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8600 | str = PyUnicode_FromObject(str); |
| 8601 | if (str == NULL) |
Christian Heimes | 5f520f4 | 2012-09-11 14:03:25 +0200 | [diff] [blame] | 8602 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8603 | result = _PyUnicode_TranslateCharmap(str, mapping, errors); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8604 | Py_DECREF(str); |
| 8605 | return result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8606 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 8607 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8608 | static Py_UCS4 |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 8609 | fix_decimal_and_space_to_ascii(PyObject *self) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8610 | { |
| 8611 | /* No need to call PyUnicode_READY(self) because this function is only |
| 8612 | called as a callback from fixup() which does it already. */ |
| 8613 | const Py_ssize_t len = PyUnicode_GET_LENGTH(self); |
| 8614 | const int kind = PyUnicode_KIND(self); |
| 8615 | void *data = PyUnicode_DATA(self); |
Victor Stinner | e6abb48 | 2012-05-02 01:15:40 +0200 | [diff] [blame] | 8616 | Py_UCS4 maxchar = 127, ch, fixed; |
Benjamin Peterson | 821e4cf | 2012-01-12 15:40:18 -0500 | [diff] [blame] | 8617 | int modified = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8618 | Py_ssize_t i; |
| 8619 | |
| 8620 | for (i = 0; i < len; ++i) { |
| 8621 | ch = PyUnicode_READ(kind, data, i); |
| 8622 | fixed = 0; |
| 8623 | if (ch > 127) { |
| 8624 | if (Py_UNICODE_ISSPACE(ch)) |
| 8625 | fixed = ' '; |
| 8626 | else { |
| 8627 | const int decimal = Py_UNICODE_TODECIMAL(ch); |
| 8628 | if (decimal >= 0) |
| 8629 | fixed = '0' + decimal; |
| 8630 | } |
| 8631 | if (fixed != 0) { |
Benjamin Peterson | 821e4cf | 2012-01-12 15:40:18 -0500 | [diff] [blame] | 8632 | modified = 1; |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 8633 | maxchar = Py_MAX(maxchar, fixed); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8634 | PyUnicode_WRITE(kind, data, i, fixed); |
| 8635 | } |
Victor Stinner | e6abb48 | 2012-05-02 01:15:40 +0200 | [diff] [blame] | 8636 | else |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 8637 | maxchar = Py_MAX(maxchar, ch); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8638 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8639 | } |
| 8640 | |
Benjamin Peterson | 821e4cf | 2012-01-12 15:40:18 -0500 | [diff] [blame] | 8641 | return (modified) ? maxchar : 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8642 | } |
| 8643 | |
| 8644 | PyObject * |
| 8645 | _PyUnicode_TransformDecimalAndSpaceToASCII(PyObject *unicode) |
| 8646 | { |
| 8647 | if (!PyUnicode_Check(unicode)) { |
| 8648 | PyErr_BadInternalCall(); |
| 8649 | return NULL; |
| 8650 | } |
| 8651 | if (PyUnicode_READY(unicode) == -1) |
| 8652 | return NULL; |
| 8653 | if (PyUnicode_MAX_CHAR_VALUE(unicode) <= 127) { |
| 8654 | /* If the string is already ASCII, just return the same string */ |
| 8655 | Py_INCREF(unicode); |
| 8656 | return unicode; |
| 8657 | } |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 8658 | return fixup(unicode, fix_decimal_and_space_to_ascii); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8659 | } |
| 8660 | |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 8661 | PyObject * |
| 8662 | PyUnicode_TransformDecimalToASCII(Py_UNICODE *s, |
| 8663 | Py_ssize_t length) |
| 8664 | { |
Victor Stinner | f012450 | 2011-11-21 23:12:56 +0100 | [diff] [blame] | 8665 | PyObject *decimal; |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 8666 | Py_ssize_t i; |
Victor Stinner | f012450 | 2011-11-21 23:12:56 +0100 | [diff] [blame] | 8667 | Py_UCS4 maxchar; |
| 8668 | enum PyUnicode_Kind kind; |
| 8669 | void *data; |
| 8670 | |
Victor Stinner | 99d7ad0 | 2012-02-22 13:37:39 +0100 | [diff] [blame] | 8671 | maxchar = 127; |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 8672 | for (i = 0; i < length; i++) { |
Victor Stinner | f012450 | 2011-11-21 23:12:56 +0100 | [diff] [blame] | 8673 | Py_UNICODE ch = s[i]; |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 8674 | if (ch > 127) { |
| 8675 | int decimal = Py_UNICODE_TODECIMAL(ch); |
| 8676 | if (decimal >= 0) |
Victor Stinner | f012450 | 2011-11-21 23:12:56 +0100 | [diff] [blame] | 8677 | ch = '0' + decimal; |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 8678 | maxchar = Py_MAX(maxchar, ch); |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 8679 | } |
| 8680 | } |
Victor Stinner | f012450 | 2011-11-21 23:12:56 +0100 | [diff] [blame] | 8681 | |
| 8682 | /* Copy to a new string */ |
| 8683 | decimal = PyUnicode_New(length, maxchar); |
| 8684 | if (decimal == NULL) |
| 8685 | return decimal; |
| 8686 | kind = PyUnicode_KIND(decimal); |
| 8687 | data = PyUnicode_DATA(decimal); |
| 8688 | /* Iterate over code points */ |
| 8689 | for (i = 0; i < length; i++) { |
| 8690 | Py_UNICODE ch = s[i]; |
| 8691 | if (ch > 127) { |
| 8692 | int decimal = Py_UNICODE_TODECIMAL(ch); |
| 8693 | if (decimal >= 0) |
| 8694 | ch = '0' + decimal; |
| 8695 | } |
| 8696 | PyUnicode_WRITE(kind, data, i, ch); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8697 | } |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 8698 | return unicode_result(decimal); |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 8699 | } |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8700 | /* --- Decimal Encoder ---------------------------------------------------- */ |
| 8701 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8702 | int |
| 8703 | PyUnicode_EncodeDecimal(Py_UNICODE *s, |
| 8704 | Py_ssize_t length, |
| 8705 | char *output, |
| 8706 | const char *errors) |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8707 | { |
Martin v. Löwis | 23e275b | 2011-11-02 18:02:51 +0100 | [diff] [blame] | 8708 | PyObject *unicode; |
Victor Stinner | 6345be9 | 2011-11-25 20:09:01 +0100 | [diff] [blame] | 8709 | Py_ssize_t i; |
Victor Stinner | 42bf775 | 2011-11-21 22:52:58 +0100 | [diff] [blame] | 8710 | enum PyUnicode_Kind kind; |
| 8711 | void *data; |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8712 | |
| 8713 | if (output == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8714 | PyErr_BadArgument(); |
| 8715 | return -1; |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8716 | } |
| 8717 | |
Victor Stinner | 42bf775 | 2011-11-21 22:52:58 +0100 | [diff] [blame] | 8718 | unicode = PyUnicode_FromUnicode(s, length); |
| 8719 | if (unicode == NULL) |
| 8720 | return -1; |
| 8721 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 8722 | if (PyUnicode_READY(unicode) == -1) { |
Victor Stinner | 6345be9 | 2011-11-25 20:09:01 +0100 | [diff] [blame] | 8723 | Py_DECREF(unicode); |
| 8724 | return -1; |
| 8725 | } |
Victor Stinner | 42bf775 | 2011-11-21 22:52:58 +0100 | [diff] [blame] | 8726 | kind = PyUnicode_KIND(unicode); |
| 8727 | data = PyUnicode_DATA(unicode); |
| 8728 | |
Victor Stinner | b84d723 | 2011-11-22 01:50:07 +0100 | [diff] [blame] | 8729 | for (i=0; i < length; ) { |
Victor Stinner | 6345be9 | 2011-11-25 20:09:01 +0100 | [diff] [blame] | 8730 | PyObject *exc; |
| 8731 | Py_UCS4 ch; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8732 | int decimal; |
Victor Stinner | 6345be9 | 2011-11-25 20:09:01 +0100 | [diff] [blame] | 8733 | Py_ssize_t startpos; |
| 8734 | |
| 8735 | ch = PyUnicode_READ(kind, data, i); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 8736 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8737 | if (Py_UNICODE_ISSPACE(ch)) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8738 | *output++ = ' '; |
Victor Stinner | b84d723 | 2011-11-22 01:50:07 +0100 | [diff] [blame] | 8739 | i++; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8740 | continue; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 8741 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8742 | decimal = Py_UNICODE_TODECIMAL(ch); |
| 8743 | if (decimal >= 0) { |
| 8744 | *output++ = '0' + decimal; |
Victor Stinner | b84d723 | 2011-11-22 01:50:07 +0100 | [diff] [blame] | 8745 | i++; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8746 | continue; |
| 8747 | } |
| 8748 | if (0 < ch && ch < 256) { |
| 8749 | *output++ = (char)ch; |
Victor Stinner | b84d723 | 2011-11-22 01:50:07 +0100 | [diff] [blame] | 8750 | i++; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8751 | continue; |
| 8752 | } |
Victor Stinner | 6345be9 | 2011-11-25 20:09:01 +0100 | [diff] [blame] | 8753 | |
Victor Stinner | 42bf775 | 2011-11-21 22:52:58 +0100 | [diff] [blame] | 8754 | startpos = i; |
Victor Stinner | 6345be9 | 2011-11-25 20:09:01 +0100 | [diff] [blame] | 8755 | exc = NULL; |
| 8756 | raise_encode_exception(&exc, "decimal", unicode, |
| 8757 | startpos, startpos+1, |
| 8758 | "invalid decimal Unicode string"); |
| 8759 | Py_XDECREF(exc); |
| 8760 | Py_DECREF(unicode); |
| 8761 | return -1; |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8762 | } |
| 8763 | /* 0-terminate the output string */ |
| 8764 | *output++ = '\0'; |
Victor Stinner | 42bf775 | 2011-11-21 22:52:58 +0100 | [diff] [blame] | 8765 | Py_DECREF(unicode); |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8766 | return 0; |
Guido van Rossum | 9e896b3 | 2000-04-05 20:11:21 +0000 | [diff] [blame] | 8767 | } |
| 8768 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8769 | /* --- Helpers ------------------------------------------------------------ */ |
| 8770 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8771 | static Py_ssize_t |
Victor Stinner | 794d567 | 2011-10-10 03:21:36 +0200 | [diff] [blame] | 8772 | any_find_slice(int direction, PyObject* s1, PyObject* s2, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8773 | Py_ssize_t start, |
| 8774 | Py_ssize_t end) |
| 8775 | { |
| 8776 | int kind1, kind2, kind; |
| 8777 | void *buf1, *buf2; |
| 8778 | Py_ssize_t len1, len2, result; |
| 8779 | |
| 8780 | kind1 = PyUnicode_KIND(s1); |
| 8781 | kind2 = PyUnicode_KIND(s2); |
| 8782 | kind = kind1 > kind2 ? kind1 : kind2; |
| 8783 | buf1 = PyUnicode_DATA(s1); |
| 8784 | buf2 = PyUnicode_DATA(s2); |
| 8785 | if (kind1 != kind) |
| 8786 | buf1 = _PyUnicode_AsKind(s1, kind); |
| 8787 | if (!buf1) |
| 8788 | return -2; |
| 8789 | if (kind2 != kind) |
| 8790 | buf2 = _PyUnicode_AsKind(s2, kind); |
| 8791 | if (!buf2) { |
| 8792 | if (kind1 != kind) PyMem_Free(buf1); |
| 8793 | return -2; |
| 8794 | } |
| 8795 | len1 = PyUnicode_GET_LENGTH(s1); |
| 8796 | len2 = PyUnicode_GET_LENGTH(s2); |
| 8797 | |
Victor Stinner | 794d567 | 2011-10-10 03:21:36 +0200 | [diff] [blame] | 8798 | if (direction > 0) { |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 8799 | switch (kind) { |
Victor Stinner | 794d567 | 2011-10-10 03:21:36 +0200 | [diff] [blame] | 8800 | case PyUnicode_1BYTE_KIND: |
| 8801 | if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2)) |
| 8802 | result = asciilib_find_slice(buf1, len1, buf2, len2, start, end); |
| 8803 | else |
| 8804 | result = ucs1lib_find_slice(buf1, len1, buf2, len2, start, end); |
| 8805 | break; |
| 8806 | case PyUnicode_2BYTE_KIND: |
| 8807 | result = ucs2lib_find_slice(buf1, len1, buf2, len2, start, end); |
| 8808 | break; |
| 8809 | case PyUnicode_4BYTE_KIND: |
| 8810 | result = ucs4lib_find_slice(buf1, len1, buf2, len2, start, end); |
| 8811 | break; |
| 8812 | default: |
| 8813 | assert(0); result = -2; |
| 8814 | } |
| 8815 | } |
| 8816 | else { |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 8817 | switch (kind) { |
Victor Stinner | 794d567 | 2011-10-10 03:21:36 +0200 | [diff] [blame] | 8818 | case PyUnicode_1BYTE_KIND: |
| 8819 | if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2)) |
| 8820 | result = asciilib_rfind_slice(buf1, len1, buf2, len2, start, end); |
| 8821 | else |
| 8822 | result = ucs1lib_rfind_slice(buf1, len1, buf2, len2, start, end); |
| 8823 | break; |
| 8824 | case PyUnicode_2BYTE_KIND: |
| 8825 | result = ucs2lib_rfind_slice(buf1, len1, buf2, len2, start, end); |
| 8826 | break; |
| 8827 | case PyUnicode_4BYTE_KIND: |
| 8828 | result = ucs4lib_rfind_slice(buf1, len1, buf2, len2, start, end); |
| 8829 | break; |
| 8830 | default: |
| 8831 | assert(0); result = -2; |
| 8832 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8833 | } |
| 8834 | |
| 8835 | if (kind1 != kind) |
| 8836 | PyMem_Free(buf1); |
| 8837 | if (kind2 != kind) |
| 8838 | PyMem_Free(buf2); |
| 8839 | |
| 8840 | return result; |
| 8841 | } |
| 8842 | |
| 8843 | Py_ssize_t |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8844 | _PyUnicode_InsertThousandsGrouping( |
| 8845 | PyObject *unicode, Py_ssize_t index, |
| 8846 | Py_ssize_t n_buffer, |
| 8847 | void *digits, Py_ssize_t n_digits, |
| 8848 | Py_ssize_t min_width, |
| 8849 | const char *grouping, PyObject *thousands_sep, |
| 8850 | Py_UCS4 *maxchar) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8851 | { |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8852 | unsigned int kind, thousands_sep_kind; |
Antoine Pitrou | 842c0f1 | 2012-02-24 13:30:46 +0100 | [diff] [blame] | 8853 | char *data, *thousands_sep_data; |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8854 | Py_ssize_t thousands_sep_len; |
| 8855 | Py_ssize_t len; |
| 8856 | |
| 8857 | if (unicode != NULL) { |
| 8858 | kind = PyUnicode_KIND(unicode); |
Antoine Pitrou | 842c0f1 | 2012-02-24 13:30:46 +0100 | [diff] [blame] | 8859 | data = (char *) PyUnicode_DATA(unicode) + index * kind; |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8860 | } |
| 8861 | else { |
| 8862 | kind = PyUnicode_1BYTE_KIND; |
| 8863 | data = NULL; |
| 8864 | } |
| 8865 | thousands_sep_kind = PyUnicode_KIND(thousands_sep); |
| 8866 | thousands_sep_data = PyUnicode_DATA(thousands_sep); |
| 8867 | thousands_sep_len = PyUnicode_GET_LENGTH(thousands_sep); |
| 8868 | if (unicode != NULL && thousands_sep_kind != kind) { |
Victor Stinner | 90f50d4 | 2012-02-24 01:44:47 +0100 | [diff] [blame] | 8869 | if (thousands_sep_kind < kind) { |
| 8870 | thousands_sep_data = _PyUnicode_AsKind(thousands_sep, kind); |
| 8871 | if (!thousands_sep_data) |
| 8872 | return -1; |
| 8873 | } |
| 8874 | else { |
| 8875 | data = _PyUnicode_AsKind(unicode, thousands_sep_kind); |
| 8876 | if (!data) |
| 8877 | return -1; |
| 8878 | } |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8879 | } |
| 8880 | |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 8881 | switch (kind) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8882 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 8883 | if (unicode != NULL && PyUnicode_IS_ASCII(unicode)) |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8884 | len = asciilib_InsertThousandsGrouping( |
Antoine Pitrou | 842c0f1 | 2012-02-24 13:30:46 +0100 | [diff] [blame] | 8885 | (Py_UCS1 *) data, n_buffer, (Py_UCS1 *) digits, n_digits, |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8886 | min_width, grouping, |
Antoine Pitrou | 842c0f1 | 2012-02-24 13:30:46 +0100 | [diff] [blame] | 8887 | (Py_UCS1 *) thousands_sep_data, thousands_sep_len); |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 8888 | else |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8889 | len = ucs1lib_InsertThousandsGrouping( |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 8890 | (Py_UCS1*)data, n_buffer, (Py_UCS1*)digits, n_digits, |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8891 | min_width, grouping, |
Antoine Pitrou | 842c0f1 | 2012-02-24 13:30:46 +0100 | [diff] [blame] | 8892 | (Py_UCS1 *) thousands_sep_data, thousands_sep_len); |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8893 | break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8894 | case PyUnicode_2BYTE_KIND: |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8895 | len = ucs2lib_InsertThousandsGrouping( |
Antoine Pitrou | 842c0f1 | 2012-02-24 13:30:46 +0100 | [diff] [blame] | 8896 | (Py_UCS2 *) data, n_buffer, (Py_UCS2 *) digits, n_digits, |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8897 | min_width, grouping, |
Antoine Pitrou | 842c0f1 | 2012-02-24 13:30:46 +0100 | [diff] [blame] | 8898 | (Py_UCS2 *) thousands_sep_data, thousands_sep_len); |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8899 | break; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8900 | case PyUnicode_4BYTE_KIND: |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8901 | len = ucs4lib_InsertThousandsGrouping( |
Antoine Pitrou | 842c0f1 | 2012-02-24 13:30:46 +0100 | [diff] [blame] | 8902 | (Py_UCS4 *) data, n_buffer, (Py_UCS4 *) digits, n_digits, |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8903 | min_width, grouping, |
Antoine Pitrou | 842c0f1 | 2012-02-24 13:30:46 +0100 | [diff] [blame] | 8904 | (Py_UCS4 *) thousands_sep_data, thousands_sep_len); |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8905 | break; |
| 8906 | default: |
| 8907 | assert(0); |
| 8908 | return -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8909 | } |
Victor Stinner | 90f50d4 | 2012-02-24 01:44:47 +0100 | [diff] [blame] | 8910 | if (unicode != NULL && thousands_sep_kind != kind) { |
| 8911 | if (thousands_sep_kind < kind) |
| 8912 | PyMem_Free(thousands_sep_data); |
| 8913 | else |
| 8914 | PyMem_Free(data); |
| 8915 | } |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8916 | if (unicode == NULL) { |
| 8917 | *maxchar = 127; |
| 8918 | if (len != n_digits) { |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 8919 | *maxchar = Py_MAX(*maxchar, |
Victor Stinner | e6abb48 | 2012-05-02 01:15:40 +0200 | [diff] [blame] | 8920 | PyUnicode_MAX_CHAR_VALUE(thousands_sep)); |
Victor Stinner | 41a863c | 2012-02-24 00:37:51 +0100 | [diff] [blame] | 8921 | } |
| 8922 | } |
| 8923 | return len; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8924 | } |
| 8925 | |
| 8926 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 8927 | /* helper macro to fixup start/end slice values */ |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 8928 | #define ADJUST_INDICES(start, end, len) \ |
| 8929 | if (end > len) \ |
| 8930 | end = len; \ |
| 8931 | else if (end < 0) { \ |
| 8932 | end += len; \ |
| 8933 | if (end < 0) \ |
| 8934 | end = 0; \ |
| 8935 | } \ |
| 8936 | if (start < 0) { \ |
| 8937 | start += len; \ |
| 8938 | if (start < 0) \ |
| 8939 | start = 0; \ |
| 8940 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 8941 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 8942 | Py_ssize_t |
| 8943 | PyUnicode_Count(PyObject *str, |
| 8944 | PyObject *substr, |
| 8945 | Py_ssize_t start, |
| 8946 | Py_ssize_t end) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8947 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 8948 | Py_ssize_t result; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 8949 | PyObject* str_obj; |
| 8950 | PyObject* sub_obj; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8951 | int kind1, kind2, kind; |
| 8952 | void *buf1 = NULL, *buf2 = NULL; |
| 8953 | Py_ssize_t len1, len2; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 8954 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 8955 | str_obj = PyUnicode_FromObject(str); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 8956 | if (!str_obj) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8957 | return -1; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 8958 | sub_obj = PyUnicode_FromObject(substr); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 8959 | if (!sub_obj) { |
| 8960 | Py_DECREF(str_obj); |
| 8961 | return -1; |
| 8962 | } |
Benjamin Peterson | 4c13a4a | 2012-01-02 09:07:38 -0600 | [diff] [blame] | 8963 | if (PyUnicode_READY(sub_obj) == -1 || PyUnicode_READY(str_obj) == -1) { |
Benjamin Peterson | 5e458f5 | 2012-01-02 10:12:13 -0600 | [diff] [blame] | 8964 | Py_DECREF(sub_obj); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 8965 | Py_DECREF(str_obj); |
| 8966 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 8967 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 8968 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8969 | kind1 = PyUnicode_KIND(str_obj); |
| 8970 | kind2 = PyUnicode_KIND(sub_obj); |
Antoine Pitrou | e45c0c5 | 2012-05-12 15:49:07 +0200 | [diff] [blame] | 8971 | kind = kind1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8972 | buf1 = PyUnicode_DATA(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8973 | buf2 = PyUnicode_DATA(sub_obj); |
Benjamin Peterson | 1ff2e35 | 2012-05-11 17:41:20 -0500 | [diff] [blame] | 8974 | if (kind2 != kind) { |
Antoine Pitrou | 758153b | 2012-05-12 15:51:51 +0200 | [diff] [blame] | 8975 | if (kind2 > kind) { |
| 8976 | Py_DECREF(sub_obj); |
| 8977 | Py_DECREF(str_obj); |
Antoine Pitrou | e45c0c5 | 2012-05-12 15:49:07 +0200 | [diff] [blame] | 8978 | return 0; |
Antoine Pitrou | 758153b | 2012-05-12 15:51:51 +0200 | [diff] [blame] | 8979 | } |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 8980 | buf2 = _PyUnicode_AsKind(sub_obj, kind); |
Benjamin Peterson | 1ff2e35 | 2012-05-11 17:41:20 -0500 | [diff] [blame] | 8981 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8982 | if (!buf2) |
| 8983 | goto onError; |
| 8984 | len1 = PyUnicode_GET_LENGTH(str_obj); |
| 8985 | len2 = PyUnicode_GET_LENGTH(sub_obj); |
| 8986 | |
| 8987 | ADJUST_INDICES(start, end, len1); |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 8988 | switch (kind) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 8989 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 8990 | if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sub_obj)) |
| 8991 | result = asciilib_count( |
| 8992 | ((Py_UCS1*)buf1) + start, end - start, |
| 8993 | buf2, len2, PY_SSIZE_T_MAX |
| 8994 | ); |
| 8995 | else |
| 8996 | result = ucs1lib_count( |
| 8997 | ((Py_UCS1*)buf1) + start, end - start, |
| 8998 | buf2, len2, PY_SSIZE_T_MAX |
| 8999 | ); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9000 | break; |
| 9001 | case PyUnicode_2BYTE_KIND: |
| 9002 | result = ucs2lib_count( |
| 9003 | ((Py_UCS2*)buf1) + start, end - start, |
| 9004 | buf2, len2, PY_SSIZE_T_MAX |
| 9005 | ); |
| 9006 | break; |
| 9007 | case PyUnicode_4BYTE_KIND: |
| 9008 | result = ucs4lib_count( |
| 9009 | ((Py_UCS4*)buf1) + start, end - start, |
| 9010 | buf2, len2, PY_SSIZE_T_MAX |
| 9011 | ); |
| 9012 | break; |
| 9013 | default: |
| 9014 | assert(0); result = 0; |
| 9015 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9016 | |
| 9017 | Py_DECREF(sub_obj); |
| 9018 | Py_DECREF(str_obj); |
| 9019 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9020 | if (kind2 != kind) |
| 9021 | PyMem_Free(buf2); |
| 9022 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9023 | return result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9024 | onError: |
| 9025 | Py_DECREF(sub_obj); |
| 9026 | Py_DECREF(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9027 | if (kind2 != kind && buf2) |
| 9028 | PyMem_Free(buf2); |
| 9029 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9030 | } |
| 9031 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9032 | Py_ssize_t |
| 9033 | PyUnicode_Find(PyObject *str, |
| 9034 | PyObject *sub, |
| 9035 | Py_ssize_t start, |
| 9036 | Py_ssize_t end, |
| 9037 | int direction) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9038 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 9039 | Py_ssize_t result; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9040 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9041 | str = PyUnicode_FromObject(str); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 9042 | if (!str) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9043 | return -2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9044 | sub = PyUnicode_FromObject(sub); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 9045 | if (!sub) { |
| 9046 | Py_DECREF(str); |
| 9047 | return -2; |
| 9048 | } |
| 9049 | if (PyUnicode_READY(sub) == -1 || PyUnicode_READY(str) == -1) { |
| 9050 | Py_DECREF(sub); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9051 | Py_DECREF(str); |
| 9052 | return -2; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9053 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9054 | |
Victor Stinner | 794d567 | 2011-10-10 03:21:36 +0200 | [diff] [blame] | 9055 | result = any_find_slice(direction, |
| 9056 | str, sub, start, end |
| 9057 | ); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9058 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9059 | Py_DECREF(str); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9060 | Py_DECREF(sub); |
| 9061 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9062 | return result; |
| 9063 | } |
| 9064 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9065 | Py_ssize_t |
| 9066 | PyUnicode_FindChar(PyObject *str, Py_UCS4 ch, |
| 9067 | Py_ssize_t start, Py_ssize_t end, |
| 9068 | int direction) |
| 9069 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9070 | int kind; |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 9071 | Py_ssize_t result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9072 | if (PyUnicode_READY(str) == -1) |
| 9073 | return -2; |
Victor Stinner | 267aa24 | 2011-10-02 01:08:37 +0200 | [diff] [blame] | 9074 | if (start < 0 || end < 0) { |
| 9075 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 9076 | return -2; |
| 9077 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9078 | if (end > PyUnicode_GET_LENGTH(str)) |
| 9079 | end = PyUnicode_GET_LENGTH(str); |
| 9080 | kind = PyUnicode_KIND(str); |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 9081 | result = findchar(PyUnicode_1BYTE_DATA(str) + kind*start, |
| 9082 | kind, end-start, ch, direction); |
| 9083 | if (result == -1) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9084 | return -1; |
Antoine Pitrou | f0b934b | 2011-10-13 18:55:09 +0200 | [diff] [blame] | 9085 | else |
| 9086 | return start + result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9087 | } |
| 9088 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9089 | static int |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 9090 | tailmatch(PyObject *self, |
| 9091 | PyObject *substring, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9092 | Py_ssize_t start, |
| 9093 | Py_ssize_t end, |
| 9094 | int direction) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9095 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9096 | int kind_self; |
| 9097 | int kind_sub; |
| 9098 | void *data_self; |
| 9099 | void *data_sub; |
| 9100 | Py_ssize_t offset; |
| 9101 | Py_ssize_t i; |
| 9102 | Py_ssize_t end_sub; |
| 9103 | |
| 9104 | if (PyUnicode_READY(self) == -1 || |
| 9105 | PyUnicode_READY(substring) == -1) |
| 9106 | return 0; |
| 9107 | |
| 9108 | if (PyUnicode_GET_LENGTH(substring) == 0) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9109 | return 1; |
| 9110 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9111 | ADJUST_INDICES(start, end, PyUnicode_GET_LENGTH(self)); |
| 9112 | end -= PyUnicode_GET_LENGTH(substring); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9113 | if (end < start) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9114 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9115 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9116 | kind_self = PyUnicode_KIND(self); |
| 9117 | data_self = PyUnicode_DATA(self); |
| 9118 | kind_sub = PyUnicode_KIND(substring); |
| 9119 | data_sub = PyUnicode_DATA(substring); |
| 9120 | end_sub = PyUnicode_GET_LENGTH(substring) - 1; |
| 9121 | |
| 9122 | if (direction > 0) |
| 9123 | offset = end; |
| 9124 | else |
| 9125 | offset = start; |
| 9126 | |
| 9127 | if (PyUnicode_READ(kind_self, data_self, offset) == |
| 9128 | PyUnicode_READ(kind_sub, data_sub, 0) && |
| 9129 | PyUnicode_READ(kind_self, data_self, offset + end_sub) == |
| 9130 | PyUnicode_READ(kind_sub, data_sub, end_sub)) { |
| 9131 | /* If both are of the same kind, memcmp is sufficient */ |
| 9132 | if (kind_self == kind_sub) { |
| 9133 | return ! memcmp((char *)data_self + |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9134 | (offset * PyUnicode_KIND(substring)), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9135 | data_sub, |
| 9136 | PyUnicode_GET_LENGTH(substring) * |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9137 | PyUnicode_KIND(substring)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9138 | } |
| 9139 | /* otherwise we have to compare each character by first accesing it */ |
| 9140 | else { |
| 9141 | /* We do not need to compare 0 and len(substring)-1 because |
| 9142 | the if statement above ensured already that they are equal |
| 9143 | when we end up here. */ |
Antoine Pitrou | 057119b | 2012-09-02 17:56:33 +0200 | [diff] [blame] | 9144 | /* TODO: honor direction and do a forward or backwards search */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9145 | for (i = 1; i < end_sub; ++i) { |
| 9146 | if (PyUnicode_READ(kind_self, data_self, offset + i) != |
| 9147 | PyUnicode_READ(kind_sub, data_sub, i)) |
| 9148 | return 0; |
| 9149 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9150 | return 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9151 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9152 | } |
| 9153 | |
| 9154 | return 0; |
| 9155 | } |
| 9156 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9157 | Py_ssize_t |
| 9158 | PyUnicode_Tailmatch(PyObject *str, |
| 9159 | PyObject *substr, |
| 9160 | Py_ssize_t start, |
| 9161 | Py_ssize_t end, |
| 9162 | int direction) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9163 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 9164 | Py_ssize_t result; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9165 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9166 | str = PyUnicode_FromObject(str); |
| 9167 | if (str == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9168 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9169 | substr = PyUnicode_FromObject(substr); |
| 9170 | if (substr == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9171 | Py_DECREF(str); |
| 9172 | return -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9173 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9174 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 9175 | result = tailmatch(str, substr, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9176 | start, end, direction); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9177 | Py_DECREF(str); |
| 9178 | Py_DECREF(substr); |
| 9179 | return result; |
| 9180 | } |
| 9181 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9182 | /* Apply fixfct filter to the Unicode object self and return a |
| 9183 | reference to the modified object */ |
| 9184 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9185 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9186 | fixup(PyObject *self, |
| 9187 | Py_UCS4 (*fixfct)(PyObject *s)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9188 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9189 | PyObject *u; |
| 9190 | Py_UCS4 maxchar_old, maxchar_new = 0; |
Victor Stinner | eaab604 | 2011-12-11 22:22:39 +0100 | [diff] [blame] | 9191 | PyObject *v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9192 | |
Victor Stinner | bf6e560 | 2011-12-12 01:53:47 +0100 | [diff] [blame] | 9193 | u = _PyUnicode_Copy(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9194 | if (u == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9195 | return NULL; |
Victor Stinner | 87af4f2 | 2011-11-21 23:03:47 +0100 | [diff] [blame] | 9196 | maxchar_old = PyUnicode_MAX_CHAR_VALUE(u); |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 9197 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9198 | /* fix functions return the new maximum character in a string, |
| 9199 | if the kind of the resulting unicode object does not change, |
| 9200 | everything is fine. Otherwise we need to change the string kind |
| 9201 | and re-run the fix function. */ |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9202 | maxchar_new = fixfct(u); |
Victor Stinner | eaab604 | 2011-12-11 22:22:39 +0100 | [diff] [blame] | 9203 | |
| 9204 | if (maxchar_new == 0) { |
| 9205 | /* no changes */; |
| 9206 | if (PyUnicode_CheckExact(self)) { |
| 9207 | Py_DECREF(u); |
| 9208 | Py_INCREF(self); |
| 9209 | return self; |
| 9210 | } |
| 9211 | else |
| 9212 | return u; |
| 9213 | } |
| 9214 | |
Victor Stinner | e6abb48 | 2012-05-02 01:15:40 +0200 | [diff] [blame] | 9215 | maxchar_new = align_maxchar(maxchar_new); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9216 | |
Victor Stinner | eaab604 | 2011-12-11 22:22:39 +0100 | [diff] [blame] | 9217 | if (maxchar_new == maxchar_old) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9218 | return u; |
Victor Stinner | eaab604 | 2011-12-11 22:22:39 +0100 | [diff] [blame] | 9219 | |
| 9220 | /* In case the maximum character changed, we need to |
| 9221 | convert the string to the new category. */ |
| 9222 | v = PyUnicode_New(PyUnicode_GET_LENGTH(self), maxchar_new); |
| 9223 | if (v == NULL) { |
| 9224 | Py_DECREF(u); |
| 9225 | return NULL; |
| 9226 | } |
| 9227 | if (maxchar_new > maxchar_old) { |
| 9228 | /* If the maxchar increased so that the kind changed, not all |
| 9229 | characters are representable anymore and we need to fix the |
| 9230 | string again. This only happens in very few cases. */ |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 9231 | _PyUnicode_FastCopyCharacters(v, 0, |
| 9232 | self, 0, PyUnicode_GET_LENGTH(self)); |
Victor Stinner | eaab604 | 2011-12-11 22:22:39 +0100 | [diff] [blame] | 9233 | maxchar_old = fixfct(v); |
| 9234 | assert(maxchar_old > 0 && maxchar_old <= maxchar_new); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9235 | } |
| 9236 | else { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 9237 | _PyUnicode_FastCopyCharacters(v, 0, |
| 9238 | u, 0, PyUnicode_GET_LENGTH(self)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9239 | } |
Victor Stinner | eaab604 | 2011-12-11 22:22:39 +0100 | [diff] [blame] | 9240 | Py_DECREF(u); |
| 9241 | assert(_PyUnicode_CheckConsistency(v, 1)); |
| 9242 | return v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9243 | } |
| 9244 | |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9245 | static PyObject * |
| 9246 | ascii_upper_or_lower(PyObject *self, int lower) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9247 | { |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9248 | Py_ssize_t len = PyUnicode_GET_LENGTH(self); |
| 9249 | char *resdata, *data = PyUnicode_DATA(self); |
| 9250 | PyObject *res; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9251 | |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9252 | res = PyUnicode_New(len, 127); |
| 9253 | if (res == NULL) |
| 9254 | return NULL; |
| 9255 | resdata = PyUnicode_DATA(res); |
| 9256 | if (lower) |
| 9257 | _Py_bytes_lower(resdata, data, len); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9258 | else |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9259 | _Py_bytes_upper(resdata, data, len); |
| 9260 | return res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9261 | } |
| 9262 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9263 | static Py_UCS4 |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9264 | handle_capital_sigma(int kind, void *data, Py_ssize_t length, Py_ssize_t i) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9265 | { |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9266 | Py_ssize_t j; |
| 9267 | int final_sigma; |
| 9268 | Py_UCS4 c; |
| 9269 | /* U+03A3 is in the Final_Sigma context when, it is found like this: |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9270 | |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9271 | \p{cased}\p{case-ignorable}*U+03A3!(\p{case-ignorable}*\p{cased}) |
| 9272 | |
| 9273 | where ! is a negation and \p{xxx} is a character with property xxx. |
| 9274 | */ |
| 9275 | for (j = i - 1; j >= 0; j--) { |
| 9276 | c = PyUnicode_READ(kind, data, j); |
| 9277 | if (!_PyUnicode_IsCaseIgnorable(c)) |
| 9278 | break; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9279 | } |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9280 | final_sigma = j >= 0 && _PyUnicode_IsCased(c); |
| 9281 | if (final_sigma) { |
| 9282 | for (j = i + 1; j < length; j++) { |
| 9283 | c = PyUnicode_READ(kind, data, j); |
| 9284 | if (!_PyUnicode_IsCaseIgnorable(c)) |
| 9285 | break; |
| 9286 | } |
| 9287 | final_sigma = j == length || !_PyUnicode_IsCased(c); |
| 9288 | } |
| 9289 | return (final_sigma) ? 0x3C2 : 0x3C3; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9290 | } |
| 9291 | |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9292 | static int |
| 9293 | lower_ucs4(int kind, void *data, Py_ssize_t length, Py_ssize_t i, |
| 9294 | Py_UCS4 c, Py_UCS4 *mapped) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9295 | { |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9296 | /* Obscure special case. */ |
| 9297 | if (c == 0x3A3) { |
| 9298 | mapped[0] = handle_capital_sigma(kind, data, length, i); |
| 9299 | return 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9300 | } |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9301 | return _PyUnicode_ToLowerFull(c, mapped); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9302 | } |
| 9303 | |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9304 | static Py_ssize_t |
| 9305 | do_capitalize(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9306 | { |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9307 | Py_ssize_t i, k = 0; |
| 9308 | int n_res, j; |
| 9309 | Py_UCS4 c, mapped[3]; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9310 | |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9311 | c = PyUnicode_READ(kind, data, 0); |
| 9312 | n_res = _PyUnicode_ToUpperFull(c, mapped); |
| 9313 | for (j = 0; j < n_res; j++) { |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 9314 | *maxchar = Py_MAX(*maxchar, mapped[j]); |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9315 | res[k++] = mapped[j]; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9316 | } |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9317 | for (i = 1; i < length; i++) { |
| 9318 | c = PyUnicode_READ(kind, data, i); |
| 9319 | n_res = lower_ucs4(kind, data, length, i, c, mapped); |
| 9320 | for (j = 0; j < n_res; j++) { |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 9321 | *maxchar = Py_MAX(*maxchar, mapped[j]); |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9322 | res[k++] = mapped[j]; |
Marc-André Lemburg | fde66e1 | 2001-01-29 11:14:16 +0000 | [diff] [blame] | 9323 | } |
Marc-André Lemburg | fde66e1 | 2001-01-29 11:14:16 +0000 | [diff] [blame] | 9324 | } |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9325 | return k; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9326 | } |
| 9327 | |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9328 | static Py_ssize_t |
| 9329 | do_swapcase(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar) { |
| 9330 | Py_ssize_t i, k = 0; |
| 9331 | |
| 9332 | for (i = 0; i < length; i++) { |
| 9333 | Py_UCS4 c = PyUnicode_READ(kind, data, i), mapped[3]; |
| 9334 | int n_res, j; |
| 9335 | if (Py_UNICODE_ISUPPER(c)) { |
| 9336 | n_res = lower_ucs4(kind, data, length, i, c, mapped); |
| 9337 | } |
| 9338 | else if (Py_UNICODE_ISLOWER(c)) { |
| 9339 | n_res = _PyUnicode_ToUpperFull(c, mapped); |
| 9340 | } |
| 9341 | else { |
| 9342 | n_res = 1; |
| 9343 | mapped[0] = c; |
| 9344 | } |
| 9345 | for (j = 0; j < n_res; j++) { |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 9346 | *maxchar = Py_MAX(*maxchar, mapped[j]); |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9347 | res[k++] = mapped[j]; |
| 9348 | } |
| 9349 | } |
| 9350 | return k; |
| 9351 | } |
| 9352 | |
| 9353 | static Py_ssize_t |
| 9354 | do_upper_or_lower(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, |
| 9355 | Py_UCS4 *maxchar, int lower) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9356 | { |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9357 | Py_ssize_t i, k = 0; |
| 9358 | |
| 9359 | for (i = 0; i < length; i++) { |
| 9360 | Py_UCS4 c = PyUnicode_READ(kind, data, i), mapped[3]; |
| 9361 | int n_res, j; |
| 9362 | if (lower) |
| 9363 | n_res = lower_ucs4(kind, data, length, i, c, mapped); |
| 9364 | else |
| 9365 | n_res = _PyUnicode_ToUpperFull(c, mapped); |
| 9366 | for (j = 0; j < n_res; j++) { |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 9367 | *maxchar = Py_MAX(*maxchar, mapped[j]); |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9368 | res[k++] = mapped[j]; |
| 9369 | } |
| 9370 | } |
| 9371 | return k; |
| 9372 | } |
| 9373 | |
| 9374 | static Py_ssize_t |
| 9375 | do_upper(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar) |
| 9376 | { |
| 9377 | return do_upper_or_lower(kind, data, length, res, maxchar, 0); |
| 9378 | } |
| 9379 | |
| 9380 | static Py_ssize_t |
| 9381 | do_lower(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar) |
| 9382 | { |
| 9383 | return do_upper_or_lower(kind, data, length, res, maxchar, 1); |
| 9384 | } |
| 9385 | |
Benjamin Peterson | e51757f | 2012-01-12 21:10:29 -0500 | [diff] [blame] | 9386 | static Py_ssize_t |
Benjamin Peterson | d5890c8 | 2012-01-14 13:23:30 -0500 | [diff] [blame] | 9387 | do_casefold(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar) |
| 9388 | { |
| 9389 | Py_ssize_t i, k = 0; |
| 9390 | |
| 9391 | for (i = 0; i < length; i++) { |
| 9392 | Py_UCS4 c = PyUnicode_READ(kind, data, i); |
| 9393 | Py_UCS4 mapped[3]; |
| 9394 | int j, n_res = _PyUnicode_ToFoldedFull(c, mapped); |
| 9395 | for (j = 0; j < n_res; j++) { |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 9396 | *maxchar = Py_MAX(*maxchar, mapped[j]); |
Benjamin Peterson | d5890c8 | 2012-01-14 13:23:30 -0500 | [diff] [blame] | 9397 | res[k++] = mapped[j]; |
| 9398 | } |
| 9399 | } |
| 9400 | return k; |
| 9401 | } |
| 9402 | |
| 9403 | static Py_ssize_t |
Benjamin Peterson | e51757f | 2012-01-12 21:10:29 -0500 | [diff] [blame] | 9404 | do_title(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar) |
| 9405 | { |
| 9406 | Py_ssize_t i, k = 0; |
| 9407 | int previous_is_cased; |
| 9408 | |
| 9409 | previous_is_cased = 0; |
| 9410 | for (i = 0; i < length; i++) { |
| 9411 | const Py_UCS4 c = PyUnicode_READ(kind, data, i); |
| 9412 | Py_UCS4 mapped[3]; |
| 9413 | int n_res, j; |
| 9414 | |
| 9415 | if (previous_is_cased) |
| 9416 | n_res = lower_ucs4(kind, data, length, i, c, mapped); |
| 9417 | else |
| 9418 | n_res = _PyUnicode_ToTitleFull(c, mapped); |
| 9419 | |
| 9420 | for (j = 0; j < n_res; j++) { |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 9421 | *maxchar = Py_MAX(*maxchar, mapped[j]); |
Benjamin Peterson | e51757f | 2012-01-12 21:10:29 -0500 | [diff] [blame] | 9422 | res[k++] = mapped[j]; |
| 9423 | } |
| 9424 | |
| 9425 | previous_is_cased = _PyUnicode_IsCased(c); |
| 9426 | } |
| 9427 | return k; |
| 9428 | } |
| 9429 | |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9430 | static PyObject * |
| 9431 | case_operation(PyObject *self, |
| 9432 | Py_ssize_t (*perform)(int, void *, Py_ssize_t, Py_UCS4 *, Py_UCS4 *)) |
| 9433 | { |
| 9434 | PyObject *res = NULL; |
| 9435 | Py_ssize_t length, newlength = 0; |
| 9436 | int kind, outkind; |
| 9437 | void *data, *outdata; |
| 9438 | Py_UCS4 maxchar = 0, *tmp, *tmpend; |
| 9439 | |
Benjamin Peterson | eea4846 | 2012-01-16 14:28:50 -0500 | [diff] [blame] | 9440 | assert(PyUnicode_IS_READY(self)); |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 9441 | |
| 9442 | kind = PyUnicode_KIND(self); |
| 9443 | data = PyUnicode_DATA(self); |
| 9444 | length = PyUnicode_GET_LENGTH(self); |
| 9445 | tmp = PyMem_MALLOC(sizeof(Py_UCS4) * 3 * length); |
| 9446 | if (tmp == NULL) |
| 9447 | return PyErr_NoMemory(); |
| 9448 | newlength = perform(kind, data, length, tmp, &maxchar); |
| 9449 | res = PyUnicode_New(newlength, maxchar); |
| 9450 | if (res == NULL) |
| 9451 | goto leave; |
| 9452 | tmpend = tmp + newlength; |
| 9453 | outdata = PyUnicode_DATA(res); |
| 9454 | outkind = PyUnicode_KIND(res); |
| 9455 | switch (outkind) { |
| 9456 | case PyUnicode_1BYTE_KIND: |
| 9457 | _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS1, tmp, tmpend, outdata); |
| 9458 | break; |
| 9459 | case PyUnicode_2BYTE_KIND: |
| 9460 | _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS2, tmp, tmpend, outdata); |
| 9461 | break; |
| 9462 | case PyUnicode_4BYTE_KIND: |
| 9463 | memcpy(outdata, tmp, sizeof(Py_UCS4) * newlength); |
| 9464 | break; |
| 9465 | default: |
| 9466 | assert(0); |
| 9467 | break; |
| 9468 | } |
| 9469 | leave: |
| 9470 | PyMem_FREE(tmp); |
| 9471 | return res; |
| 9472 | } |
| 9473 | |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9474 | PyObject * |
| 9475 | PyUnicode_Join(PyObject *separator, PyObject *seq) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9476 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9477 | PyObject *sep = NULL; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9478 | Py_ssize_t seplen; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9479 | PyObject *res = NULL; /* the result */ |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9480 | PyObject *fseq; /* PySequence_Fast(seq) */ |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9481 | Py_ssize_t seqlen; /* len(fseq) -- number of items in sequence */ |
| 9482 | PyObject **items; |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9483 | PyObject *item; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9484 | Py_ssize_t sz, i, res_offset; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9485 | Py_UCS4 maxchar; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9486 | Py_UCS4 item_maxchar; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9487 | int use_memcpy; |
| 9488 | unsigned char *res_data = NULL, *sep_data = NULL; |
| 9489 | PyObject *last_obj; |
| 9490 | unsigned int kind = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9491 | |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9492 | fseq = PySequence_Fast(seq, ""); |
| 9493 | if (fseq == NULL) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 9494 | return NULL; |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9495 | } |
| 9496 | |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9497 | /* NOTE: the following code can't call back into Python code, |
| 9498 | * so we are sure that fseq won't be mutated. |
Tim Peters | 91879ab | 2004-08-27 22:35:44 +0000 | [diff] [blame] | 9499 | */ |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9500 | |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9501 | seqlen = PySequence_Fast_GET_SIZE(fseq); |
| 9502 | /* If empty sequence, return u"". */ |
| 9503 | if (seqlen == 0) { |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9504 | Py_DECREF(fseq); |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 9505 | _Py_RETURN_UNICODE_EMPTY(); |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9506 | } |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9507 | |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9508 | /* If singleton sequence with an exact Unicode, return that. */ |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9509 | last_obj = NULL; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9510 | items = PySequence_Fast_ITEMS(fseq); |
Victor Stinner | acf47b8 | 2011-10-06 12:32:37 +0200 | [diff] [blame] | 9511 | if (seqlen == 1) { |
| 9512 | if (PyUnicode_CheckExact(items[0])) { |
| 9513 | res = items[0]; |
| 9514 | Py_INCREF(res); |
| 9515 | Py_DECREF(fseq); |
| 9516 | return res; |
| 9517 | } |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9518 | seplen = 0; |
Victor Stinner | c6f0df7 | 2011-10-06 15:58:54 +0200 | [diff] [blame] | 9519 | maxchar = 0; |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9520 | } |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9521 | else { |
Victor Stinner | acf47b8 | 2011-10-06 12:32:37 +0200 | [diff] [blame] | 9522 | /* Set up sep and seplen */ |
| 9523 | if (separator == NULL) { |
| 9524 | /* fall back to a blank space separator */ |
| 9525 | sep = PyUnicode_FromOrdinal(' '); |
| 9526 | if (!sep) |
| 9527 | goto onError; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9528 | seplen = 1; |
Victor Stinner | acf47b8 | 2011-10-06 12:32:37 +0200 | [diff] [blame] | 9529 | maxchar = 32; |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9530 | } |
Victor Stinner | acf47b8 | 2011-10-06 12:32:37 +0200 | [diff] [blame] | 9531 | else { |
| 9532 | if (!PyUnicode_Check(separator)) { |
| 9533 | PyErr_Format(PyExc_TypeError, |
| 9534 | "separator: expected str instance," |
| 9535 | " %.80s found", |
| 9536 | Py_TYPE(separator)->tp_name); |
| 9537 | goto onError; |
| 9538 | } |
| 9539 | if (PyUnicode_READY(separator)) |
| 9540 | goto onError; |
| 9541 | sep = separator; |
| 9542 | seplen = PyUnicode_GET_LENGTH(separator); |
| 9543 | maxchar = PyUnicode_MAX_CHAR_VALUE(separator); |
| 9544 | /* inc refcount to keep this code path symmetric with the |
| 9545 | above case of a blank separator */ |
| 9546 | Py_INCREF(sep); |
| 9547 | } |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9548 | last_obj = sep; |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9549 | } |
| 9550 | |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9551 | /* There are at least two things to join, or else we have a subclass |
| 9552 | * of str in the sequence. |
| 9553 | * Do a pre-pass to figure out the total amount of space we'll |
| 9554 | * need (sz), and see whether all argument are strings. |
| 9555 | */ |
| 9556 | sz = 0; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9557 | #ifdef Py_DEBUG |
| 9558 | use_memcpy = 0; |
| 9559 | #else |
| 9560 | use_memcpy = 1; |
| 9561 | #endif |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9562 | for (i = 0; i < seqlen; i++) { |
| 9563 | const Py_ssize_t old_sz = sz; |
| 9564 | item = items[i]; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9565 | if (!PyUnicode_Check(item)) { |
| 9566 | PyErr_Format(PyExc_TypeError, |
| 9567 | "sequence item %zd: expected str instance," |
| 9568 | " %.80s found", |
| 9569 | i, Py_TYPE(item)->tp_name); |
| 9570 | goto onError; |
| 9571 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9572 | if (PyUnicode_READY(item) == -1) |
| 9573 | goto onError; |
| 9574 | sz += PyUnicode_GET_LENGTH(item); |
| 9575 | item_maxchar = PyUnicode_MAX_CHAR_VALUE(item); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 9576 | maxchar = Py_MAX(maxchar, item_maxchar); |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9577 | if (i != 0) |
| 9578 | sz += seplen; |
| 9579 | if (sz < old_sz || sz > PY_SSIZE_T_MAX) { |
| 9580 | PyErr_SetString(PyExc_OverflowError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9581 | "join() result is too long for a Python string"); |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9582 | goto onError; |
| 9583 | } |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9584 | if (use_memcpy && last_obj != NULL) { |
| 9585 | if (PyUnicode_KIND(last_obj) != PyUnicode_KIND(item)) |
| 9586 | use_memcpy = 0; |
| 9587 | } |
| 9588 | last_obj = item; |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9589 | } |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 9590 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9591 | res = PyUnicode_New(sz, maxchar); |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9592 | if (res == NULL) |
| 9593 | goto onError; |
Tim Peters | 91879ab | 2004-08-27 22:35:44 +0000 | [diff] [blame] | 9594 | |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9595 | /* Catenate everything. */ |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9596 | #ifdef Py_DEBUG |
| 9597 | use_memcpy = 0; |
| 9598 | #else |
| 9599 | if (use_memcpy) { |
| 9600 | res_data = PyUnicode_1BYTE_DATA(res); |
| 9601 | kind = PyUnicode_KIND(res); |
| 9602 | if (seplen != 0) |
| 9603 | sep_data = PyUnicode_1BYTE_DATA(sep); |
| 9604 | } |
| 9605 | #endif |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9606 | for (i = 0, res_offset = 0; i < seqlen; ++i) { |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 9607 | Py_ssize_t itemlen; |
Antoine Pitrou | af14b79 | 2008-08-07 21:50:41 +0000 | [diff] [blame] | 9608 | item = items[i]; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9609 | /* Copy item, and maybe the separator. */ |
Victor Stinner | 9ce5a83 | 2011-10-03 23:36:02 +0200 | [diff] [blame] | 9610 | if (i && seplen != 0) { |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9611 | if (use_memcpy) { |
| 9612 | Py_MEMCPY(res_data, |
| 9613 | sep_data, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9614 | kind * seplen); |
| 9615 | res_data += kind * seplen; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9616 | } |
| 9617 | else { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 9618 | _PyUnicode_FastCopyCharacters(res, res_offset, sep, 0, seplen); |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9619 | res_offset += seplen; |
| 9620 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9621 | } |
Victor Stinner | 9ce5a83 | 2011-10-03 23:36:02 +0200 | [diff] [blame] | 9622 | itemlen = PyUnicode_GET_LENGTH(item); |
| 9623 | if (itemlen != 0) { |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9624 | if (use_memcpy) { |
| 9625 | Py_MEMCPY(res_data, |
| 9626 | PyUnicode_DATA(item), |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9627 | kind * itemlen); |
| 9628 | res_data += kind * itemlen; |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9629 | } |
| 9630 | else { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 9631 | _PyUnicode_FastCopyCharacters(res, res_offset, item, 0, itemlen); |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9632 | res_offset += itemlen; |
| 9633 | } |
Victor Stinner | 9ce5a83 | 2011-10-03 23:36:02 +0200 | [diff] [blame] | 9634 | } |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9635 | } |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9636 | if (use_memcpy) |
| 9637 | assert(res_data == PyUnicode_1BYTE_DATA(res) |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 9638 | + kind * PyUnicode_GET_LENGTH(res)); |
Victor Stinner | dd07732 | 2011-10-07 17:02:31 +0200 | [diff] [blame] | 9639 | else |
| 9640 | assert(res_offset == PyUnicode_GET_LENGTH(res)); |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9641 | |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9642 | Py_DECREF(fseq); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9643 | Py_XDECREF(sep); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 9644 | assert(_PyUnicode_CheckConsistency(res, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9645 | return res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9646 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9647 | onError: |
Tim Peters | 05eba1f | 2004-08-27 21:32:02 +0000 | [diff] [blame] | 9648 | Py_DECREF(fseq); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9649 | Py_XDECREF(sep); |
Tim Peters | 8ce9f16 | 2004-08-27 01:49:32 +0000 | [diff] [blame] | 9650 | Py_XDECREF(res); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9651 | return NULL; |
| 9652 | } |
| 9653 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9654 | #define FILL(kind, data, value, start, length) \ |
| 9655 | do { \ |
| 9656 | Py_ssize_t i_ = 0; \ |
| 9657 | assert(kind != PyUnicode_WCHAR_KIND); \ |
| 9658 | switch ((kind)) { \ |
| 9659 | case PyUnicode_1BYTE_KIND: { \ |
| 9660 | unsigned char * to_ = (unsigned char *)((data)) + (start); \ |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 9661 | memset(to_, (unsigned char)value, (length)); \ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9662 | break; \ |
| 9663 | } \ |
| 9664 | case PyUnicode_2BYTE_KIND: { \ |
| 9665 | Py_UCS2 * to_ = (Py_UCS2 *)((data)) + (start); \ |
| 9666 | for (; i_ < (length); ++i_, ++to_) *to_ = (value); \ |
| 9667 | break; \ |
| 9668 | } \ |
Benjamin Peterson | e157cf1 | 2012-01-01 15:56:20 -0600 | [diff] [blame] | 9669 | case PyUnicode_4BYTE_KIND: { \ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9670 | Py_UCS4 * to_ = (Py_UCS4 *)((data)) + (start); \ |
| 9671 | for (; i_ < (length); ++i_, ++to_) *to_ = (value); \ |
| 9672 | break; \ |
Benjamin Peterson | e157cf1 | 2012-01-01 15:56:20 -0600 | [diff] [blame] | 9673 | default: assert(0); \ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9674 | } \ |
| 9675 | } \ |
| 9676 | } while (0) |
| 9677 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 9678 | void |
| 9679 | _PyUnicode_FastFill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length, |
| 9680 | Py_UCS4 fill_char) |
| 9681 | { |
| 9682 | const enum PyUnicode_Kind kind = PyUnicode_KIND(unicode); |
| 9683 | const void *data = PyUnicode_DATA(unicode); |
| 9684 | assert(PyUnicode_IS_READY(unicode)); |
| 9685 | assert(unicode_modifiable(unicode)); |
| 9686 | assert(fill_char <= PyUnicode_MAX_CHAR_VALUE(unicode)); |
| 9687 | assert(start >= 0); |
| 9688 | assert(start + length <= PyUnicode_GET_LENGTH(unicode)); |
| 9689 | FILL(kind, data, fill_char, start, length); |
| 9690 | } |
| 9691 | |
Victor Stinner | 3fe5531 | 2012-01-04 00:33:50 +0100 | [diff] [blame] | 9692 | Py_ssize_t |
| 9693 | PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length, |
| 9694 | Py_UCS4 fill_char) |
| 9695 | { |
| 9696 | Py_ssize_t maxlen; |
Victor Stinner | 3fe5531 | 2012-01-04 00:33:50 +0100 | [diff] [blame] | 9697 | |
| 9698 | if (!PyUnicode_Check(unicode)) { |
| 9699 | PyErr_BadInternalCall(); |
| 9700 | return -1; |
| 9701 | } |
| 9702 | if (PyUnicode_READY(unicode) == -1) |
| 9703 | return -1; |
| 9704 | if (unicode_check_modifiable(unicode)) |
| 9705 | return -1; |
| 9706 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 9707 | if (start < 0) { |
| 9708 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 9709 | return -1; |
| 9710 | } |
Victor Stinner | 3fe5531 | 2012-01-04 00:33:50 +0100 | [diff] [blame] | 9711 | if (fill_char > PyUnicode_MAX_CHAR_VALUE(unicode)) { |
| 9712 | PyErr_SetString(PyExc_ValueError, |
| 9713 | "fill character is bigger than " |
| 9714 | "the string maximum character"); |
| 9715 | return -1; |
| 9716 | } |
| 9717 | |
| 9718 | maxlen = PyUnicode_GET_LENGTH(unicode) - start; |
| 9719 | length = Py_MIN(maxlen, length); |
| 9720 | if (length <= 0) |
| 9721 | return 0; |
| 9722 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 9723 | _PyUnicode_FastFill(unicode, start, length, fill_char); |
Victor Stinner | 3fe5531 | 2012-01-04 00:33:50 +0100 | [diff] [blame] | 9724 | return length; |
| 9725 | } |
| 9726 | |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9727 | static PyObject * |
| 9728 | pad(PyObject *self, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9729 | Py_ssize_t left, |
| 9730 | Py_ssize_t right, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9731 | Py_UCS4 fill) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9732 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9733 | PyObject *u; |
| 9734 | Py_UCS4 maxchar; |
Victor Stinner | 6c7a52a | 2011-09-28 21:39:17 +0200 | [diff] [blame] | 9735 | int kind; |
| 9736 | void *data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9737 | |
| 9738 | if (left < 0) |
| 9739 | left = 0; |
| 9740 | if (right < 0) |
| 9741 | right = 0; |
| 9742 | |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 9743 | if (left == 0 && right == 0) |
| 9744 | return unicode_result_unchanged(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9745 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9746 | if (left > PY_SSIZE_T_MAX - _PyUnicode_LENGTH(self) || |
| 9747 | right > PY_SSIZE_T_MAX - (left + _PyUnicode_LENGTH(self))) { |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 9748 | PyErr_SetString(PyExc_OverflowError, "padded string is too long"); |
| 9749 | return NULL; |
| 9750 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9751 | maxchar = PyUnicode_MAX_CHAR_VALUE(self); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 9752 | maxchar = Py_MAX(maxchar, fill); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9753 | u = PyUnicode_New(left + _PyUnicode_LENGTH(self) + right, maxchar); |
Victor Stinner | 6c7a52a | 2011-09-28 21:39:17 +0200 | [diff] [blame] | 9754 | if (!u) |
| 9755 | return NULL; |
| 9756 | |
| 9757 | kind = PyUnicode_KIND(u); |
| 9758 | data = PyUnicode_DATA(u); |
| 9759 | if (left) |
| 9760 | FILL(kind, data, fill, 0, left); |
| 9761 | if (right) |
| 9762 | FILL(kind, data, fill, left + _PyUnicode_LENGTH(self), right); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 9763 | _PyUnicode_FastCopyCharacters(u, left, self, 0, _PyUnicode_LENGTH(self)); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 9764 | assert(_PyUnicode_CheckConsistency(u, 1)); |
| 9765 | return u; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9766 | } |
| 9767 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9768 | PyObject * |
| 9769 | PyUnicode_Splitlines(PyObject *string, int keepends) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9770 | { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9771 | PyObject *list; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9772 | |
| 9773 | string = PyUnicode_FromObject(string); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 9774 | if (string == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 9775 | return NULL; |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 9776 | if (PyUnicode_READY(string) == -1) { |
| 9777 | Py_DECREF(string); |
| 9778 | return NULL; |
| 9779 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9780 | |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 9781 | switch (PyUnicode_KIND(string)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9782 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9783 | if (PyUnicode_IS_ASCII(string)) |
| 9784 | list = asciilib_splitlines( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9785 | string, PyUnicode_1BYTE_DATA(string), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9786 | PyUnicode_GET_LENGTH(string), keepends); |
| 9787 | else |
| 9788 | list = ucs1lib_splitlines( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9789 | string, PyUnicode_1BYTE_DATA(string), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9790 | PyUnicode_GET_LENGTH(string), keepends); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9791 | break; |
| 9792 | case PyUnicode_2BYTE_KIND: |
| 9793 | list = ucs2lib_splitlines( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9794 | string, PyUnicode_2BYTE_DATA(string), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9795 | PyUnicode_GET_LENGTH(string), keepends); |
| 9796 | break; |
| 9797 | case PyUnicode_4BYTE_KIND: |
| 9798 | list = ucs4lib_splitlines( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9799 | string, PyUnicode_4BYTE_DATA(string), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9800 | PyUnicode_GET_LENGTH(string), keepends); |
| 9801 | break; |
| 9802 | default: |
| 9803 | assert(0); |
| 9804 | list = 0; |
| 9805 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9806 | Py_DECREF(string); |
| 9807 | return list; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9808 | } |
| 9809 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9810 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9811 | split(PyObject *self, |
| 9812 | PyObject *substring, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9813 | Py_ssize_t maxcount) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9814 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9815 | int kind1, kind2, kind; |
| 9816 | void *buf1, *buf2; |
| 9817 | Py_ssize_t len1, len2; |
| 9818 | PyObject* out; |
| 9819 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9820 | if (maxcount < 0) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 9821 | maxcount = PY_SSIZE_T_MAX; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9822 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9823 | if (PyUnicode_READY(self) == -1) |
| 9824 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9825 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9826 | if (substring == NULL) |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 9827 | switch (PyUnicode_KIND(self)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9828 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9829 | if (PyUnicode_IS_ASCII(self)) |
| 9830 | return asciilib_split_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9831 | self, PyUnicode_1BYTE_DATA(self), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9832 | PyUnicode_GET_LENGTH(self), maxcount |
| 9833 | ); |
| 9834 | else |
| 9835 | return ucs1lib_split_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9836 | self, PyUnicode_1BYTE_DATA(self), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9837 | PyUnicode_GET_LENGTH(self), maxcount |
| 9838 | ); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9839 | case PyUnicode_2BYTE_KIND: |
| 9840 | return ucs2lib_split_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9841 | self, PyUnicode_2BYTE_DATA(self), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9842 | PyUnicode_GET_LENGTH(self), maxcount |
| 9843 | ); |
| 9844 | case PyUnicode_4BYTE_KIND: |
| 9845 | return ucs4lib_split_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9846 | self, PyUnicode_4BYTE_DATA(self), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9847 | PyUnicode_GET_LENGTH(self), maxcount |
| 9848 | ); |
| 9849 | default: |
| 9850 | assert(0); |
| 9851 | return NULL; |
| 9852 | } |
| 9853 | |
| 9854 | if (PyUnicode_READY(substring) == -1) |
| 9855 | return NULL; |
| 9856 | |
| 9857 | kind1 = PyUnicode_KIND(self); |
| 9858 | kind2 = PyUnicode_KIND(substring); |
| 9859 | kind = kind1 > kind2 ? kind1 : kind2; |
| 9860 | buf1 = PyUnicode_DATA(self); |
| 9861 | buf2 = PyUnicode_DATA(substring); |
| 9862 | if (kind1 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9863 | buf1 = _PyUnicode_AsKind(self, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9864 | if (!buf1) |
| 9865 | return NULL; |
| 9866 | if (kind2 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9867 | buf2 = _PyUnicode_AsKind(substring, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9868 | if (!buf2) { |
| 9869 | if (kind1 != kind) PyMem_Free(buf1); |
| 9870 | return NULL; |
| 9871 | } |
| 9872 | len1 = PyUnicode_GET_LENGTH(self); |
| 9873 | len2 = PyUnicode_GET_LENGTH(substring); |
| 9874 | |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 9875 | switch (kind) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9876 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9877 | if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring)) |
| 9878 | out = asciilib_split( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9879 | self, buf1, len1, buf2, len2, maxcount); |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9880 | else |
| 9881 | out = ucs1lib_split( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9882 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9883 | break; |
| 9884 | case PyUnicode_2BYTE_KIND: |
| 9885 | out = ucs2lib_split( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9886 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9887 | break; |
| 9888 | case PyUnicode_4BYTE_KIND: |
| 9889 | out = ucs4lib_split( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9890 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9891 | break; |
| 9892 | default: |
| 9893 | out = NULL; |
| 9894 | } |
| 9895 | if (kind1 != kind) |
| 9896 | PyMem_Free(buf1); |
| 9897 | if (kind2 != kind) |
| 9898 | PyMem_Free(buf2); |
| 9899 | return out; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 9900 | } |
| 9901 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9902 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 9903 | rsplit(PyObject *self, |
| 9904 | PyObject *substring, |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 9905 | Py_ssize_t maxcount) |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 9906 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9907 | int kind1, kind2, kind; |
| 9908 | void *buf1, *buf2; |
| 9909 | Py_ssize_t len1, len2; |
| 9910 | PyObject* out; |
| 9911 | |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 9912 | if (maxcount < 0) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 9913 | maxcount = PY_SSIZE_T_MAX; |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 9914 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9915 | if (PyUnicode_READY(self) == -1) |
| 9916 | return NULL; |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 9917 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9918 | if (substring == NULL) |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 9919 | switch (PyUnicode_KIND(self)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9920 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9921 | if (PyUnicode_IS_ASCII(self)) |
| 9922 | return asciilib_rsplit_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9923 | self, PyUnicode_1BYTE_DATA(self), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9924 | PyUnicode_GET_LENGTH(self), maxcount |
| 9925 | ); |
| 9926 | else |
| 9927 | return ucs1lib_rsplit_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9928 | self, PyUnicode_1BYTE_DATA(self), |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9929 | PyUnicode_GET_LENGTH(self), maxcount |
| 9930 | ); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9931 | case PyUnicode_2BYTE_KIND: |
| 9932 | return ucs2lib_rsplit_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9933 | self, PyUnicode_2BYTE_DATA(self), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9934 | PyUnicode_GET_LENGTH(self), maxcount |
| 9935 | ); |
| 9936 | case PyUnicode_4BYTE_KIND: |
| 9937 | return ucs4lib_rsplit_whitespace( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9938 | self, PyUnicode_4BYTE_DATA(self), |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9939 | PyUnicode_GET_LENGTH(self), maxcount |
| 9940 | ); |
| 9941 | default: |
| 9942 | assert(0); |
| 9943 | return NULL; |
| 9944 | } |
| 9945 | |
| 9946 | if (PyUnicode_READY(substring) == -1) |
| 9947 | return NULL; |
| 9948 | |
| 9949 | kind1 = PyUnicode_KIND(self); |
| 9950 | kind2 = PyUnicode_KIND(substring); |
| 9951 | kind = kind1 > kind2 ? kind1 : kind2; |
| 9952 | buf1 = PyUnicode_DATA(self); |
| 9953 | buf2 = PyUnicode_DATA(substring); |
| 9954 | if (kind1 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9955 | buf1 = _PyUnicode_AsKind(self, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9956 | if (!buf1) |
| 9957 | return NULL; |
| 9958 | if (kind2 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9959 | buf2 = _PyUnicode_AsKind(substring, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9960 | if (!buf2) { |
| 9961 | if (kind1 != kind) PyMem_Free(buf1); |
| 9962 | return NULL; |
| 9963 | } |
| 9964 | len1 = PyUnicode_GET_LENGTH(self); |
| 9965 | len2 = PyUnicode_GET_LENGTH(substring); |
| 9966 | |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 9967 | switch (kind) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9968 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9969 | if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring)) |
| 9970 | out = asciilib_rsplit( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9971 | self, buf1, len1, buf2, len2, maxcount); |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9972 | else |
| 9973 | out = ucs1lib_rsplit( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9974 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9975 | break; |
| 9976 | case PyUnicode_2BYTE_KIND: |
| 9977 | out = ucs2lib_rsplit( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9978 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9979 | break; |
| 9980 | case PyUnicode_4BYTE_KIND: |
| 9981 | out = ucs4lib_rsplit( |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 9982 | self, buf1, len1, buf2, len2, maxcount); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9983 | break; |
| 9984 | default: |
| 9985 | out = NULL; |
| 9986 | } |
| 9987 | if (kind1 != kind) |
| 9988 | PyMem_Free(buf1); |
| 9989 | if (kind2 != kind) |
| 9990 | PyMem_Free(buf2); |
| 9991 | return out; |
| 9992 | } |
| 9993 | |
| 9994 | static Py_ssize_t |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 9995 | anylib_find(int kind, PyObject *str1, void *buf1, Py_ssize_t len1, |
| 9996 | 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] | 9997 | { |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 9998 | switch (kind) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 9999 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10000 | if (PyUnicode_IS_ASCII(str1) && PyUnicode_IS_ASCII(str2)) |
| 10001 | return asciilib_find(buf1, len1, buf2, len2, offset); |
| 10002 | else |
| 10003 | return ucs1lib_find(buf1, len1, buf2, len2, offset); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10004 | case PyUnicode_2BYTE_KIND: |
| 10005 | return ucs2lib_find(buf1, len1, buf2, len2, offset); |
| 10006 | case PyUnicode_4BYTE_KIND: |
| 10007 | return ucs4lib_find(buf1, len1, buf2, len2, offset); |
| 10008 | } |
| 10009 | assert(0); |
| 10010 | return -1; |
| 10011 | } |
| 10012 | |
| 10013 | static Py_ssize_t |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10014 | anylib_count(int kind, PyObject *sstr, void* sbuf, Py_ssize_t slen, |
| 10015 | 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] | 10016 | { |
Benjamin Peterson | c0b95d1 | 2011-12-20 17:24:05 -0600 | [diff] [blame] | 10017 | switch (kind) { |
| 10018 | case PyUnicode_1BYTE_KIND: |
| 10019 | if (PyUnicode_IS_ASCII(sstr) && PyUnicode_IS_ASCII(str1)) |
| 10020 | return asciilib_count(sbuf, slen, buf1, len1, maxcount); |
| 10021 | else |
| 10022 | return ucs1lib_count(sbuf, slen, buf1, len1, maxcount); |
| 10023 | case PyUnicode_2BYTE_KIND: |
| 10024 | return ucs2lib_count(sbuf, slen, buf1, len1, maxcount); |
| 10025 | case PyUnicode_4BYTE_KIND: |
| 10026 | return ucs4lib_count(sbuf, slen, buf1, len1, maxcount); |
| 10027 | } |
| 10028 | assert(0); |
| 10029 | return 0; |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 10030 | } |
| 10031 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10032 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10033 | replace(PyObject *self, PyObject *str1, |
| 10034 | PyObject *str2, Py_ssize_t maxcount) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10035 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10036 | PyObject *u; |
| 10037 | char *sbuf = PyUnicode_DATA(self); |
| 10038 | char *buf1 = PyUnicode_DATA(str1); |
| 10039 | char *buf2 = PyUnicode_DATA(str2); |
| 10040 | int srelease = 0, release1 = 0, release2 = 0; |
| 10041 | int skind = PyUnicode_KIND(self); |
| 10042 | int kind1 = PyUnicode_KIND(str1); |
| 10043 | int kind2 = PyUnicode_KIND(str2); |
| 10044 | Py_ssize_t slen = PyUnicode_GET_LENGTH(self); |
| 10045 | Py_ssize_t len1 = PyUnicode_GET_LENGTH(str1); |
| 10046 | Py_ssize_t len2 = PyUnicode_GET_LENGTH(str2); |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10047 | int mayshrink; |
| 10048 | Py_UCS4 maxchar, maxchar_str2; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10049 | |
| 10050 | if (maxcount < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10051 | maxcount = PY_SSIZE_T_MAX; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10052 | else if (maxcount == 0 || slen == 0) |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10053 | goto nothing; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10054 | |
Victor Stinner | 59de0ee | 2011-10-07 10:01:28 +0200 | [diff] [blame] | 10055 | if (str1 == str2) |
| 10056 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10057 | if (skind < kind1) |
| 10058 | /* substring too wide to be present */ |
| 10059 | goto nothing; |
| 10060 | |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10061 | maxchar = PyUnicode_MAX_CHAR_VALUE(self); |
| 10062 | maxchar_str2 = PyUnicode_MAX_CHAR_VALUE(str2); |
| 10063 | /* Replacing str1 with str2 may cause a maxchar reduction in the |
| 10064 | result string. */ |
| 10065 | mayshrink = (maxchar_str2 < maxchar); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 10066 | maxchar = Py_MAX(maxchar, maxchar_str2); |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10067 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10068 | if (len1 == len2) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10069 | /* same length */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10070 | if (len1 == 0) |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10071 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10072 | if (len1 == 1) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10073 | /* replace characters */ |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10074 | Py_UCS4 u1, u2; |
| 10075 | int rkind; |
Victor Stinner | f644110 | 2011-12-18 02:43:08 +0100 | [diff] [blame] | 10076 | Py_ssize_t index, pos; |
| 10077 | char *src; |
| 10078 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10079 | u1 = PyUnicode_READ_CHAR(str1, 0); |
Victor Stinner | f644110 | 2011-12-18 02:43:08 +0100 | [diff] [blame] | 10080 | pos = findchar(sbuf, PyUnicode_KIND(self), slen, u1, 1); |
| 10081 | if (pos < 0) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10082 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10083 | u2 = PyUnicode_READ_CHAR(str2, 0); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10084 | u = PyUnicode_New(slen, maxchar); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10085 | if (!u) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10086 | goto error; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 10087 | _PyUnicode_FastCopyCharacters(u, 0, self, 0, slen); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10088 | rkind = PyUnicode_KIND(u); |
Victor Stinner | f644110 | 2011-12-18 02:43:08 +0100 | [diff] [blame] | 10089 | |
| 10090 | PyUnicode_WRITE(rkind, PyUnicode_DATA(u), pos, u2); |
| 10091 | index = 0; |
| 10092 | src = sbuf; |
| 10093 | while (--maxcount) |
| 10094 | { |
| 10095 | pos++; |
| 10096 | src += pos * PyUnicode_KIND(self); |
| 10097 | slen -= pos; |
| 10098 | index += pos; |
| 10099 | pos = findchar(src, PyUnicode_KIND(self), slen, u1, 1); |
| 10100 | if (pos < 0) |
| 10101 | break; |
| 10102 | PyUnicode_WRITE(rkind, PyUnicode_DATA(u), index + pos, u2); |
| 10103 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10104 | } |
| 10105 | else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10106 | int rkind = skind; |
| 10107 | char *res; |
Victor Stinner | f644110 | 2011-12-18 02:43:08 +0100 | [diff] [blame] | 10108 | Py_ssize_t i; |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 10109 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10110 | if (kind1 < rkind) { |
| 10111 | /* widen substring */ |
| 10112 | buf1 = _PyUnicode_AsKind(str1, rkind); |
| 10113 | if (!buf1) goto error; |
| 10114 | release1 = 1; |
| 10115 | } |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10116 | i = anylib_find(rkind, self, sbuf, slen, str1, buf1, len1, 0); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10117 | if (i < 0) |
| 10118 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10119 | if (rkind > kind2) { |
| 10120 | /* widen replacement */ |
| 10121 | buf2 = _PyUnicode_AsKind(str2, rkind); |
| 10122 | if (!buf2) goto error; |
| 10123 | release2 = 1; |
| 10124 | } |
| 10125 | else if (rkind < kind2) { |
| 10126 | /* widen self and buf1 */ |
| 10127 | rkind = kind2; |
| 10128 | if (release1) PyMem_Free(buf1); |
Antoine Pitrou | 6d5ad22 | 2012-11-17 23:28:17 +0100 | [diff] [blame] | 10129 | release1 = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10130 | sbuf = _PyUnicode_AsKind(self, rkind); |
| 10131 | if (!sbuf) goto error; |
| 10132 | srelease = 1; |
| 10133 | buf1 = _PyUnicode_AsKind(str1, rkind); |
| 10134 | if (!buf1) goto error; |
| 10135 | release1 = 1; |
| 10136 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10137 | u = PyUnicode_New(slen, maxchar); |
| 10138 | if (!u) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10139 | goto error; |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10140 | assert(PyUnicode_KIND(u) == rkind); |
| 10141 | res = PyUnicode_DATA(u); |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 10142 | |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10143 | memcpy(res, sbuf, rkind * slen); |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10144 | /* change everything in-place, starting with this one */ |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10145 | memcpy(res + rkind * i, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10146 | buf2, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10147 | rkind * len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10148 | i += len1; |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10149 | |
| 10150 | while ( --maxcount > 0) { |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10151 | i = anylib_find(rkind, self, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10152 | sbuf+rkind*i, slen-i, |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10153 | str1, buf1, len1, i); |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10154 | if (i == -1) |
| 10155 | break; |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10156 | memcpy(res + rkind * i, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10157 | buf2, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10158 | rkind * len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10159 | i += len1; |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10160 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10161 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10162 | } |
| 10163 | else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10164 | Py_ssize_t n, i, j, ires; |
Mark Dickinson | c04ddff | 2012-10-06 18:04:49 +0100 | [diff] [blame] | 10165 | Py_ssize_t new_size; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10166 | int rkind = skind; |
| 10167 | char *res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10168 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10169 | if (kind1 < rkind) { |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10170 | /* widen substring */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10171 | buf1 = _PyUnicode_AsKind(str1, rkind); |
| 10172 | if (!buf1) goto error; |
| 10173 | release1 = 1; |
| 10174 | } |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10175 | n = anylib_count(rkind, self, sbuf, slen, str1, buf1, len1, maxcount); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10176 | if (n == 0) |
| 10177 | goto nothing; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10178 | if (kind2 < rkind) { |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10179 | /* widen replacement */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10180 | buf2 = _PyUnicode_AsKind(str2, rkind); |
| 10181 | if (!buf2) goto error; |
| 10182 | release2 = 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10183 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10184 | else if (kind2 > rkind) { |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10185 | /* widen self and buf1 */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10186 | rkind = kind2; |
| 10187 | sbuf = _PyUnicode_AsKind(self, rkind); |
| 10188 | if (!sbuf) goto error; |
| 10189 | srelease = 1; |
| 10190 | if (release1) PyMem_Free(buf1); |
Antoine Pitrou | 6d5ad22 | 2012-11-17 23:28:17 +0100 | [diff] [blame] | 10191 | release1 = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10192 | buf1 = _PyUnicode_AsKind(str1, rkind); |
| 10193 | if (!buf1) goto error; |
| 10194 | release1 = 1; |
| 10195 | } |
| 10196 | /* new_size = PyUnicode_GET_LENGTH(self) + n * (PyUnicode_GET_LENGTH(str2) - |
| 10197 | PyUnicode_GET_LENGTH(str1))); */ |
Mark Dickinson | c04ddff | 2012-10-06 18:04:49 +0100 | [diff] [blame] | 10198 | if (len2 > len1 && len2 - len1 > (PY_SSIZE_T_MAX - slen) / n) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10199 | PyErr_SetString(PyExc_OverflowError, |
| 10200 | "replace string is too long"); |
| 10201 | goto error; |
| 10202 | } |
Mark Dickinson | c04ddff | 2012-10-06 18:04:49 +0100 | [diff] [blame] | 10203 | new_size = slen + n * (len2 - len1); |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10204 | if (new_size == 0) { |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 10205 | _Py_INCREF_UNICODE_EMPTY(); |
| 10206 | if (!unicode_empty) |
| 10207 | goto error; |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10208 | u = unicode_empty; |
| 10209 | goto done; |
| 10210 | } |
Mark Dickinson | c04ddff | 2012-10-06 18:04:49 +0100 | [diff] [blame] | 10211 | if (new_size > (PY_SSIZE_T_MAX >> (rkind-1))) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10212 | PyErr_SetString(PyExc_OverflowError, |
| 10213 | "replace string is too long"); |
| 10214 | goto error; |
| 10215 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10216 | u = PyUnicode_New(new_size, maxchar); |
| 10217 | if (!u) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10218 | goto error; |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10219 | assert(PyUnicode_KIND(u) == rkind); |
| 10220 | res = PyUnicode_DATA(u); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10221 | ires = i = 0; |
| 10222 | if (len1 > 0) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10223 | while (n-- > 0) { |
| 10224 | /* look for next match */ |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10225 | j = anylib_find(rkind, self, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10226 | sbuf + rkind * i, slen-i, |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 10227 | str1, buf1, len1, i); |
Antoine Pitrou | f2c5484 | 2010-01-13 08:07:53 +0000 | [diff] [blame] | 10228 | if (j == -1) |
| 10229 | break; |
| 10230 | else if (j > i) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10231 | /* copy unchanged part [i:j] */ |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10232 | memcpy(res + rkind * ires, |
| 10233 | sbuf + rkind * i, |
| 10234 | rkind * (j-i)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10235 | ires += j - i; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10236 | } |
| 10237 | /* copy substitution string */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10238 | if (len2 > 0) { |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10239 | memcpy(res + rkind * ires, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10240 | buf2, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10241 | rkind * len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10242 | ires += len2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10243 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10244 | i = j + len1; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10245 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10246 | if (i < slen) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10247 | /* copy tail [i:] */ |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10248 | memcpy(res + rkind * ires, |
| 10249 | sbuf + rkind * i, |
| 10250 | rkind * (slen-i)); |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10251 | } |
| 10252 | else { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10253 | /* interleave */ |
| 10254 | while (n > 0) { |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10255 | memcpy(res + rkind * ires, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10256 | buf2, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10257 | rkind * len2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10258 | ires += len2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10259 | if (--n <= 0) |
| 10260 | break; |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 10261 | memcpy(res + rkind * ires, |
| 10262 | sbuf + rkind * i, |
| 10263 | rkind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10264 | ires++; |
| 10265 | i++; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10266 | } |
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 * (slen-i)); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10270 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10271 | } |
| 10272 | |
| 10273 | if (mayshrink) { |
Victor Stinner | 25a4b29 | 2011-10-06 12:31:55 +0200 | [diff] [blame] | 10274 | unicode_adjust_maxchar(&u); |
| 10275 | if (u == NULL) |
| 10276 | goto error; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10277 | } |
Victor Stinner | 49a0a21 | 2011-10-12 23:46:10 +0200 | [diff] [blame] | 10278 | |
| 10279 | done: |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10280 | if (srelease) |
| 10281 | PyMem_FREE(sbuf); |
| 10282 | if (release1) |
| 10283 | PyMem_FREE(buf1); |
| 10284 | if (release2) |
| 10285 | PyMem_FREE(buf2); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 10286 | assert(_PyUnicode_CheckConsistency(u, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10287 | return u; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10288 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10289 | nothing: |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10290 | /* nothing to replace; return original string (when possible) */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10291 | if (srelease) |
| 10292 | PyMem_FREE(sbuf); |
| 10293 | if (release1) |
| 10294 | PyMem_FREE(buf1); |
| 10295 | if (release2) |
| 10296 | PyMem_FREE(buf2); |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 10297 | return unicode_result_unchanged(self); |
| 10298 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10299 | error: |
| 10300 | if (srelease && sbuf) |
| 10301 | PyMem_FREE(sbuf); |
| 10302 | if (release1 && buf1) |
| 10303 | PyMem_FREE(buf1); |
| 10304 | if (release2 && buf2) |
| 10305 | PyMem_FREE(buf2); |
| 10306 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10307 | } |
| 10308 | |
| 10309 | /* --- Unicode Object Methods --------------------------------------------- */ |
| 10310 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10311 | PyDoc_STRVAR(title__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10312 | "S.title() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10313 | \n\ |
| 10314 | 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] | 10315 | characters, all remaining cased characters have lower case."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10316 | |
| 10317 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 10318 | unicode_title(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10319 | { |
Benjamin Peterson | eea4846 | 2012-01-16 14:28:50 -0500 | [diff] [blame] | 10320 | if (PyUnicode_READY(self) == -1) |
| 10321 | return NULL; |
Victor Stinner | b0800dc | 2012-02-25 00:47:08 +0100 | [diff] [blame] | 10322 | return case_operation(self, do_title); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10323 | } |
| 10324 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10325 | PyDoc_STRVAR(capitalize__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10326 | "S.capitalize() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10327 | \n\ |
| 10328 | 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] | 10329 | have upper case and the rest lower case."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10330 | |
| 10331 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 10332 | unicode_capitalize(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10333 | { |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 10334 | if (PyUnicode_READY(self) == -1) |
| 10335 | return NULL; |
| 10336 | if (PyUnicode_GET_LENGTH(self) == 0) |
| 10337 | return unicode_result_unchanged(self); |
Victor Stinner | b0800dc | 2012-02-25 00:47:08 +0100 | [diff] [blame] | 10338 | return case_operation(self, do_capitalize); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10339 | } |
| 10340 | |
Benjamin Peterson | d5890c8 | 2012-01-14 13:23:30 -0500 | [diff] [blame] | 10341 | PyDoc_STRVAR(casefold__doc__, |
| 10342 | "S.casefold() -> str\n\ |
| 10343 | \n\ |
| 10344 | Return a version of S suitable for caseless comparisons."); |
| 10345 | |
| 10346 | static PyObject * |
| 10347 | unicode_casefold(PyObject *self) |
| 10348 | { |
| 10349 | if (PyUnicode_READY(self) == -1) |
| 10350 | return NULL; |
| 10351 | if (PyUnicode_IS_ASCII(self)) |
| 10352 | return ascii_upper_or_lower(self, 1); |
Victor Stinner | b0800dc | 2012-02-25 00:47:08 +0100 | [diff] [blame] | 10353 | return case_operation(self, do_casefold); |
Benjamin Peterson | d5890c8 | 2012-01-14 13:23:30 -0500 | [diff] [blame] | 10354 | } |
| 10355 | |
| 10356 | |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 10357 | /* Argument converter. Coerces to a single unicode character */ |
| 10358 | |
| 10359 | static int |
| 10360 | convert_uc(PyObject *obj, void *addr) |
| 10361 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10362 | Py_UCS4 *fillcharloc = (Py_UCS4 *)addr; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10363 | PyObject *uniobj; |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 10364 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10365 | uniobj = PyUnicode_FromObject(obj); |
| 10366 | if (uniobj == NULL) { |
| 10367 | PyErr_SetString(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10368 | "The fill character cannot be converted to Unicode"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10369 | return 0; |
| 10370 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10371 | if (PyUnicode_GET_LENGTH(uniobj) != 1) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10372 | PyErr_SetString(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10373 | "The fill character must be exactly one character long"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10374 | Py_DECREF(uniobj); |
| 10375 | return 0; |
| 10376 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10377 | *fillcharloc = PyUnicode_READ_CHAR(uniobj, 0); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10378 | Py_DECREF(uniobj); |
| 10379 | return 1; |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 10380 | } |
| 10381 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10382 | PyDoc_STRVAR(center__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10383 | "S.center(width[, fillchar]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10384 | \n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 10385 | Return S centered in a string of length width. Padding is\n\ |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 10386 | done using the specified fill character (default is a space)"); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10387 | |
| 10388 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 10389 | unicode_center(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10390 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 10391 | Py_ssize_t marg, left; |
| 10392 | Py_ssize_t width; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10393 | Py_UCS4 fillchar = ' '; |
| 10394 | |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 10395 | 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] | 10396 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10397 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 10398 | if (PyUnicode_READY(self) == -1) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10399 | return NULL; |
| 10400 | |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 10401 | if (PyUnicode_GET_LENGTH(self) >= width) |
| 10402 | return unicode_result_unchanged(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10403 | |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 10404 | marg = width - PyUnicode_GET_LENGTH(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10405 | left = marg / 2 + (marg & width & 1); |
| 10406 | |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 10407 | return pad(self, left, marg - left, fillchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10408 | } |
| 10409 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10410 | /* This function assumes that str1 and str2 are readied by the caller. */ |
| 10411 | |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10412 | static int |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10413 | unicode_compare(PyObject *str1, PyObject *str2) |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10414 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10415 | int kind1, kind2; |
| 10416 | void *data1, *data2; |
| 10417 | Py_ssize_t len1, len2, i; |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10418 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10419 | kind1 = PyUnicode_KIND(str1); |
| 10420 | kind2 = PyUnicode_KIND(str2); |
| 10421 | data1 = PyUnicode_DATA(str1); |
| 10422 | data2 = PyUnicode_DATA(str2); |
| 10423 | len1 = PyUnicode_GET_LENGTH(str1); |
| 10424 | len2 = PyUnicode_GET_LENGTH(str2); |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10425 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10426 | for (i = 0; i < len1 && i < len2; ++i) { |
| 10427 | Py_UCS4 c1, c2; |
| 10428 | c1 = PyUnicode_READ(kind1, data1, i); |
| 10429 | c2 = PyUnicode_READ(kind2, data2, i); |
Fredrik Lundh | 45714e9 | 2001-06-26 16:39:36 +0000 | [diff] [blame] | 10430 | |
| 10431 | if (c1 != c2) |
| 10432 | return (c1 < c2) ? -1 : 1; |
Marc-André Lemburg | e503437 | 2000-08-08 08:04:29 +0000 | [diff] [blame] | 10433 | } |
| 10434 | |
| 10435 | return (len1 < len2) ? -1 : (len1 != len2); |
| 10436 | } |
| 10437 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10438 | int |
| 10439 | PyUnicode_Compare(PyObject *left, PyObject *right) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10440 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10441 | if (PyUnicode_Check(left) && PyUnicode_Check(right)) { |
| 10442 | if (PyUnicode_READY(left) == -1 || |
| 10443 | PyUnicode_READY(right) == -1) |
| 10444 | return -1; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10445 | return unicode_compare(left, right); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10446 | } |
Guido van Rossum | 09dc34f | 2007-05-04 04:17:33 +0000 | [diff] [blame] | 10447 | PyErr_Format(PyExc_TypeError, |
| 10448 | "Can't compare %.100s and %.100s", |
| 10449 | left->ob_type->tp_name, |
| 10450 | right->ob_type->tp_name); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10451 | return -1; |
| 10452 | } |
| 10453 | |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 10454 | int |
| 10455 | PyUnicode_CompareWithASCIIString(PyObject* uni, const char* str) |
| 10456 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10457 | Py_ssize_t i; |
| 10458 | int kind; |
| 10459 | void *data; |
| 10460 | Py_UCS4 chr; |
| 10461 | |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 10462 | assert(_PyUnicode_CHECK(uni)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10463 | if (PyUnicode_READY(uni) == -1) |
| 10464 | return -1; |
| 10465 | kind = PyUnicode_KIND(uni); |
| 10466 | data = PyUnicode_DATA(uni); |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 10467 | /* Compare Unicode string and source character set string */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10468 | for (i = 0; (chr = PyUnicode_READ(kind, data, i)) && str[i]; i++) |
| 10469 | if (chr != str[i]) |
| 10470 | return (chr < (unsigned char)(str[i])) ? -1 : 1; |
Benjamin Peterson | 8667a9b | 2010-01-09 21:45:28 +0000 | [diff] [blame] | 10471 | /* This check keeps Python strings that end in '\0' from comparing equal |
| 10472 | to C strings identical up to that point. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10473 | if (PyUnicode_GET_LENGTH(uni) != i || chr) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10474 | return 1; /* uni is longer */ |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 10475 | if (str[i]) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10476 | return -1; /* str is longer */ |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 10477 | return 0; |
| 10478 | } |
| 10479 | |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10480 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10481 | #define TEST_COND(cond) \ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10482 | ((cond) ? Py_True : Py_False) |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10483 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10484 | PyObject * |
| 10485 | PyUnicode_RichCompare(PyObject *left, PyObject *right, int op) |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 10486 | { |
| 10487 | int result; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10488 | |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10489 | if (PyUnicode_Check(left) && PyUnicode_Check(right)) { |
| 10490 | PyObject *v; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10491 | if (PyUnicode_READY(left) == -1 || |
| 10492 | PyUnicode_READY(right) == -1) |
| 10493 | return NULL; |
| 10494 | if (PyUnicode_GET_LENGTH(left) != PyUnicode_GET_LENGTH(right) || |
| 10495 | PyUnicode_KIND(left) != PyUnicode_KIND(right)) { |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10496 | if (op == Py_EQ) { |
| 10497 | Py_INCREF(Py_False); |
| 10498 | return Py_False; |
| 10499 | } |
| 10500 | if (op == Py_NE) { |
| 10501 | Py_INCREF(Py_True); |
| 10502 | return Py_True; |
| 10503 | } |
| 10504 | } |
| 10505 | if (left == right) |
| 10506 | result = 0; |
| 10507 | else |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10508 | result = unicode_compare(left, right); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10509 | |
Antoine Pitrou | 51f3ef9 | 2008-12-20 13:14:23 +0000 | [diff] [blame] | 10510 | /* Convert the return value to a Boolean */ |
| 10511 | switch (op) { |
| 10512 | case Py_EQ: |
| 10513 | v = TEST_COND(result == 0); |
| 10514 | break; |
| 10515 | case Py_NE: |
| 10516 | v = TEST_COND(result != 0); |
| 10517 | break; |
| 10518 | case Py_LE: |
| 10519 | v = TEST_COND(result <= 0); |
| 10520 | break; |
| 10521 | case Py_GE: |
| 10522 | v = TEST_COND(result >= 0); |
| 10523 | break; |
| 10524 | case Py_LT: |
| 10525 | v = TEST_COND(result == -1); |
| 10526 | break; |
| 10527 | case Py_GT: |
| 10528 | v = TEST_COND(result == 1); |
| 10529 | break; |
| 10530 | default: |
| 10531 | PyErr_BadArgument(); |
| 10532 | return NULL; |
| 10533 | } |
| 10534 | Py_INCREF(v); |
| 10535 | return v; |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 10536 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10537 | |
Brian Curtin | dfc80e3 | 2011-08-10 20:28:54 -0500 | [diff] [blame] | 10538 | Py_RETURN_NOTIMPLEMENTED; |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 10539 | } |
| 10540 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10541 | int |
| 10542 | PyUnicode_Contains(PyObject *container, PyObject *element) |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10543 | { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10544 | PyObject *str, *sub; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10545 | int kind1, kind2, kind; |
| 10546 | void *buf1, *buf2; |
| 10547 | Py_ssize_t len1, len2; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 10548 | int result; |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10549 | |
| 10550 | /* Coerce the two arguments */ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10551 | sub = PyUnicode_FromObject(element); |
| 10552 | if (!sub) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10553 | PyErr_Format(PyExc_TypeError, |
| 10554 | "'in <string>' requires string as left operand, not %s", |
| 10555 | element->ob_type->tp_name); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10556 | return -1; |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10557 | } |
| 10558 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10559 | str = PyUnicode_FromObject(container); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 10560 | if (!str) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10561 | Py_DECREF(sub); |
| 10562 | return -1; |
| 10563 | } |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 10564 | if (PyUnicode_READY(sub) == -1 || PyUnicode_READY(str) == -1) { |
| 10565 | Py_DECREF(sub); |
| 10566 | Py_DECREF(str); |
| 10567 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10568 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10569 | kind1 = PyUnicode_KIND(str); |
| 10570 | kind2 = PyUnicode_KIND(sub); |
Benjamin Peterson | 1ff2e35 | 2012-05-11 17:41:20 -0500 | [diff] [blame] | 10571 | kind = kind1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10572 | buf1 = PyUnicode_DATA(str); |
| 10573 | buf2 = PyUnicode_DATA(sub); |
Benjamin Peterson | 1ff2e35 | 2012-05-11 17:41:20 -0500 | [diff] [blame] | 10574 | if (kind2 != kind) { |
Antoine Pitrou | 758153b | 2012-05-12 15:51:51 +0200 | [diff] [blame] | 10575 | if (kind2 > kind) { |
| 10576 | Py_DECREF(sub); |
| 10577 | Py_DECREF(str); |
Benjamin Peterson | 1ff2e35 | 2012-05-11 17:41:20 -0500 | [diff] [blame] | 10578 | return 0; |
Antoine Pitrou | 758153b | 2012-05-12 15:51:51 +0200 | [diff] [blame] | 10579 | } |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10580 | buf2 = _PyUnicode_AsKind(sub, kind); |
Benjamin Peterson | 1ff2e35 | 2012-05-11 17:41:20 -0500 | [diff] [blame] | 10581 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10582 | if (!buf2) { |
| 10583 | Py_DECREF(sub); |
Benjamin Peterson | 1ff2e35 | 2012-05-11 17:41:20 -0500 | [diff] [blame] | 10584 | Py_DECREF(str); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10585 | return -1; |
| 10586 | } |
| 10587 | len1 = PyUnicode_GET_LENGTH(str); |
| 10588 | len2 = PyUnicode_GET_LENGTH(sub); |
| 10589 | |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 10590 | switch (kind) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10591 | case PyUnicode_1BYTE_KIND: |
| 10592 | result = ucs1lib_find(buf1, len1, buf2, len2, 0) != -1; |
| 10593 | break; |
| 10594 | case PyUnicode_2BYTE_KIND: |
| 10595 | result = ucs2lib_find(buf1, len1, buf2, len2, 0) != -1; |
| 10596 | break; |
| 10597 | case PyUnicode_4BYTE_KIND: |
| 10598 | result = ucs4lib_find(buf1, len1, buf2, len2, 0) != -1; |
| 10599 | break; |
| 10600 | default: |
| 10601 | result = -1; |
| 10602 | assert(0); |
| 10603 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10604 | |
| 10605 | Py_DECREF(str); |
| 10606 | Py_DECREF(sub); |
| 10607 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10608 | if (kind2 != kind) |
| 10609 | PyMem_Free(buf2); |
| 10610 | |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10611 | return result; |
Guido van Rossum | 403d68b | 2000-03-13 15:55:09 +0000 | [diff] [blame] | 10612 | } |
| 10613 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10614 | /* Concat to string or Unicode object giving a new Unicode object. */ |
| 10615 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 10616 | PyObject * |
| 10617 | PyUnicode_Concat(PyObject *left, PyObject *right) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10618 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10619 | PyObject *u = NULL, *v = NULL, *w; |
Victor Stinner | 127226b | 2011-10-13 01:12:34 +0200 | [diff] [blame] | 10620 | Py_UCS4 maxchar, maxchar2; |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10621 | Py_ssize_t u_len, v_len, new_len; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10622 | |
| 10623 | /* Coerce the two arguments */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10624 | u = PyUnicode_FromObject(left); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10625 | if (u == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10626 | goto onError; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10627 | v = PyUnicode_FromObject(right); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10628 | if (v == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10629 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10630 | |
| 10631 | /* Shortcuts */ |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 10632 | if (v == unicode_empty) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10633 | Py_DECREF(v); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10634 | return u; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10635 | } |
Victor Stinner | a464fc1 | 2011-10-02 20:39:30 +0200 | [diff] [blame] | 10636 | if (u == unicode_empty) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10637 | Py_DECREF(u); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10638 | return v; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10639 | } |
| 10640 | |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10641 | u_len = PyUnicode_GET_LENGTH(u); |
| 10642 | v_len = PyUnicode_GET_LENGTH(v); |
| 10643 | if (u_len > PY_SSIZE_T_MAX - v_len) { |
| 10644 | PyErr_SetString(PyExc_OverflowError, |
| 10645 | "strings are too large to concat"); |
| 10646 | goto onError; |
| 10647 | } |
| 10648 | new_len = u_len + v_len; |
| 10649 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10650 | maxchar = PyUnicode_MAX_CHAR_VALUE(u); |
Victor Stinner | 127226b | 2011-10-13 01:12:34 +0200 | [diff] [blame] | 10651 | maxchar2 = PyUnicode_MAX_CHAR_VALUE(v); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 10652 | maxchar = Py_MAX(maxchar, maxchar2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10653 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10654 | /* Concat the two Unicode strings */ |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10655 | w = PyUnicode_New(new_len, maxchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10656 | if (w == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10657 | goto onError; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 10658 | _PyUnicode_FastCopyCharacters(w, 0, u, 0, u_len); |
| 10659 | _PyUnicode_FastCopyCharacters(w, u_len, v, 0, v_len); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10660 | Py_DECREF(u); |
| 10661 | Py_DECREF(v); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 10662 | assert(_PyUnicode_CheckConsistency(w, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10663 | return w; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10664 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10665 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10666 | Py_XDECREF(u); |
| 10667 | Py_XDECREF(v); |
| 10668 | return NULL; |
| 10669 | } |
| 10670 | |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 10671 | void |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10672 | PyUnicode_Append(PyObject **p_left, PyObject *right) |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 10673 | { |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10674 | PyObject *left, *res; |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10675 | Py_UCS4 maxchar, maxchar2; |
| 10676 | Py_ssize_t left_len, right_len, new_len; |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10677 | |
| 10678 | if (p_left == NULL) { |
| 10679 | if (!PyErr_Occurred()) |
| 10680 | PyErr_BadInternalCall(); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10681 | return; |
| 10682 | } |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10683 | left = *p_left; |
Serhiy Storchaka | 6c83e73 | 2013-01-04 12:39:34 +0200 | [diff] [blame] | 10684 | if (right == NULL || left == NULL || !PyUnicode_Check(left)) { |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10685 | if (!PyErr_Occurred()) |
| 10686 | PyErr_BadInternalCall(); |
| 10687 | goto error; |
| 10688 | } |
| 10689 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 10690 | if (PyUnicode_READY(left) == -1) |
Victor Stinner | e1335c7 | 2011-10-04 20:53:03 +0200 | [diff] [blame] | 10691 | goto error; |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 10692 | if (PyUnicode_READY(right) == -1) |
Victor Stinner | e1335c7 | 2011-10-04 20:53:03 +0200 | [diff] [blame] | 10693 | goto error; |
| 10694 | |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10695 | /* Shortcuts */ |
| 10696 | if (left == unicode_empty) { |
| 10697 | Py_DECREF(left); |
| 10698 | Py_INCREF(right); |
| 10699 | *p_left = right; |
| 10700 | return; |
| 10701 | } |
| 10702 | if (right == unicode_empty) |
| 10703 | return; |
| 10704 | |
| 10705 | left_len = PyUnicode_GET_LENGTH(left); |
| 10706 | right_len = PyUnicode_GET_LENGTH(right); |
| 10707 | if (left_len > PY_SSIZE_T_MAX - right_len) { |
| 10708 | PyErr_SetString(PyExc_OverflowError, |
| 10709 | "strings are too large to concat"); |
| 10710 | goto error; |
| 10711 | } |
| 10712 | new_len = left_len + right_len; |
| 10713 | |
| 10714 | if (unicode_modifiable(left) |
| 10715 | && PyUnicode_CheckExact(right) |
| 10716 | && PyUnicode_KIND(right) <= PyUnicode_KIND(left) |
Victor Stinner | b092365 | 2011-10-04 01:17:31 +0200 | [diff] [blame] | 10717 | /* Don't resize for ascii += latin1. Convert ascii to latin1 requires |
| 10718 | to change the structure size, but characters are stored just after |
Georg Brandl | 7597add | 2011-10-05 16:36:47 +0200 | [diff] [blame] | 10719 | the structure, and so it requires to move all characters which is |
Victor Stinner | b092365 | 2011-10-04 01:17:31 +0200 | [diff] [blame] | 10720 | not so different than duplicating the string. */ |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10721 | && !(PyUnicode_IS_ASCII(left) && !PyUnicode_IS_ASCII(right))) |
| 10722 | { |
| 10723 | /* append inplace */ |
| 10724 | if (unicode_resize(p_left, new_len) != 0) { |
| 10725 | /* XXX if _PyUnicode_Resize() fails, 'left' has been |
| 10726 | * deallocated so it cannot be put back into |
| 10727 | * 'variable'. The MemoryError is raised when there |
| 10728 | * is no value in 'variable', which might (very |
| 10729 | * remotely) be a cause of incompatibilities. |
| 10730 | */ |
| 10731 | goto error; |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10732 | } |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10733 | /* copy 'right' into the newly allocated area of 'left' */ |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 10734 | _PyUnicode_FastCopyCharacters(*p_left, left_len, right, 0, right_len); |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10735 | } |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10736 | else { |
| 10737 | maxchar = PyUnicode_MAX_CHAR_VALUE(left); |
| 10738 | maxchar2 = PyUnicode_MAX_CHAR_VALUE(right); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 10739 | maxchar = Py_MAX(maxchar, maxchar2); |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10740 | |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10741 | /* Concat the two Unicode strings */ |
| 10742 | res = PyUnicode_New(new_len, maxchar); |
| 10743 | if (res == NULL) |
| 10744 | goto error; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 10745 | _PyUnicode_FastCopyCharacters(res, 0, left, 0, left_len); |
| 10746 | _PyUnicode_FastCopyCharacters(res, left_len, right, 0, right_len); |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10747 | Py_DECREF(left); |
| 10748 | *p_left = res; |
| 10749 | } |
| 10750 | assert(_PyUnicode_CheckConsistency(*p_left, 1)); |
Victor Stinner | 23e5668 | 2011-10-03 03:54:37 +0200 | [diff] [blame] | 10751 | return; |
| 10752 | |
| 10753 | error: |
Victor Stinner | 488fa49 | 2011-12-12 00:01:39 +0100 | [diff] [blame] | 10754 | Py_CLEAR(*p_left); |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 10755 | } |
| 10756 | |
| 10757 | void |
| 10758 | PyUnicode_AppendAndDel(PyObject **pleft, PyObject *right) |
| 10759 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10760 | PyUnicode_Append(pleft, right); |
| 10761 | Py_XDECREF(right); |
Walter Dörwald | 1ab8330 | 2007-05-18 17:15:44 +0000 | [diff] [blame] | 10762 | } |
| 10763 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10764 | PyDoc_STRVAR(count__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10765 | "S.count(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10766 | \n\ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10767 | Return the number of non-overlapping occurrences of substring sub in\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 10768 | 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] | 10769 | interpreted as in slice notation."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10770 | |
| 10771 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10772 | unicode_count(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10773 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10774 | PyObject *substring; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 10775 | Py_ssize_t start = 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 10776 | Py_ssize_t end = PY_SSIZE_T_MAX; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10777 | PyObject *result; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10778 | int kind1, kind2, kind; |
| 10779 | void *buf1, *buf2; |
| 10780 | Py_ssize_t len1, len2, iresult; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10781 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 10782 | if (!stringlib_parse_args_finds_unicode("count", args, &substring, |
| 10783 | &start, &end)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10784 | return NULL; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 10785 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10786 | kind1 = PyUnicode_KIND(self); |
| 10787 | kind2 = PyUnicode_KIND(substring); |
Benjamin Peterson | b63f49f | 2012-05-03 18:31:07 -0400 | [diff] [blame] | 10788 | if (kind2 > kind1) |
| 10789 | return PyLong_FromLong(0); |
| 10790 | kind = kind1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10791 | buf1 = PyUnicode_DATA(self); |
| 10792 | buf2 = PyUnicode_DATA(substring); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10793 | if (kind2 != kind) |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10794 | buf2 = _PyUnicode_AsKind(substring, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10795 | if (!buf2) { |
| 10796 | Py_DECREF(substring); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10797 | return NULL; |
| 10798 | } |
| 10799 | len1 = PyUnicode_GET_LENGTH(self); |
| 10800 | len2 = PyUnicode_GET_LENGTH(substring); |
| 10801 | |
| 10802 | ADJUST_INDICES(start, end, len1); |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 10803 | switch (kind) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10804 | case PyUnicode_1BYTE_KIND: |
| 10805 | iresult = ucs1lib_count( |
| 10806 | ((Py_UCS1*)buf1) + start, end - start, |
| 10807 | buf2, len2, PY_SSIZE_T_MAX |
| 10808 | ); |
| 10809 | break; |
| 10810 | case PyUnicode_2BYTE_KIND: |
| 10811 | iresult = ucs2lib_count( |
| 10812 | ((Py_UCS2*)buf1) + start, end - start, |
| 10813 | buf2, len2, PY_SSIZE_T_MAX |
| 10814 | ); |
| 10815 | break; |
| 10816 | case PyUnicode_4BYTE_KIND: |
| 10817 | iresult = ucs4lib_count( |
| 10818 | ((Py_UCS4*)buf1) + start, end - start, |
| 10819 | buf2, len2, PY_SSIZE_T_MAX |
| 10820 | ); |
| 10821 | break; |
| 10822 | default: |
| 10823 | assert(0); iresult = 0; |
| 10824 | } |
| 10825 | |
| 10826 | result = PyLong_FromSsize_t(iresult); |
| 10827 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10828 | if (kind2 != kind) |
| 10829 | PyMem_Free(buf2); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10830 | |
| 10831 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10832 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10833 | return result; |
| 10834 | } |
| 10835 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10836 | PyDoc_STRVAR(encode__doc__, |
Victor Stinner | c911bbf | 2010-11-07 19:04:46 +0000 | [diff] [blame] | 10837 | "S.encode(encoding='utf-8', errors='strict') -> bytes\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10838 | \n\ |
Victor Stinner | e14e212 | 2010-11-07 18:41:46 +0000 | [diff] [blame] | 10839 | Encode S using the codec registered for encoding. Default encoding\n\ |
| 10840 | 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] | 10841 | handling scheme. Default is 'strict' meaning that encoding errors raise\n\ |
Walter Dörwald | 3aeb632 | 2002-09-02 13:14:32 +0000 | [diff] [blame] | 10842 | a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and\n\ |
| 10843 | 'xmlcharrefreplace' as well as any other name registered with\n\ |
| 10844 | codecs.register_error that can handle UnicodeEncodeErrors."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10845 | |
| 10846 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10847 | unicode_encode(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10848 | { |
Benjamin Peterson | 308d637 | 2009-09-18 21:42:35 +0000 | [diff] [blame] | 10849 | static char *kwlist[] = {"encoding", "errors", 0}; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10850 | char *encoding = NULL; |
| 10851 | char *errors = NULL; |
Guido van Rossum | 35d9428 | 2007-08-27 18:20:11 +0000 | [diff] [blame] | 10852 | |
Benjamin Peterson | 308d637 | 2009-09-18 21:42:35 +0000 | [diff] [blame] | 10853 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:encode", |
| 10854 | kwlist, &encoding, &errors)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10855 | return NULL; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10856 | return PyUnicode_AsEncodedString(self, encoding, errors); |
Marc-André Lemburg | d2d4598 | 2004-07-08 17:57:32 +0000 | [diff] [blame] | 10857 | } |
| 10858 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10859 | PyDoc_STRVAR(expandtabs__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10860 | "S.expandtabs([tabsize]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10861 | \n\ |
| 10862 | 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] | 10863 | 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] | 10864 | |
| 10865 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10866 | unicode_expandtabs(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10867 | { |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10868 | Py_ssize_t i, j, line_pos, src_len, incr; |
| 10869 | Py_UCS4 ch; |
| 10870 | PyObject *u; |
| 10871 | void *src_data, *dest_data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10872 | int tabsize = 8; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10873 | int kind; |
Antoine Pitrou | e19aa38 | 2011-10-04 16:04:01 +0200 | [diff] [blame] | 10874 | int found; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10875 | |
| 10876 | if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10877 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10878 | |
Antoine Pitrou | 2242522 | 2011-10-04 19:10:51 +0200 | [diff] [blame] | 10879 | if (PyUnicode_READY(self) == -1) |
| 10880 | return NULL; |
| 10881 | |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 10882 | /* First pass: determine size of output string */ |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10883 | src_len = PyUnicode_GET_LENGTH(self); |
| 10884 | i = j = line_pos = 0; |
| 10885 | kind = PyUnicode_KIND(self); |
| 10886 | src_data = PyUnicode_DATA(self); |
Antoine Pitrou | e19aa38 | 2011-10-04 16:04:01 +0200 | [diff] [blame] | 10887 | found = 0; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10888 | for (; i < src_len; i++) { |
| 10889 | ch = PyUnicode_READ(kind, src_data, i); |
| 10890 | if (ch == '\t') { |
Antoine Pitrou | e19aa38 | 2011-10-04 16:04:01 +0200 | [diff] [blame] | 10891 | found = 1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10892 | if (tabsize > 0) { |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10893 | incr = tabsize - (line_pos % tabsize); /* cannot overflow */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10894 | if (j > PY_SSIZE_T_MAX - incr) |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10895 | goto overflow; |
| 10896 | line_pos += incr; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10897 | j += incr; |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 10898 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10899 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10900 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10901 | if (j > PY_SSIZE_T_MAX - 1) |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10902 | goto overflow; |
| 10903 | line_pos++; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10904 | j++; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10905 | if (ch == '\n' || ch == '\r') |
| 10906 | line_pos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10907 | } |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10908 | } |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 10909 | if (!found) |
| 10910 | return unicode_result_unchanged(self); |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 10911 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10912 | /* Second pass: create output string and fill it */ |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10913 | u = PyUnicode_New(j, PyUnicode_MAX_CHAR_VALUE(self)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10914 | if (!u) |
| 10915 | return NULL; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10916 | dest_data = PyUnicode_DATA(u); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10917 | |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10918 | i = j = line_pos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10919 | |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10920 | for (; i < src_len; i++) { |
| 10921 | ch = PyUnicode_READ(kind, src_data, i); |
| 10922 | if (ch == '\t') { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10923 | if (tabsize > 0) { |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10924 | incr = tabsize - (line_pos % tabsize); |
| 10925 | line_pos += incr; |
Victor Stinner | da79e63 | 2012-02-22 13:37:04 +0100 | [diff] [blame] | 10926 | FILL(kind, dest_data, ' ', j, incr); |
| 10927 | j += incr; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10928 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 10929 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10930 | else { |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10931 | line_pos++; |
| 10932 | PyUnicode_WRITE(kind, dest_data, j, ch); |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 10933 | j++; |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10934 | if (ch == '\n' || ch == '\r') |
| 10935 | line_pos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10936 | } |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10937 | } |
| 10938 | assert (j == PyUnicode_GET_LENGTH(u)); |
Victor Stinner | d3df8ab | 2011-11-22 01:22:34 +0100 | [diff] [blame] | 10939 | return unicode_result(u); |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 10940 | |
Antoine Pitrou | e71d574 | 2011-10-04 15:55:09 +0200 | [diff] [blame] | 10941 | overflow: |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 10942 | PyErr_SetString(PyExc_OverflowError, "new string is too long"); |
| 10943 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10944 | } |
| 10945 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10946 | PyDoc_STRVAR(find__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 10947 | "S.find(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10948 | \n\ |
| 10949 | Return the lowest index in S where substring sub is found,\n\ |
Senthil Kumaran | 53516a8 | 2011-07-27 23:33:54 +0800 | [diff] [blame] | 10950 | such that sub is contained within S[start:end]. Optional\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10951 | arguments start and end are interpreted as in slice notation.\n\ |
| 10952 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10953 | Return -1 on failure."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10954 | |
| 10955 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10956 | unicode_find(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10957 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 10958 | PyObject *substring; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 10959 | Py_ssize_t start; |
| 10960 | Py_ssize_t end; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10961 | Py_ssize_t result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10962 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 10963 | if (!stringlib_parse_args_finds_unicode("find", args, &substring, |
| 10964 | &start, &end)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10965 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10966 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10967 | if (PyUnicode_READY(self) == -1) |
| 10968 | return NULL; |
| 10969 | if (PyUnicode_READY(substring) == -1) |
| 10970 | return NULL; |
| 10971 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 10972 | result = any_find_slice(1, self, substring, start, end); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10973 | |
| 10974 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 10975 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10976 | if (result == -2) |
| 10977 | return NULL; |
| 10978 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 10979 | return PyLong_FromSsize_t(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10980 | } |
| 10981 | |
| 10982 | static PyObject * |
Victor Stinner | 2fe5ced | 2011-10-02 00:25:40 +0200 | [diff] [blame] | 10983 | unicode_getitem(PyObject *self, Py_ssize_t index) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 10984 | { |
Victor Stinner | b6cd014 | 2012-05-03 02:17:04 +0200 | [diff] [blame] | 10985 | void *data; |
| 10986 | enum PyUnicode_Kind kind; |
| 10987 | Py_UCS4 ch; |
| 10988 | PyObject *res; |
| 10989 | |
| 10990 | if (!PyUnicode_Check(self) || PyUnicode_READY(self) == -1) { |
| 10991 | PyErr_BadArgument(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 10992 | return NULL; |
Victor Stinner | b6cd014 | 2012-05-03 02:17:04 +0200 | [diff] [blame] | 10993 | } |
| 10994 | if (index < 0 || index >= PyUnicode_GET_LENGTH(self)) { |
| 10995 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 10996 | return NULL; |
| 10997 | } |
| 10998 | kind = PyUnicode_KIND(self); |
| 10999 | data = PyUnicode_DATA(self); |
| 11000 | ch = PyUnicode_READ(kind, data, index); |
| 11001 | if (ch < 256) |
| 11002 | return get_latin1_char(ch); |
| 11003 | |
| 11004 | res = PyUnicode_New(1, ch); |
| 11005 | if (res == NULL) |
| 11006 | return NULL; |
| 11007 | kind = PyUnicode_KIND(res); |
| 11008 | data = PyUnicode_DATA(res); |
| 11009 | PyUnicode_WRITE(kind, data, 0, ch); |
| 11010 | assert(_PyUnicode_CheckConsistency(res, 1)); |
| 11011 | return res; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11012 | } |
| 11013 | |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11014 | /* Believe it or not, this produces the same value for ASCII strings |
Mark Dickinson | 57e683e | 2011-09-24 18:18:40 +0100 | [diff] [blame] | 11015 | as bytes_hash(). */ |
Benjamin Peterson | 8f67d08 | 2010-10-17 20:54:53 +0000 | [diff] [blame] | 11016 | static Py_hash_t |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11017 | unicode_hash(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11018 | { |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11019 | Py_ssize_t len; |
Gregory P. Smith | 27cbcd6 | 2012-12-10 18:15:46 -0800 | [diff] [blame] | 11020 | Py_uhash_t x; /* Unsigned for defined overflow behavior. */ |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11021 | |
Benjamin Peterson | f6622c8 | 2012-04-09 14:53:07 -0400 | [diff] [blame] | 11022 | #ifdef Py_DEBUG |
Benjamin Peterson | 69e9727 | 2012-02-21 11:08:50 -0500 | [diff] [blame] | 11023 | assert(_Py_HashSecret_Initialized); |
Benjamin Peterson | f6622c8 | 2012-04-09 14:53:07 -0400 | [diff] [blame] | 11024 | #endif |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11025 | if (_PyUnicode_HASH(self) != -1) |
| 11026 | return _PyUnicode_HASH(self); |
| 11027 | if (PyUnicode_READY(self) == -1) |
| 11028 | return -1; |
| 11029 | len = PyUnicode_GET_LENGTH(self); |
Georg Brandl | 16fa2a1 | 2012-02-21 00:50:13 +0100 | [diff] [blame] | 11030 | /* |
| 11031 | We make the hash of the empty string be 0, rather than using |
| 11032 | (prefix ^ suffix), since this slightly obfuscates the hash secret |
| 11033 | */ |
| 11034 | if (len == 0) { |
| 11035 | _PyUnicode_HASH(self) = 0; |
| 11036 | return 0; |
| 11037 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11038 | |
| 11039 | /* The hash function as a macro, gets expanded three times below. */ |
Georg Brandl | 2fb477c | 2012-02-21 00:33:36 +0100 | [diff] [blame] | 11040 | #define HASH(P) \ |
| 11041 | x ^= (Py_uhash_t) *P << 7; \ |
| 11042 | while (--len >= 0) \ |
| 11043 | x = (_PyHASH_MULTIPLIER * x) ^ (Py_uhash_t) *P++; \ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11044 | |
Georg Brandl | 2fb477c | 2012-02-21 00:33:36 +0100 | [diff] [blame] | 11045 | x = (Py_uhash_t) _Py_HashSecret.prefix; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11046 | switch (PyUnicode_KIND(self)) { |
| 11047 | case PyUnicode_1BYTE_KIND: { |
| 11048 | const unsigned char *c = PyUnicode_1BYTE_DATA(self); |
| 11049 | HASH(c); |
| 11050 | break; |
| 11051 | } |
| 11052 | case PyUnicode_2BYTE_KIND: { |
| 11053 | const Py_UCS2 *s = PyUnicode_2BYTE_DATA(self); |
| 11054 | HASH(s); |
| 11055 | break; |
| 11056 | } |
| 11057 | default: { |
| 11058 | Py_UCS4 *l; |
| 11059 | assert(PyUnicode_KIND(self) == PyUnicode_4BYTE_KIND && |
| 11060 | "Impossible switch case in unicode_hash"); |
| 11061 | l = PyUnicode_4BYTE_DATA(self); |
| 11062 | HASH(l); |
| 11063 | break; |
| 11064 | } |
| 11065 | } |
Georg Brandl | 2fb477c | 2012-02-21 00:33:36 +0100 | [diff] [blame] | 11066 | x ^= (Py_uhash_t) PyUnicode_GET_LENGTH(self); |
| 11067 | x ^= (Py_uhash_t) _Py_HashSecret.suffix; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11068 | |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11069 | if (x == -1) |
| 11070 | x = -2; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11071 | _PyUnicode_HASH(self) = x; |
Guido van Rossum | c250493 | 2007-09-18 19:42:40 +0000 | [diff] [blame] | 11072 | return x; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11073 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11074 | #undef HASH |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11075 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11076 | PyDoc_STRVAR(index__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11077 | "S.index(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11078 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11079 | 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] | 11080 | |
| 11081 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11082 | unicode_index(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11083 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 11084 | Py_ssize_t result; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11085 | PyObject *substring; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 11086 | Py_ssize_t start; |
| 11087 | Py_ssize_t end; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11088 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 11089 | if (!stringlib_parse_args_finds_unicode("index", args, &substring, |
| 11090 | &start, &end)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11091 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11092 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11093 | if (PyUnicode_READY(self) == -1) |
| 11094 | return NULL; |
| 11095 | if (PyUnicode_READY(substring) == -1) |
| 11096 | return NULL; |
| 11097 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11098 | result = any_find_slice(1, self, substring, start, end); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11099 | |
| 11100 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11101 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11102 | if (result == -2) |
| 11103 | return NULL; |
| 11104 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11105 | if (result < 0) { |
| 11106 | PyErr_SetString(PyExc_ValueError, "substring not found"); |
| 11107 | return NULL; |
| 11108 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11109 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 11110 | return PyLong_FromSsize_t(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11111 | } |
| 11112 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11113 | PyDoc_STRVAR(islower__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11114 | "S.islower() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11115 | \n\ |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11116 | 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] | 11117 | at least one cased character in S, False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11118 | |
| 11119 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11120 | unicode_islower(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11121 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11122 | Py_ssize_t i, length; |
| 11123 | int kind; |
| 11124 | void *data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11125 | int cased; |
| 11126 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11127 | if (PyUnicode_READY(self) == -1) |
| 11128 | return NULL; |
| 11129 | length = PyUnicode_GET_LENGTH(self); |
| 11130 | kind = PyUnicode_KIND(self); |
| 11131 | data = PyUnicode_DATA(self); |
| 11132 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11133 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11134 | if (length == 1) |
| 11135 | return PyBool_FromLong( |
| 11136 | Py_UNICODE_ISLOWER(PyUnicode_READ(kind, data, 0))); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11137 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11138 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11139 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11140 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11141 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11142 | cased = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11143 | for (i = 0; i < length; i++) { |
| 11144 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 11145 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11146 | if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) |
| 11147 | return PyBool_FromLong(0); |
| 11148 | else if (!cased && Py_UNICODE_ISLOWER(ch)) |
| 11149 | cased = 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11150 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11151 | return PyBool_FromLong(cased); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11152 | } |
| 11153 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11154 | PyDoc_STRVAR(isupper__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11155 | "S.isupper() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11156 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11157 | 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] | 11158 | at least one cased character in S, False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11159 | |
| 11160 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11161 | unicode_isupper(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11162 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11163 | Py_ssize_t i, length; |
| 11164 | int kind; |
| 11165 | void *data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11166 | int cased; |
| 11167 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11168 | if (PyUnicode_READY(self) == -1) |
| 11169 | return NULL; |
| 11170 | length = PyUnicode_GET_LENGTH(self); |
| 11171 | kind = PyUnicode_KIND(self); |
| 11172 | data = PyUnicode_DATA(self); |
| 11173 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11174 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11175 | if (length == 1) |
| 11176 | return PyBool_FromLong( |
| 11177 | Py_UNICODE_ISUPPER(PyUnicode_READ(kind, data, 0)) != 0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11178 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11179 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11180 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11181 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11182 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11183 | cased = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11184 | for (i = 0; i < length; i++) { |
| 11185 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 11186 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11187 | if (Py_UNICODE_ISLOWER(ch) || Py_UNICODE_ISTITLE(ch)) |
| 11188 | return PyBool_FromLong(0); |
| 11189 | else if (!cased && Py_UNICODE_ISUPPER(ch)) |
| 11190 | cased = 1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11191 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11192 | return PyBool_FromLong(cased); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11193 | } |
| 11194 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11195 | PyDoc_STRVAR(istitle__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11196 | "S.istitle() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11197 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11198 | Return True if S is a titlecased string and there is at least one\n\ |
| 11199 | character in S, i.e. upper- and titlecase characters may only\n\ |
| 11200 | follow uncased characters and lowercase characters only cased ones.\n\ |
| 11201 | Return False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11202 | |
| 11203 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11204 | unicode_istitle(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11205 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11206 | Py_ssize_t i, length; |
| 11207 | int kind; |
| 11208 | void *data; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11209 | int cased, previous_is_cased; |
| 11210 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11211 | if (PyUnicode_READY(self) == -1) |
| 11212 | return NULL; |
| 11213 | length = PyUnicode_GET_LENGTH(self); |
| 11214 | kind = PyUnicode_KIND(self); |
| 11215 | data = PyUnicode_DATA(self); |
| 11216 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11217 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11218 | if (length == 1) { |
| 11219 | Py_UCS4 ch = PyUnicode_READ(kind, data, 0); |
| 11220 | return PyBool_FromLong((Py_UNICODE_ISTITLE(ch) != 0) || |
| 11221 | (Py_UNICODE_ISUPPER(ch) != 0)); |
| 11222 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11223 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11224 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11225 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11226 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11227 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11228 | cased = 0; |
| 11229 | previous_is_cased = 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11230 | for (i = 0; i < length; i++) { |
| 11231 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 11232 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11233 | if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) { |
| 11234 | if (previous_is_cased) |
| 11235 | return PyBool_FromLong(0); |
| 11236 | previous_is_cased = 1; |
| 11237 | cased = 1; |
| 11238 | } |
| 11239 | else if (Py_UNICODE_ISLOWER(ch)) { |
| 11240 | if (!previous_is_cased) |
| 11241 | return PyBool_FromLong(0); |
| 11242 | previous_is_cased = 1; |
| 11243 | cased = 1; |
| 11244 | } |
| 11245 | else |
| 11246 | previous_is_cased = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11247 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11248 | return PyBool_FromLong(cased); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11249 | } |
| 11250 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11251 | PyDoc_STRVAR(isspace__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11252 | "S.isspace() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11253 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11254 | Return True if all characters in S are whitespace\n\ |
| 11255 | and there is at least one character in S, False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11256 | |
| 11257 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11258 | unicode_isspace(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11259 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11260 | Py_ssize_t i, length; |
| 11261 | int kind; |
| 11262 | void *data; |
| 11263 | |
| 11264 | if (PyUnicode_READY(self) == -1) |
| 11265 | return NULL; |
| 11266 | length = PyUnicode_GET_LENGTH(self); |
| 11267 | kind = PyUnicode_KIND(self); |
| 11268 | data = PyUnicode_DATA(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11269 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11270 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11271 | if (length == 1) |
| 11272 | return PyBool_FromLong( |
| 11273 | Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, 0))); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11274 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11275 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11276 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11277 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11278 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11279 | for (i = 0; i < length; i++) { |
| 11280 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Ezio Melotti | 93e7afc | 2011-08-22 14:08:38 +0300 | [diff] [blame] | 11281 | if (!Py_UNICODE_ISSPACE(ch)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11282 | return PyBool_FromLong(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(1); |
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(isalpha__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11288 | "S.isalpha() -> bool\n\ |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +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 alphabetic\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11291 | and there is at least one character in S, False otherwise."); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11292 | |
| 11293 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11294 | unicode_isalpha(PyObject *self) |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +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); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11305 | |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +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_ISALPHA(PyUnicode_READ(kind, data, 0))); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11310 | |
| 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 | a7acf42 | 2000-07-05 09:49:44 +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 | if (!Py_UNICODE_ISALPHA(PyUnicode_READ(kind, data, i))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11317 | return PyBool_FromLong(0); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11318 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11319 | return PyBool_FromLong(1); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11320 | } |
| 11321 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11322 | PyDoc_STRVAR(isalnum__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11323 | "S.isalnum() -> bool\n\ |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11324 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11325 | Return True if all characters in S are alphanumeric\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11326 | and there is at least one character in S, False otherwise."); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11327 | |
| 11328 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11329 | unicode_isalnum(PyObject *self) |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11330 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11331 | int kind; |
| 11332 | void *data; |
| 11333 | Py_ssize_t len, i; |
| 11334 | |
| 11335 | if (PyUnicode_READY(self) == -1) |
| 11336 | return NULL; |
| 11337 | |
| 11338 | kind = PyUnicode_KIND(self); |
| 11339 | data = PyUnicode_DATA(self); |
| 11340 | len = PyUnicode_GET_LENGTH(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 (len == 1) { |
| 11344 | const Py_UCS4 ch = PyUnicode_READ(kind, data, 0); |
| 11345 | return PyBool_FromLong(Py_UNICODE_ISALNUM(ch)); |
| 11346 | } |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11347 | |
| 11348 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11349 | if (len == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11350 | return PyBool_FromLong(0); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11351 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11352 | for (i = 0; i < len; i++) { |
| 11353 | const Py_UCS4 ch = PyUnicode_READ(kind, data, i); |
Ezio Melotti | 93e7afc | 2011-08-22 14:08:38 +0300 | [diff] [blame] | 11354 | if (!Py_UNICODE_ISALNUM(ch)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11355 | return PyBool_FromLong(0); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11356 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11357 | return PyBool_FromLong(1); |
Marc-André Lemburg | a7acf42 | 2000-07-05 09:49:44 +0000 | [diff] [blame] | 11358 | } |
| 11359 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11360 | PyDoc_STRVAR(isdecimal__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11361 | "S.isdecimal() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11362 | \n\ |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11363 | 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] | 11364 | False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11365 | |
| 11366 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11367 | unicode_isdecimal(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11368 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11369 | Py_ssize_t i, length; |
| 11370 | int kind; |
| 11371 | void *data; |
| 11372 | |
| 11373 | if (PyUnicode_READY(self) == -1) |
| 11374 | return NULL; |
| 11375 | length = PyUnicode_GET_LENGTH(self); |
| 11376 | kind = PyUnicode_KIND(self); |
| 11377 | data = PyUnicode_DATA(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11378 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11379 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11380 | if (length == 1) |
| 11381 | return PyBool_FromLong( |
| 11382 | Py_UNICODE_ISDECIMAL(PyUnicode_READ(kind, data, 0))); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11383 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11384 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11385 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11386 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11387 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11388 | for (i = 0; i < length; i++) { |
| 11389 | if (!Py_UNICODE_ISDECIMAL(PyUnicode_READ(kind, data, i))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11390 | return PyBool_FromLong(0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11391 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11392 | return PyBool_FromLong(1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11393 | } |
| 11394 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11395 | PyDoc_STRVAR(isdigit__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11396 | "S.isdigit() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11397 | \n\ |
Martin v. Löwis | 6828e18 | 2003-10-18 09:55:08 +0000 | [diff] [blame] | 11398 | Return True if all characters in S are digits\n\ |
| 11399 | and there is at least one character in S, False otherwise."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11400 | |
| 11401 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11402 | unicode_isdigit(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11403 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11404 | Py_ssize_t i, length; |
| 11405 | int kind; |
| 11406 | void *data; |
| 11407 | |
| 11408 | if (PyUnicode_READY(self) == -1) |
| 11409 | return NULL; |
| 11410 | length = PyUnicode_GET_LENGTH(self); |
| 11411 | kind = PyUnicode_KIND(self); |
| 11412 | data = PyUnicode_DATA(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11413 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11414 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11415 | if (length == 1) { |
| 11416 | const Py_UCS4 ch = PyUnicode_READ(kind, data, 0); |
| 11417 | return PyBool_FromLong(Py_UNICODE_ISDIGIT(ch)); |
| 11418 | } |
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_ISDIGIT(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(isnumeric__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11432 | "S.isnumeric() -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11433 | \n\ |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11434 | 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] | 11435 | 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_isnumeric(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 | return PyBool_FromLong( |
| 11453 | Py_UNICODE_ISNUMERIC(PyUnicode_READ(kind, data, 0))); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11454 | |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11455 | /* Special case for empty strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11456 | if (length == 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11457 | return PyBool_FromLong(0); |
Marc-André Lemburg | 60bc809 | 2000-06-14 09:18:32 +0000 | [diff] [blame] | 11458 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11459 | for (i = 0; i < length; i++) { |
| 11460 | if (!Py_UNICODE_ISNUMERIC(PyUnicode_READ(kind, data, i))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11461 | return PyBool_FromLong(0); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11462 | } |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 11463 | return PyBool_FromLong(1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11464 | } |
| 11465 | |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11466 | int |
| 11467 | PyUnicode_IsIdentifier(PyObject *self) |
| 11468 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11469 | int kind; |
| 11470 | void *data; |
| 11471 | Py_ssize_t i; |
Ezio Melotti | 93e7afc | 2011-08-22 14:08:38 +0300 | [diff] [blame] | 11472 | Py_UCS4 first; |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11473 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11474 | if (PyUnicode_READY(self) == -1) { |
| 11475 | Py_FatalError("identifier not ready"); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11476 | return 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11477 | } |
| 11478 | |
| 11479 | /* Special case for empty strings */ |
| 11480 | if (PyUnicode_GET_LENGTH(self) == 0) |
| 11481 | return 0; |
| 11482 | kind = PyUnicode_KIND(self); |
| 11483 | data = PyUnicode_DATA(self); |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11484 | |
| 11485 | /* PEP 3131 says that the first character must be in |
| 11486 | XID_Start and subsequent characters in XID_Continue, |
| 11487 | and for the ASCII range, the 2.x rules apply (i.e |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11488 | start with letters and underscore, continue with |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11489 | letters, digits, underscore). However, given the current |
| 11490 | definition of XID_Start and XID_Continue, it is sufficient |
| 11491 | to check just for these, except that _ must be allowed |
| 11492 | as starting an identifier. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11493 | first = PyUnicode_READ(kind, data, 0); |
Benjamin Peterson | f413b80 | 2011-08-12 22:17:18 -0500 | [diff] [blame] | 11494 | if (!_PyUnicode_IsXidStart(first) && first != 0x5F /* LOW LINE */) |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11495 | return 0; |
| 11496 | |
Benjamin Peterson | 9c6e6a0 | 2011-09-28 08:09:05 -0400 | [diff] [blame] | 11497 | for (i = 1; i < PyUnicode_GET_LENGTH(self); i++) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11498 | if (!_PyUnicode_IsXidContinue(PyUnicode_READ(kind, data, i))) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11499 | return 0; |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11500 | return 1; |
| 11501 | } |
| 11502 | |
| 11503 | PyDoc_STRVAR(isidentifier__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11504 | "S.isidentifier() -> bool\n\ |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11505 | \n\ |
| 11506 | Return True if S is a valid identifier according\n\ |
Raymond Hettinger | 378170d | 2013-03-23 08:21:12 -0700 | [diff] [blame] | 11507 | to the language definition.\n\ |
| 11508 | \n\ |
| 11509 | Use keyword.iskeyword() to test for reserved identifiers\n\ |
| 11510 | such as \"def\" and \"class\".\n"); |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 11511 | |
| 11512 | static PyObject* |
| 11513 | unicode_isidentifier(PyObject *self) |
| 11514 | { |
| 11515 | return PyBool_FromLong(PyUnicode_IsIdentifier(self)); |
| 11516 | } |
| 11517 | |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11518 | PyDoc_STRVAR(isprintable__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11519 | "S.isprintable() -> bool\n\ |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11520 | \n\ |
| 11521 | Return True if all characters in S are considered\n\ |
| 11522 | printable in repr() or S is empty, False otherwise."); |
| 11523 | |
| 11524 | static PyObject* |
| 11525 | unicode_isprintable(PyObject *self) |
| 11526 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11527 | Py_ssize_t i, length; |
| 11528 | int kind; |
| 11529 | void *data; |
| 11530 | |
| 11531 | if (PyUnicode_READY(self) == -1) |
| 11532 | return NULL; |
| 11533 | length = PyUnicode_GET_LENGTH(self); |
| 11534 | kind = PyUnicode_KIND(self); |
| 11535 | data = PyUnicode_DATA(self); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11536 | |
| 11537 | /* Shortcut for single character strings */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11538 | if (length == 1) |
| 11539 | return PyBool_FromLong( |
| 11540 | Py_UNICODE_ISPRINTABLE(PyUnicode_READ(kind, data, 0))); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11541 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11542 | for (i = 0; i < length; i++) { |
| 11543 | if (!Py_UNICODE_ISPRINTABLE(PyUnicode_READ(kind, data, i))) { |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 11544 | Py_RETURN_FALSE; |
| 11545 | } |
| 11546 | } |
| 11547 | Py_RETURN_TRUE; |
| 11548 | } |
| 11549 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11550 | PyDoc_STRVAR(join__doc__, |
Georg Brandl | 495f7b5 | 2009-10-27 15:28:25 +0000 | [diff] [blame] | 11551 | "S.join(iterable) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11552 | \n\ |
| 11553 | 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] | 11554 | iterable. The separator between elements is S."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11555 | |
| 11556 | static PyObject* |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 11557 | unicode_join(PyObject *self, PyObject *data) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11558 | { |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 11559 | return PyUnicode_Join(self, data); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11560 | } |
| 11561 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 11562 | static Py_ssize_t |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11563 | unicode_length(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11564 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11565 | if (PyUnicode_READY(self) == -1) |
| 11566 | return -1; |
| 11567 | return PyUnicode_GET_LENGTH(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11568 | } |
| 11569 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11570 | PyDoc_STRVAR(ljust__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11571 | "S.ljust(width[, fillchar]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11572 | \n\ |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 11573 | 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] | 11574 | done using the specified fill character (default is a space)."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11575 | |
| 11576 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 11577 | unicode_ljust(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11578 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 11579 | Py_ssize_t width; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11580 | Py_UCS4 fillchar = ' '; |
| 11581 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 11582 | if (!PyArg_ParseTuple(args, "n|O&:ljust", &width, convert_uc, &fillchar)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11583 | return NULL; |
| 11584 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 11585 | if (PyUnicode_READY(self) == -1) |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 11586 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11587 | |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 11588 | if (PyUnicode_GET_LENGTH(self) >= width) |
| 11589 | return unicode_result_unchanged(self); |
| 11590 | |
| 11591 | return pad(self, 0, width - PyUnicode_GET_LENGTH(self), fillchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11592 | } |
| 11593 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11594 | PyDoc_STRVAR(lower__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11595 | "S.lower() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11596 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11597 | Return a copy of the string S converted to lowercase."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11598 | |
| 11599 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 11600 | unicode_lower(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11601 | { |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 11602 | if (PyUnicode_READY(self) == -1) |
| 11603 | return NULL; |
| 11604 | if (PyUnicode_IS_ASCII(self)) |
| 11605 | return ascii_upper_or_lower(self, 1); |
Victor Stinner | b0800dc | 2012-02-25 00:47:08 +0100 | [diff] [blame] | 11606 | return case_operation(self, do_lower); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11607 | } |
| 11608 | |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11609 | #define LEFTSTRIP 0 |
| 11610 | #define RIGHTSTRIP 1 |
| 11611 | #define BOTHSTRIP 2 |
| 11612 | |
| 11613 | /* Arrays indexed by above */ |
| 11614 | static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"}; |
| 11615 | |
| 11616 | #define STRIPNAME(i) (stripformat[i]+3) |
| 11617 | |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11618 | /* externally visible for str.strip(unicode) */ |
| 11619 | PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11620 | _PyUnicode_XStrip(PyObject *self, int striptype, PyObject *sepobj) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11621 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11622 | void *data; |
| 11623 | int kind; |
| 11624 | Py_ssize_t i, j, len; |
| 11625 | BLOOM_MASK sepmask; |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11626 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11627 | if (PyUnicode_READY(self) == -1 || PyUnicode_READY(sepobj) == -1) |
| 11628 | return NULL; |
| 11629 | |
| 11630 | kind = PyUnicode_KIND(self); |
| 11631 | data = PyUnicode_DATA(self); |
| 11632 | len = PyUnicode_GET_LENGTH(self); |
| 11633 | sepmask = make_bloom_mask(PyUnicode_KIND(sepobj), |
| 11634 | PyUnicode_DATA(sepobj), |
| 11635 | PyUnicode_GET_LENGTH(sepobj)); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11636 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11637 | i = 0; |
| 11638 | if (striptype != RIGHTSTRIP) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11639 | while (i < len && |
| 11640 | BLOOM_MEMBER(sepmask, PyUnicode_READ(kind, data, i), sepobj)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11641 | i++; |
| 11642 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11643 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11644 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11645 | j = len; |
| 11646 | if (striptype != LEFTSTRIP) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11647 | do { |
| 11648 | j--; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11649 | } while (j >= i && |
| 11650 | BLOOM_MEMBER(sepmask, PyUnicode_READ(kind, data, j), sepobj)); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11651 | j++; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11652 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11653 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11654 | return PyUnicode_Substring(self, i, j); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11655 | } |
| 11656 | |
| 11657 | PyObject* |
| 11658 | PyUnicode_Substring(PyObject *self, Py_ssize_t start, Py_ssize_t end) |
| 11659 | { |
| 11660 | unsigned char *data; |
| 11661 | int kind; |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 11662 | Py_ssize_t length; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11663 | |
Victor Stinner | de636f3 | 2011-10-01 03:55:54 +0200 | [diff] [blame] | 11664 | if (PyUnicode_READY(self) == -1) |
| 11665 | return NULL; |
| 11666 | |
Victor Stinner | 684d5fd | 2012-05-03 02:32:34 +0200 | [diff] [blame] | 11667 | length = PyUnicode_GET_LENGTH(self); |
| 11668 | end = Py_MIN(end, length); |
Victor Stinner | de636f3 | 2011-10-01 03:55:54 +0200 | [diff] [blame] | 11669 | |
Victor Stinner | 684d5fd | 2012-05-03 02:32:34 +0200 | [diff] [blame] | 11670 | if (start == 0 && end == length) |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 11671 | return unicode_result_unchanged(self); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11672 | |
Victor Stinner | de636f3 | 2011-10-01 03:55:54 +0200 | [diff] [blame] | 11673 | if (start < 0 || end < 0) { |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 11674 | PyErr_SetString(PyExc_IndexError, "string index out of range"); |
| 11675 | return NULL; |
| 11676 | } |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 11677 | if (start >= length || end < start) |
| 11678 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 11679 | |
Victor Stinner | 684d5fd | 2012-05-03 02:32:34 +0200 | [diff] [blame] | 11680 | length = end - start; |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 11681 | if (PyUnicode_IS_ASCII(self)) { |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 11682 | data = PyUnicode_1BYTE_DATA(self); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 11683 | return _PyUnicode_FromASCII((char*)(data + start), length); |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 11684 | } |
| 11685 | else { |
| 11686 | kind = PyUnicode_KIND(self); |
| 11687 | data = PyUnicode_1BYTE_DATA(self); |
| 11688 | return PyUnicode_FromKindAndData(kind, |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 11689 | data + kind * start, |
Victor Stinner | b9275c1 | 2011-10-05 14:01:42 +0200 | [diff] [blame] | 11690 | length); |
| 11691 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11692 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11693 | |
| 11694 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11695 | do_strip(PyObject *self, int striptype) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11696 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11697 | int kind; |
| 11698 | void *data; |
| 11699 | Py_ssize_t len, i, j; |
| 11700 | |
| 11701 | if (PyUnicode_READY(self) == -1) |
| 11702 | return NULL; |
| 11703 | |
| 11704 | kind = PyUnicode_KIND(self); |
| 11705 | data = PyUnicode_DATA(self); |
| 11706 | len = PyUnicode_GET_LENGTH(self); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11707 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11708 | i = 0; |
| 11709 | if (striptype != RIGHTSTRIP) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11710 | while (i < len && Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, i))) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11711 | i++; |
| 11712 | } |
| 11713 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11714 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11715 | j = len; |
| 11716 | if (striptype != LEFTSTRIP) { |
| 11717 | do { |
| 11718 | j--; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11719 | } while (j >= i && Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, j))); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11720 | j++; |
| 11721 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11722 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 11723 | return PyUnicode_Substring(self, i, j); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11724 | } |
| 11725 | |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11726 | |
| 11727 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11728 | do_argstrip(PyObject *self, int striptype, PyObject *args) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11729 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11730 | PyObject *sep = NULL; |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11731 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11732 | if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep)) |
| 11733 | return NULL; |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11734 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11735 | if (sep != NULL && sep != Py_None) { |
| 11736 | if (PyUnicode_Check(sep)) |
| 11737 | return _PyUnicode_XStrip(self, striptype, sep); |
| 11738 | else { |
| 11739 | PyErr_Format(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11740 | "%s arg must be None or str", |
| 11741 | STRIPNAME(striptype)); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11742 | return NULL; |
| 11743 | } |
| 11744 | } |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11745 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11746 | return do_strip(self, striptype); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11747 | } |
| 11748 | |
| 11749 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11750 | PyDoc_STRVAR(strip__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11751 | "S.strip([chars]) -> str\n\ |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11752 | \n\ |
| 11753 | Return a copy of the string S with leading and trailing\n\ |
| 11754 | whitespace removed.\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 11755 | 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] | 11756 | |
| 11757 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11758 | unicode_strip(PyObject *self, PyObject *args) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11759 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11760 | if (PyTuple_GET_SIZE(args) == 0) |
| 11761 | return do_strip(self, BOTHSTRIP); /* Common case */ |
| 11762 | else |
| 11763 | return do_argstrip(self, BOTHSTRIP, args); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11764 | } |
| 11765 | |
| 11766 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11767 | PyDoc_STRVAR(lstrip__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11768 | "S.lstrip([chars]) -> str\n\ |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11769 | \n\ |
| 11770 | Return a copy of the string S with leading whitespace removed.\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 11771 | 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] | 11772 | |
| 11773 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11774 | unicode_lstrip(PyObject *self, PyObject *args) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11775 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11776 | if (PyTuple_GET_SIZE(args) == 0) |
| 11777 | return do_strip(self, LEFTSTRIP); /* Common case */ |
| 11778 | else |
| 11779 | return do_argstrip(self, LEFTSTRIP, args); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11780 | } |
| 11781 | |
| 11782 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11783 | PyDoc_STRVAR(rstrip__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11784 | "S.rstrip([chars]) -> str\n\ |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11785 | \n\ |
| 11786 | Return a copy of the string S with trailing whitespace removed.\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 11787 | 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] | 11788 | |
| 11789 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11790 | unicode_rstrip(PyObject *self, PyObject *args) |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11791 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 11792 | if (PyTuple_GET_SIZE(args) == 0) |
| 11793 | return do_strip(self, RIGHTSTRIP); /* Common case */ |
| 11794 | else |
| 11795 | return do_argstrip(self, RIGHTSTRIP, args); |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 11796 | } |
| 11797 | |
| 11798 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11799 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11800 | unicode_repeat(PyObject *str, Py_ssize_t len) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11801 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11802 | PyObject *u; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11803 | Py_ssize_t nchars, n; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11804 | |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 11805 | if (len < 1) |
| 11806 | _Py_RETURN_UNICODE_EMPTY(); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11807 | |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 11808 | /* no repeat, return original string */ |
| 11809 | if (len == 1) |
| 11810 | return unicode_result_unchanged(str); |
Tim Peters | 8f42246 | 2000-09-09 06:13:41 +0000 | [diff] [blame] | 11811 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 11812 | if (PyUnicode_READY(str) == -1) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11813 | return NULL; |
| 11814 | |
Victor Stinner | c759f3e | 2011-10-01 03:09:58 +0200 | [diff] [blame] | 11815 | if (PyUnicode_GET_LENGTH(str) > PY_SSIZE_T_MAX / len) { |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11816 | PyErr_SetString(PyExc_OverflowError, |
| 11817 | "repeated string is too long"); |
| 11818 | return NULL; |
| 11819 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11820 | nchars = len * PyUnicode_GET_LENGTH(str); |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11821 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11822 | u = PyUnicode_New(nchars, PyUnicode_MAX_CHAR_VALUE(str)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11823 | if (!u) |
| 11824 | return NULL; |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11825 | assert(PyUnicode_KIND(u) == PyUnicode_KIND(str)); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11826 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11827 | if (PyUnicode_GET_LENGTH(str) == 1) { |
| 11828 | const int kind = PyUnicode_KIND(str); |
| 11829 | const Py_UCS4 fill_char = PyUnicode_READ(kind, PyUnicode_DATA(str), 0); |
Victor Stinner | 73f53b5 | 2011-12-18 03:26:31 +0100 | [diff] [blame] | 11830 | if (kind == PyUnicode_1BYTE_KIND) { |
| 11831 | void *to = PyUnicode_DATA(u); |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11832 | memset(to, (unsigned char)fill_char, len); |
Victor Stinner | 73f53b5 | 2011-12-18 03:26:31 +0100 | [diff] [blame] | 11833 | } |
| 11834 | else if (kind == PyUnicode_2BYTE_KIND) { |
| 11835 | Py_UCS2 *ucs2 = PyUnicode_2BYTE_DATA(u); |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11836 | for (n = 0; n < len; ++n) |
Victor Stinner | 73f53b5 | 2011-12-18 03:26:31 +0100 | [diff] [blame] | 11837 | ucs2[n] = fill_char; |
| 11838 | } else { |
| 11839 | Py_UCS4 *ucs4 = PyUnicode_4BYTE_DATA(u); |
| 11840 | assert(kind == PyUnicode_4BYTE_KIND); |
| 11841 | for (n = 0; n < len; ++n) |
| 11842 | ucs4[n] = fill_char; |
Victor Stinner | 67ca64c | 2011-10-01 02:47:29 +0200 | [diff] [blame] | 11843 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11844 | } |
| 11845 | else { |
| 11846 | /* number of characters copied this far */ |
| 11847 | Py_ssize_t done = PyUnicode_GET_LENGTH(str); |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 11848 | const Py_ssize_t char_size = PyUnicode_KIND(str); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11849 | char *to = (char *) PyUnicode_DATA(u); |
| 11850 | Py_MEMCPY(to, PyUnicode_DATA(str), |
| 11851 | PyUnicode_GET_LENGTH(str) * char_size); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11852 | while (done < nchars) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11853 | n = (done <= nchars-done) ? done : nchars-done; |
| 11854 | Py_MEMCPY(to + (done * char_size), to, n * char_size); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11855 | done += n; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11856 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11857 | } |
| 11858 | |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 11859 | assert(_PyUnicode_CheckConsistency(u, 1)); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 11860 | return u; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11861 | } |
| 11862 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 11863 | PyObject * |
| 11864 | PyUnicode_Replace(PyObject *obj, |
| 11865 | PyObject *subobj, |
| 11866 | PyObject *replobj, |
| 11867 | Py_ssize_t maxcount) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11868 | { |
| 11869 | PyObject *self; |
| 11870 | PyObject *str1; |
| 11871 | PyObject *str2; |
| 11872 | PyObject *result; |
| 11873 | |
| 11874 | self = PyUnicode_FromObject(obj); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 11875 | if (self == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11876 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11877 | str1 = PyUnicode_FromObject(subobj); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 11878 | if (str1 == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11879 | Py_DECREF(self); |
| 11880 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11881 | } |
| 11882 | str2 = PyUnicode_FromObject(replobj); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 11883 | if (str2 == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11884 | Py_DECREF(self); |
| 11885 | Py_DECREF(str1); |
| 11886 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11887 | } |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 11888 | if (PyUnicode_READY(self) == -1 || |
| 11889 | PyUnicode_READY(str1) == -1 || |
| 11890 | PyUnicode_READY(str2) == -1) |
| 11891 | result = NULL; |
| 11892 | else |
| 11893 | result = replace(self, str1, str2, maxcount); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11894 | Py_DECREF(self); |
| 11895 | Py_DECREF(str1); |
| 11896 | Py_DECREF(str2); |
| 11897 | return result; |
| 11898 | } |
| 11899 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 11900 | PyDoc_STRVAR(replace__doc__, |
Ezio Melotti | c1897e7 | 2010-06-26 18:50:39 +0000 | [diff] [blame] | 11901 | "S.replace(old, new[, count]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11902 | \n\ |
| 11903 | Return a copy of S with all occurrences of substring\n\ |
Georg Brandl | f08a9dd | 2008-06-10 16:57:31 +0000 | [diff] [blame] | 11904 | old replaced by new. If the optional argument count is\n\ |
| 11905 | given, only the first count occurrences are replaced."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11906 | |
| 11907 | static PyObject* |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11908 | unicode_replace(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11909 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11910 | PyObject *str1; |
| 11911 | PyObject *str2; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 11912 | Py_ssize_t maxcount = -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11913 | PyObject *result; |
| 11914 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 11915 | if (!PyArg_ParseTuple(args, "OO|n:replace", &str1, &str2, &maxcount)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11916 | return NULL; |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 11917 | if (PyUnicode_READY(self) == -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11918 | return NULL; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11919 | str1 = PyUnicode_FromObject(str1); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 11920 | if (str1 == NULL) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11921 | return NULL; |
| 11922 | str2 = PyUnicode_FromObject(str2); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 11923 | if (str2 == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 11924 | Py_DECREF(str1); |
| 11925 | return NULL; |
Walter Dörwald | f6b56ae | 2003-02-09 23:42:56 +0000 | [diff] [blame] | 11926 | } |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 11927 | if (PyUnicode_READY(str1) == -1 || PyUnicode_READY(str2) == -1) |
| 11928 | result = NULL; |
| 11929 | else |
| 11930 | result = replace(self, str1, str2, maxcount); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11931 | |
| 11932 | Py_DECREF(str1); |
| 11933 | Py_DECREF(str2); |
| 11934 | return result; |
| 11935 | } |
| 11936 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 11937 | static PyObject * |
| 11938 | unicode_repr(PyObject *unicode) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 11939 | { |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 11940 | PyObject *repr; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11941 | Py_ssize_t isize; |
| 11942 | Py_ssize_t osize, squote, dquote, i, o; |
| 11943 | Py_UCS4 max, quote; |
| 11944 | int ikind, okind; |
| 11945 | void *idata, *odata; |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 11946 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11947 | if (PyUnicode_READY(unicode) == -1) |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 11948 | return NULL; |
| 11949 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11950 | isize = PyUnicode_GET_LENGTH(unicode); |
| 11951 | idata = PyUnicode_DATA(unicode); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 11952 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 11953 | /* Compute length of output, quote characters, and |
| 11954 | maximum character */ |
| 11955 | osize = 2; /* quotes */ |
| 11956 | max = 127; |
| 11957 | squote = dquote = 0; |
| 11958 | ikind = PyUnicode_KIND(unicode); |
| 11959 | for (i = 0; i < isize; i++) { |
| 11960 | Py_UCS4 ch = PyUnicode_READ(ikind, idata, i); |
| 11961 | switch (ch) { |
| 11962 | case '\'': squote++; osize++; break; |
| 11963 | case '"': dquote++; osize++; break; |
| 11964 | case '\\': case '\t': case '\r': case '\n': |
| 11965 | osize += 2; break; |
| 11966 | default: |
| 11967 | /* Fast-path ASCII */ |
| 11968 | if (ch < ' ' || ch == 0x7f) |
| 11969 | osize += 4; /* \xHH */ |
| 11970 | else if (ch < 0x7f) |
| 11971 | osize++; |
| 11972 | else if (Py_UNICODE_ISPRINTABLE(ch)) { |
| 11973 | osize++; |
| 11974 | max = ch > max ? ch : max; |
| 11975 | } |
| 11976 | else if (ch < 0x100) |
| 11977 | osize += 4; /* \xHH */ |
| 11978 | else if (ch < 0x10000) |
| 11979 | osize += 6; /* \uHHHH */ |
| 11980 | else |
| 11981 | osize += 10; /* \uHHHHHHHH */ |
| 11982 | } |
| 11983 | } |
| 11984 | |
| 11985 | quote = '\''; |
| 11986 | if (squote) { |
| 11987 | if (dquote) |
| 11988 | /* Both squote and dquote present. Use squote, |
| 11989 | and escape them */ |
| 11990 | osize += squote; |
| 11991 | else |
| 11992 | quote = '"'; |
| 11993 | } |
| 11994 | |
| 11995 | repr = PyUnicode_New(osize, max); |
| 11996 | if (repr == NULL) |
| 11997 | return NULL; |
| 11998 | okind = PyUnicode_KIND(repr); |
| 11999 | odata = PyUnicode_DATA(repr); |
| 12000 | |
| 12001 | PyUnicode_WRITE(okind, odata, 0, quote); |
| 12002 | PyUnicode_WRITE(okind, odata, osize-1, quote); |
| 12003 | |
| 12004 | for (i = 0, o = 1; i < isize; i++) { |
| 12005 | Py_UCS4 ch = PyUnicode_READ(ikind, idata, i); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12006 | |
| 12007 | /* Escape quotes and backslashes */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12008 | if ((ch == quote) || (ch == '\\')) { |
| 12009 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12010 | PyUnicode_WRITE(okind, odata, o++, ch); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12011 | continue; |
| 12012 | } |
| 12013 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12014 | /* Map special whitespace to '\t', \n', '\r' */ |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12015 | if (ch == '\t') { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12016 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12017 | PyUnicode_WRITE(okind, odata, o++, 't'); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12018 | } |
| 12019 | else if (ch == '\n') { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12020 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12021 | PyUnicode_WRITE(okind, odata, o++, 'n'); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12022 | } |
| 12023 | else if (ch == '\r') { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12024 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12025 | PyUnicode_WRITE(okind, odata, o++, 'r'); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12026 | } |
| 12027 | |
| 12028 | /* Map non-printable US ASCII to '\xhh' */ |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12029 | else if (ch < ' ' || ch == 0x7F) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12030 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
| 12031 | PyUnicode_WRITE(okind, odata, o++, 'x'); |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 12032 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0x000F]); |
| 12033 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0x000F]); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12034 | } |
| 12035 | |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12036 | /* Copy ASCII characters as-is */ |
| 12037 | else if (ch < 0x7F) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12038 | PyUnicode_WRITE(okind, odata, o++, ch); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12039 | } |
| 12040 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12041 | /* Non-ASCII characters */ |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12042 | else { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12043 | /* Map Unicode whitespace and control characters |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12044 | (categories Z* and C* except ASCII space) |
| 12045 | */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12046 | if (!Py_UNICODE_ISPRINTABLE(ch)) { |
Kristján Valur Jónsson | 55e5dc8 | 2012-06-06 21:58:08 +0000 | [diff] [blame] | 12047 | PyUnicode_WRITE(okind, odata, o++, '\\'); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12048 | /* Map 8-bit characters to '\xhh' */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12049 | if (ch <= 0xff) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12050 | PyUnicode_WRITE(okind, odata, o++, 'x'); |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 12051 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0x000F]); |
| 12052 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0x000F]); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12053 | } |
Kristján Valur Jónsson | 55e5dc8 | 2012-06-06 21:58:08 +0000 | [diff] [blame] | 12054 | /* Map 16-bit characters to '\uxxxx' */ |
| 12055 | else if (ch <= 0xffff) { |
| 12056 | PyUnicode_WRITE(okind, odata, o++, 'u'); |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 12057 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 12) & 0xF]); |
| 12058 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 8) & 0xF]); |
| 12059 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0xF]); |
| 12060 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0xF]); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12061 | } |
Kristján Valur Jónsson | 55e5dc8 | 2012-06-06 21:58:08 +0000 | [diff] [blame] | 12062 | /* Map 21-bit characters to '\U00xxxxxx' */ |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12063 | else { |
Kristján Valur Jónsson | 55e5dc8 | 2012-06-06 21:58:08 +0000 | [diff] [blame] | 12064 | PyUnicode_WRITE(okind, odata, o++, 'U'); |
| 12065 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 28) & 0xF]); |
| 12066 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 24) & 0xF]); |
| 12067 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 20) & 0xF]); |
| 12068 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 16) & 0xF]); |
Victor Stinner | f5cff56 | 2011-10-14 02:13:11 +0200 | [diff] [blame] | 12069 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 12) & 0xF]); |
| 12070 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 8) & 0xF]); |
| 12071 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0xF]); |
| 12072 | PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0xF]); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12073 | } |
| 12074 | } |
| 12075 | /* Copy characters as-is */ |
| 12076 | else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12077 | PyUnicode_WRITE(okind, odata, o++, ch); |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 12078 | } |
| 12079 | } |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12080 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12081 | /* Closing quote already added at the beginning */ |
Victor Stinner | 05d1189 | 2011-10-06 01:13:58 +0200 | [diff] [blame] | 12082 | assert(_PyUnicode_CheckConsistency(repr, 1)); |
Walter Dörwald | 79e913e | 2007-05-12 11:08:06 +0000 | [diff] [blame] | 12083 | return repr; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12084 | } |
| 12085 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12086 | PyDoc_STRVAR(rfind__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12087 | "S.rfind(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12088 | \n\ |
| 12089 | Return the highest index in S where substring sub is found,\n\ |
Senthil Kumaran | 53516a8 | 2011-07-27 23:33:54 +0800 | [diff] [blame] | 12090 | such that sub is contained within S[start:end]. Optional\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12091 | arguments start and end are interpreted as in slice notation.\n\ |
| 12092 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12093 | Return -1 on failure."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12094 | |
| 12095 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12096 | unicode_rfind(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12097 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12098 | PyObject *substring; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 12099 | Py_ssize_t start; |
| 12100 | Py_ssize_t end; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12101 | Py_ssize_t result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12102 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 12103 | if (!stringlib_parse_args_finds_unicode("rfind", args, &substring, |
| 12104 | &start, &end)) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12105 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12106 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12107 | if (PyUnicode_READY(self) == -1) |
| 12108 | return NULL; |
| 12109 | if (PyUnicode_READY(substring) == -1) |
| 12110 | return NULL; |
| 12111 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12112 | result = any_find_slice(-1, self, substring, start, end); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12113 | |
| 12114 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12115 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12116 | if (result == -2) |
| 12117 | return NULL; |
| 12118 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 12119 | return PyLong_FromSsize_t(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12120 | } |
| 12121 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12122 | PyDoc_STRVAR(rindex__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12123 | "S.rindex(sub[, start[, end]]) -> int\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12124 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12125 | 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] | 12126 | |
| 12127 | static PyObject * |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12128 | unicode_rindex(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12129 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12130 | PyObject *substring; |
Christian Heimes | 9cd1775 | 2007-11-18 19:35:23 +0000 | [diff] [blame] | 12131 | Py_ssize_t start; |
| 12132 | Py_ssize_t end; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12133 | Py_ssize_t result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12134 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 12135 | if (!stringlib_parse_args_finds_unicode("rindex", args, &substring, |
| 12136 | &start, &end)) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12137 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12138 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12139 | if (PyUnicode_READY(self) == -1) |
| 12140 | return NULL; |
| 12141 | if (PyUnicode_READY(substring) == -1) |
| 12142 | return NULL; |
| 12143 | |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12144 | result = any_find_slice(-1, self, substring, start, end); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12145 | |
| 12146 | Py_DECREF(substring); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12147 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12148 | if (result == -2) |
| 12149 | return NULL; |
| 12150 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12151 | if (result < 0) { |
| 12152 | PyErr_SetString(PyExc_ValueError, "substring not found"); |
| 12153 | return NULL; |
| 12154 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12155 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 12156 | return PyLong_FromSsize_t(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12157 | } |
| 12158 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12159 | PyDoc_STRVAR(rjust__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12160 | "S.rjust(width[, fillchar]) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12161 | \n\ |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 12162 | 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] | 12163 | done using the specified fill character (default is a space)."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12164 | |
| 12165 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12166 | unicode_rjust(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12167 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 12168 | Py_ssize_t width; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12169 | Py_UCS4 fillchar = ' '; |
| 12170 | |
Victor Stinner | e9a2935 | 2011-10-01 02:14:59 +0200 | [diff] [blame] | 12171 | 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] | 12172 | return NULL; |
Raymond Hettinger | 4f8f976 | 2003-11-26 08:21:35 +0000 | [diff] [blame] | 12173 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 12174 | if (PyUnicode_READY(self) == -1) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12175 | return NULL; |
| 12176 | |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 12177 | if (PyUnicode_GET_LENGTH(self) >= width) |
| 12178 | return unicode_result_unchanged(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12179 | |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 12180 | return pad(self, width - PyUnicode_GET_LENGTH(self), 0, fillchar); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12181 | } |
| 12182 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 12183 | PyObject * |
| 12184 | PyUnicode_Split(PyObject *s, PyObject *sep, Py_ssize_t maxsplit) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12185 | { |
| 12186 | PyObject *result; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 12187 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12188 | s = PyUnicode_FromObject(s); |
| 12189 | if (s == NULL) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12190 | return NULL; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12191 | if (sep != NULL) { |
| 12192 | sep = PyUnicode_FromObject(sep); |
| 12193 | if (sep == NULL) { |
| 12194 | Py_DECREF(s); |
| 12195 | return NULL; |
| 12196 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12197 | } |
| 12198 | |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12199 | result = split(s, sep, maxsplit); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12200 | |
| 12201 | Py_DECREF(s); |
| 12202 | Py_XDECREF(sep); |
| 12203 | return result; |
| 12204 | } |
| 12205 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12206 | PyDoc_STRVAR(split__doc__, |
Ezio Melotti | cda6b6d | 2012-02-26 09:39:55 +0200 | [diff] [blame] | 12207 | "S.split(sep=None, maxsplit=-1) -> list of strings\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12208 | \n\ |
| 12209 | Return a list of the words in S, using sep as the\n\ |
| 12210 | delimiter string. If maxsplit is given, at most maxsplit\n\ |
Alexandre Vassalotti | 5f8ced2 | 2008-05-16 00:03:33 +0000 | [diff] [blame] | 12211 | 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] | 12212 | whitespace string is a separator and empty strings are\n\ |
| 12213 | removed from the result."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12214 | |
| 12215 | static PyObject* |
Ezio Melotti | cda6b6d | 2012-02-26 09:39:55 +0200 | [diff] [blame] | 12216 | unicode_split(PyObject *self, PyObject *args, PyObject *kwds) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12217 | { |
Ezio Melotti | cda6b6d | 2012-02-26 09:39:55 +0200 | [diff] [blame] | 12218 | static char *kwlist[] = {"sep", "maxsplit", 0}; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12219 | PyObject *substring = Py_None; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12220 | Py_ssize_t maxcount = -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12221 | |
Ezio Melotti | cda6b6d | 2012-02-26 09:39:55 +0200 | [diff] [blame] | 12222 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "|On:split", |
| 12223 | kwlist, &substring, &maxcount)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12224 | return NULL; |
| 12225 | |
| 12226 | if (substring == Py_None) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12227 | return split(self, NULL, maxcount); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12228 | else if (PyUnicode_Check(substring)) |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12229 | return split(self, substring, maxcount); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12230 | else |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12231 | return PyUnicode_Split(self, substring, maxcount); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12232 | } |
| 12233 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12234 | PyObject * |
| 12235 | PyUnicode_Partition(PyObject *str_in, PyObject *sep_in) |
| 12236 | { |
| 12237 | PyObject* str_obj; |
| 12238 | PyObject* sep_obj; |
| 12239 | PyObject* out; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12240 | int kind1, kind2, kind; |
| 12241 | void *buf1 = NULL, *buf2 = NULL; |
| 12242 | Py_ssize_t len1, len2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12243 | |
| 12244 | str_obj = PyUnicode_FromObject(str_in); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 12245 | if (!str_obj) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12246 | return NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12247 | sep_obj = PyUnicode_FromObject(sep_in); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 12248 | if (!sep_obj) { |
| 12249 | Py_DECREF(str_obj); |
| 12250 | return NULL; |
| 12251 | } |
| 12252 | if (PyUnicode_READY(sep_obj) == -1 || PyUnicode_READY(str_obj) == -1) { |
| 12253 | Py_DECREF(sep_obj); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12254 | Py_DECREF(str_obj); |
| 12255 | return NULL; |
| 12256 | } |
| 12257 | |
Victor Stinner | 14f8f02 | 2011-10-05 20:58:25 +0200 | [diff] [blame] | 12258 | kind1 = PyUnicode_KIND(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12259 | kind2 = PyUnicode_KIND(sep_obj); |
Victor Stinner | 14f8f02 | 2011-10-05 20:58:25 +0200 | [diff] [blame] | 12260 | kind = Py_MAX(kind1, kind2); |
| 12261 | buf1 = PyUnicode_DATA(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12262 | if (kind1 != kind) |
Victor Stinner | 14f8f02 | 2011-10-05 20:58:25 +0200 | [diff] [blame] | 12263 | buf1 = _PyUnicode_AsKind(str_obj, kind); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12264 | if (!buf1) |
| 12265 | goto onError; |
| 12266 | buf2 = PyUnicode_DATA(sep_obj); |
| 12267 | if (kind2 != kind) |
| 12268 | buf2 = _PyUnicode_AsKind(sep_obj, kind); |
| 12269 | if (!buf2) |
| 12270 | goto onError; |
| 12271 | len1 = PyUnicode_GET_LENGTH(str_obj); |
| 12272 | len2 = PyUnicode_GET_LENGTH(sep_obj); |
| 12273 | |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 12274 | switch (PyUnicode_KIND(str_obj)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12275 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 12276 | if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj)) |
| 12277 | out = asciilib_partition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12278 | else |
| 12279 | 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] | 12280 | break; |
| 12281 | case PyUnicode_2BYTE_KIND: |
| 12282 | out = ucs2lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12283 | break; |
| 12284 | case PyUnicode_4BYTE_KIND: |
| 12285 | out = ucs4lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12286 | break; |
| 12287 | default: |
| 12288 | assert(0); |
| 12289 | out = 0; |
| 12290 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12291 | |
| 12292 | Py_DECREF(sep_obj); |
| 12293 | Py_DECREF(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12294 | if (kind1 != kind) |
| 12295 | PyMem_Free(buf1); |
| 12296 | if (kind2 != kind) |
| 12297 | PyMem_Free(buf2); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12298 | |
| 12299 | return out; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12300 | onError: |
| 12301 | Py_DECREF(sep_obj); |
| 12302 | Py_DECREF(str_obj); |
| 12303 | if (kind1 != kind && buf1) |
| 12304 | PyMem_Free(buf1); |
| 12305 | if (kind2 != kind && buf2) |
| 12306 | PyMem_Free(buf2); |
| 12307 | return NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12308 | } |
| 12309 | |
| 12310 | |
| 12311 | PyObject * |
| 12312 | PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in) |
| 12313 | { |
| 12314 | PyObject* str_obj; |
| 12315 | PyObject* sep_obj; |
| 12316 | PyObject* out; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12317 | int kind1, kind2, kind; |
| 12318 | void *buf1 = NULL, *buf2 = NULL; |
| 12319 | Py_ssize_t len1, len2; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12320 | |
| 12321 | str_obj = PyUnicode_FromObject(str_in); |
| 12322 | if (!str_obj) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12323 | return NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12324 | sep_obj = PyUnicode_FromObject(sep_in); |
| 12325 | if (!sep_obj) { |
| 12326 | Py_DECREF(str_obj); |
| 12327 | return NULL; |
| 12328 | } |
| 12329 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12330 | kind1 = PyUnicode_KIND(str_in); |
| 12331 | kind2 = PyUnicode_KIND(sep_obj); |
Georg Brandl | 4cb0de2 | 2011-09-28 21:49:49 +0200 | [diff] [blame] | 12332 | kind = Py_MAX(kind1, kind2); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12333 | buf1 = PyUnicode_DATA(str_in); |
| 12334 | if (kind1 != kind) |
| 12335 | buf1 = _PyUnicode_AsKind(str_in, kind); |
| 12336 | if (!buf1) |
| 12337 | goto onError; |
| 12338 | buf2 = PyUnicode_DATA(sep_obj); |
| 12339 | if (kind2 != kind) |
| 12340 | buf2 = _PyUnicode_AsKind(sep_obj, kind); |
| 12341 | if (!buf2) |
| 12342 | goto onError; |
| 12343 | len1 = PyUnicode_GET_LENGTH(str_obj); |
| 12344 | len2 = PyUnicode_GET_LENGTH(sep_obj); |
| 12345 | |
Benjamin Peterson | ead6b53 | 2011-12-20 17:23:42 -0600 | [diff] [blame] | 12346 | switch (PyUnicode_KIND(str_in)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12347 | case PyUnicode_1BYTE_KIND: |
Victor Stinner | c3cec78 | 2011-10-05 21:24:08 +0200 | [diff] [blame] | 12348 | if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj)) |
| 12349 | out = asciilib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12350 | else |
| 12351 | 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] | 12352 | break; |
| 12353 | case PyUnicode_2BYTE_KIND: |
| 12354 | out = ucs2lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12355 | break; |
| 12356 | case PyUnicode_4BYTE_KIND: |
| 12357 | out = ucs4lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2); |
| 12358 | break; |
| 12359 | default: |
| 12360 | assert(0); |
| 12361 | out = 0; |
| 12362 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12363 | |
| 12364 | Py_DECREF(sep_obj); |
| 12365 | Py_DECREF(str_obj); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12366 | if (kind1 != kind) |
| 12367 | PyMem_Free(buf1); |
| 12368 | if (kind2 != kind) |
| 12369 | PyMem_Free(buf2); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12370 | |
| 12371 | return out; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12372 | onError: |
| 12373 | Py_DECREF(sep_obj); |
| 12374 | Py_DECREF(str_obj); |
| 12375 | if (kind1 != kind && buf1) |
| 12376 | PyMem_Free(buf1); |
| 12377 | if (kind2 != kind && buf2) |
| 12378 | PyMem_Free(buf2); |
| 12379 | return NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12380 | } |
| 12381 | |
| 12382 | PyDoc_STRVAR(partition__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12383 | "S.partition(sep) -> (head, sep, tail)\n\ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12384 | \n\ |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 12385 | 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] | 12386 | 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] | 12387 | found, return S and two empty strings."); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12388 | |
| 12389 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12390 | unicode_partition(PyObject *self, PyObject *separator) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12391 | { |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12392 | return PyUnicode_Partition(self, separator); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12393 | } |
| 12394 | |
| 12395 | PyDoc_STRVAR(rpartition__doc__, |
Ezio Melotti | 5b2b242 | 2010-01-25 11:58:28 +0000 | [diff] [blame] | 12396 | "S.rpartition(sep) -> (head, sep, tail)\n\ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12397 | \n\ |
Georg Brandl | 17cb8a8 | 2008-05-30 08:20:09 +0000 | [diff] [blame] | 12398 | 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] | 12399 | 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] | 12400 | separator is not found, return two empty strings and S."); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12401 | |
| 12402 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12403 | unicode_rpartition(PyObject *self, PyObject *separator) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12404 | { |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12405 | return PyUnicode_RPartition(self, separator); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12406 | } |
| 12407 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 12408 | PyObject * |
| 12409 | PyUnicode_RSplit(PyObject *s, PyObject *sep, Py_ssize_t maxsplit) |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12410 | { |
| 12411 | PyObject *result; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12412 | |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12413 | s = PyUnicode_FromObject(s); |
| 12414 | if (s == NULL) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12415 | return NULL; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12416 | if (sep != NULL) { |
| 12417 | sep = PyUnicode_FromObject(sep); |
| 12418 | if (sep == NULL) { |
| 12419 | Py_DECREF(s); |
| 12420 | return NULL; |
| 12421 | } |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12422 | } |
| 12423 | |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12424 | result = rsplit(s, sep, maxsplit); |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12425 | |
| 12426 | Py_DECREF(s); |
| 12427 | Py_XDECREF(sep); |
| 12428 | return result; |
| 12429 | } |
| 12430 | |
| 12431 | PyDoc_STRVAR(rsplit__doc__, |
Ezio Melotti | cda6b6d | 2012-02-26 09:39:55 +0200 | [diff] [blame] | 12432 | "S.rsplit(sep=None, maxsplit=-1) -> list of strings\n\ |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12433 | \n\ |
| 12434 | Return a list of the words in S, using sep as the\n\ |
| 12435 | delimiter string, starting at the end of the string and\n\ |
| 12436 | working to the front. If maxsplit is given, at most maxsplit\n\ |
| 12437 | splits are done. If sep is not specified, any whitespace string\n\ |
| 12438 | is a separator."); |
| 12439 | |
| 12440 | static PyObject* |
Ezio Melotti | cda6b6d | 2012-02-26 09:39:55 +0200 | [diff] [blame] | 12441 | unicode_rsplit(PyObject *self, PyObject *args, PyObject *kwds) |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12442 | { |
Ezio Melotti | cda6b6d | 2012-02-26 09:39:55 +0200 | [diff] [blame] | 12443 | static char *kwlist[] = {"sep", "maxsplit", 0}; |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12444 | PyObject *substring = Py_None; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12445 | Py_ssize_t maxcount = -1; |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12446 | |
Ezio Melotti | cda6b6d | 2012-02-26 09:39:55 +0200 | [diff] [blame] | 12447 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "|On:rsplit", |
| 12448 | kwlist, &substring, &maxcount)) |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12449 | return NULL; |
| 12450 | |
| 12451 | if (substring == Py_None) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12452 | return rsplit(self, NULL, maxcount); |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12453 | else if (PyUnicode_Check(substring)) |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12454 | return rsplit(self, substring, maxcount); |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12455 | else |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12456 | return PyUnicode_RSplit(self, substring, maxcount); |
Hye-Shik Chang | 3ae811b | 2003-12-15 18:49:53 +0000 | [diff] [blame] | 12457 | } |
| 12458 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12459 | PyDoc_STRVAR(splitlines__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12460 | "S.splitlines([keepends]) -> list of strings\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12461 | \n\ |
| 12462 | 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] | 12463 | 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] | 12464 | is given and true."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12465 | |
| 12466 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12467 | unicode_splitlines(PyObject *self, PyObject *args, PyObject *kwds) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12468 | { |
Mark Dickinson | 0d5f6ad | 2011-09-24 09:14:39 +0100 | [diff] [blame] | 12469 | static char *kwlist[] = {"keepends", 0}; |
Guido van Rossum | 8666291 | 2000-04-11 15:38:46 +0000 | [diff] [blame] | 12470 | int keepends = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12471 | |
Mark Dickinson | 0d5f6ad | 2011-09-24 09:14:39 +0100 | [diff] [blame] | 12472 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "|i:splitlines", |
| 12473 | kwlist, &keepends)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12474 | return NULL; |
| 12475 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12476 | return PyUnicode_Splitlines(self, keepends); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12477 | } |
| 12478 | |
| 12479 | static |
Guido van Rossum | f15a29f | 2007-05-04 00:41:39 +0000 | [diff] [blame] | 12480 | PyObject *unicode_str(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12481 | { |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 12482 | return unicode_result_unchanged(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12483 | } |
| 12484 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12485 | PyDoc_STRVAR(swapcase__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12486 | "S.swapcase() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12487 | \n\ |
| 12488 | 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] | 12489 | and vice versa."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12490 | |
| 12491 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12492 | unicode_swapcase(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12493 | { |
Benjamin Peterson | eea4846 | 2012-01-16 14:28:50 -0500 | [diff] [blame] | 12494 | if (PyUnicode_READY(self) == -1) |
| 12495 | return NULL; |
Victor Stinner | b0800dc | 2012-02-25 00:47:08 +0100 | [diff] [blame] | 12496 | return case_operation(self, do_swapcase); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12497 | } |
| 12498 | |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12499 | PyDoc_STRVAR(maketrans__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12500 | "str.maketrans(x[, y[, z]]) -> dict (static method)\n\ |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12501 | \n\ |
| 12502 | Return a translation table usable for str.translate().\n\ |
| 12503 | If there is only one argument, it must be a dictionary mapping Unicode\n\ |
| 12504 | ordinals (integers) or characters to Unicode ordinals, strings or None.\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 12505 | Character keys will be then converted to ordinals.\n\ |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12506 | If there are two arguments, they must be strings of equal length, and\n\ |
| 12507 | in the resulting dictionary, each character in x will be mapped to the\n\ |
| 12508 | character at the same position in y. If there is a third argument, it\n\ |
| 12509 | must be a string, whose characters will be mapped to None in the result."); |
| 12510 | |
| 12511 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12512 | unicode_maketrans(PyObject *null, PyObject *args) |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12513 | { |
| 12514 | PyObject *x, *y = NULL, *z = NULL; |
| 12515 | PyObject *new = NULL, *key, *value; |
| 12516 | Py_ssize_t i = 0; |
| 12517 | int res; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 12518 | |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12519 | if (!PyArg_ParseTuple(args, "O|UU:maketrans", &x, &y, &z)) |
| 12520 | return NULL; |
| 12521 | new = PyDict_New(); |
| 12522 | if (!new) |
| 12523 | return NULL; |
| 12524 | if (y != NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12525 | int x_kind, y_kind, z_kind; |
| 12526 | void *x_data, *y_data, *z_data; |
| 12527 | |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12528 | /* x must be a string too, of equal length */ |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12529 | if (!PyUnicode_Check(x)) { |
| 12530 | PyErr_SetString(PyExc_TypeError, "first maketrans argument must " |
| 12531 | "be a string if there is a second argument"); |
| 12532 | goto err; |
| 12533 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12534 | if (PyUnicode_GET_LENGTH(x) != PyUnicode_GET_LENGTH(y)) { |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12535 | PyErr_SetString(PyExc_ValueError, "the first two maketrans " |
| 12536 | "arguments must have equal length"); |
| 12537 | goto err; |
| 12538 | } |
| 12539 | /* 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] | 12540 | x_kind = PyUnicode_KIND(x); |
| 12541 | y_kind = PyUnicode_KIND(y); |
| 12542 | x_data = PyUnicode_DATA(x); |
| 12543 | y_data = PyUnicode_DATA(y); |
| 12544 | for (i = 0; i < PyUnicode_GET_LENGTH(x); i++) { |
| 12545 | key = PyLong_FromLong(PyUnicode_READ(x_kind, x_data, i)); |
Benjamin Peterson | 53aa1d7 | 2011-12-20 13:29:45 -0600 | [diff] [blame] | 12546 | if (!key) |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12547 | goto err; |
Benjamin Peterson | 822c790 | 2011-12-20 13:32:50 -0600 | [diff] [blame] | 12548 | value = PyLong_FromLong(PyUnicode_READ(y_kind, y_data, i)); |
Benjamin Peterson | 53aa1d7 | 2011-12-20 13:29:45 -0600 | [diff] [blame] | 12549 | if (!value) { |
| 12550 | Py_DECREF(key); |
| 12551 | goto err; |
| 12552 | } |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12553 | res = PyDict_SetItem(new, key, value); |
| 12554 | Py_DECREF(key); |
| 12555 | Py_DECREF(value); |
| 12556 | if (res < 0) |
| 12557 | goto err; |
| 12558 | } |
| 12559 | /* create entries for deleting chars in z */ |
| 12560 | if (z != NULL) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12561 | z_kind = PyUnicode_KIND(z); |
| 12562 | z_data = PyUnicode_DATA(z); |
Victor Stinner | c4f281e | 2011-10-11 22:11:42 +0200 | [diff] [blame] | 12563 | for (i = 0; i < PyUnicode_GET_LENGTH(z); i++) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12564 | key = PyLong_FromLong(PyUnicode_READ(z_kind, z_data, i)); |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12565 | if (!key) |
| 12566 | goto err; |
| 12567 | res = PyDict_SetItem(new, key, Py_None); |
| 12568 | Py_DECREF(key); |
| 12569 | if (res < 0) |
| 12570 | goto err; |
| 12571 | } |
| 12572 | } |
| 12573 | } else { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12574 | int kind; |
| 12575 | void *data; |
| 12576 | |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12577 | /* x must be a dict */ |
Raymond Hettinger | 3ad0576 | 2009-05-29 22:11:22 +0000 | [diff] [blame] | 12578 | if (!PyDict_CheckExact(x)) { |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12579 | PyErr_SetString(PyExc_TypeError, "if you give only one argument " |
| 12580 | "to maketrans it must be a dict"); |
| 12581 | goto err; |
| 12582 | } |
| 12583 | /* copy entries into the new dict, converting string keys to int keys */ |
| 12584 | while (PyDict_Next(x, &i, &key, &value)) { |
| 12585 | if (PyUnicode_Check(key)) { |
| 12586 | /* convert string keys to integer keys */ |
| 12587 | PyObject *newkey; |
Victor Stinner | c4f281e | 2011-10-11 22:11:42 +0200 | [diff] [blame] | 12588 | if (PyUnicode_GET_LENGTH(key) != 1) { |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12589 | PyErr_SetString(PyExc_ValueError, "string keys in translate " |
| 12590 | "table must be of length 1"); |
| 12591 | goto err; |
| 12592 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12593 | kind = PyUnicode_KIND(key); |
| 12594 | data = PyUnicode_DATA(key); |
| 12595 | newkey = PyLong_FromLong(PyUnicode_READ(kind, data, 0)); |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12596 | if (!newkey) |
| 12597 | goto err; |
| 12598 | res = PyDict_SetItem(new, newkey, value); |
| 12599 | Py_DECREF(newkey); |
| 12600 | if (res < 0) |
| 12601 | goto err; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 12602 | } else if (PyLong_Check(key)) { |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 12603 | /* just keep integer keys */ |
| 12604 | if (PyDict_SetItem(new, key, value) < 0) |
| 12605 | goto err; |
| 12606 | } else { |
| 12607 | PyErr_SetString(PyExc_TypeError, "keys in translate table must " |
| 12608 | "be strings or integers"); |
| 12609 | goto err; |
| 12610 | } |
| 12611 | } |
| 12612 | } |
| 12613 | return new; |
| 12614 | err: |
| 12615 | Py_DECREF(new); |
| 12616 | return NULL; |
| 12617 | } |
| 12618 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12619 | PyDoc_STRVAR(translate__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12620 | "S.translate(table) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12621 | \n\ |
| 12622 | Return a copy of the string S, where all characters have been mapped\n\ |
| 12623 | through the given translation table, which must be a mapping of\n\ |
Benjamin Peterson | 142957c | 2008-07-04 19:55:29 +0000 | [diff] [blame] | 12624 | Unicode ordinals to Unicode ordinals, strings, or None.\n\ |
Walter Dörwald | 5c1ee17 | 2002-09-04 20:31:32 +0000 | [diff] [blame] | 12625 | Unmapped characters are left untouched. Characters mapped to None\n\ |
| 12626 | are deleted."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12627 | |
| 12628 | static PyObject* |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12629 | unicode_translate(PyObject *self, PyObject *table) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12630 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12631 | return _PyUnicode_TranslateCharmap(self, table, "ignore"); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12632 | } |
| 12633 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12634 | PyDoc_STRVAR(upper__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12635 | "S.upper() -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12636 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12637 | Return a copy of S converted to uppercase."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12638 | |
| 12639 | static PyObject* |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12640 | unicode_upper(PyObject *self) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12641 | { |
Benjamin Peterson | b2bf01d | 2012-01-11 18:17:06 -0500 | [diff] [blame] | 12642 | if (PyUnicode_READY(self) == -1) |
| 12643 | return NULL; |
| 12644 | if (PyUnicode_IS_ASCII(self)) |
| 12645 | return ascii_upper_or_lower(self, 0); |
Victor Stinner | b0800dc | 2012-02-25 00:47:08 +0100 | [diff] [blame] | 12646 | return case_operation(self, do_upper); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12647 | } |
| 12648 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12649 | PyDoc_STRVAR(zfill__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12650 | "S.zfill(width) -> str\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12651 | \n\ |
Benjamin Peterson | 9aa4299 | 2008-09-10 21:57:34 +0000 | [diff] [blame] | 12652 | Pad a numeric string S with zeros on the left, to fill a field\n\ |
| 12653 | of the specified width. The string S is never truncated."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12654 | |
| 12655 | static PyObject * |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12656 | unicode_zfill(PyObject *self, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12657 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12658 | Py_ssize_t fill; |
Victor Stinner | 9310abb | 2011-10-05 00:59:23 +0200 | [diff] [blame] | 12659 | PyObject *u; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12660 | Py_ssize_t width; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12661 | int kind; |
| 12662 | void *data; |
| 12663 | Py_UCS4 chr; |
| 12664 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12665 | if (!PyArg_ParseTuple(args, "n:zfill", &width)) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12666 | return NULL; |
| 12667 | |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 12668 | if (PyUnicode_READY(self) == -1) |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 12669 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12670 | |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 12671 | if (PyUnicode_GET_LENGTH(self) >= width) |
| 12672 | return unicode_result_unchanged(self); |
| 12673 | |
| 12674 | fill = width - PyUnicode_GET_LENGTH(self); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12675 | |
| 12676 | u = pad(self, fill, 0, '0'); |
| 12677 | |
Walter Dörwald | 068325e | 2002-04-15 13:36:47 +0000 | [diff] [blame] | 12678 | if (u == NULL) |
| 12679 | return NULL; |
| 12680 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12681 | kind = PyUnicode_KIND(u); |
| 12682 | data = PyUnicode_DATA(u); |
| 12683 | chr = PyUnicode_READ(kind, data, fill); |
| 12684 | |
| 12685 | if (chr == '+' || chr == '-') { |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12686 | /* move sign to beginning of string */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12687 | PyUnicode_WRITE(kind, data, 0, chr); |
| 12688 | PyUnicode_WRITE(kind, data, fill, '0'); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12689 | } |
| 12690 | |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 12691 | assert(_PyUnicode_CheckConsistency(u, 1)); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 12692 | return u; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12693 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12694 | |
| 12695 | #if 0 |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 12696 | static PyObject * |
| 12697 | unicode__decimal2ascii(PyObject *self) |
| 12698 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12699 | return PyUnicode_TransformDecimalAndSpaceToASCII(self); |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 12700 | } |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12701 | #endif |
| 12702 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12703 | PyDoc_STRVAR(startswith__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12704 | "S.startswith(prefix[, start[, end]]) -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12705 | \n\ |
Guido van Rossum | a713218 | 2003-04-09 19:32:45 +0000 | [diff] [blame] | 12706 | Return True if S starts with the specified prefix, False otherwise.\n\ |
| 12707 | With optional start, test S beginning at that position.\n\ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12708 | With optional end, stop comparing S at that position.\n\ |
| 12709 | prefix can also be a tuple of strings to try."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12710 | |
| 12711 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12712 | unicode_startswith(PyObject *self, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12713 | PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12714 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12715 | PyObject *subobj; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12716 | PyObject *substring; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12717 | Py_ssize_t start = 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 12718 | Py_ssize_t end = PY_SSIZE_T_MAX; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12719 | int result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12720 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 12721 | if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12722 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12723 | if (PyTuple_Check(subobj)) { |
| 12724 | Py_ssize_t i; |
| 12725 | for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12726 | substring = PyUnicode_FromObject(PyTuple_GET_ITEM(subobj, i)); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12727 | if (substring == NULL) |
| 12728 | return NULL; |
| 12729 | result = tailmatch(self, substring, start, end, -1); |
| 12730 | Py_DECREF(substring); |
| 12731 | if (result) { |
| 12732 | Py_RETURN_TRUE; |
| 12733 | } |
| 12734 | } |
| 12735 | /* nothing matched */ |
| 12736 | Py_RETURN_FALSE; |
| 12737 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12738 | substring = PyUnicode_FromObject(subobj); |
Ezio Melotti | ba42fd5 | 2011-04-26 06:09:45 +0300 | [diff] [blame] | 12739 | if (substring == NULL) { |
| 12740 | if (PyErr_ExceptionMatches(PyExc_TypeError)) |
| 12741 | PyErr_Format(PyExc_TypeError, "startswith first arg must be str or " |
| 12742 | "a tuple of str, not %s", Py_TYPE(subobj)->tp_name); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12743 | return NULL; |
Ezio Melotti | ba42fd5 | 2011-04-26 06:09:45 +0300 | [diff] [blame] | 12744 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12745 | result = tailmatch(self, substring, start, end, -1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12746 | Py_DECREF(substring); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12747 | return PyBool_FromLong(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12748 | } |
| 12749 | |
| 12750 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 12751 | PyDoc_STRVAR(endswith__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12752 | "S.endswith(suffix[, start[, end]]) -> bool\n\ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12753 | \n\ |
Guido van Rossum | a713218 | 2003-04-09 19:32:45 +0000 | [diff] [blame] | 12754 | Return True if S ends with the specified suffix, False otherwise.\n\ |
| 12755 | With optional start, test S beginning at that position.\n\ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12756 | With optional end, stop comparing S at that position.\n\ |
| 12757 | suffix can also be a tuple of strings to try."); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12758 | |
| 12759 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12760 | unicode_endswith(PyObject *self, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12761 | PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12762 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12763 | PyObject *subobj; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12764 | PyObject *substring; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 12765 | Py_ssize_t start = 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 12766 | Py_ssize_t end = PY_SSIZE_T_MAX; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12767 | int result; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12768 | |
Jesus Cea | ac45150 | 2011-04-20 17:09:23 +0200 | [diff] [blame] | 12769 | if (!stringlib_parse_args_finds("endswith", args, &subobj, &start, &end)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12770 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12771 | if (PyTuple_Check(subobj)) { |
| 12772 | Py_ssize_t i; |
| 12773 | for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12774 | substring = PyUnicode_FromObject( |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12775 | PyTuple_GET_ITEM(subobj, i)); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12776 | if (substring == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12777 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12778 | result = tailmatch(self, substring, start, end, +1); |
| 12779 | Py_DECREF(substring); |
| 12780 | if (result) { |
| 12781 | Py_RETURN_TRUE; |
| 12782 | } |
| 12783 | } |
| 12784 | Py_RETURN_FALSE; |
| 12785 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12786 | substring = PyUnicode_FromObject(subobj); |
Ezio Melotti | ba42fd5 | 2011-04-26 06:09:45 +0300 | [diff] [blame] | 12787 | if (substring == NULL) { |
| 12788 | if (PyErr_ExceptionMatches(PyExc_TypeError)) |
| 12789 | PyErr_Format(PyExc_TypeError, "endswith first arg must be str or " |
| 12790 | "a tuple of str, not %s", Py_TYPE(subobj)->tp_name); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12791 | return NULL; |
Ezio Melotti | ba42fd5 | 2011-04-26 06:09:45 +0300 | [diff] [blame] | 12792 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12793 | result = tailmatch(self, substring, start, end, +1); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12794 | Py_DECREF(substring); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 12795 | return PyBool_FromLong(result); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 12796 | } |
| 12797 | |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12798 | Py_LOCAL_INLINE(void) |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 12799 | _PyUnicodeWriter_Update(_PyUnicodeWriter *writer) |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12800 | { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12801 | writer->size = PyUnicode_GET_LENGTH(writer->buffer); |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12802 | writer->maxchar = PyUnicode_MAX_CHAR_VALUE(writer->buffer); |
| 12803 | writer->data = PyUnicode_DATA(writer->buffer); |
| 12804 | writer->kind = PyUnicode_KIND(writer->buffer); |
| 12805 | } |
| 12806 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12807 | void |
| 12808 | _PyUnicodeWriter_Init(_PyUnicodeWriter *writer, Py_ssize_t min_length) |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12809 | { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12810 | memset(writer, 0, sizeof(*writer)); |
| 12811 | #ifdef Py_DEBUG |
| 12812 | writer->kind = 5; /* invalid kind */ |
| 12813 | #endif |
| 12814 | writer->min_length = Py_MAX(min_length, 100); |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 12815 | writer->overallocate = (min_length > 0); |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12816 | } |
| 12817 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12818 | int |
| 12819 | _PyUnicodeWriter_PrepareInternal(_PyUnicodeWriter *writer, |
| 12820 | Py_ssize_t length, Py_UCS4 maxchar) |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12821 | { |
| 12822 | Py_ssize_t newlen; |
| 12823 | PyObject *newbuffer; |
| 12824 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12825 | assert(length > 0); |
| 12826 | |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12827 | if (length > PY_SSIZE_T_MAX - writer->pos) { |
| 12828 | PyErr_NoMemory(); |
| 12829 | return -1; |
| 12830 | } |
| 12831 | newlen = writer->pos + length; |
| 12832 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12833 | if (writer->buffer == NULL) { |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 12834 | if (writer->overallocate) { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12835 | /* overallocate 25% to limit the number of resize */ |
| 12836 | if (newlen <= (PY_SSIZE_T_MAX - newlen / 4)) |
| 12837 | newlen += newlen / 4; |
| 12838 | if (newlen < writer->min_length) |
| 12839 | newlen = writer->min_length; |
| 12840 | } |
| 12841 | writer->buffer = PyUnicode_New(newlen, maxchar); |
| 12842 | if (writer->buffer == NULL) |
| 12843 | return -1; |
| 12844 | _PyUnicodeWriter_Update(writer); |
| 12845 | return 0; |
| 12846 | } |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12847 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12848 | if (newlen > writer->size) { |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 12849 | if (writer->overallocate) { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12850 | /* overallocate 25% to limit the number of resize */ |
| 12851 | if (newlen <= (PY_SSIZE_T_MAX - newlen / 4)) |
| 12852 | newlen += newlen / 4; |
| 12853 | if (newlen < writer->min_length) |
| 12854 | newlen = writer->min_length; |
| 12855 | } |
| 12856 | |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 12857 | if (maxchar > writer->maxchar || writer->readonly) { |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12858 | /* resize + widen */ |
| 12859 | newbuffer = PyUnicode_New(newlen, maxchar); |
| 12860 | if (newbuffer == NULL) |
| 12861 | return -1; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12862 | _PyUnicode_FastCopyCharacters(newbuffer, 0, |
| 12863 | writer->buffer, 0, writer->pos); |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12864 | Py_DECREF(writer->buffer); |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 12865 | writer->readonly = 0; |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12866 | } |
| 12867 | else { |
| 12868 | newbuffer = resize_compact(writer->buffer, newlen); |
| 12869 | if (newbuffer == NULL) |
| 12870 | return -1; |
| 12871 | } |
| 12872 | writer->buffer = newbuffer; |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 12873 | _PyUnicodeWriter_Update(writer); |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12874 | } |
| 12875 | else if (maxchar > writer->maxchar) { |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 12876 | assert(!writer->readonly); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12877 | newbuffer = PyUnicode_New(writer->size, maxchar); |
| 12878 | if (newbuffer == NULL) |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12879 | return -1; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12880 | _PyUnicode_FastCopyCharacters(newbuffer, 0, |
| 12881 | writer->buffer, 0, writer->pos); |
| 12882 | Py_DECREF(writer->buffer); |
| 12883 | writer->buffer = newbuffer; |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 12884 | _PyUnicodeWriter_Update(writer); |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12885 | } |
| 12886 | return 0; |
| 12887 | } |
| 12888 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12889 | int |
| 12890 | _PyUnicodeWriter_WriteStr(_PyUnicodeWriter *writer, PyObject *str) |
| 12891 | { |
| 12892 | Py_UCS4 maxchar; |
| 12893 | Py_ssize_t len; |
| 12894 | |
| 12895 | if (PyUnicode_READY(str) == -1) |
| 12896 | return -1; |
| 12897 | len = PyUnicode_GET_LENGTH(str); |
| 12898 | if (len == 0) |
| 12899 | return 0; |
| 12900 | maxchar = PyUnicode_MAX_CHAR_VALUE(str); |
| 12901 | if (maxchar > writer->maxchar || len > writer->size - writer->pos) { |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 12902 | if (writer->buffer == NULL && !writer->overallocate) { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12903 | Py_INCREF(str); |
| 12904 | writer->buffer = str; |
| 12905 | _PyUnicodeWriter_Update(writer); |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 12906 | writer->readonly = 1; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12907 | writer->size = 0; |
| 12908 | writer->pos += len; |
| 12909 | return 0; |
| 12910 | } |
| 12911 | if (_PyUnicodeWriter_PrepareInternal(writer, len, maxchar) == -1) |
| 12912 | return -1; |
| 12913 | } |
| 12914 | _PyUnicode_FastCopyCharacters(writer->buffer, writer->pos, |
| 12915 | str, 0, len); |
| 12916 | writer->pos += len; |
| 12917 | return 0; |
| 12918 | } |
| 12919 | |
| 12920 | PyObject * |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 12921 | _PyUnicodeWriter_Finish(_PyUnicodeWriter *writer) |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12922 | { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12923 | if (writer->pos == 0) { |
| 12924 | Py_XDECREF(writer->buffer); |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 12925 | _Py_RETURN_UNICODE_EMPTY(); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12926 | } |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 12927 | if (writer->readonly) { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12928 | assert(PyUnicode_GET_LENGTH(writer->buffer) == writer->pos); |
| 12929 | return writer->buffer; |
| 12930 | } |
| 12931 | if (PyUnicode_GET_LENGTH(writer->buffer) != writer->pos) { |
| 12932 | PyObject *newbuffer; |
| 12933 | newbuffer = resize_compact(writer->buffer, writer->pos); |
| 12934 | if (newbuffer == NULL) { |
| 12935 | Py_DECREF(writer->buffer); |
| 12936 | return NULL; |
| 12937 | } |
| 12938 | writer->buffer = newbuffer; |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12939 | } |
Victor Stinner | f59c28c | 2012-05-09 03:24:14 +0200 | [diff] [blame] | 12940 | assert(_PyUnicode_CheckConsistency(writer->buffer, 1)); |
Victor Stinner | 2cb16aa | 2013-03-06 19:28:37 +0100 | [diff] [blame] | 12941 | return unicode_result_ready(writer->buffer); |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12942 | } |
| 12943 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12944 | void |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 12945 | _PyUnicodeWriter_Dealloc(_PyUnicodeWriter *writer) |
Victor Stinner | 202fdca | 2012-05-07 12:47:02 +0200 | [diff] [blame] | 12946 | { |
| 12947 | Py_CLEAR(writer->buffer); |
| 12948 | } |
| 12949 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12950 | #include "stringlib/unicode_format.h" |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12951 | |
| 12952 | PyDoc_STRVAR(format__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12953 | "S.format(*args, **kwargs) -> str\n\ |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12954 | \n\ |
Eric Smith | 51d2fd9 | 2010-11-06 19:27:37 +0000 | [diff] [blame] | 12955 | Return a formatted version of S, using substitutions from args and kwargs.\n\ |
| 12956 | The substitutions are identified by braces ('{' and '}')."); |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12957 | |
Eric Smith | 27bbca6 | 2010-11-04 17:06:58 +0000 | [diff] [blame] | 12958 | PyDoc_STRVAR(format_map__doc__, |
| 12959 | "S.format_map(mapping) -> str\n\ |
| 12960 | \n\ |
Eric Smith | 51d2fd9 | 2010-11-06 19:27:37 +0000 | [diff] [blame] | 12961 | Return a formatted version of S, using substitutions from mapping.\n\ |
| 12962 | The substitutions are identified by braces ('{' and '}')."); |
Eric Smith | 27bbca6 | 2010-11-04 17:06:58 +0000 | [diff] [blame] | 12963 | |
Eric Smith | 4a7d76d | 2008-05-30 18:10:19 +0000 | [diff] [blame] | 12964 | static PyObject * |
| 12965 | unicode__format__(PyObject* self, PyObject* args) |
| 12966 | { |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12967 | PyObject *format_spec; |
| 12968 | _PyUnicodeWriter writer; |
| 12969 | int ret; |
Eric Smith | 4a7d76d | 2008-05-30 18:10:19 +0000 | [diff] [blame] | 12970 | |
| 12971 | if (!PyArg_ParseTuple(args, "U:__format__", &format_spec)) |
| 12972 | return NULL; |
| 12973 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 12974 | if (PyUnicode_READY(self) == -1) |
| 12975 | return NULL; |
| 12976 | _PyUnicodeWriter_Init(&writer, 0); |
| 12977 | ret = _PyUnicode_FormatAdvancedWriter(&writer, |
| 12978 | self, format_spec, 0, |
| 12979 | PyUnicode_GET_LENGTH(format_spec)); |
| 12980 | if (ret == -1) { |
| 12981 | _PyUnicodeWriter_Dealloc(&writer); |
| 12982 | return NULL; |
| 12983 | } |
| 12984 | return _PyUnicodeWriter_Finish(&writer); |
Eric Smith | 4a7d76d | 2008-05-30 18:10:19 +0000 | [diff] [blame] | 12985 | } |
| 12986 | |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12987 | PyDoc_STRVAR(p_format__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 12988 | "S.__format__(format_spec) -> str\n\ |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12989 | \n\ |
Eric Smith | 51d2fd9 | 2010-11-06 19:27:37 +0000 | [diff] [blame] | 12990 | Return a formatted version of S as described by format_spec."); |
Eric Smith | 8c66326 | 2007-08-25 02:26:07 +0000 | [diff] [blame] | 12991 | |
| 12992 | static PyObject * |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 12993 | unicode__sizeof__(PyObject *v) |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 12994 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 12995 | Py_ssize_t size; |
| 12996 | |
| 12997 | /* If it's a compact object, account for base structure + |
| 12998 | character data. */ |
| 12999 | if (PyUnicode_IS_COMPACT_ASCII(v)) |
| 13000 | size = sizeof(PyASCIIObject) + PyUnicode_GET_LENGTH(v) + 1; |
| 13001 | else if (PyUnicode_IS_COMPACT(v)) |
| 13002 | size = sizeof(PyCompactUnicodeObject) + |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 13003 | (PyUnicode_GET_LENGTH(v) + 1) * PyUnicode_KIND(v); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13004 | else { |
| 13005 | /* If it is a two-block object, account for base object, and |
| 13006 | for character block if present. */ |
| 13007 | size = sizeof(PyUnicodeObject); |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 13008 | if (_PyUnicode_DATA_ANY(v)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13009 | size += (PyUnicode_GET_LENGTH(v) + 1) * |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 13010 | PyUnicode_KIND(v); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13011 | } |
| 13012 | /* 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] | 13013 | with the data pointer. Check if the data is not shared. */ |
Victor Stinner | 0349091 | 2011-10-03 23:45:12 +0200 | [diff] [blame] | 13014 | if (_PyUnicode_HAS_WSTR_MEMORY(v)) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13015 | size += (PyUnicode_WSTR_LENGTH(v) + 1) * sizeof(wchar_t); |
Victor Stinner | 829c0ad | 2011-10-03 01:08:02 +0200 | [diff] [blame] | 13016 | if (_PyUnicode_HAS_UTF8_MEMORY(v)) |
Victor Stinner | e90fe6a | 2011-10-01 16:48:13 +0200 | [diff] [blame] | 13017 | size += PyUnicode_UTF8_LENGTH(v) + 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13018 | |
| 13019 | return PyLong_FromSsize_t(size); |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 13020 | } |
| 13021 | |
| 13022 | PyDoc_STRVAR(sizeof__doc__, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13023 | "S.__sizeof__() -> size of S in memory, in bytes"); |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 13024 | |
| 13025 | static PyObject * |
Victor Stinner | 034f6cf | 2011-09-30 02:26:44 +0200 | [diff] [blame] | 13026 | unicode_getnewargs(PyObject *v) |
Guido van Rossum | 5d9113d | 2003-01-29 17:58:45 +0000 | [diff] [blame] | 13027 | { |
Victor Stinner | bf6e560 | 2011-12-12 01:53:47 +0100 | [diff] [blame] | 13028 | PyObject *copy = _PyUnicode_Copy(v); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13029 | if (!copy) |
| 13030 | return NULL; |
| 13031 | return Py_BuildValue("(N)", copy); |
Guido van Rossum | 5d9113d | 2003-01-29 17:58:45 +0000 | [diff] [blame] | 13032 | } |
| 13033 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13034 | static PyMethodDef unicode_methods[] = { |
Benjamin Peterson | 28a4dce | 2010-12-12 01:33:04 +0000 | [diff] [blame] | 13035 | {"encode", (PyCFunction) unicode_encode, METH_VARARGS | METH_KEYWORDS, encode__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 13036 | {"replace", (PyCFunction) unicode_replace, METH_VARARGS, replace__doc__}, |
Ezio Melotti | cda6b6d | 2012-02-26 09:39:55 +0200 | [diff] [blame] | 13037 | {"split", (PyCFunction) unicode_split, METH_VARARGS | METH_KEYWORDS, split__doc__}, |
| 13038 | {"rsplit", (PyCFunction) unicode_rsplit, METH_VARARGS | METH_KEYWORDS, rsplit__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 13039 | {"join", (PyCFunction) unicode_join, METH_O, join__doc__}, |
| 13040 | {"capitalize", (PyCFunction) unicode_capitalize, METH_NOARGS, capitalize__doc__}, |
Benjamin Peterson | d5890c8 | 2012-01-14 13:23:30 -0500 | [diff] [blame] | 13041 | {"casefold", (PyCFunction) unicode_casefold, METH_NOARGS, casefold__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 13042 | {"title", (PyCFunction) unicode_title, METH_NOARGS, title__doc__}, |
| 13043 | {"center", (PyCFunction) unicode_center, METH_VARARGS, center__doc__}, |
| 13044 | {"count", (PyCFunction) unicode_count, METH_VARARGS, count__doc__}, |
| 13045 | {"expandtabs", (PyCFunction) unicode_expandtabs, METH_VARARGS, expandtabs__doc__}, |
| 13046 | {"find", (PyCFunction) unicode_find, METH_VARARGS, find__doc__}, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 13047 | {"partition", (PyCFunction) unicode_partition, METH_O, partition__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 13048 | {"index", (PyCFunction) unicode_index, METH_VARARGS, index__doc__}, |
| 13049 | {"ljust", (PyCFunction) unicode_ljust, METH_VARARGS, ljust__doc__}, |
| 13050 | {"lower", (PyCFunction) unicode_lower, METH_NOARGS, lower__doc__}, |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 13051 | {"lstrip", (PyCFunction) unicode_lstrip, METH_VARARGS, lstrip__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 13052 | {"rfind", (PyCFunction) unicode_rfind, METH_VARARGS, rfind__doc__}, |
| 13053 | {"rindex", (PyCFunction) unicode_rindex, METH_VARARGS, rindex__doc__}, |
| 13054 | {"rjust", (PyCFunction) unicode_rjust, METH_VARARGS, rjust__doc__}, |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 13055 | {"rstrip", (PyCFunction) unicode_rstrip, METH_VARARGS, rstrip__doc__}, |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 13056 | {"rpartition", (PyCFunction) unicode_rpartition, METH_O, rpartition__doc__}, |
Mark Dickinson | 0d5f6ad | 2011-09-24 09:14:39 +0100 | [diff] [blame] | 13057 | {"splitlines", (PyCFunction) unicode_splitlines, METH_VARARGS | METH_KEYWORDS, splitlines__doc__}, |
Walter Dörwald | de02bcb | 2002-04-22 17:42:37 +0000 | [diff] [blame] | 13058 | {"strip", (PyCFunction) unicode_strip, METH_VARARGS, strip__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 13059 | {"swapcase", (PyCFunction) unicode_swapcase, METH_NOARGS, swapcase__doc__}, |
| 13060 | {"translate", (PyCFunction) unicode_translate, METH_O, translate__doc__}, |
| 13061 | {"upper", (PyCFunction) unicode_upper, METH_NOARGS, upper__doc__}, |
| 13062 | {"startswith", (PyCFunction) unicode_startswith, METH_VARARGS, startswith__doc__}, |
| 13063 | {"endswith", (PyCFunction) unicode_endswith, METH_VARARGS, endswith__doc__}, |
| 13064 | {"islower", (PyCFunction) unicode_islower, METH_NOARGS, islower__doc__}, |
| 13065 | {"isupper", (PyCFunction) unicode_isupper, METH_NOARGS, isupper__doc__}, |
| 13066 | {"istitle", (PyCFunction) unicode_istitle, METH_NOARGS, istitle__doc__}, |
| 13067 | {"isspace", (PyCFunction) unicode_isspace, METH_NOARGS, isspace__doc__}, |
| 13068 | {"isdecimal", (PyCFunction) unicode_isdecimal, METH_NOARGS, isdecimal__doc__}, |
| 13069 | {"isdigit", (PyCFunction) unicode_isdigit, METH_NOARGS, isdigit__doc__}, |
| 13070 | {"isnumeric", (PyCFunction) unicode_isnumeric, METH_NOARGS, isnumeric__doc__}, |
| 13071 | {"isalpha", (PyCFunction) unicode_isalpha, METH_NOARGS, isalpha__doc__}, |
| 13072 | {"isalnum", (PyCFunction) unicode_isalnum, METH_NOARGS, isalnum__doc__}, |
Martin v. Löwis | 4738340 | 2007-08-15 07:32:56 +0000 | [diff] [blame] | 13073 | {"isidentifier", (PyCFunction) unicode_isidentifier, METH_NOARGS, isidentifier__doc__}, |
Georg Brandl | 559e5d7 | 2008-06-11 18:37:52 +0000 | [diff] [blame] | 13074 | {"isprintable", (PyCFunction) unicode_isprintable, METH_NOARGS, isprintable__doc__}, |
Martin v. Löwis | e3eb1f2 | 2001-08-16 13:15:00 +0000 | [diff] [blame] | 13075 | {"zfill", (PyCFunction) unicode_zfill, METH_VARARGS, zfill__doc__}, |
Eric Smith | 9cd1e09 | 2007-08-31 18:39:38 +0000 | [diff] [blame] | 13076 | {"format", (PyCFunction) do_string_format, METH_VARARGS | METH_KEYWORDS, format__doc__}, |
Eric Smith | 27bbca6 | 2010-11-04 17:06:58 +0000 | [diff] [blame] | 13077 | {"format_map", (PyCFunction) do_string_format_map, METH_O, format_map__doc__}, |
Eric Smith | 4a7d76d | 2008-05-30 18:10:19 +0000 | [diff] [blame] | 13078 | {"__format__", (PyCFunction) unicode__format__, METH_VARARGS, p_format__doc__}, |
Georg Brandl | ceee077 | 2007-11-27 23:48:05 +0000 | [diff] [blame] | 13079 | {"maketrans", (PyCFunction) unicode_maketrans, |
| 13080 | METH_VARARGS | METH_STATIC, maketrans__doc__}, |
Georg Brandl | c28e1fa | 2008-06-10 19:20:26 +0000 | [diff] [blame] | 13081 | {"__sizeof__", (PyCFunction) unicode__sizeof__, METH_NOARGS, sizeof__doc__}, |
Walter Dörwald | 068325e | 2002-04-15 13:36:47 +0000 | [diff] [blame] | 13082 | #if 0 |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 13083 | /* These methods are just used for debugging the implementation. */ |
Alexander Belopolsky | 942af5a | 2010-12-04 03:38:46 +0000 | [diff] [blame] | 13084 | {"_decimal2ascii", (PyCFunction) unicode__decimal2ascii, METH_NOARGS}, |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13085 | #endif |
| 13086 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13087 | {"__getnewargs__", (PyCFunction)unicode_getnewargs, METH_NOARGS}, |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13088 | {NULL, NULL} |
| 13089 | }; |
| 13090 | |
Neil Schemenauer | ce30bc9 | 2002-11-18 16:10:18 +0000 | [diff] [blame] | 13091 | static PyObject * |
| 13092 | unicode_mod(PyObject *v, PyObject *w) |
| 13093 | { |
Brian Curtin | dfc80e3 | 2011-08-10 20:28:54 -0500 | [diff] [blame] | 13094 | if (!PyUnicode_Check(v)) |
| 13095 | Py_RETURN_NOTIMPLEMENTED; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13096 | return PyUnicode_Format(v, w); |
Neil Schemenauer | ce30bc9 | 2002-11-18 16:10:18 +0000 | [diff] [blame] | 13097 | } |
| 13098 | |
| 13099 | static PyNumberMethods unicode_as_number = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13100 | 0, /*nb_add*/ |
| 13101 | 0, /*nb_subtract*/ |
| 13102 | 0, /*nb_multiply*/ |
| 13103 | unicode_mod, /*nb_remainder*/ |
Neil Schemenauer | ce30bc9 | 2002-11-18 16:10:18 +0000 | [diff] [blame] | 13104 | }; |
| 13105 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13106 | static PySequenceMethods unicode_as_sequence = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13107 | (lenfunc) unicode_length, /* sq_length */ |
| 13108 | PyUnicode_Concat, /* sq_concat */ |
| 13109 | (ssizeargfunc) unicode_repeat, /* sq_repeat */ |
| 13110 | (ssizeargfunc) unicode_getitem, /* sq_item */ |
| 13111 | 0, /* sq_slice */ |
| 13112 | 0, /* sq_ass_item */ |
| 13113 | 0, /* sq_ass_slice */ |
| 13114 | PyUnicode_Contains, /* sq_contains */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13115 | }; |
| 13116 | |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13117 | static PyObject* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13118 | unicode_subscript(PyObject* self, PyObject* item) |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13119 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13120 | if (PyUnicode_READY(self) == -1) |
| 13121 | return NULL; |
| 13122 | |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 13123 | if (PyIndex_Check(item)) { |
| 13124 | Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError); |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13125 | if (i == -1 && PyErr_Occurred()) |
| 13126 | return NULL; |
| 13127 | if (i < 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13128 | i += PyUnicode_GET_LENGTH(self); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13129 | return unicode_getitem(self, i); |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13130 | } else if (PySlice_Check(item)) { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 13131 | Py_ssize_t start, stop, step, slicelength, cur, i; |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13132 | PyObject *result; |
| 13133 | void *src_data, *dest_data; |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13134 | int src_kind, dest_kind; |
Victor Stinner | c80d6d2 | 2011-10-05 14:13:28 +0200 | [diff] [blame] | 13135 | Py_UCS4 ch, max_char, kind_limit; |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13136 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13137 | if (PySlice_GetIndicesEx(item, PyUnicode_GET_LENGTH(self), |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13138 | &start, &stop, &step, &slicelength) < 0) { |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13139 | return NULL; |
| 13140 | } |
| 13141 | |
| 13142 | if (slicelength <= 0) { |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 13143 | _Py_RETURN_UNICODE_EMPTY(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13144 | } else if (start == 0 && step == 1 && |
Victor Stinner | c4b4954 | 2011-12-11 22:44:26 +0100 | [diff] [blame] | 13145 | slicelength == PyUnicode_GET_LENGTH(self)) { |
| 13146 | return unicode_result_unchanged(self); |
Thomas Wouters | ed03b41 | 2007-08-28 21:37:11 +0000 | [diff] [blame] | 13147 | } else if (step == 1) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13148 | return PyUnicode_Substring(self, |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 13149 | start, start + slicelength); |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13150 | } |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13151 | /* General case */ |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13152 | src_kind = PyUnicode_KIND(self); |
| 13153 | src_data = PyUnicode_DATA(self); |
Victor Stinner | 55c9911 | 2011-10-13 01:17:06 +0200 | [diff] [blame] | 13154 | if (!PyUnicode_IS_ASCII(self)) { |
| 13155 | kind_limit = kind_maxchar_limit(src_kind); |
| 13156 | max_char = 0; |
| 13157 | for (cur = start, i = 0; i < slicelength; cur += step, i++) { |
| 13158 | ch = PyUnicode_READ(src_kind, src_data, cur); |
| 13159 | if (ch > max_char) { |
| 13160 | max_char = ch; |
| 13161 | if (max_char >= kind_limit) |
| 13162 | break; |
| 13163 | } |
Victor Stinner | c80d6d2 | 2011-10-05 14:13:28 +0200 | [diff] [blame] | 13164 | } |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13165 | } |
Victor Stinner | 55c9911 | 2011-10-13 01:17:06 +0200 | [diff] [blame] | 13166 | else |
| 13167 | max_char = 127; |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13168 | result = PyUnicode_New(slicelength, max_char); |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13169 | if (result == NULL) |
| 13170 | return NULL; |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13171 | dest_kind = PyUnicode_KIND(result); |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13172 | dest_data = PyUnicode_DATA(result); |
| 13173 | |
| 13174 | for (cur = start, i = 0; i < slicelength; cur += step, i++) { |
Antoine Pitrou | 875f29b | 2011-10-04 20:00:49 +0200 | [diff] [blame] | 13175 | Py_UCS4 ch = PyUnicode_READ(src_kind, src_data, cur); |
| 13176 | PyUnicode_WRITE(dest_kind, dest_data, i, ch); |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13177 | } |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 13178 | assert(_PyUnicode_CheckConsistency(result, 1)); |
Antoine Pitrou | 7aec401 | 2011-10-04 19:08:01 +0200 | [diff] [blame] | 13179 | return result; |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13180 | } else { |
| 13181 | PyErr_SetString(PyExc_TypeError, "string indices must be integers"); |
| 13182 | return NULL; |
| 13183 | } |
| 13184 | } |
| 13185 | |
| 13186 | static PyMappingMethods unicode_as_mapping = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13187 | (lenfunc)unicode_length, /* mp_length */ |
| 13188 | (binaryfunc)unicode_subscript, /* mp_subscript */ |
| 13189 | (objobjargproc)0, /* mp_ass_subscript */ |
Michael W. Hudson | 5efaf7e | 2002-06-11 10:55:12 +0000 | [diff] [blame] | 13190 | }; |
| 13191 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13192 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13193 | /* Helpers for PyUnicode_Format() */ |
| 13194 | |
| 13195 | static PyObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 13196 | 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] | 13197 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 13198 | Py_ssize_t argidx = *p_argidx; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13199 | if (argidx < arglen) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13200 | (*p_argidx)++; |
| 13201 | if (arglen < 0) |
| 13202 | return args; |
| 13203 | else |
| 13204 | return PyTuple_GetItem(args, argidx); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13205 | } |
| 13206 | PyErr_SetString(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13207 | "not enough arguments for format string"); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13208 | return NULL; |
| 13209 | } |
| 13210 | |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13211 | /* 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] | 13212 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13213 | static int |
| 13214 | formatfloat(PyObject *v, int flags, int prec, int type, |
| 13215 | PyObject **p_output, _PyUnicodeWriter *writer) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13216 | { |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13217 | char *p; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13218 | double x; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13219 | Py_ssize_t len; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 13220 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13221 | x = PyFloat_AsDouble(v); |
| 13222 | if (x == -1.0 && PyErr_Occurred()) |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13223 | return -1; |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13224 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13225 | if (prec < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13226 | prec = 6; |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 13227 | |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 13228 | p = PyOS_double_to_string(x, type, prec, |
| 13229 | (flags & F_ALT) ? Py_DTSF_ALT : 0, NULL); |
Mark Dickinson | f489caf | 2009-05-01 11:42:00 +0000 | [diff] [blame] | 13230 | if (p == NULL) |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13231 | return -1; |
| 13232 | len = strlen(p); |
| 13233 | if (writer) { |
Christian Heimes | f4f9939 | 2012-09-10 11:48:41 +0200 | [diff] [blame] | 13234 | if (_PyUnicodeWriter_Prepare(writer, len, 127) == -1) { |
| 13235 | PyMem_Free(p); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13236 | return -1; |
Christian Heimes | f4f9939 | 2012-09-10 11:48:41 +0200 | [diff] [blame] | 13237 | } |
Victor Stinner | 184252a | 2012-06-16 02:57:41 +0200 | [diff] [blame] | 13238 | unicode_write_cstr(writer->buffer, writer->pos, p, len); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13239 | writer->pos += len; |
| 13240 | } |
| 13241 | else |
| 13242 | *p_output = _PyUnicode_FromASCII(p, len); |
Eric Smith | 0923d1d | 2009-04-16 20:16:10 +0000 | [diff] [blame] | 13243 | PyMem_Free(p); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13244 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13245 | } |
| 13246 | |
Victor Stinner | d0880d5 | 2012-04-27 23:40:13 +0200 | [diff] [blame] | 13247 | /* formatlong() emulates the format codes d, u, o, x and X, and |
| 13248 | * the F_ALT flag, for Python's long (unbounded) ints. It's not used for |
| 13249 | * Python's regular ints. |
| 13250 | * Return value: a new PyUnicodeObject*, or NULL if error. |
| 13251 | * The output string is of the form |
| 13252 | * "-"? ("0x" | "0X")? digit+ |
| 13253 | * "0x"/"0X" are present only for x and X conversions, with F_ALT |
| 13254 | * set in flags. The case of hex digits will be correct, |
| 13255 | * There will be at least prec digits, zero-filled on the left if |
| 13256 | * necessary to get that many. |
| 13257 | * val object to be converted |
| 13258 | * flags bitmask of format flags; only F_ALT is looked at |
| 13259 | * prec minimum number of digits; 0-fill on left if needed |
| 13260 | * type a character in [duoxX]; u acts the same as d |
| 13261 | * |
| 13262 | * CAUTION: o, x and X conversions on regular ints can never |
| 13263 | * produce a '-' sign, but can for Python's unbounded ints. |
| 13264 | */ |
Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 13265 | static PyObject* |
| 13266 | formatlong(PyObject *val, int flags, int prec, int type) |
| 13267 | { |
Victor Stinner | d0880d5 | 2012-04-27 23:40:13 +0200 | [diff] [blame] | 13268 | PyObject *result = NULL; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13269 | char *buf; |
Victor Stinner | d0880d5 | 2012-04-27 23:40:13 +0200 | [diff] [blame] | 13270 | Py_ssize_t i; |
| 13271 | int sign; /* 1 if '-', else 0 */ |
| 13272 | int len; /* number of characters */ |
| 13273 | Py_ssize_t llen; |
| 13274 | int numdigits; /* len == numnondigits + numdigits */ |
| 13275 | int numnondigits = 0; |
Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 13276 | |
Victor Stinner | d0880d5 | 2012-04-27 23:40:13 +0200 | [diff] [blame] | 13277 | /* Avoid exceeding SSIZE_T_MAX */ |
| 13278 | if (prec > INT_MAX-3) { |
| 13279 | PyErr_SetString(PyExc_OverflowError, |
| 13280 | "precision too large"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13281 | return NULL; |
Victor Stinner | d0880d5 | 2012-04-27 23:40:13 +0200 | [diff] [blame] | 13282 | } |
| 13283 | |
| 13284 | assert(PyLong_Check(val)); |
| 13285 | |
| 13286 | switch (type) { |
| 13287 | case 'd': |
| 13288 | case 'u': |
| 13289 | /* Special-case boolean: we want 0/1 */ |
Victor Stinner | b11d91d | 2012-04-28 00:25:34 +0200 | [diff] [blame] | 13290 | if (PyBool_Check(val)) |
| 13291 | result = PyNumber_ToBase(val, 10); |
| 13292 | else |
| 13293 | result = Py_TYPE(val)->tp_str(val); |
Victor Stinner | d0880d5 | 2012-04-27 23:40:13 +0200 | [diff] [blame] | 13294 | break; |
| 13295 | case 'o': |
| 13296 | numnondigits = 2; |
| 13297 | result = PyNumber_ToBase(val, 8); |
| 13298 | break; |
| 13299 | case 'x': |
| 13300 | case 'X': |
| 13301 | numnondigits = 2; |
| 13302 | result = PyNumber_ToBase(val, 16); |
| 13303 | break; |
| 13304 | default: |
| 13305 | assert(!"'type' not in [duoxX]"); |
| 13306 | } |
| 13307 | if (!result) |
| 13308 | return NULL; |
| 13309 | |
| 13310 | assert(unicode_modifiable(result)); |
| 13311 | assert(PyUnicode_IS_READY(result)); |
| 13312 | assert(PyUnicode_IS_ASCII(result)); |
| 13313 | |
| 13314 | /* To modify the string in-place, there can only be one reference. */ |
| 13315 | if (Py_REFCNT(result) != 1) { |
| 13316 | PyErr_BadInternalCall(); |
| 13317 | return NULL; |
| 13318 | } |
| 13319 | buf = PyUnicode_DATA(result); |
| 13320 | llen = PyUnicode_GET_LENGTH(result); |
| 13321 | if (llen > INT_MAX) { |
| 13322 | PyErr_SetString(PyExc_ValueError, |
| 13323 | "string too large in _PyBytes_FormatLong"); |
| 13324 | return NULL; |
| 13325 | } |
| 13326 | len = (int)llen; |
| 13327 | sign = buf[0] == '-'; |
| 13328 | numnondigits += sign; |
| 13329 | numdigits = len - numnondigits; |
| 13330 | assert(numdigits > 0); |
| 13331 | |
| 13332 | /* Get rid of base marker unless F_ALT */ |
| 13333 | if (((flags & F_ALT) == 0 && |
| 13334 | (type == 'o' || type == 'x' || type == 'X'))) { |
| 13335 | assert(buf[sign] == '0'); |
| 13336 | assert(buf[sign+1] == 'x' || buf[sign+1] == 'X' || |
| 13337 | buf[sign+1] == 'o'); |
| 13338 | numnondigits -= 2; |
| 13339 | buf += 2; |
| 13340 | len -= 2; |
| 13341 | if (sign) |
| 13342 | buf[0] = '-'; |
| 13343 | assert(len == numnondigits + numdigits); |
| 13344 | assert(numdigits > 0); |
| 13345 | } |
| 13346 | |
| 13347 | /* Fill with leading zeroes to meet minimum width. */ |
| 13348 | if (prec > numdigits) { |
| 13349 | PyObject *r1 = PyBytes_FromStringAndSize(NULL, |
| 13350 | numnondigits + prec); |
| 13351 | char *b1; |
| 13352 | if (!r1) { |
| 13353 | Py_DECREF(result); |
| 13354 | return NULL; |
| 13355 | } |
| 13356 | b1 = PyBytes_AS_STRING(r1); |
| 13357 | for (i = 0; i < numnondigits; ++i) |
| 13358 | *b1++ = *buf++; |
| 13359 | for (i = 0; i < prec - numdigits; i++) |
| 13360 | *b1++ = '0'; |
| 13361 | for (i = 0; i < numdigits; i++) |
| 13362 | *b1++ = *buf++; |
| 13363 | *b1 = '\0'; |
| 13364 | Py_DECREF(result); |
| 13365 | result = r1; |
| 13366 | buf = PyBytes_AS_STRING(result); |
| 13367 | len = numnondigits + prec; |
| 13368 | } |
| 13369 | |
| 13370 | /* Fix up case for hex conversions. */ |
| 13371 | if (type == 'X') { |
| 13372 | /* Need to convert all lower case letters to upper case. |
| 13373 | and need to convert 0x to 0X (and -0x to -0X). */ |
| 13374 | for (i = 0; i < len; i++) |
| 13375 | if (buf[i] >= 'a' && buf[i] <= 'x') |
| 13376 | buf[i] -= 'a'-'A'; |
| 13377 | } |
| 13378 | if (!PyUnicode_Check(result) || len != PyUnicode_GET_LENGTH(result)) { |
| 13379 | PyObject *unicode; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13380 | unicode = _PyUnicode_FromASCII(buf, len); |
Victor Stinner | d0880d5 | 2012-04-27 23:40:13 +0200 | [diff] [blame] | 13381 | Py_DECREF(result); |
| 13382 | result = unicode; |
| 13383 | } |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13384 | return result; |
Tim Peters | 38fd5b6 | 2000-09-21 05:43:11 +0000 | [diff] [blame] | 13385 | } |
| 13386 | |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13387 | static Py_UCS4 |
| 13388 | formatchar(PyObject *v) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13389 | { |
Amaury Forgeot d'Arc | a4db686 | 2008-07-04 21:26:43 +0000 | [diff] [blame] | 13390 | /* presume that the buffer is at least 3 characters long */ |
Marc-André Lemburg | d4ab4a5 | 2000-06-08 17:54:00 +0000 | [diff] [blame] | 13391 | if (PyUnicode_Check(v)) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13392 | if (PyUnicode_GET_LENGTH(v) == 1) { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13393 | return PyUnicode_READ_CHAR(v, 0); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13394 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13395 | goto onError; |
| 13396 | } |
| 13397 | else { |
| 13398 | /* Integer input truncated to a character */ |
| 13399 | long x; |
| 13400 | x = PyLong_AsLong(v); |
| 13401 | if (x == -1 && PyErr_Occurred()) |
| 13402 | goto onError; |
| 13403 | |
Victor Stinner | 8faf821 | 2011-12-08 22:14:11 +0100 | [diff] [blame] | 13404 | if (x < 0 || x > MAX_UNICODE) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13405 | PyErr_SetString(PyExc_OverflowError, |
| 13406 | "%c arg not in range(0x110000)"); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13407 | return (Py_UCS4) -1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13408 | } |
| 13409 | |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13410 | return (Py_UCS4) x; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13411 | } |
Amaury Forgeot d'Arc | a4db686 | 2008-07-04 21:26:43 +0000 | [diff] [blame] | 13412 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13413 | onError: |
Marc-André Lemburg | d4ab4a5 | 2000-06-08 17:54:00 +0000 | [diff] [blame] | 13414 | PyErr_SetString(PyExc_TypeError, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13415 | "%c requires int or char"); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13416 | return (Py_UCS4) -1; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13417 | } |
| 13418 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 13419 | PyObject * |
| 13420 | PyUnicode_Format(PyObject *format, PyObject *args) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13421 | { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13422 | Py_ssize_t fmtcnt, fmtpos, arglen, argidx; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13423 | int args_owned = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13424 | PyObject *dict = NULL; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13425 | PyObject *temp = NULL; |
| 13426 | PyObject *second = NULL; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13427 | PyObject *uformat; |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13428 | void *fmt; |
| 13429 | enum PyUnicode_Kind kind, fmtkind; |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 13430 | _PyUnicodeWriter writer; |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13431 | Py_ssize_t sublen; |
| 13432 | Py_UCS4 maxchar; |
Tim Peters | ced69f8 | 2003-09-16 20:30:58 +0000 | [diff] [blame] | 13433 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13434 | if (format == NULL || args == NULL) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13435 | PyErr_BadInternalCall(); |
| 13436 | return NULL; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13437 | } |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13438 | uformat = PyUnicode_FromObject(format); |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 13439 | if (uformat == NULL) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13440 | return NULL; |
Victor Stinner | 1929407 | 2012-10-05 00:09:33 +0200 | [diff] [blame] | 13441 | if (PyUnicode_READY(uformat) == -1) { |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 13442 | Py_DECREF(uformat); |
Victor Stinner | 1929407 | 2012-10-05 00:09:33 +0200 | [diff] [blame] | 13443 | return NULL; |
| 13444 | } |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13445 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13446 | fmt = PyUnicode_DATA(uformat); |
| 13447 | fmtkind = PyUnicode_KIND(uformat); |
| 13448 | fmtcnt = PyUnicode_GET_LENGTH(uformat); |
| 13449 | fmtpos = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13450 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13451 | _PyUnicodeWriter_Init(&writer, fmtcnt + 100); |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13452 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13453 | if (PyTuple_Check(args)) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13454 | arglen = PyTuple_Size(args); |
| 13455 | argidx = 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13456 | } |
| 13457 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13458 | arglen = -1; |
| 13459 | argidx = -2; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13460 | } |
Benjamin Peterson | 28a6cfa | 2012-08-28 17:55:35 -0400 | [diff] [blame] | 13461 | if (PyMapping_Check(args) && !PyTuple_Check(args) && !PyUnicode_Check(args)) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13462 | dict = args; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13463 | |
| 13464 | while (--fmtcnt >= 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13465 | if (PyUnicode_READ(fmtkind, fmt, fmtpos) != '%') { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13466 | Py_ssize_t nonfmtpos; |
| 13467 | nonfmtpos = fmtpos++; |
| 13468 | while (fmtcnt >= 0 && |
| 13469 | PyUnicode_READ(fmtkind, fmt, fmtpos) != '%') { |
| 13470 | fmtpos++; |
| 13471 | fmtcnt--; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13472 | } |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13473 | if (fmtcnt < 0) |
| 13474 | fmtpos--; |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13475 | sublen = fmtpos - nonfmtpos; |
| 13476 | maxchar = _PyUnicode_FindMaxChar(uformat, |
| 13477 | nonfmtpos, nonfmtpos + sublen); |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 13478 | if (_PyUnicodeWriter_Prepare(&writer, sublen, maxchar) == -1) |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13479 | goto onError; |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13480 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13481 | _PyUnicode_FastCopyCharacters(writer.buffer, writer.pos, |
| 13482 | uformat, nonfmtpos, sublen); |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13483 | writer.pos += sublen; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13484 | } |
| 13485 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13486 | /* Got a format specifier */ |
| 13487 | int flags = 0; |
| 13488 | Py_ssize_t width = -1; |
| 13489 | int prec = -1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13490 | Py_UCS4 c = '\0'; |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13491 | Py_UCS4 fill; |
| 13492 | int sign; |
| 13493 | Py_UCS4 signchar; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13494 | int isnumok; |
| 13495 | PyObject *v = NULL; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13496 | void *pbuf = NULL; |
| 13497 | Py_ssize_t pindex, len; |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13498 | Py_UCS4 bufmaxchar; |
| 13499 | Py_ssize_t buflen; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13500 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13501 | fmtpos++; |
Victor Stinner | 438106b | 2012-05-02 00:41:57 +0200 | [diff] [blame] | 13502 | c = PyUnicode_READ(fmtkind, fmt, fmtpos); |
| 13503 | if (c == '(') { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13504 | Py_ssize_t keystart; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13505 | Py_ssize_t keylen; |
| 13506 | PyObject *key; |
| 13507 | int pcount = 1; |
Christian Heimes | a612dc0 | 2008-02-24 13:08:18 +0000 | [diff] [blame] | 13508 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13509 | if (dict == NULL) { |
| 13510 | PyErr_SetString(PyExc_TypeError, |
| 13511 | "format requires a mapping"); |
| 13512 | goto onError; |
| 13513 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13514 | ++fmtpos; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13515 | --fmtcnt; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13516 | keystart = fmtpos; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13517 | /* Skip over balanced parentheses */ |
| 13518 | while (pcount > 0 && --fmtcnt >= 0) { |
Victor Stinner | bff7c96 | 2012-05-03 01:44:59 +0200 | [diff] [blame] | 13519 | c = PyUnicode_READ(fmtkind, fmt, fmtpos); |
| 13520 | if (c == ')') |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13521 | --pcount; |
Victor Stinner | bff7c96 | 2012-05-03 01:44:59 +0200 | [diff] [blame] | 13522 | else if (c == '(') |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13523 | ++pcount; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13524 | fmtpos++; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13525 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13526 | keylen = fmtpos - keystart - 1; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13527 | if (fmtcnt < 0 || pcount > 0) { |
| 13528 | PyErr_SetString(PyExc_ValueError, |
| 13529 | "incomplete format key"); |
| 13530 | goto onError; |
| 13531 | } |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 13532 | key = PyUnicode_Substring(uformat, |
Victor Stinner | 12bab6d | 2011-10-01 01:53:49 +0200 | [diff] [blame] | 13533 | keystart, keystart + keylen); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13534 | if (key == NULL) |
| 13535 | goto onError; |
| 13536 | if (args_owned) { |
| 13537 | Py_DECREF(args); |
| 13538 | args_owned = 0; |
| 13539 | } |
| 13540 | args = PyObject_GetItem(dict, key); |
| 13541 | Py_DECREF(key); |
| 13542 | if (args == NULL) { |
| 13543 | goto onError; |
| 13544 | } |
| 13545 | args_owned = 1; |
| 13546 | arglen = -1; |
| 13547 | argidx = -2; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13548 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13549 | while (--fmtcnt >= 0) { |
Victor Stinner | 438106b | 2012-05-02 00:41:57 +0200 | [diff] [blame] | 13550 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
| 13551 | switch (c) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13552 | case '-': flags |= F_LJUST; continue; |
| 13553 | case '+': flags |= F_SIGN; continue; |
| 13554 | case ' ': flags |= F_BLANK; continue; |
| 13555 | case '#': flags |= F_ALT; continue; |
| 13556 | case '0': flags |= F_ZERO; continue; |
| 13557 | } |
| 13558 | break; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13559 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13560 | if (c == '*') { |
| 13561 | v = getnextarg(args, arglen, &argidx); |
| 13562 | if (v == NULL) |
| 13563 | goto onError; |
| 13564 | if (!PyLong_Check(v)) { |
| 13565 | PyErr_SetString(PyExc_TypeError, |
| 13566 | "* wants int"); |
| 13567 | goto onError; |
| 13568 | } |
Serhiy Storchaka | 441d30f | 2013-01-19 12:26:26 +0200 | [diff] [blame] | 13569 | width = PyLong_AsSsize_t(v); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13570 | if (width == -1 && PyErr_Occurred()) |
| 13571 | goto onError; |
| 13572 | if (width < 0) { |
| 13573 | flags |= F_LJUST; |
| 13574 | width = -width; |
| 13575 | } |
| 13576 | if (--fmtcnt >= 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13577 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13578 | } |
| 13579 | else if (c >= '0' && c <= '9') { |
| 13580 | width = c - '0'; |
| 13581 | while (--fmtcnt >= 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13582 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13583 | if (c < '0' || c > '9') |
| 13584 | break; |
Martin v. Löwis | b05c073 | 2012-05-15 13:45:49 +0200 | [diff] [blame] | 13585 | /* Since c is unsigned, the RHS would end up as unsigned, |
| 13586 | mixing signed and unsigned comparison. Since c is between |
| 13587 | '0' and '9', casting to int is safe. */ |
| 13588 | if (width > (PY_SSIZE_T_MAX - ((int)c - '0')) / 10) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13589 | PyErr_SetString(PyExc_ValueError, |
| 13590 | "width too big"); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13591 | goto onError; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13592 | } |
| 13593 | width = width*10 + (c - '0'); |
| 13594 | } |
| 13595 | } |
| 13596 | if (c == '.') { |
| 13597 | prec = 0; |
| 13598 | if (--fmtcnt >= 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13599 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13600 | if (c == '*') { |
| 13601 | v = getnextarg(args, arglen, &argidx); |
| 13602 | if (v == NULL) |
| 13603 | goto onError; |
| 13604 | if (!PyLong_Check(v)) { |
| 13605 | PyErr_SetString(PyExc_TypeError, |
| 13606 | "* wants int"); |
| 13607 | goto onError; |
| 13608 | } |
Serhiy Storchaka | 441d30f | 2013-01-19 12:26:26 +0200 | [diff] [blame] | 13609 | prec = _PyLong_AsInt(v); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13610 | if (prec == -1 && PyErr_Occurred()) |
| 13611 | goto onError; |
| 13612 | if (prec < 0) |
| 13613 | prec = 0; |
| 13614 | if (--fmtcnt >= 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13615 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13616 | } |
| 13617 | else if (c >= '0' && c <= '9') { |
| 13618 | prec = c - '0'; |
| 13619 | while (--fmtcnt >= 0) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13620 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13621 | if (c < '0' || c > '9') |
| 13622 | break; |
Martin v. Löwis | b05c073 | 2012-05-15 13:45:49 +0200 | [diff] [blame] | 13623 | if (prec > (INT_MAX - ((int)c - '0')) / 10) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13624 | PyErr_SetString(PyExc_ValueError, |
| 13625 | "prec too big"); |
| 13626 | goto onError; |
| 13627 | } |
| 13628 | prec = prec*10 + (c - '0'); |
| 13629 | } |
| 13630 | } |
| 13631 | } /* prec */ |
| 13632 | if (fmtcnt >= 0) { |
| 13633 | if (c == 'h' || c == 'l' || c == 'L') { |
| 13634 | if (--fmtcnt >= 0) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13635 | c = PyUnicode_READ(fmtkind, fmt, fmtpos++); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13636 | } |
| 13637 | } |
| 13638 | if (fmtcnt < 0) { |
| 13639 | PyErr_SetString(PyExc_ValueError, |
| 13640 | "incomplete format"); |
| 13641 | goto onError; |
| 13642 | } |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13643 | if (fmtcnt == 0) |
Victor Stinner | d7b7c74 | 2012-06-04 22:52:12 +0200 | [diff] [blame] | 13644 | writer.overallocate = 0; |
Victor Stinner | aff3cc6 | 2012-04-30 05:19:21 +0200 | [diff] [blame] | 13645 | |
| 13646 | if (c == '%') { |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 13647 | if (_PyUnicodeWriter_Prepare(&writer, 1, '%') == -1) |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13648 | goto onError; |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13649 | PyUnicode_WRITE(writer.kind, writer.data, writer.pos, '%'); |
| 13650 | writer.pos += 1; |
Victor Stinner | aff3cc6 | 2012-04-30 05:19:21 +0200 | [diff] [blame] | 13651 | continue; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13652 | } |
Victor Stinner | aff3cc6 | 2012-04-30 05:19:21 +0200 | [diff] [blame] | 13653 | |
Victor Stinner | aff3cc6 | 2012-04-30 05:19:21 +0200 | [diff] [blame] | 13654 | v = getnextarg(args, arglen, &argidx); |
| 13655 | if (v == NULL) |
| 13656 | goto onError; |
| 13657 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13658 | sign = 0; |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13659 | signchar = '\0'; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13660 | fill = ' '; |
| 13661 | switch (c) { |
| 13662 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13663 | case 's': |
| 13664 | case 'r': |
| 13665 | case 'a': |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13666 | if (PyLong_CheckExact(v) && width == -1 && prec == -1) { |
| 13667 | /* Fast path */ |
| 13668 | if (_PyLong_FormatWriter(&writer, v, 10, flags & F_ALT) == -1) |
| 13669 | goto onError; |
| 13670 | goto nextarg; |
| 13671 | } |
| 13672 | |
Victor Stinner | 808fc0a | 2010-03-22 12:50:40 +0000 | [diff] [blame] | 13673 | if (PyUnicode_CheckExact(v) && c == 's') { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13674 | temp = v; |
| 13675 | Py_INCREF(temp); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13676 | } |
| 13677 | else { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13678 | if (c == 's') |
| 13679 | temp = PyObject_Str(v); |
| 13680 | else if (c == 'r') |
| 13681 | temp = PyObject_Repr(v); |
| 13682 | else |
| 13683 | temp = PyObject_ASCII(v); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13684 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13685 | break; |
| 13686 | |
| 13687 | case 'i': |
| 13688 | case 'd': |
| 13689 | case 'u': |
| 13690 | case 'o': |
| 13691 | case 'x': |
| 13692 | case 'X': |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13693 | if (PyLong_CheckExact(v) |
| 13694 | && width == -1 && prec == -1 |
| 13695 | && !(flags & (F_SIGN | F_BLANK))) |
| 13696 | { |
| 13697 | /* Fast path */ |
| 13698 | switch(c) |
| 13699 | { |
| 13700 | case 'd': |
| 13701 | case 'i': |
| 13702 | case 'u': |
| 13703 | if (_PyLong_FormatWriter(&writer, v, 10, flags & F_ALT) == -1) |
| 13704 | goto onError; |
| 13705 | goto nextarg; |
| 13706 | case 'x': |
| 13707 | if (_PyLong_FormatWriter(&writer, v, 16, flags & F_ALT) == -1) |
| 13708 | goto onError; |
| 13709 | goto nextarg; |
| 13710 | case 'o': |
| 13711 | if (_PyLong_FormatWriter(&writer, v, 8, flags & F_ALT) == -1) |
| 13712 | goto onError; |
| 13713 | goto nextarg; |
| 13714 | default: |
| 13715 | break; |
| 13716 | } |
| 13717 | } |
| 13718 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13719 | isnumok = 0; |
| 13720 | if (PyNumber_Check(v)) { |
| 13721 | PyObject *iobj=NULL; |
| 13722 | |
| 13723 | if (PyLong_Check(v)) { |
| 13724 | iobj = v; |
| 13725 | Py_INCREF(iobj); |
| 13726 | } |
| 13727 | else { |
| 13728 | iobj = PyNumber_Long(v); |
| 13729 | } |
| 13730 | if (iobj!=NULL) { |
| 13731 | if (PyLong_Check(iobj)) { |
| 13732 | isnumok = 1; |
Victor Stinner | aff3cc6 | 2012-04-30 05:19:21 +0200 | [diff] [blame] | 13733 | sign = 1; |
Senthil Kumaran | 9ebe08d | 2011-07-03 21:03:16 -0700 | [diff] [blame] | 13734 | temp = formatlong(iobj, flags, prec, (c == 'i'? 'd': c)); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13735 | Py_DECREF(iobj); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13736 | } |
| 13737 | else { |
| 13738 | Py_DECREF(iobj); |
| 13739 | } |
| 13740 | } |
| 13741 | } |
| 13742 | if (!isnumok) { |
| 13743 | PyErr_Format(PyExc_TypeError, |
| 13744 | "%%%c format: a number is required, " |
| 13745 | "not %.200s", (char)c, Py_TYPE(v)->tp_name); |
| 13746 | goto onError; |
| 13747 | } |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13748 | if (flags & F_ZERO) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13749 | fill = '0'; |
| 13750 | break; |
| 13751 | |
| 13752 | case 'e': |
| 13753 | case 'E': |
| 13754 | case 'f': |
| 13755 | case 'F': |
| 13756 | case 'g': |
| 13757 | case 'G': |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13758 | if (width == -1 && prec == -1 |
| 13759 | && !(flags & (F_SIGN | F_BLANK))) |
| 13760 | { |
| 13761 | /* Fast path */ |
| 13762 | if (formatfloat(v, flags, prec, c, NULL, &writer) == -1) |
| 13763 | goto onError; |
| 13764 | goto nextarg; |
| 13765 | } |
| 13766 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13767 | sign = 1; |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13768 | if (flags & F_ZERO) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13769 | fill = '0'; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13770 | if (formatfloat(v, flags, prec, c, &temp, NULL) == -1) |
| 13771 | temp = NULL; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13772 | break; |
| 13773 | |
| 13774 | case 'c': |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13775 | { |
| 13776 | Py_UCS4 ch = formatchar(v); |
| 13777 | if (ch == (Py_UCS4) -1) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13778 | goto onError; |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13779 | if (width == -1 && prec == -1) { |
| 13780 | /* Fast path */ |
| 13781 | if (_PyUnicodeWriter_Prepare(&writer, 1, ch) == -1) |
| 13782 | goto onError; |
| 13783 | PyUnicode_WRITE(writer.kind, writer.data, writer.pos, ch); |
| 13784 | writer.pos += 1; |
| 13785 | goto nextarg; |
| 13786 | } |
Victor Stinner | b5c3ea3 | 2012-05-02 00:29:36 +0200 | [diff] [blame] | 13787 | temp = PyUnicode_FromOrdinal(ch); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13788 | break; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13789 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13790 | |
| 13791 | default: |
| 13792 | PyErr_Format(PyExc_ValueError, |
| 13793 | "unsupported format character '%c' (0x%x) " |
| 13794 | "at index %zd", |
| 13795 | (31<=c && c<=126) ? (char)c : '?', |
| 13796 | (int)c, |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13797 | fmtpos - 1); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13798 | goto onError; |
| 13799 | } |
Victor Stinner | aff3cc6 | 2012-04-30 05:19:21 +0200 | [diff] [blame] | 13800 | if (temp == NULL) |
| 13801 | goto onError; |
| 13802 | assert (PyUnicode_Check(temp)); |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13803 | |
| 13804 | if (width == -1 && prec == -1 |
| 13805 | && !(flags & (F_SIGN | F_BLANK))) |
| 13806 | { |
| 13807 | /* Fast path */ |
| 13808 | if (_PyUnicodeWriter_WriteStr(&writer, temp) == -1) |
| 13809 | goto onError; |
| 13810 | goto nextarg; |
| 13811 | } |
| 13812 | |
Victor Stinner | aff3cc6 | 2012-04-30 05:19:21 +0200 | [diff] [blame] | 13813 | if (PyUnicode_READY(temp) == -1) { |
| 13814 | Py_CLEAR(temp); |
| 13815 | goto onError; |
| 13816 | } |
| 13817 | kind = PyUnicode_KIND(temp); |
| 13818 | pbuf = PyUnicode_DATA(temp); |
| 13819 | len = PyUnicode_GET_LENGTH(temp); |
| 13820 | |
| 13821 | if (c == 's' || c == 'r' || c == 'a') { |
| 13822 | if (prec >= 0 && len > prec) |
| 13823 | len = prec; |
| 13824 | } |
| 13825 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13826 | /* pbuf is initialized here. */ |
| 13827 | pindex = 0; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13828 | if (sign) { |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13829 | Py_UCS4 ch = PyUnicode_READ(kind, pbuf, pindex); |
| 13830 | if (ch == '-' || ch == '+') { |
| 13831 | signchar = ch; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13832 | len--; |
| 13833 | pindex++; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13834 | } |
| 13835 | else if (flags & F_SIGN) |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13836 | signchar = '+'; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13837 | else if (flags & F_BLANK) |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13838 | signchar = ' '; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13839 | else |
| 13840 | sign = 0; |
| 13841 | } |
| 13842 | if (width < len) |
| 13843 | width = len; |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13844 | |
| 13845 | /* Compute the length and maximum character of the |
| 13846 | written characters */ |
| 13847 | bufmaxchar = 127; |
| 13848 | if (!(flags & F_LJUST)) { |
| 13849 | if (sign) { |
| 13850 | if ((width-1) > len) |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 13851 | bufmaxchar = Py_MAX(bufmaxchar, fill); |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13852 | } |
| 13853 | else { |
| 13854 | if (width > len) |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 13855 | bufmaxchar = Py_MAX(bufmaxchar, fill); |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13856 | } |
| 13857 | } |
| 13858 | maxchar = _PyUnicode_FindMaxChar(temp, 0, pindex+len); |
Benjamin Peterson | 7e30373 | 2013-06-10 09:19:46 -0700 | [diff] [blame] | 13859 | bufmaxchar = Py_MAX(bufmaxchar, maxchar); |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13860 | |
| 13861 | buflen = width; |
| 13862 | if (sign && len == width) |
| 13863 | buflen++; |
| 13864 | |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 13865 | if (_PyUnicodeWriter_Prepare(&writer, buflen, bufmaxchar) == -1) |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13866 | goto onError; |
| 13867 | |
| 13868 | /* Write characters */ |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13869 | if (sign) { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13870 | if (fill != ' ') { |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13871 | PyUnicode_WRITE(writer.kind, writer.data, writer.pos, signchar); |
| 13872 | writer.pos += 1; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13873 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13874 | if (width > len) |
| 13875 | width--; |
| 13876 | } |
| 13877 | if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13878 | assert(PyUnicode_READ(kind, pbuf, pindex) == '0'); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13879 | assert(PyUnicode_READ(kind, pbuf, pindex + 1) == c); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13880 | if (fill != ' ') { |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13881 | PyUnicode_WRITE(writer.kind, writer.data, writer.pos, '0'); |
| 13882 | PyUnicode_WRITE(writer.kind, writer.data, writer.pos+1, c); |
| 13883 | writer.pos += 2; |
| 13884 | pindex += 2; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13885 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13886 | width -= 2; |
| 13887 | if (width < 0) |
| 13888 | width = 0; |
| 13889 | len -= 2; |
| 13890 | } |
| 13891 | if (width > len && !(flags & F_LJUST)) { |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13892 | sublen = width - len; |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13893 | FILL(writer.kind, writer.data, fill, writer.pos, sublen); |
| 13894 | writer.pos += sublen; |
Antoine Pitrou | 978b9d2 | 2011-10-07 12:35:48 +0200 | [diff] [blame] | 13895 | width = len; |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13896 | } |
| 13897 | if (fill == ' ') { |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13898 | if (sign) { |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13899 | PyUnicode_WRITE(writer.kind, writer.data, writer.pos, signchar); |
| 13900 | writer.pos += 1; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13901 | } |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13902 | if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 13903 | assert(PyUnicode_READ(kind, pbuf, pindex) == '0'); |
| 13904 | assert(PyUnicode_READ(kind, pbuf, pindex+1) == c); |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13905 | PyUnicode_WRITE(writer.kind, writer.data, writer.pos, '0'); |
| 13906 | PyUnicode_WRITE(writer.kind, writer.data, writer.pos+1, c); |
| 13907 | writer.pos += 2; |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13908 | pindex += 2; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13909 | } |
| 13910 | } |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13911 | |
Victor Stinner | c9d369f | 2012-06-16 02:22:37 +0200 | [diff] [blame] | 13912 | if (len) { |
| 13913 | _PyUnicode_FastCopyCharacters(writer.buffer, writer.pos, |
| 13914 | temp, pindex, len); |
| 13915 | writer.pos += len; |
| 13916 | } |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13917 | if (width > len) { |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13918 | sublen = width - len; |
Victor Stinner | f2c76aa | 2012-05-03 13:10:40 +0200 | [diff] [blame] | 13919 | FILL(writer.kind, writer.data, ' ', writer.pos, sublen); |
| 13920 | writer.pos += sublen; |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13921 | } |
Victor Stinner | ee4544c | 2012-05-09 22:24:08 +0200 | [diff] [blame] | 13922 | |
Victor Stinner | d3f0882 | 2012-05-29 12:57:52 +0200 | [diff] [blame] | 13923 | nextarg: |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13924 | if (dict && (argidx < arglen) && c != '%') { |
| 13925 | PyErr_SetString(PyExc_TypeError, |
| 13926 | "not all arguments converted during string formatting"); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13927 | goto onError; |
| 13928 | } |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13929 | Py_CLEAR(temp); |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13930 | } /* '%' */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13931 | } /* until end */ |
| 13932 | if (argidx < arglen && !dict) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13933 | PyErr_SetString(PyExc_TypeError, |
| 13934 | "not all arguments converted during string formatting"); |
| 13935 | goto onError; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13936 | } |
| 13937 | |
| 13938 | if (args_owned) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13939 | Py_DECREF(args); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13940 | } |
| 13941 | Py_DECREF(uformat); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13942 | Py_XDECREF(temp); |
| 13943 | Py_XDECREF(second); |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 13944 | return _PyUnicodeWriter_Finish(&writer); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13945 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13946 | onError: |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13947 | Py_DECREF(uformat); |
Antoine Pitrou | 5c0ba36 | 2011-10-07 01:54:09 +0200 | [diff] [blame] | 13948 | Py_XDECREF(temp); |
| 13949 | Py_XDECREF(second); |
Victor Stinner | 3b1a74a | 2012-05-09 22:25:00 +0200 | [diff] [blame] | 13950 | _PyUnicodeWriter_Dealloc(&writer); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13951 | if (args_owned) { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13952 | Py_DECREF(args); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 13953 | } |
| 13954 | return NULL; |
| 13955 | } |
| 13956 | |
Jeremy Hylton | 938ace6 | 2002-07-17 16:30:39 +0000 | [diff] [blame] | 13957 | static PyObject * |
Guido van Rossum | e023fe0 | 2001-08-30 03:12:59 +0000 | [diff] [blame] | 13958 | unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds); |
| 13959 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 13960 | static PyObject * |
| 13961 | unicode_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 13962 | { |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13963 | PyObject *x = NULL; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13964 | static char *kwlist[] = {"object", "encoding", "errors", 0}; |
| 13965 | char *encoding = NULL; |
| 13966 | char *errors = NULL; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 13967 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13968 | if (type != &PyUnicode_Type) |
| 13969 | return unicode_subtype_new(type, args, kwds); |
| 13970 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:str", |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13971 | kwlist, &x, &encoding, &errors)) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13972 | return NULL; |
| 13973 | if (x == NULL) |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 13974 | _Py_RETURN_UNICODE_EMPTY(); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13975 | if (encoding == NULL && errors == NULL) |
| 13976 | return PyObject_Str(x); |
| 13977 | else |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 13978 | return PyUnicode_FromEncodedObject(x, encoding, errors); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 13979 | } |
| 13980 | |
Guido van Rossum | e023fe0 | 2001-08-30 03:12:59 +0000 | [diff] [blame] | 13981 | static PyObject * |
| 13982 | unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 13983 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13984 | PyObject *unicode, *self; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13985 | Py_ssize_t length, char_size; |
| 13986 | int share_wstr, share_utf8; |
| 13987 | unsigned int kind; |
| 13988 | void *data; |
Guido van Rossum | e023fe0 | 2001-08-30 03:12:59 +0000 | [diff] [blame] | 13989 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13990 | assert(PyType_IsSubtype(type, &PyUnicode_Type)); |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13991 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 13992 | unicode = unicode_new(&PyUnicode_Type, args, kwds); |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13993 | if (unicode == NULL) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 13994 | return NULL; |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 13995 | assert(_PyUnicode_CHECK(unicode)); |
Benjamin Peterson | bac7949 | 2012-01-14 13:34:47 -0500 | [diff] [blame] | 13996 | if (PyUnicode_READY(unicode) == -1) { |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 13997 | Py_DECREF(unicode); |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 13998 | return NULL; |
Benjamin Peterson | 22a2970 | 2012-01-02 09:00:30 -0600 | [diff] [blame] | 13999 | } |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14000 | |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14001 | self = type->tp_alloc(type, 0); |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14002 | if (self == NULL) { |
| 14003 | Py_DECREF(unicode); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14004 | return NULL; |
| 14005 | } |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14006 | kind = PyUnicode_KIND(unicode); |
| 14007 | length = PyUnicode_GET_LENGTH(unicode); |
| 14008 | |
| 14009 | _PyUnicode_LENGTH(self) = length; |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 14010 | #ifdef Py_DEBUG |
| 14011 | _PyUnicode_HASH(self) = -1; |
| 14012 | #else |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14013 | _PyUnicode_HASH(self) = _PyUnicode_HASH(unicode); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 14014 | #endif |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14015 | _PyUnicode_STATE(self).interned = 0; |
| 14016 | _PyUnicode_STATE(self).kind = kind; |
| 14017 | _PyUnicode_STATE(self).compact = 0; |
Victor Stinner | 3cf4637 | 2011-10-03 14:42:15 +0200 | [diff] [blame] | 14018 | _PyUnicode_STATE(self).ascii = _PyUnicode_STATE(unicode).ascii; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14019 | _PyUnicode_STATE(self).ready = 1; |
| 14020 | _PyUnicode_WSTR(self) = NULL; |
| 14021 | _PyUnicode_UTF8_LENGTH(self) = 0; |
| 14022 | _PyUnicode_UTF8(self) = NULL; |
| 14023 | _PyUnicode_WSTR_LENGTH(self) = 0; |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 14024 | _PyUnicode_DATA_ANY(self) = NULL; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14025 | |
| 14026 | share_utf8 = 0; |
| 14027 | share_wstr = 0; |
| 14028 | if (kind == PyUnicode_1BYTE_KIND) { |
| 14029 | char_size = 1; |
| 14030 | if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128) |
| 14031 | share_utf8 = 1; |
| 14032 | } |
| 14033 | else if (kind == PyUnicode_2BYTE_KIND) { |
| 14034 | char_size = 2; |
| 14035 | if (sizeof(wchar_t) == 2) |
| 14036 | share_wstr = 1; |
| 14037 | } |
| 14038 | else { |
| 14039 | assert(kind == PyUnicode_4BYTE_KIND); |
| 14040 | char_size = 4; |
| 14041 | if (sizeof(wchar_t) == 4) |
| 14042 | share_wstr = 1; |
| 14043 | } |
| 14044 | |
| 14045 | /* Ensure we won't overflow the length. */ |
| 14046 | if (length > (PY_SSIZE_T_MAX / char_size - 1)) { |
| 14047 | PyErr_NoMemory(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14048 | goto onError; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14049 | } |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14050 | data = PyObject_MALLOC((length + 1) * char_size); |
| 14051 | if (data == NULL) { |
| 14052 | PyErr_NoMemory(); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14053 | goto onError; |
| 14054 | } |
| 14055 | |
Victor Stinner | c3c7415 | 2011-10-02 20:39:55 +0200 | [diff] [blame] | 14056 | _PyUnicode_DATA_ANY(self) = data; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14057 | if (share_utf8) { |
| 14058 | _PyUnicode_UTF8_LENGTH(self) = length; |
| 14059 | _PyUnicode_UTF8(self) = data; |
| 14060 | } |
| 14061 | if (share_wstr) { |
| 14062 | _PyUnicode_WSTR_LENGTH(self) = length; |
| 14063 | _PyUnicode_WSTR(self) = (wchar_t *)data; |
| 14064 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14065 | |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14066 | Py_MEMCPY(data, PyUnicode_DATA(unicode), |
Martin v. Löwis | c47adb0 | 2011-10-07 20:55:35 +0200 | [diff] [blame] | 14067 | kind * (length + 1)); |
Victor Stinner | bb10a1f | 2011-10-05 01:34:17 +0200 | [diff] [blame] | 14068 | assert(_PyUnicode_CheckConsistency(self, 1)); |
Victor Stinner | fb9ea8c | 2011-10-06 01:45:57 +0200 | [diff] [blame] | 14069 | #ifdef Py_DEBUG |
| 14070 | _PyUnicode_HASH(self) = _PyUnicode_HASH(unicode); |
| 14071 | #endif |
Victor Stinner | dd18d3a | 2011-10-22 11:08:10 +0200 | [diff] [blame] | 14072 | Py_DECREF(unicode); |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 14073 | return self; |
Victor Stinner | 07ac3eb | 2011-10-01 16:16:43 +0200 | [diff] [blame] | 14074 | |
| 14075 | onError: |
| 14076 | Py_DECREF(unicode); |
| 14077 | Py_DECREF(self); |
| 14078 | return NULL; |
Guido van Rossum | e023fe0 | 2001-08-30 03:12:59 +0000 | [diff] [blame] | 14079 | } |
| 14080 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 14081 | PyDoc_STRVAR(unicode_doc, |
Chris Jerdonek | 83fe2e1 | 2012-10-07 14:48:36 -0700 | [diff] [blame] | 14082 | "str(object='') -> str\n\ |
| 14083 | str(bytes_or_buffer[, encoding[, errors]]) -> str\n\ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 14084 | \n\ |
Nick Coghlan | 573b1fd | 2012-08-16 14:13:07 +1000 | [diff] [blame] | 14085 | Create a new string object from the given object. If encoding or\n\ |
| 14086 | errors is specified, then the object must expose a data buffer\n\ |
| 14087 | that will be decoded using the given encoding and error handler.\n\ |
| 14088 | Otherwise, returns the result of object.__str__() (if defined)\n\ |
| 14089 | or repr(object).\n\ |
| 14090 | encoding defaults to sys.getdefaultencoding().\n\ |
| 14091 | errors defaults to 'strict'."); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 14092 | |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14093 | static PyObject *unicode_iter(PyObject *seq); |
| 14094 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 14095 | PyTypeObject PyUnicode_Type = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 14096 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14097 | "str", /* tp_name */ |
| 14098 | sizeof(PyUnicodeObject), /* tp_size */ |
| 14099 | 0, /* tp_itemsize */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 14100 | /* Slots */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14101 | (destructor)unicode_dealloc, /* tp_dealloc */ |
| 14102 | 0, /* tp_print */ |
| 14103 | 0, /* tp_getattr */ |
| 14104 | 0, /* tp_setattr */ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 14105 | 0, /* tp_reserved */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14106 | unicode_repr, /* tp_repr */ |
| 14107 | &unicode_as_number, /* tp_as_number */ |
| 14108 | &unicode_as_sequence, /* tp_as_sequence */ |
| 14109 | &unicode_as_mapping, /* tp_as_mapping */ |
| 14110 | (hashfunc) unicode_hash, /* tp_hash*/ |
| 14111 | 0, /* tp_call*/ |
| 14112 | (reprfunc) unicode_str, /* tp_str */ |
| 14113 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 14114 | 0, /* tp_setattro */ |
| 14115 | 0, /* tp_as_buffer */ |
| 14116 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 14117 | Py_TPFLAGS_UNICODE_SUBCLASS, /* tp_flags */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14118 | unicode_doc, /* tp_doc */ |
| 14119 | 0, /* tp_traverse */ |
| 14120 | 0, /* tp_clear */ |
| 14121 | PyUnicode_RichCompare, /* tp_richcompare */ |
| 14122 | 0, /* tp_weaklistoffset */ |
| 14123 | unicode_iter, /* tp_iter */ |
| 14124 | 0, /* tp_iternext */ |
| 14125 | unicode_methods, /* tp_methods */ |
| 14126 | 0, /* tp_members */ |
| 14127 | 0, /* tp_getset */ |
| 14128 | &PyBaseObject_Type, /* tp_base */ |
| 14129 | 0, /* tp_dict */ |
| 14130 | 0, /* tp_descr_get */ |
| 14131 | 0, /* tp_descr_set */ |
| 14132 | 0, /* tp_dictoffset */ |
| 14133 | 0, /* tp_init */ |
| 14134 | 0, /* tp_alloc */ |
| 14135 | unicode_new, /* tp_new */ |
| 14136 | PyObject_Del, /* tp_free */ |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 14137 | }; |
| 14138 | |
| 14139 | /* Initialize the Unicode implementation */ |
| 14140 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 14141 | int _PyUnicode_Init(void) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 14142 | { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 14143 | /* XXX - move this array to unicodectype.c ? */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14144 | Py_UCS2 linebreak[] = { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 14145 | 0x000A, /* LINE FEED */ |
| 14146 | 0x000D, /* CARRIAGE RETURN */ |
| 14147 | 0x001C, /* FILE SEPARATOR */ |
| 14148 | 0x001D, /* GROUP SEPARATOR */ |
| 14149 | 0x001E, /* RECORD SEPARATOR */ |
| 14150 | 0x0085, /* NEXT LINE */ |
| 14151 | 0x2028, /* LINE SEPARATOR */ |
| 14152 | 0x2029, /* PARAGRAPH SEPARATOR */ |
| 14153 | }; |
| 14154 | |
Fred Drake | e4315f5 | 2000-05-09 19:53:39 +0000 | [diff] [blame] | 14155 | /* Init the implementation */ |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 14156 | _Py_INCREF_UNICODE_EMPTY(); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 14157 | if (!unicode_empty) |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14158 | Py_FatalError("Can't create empty string"); |
Serhiy Storchaka | 678db84 | 2013-01-26 12:16:36 +0200 | [diff] [blame] | 14159 | Py_DECREF(unicode_empty); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 14160 | |
Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 14161 | if (PyType_Ready(&PyUnicode_Type) < 0) |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 14162 | Py_FatalError("Can't initialize 'unicode'"); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 14163 | |
| 14164 | /* initialize the linebreak bloom filter */ |
| 14165 | bloom_linebreak = make_bloom_mask( |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14166 | PyUnicode_2BYTE_KIND, linebreak, |
Victor Stinner | 6394188 | 2011-09-29 00:42:28 +0200 | [diff] [blame] | 14167 | Py_ARRAY_LENGTH(linebreak)); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 14168 | |
Christian Heimes | 26532f7 | 2013-07-20 14:57:16 +0200 | [diff] [blame] | 14169 | if (PyType_Ready(&EncodingMapType) < 0) |
| 14170 | Py_FatalError("Can't initialize encoding map type"); |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 14171 | |
Benjamin Peterson | c431128 | 2012-10-30 23:21:10 -0400 | [diff] [blame] | 14172 | if (PyType_Ready(&PyFieldNameIter_Type) < 0) |
| 14173 | Py_FatalError("Can't initialize field name iterator type"); |
| 14174 | |
| 14175 | if (PyType_Ready(&PyFormatterIter_Type) < 0) |
| 14176 | Py_FatalError("Can't initialize formatter iter type"); |
Benjamin Peterson | e8ea97f | 2012-10-30 23:27:52 -0400 | [diff] [blame] | 14177 | |
Victor Stinner | 3a50e70 | 2011-10-18 21:21:00 +0200 | [diff] [blame] | 14178 | #ifdef HAVE_MBCS |
| 14179 | winver.dwOSVersionInfoSize = sizeof(winver); |
| 14180 | if (!GetVersionEx((OSVERSIONINFO*)&winver)) { |
| 14181 | PyErr_SetFromWindowsErr(0); |
| 14182 | return -1; |
| 14183 | } |
| 14184 | #endif |
| 14185 | return 0; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 14186 | } |
| 14187 | |
| 14188 | /* Finalize the Unicode implementation */ |
| 14189 | |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 14190 | int |
| 14191 | PyUnicode_ClearFreeList(void) |
| 14192 | { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14193 | return 0; |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 14194 | } |
| 14195 | |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 14196 | void |
Thomas Wouters | 7889010 | 2000-07-22 19:25:51 +0000 | [diff] [blame] | 14197 | _PyUnicode_Fini(void) |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 14198 | { |
Marc-André Lemburg | 8155e0e | 2001-04-23 14:44:21 +0000 | [diff] [blame] | 14199 | int i; |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 14200 | |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 14201 | Py_CLEAR(unicode_empty); |
Barry Warsaw | 5b4c228 | 2000-10-03 20:45:26 +0000 | [diff] [blame] | 14202 | |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 14203 | for (i = 0; i < 256; i++) |
| 14204 | Py_CLEAR(unicode_latin1[i]); |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 14205 | _PyUnicode_ClearStaticStrings(); |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 14206 | (void)PyUnicode_ClearFreeList(); |
Guido van Rossum | d57fd91 | 2000-03-10 22:53:23 +0000 | [diff] [blame] | 14207 | } |
Martin v. Löwis | 9a3a9f7 | 2003-05-18 12:31:09 +0000 | [diff] [blame] | 14208 | |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14209 | void |
| 14210 | PyUnicode_InternInPlace(PyObject **p) |
| 14211 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14212 | register PyObject *s = *p; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14213 | PyObject *t; |
Victor Stinner | 4fae54c | 2011-10-03 02:01:52 +0200 | [diff] [blame] | 14214 | #ifdef Py_DEBUG |
| 14215 | assert(s != NULL); |
| 14216 | assert(_PyUnicode_CHECK(s)); |
| 14217 | #else |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14218 | if (s == NULL || !PyUnicode_Check(s)) |
Victor Stinner | 4fae54c | 2011-10-03 02:01:52 +0200 | [diff] [blame] | 14219 | return; |
| 14220 | #endif |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14221 | /* If it's a subclass, we don't really know what putting |
| 14222 | it in the interned dict might do. */ |
| 14223 | if (!PyUnicode_CheckExact(s)) |
| 14224 | return; |
| 14225 | if (PyUnicode_CHECK_INTERNED(s)) |
| 14226 | return; |
| 14227 | if (interned == NULL) { |
| 14228 | interned = PyDict_New(); |
| 14229 | if (interned == NULL) { |
| 14230 | PyErr_Clear(); /* Don't leave an exception */ |
| 14231 | return; |
| 14232 | } |
| 14233 | } |
| 14234 | /* It might be that the GetItem call fails even |
| 14235 | though the key is present in the dictionary, |
| 14236 | namely when this happens during a stack overflow. */ |
| 14237 | Py_ALLOW_RECURSION |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 14238 | t = PyDict_GetItem(interned, s); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14239 | Py_END_ALLOW_RECURSION |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 14240 | |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 14241 | if (t) { |
| 14242 | Py_INCREF(t); |
| 14243 | Py_DECREF(*p); |
| 14244 | *p = t; |
| 14245 | return; |
| 14246 | } |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14247 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14248 | PyThreadState_GET()->recursion_critical = 1; |
Victor Stinner | 7931d9a | 2011-11-04 00:22:48 +0100 | [diff] [blame] | 14249 | if (PyDict_SetItem(interned, s, s) < 0) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14250 | PyErr_Clear(); |
| 14251 | PyThreadState_GET()->recursion_critical = 0; |
| 14252 | return; |
| 14253 | } |
| 14254 | PyThreadState_GET()->recursion_critical = 0; |
| 14255 | /* The two references in interned are not counted by refcnt. |
| 14256 | The deallocator will take care of this */ |
| 14257 | Py_REFCNT(s) -= 2; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14258 | _PyUnicode_STATE(s).interned = SSTATE_INTERNED_MORTAL; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14259 | } |
| 14260 | |
| 14261 | void |
| 14262 | PyUnicode_InternImmortal(PyObject **p) |
| 14263 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14264 | PyUnicode_InternInPlace(p); |
| 14265 | if (PyUnicode_CHECK_INTERNED(*p) != SSTATE_INTERNED_IMMORTAL) { |
Victor Stinner | af9e4b8 | 2011-10-23 20:07:00 +0200 | [diff] [blame] | 14266 | _PyUnicode_STATE(*p).interned = SSTATE_INTERNED_IMMORTAL; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14267 | Py_INCREF(*p); |
| 14268 | } |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14269 | } |
| 14270 | |
| 14271 | PyObject * |
| 14272 | PyUnicode_InternFromString(const char *cp) |
| 14273 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14274 | PyObject *s = PyUnicode_FromString(cp); |
| 14275 | if (s == NULL) |
| 14276 | return NULL; |
| 14277 | PyUnicode_InternInPlace(&s); |
| 14278 | return s; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14279 | } |
| 14280 | |
Alexander Belopolsky | 4001847 | 2011-02-26 01:02:56 +0000 | [diff] [blame] | 14281 | void |
| 14282 | _Py_ReleaseInternedUnicodeStrings(void) |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14283 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14284 | PyObject *keys; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14285 | PyObject *s; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14286 | Py_ssize_t i, n; |
| 14287 | Py_ssize_t immortal_size = 0, mortal_size = 0; |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14288 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14289 | if (interned == NULL || !PyDict_Check(interned)) |
| 14290 | return; |
| 14291 | keys = PyDict_Keys(interned); |
| 14292 | if (keys == NULL || !PyList_Check(keys)) { |
| 14293 | PyErr_Clear(); |
| 14294 | return; |
| 14295 | } |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14296 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14297 | /* Since _Py_ReleaseInternedUnicodeStrings() is intended to help a leak |
| 14298 | detector, interned unicode strings are not forcibly deallocated; |
| 14299 | rather, we give them their stolen references back, and then clear |
| 14300 | and DECREF the interned dict. */ |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14301 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14302 | n = PyList_GET_SIZE(keys); |
| 14303 | fprintf(stderr, "releasing %" PY_FORMAT_SIZE_T "d interned strings\n", |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 14304 | n); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14305 | for (i = 0; i < n; i++) { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14306 | s = PyList_GET_ITEM(keys, i); |
Victor Stinner | 6b56a7f | 2011-10-04 20:04:52 +0200 | [diff] [blame] | 14307 | if (PyUnicode_READY(s) == -1) { |
| 14308 | assert(0 && "could not ready string"); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14309 | fprintf(stderr, "could not ready string\n"); |
Victor Stinner | 6b56a7f | 2011-10-04 20:04:52 +0200 | [diff] [blame] | 14310 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14311 | switch (PyUnicode_CHECK_INTERNED(s)) { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14312 | case SSTATE_NOT_INTERNED: |
| 14313 | /* XXX Shouldn't happen */ |
| 14314 | break; |
| 14315 | case SSTATE_INTERNED_IMMORTAL: |
| 14316 | Py_REFCNT(s) += 1; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14317 | immortal_size += PyUnicode_GET_LENGTH(s); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14318 | break; |
| 14319 | case SSTATE_INTERNED_MORTAL: |
| 14320 | Py_REFCNT(s) += 2; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14321 | mortal_size += PyUnicode_GET_LENGTH(s); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14322 | break; |
| 14323 | default: |
| 14324 | Py_FatalError("Inconsistent interned string state."); |
| 14325 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14326 | _PyUnicode_STATE(s).interned = SSTATE_NOT_INTERNED; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14327 | } |
| 14328 | fprintf(stderr, "total size of all interned strings: " |
| 14329 | "%" PY_FORMAT_SIZE_T "d/%" PY_FORMAT_SIZE_T "d " |
| 14330 | "mortal/immortal\n", mortal_size, immortal_size); |
| 14331 | Py_DECREF(keys); |
| 14332 | PyDict_Clear(interned); |
Serhiy Storchaka | 0599725 | 2013-01-26 12:14:02 +0200 | [diff] [blame] | 14333 | Py_CLEAR(interned); |
Walter Dörwald | 1680713 | 2007-05-25 13:52:07 +0000 | [diff] [blame] | 14334 | } |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14335 | |
| 14336 | |
| 14337 | /********************* Unicode Iterator **************************/ |
| 14338 | |
| 14339 | typedef struct { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14340 | PyObject_HEAD |
| 14341 | Py_ssize_t it_index; |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14342 | PyObject *it_seq; /* Set to NULL when iterator is exhausted */ |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14343 | } unicodeiterobject; |
| 14344 | |
| 14345 | static void |
| 14346 | unicodeiter_dealloc(unicodeiterobject *it) |
| 14347 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14348 | _PyObject_GC_UNTRACK(it); |
| 14349 | Py_XDECREF(it->it_seq); |
| 14350 | PyObject_GC_Del(it); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14351 | } |
| 14352 | |
| 14353 | static int |
| 14354 | unicodeiter_traverse(unicodeiterobject *it, visitproc visit, void *arg) |
| 14355 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14356 | Py_VISIT(it->it_seq); |
| 14357 | return 0; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14358 | } |
| 14359 | |
| 14360 | static PyObject * |
| 14361 | unicodeiter_next(unicodeiterobject *it) |
| 14362 | { |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14363 | PyObject *seq, *item; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14364 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14365 | assert(it != NULL); |
| 14366 | seq = it->it_seq; |
| 14367 | if (seq == NULL) |
| 14368 | return NULL; |
Victor Stinner | 910337b | 2011-10-03 03:20:16 +0200 | [diff] [blame] | 14369 | assert(_PyUnicode_CHECK(seq)); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14370 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14371 | if (it->it_index < PyUnicode_GET_LENGTH(seq)) { |
| 14372 | int kind = PyUnicode_KIND(seq); |
| 14373 | void *data = PyUnicode_DATA(seq); |
| 14374 | Py_UCS4 chr = PyUnicode_READ(kind, data, it->it_index); |
| 14375 | item = PyUnicode_FromOrdinal(chr); |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14376 | if (item != NULL) |
| 14377 | ++it->it_index; |
| 14378 | return item; |
| 14379 | } |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14380 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14381 | Py_DECREF(seq); |
| 14382 | it->it_seq = NULL; |
| 14383 | return NULL; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14384 | } |
| 14385 | |
| 14386 | static PyObject * |
| 14387 | unicodeiter_len(unicodeiterobject *it) |
| 14388 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14389 | Py_ssize_t len = 0; |
| 14390 | if (it->it_seq) |
Victor Stinner | c4f281e | 2011-10-11 22:11:42 +0200 | [diff] [blame] | 14391 | len = PyUnicode_GET_LENGTH(it->it_seq) - it->it_index; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14392 | return PyLong_FromSsize_t(len); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14393 | } |
| 14394 | |
| 14395 | PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it))."); |
| 14396 | |
Kristján Valur Jónsson | 31668b8 | 2012-04-03 10:49:41 +0000 | [diff] [blame] | 14397 | static PyObject * |
| 14398 | unicodeiter_reduce(unicodeiterobject *it) |
| 14399 | { |
| 14400 | if (it->it_seq != NULL) { |
Antoine Pitrou | a701388 | 2012-04-05 00:04:20 +0200 | [diff] [blame] | 14401 | return Py_BuildValue("N(O)n", _PyObject_GetBuiltin("iter"), |
Kristján Valur Jónsson | 31668b8 | 2012-04-03 10:49:41 +0000 | [diff] [blame] | 14402 | it->it_seq, it->it_index); |
| 14403 | } else { |
| 14404 | PyObject *u = PyUnicode_FromUnicode(NULL, 0); |
| 14405 | if (u == NULL) |
| 14406 | return NULL; |
Antoine Pitrou | a701388 | 2012-04-05 00:04:20 +0200 | [diff] [blame] | 14407 | return Py_BuildValue("N(N)", _PyObject_GetBuiltin("iter"), u); |
Kristján Valur Jónsson | 31668b8 | 2012-04-03 10:49:41 +0000 | [diff] [blame] | 14408 | } |
| 14409 | } |
| 14410 | |
| 14411 | PyDoc_STRVAR(reduce_doc, "Return state information for pickling."); |
| 14412 | |
| 14413 | static PyObject * |
| 14414 | unicodeiter_setstate(unicodeiterobject *it, PyObject *state) |
| 14415 | { |
| 14416 | Py_ssize_t index = PyLong_AsSsize_t(state); |
| 14417 | if (index == -1 && PyErr_Occurred()) |
| 14418 | return NULL; |
| 14419 | if (index < 0) |
| 14420 | index = 0; |
| 14421 | it->it_index = index; |
| 14422 | Py_RETURN_NONE; |
| 14423 | } |
| 14424 | |
| 14425 | PyDoc_STRVAR(setstate_doc, "Set state information for unpickling."); |
| 14426 | |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14427 | static PyMethodDef unicodeiter_methods[] = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14428 | {"__length_hint__", (PyCFunction)unicodeiter_len, METH_NOARGS, |
Benjamin Peterson | 2906064 | 2009-01-31 22:14:21 +0000 | [diff] [blame] | 14429 | length_hint_doc}, |
Kristján Valur Jónsson | 31668b8 | 2012-04-03 10:49:41 +0000 | [diff] [blame] | 14430 | {"__reduce__", (PyCFunction)unicodeiter_reduce, METH_NOARGS, |
| 14431 | reduce_doc}, |
| 14432 | {"__setstate__", (PyCFunction)unicodeiter_setstate, METH_O, |
| 14433 | setstate_doc}, |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14434 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14435 | }; |
| 14436 | |
| 14437 | PyTypeObject PyUnicodeIter_Type = { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14438 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 14439 | "str_iterator", /* tp_name */ |
| 14440 | sizeof(unicodeiterobject), /* tp_basicsize */ |
| 14441 | 0, /* tp_itemsize */ |
| 14442 | /* methods */ |
| 14443 | (destructor)unicodeiter_dealloc, /* tp_dealloc */ |
| 14444 | 0, /* tp_print */ |
| 14445 | 0, /* tp_getattr */ |
| 14446 | 0, /* tp_setattr */ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 14447 | 0, /* tp_reserved */ |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14448 | 0, /* tp_repr */ |
| 14449 | 0, /* tp_as_number */ |
| 14450 | 0, /* tp_as_sequence */ |
| 14451 | 0, /* tp_as_mapping */ |
| 14452 | 0, /* tp_hash */ |
| 14453 | 0, /* tp_call */ |
| 14454 | 0, /* tp_str */ |
| 14455 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 14456 | 0, /* tp_setattro */ |
| 14457 | 0, /* tp_as_buffer */ |
| 14458 | Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ |
| 14459 | 0, /* tp_doc */ |
| 14460 | (traverseproc)unicodeiter_traverse, /* tp_traverse */ |
| 14461 | 0, /* tp_clear */ |
| 14462 | 0, /* tp_richcompare */ |
| 14463 | 0, /* tp_weaklistoffset */ |
| 14464 | PyObject_SelfIter, /* tp_iter */ |
| 14465 | (iternextfunc)unicodeiter_next, /* tp_iternext */ |
| 14466 | unicodeiter_methods, /* tp_methods */ |
| 14467 | 0, |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14468 | }; |
| 14469 | |
| 14470 | static PyObject * |
| 14471 | unicode_iter(PyObject *seq) |
| 14472 | { |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14473 | unicodeiterobject *it; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14474 | |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14475 | if (!PyUnicode_Check(seq)) { |
| 14476 | PyErr_BadInternalCall(); |
| 14477 | return NULL; |
| 14478 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14479 | if (PyUnicode_READY(seq) == -1) |
| 14480 | return NULL; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14481 | it = PyObject_GC_New(unicodeiterobject, &PyUnicodeIter_Type); |
| 14482 | if (it == NULL) |
| 14483 | return NULL; |
| 14484 | it->it_index = 0; |
| 14485 | Py_INCREF(seq); |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14486 | it->it_seq = seq; |
Benjamin Peterson | 14339b6 | 2009-01-31 16:36:08 +0000 | [diff] [blame] | 14487 | _PyObject_GC_TRACK(it); |
| 14488 | return (PyObject *)it; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 14489 | } |
| 14490 | |
Martin v. Löwis | 0d3072e | 2011-10-31 08:40:56 +0100 | [diff] [blame] | 14491 | |
| 14492 | size_t |
| 14493 | Py_UNICODE_strlen(const Py_UNICODE *u) |
| 14494 | { |
| 14495 | int res = 0; |
| 14496 | while(*u++) |
| 14497 | res++; |
| 14498 | return res; |
| 14499 | } |
| 14500 | |
| 14501 | Py_UNICODE* |
| 14502 | Py_UNICODE_strcpy(Py_UNICODE *s1, const Py_UNICODE *s2) |
| 14503 | { |
| 14504 | Py_UNICODE *u = s1; |
| 14505 | while ((*u++ = *s2++)); |
| 14506 | return s1; |
| 14507 | } |
| 14508 | |
| 14509 | Py_UNICODE* |
| 14510 | Py_UNICODE_strncpy(Py_UNICODE *s1, const Py_UNICODE *s2, size_t n) |
| 14511 | { |
| 14512 | Py_UNICODE *u = s1; |
| 14513 | while ((*u++ = *s2++)) |
| 14514 | if (n-- == 0) |
| 14515 | break; |
| 14516 | return s1; |
| 14517 | } |
| 14518 | |
| 14519 | Py_UNICODE* |
| 14520 | Py_UNICODE_strcat(Py_UNICODE *s1, const Py_UNICODE *s2) |
| 14521 | { |
| 14522 | Py_UNICODE *u1 = s1; |
| 14523 | u1 += Py_UNICODE_strlen(u1); |
| 14524 | Py_UNICODE_strcpy(u1, s2); |
| 14525 | return s1; |
| 14526 | } |
| 14527 | |
| 14528 | int |
| 14529 | Py_UNICODE_strcmp(const Py_UNICODE *s1, const Py_UNICODE *s2) |
| 14530 | { |
| 14531 | while (*s1 && *s2 && *s1 == *s2) |
| 14532 | s1++, s2++; |
| 14533 | if (*s1 && *s2) |
| 14534 | return (*s1 < *s2) ? -1 : +1; |
| 14535 | if (*s1) |
| 14536 | return 1; |
| 14537 | if (*s2) |
| 14538 | return -1; |
| 14539 | return 0; |
| 14540 | } |
| 14541 | |
| 14542 | int |
| 14543 | Py_UNICODE_strncmp(const Py_UNICODE *s1, const Py_UNICODE *s2, size_t n) |
| 14544 | { |
| 14545 | register Py_UNICODE u1, u2; |
| 14546 | for (; n != 0; n--) { |
| 14547 | u1 = *s1; |
| 14548 | u2 = *s2; |
| 14549 | if (u1 != u2) |
| 14550 | return (u1 < u2) ? -1 : +1; |
| 14551 | if (u1 == '\0') |
| 14552 | return 0; |
| 14553 | s1++; |
| 14554 | s2++; |
| 14555 | } |
| 14556 | return 0; |
| 14557 | } |
| 14558 | |
| 14559 | Py_UNICODE* |
| 14560 | Py_UNICODE_strchr(const Py_UNICODE *s, Py_UNICODE c) |
| 14561 | { |
| 14562 | const Py_UNICODE *p; |
| 14563 | for (p = s; *p; p++) |
| 14564 | if (*p == c) |
| 14565 | return (Py_UNICODE*)p; |
| 14566 | return NULL; |
| 14567 | } |
| 14568 | |
| 14569 | Py_UNICODE* |
| 14570 | Py_UNICODE_strrchr(const Py_UNICODE *s, Py_UNICODE c) |
| 14571 | { |
| 14572 | const Py_UNICODE *p; |
| 14573 | p = s + Py_UNICODE_strlen(s); |
| 14574 | while (p != s) { |
| 14575 | p--; |
| 14576 | if (*p == c) |
| 14577 | return (Py_UNICODE*)p; |
| 14578 | } |
| 14579 | return NULL; |
| 14580 | } |
Victor Stinner | 331ea92 | 2010-08-10 16:37:20 +0000 | [diff] [blame] | 14581 | |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14582 | Py_UNICODE* |
Victor Stinner | 9db1a8b | 2011-10-23 20:04:37 +0200 | [diff] [blame] | 14583 | PyUnicode_AsUnicodeCopy(PyObject *unicode) |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14584 | { |
Victor Stinner | 577db2c | 2011-10-11 22:12:48 +0200 | [diff] [blame] | 14585 | Py_UNICODE *u, *copy; |
Victor Stinner | 57ffa9d | 2011-10-23 20:10:08 +0200 | [diff] [blame] | 14586 | Py_ssize_t len, size; |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14587 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 14588 | if (!PyUnicode_Check(unicode)) { |
| 14589 | PyErr_BadArgument(); |
| 14590 | return NULL; |
| 14591 | } |
Victor Stinner | 57ffa9d | 2011-10-23 20:10:08 +0200 | [diff] [blame] | 14592 | u = PyUnicode_AsUnicodeAndSize(unicode, &len); |
Victor Stinner | 577db2c | 2011-10-11 22:12:48 +0200 | [diff] [blame] | 14593 | if (u == NULL) |
| 14594 | return NULL; |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14595 | /* Ensure we won't overflow the size. */ |
Victor Stinner | 57ffa9d | 2011-10-23 20:10:08 +0200 | [diff] [blame] | 14596 | if (len > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) { |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14597 | PyErr_NoMemory(); |
| 14598 | return NULL; |
| 14599 | } |
Victor Stinner | 57ffa9d | 2011-10-23 20:10:08 +0200 | [diff] [blame] | 14600 | size = len + 1; /* copy the null character */ |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14601 | size *= sizeof(Py_UNICODE); |
| 14602 | copy = PyMem_Malloc(size); |
| 14603 | if (copy == NULL) { |
| 14604 | PyErr_NoMemory(); |
| 14605 | return NULL; |
| 14606 | } |
Victor Stinner | 577db2c | 2011-10-11 22:12:48 +0200 | [diff] [blame] | 14607 | memcpy(copy, u, size); |
Victor Stinner | 71133ff | 2010-09-01 23:43:53 +0000 | [diff] [blame] | 14608 | return copy; |
| 14609 | } |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 14610 | |
Georg Brandl | 66c221e | 2010-10-14 07:04:07 +0000 | [diff] [blame] | 14611 | /* A _string module, to export formatter_parser and formatter_field_name_split |
| 14612 | to the string.Formatter class implemented in Python. */ |
| 14613 | |
| 14614 | static PyMethodDef _string_methods[] = { |
| 14615 | {"formatter_field_name_split", (PyCFunction) formatter_field_name_split, |
| 14616 | METH_O, PyDoc_STR("split the argument as a field name")}, |
| 14617 | {"formatter_parser", (PyCFunction) formatter_parser, |
| 14618 | METH_O, PyDoc_STR("parse the argument as a format string")}, |
| 14619 | {NULL, NULL} |
| 14620 | }; |
| 14621 | |
| 14622 | static struct PyModuleDef _string_module = { |
| 14623 | PyModuleDef_HEAD_INIT, |
| 14624 | "_string", |
| 14625 | PyDoc_STR("string helper module"), |
| 14626 | 0, |
| 14627 | _string_methods, |
| 14628 | NULL, |
| 14629 | NULL, |
| 14630 | NULL, |
| 14631 | NULL |
| 14632 | }; |
| 14633 | |
| 14634 | PyMODINIT_FUNC |
| 14635 | PyInit__string(void) |
| 14636 | { |
| 14637 | return PyModule_Create(&_string_module); |
| 14638 | } |
| 14639 | |
| 14640 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 14641 | #ifdef __cplusplus |
| 14642 | } |
| 14643 | #endif |