blob: 6c8fe2d865b0f8459b1f4b08175325f525d238e0 [file] [log] [blame]
Tim Petersced69f82003-09-16 20:30:58 +00001/*
Guido van Rossumd57fd912000-03-10 22:53:23 +00002
3Unicode implementation based on original code by Fredrik Lundh,
Benjamin Peterson31616ea2011-10-01 00:11:09 -04004modified by Marc-Andre Lemburg <mal@lemburg.com>.
Guido van Rossumd57fd912000-03-10 22:53:23 +00005
Thomas Wouters477c8d52006-05-27 19:21:47 +00006Major speed upgrades to the method implementations at the Reykjavik
7NeedForSpeed sprint, by Fredrik Lundh and Andrew Dalke.
8
Guido van Rossum16b1ad92000-08-03 16:24:25 +00009Copyright (c) Corporation for National Research Initiatives.
Guido van Rossumd57fd912000-03-10 22:53:23 +000010
Fredrik Lundh0fdb90c2001-01-19 09:45:02 +000011--------------------------------------------------------------------
12The original string type implementation is:
Guido van Rossumd57fd912000-03-10 22:53:23 +000013
Benjamin Peterson29060642009-01-31 22:14:21 +000014 Copyright (c) 1999 by Secret Labs AB
15 Copyright (c) 1999 by Fredrik Lundh
Guido van Rossumd57fd912000-03-10 22:53:23 +000016
Fredrik Lundh0fdb90c2001-01-19 09:45:02 +000017By obtaining, using, and/or copying this software and/or its
18associated documentation, you agree that you have read, understood,
19and will comply with the following terms and conditions:
20
21Permission to use, copy, modify, and distribute this software and its
22associated documentation for any purpose and without fee is hereby
23granted, provided that the above copyright notice appears in all
24copies, and that both that copyright notice and this permission notice
25appear in supporting documentation, and that the name of Secret Labs
26AB or the author not be used in advertising or publicity pertaining to
27distribution of the software without specific, written prior
28permission.
29
30SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO
31THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
32FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR
33ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
34WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
35ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
36OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
37--------------------------------------------------------------------
38
39*/
Guido van Rossumd57fd912000-03-10 22:53:23 +000040
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000041#define PY_SSIZE_T_CLEAN
Guido van Rossumd57fd912000-03-10 22:53:23 +000042#include "Python.h"
Marc-André Lemburgd49e5b42000-06-30 14:58:20 +000043#include "ucnhash.h"
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -050044#include "bytes_methods.h"
Guido van Rossumd57fd912000-03-10 22:53:23 +000045
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000046#ifdef MS_WINDOWS
Guido van Rossumb7a40ba2000-03-28 02:01:52 +000047#include <windows.h>
48#endif
Guido van Rossumfd4b9572000-04-10 13:51:10 +000049
Guido van Rossumd57fd912000-03-10 22:53:23 +000050/* 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é Lemburgd4ab4a52000-06-08 17:54:00 +000058/* --- Globals ------------------------------------------------------------
59
60 The globals are initialized by the _PyUnicode_Init() API and should
61 not be used before calling that API.
62
63*/
Guido van Rossumd57fd912000-03-10 22:53:23 +000064
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000065
66#ifdef __cplusplus
67extern "C" {
68#endif
69
Victor Stinner8faf8212011-12-08 22:14:11 +010070/* Maximum code point of Unicode 6.0: 0x10ffff (1,114,111) */
71#define MAX_UNICODE 0x10ffff
72
Victor Stinner910337b2011-10-03 03:20:16 +020073#ifdef Py_DEBUG
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020074# define _PyUnicode_CHECK(op) _PyUnicode_CheckConsistency(op, 0)
Victor Stinner910337b2011-10-03 03:20:16 +020075#else
76# define _PyUnicode_CHECK(op) PyUnicode_Check(op)
77#endif
Victor Stinnerfb5f5f22011-09-28 21:39:49 +020078
Victor Stinnere90fe6a2011-10-01 16:48:13 +020079#define _PyUnicode_UTF8(op) \
80 (((PyCompactUnicodeObject*)(op))->utf8)
81#define PyUnicode_UTF8(op) \
Victor Stinner910337b2011-10-03 03:20:16 +020082 (assert(_PyUnicode_CHECK(op)), \
Victor Stinnere90fe6a2011-10-01 16:48:13 +020083 assert(PyUnicode_IS_READY(op)), \
84 PyUnicode_IS_COMPACT_ASCII(op) ? \
85 ((char*)((PyASCIIObject*)(op) + 1)) : \
86 _PyUnicode_UTF8(op))
Victor Stinnerbc8b81b2011-09-29 19:31:34 +020087#define _PyUnicode_UTF8_LENGTH(op) \
Victor Stinnere90fe6a2011-10-01 16:48:13 +020088 (((PyCompactUnicodeObject*)(op))->utf8_length)
89#define PyUnicode_UTF8_LENGTH(op) \
Victor Stinner910337b2011-10-03 03:20:16 +020090 (assert(_PyUnicode_CHECK(op)), \
Victor Stinnere90fe6a2011-10-01 16:48:13 +020091 assert(PyUnicode_IS_READY(op)), \
92 PyUnicode_IS_COMPACT_ASCII(op) ? \
93 ((PyASCIIObject*)(op))->length : \
94 _PyUnicode_UTF8_LENGTH(op))
Victor Stinnera5f91632011-10-04 01:07:11 +020095#define _PyUnicode_WSTR(op) \
96 (((PyASCIIObject*)(op))->wstr)
97#define _PyUnicode_WSTR_LENGTH(op) \
98 (((PyCompactUnicodeObject*)(op))->wstr_length)
99#define _PyUnicode_LENGTH(op) \
100 (((PyASCIIObject *)(op))->length)
101#define _PyUnicode_STATE(op) \
102 (((PyASCIIObject *)(op))->state)
103#define _PyUnicode_HASH(op) \
104 (((PyASCIIObject *)(op))->hash)
Victor Stinner910337b2011-10-03 03:20:16 +0200105#define _PyUnicode_KIND(op) \
106 (assert(_PyUnicode_CHECK(op)), \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200107 ((PyASCIIObject *)(op))->state.kind)
Victor Stinner910337b2011-10-03 03:20:16 +0200108#define _PyUnicode_GET_LENGTH(op) \
109 (assert(_PyUnicode_CHECK(op)), \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200110 ((PyASCIIObject *)(op))->length)
Victor Stinnera5f91632011-10-04 01:07:11 +0200111#define _PyUnicode_DATA_ANY(op) \
112 (((PyUnicodeObject*)(op))->data.any)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200113
Victor Stinnere6abb482012-05-02 01:15:40 +0200114/* Optimized version of Py_MAX() to compute the maximum character:
115 use it when your are computing the second argument of PyUnicode_New() */
116#define MAX_MAXCHAR(maxchar1, maxchar2) \
117 ((maxchar1) | (maxchar2))
118
Victor Stinner910337b2011-10-03 03:20:16 +0200119#undef PyUnicode_READY
120#define PyUnicode_READY(op) \
121 (assert(_PyUnicode_CHECK(op)), \
122 (PyUnicode_IS_READY(op) ? \
Victor Stinnera5f91632011-10-04 01:07:11 +0200123 0 : \
Victor Stinner7931d9a2011-11-04 00:22:48 +0100124 _PyUnicode_Ready(op)))
Victor Stinner910337b2011-10-03 03:20:16 +0200125
Victor Stinnerc379ead2011-10-03 12:52:27 +0200126#define _PyUnicode_SHARE_UTF8(op) \
127 (assert(_PyUnicode_CHECK(op)), \
128 assert(!PyUnicode_IS_COMPACT_ASCII(op)), \
129 (_PyUnicode_UTF8(op) == PyUnicode_DATA(op)))
130#define _PyUnicode_SHARE_WSTR(op) \
131 (assert(_PyUnicode_CHECK(op)), \
132 (_PyUnicode_WSTR(unicode) == PyUnicode_DATA(op)))
133
Victor Stinner829c0ad2011-10-03 01:08:02 +0200134/* true if the Unicode object has an allocated UTF-8 memory block
135 (not shared with other data) */
Victor Stinner910337b2011-10-03 03:20:16 +0200136#define _PyUnicode_HAS_UTF8_MEMORY(op) \
137 (assert(_PyUnicode_CHECK(op)), \
138 (!PyUnicode_IS_COMPACT_ASCII(op) \
139 && _PyUnicode_UTF8(op) \
Victor Stinner829c0ad2011-10-03 01:08:02 +0200140 && _PyUnicode_UTF8(op) != PyUnicode_DATA(op)))
141
Victor Stinner03490912011-10-03 23:45:12 +0200142/* true if the Unicode object has an allocated wstr memory block
143 (not shared with other data) */
144#define _PyUnicode_HAS_WSTR_MEMORY(op) \
145 (assert(_PyUnicode_CHECK(op)), \
146 (_PyUnicode_WSTR(op) && \
147 (!PyUnicode_IS_READY(op) || \
148 _PyUnicode_WSTR(op) != PyUnicode_DATA(op))))
149
Victor Stinner910337b2011-10-03 03:20:16 +0200150/* Generic helper macro to convert characters of different types.
151 from_type and to_type have to be valid type names, begin and end
152 are pointers to the source characters which should be of type
153 "from_type *". to is a pointer of type "to_type *" and points to the
154 buffer where the result characters are written to. */
155#define _PyUnicode_CONVERT_BYTES(from_type, to_type, begin, end, to) \
156 do { \
Antoine Pitroue459a082011-10-11 20:58:41 +0200157 to_type *_to = (to_type *) to; \
158 const from_type *_iter = (begin); \
159 const from_type *_end = (end); \
160 Py_ssize_t n = (_end) - (_iter); \
161 const from_type *_unrolled_end = \
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +0200162 _iter + _Py_SIZE_ROUND_DOWN(n, 4); \
Antoine Pitroue459a082011-10-11 20:58:41 +0200163 while (_iter < (_unrolled_end)) { \
164 _to[0] = (to_type) _iter[0]; \
165 _to[1] = (to_type) _iter[1]; \
166 _to[2] = (to_type) _iter[2]; \
167 _to[3] = (to_type) _iter[3]; \
168 _iter += 4; _to += 4; \
Victor Stinner910337b2011-10-03 03:20:16 +0200169 } \
Antoine Pitroue459a082011-10-11 20:58:41 +0200170 while (_iter < (_end)) \
171 *_to++ = (to_type) *_iter++; \
Victor Stinner910337b2011-10-03 03:20:16 +0200172 } while (0)
Victor Stinner829c0ad2011-10-03 01:08:02 +0200173
Walter Dörwald16807132007-05-25 13:52:07 +0000174/* This dictionary holds all interned unicode strings. Note that references
175 to strings in this dictionary are *not* counted in the string's ob_refcnt.
176 When the interned string reaches a refcnt of 0 the string deallocation
177 function will delete the reference from this dictionary.
178
179 Another way to look at this is that to say that the actual reference
Guido van Rossum98297ee2007-11-06 21:34:58 +0000180 count of a string is: s->ob_refcnt + (s->state ? 2 : 0)
Walter Dörwald16807132007-05-25 13:52:07 +0000181*/
182static PyObject *interned;
183
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000184/* The empty Unicode object is shared to improve performance. */
Victor Stinnera464fc12011-10-02 20:39:30 +0200185static PyObject *unicode_empty;
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000186
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200187/* List of static strings. */
188static _Py_Identifier *static_strings;
189
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000190/* Single character Unicode strings in the Latin-1 range are being
191 shared as well. */
Victor Stinnera464fc12011-10-02 20:39:30 +0200192static PyObject *unicode_latin1[256];
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000193
Christian Heimes190d79e2008-01-30 11:58:22 +0000194/* Fast detection of the most frequent whitespace characters */
195const unsigned char _Py_ascii_whitespace[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +0000196 0, 0, 0, 0, 0, 0, 0, 0,
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000197/* case 0x0009: * CHARACTER TABULATION */
Christian Heimes1a8501c2008-10-02 19:56:01 +0000198/* case 0x000A: * LINE FEED */
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000199/* case 0x000B: * LINE TABULATION */
Christian Heimes1a8501c2008-10-02 19:56:01 +0000200/* case 0x000C: * FORM FEED */
201/* case 0x000D: * CARRIAGE RETURN */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000202 0, 1, 1, 1, 1, 1, 0, 0,
203 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000204/* case 0x001C: * FILE SEPARATOR */
205/* case 0x001D: * GROUP SEPARATOR */
206/* case 0x001E: * RECORD SEPARATOR */
207/* case 0x001F: * UNIT SEPARATOR */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000208 0, 0, 0, 0, 1, 1, 1, 1,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000209/* case 0x0020: * SPACE */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000210 1, 0, 0, 0, 0, 0, 0, 0,
211 0, 0, 0, 0, 0, 0, 0, 0,
212 0, 0, 0, 0, 0, 0, 0, 0,
213 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes190d79e2008-01-30 11:58:22 +0000214
Benjamin Peterson14339b62009-01-31 16:36:08 +0000215 0, 0, 0, 0, 0, 0, 0, 0,
216 0, 0, 0, 0, 0, 0, 0, 0,
217 0, 0, 0, 0, 0, 0, 0, 0,
218 0, 0, 0, 0, 0, 0, 0, 0,
219 0, 0, 0, 0, 0, 0, 0, 0,
220 0, 0, 0, 0, 0, 0, 0, 0,
221 0, 0, 0, 0, 0, 0, 0, 0,
222 0, 0, 0, 0, 0, 0, 0, 0
Christian Heimes190d79e2008-01-30 11:58:22 +0000223};
224
Victor Stinner1b4f9ce2011-10-03 13:28:14 +0200225/* forward */
Victor Stinnerfe226c02011-10-03 03:52:20 +0200226static PyUnicodeObject *_PyUnicode_New(Py_ssize_t length);
Victor Stinner1b4f9ce2011-10-03 13:28:14 +0200227static PyObject* get_latin1_char(unsigned char ch);
Victor Stinner488fa492011-12-12 00:01:39 +0100228static int unicode_modifiable(PyObject *unicode);
229
Victor Stinnerfe226c02011-10-03 03:52:20 +0200230
Alexander Belopolsky40018472011-02-26 01:02:56 +0000231static PyObject *
Antoine Pitroudd4e2f02011-10-13 00:02:27 +0200232_PyUnicode_FromUCS1(const unsigned char *s, Py_ssize_t size);
233static PyObject *
234_PyUnicode_FromUCS2(const Py_UCS2 *s, Py_ssize_t size);
235static PyObject *
236_PyUnicode_FromUCS4(const Py_UCS4 *s, Py_ssize_t size);
237
238static PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +0000239unicode_encode_call_errorhandler(const char *errors,
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000240 PyObject **errorHandler,const char *encoding, const char *reason,
Martin v. Löwis23e275b2011-11-02 18:02:51 +0100241 PyObject *unicode, PyObject **exceptionObject,
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000242 Py_ssize_t startpos, Py_ssize_t endpos, Py_ssize_t *newpos);
243
Alexander Belopolsky40018472011-02-26 01:02:56 +0000244static void
245raise_encode_exception(PyObject **exceptionObject,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +0300246 const char *encoding,
Martin v. Löwis9e816682011-11-02 12:45:42 +0100247 PyObject *unicode,
248 Py_ssize_t startpos, Py_ssize_t endpos,
249 const char *reason);
Victor Stinner31be90b2010-04-22 19:38:16 +0000250
Christian Heimes190d79e2008-01-30 11:58:22 +0000251/* Same for linebreaks */
252static unsigned char ascii_linebreak[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +0000253 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000254/* 0x000A, * LINE FEED */
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000255/* 0x000B, * LINE TABULATION */
256/* 0x000C, * FORM FEED */
Christian Heimes1a8501c2008-10-02 19:56:01 +0000257/* 0x000D, * CARRIAGE RETURN */
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000258 0, 0, 1, 1, 1, 1, 0, 0,
Benjamin Peterson14339b62009-01-31 16:36:08 +0000259 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000260/* 0x001C, * FILE SEPARATOR */
261/* 0x001D, * GROUP SEPARATOR */
262/* 0x001E, * RECORD SEPARATOR */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000263 0, 0, 0, 0, 1, 1, 1, 0,
264 0, 0, 0, 0, 0, 0, 0, 0,
265 0, 0, 0, 0, 0, 0, 0, 0,
266 0, 0, 0, 0, 0, 0, 0, 0,
267 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes190d79e2008-01-30 11:58:22 +0000268
Benjamin Peterson14339b62009-01-31 16:36:08 +0000269 0, 0, 0, 0, 0, 0, 0, 0,
270 0, 0, 0, 0, 0, 0, 0, 0,
271 0, 0, 0, 0, 0, 0, 0, 0,
272 0, 0, 0, 0, 0, 0, 0, 0,
273 0, 0, 0, 0, 0, 0, 0, 0,
274 0, 0, 0, 0, 0, 0, 0, 0,
275 0, 0, 0, 0, 0, 0, 0, 0,
276 0, 0, 0, 0, 0, 0, 0, 0
Christian Heimes190d79e2008-01-30 11:58:22 +0000277};
278
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300279/* The max unicode value is always 0x10FFFF while using the PEP-393 API.
280 This function is kept for backward compatibility with the old API. */
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000281Py_UNICODE
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +0000282PyUnicode_GetMax(void)
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000283{
Fredrik Lundh8f455852001-06-27 18:59:43 +0000284#ifdef Py_UNICODE_WIDE
Benjamin Peterson14339b62009-01-31 16:36:08 +0000285 return 0x10FFFF;
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000286#else
Benjamin Peterson14339b62009-01-31 16:36:08 +0000287 /* This is actually an illegal character, so it should
288 not be passed to unichr. */
289 return 0xFFFF;
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000290#endif
291}
292
Victor Stinner910337b2011-10-03 03:20:16 +0200293#ifdef Py_DEBUG
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +0200294int
Victor Stinner7931d9a2011-11-04 00:22:48 +0100295_PyUnicode_CheckConsistency(PyObject *op, int check_content)
Victor Stinner910337b2011-10-03 03:20:16 +0200296{
297 PyASCIIObject *ascii;
298 unsigned int kind;
299
300 assert(PyUnicode_Check(op));
301
302 ascii = (PyASCIIObject *)op;
303 kind = ascii->state.kind;
304
Victor Stinnera3b334d2011-10-03 13:53:37 +0200305 if (ascii->state.ascii == 1 && ascii->state.compact == 1) {
Victor Stinner910337b2011-10-03 03:20:16 +0200306 assert(kind == PyUnicode_1BYTE_KIND);
Victor Stinner910337b2011-10-03 03:20:16 +0200307 assert(ascii->state.ready == 1);
308 }
Victor Stinnera41463c2011-10-04 01:05:08 +0200309 else {
Victor Stinner85041a52011-10-03 14:42:39 +0200310 PyCompactUnicodeObject *compact = (PyCompactUnicodeObject *)op;
Victor Stinner7f11ad42011-10-04 00:00:20 +0200311 void *data;
Victor Stinner910337b2011-10-03 03:20:16 +0200312
Victor Stinnera41463c2011-10-04 01:05:08 +0200313 if (ascii->state.compact == 1) {
314 data = compact + 1;
Victor Stinner910337b2011-10-03 03:20:16 +0200315 assert(kind == PyUnicode_1BYTE_KIND
316 || kind == PyUnicode_2BYTE_KIND
317 || kind == PyUnicode_4BYTE_KIND);
Victor Stinnera41463c2011-10-04 01:05:08 +0200318 assert(ascii->state.ascii == 0);
Victor Stinner910337b2011-10-03 03:20:16 +0200319 assert(ascii->state.ready == 1);
Victor Stinnera41463c2011-10-04 01:05:08 +0200320 assert (compact->utf8 != data);
Victor Stinnere30c0a12011-11-04 20:54:05 +0100321 }
322 else {
Victor Stinnera41463c2011-10-04 01:05:08 +0200323 PyUnicodeObject *unicode = (PyUnicodeObject *)op;
324
325 data = unicode->data.any;
326 if (kind == PyUnicode_WCHAR_KIND) {
Victor Stinnere30c0a12011-11-04 20:54:05 +0100327 assert(ascii->length == 0);
328 assert(ascii->hash == -1);
Victor Stinnera41463c2011-10-04 01:05:08 +0200329 assert(ascii->state.compact == 0);
330 assert(ascii->state.ascii == 0);
331 assert(ascii->state.ready == 0);
Victor Stinnere30c0a12011-11-04 20:54:05 +0100332 assert(ascii->state.interned == SSTATE_NOT_INTERNED);
Victor Stinnera41463c2011-10-04 01:05:08 +0200333 assert(ascii->wstr != NULL);
334 assert(data == NULL);
335 assert(compact->utf8 == NULL);
Victor Stinnera41463c2011-10-04 01:05:08 +0200336 }
337 else {
338 assert(kind == PyUnicode_1BYTE_KIND
339 || kind == PyUnicode_2BYTE_KIND
340 || kind == PyUnicode_4BYTE_KIND);
341 assert(ascii->state.compact == 0);
342 assert(ascii->state.ready == 1);
343 assert(data != NULL);
344 if (ascii->state.ascii) {
345 assert (compact->utf8 == data);
346 assert (compact->utf8_length == ascii->length);
347 }
348 else
349 assert (compact->utf8 != data);
350 }
351 }
352 if (kind != PyUnicode_WCHAR_KIND) {
Victor Stinner7f11ad42011-10-04 00:00:20 +0200353 if (
354#if SIZEOF_WCHAR_T == 2
355 kind == PyUnicode_2BYTE_KIND
356#else
357 kind == PyUnicode_4BYTE_KIND
358#endif
359 )
Victor Stinnera41463c2011-10-04 01:05:08 +0200360 {
361 assert(ascii->wstr == data);
362 assert(compact->wstr_length == ascii->length);
363 } else
364 assert(ascii->wstr != data);
Victor Stinner910337b2011-10-03 03:20:16 +0200365 }
Victor Stinnera41463c2011-10-04 01:05:08 +0200366
367 if (compact->utf8 == NULL)
368 assert(compact->utf8_length == 0);
369 if (ascii->wstr == NULL)
370 assert(compact->wstr_length == 0);
Victor Stinner910337b2011-10-03 03:20:16 +0200371 }
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200372 /* check that the best kind is used */
373 if (check_content && kind != PyUnicode_WCHAR_KIND)
374 {
375 Py_ssize_t i;
376 Py_UCS4 maxchar = 0;
Victor Stinner718fbf02012-04-26 00:39:37 +0200377 void *data;
378 Py_UCS4 ch;
379
380 data = PyUnicode_DATA(ascii);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200381 for (i=0; i < ascii->length; i++)
382 {
Victor Stinner718fbf02012-04-26 00:39:37 +0200383 ch = PyUnicode_READ(kind, data, i);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200384 if (ch > maxchar)
385 maxchar = ch;
386 }
387 if (kind == PyUnicode_1BYTE_KIND) {
Victor Stinner77faf692011-11-20 18:56:05 +0100388 if (ascii->state.ascii == 0) {
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200389 assert(maxchar >= 128);
Victor Stinner77faf692011-11-20 18:56:05 +0100390 assert(maxchar <= 255);
391 }
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200392 else
393 assert(maxchar < 128);
394 }
Victor Stinner77faf692011-11-20 18:56:05 +0100395 else if (kind == PyUnicode_2BYTE_KIND) {
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200396 assert(maxchar >= 0x100);
Victor Stinner77faf692011-11-20 18:56:05 +0100397 assert(maxchar <= 0xFFFF);
398 }
399 else {
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200400 assert(maxchar >= 0x10000);
Victor Stinner8faf8212011-12-08 22:14:11 +0100401 assert(maxchar <= MAX_UNICODE);
Victor Stinner77faf692011-11-20 18:56:05 +0100402 }
Victor Stinner718fbf02012-04-26 00:39:37 +0200403 assert(PyUnicode_READ(kind, data, ascii->length) == 0);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200404 }
Benjamin Petersonccc51c12011-10-03 19:34:12 -0400405 return 1;
406}
Victor Stinner910337b2011-10-03 03:20:16 +0200407#endif
408
Victor Stinnerd3df8ab2011-11-22 01:22:34 +0100409static PyObject*
410unicode_result_wchar(PyObject *unicode)
411{
412#ifndef Py_DEBUG
413 Py_ssize_t len;
414
415 assert(Py_REFCNT(unicode) == 1);
416
417 len = _PyUnicode_WSTR_LENGTH(unicode);
418 if (len == 0) {
419 Py_INCREF(unicode_empty);
420 Py_DECREF(unicode);
421 return unicode_empty;
422 }
423
424 if (len == 1) {
425 wchar_t ch = _PyUnicode_WSTR(unicode)[0];
426 if (ch < 256) {
427 PyObject *latin1_char = get_latin1_char((unsigned char)ch);
428 Py_DECREF(unicode);
429 return latin1_char;
430 }
431 }
432
433 if (_PyUnicode_Ready(unicode) < 0) {
434 Py_XDECREF(unicode);
435 return NULL;
436 }
437#else
438 /* don't make the result ready in debug mode to ensure that the caller
439 makes the string ready before using it */
440 assert(_PyUnicode_CheckConsistency(unicode, 1));
441#endif
442 return unicode;
443}
444
445static PyObject*
446unicode_result_ready(PyObject *unicode)
447{
448 Py_ssize_t length;
449
450 length = PyUnicode_GET_LENGTH(unicode);
451 if (length == 0) {
452 if (unicode != unicode_empty) {
453 Py_INCREF(unicode_empty);
454 Py_DECREF(unicode);
455 }
456 return unicode_empty;
457 }
458
459 if (length == 1) {
460 Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, 0);
461 if (ch < 256) {
462 PyObject *latin1_char = unicode_latin1[ch];
463 if (latin1_char != NULL) {
464 if (unicode != latin1_char) {
465 Py_INCREF(latin1_char);
466 Py_DECREF(unicode);
467 }
468 return latin1_char;
469 }
470 else {
471 assert(_PyUnicode_CheckConsistency(unicode, 1));
472 Py_INCREF(unicode);
473 unicode_latin1[ch] = unicode;
474 return unicode;
475 }
476 }
477 }
478
479 assert(_PyUnicode_CheckConsistency(unicode, 1));
480 return unicode;
481}
482
483static PyObject*
484unicode_result(PyObject *unicode)
485{
486 assert(_PyUnicode_CHECK(unicode));
487 if (PyUnicode_IS_READY(unicode))
488 return unicode_result_ready(unicode);
489 else
490 return unicode_result_wchar(unicode);
491}
492
Victor Stinnerc4b49542011-12-11 22:44:26 +0100493static PyObject*
494unicode_result_unchanged(PyObject *unicode)
495{
496 if (PyUnicode_CheckExact(unicode)) {
Benjamin Petersonbac79492012-01-14 13:34:47 -0500497 if (PyUnicode_READY(unicode) == -1)
Victor Stinnerc4b49542011-12-11 22:44:26 +0100498 return NULL;
499 Py_INCREF(unicode);
500 return unicode;
501 }
502 else
503 /* Subtype -- return genuine unicode string with the same value. */
Victor Stinnerbf6e5602011-12-12 01:53:47 +0100504 return _PyUnicode_Copy(unicode);
Victor Stinnerc4b49542011-12-11 22:44:26 +0100505}
506
Victor Stinner3a50e702011-10-18 21:21:00 +0200507#ifdef HAVE_MBCS
508static OSVERSIONINFOEX winver;
509#endif
510
Thomas Wouters477c8d52006-05-27 19:21:47 +0000511/* --- Bloom Filters ----------------------------------------------------- */
512
513/* stuff to implement simple "bloom filters" for Unicode characters.
514 to keep things simple, we use a single bitmask, using the least 5
515 bits from each unicode characters as the bit index. */
516
517/* the linebreak mask is set up by Unicode_Init below */
518
Antoine Pitrouf068f942010-01-13 14:19:12 +0000519#if LONG_BIT >= 128
520#define BLOOM_WIDTH 128
521#elif LONG_BIT >= 64
522#define BLOOM_WIDTH 64
523#elif LONG_BIT >= 32
524#define BLOOM_WIDTH 32
525#else
526#error "LONG_BIT is smaller than 32"
527#endif
528
Thomas Wouters477c8d52006-05-27 19:21:47 +0000529#define BLOOM_MASK unsigned long
530
531static BLOOM_MASK bloom_linebreak;
532
Antoine Pitrouf068f942010-01-13 14:19:12 +0000533#define BLOOM_ADD(mask, ch) ((mask |= (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
534#define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
Thomas Wouters477c8d52006-05-27 19:21:47 +0000535
Benjamin Peterson29060642009-01-31 22:14:21 +0000536#define BLOOM_LINEBREAK(ch) \
537 ((ch) < 128U ? ascii_linebreak[(ch)] : \
538 (BLOOM(bloom_linebreak, (ch)) && Py_UNICODE_ISLINEBREAK(ch)))
Thomas Wouters477c8d52006-05-27 19:21:47 +0000539
Alexander Belopolsky40018472011-02-26 01:02:56 +0000540Py_LOCAL_INLINE(BLOOM_MASK)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200541make_bloom_mask(int kind, void* ptr, Py_ssize_t len)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000542{
543 /* calculate simple bloom-style bitmask for a given unicode string */
544
Antoine Pitrouf068f942010-01-13 14:19:12 +0000545 BLOOM_MASK mask;
Thomas Wouters477c8d52006-05-27 19:21:47 +0000546 Py_ssize_t i;
547
548 mask = 0;
549 for (i = 0; i < len; i++)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200550 BLOOM_ADD(mask, PyUnicode_READ(kind, ptr, i));
Thomas Wouters477c8d52006-05-27 19:21:47 +0000551
552 return mask;
553}
554
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200555#define BLOOM_MEMBER(mask, chr, str) \
556 (BLOOM(mask, chr) \
557 && (PyUnicode_FindChar(str, chr, 0, PyUnicode_GET_LENGTH(str), 1) >= 0))
Thomas Wouters477c8d52006-05-27 19:21:47 +0000558
Antoine Pitroudd4e2f02011-10-13 00:02:27 +0200559/* Compilation of templated routines */
560
561#include "stringlib/asciilib.h"
562#include "stringlib/fastsearch.h"
563#include "stringlib/partition.h"
564#include "stringlib/split.h"
565#include "stringlib/count.h"
566#include "stringlib/find.h"
567#include "stringlib/find_max_char.h"
568#include "stringlib/localeutil.h"
569#include "stringlib/undef.h"
570
571#include "stringlib/ucs1lib.h"
572#include "stringlib/fastsearch.h"
573#include "stringlib/partition.h"
574#include "stringlib/split.h"
575#include "stringlib/count.h"
576#include "stringlib/find.h"
577#include "stringlib/find_max_char.h"
578#include "stringlib/localeutil.h"
579#include "stringlib/undef.h"
580
581#include "stringlib/ucs2lib.h"
582#include "stringlib/fastsearch.h"
583#include "stringlib/partition.h"
584#include "stringlib/split.h"
585#include "stringlib/count.h"
586#include "stringlib/find.h"
587#include "stringlib/find_max_char.h"
588#include "stringlib/localeutil.h"
589#include "stringlib/undef.h"
590
591#include "stringlib/ucs4lib.h"
592#include "stringlib/fastsearch.h"
593#include "stringlib/partition.h"
594#include "stringlib/split.h"
595#include "stringlib/count.h"
596#include "stringlib/find.h"
597#include "stringlib/find_max_char.h"
598#include "stringlib/localeutil.h"
599#include "stringlib/undef.h"
600
Antoine Pitrouf0b934b2011-10-13 18:55:09 +0200601#include "stringlib/unicodedefs.h"
602#include "stringlib/fastsearch.h"
603#include "stringlib/count.h"
604#include "stringlib/find.h"
Antoine Pitrou0a3229d2011-11-21 20:39:13 +0100605#include "stringlib/undef.h"
Antoine Pitrouf0b934b2011-10-13 18:55:09 +0200606
Guido van Rossumd57fd912000-03-10 22:53:23 +0000607/* --- Unicode Object ----------------------------------------------------- */
608
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200609static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +0200610fixup(PyObject *self, Py_UCS4 (*fixfct)(PyObject *s));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200611
Antoine Pitrouf0b934b2011-10-13 18:55:09 +0200612Py_LOCAL_INLINE(Py_ssize_t) findchar(void *s, int kind,
613 Py_ssize_t size, Py_UCS4 ch,
614 int direction)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200615{
Antoine Pitrouf0b934b2011-10-13 18:55:09 +0200616 int mode = (direction == 1) ? FAST_SEARCH : FAST_RSEARCH;
617
618 switch (kind) {
619 case PyUnicode_1BYTE_KIND:
620 {
621 Py_UCS1 ch1 = (Py_UCS1) ch;
622 if (ch1 == ch)
623 return ucs1lib_fastsearch((Py_UCS1 *) s, size, &ch1, 1, 0, mode);
624 else
625 return -1;
626 }
627 case PyUnicode_2BYTE_KIND:
628 {
629 Py_UCS2 ch2 = (Py_UCS2) ch;
630 if (ch2 == ch)
631 return ucs2lib_fastsearch((Py_UCS2 *) s, size, &ch2, 1, 0, mode);
632 else
633 return -1;
634 }
635 case PyUnicode_4BYTE_KIND:
636 return ucs4lib_fastsearch((Py_UCS4 *) s, size, &ch, 1, 0, mode);
637 default:
638 assert(0);
639 return -1;
Victor Stinner9e7a1bc2011-10-13 00:18:12 +0200640 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200641}
642
Victor Stinnerfe226c02011-10-03 03:52:20 +0200643static PyObject*
644resize_compact(PyObject *unicode, Py_ssize_t length)
645{
646 Py_ssize_t char_size;
647 Py_ssize_t struct_size;
648 Py_ssize_t new_size;
649 int share_wstr;
Victor Stinner84def372011-12-11 20:04:56 +0100650 PyObject *new_unicode;
Victor Stinner79891572012-05-03 13:43:07 +0200651 assert(unicode_modifiable(unicode));
Victor Stinnerfe226c02011-10-03 03:52:20 +0200652 assert(PyUnicode_IS_READY(unicode));
Victor Stinner488fa492011-12-12 00:01:39 +0100653 assert(PyUnicode_IS_COMPACT(unicode));
654
Martin v. Löwisc47adb02011-10-07 20:55:35 +0200655 char_size = PyUnicode_KIND(unicode);
Victor Stinner488fa492011-12-12 00:01:39 +0100656 if (PyUnicode_IS_ASCII(unicode))
Victor Stinnerfe226c02011-10-03 03:52:20 +0200657 struct_size = sizeof(PyASCIIObject);
658 else
659 struct_size = sizeof(PyCompactUnicodeObject);
Victor Stinnerc379ead2011-10-03 12:52:27 +0200660 share_wstr = _PyUnicode_SHARE_WSTR(unicode);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200661
Victor Stinnerfe226c02011-10-03 03:52:20 +0200662 if (length > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1)) {
663 PyErr_NoMemory();
664 return NULL;
665 }
666 new_size = (struct_size + (length + 1) * char_size);
667
Victor Stinner84def372011-12-11 20:04:56 +0100668 _Py_DEC_REFTOTAL;
669 _Py_ForgetReference(unicode);
670
671 new_unicode = (PyObject *)PyObject_REALLOC((char *)unicode, new_size);
672 if (new_unicode == NULL) {
Victor Stinnerb0a82a62011-12-12 13:08:33 +0100673 _Py_NewReference(unicode);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200674 PyErr_NoMemory();
675 return NULL;
676 }
Victor Stinner84def372011-12-11 20:04:56 +0100677 unicode = new_unicode;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200678 _Py_NewReference(unicode);
Victor Stinner84def372011-12-11 20:04:56 +0100679
Victor Stinnerfe226c02011-10-03 03:52:20 +0200680 _PyUnicode_LENGTH(unicode) = length;
Victor Stinnerc379ead2011-10-03 12:52:27 +0200681 if (share_wstr) {
Victor Stinnerfe226c02011-10-03 03:52:20 +0200682 _PyUnicode_WSTR(unicode) = PyUnicode_DATA(unicode);
Victor Stinner488fa492011-12-12 00:01:39 +0100683 if (!PyUnicode_IS_ASCII(unicode))
Victor Stinnerc379ead2011-10-03 12:52:27 +0200684 _PyUnicode_WSTR_LENGTH(unicode) = length;
685 }
Victor Stinnerfe226c02011-10-03 03:52:20 +0200686 PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode),
687 length, 0);
Victor Stinner79891572012-05-03 13:43:07 +0200688 assert(_PyUnicode_CheckConsistency(unicode, 0));
Victor Stinnerfe226c02011-10-03 03:52:20 +0200689 return unicode;
690}
691
Alexander Belopolsky40018472011-02-26 01:02:56 +0000692static int
Victor Stinner9db1a8b2011-10-23 20:04:37 +0200693resize_inplace(PyObject *unicode, Py_ssize_t length)
Guido van Rossumd57fd912000-03-10 22:53:23 +0000694{
Victor Stinner95663112011-10-04 01:03:50 +0200695 wchar_t *wstr;
Victor Stinner7a9105a2011-12-12 00:13:42 +0100696 Py_ssize_t new_size;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200697 assert(!PyUnicode_IS_COMPACT(unicode));
Victor Stinnerfe226c02011-10-03 03:52:20 +0200698 assert(Py_REFCNT(unicode) == 1);
Tim Petersced69f82003-09-16 20:30:58 +0000699
Victor Stinnerfe226c02011-10-03 03:52:20 +0200700 if (PyUnicode_IS_READY(unicode)) {
701 Py_ssize_t char_size;
Victor Stinner1c8d0c72011-10-03 12:11:00 +0200702 int share_wstr, share_utf8;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200703 void *data;
704
705 data = _PyUnicode_DATA_ANY(unicode);
Martin v. Löwisc47adb02011-10-07 20:55:35 +0200706 char_size = PyUnicode_KIND(unicode);
Victor Stinnerc379ead2011-10-03 12:52:27 +0200707 share_wstr = _PyUnicode_SHARE_WSTR(unicode);
708 share_utf8 = _PyUnicode_SHARE_UTF8(unicode);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200709
710 if (length > (PY_SSIZE_T_MAX / char_size - 1)) {
711 PyErr_NoMemory();
712 return -1;
713 }
714 new_size = (length + 1) * char_size;
715
Victor Stinner7a9105a2011-12-12 00:13:42 +0100716 if (!share_utf8 && _PyUnicode_HAS_UTF8_MEMORY(unicode))
717 {
718 PyObject_DEL(_PyUnicode_UTF8(unicode));
719 _PyUnicode_UTF8(unicode) = NULL;
720 _PyUnicode_UTF8_LENGTH(unicode) = 0;
721 }
722
Victor Stinnerfe226c02011-10-03 03:52:20 +0200723 data = (PyObject *)PyObject_REALLOC(data, new_size);
724 if (data == NULL) {
725 PyErr_NoMemory();
726 return -1;
727 }
728 _PyUnicode_DATA_ANY(unicode) = data;
Victor Stinnerc379ead2011-10-03 12:52:27 +0200729 if (share_wstr) {
Victor Stinnerfe226c02011-10-03 03:52:20 +0200730 _PyUnicode_WSTR(unicode) = data;
Victor Stinnerc379ead2011-10-03 12:52:27 +0200731 _PyUnicode_WSTR_LENGTH(unicode) = length;
732 }
733 if (share_utf8) {
Victor Stinner1c8d0c72011-10-03 12:11:00 +0200734 _PyUnicode_UTF8(unicode) = data;
Victor Stinnerc379ead2011-10-03 12:52:27 +0200735 _PyUnicode_UTF8_LENGTH(unicode) = length;
736 }
Victor Stinnerfe226c02011-10-03 03:52:20 +0200737 _PyUnicode_LENGTH(unicode) = length;
738 PyUnicode_WRITE(PyUnicode_KIND(unicode), data, length, 0);
Victor Stinner95663112011-10-04 01:03:50 +0200739 if (share_wstr || _PyUnicode_WSTR(unicode) == NULL) {
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200740 assert(_PyUnicode_CheckConsistency(unicode, 0));
Victor Stinnerfe226c02011-10-03 03:52:20 +0200741 return 0;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200742 }
Victor Stinnerfe226c02011-10-03 03:52:20 +0200743 }
Victor Stinner95663112011-10-04 01:03:50 +0200744 assert(_PyUnicode_WSTR(unicode) != NULL);
745
746 /* check for integer overflow */
747 if (length > PY_SSIZE_T_MAX / sizeof(wchar_t) - 1) {
748 PyErr_NoMemory();
749 return -1;
750 }
Victor Stinner7a9105a2011-12-12 00:13:42 +0100751 new_size = sizeof(wchar_t) * (length + 1);
Victor Stinner95663112011-10-04 01:03:50 +0200752 wstr = _PyUnicode_WSTR(unicode);
Victor Stinner7a9105a2011-12-12 00:13:42 +0100753 wstr = PyObject_REALLOC(wstr, new_size);
Victor Stinner95663112011-10-04 01:03:50 +0200754 if (!wstr) {
755 PyErr_NoMemory();
756 return -1;
757 }
758 _PyUnicode_WSTR(unicode) = wstr;
759 _PyUnicode_WSTR(unicode)[length] = 0;
760 _PyUnicode_WSTR_LENGTH(unicode) = length;
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200761 assert(_PyUnicode_CheckConsistency(unicode, 0));
Guido van Rossumd57fd912000-03-10 22:53:23 +0000762 return 0;
763}
764
Victor Stinnerfe226c02011-10-03 03:52:20 +0200765static PyObject*
766resize_copy(PyObject *unicode, Py_ssize_t length)
767{
768 Py_ssize_t copy_length;
Victor Stinner7a9105a2011-12-12 00:13:42 +0100769 if (_PyUnicode_KIND(unicode) != PyUnicode_WCHAR_KIND) {
Victor Stinnerfe226c02011-10-03 03:52:20 +0200770 PyObject *copy;
Victor Stinner7a9105a2011-12-12 00:13:42 +0100771
Benjamin Petersonbac79492012-01-14 13:34:47 -0500772 if (PyUnicode_READY(unicode) == -1)
Victor Stinner7a9105a2011-12-12 00:13:42 +0100773 return NULL;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200774
775 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode));
776 if (copy == NULL)
777 return NULL;
778
779 copy_length = Py_MIN(length, PyUnicode_GET_LENGTH(unicode));
Victor Stinnerd3f08822012-05-29 12:57:52 +0200780 _PyUnicode_FastCopyCharacters(copy, 0, unicode, 0, copy_length);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200781 return copy;
Victor Stinner8cfcbed2011-10-03 23:19:21 +0200782 }
783 else {
Victor Stinner9db1a8b2011-10-23 20:04:37 +0200784 PyObject *w;
Victor Stinner7a9105a2011-12-12 00:13:42 +0100785
Victor Stinner9db1a8b2011-10-23 20:04:37 +0200786 w = (PyObject*)_PyUnicode_New(length);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200787 if (w == NULL)
788 return NULL;
789 copy_length = _PyUnicode_WSTR_LENGTH(unicode);
790 copy_length = Py_MIN(copy_length, length);
791 Py_UNICODE_COPY(_PyUnicode_WSTR(w), _PyUnicode_WSTR(unicode),
792 copy_length);
Victor Stinner9db1a8b2011-10-23 20:04:37 +0200793 return w;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200794 }
795}
796
Guido van Rossumd57fd912000-03-10 22:53:23 +0000797/* We allocate one more byte to make sure the string is
Martin v. Löwis47383402007-08-15 07:32:56 +0000798 Ux0000 terminated; some code (e.g. new_identifier)
799 relies on that.
Guido van Rossumd57fd912000-03-10 22:53:23 +0000800
801 XXX This allocator could further be enhanced by assuring that the
Benjamin Peterson29060642009-01-31 22:14:21 +0000802 free list never reduces its size below 1.
Guido van Rossumd57fd912000-03-10 22:53:23 +0000803
804*/
805
Alexander Belopolsky40018472011-02-26 01:02:56 +0000806static PyUnicodeObject *
807_PyUnicode_New(Py_ssize_t length)
Guido van Rossumd57fd912000-03-10 22:53:23 +0000808{
809 register PyUnicodeObject *unicode;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200810 size_t new_size;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000811
Thomas Wouters477c8d52006-05-27 19:21:47 +0000812 /* Optimization for empty strings */
Guido van Rossumd57fd912000-03-10 22:53:23 +0000813 if (length == 0 && unicode_empty != NULL) {
814 Py_INCREF(unicode_empty);
Victor Stinnera464fc12011-10-02 20:39:30 +0200815 return (PyUnicodeObject*)unicode_empty;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000816 }
817
Neal Norwitz3ce5d922008-08-24 07:08:55 +0000818 /* Ensure we won't overflow the size. */
819 if (length > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
820 return (PyUnicodeObject *)PyErr_NoMemory();
821 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200822 if (length < 0) {
823 PyErr_SetString(PyExc_SystemError,
824 "Negative size passed to _PyUnicode_New");
825 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000826 }
827
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200828 unicode = PyObject_New(PyUnicodeObject, &PyUnicode_Type);
829 if (unicode == NULL)
830 return NULL;
831 new_size = sizeof(Py_UNICODE) * ((size_t)length + 1);
832 _PyUnicode_WSTR(unicode) = (Py_UNICODE*) PyObject_MALLOC(new_size);
833 if (!_PyUnicode_WSTR(unicode)) {
Victor Stinnerb0a82a62011-12-12 13:08:33 +0100834 Py_DECREF(unicode);
Benjamin Peterson29060642009-01-31 22:14:21 +0000835 PyErr_NoMemory();
Victor Stinnerb0a82a62011-12-12 13:08:33 +0100836 return NULL;
Guido van Rossum3c1bb802000-04-27 20:13:50 +0000837 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200838
Jeremy Hyltond8082792003-09-16 19:41:39 +0000839 /* Initialize the first element to guard against cases where
Tim Petersced69f82003-09-16 20:30:58 +0000840 * the caller fails before initializing str -- unicode_resize()
841 * reads str[0], and the Keep-Alive optimization can keep memory
842 * allocated for str alive across a call to unicode_dealloc(unicode).
843 * We don't want unicode_resize to read uninitialized memory in
844 * that case.
845 */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200846 _PyUnicode_WSTR(unicode)[0] = 0;
847 _PyUnicode_WSTR(unicode)[length] = 0;
848 _PyUnicode_WSTR_LENGTH(unicode) = length;
849 _PyUnicode_HASH(unicode) = -1;
850 _PyUnicode_STATE(unicode).interned = 0;
851 _PyUnicode_STATE(unicode).kind = 0;
852 _PyUnicode_STATE(unicode).compact = 0;
853 _PyUnicode_STATE(unicode).ready = 0;
854 _PyUnicode_STATE(unicode).ascii = 0;
Victor Stinnerc3c74152011-10-02 20:39:55 +0200855 _PyUnicode_DATA_ANY(unicode) = NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200856 _PyUnicode_LENGTH(unicode) = 0;
Victor Stinnere90fe6a2011-10-01 16:48:13 +0200857 _PyUnicode_UTF8(unicode) = NULL;
858 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Victor Stinner7931d9a2011-11-04 00:22:48 +0100859 assert(_PyUnicode_CheckConsistency((PyObject *)unicode, 0));
Guido van Rossumd57fd912000-03-10 22:53:23 +0000860 return unicode;
861}
862
Victor Stinnerf42dc442011-10-02 23:33:16 +0200863static const char*
864unicode_kind_name(PyObject *unicode)
865{
Victor Stinner42dfd712011-10-03 14:41:45 +0200866 /* don't check consistency: unicode_kind_name() is called from
867 _PyUnicode_Dump() */
Victor Stinnerf42dc442011-10-02 23:33:16 +0200868 if (!PyUnicode_IS_COMPACT(unicode))
869 {
870 if (!PyUnicode_IS_READY(unicode))
871 return "wstr";
Benjamin Petersonead6b532011-12-20 17:23:42 -0600872 switch (PyUnicode_KIND(unicode))
Victor Stinnerf42dc442011-10-02 23:33:16 +0200873 {
874 case PyUnicode_1BYTE_KIND:
Victor Stinnera3b334d2011-10-03 13:53:37 +0200875 if (PyUnicode_IS_ASCII(unicode))
Victor Stinnerf42dc442011-10-02 23:33:16 +0200876 return "legacy ascii";
877 else
878 return "legacy latin1";
879 case PyUnicode_2BYTE_KIND:
880 return "legacy UCS2";
881 case PyUnicode_4BYTE_KIND:
882 return "legacy UCS4";
883 default:
884 return "<legacy invalid kind>";
885 }
886 }
887 assert(PyUnicode_IS_READY(unicode));
Benjamin Petersonead6b532011-12-20 17:23:42 -0600888 switch (PyUnicode_KIND(unicode)) {
Victor Stinnerf42dc442011-10-02 23:33:16 +0200889 case PyUnicode_1BYTE_KIND:
Victor Stinnera3b334d2011-10-03 13:53:37 +0200890 if (PyUnicode_IS_ASCII(unicode))
Victor Stinnerf42dc442011-10-02 23:33:16 +0200891 return "ascii";
892 else
Victor Stinnera3b334d2011-10-03 13:53:37 +0200893 return "latin1";
Victor Stinnerf42dc442011-10-02 23:33:16 +0200894 case PyUnicode_2BYTE_KIND:
Victor Stinnera3b334d2011-10-03 13:53:37 +0200895 return "UCS2";
Victor Stinnerf42dc442011-10-02 23:33:16 +0200896 case PyUnicode_4BYTE_KIND:
Victor Stinnera3b334d2011-10-03 13:53:37 +0200897 return "UCS4";
Victor Stinnerf42dc442011-10-02 23:33:16 +0200898 default:
899 return "<invalid compact kind>";
900 }
901}
902
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200903#ifdef Py_DEBUG
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200904/* Functions wrapping macros for use in debugger */
905char *_PyUnicode_utf8(void *unicode){
Victor Stinnere90fe6a2011-10-01 16:48:13 +0200906 return PyUnicode_UTF8(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200907}
908
909void *_PyUnicode_compact_data(void *unicode) {
910 return _PyUnicode_COMPACT_DATA(unicode);
911}
912void *_PyUnicode_data(void *unicode){
913 printf("obj %p\n", unicode);
914 printf("compact %d\n", PyUnicode_IS_COMPACT(unicode));
915 printf("compact ascii %d\n", PyUnicode_IS_COMPACT_ASCII(unicode));
916 printf("ascii op %p\n", ((void*)((PyASCIIObject*)(unicode) + 1)));
917 printf("compact op %p\n", ((void*)((PyCompactUnicodeObject*)(unicode) + 1)));
918 printf("compact data %p\n", _PyUnicode_COMPACT_DATA(unicode));
919 return PyUnicode_DATA(unicode);
920}
Victor Stinnerfe0c1552011-10-03 02:59:31 +0200921
922void
923_PyUnicode_Dump(PyObject *op)
924{
925 PyASCIIObject *ascii = (PyASCIIObject *)op;
Victor Stinnera849a4b2011-10-03 12:12:11 +0200926 PyCompactUnicodeObject *compact = (PyCompactUnicodeObject *)op;
927 PyUnicodeObject *unicode = (PyUnicodeObject *)op;
928 void *data;
Victor Stinner0d60e872011-10-23 19:47:19 +0200929
Victor Stinnera849a4b2011-10-03 12:12:11 +0200930 if (ascii->state.compact)
Victor Stinner0d60e872011-10-23 19:47:19 +0200931 {
932 if (ascii->state.ascii)
933 data = (ascii + 1);
934 else
935 data = (compact + 1);
936 }
Victor Stinnera849a4b2011-10-03 12:12:11 +0200937 else
938 data = unicode->data.any;
Victor Stinner0d60e872011-10-23 19:47:19 +0200939 printf("%s: len=%zu, ",unicode_kind_name(op), ascii->length);
940
Victor Stinnera849a4b2011-10-03 12:12:11 +0200941 if (ascii->wstr == data)
942 printf("shared ");
943 printf("wstr=%p", ascii->wstr);
Victor Stinner0d60e872011-10-23 19:47:19 +0200944
Victor Stinnera3b334d2011-10-03 13:53:37 +0200945 if (!(ascii->state.ascii == 1 && ascii->state.compact == 1)) {
Victor Stinnera849a4b2011-10-03 12:12:11 +0200946 printf(" (%zu), ", compact->wstr_length);
947 if (!ascii->state.compact && compact->utf8 == unicode->data.any)
948 printf("shared ");
949 printf("utf8=%p (%zu)", compact->utf8, compact->utf8_length);
Victor Stinnerfe0c1552011-10-03 02:59:31 +0200950 }
Victor Stinnera849a4b2011-10-03 12:12:11 +0200951 printf(", data=%p\n", data);
Victor Stinnerfe0c1552011-10-03 02:59:31 +0200952}
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200953#endif
954
955PyObject *
956PyUnicode_New(Py_ssize_t size, Py_UCS4 maxchar)
957{
958 PyObject *obj;
959 PyCompactUnicodeObject *unicode;
960 void *data;
Victor Stinner8f825062012-04-27 13:55:39 +0200961 enum PyUnicode_Kind kind;
Victor Stinner9e9d6892011-10-04 01:02:02 +0200962 int is_sharing, is_ascii;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200963 Py_ssize_t char_size;
964 Py_ssize_t struct_size;
965
966 /* Optimization for empty strings */
967 if (size == 0 && unicode_empty != NULL) {
968 Py_INCREF(unicode_empty);
Victor Stinnera464fc12011-10-02 20:39:30 +0200969 return unicode_empty;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200970 }
971
Victor Stinner9e9d6892011-10-04 01:02:02 +0200972 is_ascii = 0;
973 is_sharing = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200974 struct_size = sizeof(PyCompactUnicodeObject);
975 if (maxchar < 128) {
Victor Stinner8f825062012-04-27 13:55:39 +0200976 kind = PyUnicode_1BYTE_KIND;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200977 char_size = 1;
978 is_ascii = 1;
979 struct_size = sizeof(PyASCIIObject);
980 }
981 else if (maxchar < 256) {
Victor Stinner8f825062012-04-27 13:55:39 +0200982 kind = PyUnicode_1BYTE_KIND;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200983 char_size = 1;
984 }
985 else if (maxchar < 65536) {
Victor Stinner8f825062012-04-27 13:55:39 +0200986 kind = PyUnicode_2BYTE_KIND;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200987 char_size = 2;
988 if (sizeof(wchar_t) == 2)
989 is_sharing = 1;
990 }
991 else {
Victor Stinnerc9590ad2012-03-04 01:34:37 +0100992 if (maxchar > MAX_UNICODE) {
993 PyErr_SetString(PyExc_SystemError,
994 "invalid maximum character passed to PyUnicode_New");
995 return NULL;
996 }
Victor Stinner8f825062012-04-27 13:55:39 +0200997 kind = PyUnicode_4BYTE_KIND;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200998 char_size = 4;
999 if (sizeof(wchar_t) == 4)
1000 is_sharing = 1;
1001 }
1002
1003 /* Ensure we won't overflow the size. */
1004 if (size < 0) {
1005 PyErr_SetString(PyExc_SystemError,
1006 "Negative size passed to PyUnicode_New");
1007 return NULL;
1008 }
1009 if (size > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1))
1010 return PyErr_NoMemory();
1011
1012 /* Duplicated allocation code from _PyObject_New() instead of a call to
1013 * PyObject_New() so we are able to allocate space for the object and
1014 * it's data buffer.
1015 */
1016 obj = (PyObject *) PyObject_MALLOC(struct_size + (size + 1) * char_size);
1017 if (obj == NULL)
1018 return PyErr_NoMemory();
1019 obj = PyObject_INIT(obj, &PyUnicode_Type);
1020 if (obj == NULL)
1021 return NULL;
1022
1023 unicode = (PyCompactUnicodeObject *)obj;
1024 if (is_ascii)
1025 data = ((PyASCIIObject*)obj) + 1;
1026 else
1027 data = unicode + 1;
1028 _PyUnicode_LENGTH(unicode) = size;
1029 _PyUnicode_HASH(unicode) = -1;
1030 _PyUnicode_STATE(unicode).interned = 0;
Victor Stinner8f825062012-04-27 13:55:39 +02001031 _PyUnicode_STATE(unicode).kind = kind;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001032 _PyUnicode_STATE(unicode).compact = 1;
1033 _PyUnicode_STATE(unicode).ready = 1;
1034 _PyUnicode_STATE(unicode).ascii = is_ascii;
1035 if (is_ascii) {
1036 ((char*)data)[size] = 0;
1037 _PyUnicode_WSTR(unicode) = NULL;
1038 }
Victor Stinner8f825062012-04-27 13:55:39 +02001039 else if (kind == PyUnicode_1BYTE_KIND) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001040 ((char*)data)[size] = 0;
1041 _PyUnicode_WSTR(unicode) = NULL;
1042 _PyUnicode_WSTR_LENGTH(unicode) = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001043 unicode->utf8 = NULL;
Victor Stinner9e9d6892011-10-04 01:02:02 +02001044 unicode->utf8_length = 0;
Victor Stinner8f825062012-04-27 13:55:39 +02001045 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001046 else {
1047 unicode->utf8 = NULL;
Victor Stinner9e9d6892011-10-04 01:02:02 +02001048 unicode->utf8_length = 0;
Victor Stinner8f825062012-04-27 13:55:39 +02001049 if (kind == PyUnicode_2BYTE_KIND)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001050 ((Py_UCS2*)data)[size] = 0;
Victor Stinner8f825062012-04-27 13:55:39 +02001051 else /* kind == PyUnicode_4BYTE_KIND */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001052 ((Py_UCS4*)data)[size] = 0;
1053 if (is_sharing) {
1054 _PyUnicode_WSTR_LENGTH(unicode) = size;
1055 _PyUnicode_WSTR(unicode) = (wchar_t *)data;
1056 }
1057 else {
1058 _PyUnicode_WSTR_LENGTH(unicode) = 0;
1059 _PyUnicode_WSTR(unicode) = NULL;
1060 }
1061 }
Victor Stinner8f825062012-04-27 13:55:39 +02001062#ifdef Py_DEBUG
1063 /* Fill the data with invalid characters to detect bugs earlier.
1064 _PyUnicode_CheckConsistency(str, 1) detects invalid characters,
1065 at least for ASCII and UCS-4 strings. U+00FF is invalid in ASCII
1066 and U+FFFFFFFF is an invalid character in Unicode 6.0. */
1067 memset(data, 0xff, size * kind);
1068#endif
Victor Stinner7931d9a2011-11-04 00:22:48 +01001069 assert(_PyUnicode_CheckConsistency((PyObject*)unicode, 0));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001070 return obj;
1071}
1072
1073#if SIZEOF_WCHAR_T == 2
1074/* Helper function to convert a 16-bits wchar_t representation to UCS4, this
1075 will decode surrogate pairs, the other conversions are implemented as macros
Georg Brandl7597add2011-10-05 16:36:47 +02001076 for efficiency.
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001077
1078 This function assumes that unicode can hold one more code point than wstr
1079 characters for a terminating null character. */
Victor Stinnerc53be962011-10-02 21:33:54 +02001080static void
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001081unicode_convert_wchar_to_ucs4(const wchar_t *begin, const wchar_t *end,
Victor Stinner9db1a8b2011-10-23 20:04:37 +02001082 PyObject *unicode)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001083{
1084 const wchar_t *iter;
1085 Py_UCS4 *ucs4_out;
1086
Victor Stinner910337b2011-10-03 03:20:16 +02001087 assert(unicode != NULL);
1088 assert(_PyUnicode_CHECK(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001089 assert(_PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND);
1090 ucs4_out = PyUnicode_4BYTE_DATA(unicode);
1091
1092 for (iter = begin; iter < end; ) {
1093 assert(ucs4_out < (PyUnicode_4BYTE_DATA(unicode) +
1094 _PyUnicode_GET_LENGTH(unicode)));
Victor Stinner551ac952011-11-29 22:58:13 +01001095 if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0])
1096 && (iter+1) < end
1097 && Py_UNICODE_IS_LOW_SURROGATE(iter[1]))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001098 {
Victor Stinner551ac952011-11-29 22:58:13 +01001099 *ucs4_out++ = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001100 iter += 2;
1101 }
1102 else {
1103 *ucs4_out++ = *iter;
1104 iter++;
1105 }
1106 }
1107 assert(ucs4_out == (PyUnicode_4BYTE_DATA(unicode) +
1108 _PyUnicode_GET_LENGTH(unicode)));
1109
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001110}
1111#endif
1112
Victor Stinnercd9950f2011-10-02 00:34:53 +02001113static int
Victor Stinner488fa492011-12-12 00:01:39 +01001114unicode_check_modifiable(PyObject *unicode)
Victor Stinnercd9950f2011-10-02 00:34:53 +02001115{
Victor Stinner488fa492011-12-12 00:01:39 +01001116 if (!unicode_modifiable(unicode)) {
Victor Stinner01698042011-10-04 00:04:26 +02001117 PyErr_SetString(PyExc_SystemError,
Victor Stinner488fa492011-12-12 00:01:39 +01001118 "Cannot modify a string currently used");
Victor Stinnercd9950f2011-10-02 00:34:53 +02001119 return -1;
1120 }
Victor Stinnercd9950f2011-10-02 00:34:53 +02001121 return 0;
1122}
1123
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001124static int
1125_copy_characters(PyObject *to, Py_ssize_t to_start,
1126 PyObject *from, Py_ssize_t from_start,
1127 Py_ssize_t how_many, int check_maxchar)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001128{
Victor Stinnera0702ab2011-09-29 14:14:38 +02001129 unsigned int from_kind, to_kind;
1130 void *from_data, *to_data;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001131
Victor Stinneree4544c2012-05-09 22:24:08 +02001132 assert(0 <= how_many);
1133 assert(0 <= from_start);
1134 assert(0 <= to_start);
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001135 assert(PyUnicode_Check(from));
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001136 assert(PyUnicode_IS_READY(from));
Victor Stinneree4544c2012-05-09 22:24:08 +02001137 assert(from_start + how_many <= PyUnicode_GET_LENGTH(from));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001138
Victor Stinnerd3f08822012-05-29 12:57:52 +02001139 assert(PyUnicode_Check(to));
1140 assert(PyUnicode_IS_READY(to));
1141 assert(to_start + how_many <= PyUnicode_GET_LENGTH(to));
1142
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001143 if (how_many == 0)
1144 return 0;
1145
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001146 from_kind = PyUnicode_KIND(from);
Victor Stinnera0702ab2011-09-29 14:14:38 +02001147 from_data = PyUnicode_DATA(from);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001148 to_kind = PyUnicode_KIND(to);
Victor Stinnera0702ab2011-09-29 14:14:38 +02001149 to_data = PyUnicode_DATA(to);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001150
Victor Stinnerf1852262012-06-16 16:38:26 +02001151#ifdef Py_DEBUG
1152 if (!check_maxchar
1153 && PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to))
1154 {
1155 const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to);
1156 Py_UCS4 ch;
1157 Py_ssize_t i;
1158 for (i=0; i < how_many; i++) {
1159 ch = PyUnicode_READ(from_kind, from_data, from_start + i);
1160 assert(ch <= to_maxchar);
1161 }
1162 }
1163#endif
1164
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001165 if (from_kind == to_kind) {
Victor Stinnerf1852262012-06-16 16:38:26 +02001166 if (check_maxchar
1167 && !PyUnicode_IS_ASCII(from) && PyUnicode_IS_ASCII(to))
1168 {
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001169 /* Writing Latin-1 characters into an ASCII string requires to
1170 check that all written characters are pure ASCII */
Victor Stinnerf1852262012-06-16 16:38:26 +02001171 Py_UCS4 max_char;
1172 max_char = ucs1lib_find_max_char(from_data,
1173 (Py_UCS1*)from_data + how_many);
1174 if (max_char >= 128)
1175 return -1;
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001176 }
Martin v. Löwisc47adb02011-10-07 20:55:35 +02001177 Py_MEMCPY((char*)to_data + to_kind * to_start,
1178 (char*)from_data + from_kind * from_start,
1179 to_kind * how_many);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001180 }
Victor Stinnera0702ab2011-09-29 14:14:38 +02001181 else if (from_kind == PyUnicode_1BYTE_KIND
1182 && to_kind == PyUnicode_2BYTE_KIND)
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001183 {
1184 _PyUnicode_CONVERT_BYTES(
1185 Py_UCS1, Py_UCS2,
1186 PyUnicode_1BYTE_DATA(from) + from_start,
1187 PyUnicode_1BYTE_DATA(from) + from_start + how_many,
1188 PyUnicode_2BYTE_DATA(to) + to_start
1189 );
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001190 }
Victor Stinner157f83f2011-09-28 21:41:31 +02001191 else if (from_kind == PyUnicode_1BYTE_KIND
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001192 && to_kind == PyUnicode_4BYTE_KIND)
1193 {
1194 _PyUnicode_CONVERT_BYTES(
1195 Py_UCS1, Py_UCS4,
1196 PyUnicode_1BYTE_DATA(from) + from_start,
1197 PyUnicode_1BYTE_DATA(from) + from_start + how_many,
1198 PyUnicode_4BYTE_DATA(to) + to_start
1199 );
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001200 }
1201 else if (from_kind == PyUnicode_2BYTE_KIND
1202 && to_kind == PyUnicode_4BYTE_KIND)
1203 {
1204 _PyUnicode_CONVERT_BYTES(
1205 Py_UCS2, Py_UCS4,
1206 PyUnicode_2BYTE_DATA(from) + from_start,
1207 PyUnicode_2BYTE_DATA(from) + from_start + how_many,
1208 PyUnicode_4BYTE_DATA(to) + to_start
1209 );
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001210 }
Victor Stinnera0702ab2011-09-29 14:14:38 +02001211 else {
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001212 assert (PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to));
1213
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001214 if (!check_maxchar) {
1215 if (from_kind == PyUnicode_2BYTE_KIND
1216 && to_kind == PyUnicode_1BYTE_KIND)
1217 {
1218 _PyUnicode_CONVERT_BYTES(
1219 Py_UCS2, Py_UCS1,
1220 PyUnicode_2BYTE_DATA(from) + from_start,
1221 PyUnicode_2BYTE_DATA(from) + from_start + how_many,
1222 PyUnicode_1BYTE_DATA(to) + to_start
1223 );
1224 }
1225 else if (from_kind == PyUnicode_4BYTE_KIND
1226 && to_kind == PyUnicode_1BYTE_KIND)
1227 {
1228 _PyUnicode_CONVERT_BYTES(
1229 Py_UCS4, Py_UCS1,
1230 PyUnicode_4BYTE_DATA(from) + from_start,
1231 PyUnicode_4BYTE_DATA(from) + from_start + how_many,
1232 PyUnicode_1BYTE_DATA(to) + to_start
1233 );
1234 }
1235 else if (from_kind == PyUnicode_4BYTE_KIND
1236 && to_kind == PyUnicode_2BYTE_KIND)
1237 {
1238 _PyUnicode_CONVERT_BYTES(
1239 Py_UCS4, Py_UCS2,
1240 PyUnicode_4BYTE_DATA(from) + from_start,
1241 PyUnicode_4BYTE_DATA(from) + from_start + how_many,
1242 PyUnicode_2BYTE_DATA(to) + to_start
1243 );
1244 }
1245 else {
1246 assert(0);
1247 return -1;
1248 }
1249 }
Victor Stinnerf1852262012-06-16 16:38:26 +02001250 else {
Victor Stinnera0702ab2011-09-29 14:14:38 +02001251 const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to);
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001252 Py_UCS4 ch;
Victor Stinnera0702ab2011-09-29 14:14:38 +02001253 Py_ssize_t i;
1254
Victor Stinnera0702ab2011-09-29 14:14:38 +02001255 for (i=0; i < how_many; i++) {
1256 ch = PyUnicode_READ(from_kind, from_data, from_start + i);
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001257 if (ch > to_maxchar)
1258 return -1;
Victor Stinnera0702ab2011-09-29 14:14:38 +02001259 PyUnicode_WRITE(to_kind, to_data, to_start + i, ch);
1260 }
Victor Stinnera0702ab2011-09-29 14:14:38 +02001261 }
1262 }
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001263 return 0;
1264}
1265
Victor Stinnerd3f08822012-05-29 12:57:52 +02001266void
1267_PyUnicode_FastCopyCharacters(
1268 PyObject *to, Py_ssize_t to_start,
1269 PyObject *from, Py_ssize_t from_start, Py_ssize_t how_many)
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001270{
1271 (void)_copy_characters(to, to_start, from, from_start, how_many, 0);
1272}
1273
1274Py_ssize_t
1275PyUnicode_CopyCharacters(PyObject *to, Py_ssize_t to_start,
1276 PyObject *from, Py_ssize_t from_start,
1277 Py_ssize_t how_many)
1278{
1279 int err;
1280
1281 if (!PyUnicode_Check(from) || !PyUnicode_Check(to)) {
1282 PyErr_BadInternalCall();
1283 return -1;
1284 }
1285
Benjamin Petersonbac79492012-01-14 13:34:47 -05001286 if (PyUnicode_READY(from) == -1)
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001287 return -1;
Benjamin Petersonbac79492012-01-14 13:34:47 -05001288 if (PyUnicode_READY(to) == -1)
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001289 return -1;
1290
Victor Stinnerd3f08822012-05-29 12:57:52 +02001291 if (from_start < 0) {
1292 PyErr_SetString(PyExc_IndexError, "string index out of range");
1293 return -1;
1294 }
1295 if (to_start < 0) {
1296 PyErr_SetString(PyExc_IndexError, "string index out of range");
1297 return -1;
1298 }
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001299 how_many = Py_MIN(PyUnicode_GET_LENGTH(from), how_many);
1300 if (to_start + how_many > PyUnicode_GET_LENGTH(to)) {
1301 PyErr_Format(PyExc_SystemError,
1302 "Cannot write %zi characters at %zi "
1303 "in a string of %zi characters",
1304 how_many, to_start, PyUnicode_GET_LENGTH(to));
1305 return -1;
1306 }
1307
1308 if (how_many == 0)
1309 return 0;
1310
Victor Stinner488fa492011-12-12 00:01:39 +01001311 if (unicode_check_modifiable(to))
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001312 return -1;
1313
1314 err = _copy_characters(to, to_start, from, from_start, how_many, 1);
1315 if (err) {
1316 PyErr_Format(PyExc_SystemError,
1317 "Cannot copy %s characters "
1318 "into a string of %s characters",
1319 unicode_kind_name(from),
1320 unicode_kind_name(to));
1321 return -1;
1322 }
Victor Stinnera0702ab2011-09-29 14:14:38 +02001323 return how_many;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001324}
1325
Victor Stinner17222162011-09-28 22:15:37 +02001326/* Find the maximum code point and count the number of surrogate pairs so a
1327 correct string length can be computed before converting a string to UCS4.
1328 This function counts single surrogates as a character and not as a pair.
1329
1330 Return 0 on success, or -1 on error. */
1331static int
1332find_maxchar_surrogates(const wchar_t *begin, const wchar_t *end,
1333 Py_UCS4 *maxchar, Py_ssize_t *num_surrogates)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001334{
1335 const wchar_t *iter;
Victor Stinner8faf8212011-12-08 22:14:11 +01001336 Py_UCS4 ch;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001337
Victor Stinnerc53be962011-10-02 21:33:54 +02001338 assert(num_surrogates != NULL && maxchar != NULL);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001339 *num_surrogates = 0;
1340 *maxchar = 0;
1341
1342 for (iter = begin; iter < end; ) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001343#if SIZEOF_WCHAR_T == 2
Victor Stinnerca4f2072011-11-22 03:38:40 +01001344 if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0])
1345 && (iter+1) < end
1346 && Py_UNICODE_IS_LOW_SURROGATE(iter[1]))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001347 {
Victor Stinner8faf8212011-12-08 22:14:11 +01001348 ch = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001349 ++(*num_surrogates);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001350 iter += 2;
1351 }
1352 else
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001353#endif
Victor Stinner8faf8212011-12-08 22:14:11 +01001354 {
1355 ch = *iter;
1356 iter++;
1357 }
1358 if (ch > *maxchar) {
1359 *maxchar = ch;
1360 if (*maxchar > MAX_UNICODE) {
1361 PyErr_Format(PyExc_ValueError,
1362 "character U+%x is not in range [U+0000; U+10ffff]",
1363 ch);
1364 return -1;
1365 }
1366 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001367 }
1368 return 0;
1369}
1370
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001371int
1372_PyUnicode_Ready(PyObject *unicode)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001373{
1374 wchar_t *end;
1375 Py_UCS4 maxchar = 0;
1376 Py_ssize_t num_surrogates;
1377#if SIZEOF_WCHAR_T == 2
1378 Py_ssize_t length_wo_surrogates;
1379#endif
1380
Georg Brandl7597add2011-10-05 16:36:47 +02001381 /* _PyUnicode_Ready() is only intended for old-style API usage where
Victor Stinnerd8f65102011-09-29 19:43:17 +02001382 strings were created using _PyObject_New() and where no canonical
1383 representation (the str field) has been set yet aka strings
1384 which are not yet ready. */
Victor Stinner910337b2011-10-03 03:20:16 +02001385 assert(_PyUnicode_CHECK(unicode));
1386 assert(_PyUnicode_KIND(unicode) == PyUnicode_WCHAR_KIND);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001387 assert(_PyUnicode_WSTR(unicode) != NULL);
Victor Stinnerc3c74152011-10-02 20:39:55 +02001388 assert(_PyUnicode_DATA_ANY(unicode) == NULL);
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001389 assert(_PyUnicode_UTF8(unicode) == NULL);
Victor Stinnerd8f65102011-09-29 19:43:17 +02001390 /* Actually, it should neither be interned nor be anything else: */
1391 assert(_PyUnicode_STATE(unicode).interned == SSTATE_NOT_INTERNED);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001392
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001393 end = _PyUnicode_WSTR(unicode) + _PyUnicode_WSTR_LENGTH(unicode);
Victor Stinner17222162011-09-28 22:15:37 +02001394 if (find_maxchar_surrogates(_PyUnicode_WSTR(unicode), end,
Victor Stinnerd8f65102011-09-29 19:43:17 +02001395 &maxchar, &num_surrogates) == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001396 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001397
1398 if (maxchar < 256) {
Victor Stinnerc3c74152011-10-02 20:39:55 +02001399 _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(_PyUnicode_WSTR_LENGTH(unicode) + 1);
1400 if (!_PyUnicode_DATA_ANY(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001401 PyErr_NoMemory();
1402 return -1;
1403 }
Victor Stinnerfb5f5f22011-09-28 21:39:49 +02001404 _PyUnicode_CONVERT_BYTES(wchar_t, unsigned char,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001405 _PyUnicode_WSTR(unicode), end,
1406 PyUnicode_1BYTE_DATA(unicode));
1407 PyUnicode_1BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0';
1408 _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
1409 _PyUnicode_STATE(unicode).kind = PyUnicode_1BYTE_KIND;
1410 if (maxchar < 128) {
Victor Stinnera3b334d2011-10-03 13:53:37 +02001411 _PyUnicode_STATE(unicode).ascii = 1;
Victor Stinnerc3c74152011-10-02 20:39:55 +02001412 _PyUnicode_UTF8(unicode) = _PyUnicode_DATA_ANY(unicode);
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001413 _PyUnicode_UTF8_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001414 }
1415 else {
Victor Stinnera3b334d2011-10-03 13:53:37 +02001416 _PyUnicode_STATE(unicode).ascii = 0;
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001417 _PyUnicode_UTF8(unicode) = NULL;
1418 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001419 }
1420 PyObject_FREE(_PyUnicode_WSTR(unicode));
1421 _PyUnicode_WSTR(unicode) = NULL;
1422 _PyUnicode_WSTR_LENGTH(unicode) = 0;
1423 }
1424 /* In this case we might have to convert down from 4-byte native
1425 wchar_t to 2-byte unicode. */
1426 else if (maxchar < 65536) {
1427 assert(num_surrogates == 0 &&
1428 "FindMaxCharAndNumSurrogatePairs() messed up");
1429
Victor Stinner506f5922011-09-28 22:34:18 +02001430#if SIZEOF_WCHAR_T == 2
1431 /* We can share representations and are done. */
Victor Stinnerc3c74152011-10-02 20:39:55 +02001432 _PyUnicode_DATA_ANY(unicode) = _PyUnicode_WSTR(unicode);
Victor Stinner506f5922011-09-28 22:34:18 +02001433 PyUnicode_2BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0';
1434 _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
1435 _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND;
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001436 _PyUnicode_UTF8(unicode) = NULL;
1437 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Victor Stinner506f5922011-09-28 22:34:18 +02001438#else
1439 /* sizeof(wchar_t) == 4 */
Victor Stinnerc3c74152011-10-02 20:39:55 +02001440 _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(
Victor Stinner506f5922011-09-28 22:34:18 +02001441 2 * (_PyUnicode_WSTR_LENGTH(unicode) + 1));
Victor Stinnerc3c74152011-10-02 20:39:55 +02001442 if (!_PyUnicode_DATA_ANY(unicode)) {
Victor Stinner506f5922011-09-28 22:34:18 +02001443 PyErr_NoMemory();
1444 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001445 }
Victor Stinner506f5922011-09-28 22:34:18 +02001446 _PyUnicode_CONVERT_BYTES(wchar_t, Py_UCS2,
1447 _PyUnicode_WSTR(unicode), end,
1448 PyUnicode_2BYTE_DATA(unicode));
1449 PyUnicode_2BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0';
1450 _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
1451 _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND;
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001452 _PyUnicode_UTF8(unicode) = NULL;
1453 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Victor Stinner506f5922011-09-28 22:34:18 +02001454 PyObject_FREE(_PyUnicode_WSTR(unicode));
1455 _PyUnicode_WSTR(unicode) = NULL;
1456 _PyUnicode_WSTR_LENGTH(unicode) = 0;
1457#endif
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001458 }
1459 /* maxchar exeeds 16 bit, wee need 4 bytes for unicode characters */
1460 else {
1461#if SIZEOF_WCHAR_T == 2
1462 /* in case the native representation is 2-bytes, we need to allocate a
1463 new normalized 4-byte version. */
1464 length_wo_surrogates = _PyUnicode_WSTR_LENGTH(unicode) - num_surrogates;
Victor Stinnerc3c74152011-10-02 20:39:55 +02001465 _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(4 * (length_wo_surrogates + 1));
1466 if (!_PyUnicode_DATA_ANY(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001467 PyErr_NoMemory();
1468 return -1;
1469 }
1470 _PyUnicode_LENGTH(unicode) = length_wo_surrogates;
1471 _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND;
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001472 _PyUnicode_UTF8(unicode) = NULL;
1473 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Victor Stinner126c5592011-10-03 04:17:10 +02001474 /* unicode_convert_wchar_to_ucs4() requires a ready string */
1475 _PyUnicode_STATE(unicode).ready = 1;
Victor Stinnerc53be962011-10-02 21:33:54 +02001476 unicode_convert_wchar_to_ucs4(_PyUnicode_WSTR(unicode), end, unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001477 PyObject_FREE(_PyUnicode_WSTR(unicode));
1478 _PyUnicode_WSTR(unicode) = NULL;
1479 _PyUnicode_WSTR_LENGTH(unicode) = 0;
1480#else
1481 assert(num_surrogates == 0);
1482
Victor Stinnerc3c74152011-10-02 20:39:55 +02001483 _PyUnicode_DATA_ANY(unicode) = _PyUnicode_WSTR(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001484 _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001485 _PyUnicode_UTF8(unicode) = NULL;
1486 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001487 _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND;
1488#endif
1489 PyUnicode_4BYTE_DATA(unicode)[_PyUnicode_LENGTH(unicode)] = '\0';
1490 }
1491 _PyUnicode_STATE(unicode).ready = 1;
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001492 assert(_PyUnicode_CheckConsistency(unicode, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001493 return 0;
1494}
1495
Alexander Belopolsky40018472011-02-26 01:02:56 +00001496static void
Victor Stinner9db1a8b2011-10-23 20:04:37 +02001497unicode_dealloc(register PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00001498{
Walter Dörwald16807132007-05-25 13:52:07 +00001499 switch (PyUnicode_CHECK_INTERNED(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00001500 case SSTATE_NOT_INTERNED:
1501 break;
Walter Dörwald16807132007-05-25 13:52:07 +00001502
Benjamin Peterson29060642009-01-31 22:14:21 +00001503 case SSTATE_INTERNED_MORTAL:
1504 /* revive dead object temporarily for DelItem */
1505 Py_REFCNT(unicode) = 3;
Victor Stinner7931d9a2011-11-04 00:22:48 +01001506 if (PyDict_DelItem(interned, unicode) != 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00001507 Py_FatalError(
1508 "deletion of interned string failed");
1509 break;
Walter Dörwald16807132007-05-25 13:52:07 +00001510
Benjamin Peterson29060642009-01-31 22:14:21 +00001511 case SSTATE_INTERNED_IMMORTAL:
1512 Py_FatalError("Immortal interned string died.");
Walter Dörwald16807132007-05-25 13:52:07 +00001513
Benjamin Peterson29060642009-01-31 22:14:21 +00001514 default:
1515 Py_FatalError("Inconsistent interned string state.");
Walter Dörwald16807132007-05-25 13:52:07 +00001516 }
1517
Victor Stinner03490912011-10-03 23:45:12 +02001518 if (_PyUnicode_HAS_WSTR_MEMORY(unicode))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001519 PyObject_DEL(_PyUnicode_WSTR(unicode));
Victor Stinner829c0ad2011-10-03 01:08:02 +02001520 if (_PyUnicode_HAS_UTF8_MEMORY(unicode))
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001521 PyObject_DEL(_PyUnicode_UTF8(unicode));
Victor Stinnerb0a82a62011-12-12 13:08:33 +01001522 if (!PyUnicode_IS_COMPACT(unicode) && _PyUnicode_DATA_ANY(unicode))
1523 PyObject_DEL(_PyUnicode_DATA_ANY(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001524
Victor Stinnerb0a82a62011-12-12 13:08:33 +01001525 Py_TYPE(unicode)->tp_free(unicode);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001526}
1527
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001528#ifdef Py_DEBUG
1529static int
1530unicode_is_singleton(PyObject *unicode)
1531{
1532 PyASCIIObject *ascii = (PyASCIIObject *)unicode;
1533 if (unicode == unicode_empty)
1534 return 1;
1535 if (ascii->state.kind != PyUnicode_WCHAR_KIND && ascii->length == 1)
1536 {
1537 Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, 0);
1538 if (ch < 256 && unicode_latin1[ch] == unicode)
1539 return 1;
1540 }
1541 return 0;
1542}
1543#endif
1544
Alexander Belopolsky40018472011-02-26 01:02:56 +00001545static int
Victor Stinner488fa492011-12-12 00:01:39 +01001546unicode_modifiable(PyObject *unicode)
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001547{
Victor Stinner488fa492011-12-12 00:01:39 +01001548 assert(_PyUnicode_CHECK(unicode));
Victor Stinnerfe226c02011-10-03 03:52:20 +02001549 if (Py_REFCNT(unicode) != 1)
1550 return 0;
Victor Stinner488fa492011-12-12 00:01:39 +01001551 if (_PyUnicode_HASH(unicode) != -1)
1552 return 0;
Victor Stinnerfe226c02011-10-03 03:52:20 +02001553 if (PyUnicode_CHECK_INTERNED(unicode))
1554 return 0;
Victor Stinner488fa492011-12-12 00:01:39 +01001555 if (!PyUnicode_CheckExact(unicode))
1556 return 0;
Victor Stinner77bb47b2011-10-03 20:06:05 +02001557#ifdef Py_DEBUG
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001558 /* singleton refcount is greater than 1 */
1559 assert(!unicode_is_singleton(unicode));
Victor Stinner77bb47b2011-10-03 20:06:05 +02001560#endif
Victor Stinnerfe226c02011-10-03 03:52:20 +02001561 return 1;
1562}
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001563
Victor Stinnerfe226c02011-10-03 03:52:20 +02001564static int
1565unicode_resize(PyObject **p_unicode, Py_ssize_t length)
1566{
1567 PyObject *unicode;
1568 Py_ssize_t old_length;
1569
1570 assert(p_unicode != NULL);
1571 unicode = *p_unicode;
1572
1573 assert(unicode != NULL);
1574 assert(PyUnicode_Check(unicode));
1575 assert(0 <= length);
1576
Victor Stinner910337b2011-10-03 03:20:16 +02001577 if (_PyUnicode_KIND(unicode) == PyUnicode_WCHAR_KIND)
Victor Stinnerfe226c02011-10-03 03:52:20 +02001578 old_length = PyUnicode_WSTR_LENGTH(unicode);
1579 else
1580 old_length = PyUnicode_GET_LENGTH(unicode);
1581 if (old_length == length)
1582 return 0;
1583
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001584 if (length == 0) {
1585 Py_DECREF(*p_unicode);
1586 *p_unicode = unicode_empty;
1587 Py_INCREF(*p_unicode);
1588 return 0;
1589 }
1590
Victor Stinner488fa492011-12-12 00:01:39 +01001591 if (!unicode_modifiable(unicode)) {
Victor Stinnerfe226c02011-10-03 03:52:20 +02001592 PyObject *copy = resize_copy(unicode, length);
1593 if (copy == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00001594 return -1;
Victor Stinnerfe226c02011-10-03 03:52:20 +02001595 Py_DECREF(*p_unicode);
1596 *p_unicode = copy;
Benjamin Peterson29060642009-01-31 22:14:21 +00001597 return 0;
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001598 }
1599
Victor Stinnerfe226c02011-10-03 03:52:20 +02001600 if (PyUnicode_IS_COMPACT(unicode)) {
Victor Stinnerb0a82a62011-12-12 13:08:33 +01001601 PyObject *new_unicode = resize_compact(unicode, length);
1602 if (new_unicode == NULL)
Victor Stinnerfe226c02011-10-03 03:52:20 +02001603 return -1;
Victor Stinnerb0a82a62011-12-12 13:08:33 +01001604 *p_unicode = new_unicode;
Victor Stinnerfe226c02011-10-03 03:52:20 +02001605 return 0;
Benjamin Peterson4bfce8f2011-10-03 19:35:07 -04001606 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02001607 return resize_inplace(unicode, length);
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001608}
1609
Alexander Belopolsky40018472011-02-26 01:02:56 +00001610int
Victor Stinnerfe226c02011-10-03 03:52:20 +02001611PyUnicode_Resize(PyObject **p_unicode, Py_ssize_t length)
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +00001612{
Victor Stinnerfe226c02011-10-03 03:52:20 +02001613 PyObject *unicode;
1614 if (p_unicode == NULL) {
1615 PyErr_BadInternalCall();
1616 return -1;
1617 }
1618 unicode = *p_unicode;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001619 if (unicode == NULL || !PyUnicode_Check(unicode) || length < 0)
Victor Stinnerfe226c02011-10-03 03:52:20 +02001620 {
1621 PyErr_BadInternalCall();
1622 return -1;
1623 }
1624 return unicode_resize(p_unicode, length);
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +00001625}
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001626
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001627static int
Victor Stinner1b487b42012-05-03 12:29:04 +02001628unicode_widen(PyObject **p_unicode, Py_ssize_t length,
1629 unsigned int maxchar)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001630{
1631 PyObject *result;
1632 assert(PyUnicode_IS_READY(*p_unicode));
Victor Stinner1b487b42012-05-03 12:29:04 +02001633 assert(length <= PyUnicode_GET_LENGTH(*p_unicode));
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001634 if (maxchar <= PyUnicode_MAX_CHAR_VALUE(*p_unicode))
1635 return 0;
1636 result = PyUnicode_New(PyUnicode_GET_LENGTH(*p_unicode),
1637 maxchar);
1638 if (result == NULL)
1639 return -1;
Victor Stinnerd3f08822012-05-29 12:57:52 +02001640 _PyUnicode_FastCopyCharacters(result, 0, *p_unicode, 0, length);
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001641 Py_DECREF(*p_unicode);
1642 *p_unicode = result;
1643 return 0;
1644}
1645
1646static int
1647unicode_putchar(PyObject **p_unicode, Py_ssize_t *pos,
1648 Py_UCS4 ch)
1649{
Victor Stinner15e9ed22012-02-22 13:36:20 +01001650 assert(ch <= MAX_UNICODE);
Victor Stinner1b487b42012-05-03 12:29:04 +02001651 if (unicode_widen(p_unicode, *pos, ch) < 0)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001652 return -1;
1653 PyUnicode_WRITE(PyUnicode_KIND(*p_unicode),
1654 PyUnicode_DATA(*p_unicode),
1655 (*pos)++, ch);
1656 return 0;
1657}
1658
Victor Stinnerc5166102012-02-22 13:55:02 +01001659/* Copy a ASCII or latin1 char* string into a Python Unicode string.
Victor Stinnerc5166102012-02-22 13:55:02 +01001660
Victor Stinnerb429d3b2012-02-22 21:22:20 +01001661 WARNING: The function doesn't copy the terminating null character and
1662 doesn't check the maximum character (may write a latin1 character in an
1663 ASCII string). */
Victor Stinner184252a2012-06-16 02:57:41 +02001664static void
1665unicode_write_cstr(PyObject *unicode, Py_ssize_t index,
1666 const char *str, Py_ssize_t len)
Victor Stinnerc5166102012-02-22 13:55:02 +01001667{
1668 enum PyUnicode_Kind kind = PyUnicode_KIND(unicode);
1669 void *data = PyUnicode_DATA(unicode);
Victor Stinner184252a2012-06-16 02:57:41 +02001670 const char *end = str + len;
Victor Stinnerc5166102012-02-22 13:55:02 +01001671
1672 switch (kind) {
1673 case PyUnicode_1BYTE_KIND: {
Victor Stinnerc5166102012-02-22 13:55:02 +01001674 assert(index + len <= PyUnicode_GET_LENGTH(unicode));
Antoine Pitrouba6bafc2012-02-22 16:41:50 +01001675 memcpy((char *) data + index, str, len);
Victor Stinner184252a2012-06-16 02:57:41 +02001676 break;
Victor Stinnerc5166102012-02-22 13:55:02 +01001677 }
1678 case PyUnicode_2BYTE_KIND: {
1679 Py_UCS2 *start = (Py_UCS2 *)data + index;
1680 Py_UCS2 *ucs2 = start;
1681 assert(index <= PyUnicode_GET_LENGTH(unicode));
1682
Victor Stinner184252a2012-06-16 02:57:41 +02001683 for (; str < end; ++ucs2, ++str)
Victor Stinnerc5166102012-02-22 13:55:02 +01001684 *ucs2 = (Py_UCS2)*str;
1685
1686 assert((ucs2 - start) <= PyUnicode_GET_LENGTH(unicode));
Victor Stinner184252a2012-06-16 02:57:41 +02001687 break;
Victor Stinnerc5166102012-02-22 13:55:02 +01001688 }
1689 default: {
1690 Py_UCS4 *start = (Py_UCS4 *)data + index;
1691 Py_UCS4 *ucs4 = start;
1692 assert(kind == PyUnicode_4BYTE_KIND);
1693 assert(index <= PyUnicode_GET_LENGTH(unicode));
1694
Victor Stinner184252a2012-06-16 02:57:41 +02001695 for (; str < end; ++ucs4, ++str)
Victor Stinnerc5166102012-02-22 13:55:02 +01001696 *ucs4 = (Py_UCS4)*str;
1697
1698 assert((ucs4 - start) <= PyUnicode_GET_LENGTH(unicode));
Victor Stinnerc5166102012-02-22 13:55:02 +01001699 }
1700 }
1701}
1702
1703
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001704static PyObject*
1705get_latin1_char(unsigned char ch)
1706{
Victor Stinnera464fc12011-10-02 20:39:30 +02001707 PyObject *unicode = unicode_latin1[ch];
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001708 if (!unicode) {
Victor Stinnera464fc12011-10-02 20:39:30 +02001709 unicode = PyUnicode_New(1, ch);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001710 if (!unicode)
1711 return NULL;
1712 PyUnicode_1BYTE_DATA(unicode)[0] = ch;
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001713 assert(_PyUnicode_CheckConsistency(unicode, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001714 unicode_latin1[ch] = unicode;
1715 }
1716 Py_INCREF(unicode);
Victor Stinnera464fc12011-10-02 20:39:30 +02001717 return unicode;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001718}
1719
Alexander Belopolsky40018472011-02-26 01:02:56 +00001720PyObject *
1721PyUnicode_FromUnicode(const Py_UNICODE *u, Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00001722{
Victor Stinner9db1a8b2011-10-23 20:04:37 +02001723 PyObject *unicode;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001724 Py_UCS4 maxchar = 0;
1725 Py_ssize_t num_surrogates;
1726
1727 if (u == NULL)
1728 return (PyObject*)_PyUnicode_New(size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001729
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001730 /* If the Unicode data is known at construction time, we can apply
1731 some optimizations which share commonly used objects. */
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001732
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001733 /* Optimization for empty strings */
1734 if (size == 0 && unicode_empty != NULL) {
1735 Py_INCREF(unicode_empty);
Victor Stinnera464fc12011-10-02 20:39:30 +02001736 return unicode_empty;
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001737 }
Tim Petersced69f82003-09-16 20:30:58 +00001738
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001739 /* Single character Unicode objects in the Latin-1 range are
1740 shared when using this constructor */
1741 if (size == 1 && *u < 256)
1742 return get_latin1_char((unsigned char)*u);
1743
1744 /* If not empty and not single character, copy the Unicode data
1745 into the new object */
Victor Stinnerd8f65102011-09-29 19:43:17 +02001746 if (find_maxchar_surrogates(u, u + size,
1747 &maxchar, &num_surrogates) == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001748 return NULL;
1749
Victor Stinner8faf8212011-12-08 22:14:11 +01001750 unicode = PyUnicode_New(size - num_surrogates, maxchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001751 if (!unicode)
1752 return NULL;
1753
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001754 switch (PyUnicode_KIND(unicode)) {
1755 case PyUnicode_1BYTE_KIND:
Victor Stinnerfb5f5f22011-09-28 21:39:49 +02001756 _PyUnicode_CONVERT_BYTES(Py_UNICODE, unsigned char,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001757 u, u + size, PyUnicode_1BYTE_DATA(unicode));
1758 break;
1759 case PyUnicode_2BYTE_KIND:
1760#if Py_UNICODE_SIZE == 2
1761 Py_MEMCPY(PyUnicode_2BYTE_DATA(unicode), u, size * 2);
1762#else
Victor Stinnerfb5f5f22011-09-28 21:39:49 +02001763 _PyUnicode_CONVERT_BYTES(Py_UNICODE, Py_UCS2,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001764 u, u + size, PyUnicode_2BYTE_DATA(unicode));
1765#endif
1766 break;
1767 case PyUnicode_4BYTE_KIND:
1768#if SIZEOF_WCHAR_T == 2
1769 /* This is the only case which has to process surrogates, thus
1770 a simple copy loop is not enough and we need a function. */
Victor Stinnerc53be962011-10-02 21:33:54 +02001771 unicode_convert_wchar_to_ucs4(u, u + size, unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001772#else
1773 assert(num_surrogates == 0);
1774 Py_MEMCPY(PyUnicode_4BYTE_DATA(unicode), u, size * 4);
1775#endif
1776 break;
1777 default:
1778 assert(0 && "Impossible state");
1779 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00001780
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001781 return unicode_result(unicode);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001782}
1783
Alexander Belopolsky40018472011-02-26 01:02:56 +00001784PyObject *
1785PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size)
Walter Dörwaldacaa5a12007-05-05 12:00:46 +00001786{
Benjamin Peterson14339b62009-01-31 16:36:08 +00001787 if (size < 0) {
1788 PyErr_SetString(PyExc_SystemError,
Benjamin Peterson29060642009-01-31 22:14:21 +00001789 "Negative size passed to PyUnicode_FromStringAndSize");
Benjamin Peterson14339b62009-01-31 16:36:08 +00001790 return NULL;
1791 }
Victor Stinnera1d12bb2011-12-11 21:53:09 +01001792 if (u != NULL)
1793 return PyUnicode_DecodeUTF8Stateful(u, size, NULL, NULL);
1794 else
1795 return (PyObject *)_PyUnicode_New(size);
Walter Dörwaldacaa5a12007-05-05 12:00:46 +00001796}
1797
Alexander Belopolsky40018472011-02-26 01:02:56 +00001798PyObject *
1799PyUnicode_FromString(const char *u)
Walter Dörwaldd2034312007-05-18 16:29:38 +00001800{
1801 size_t size = strlen(u);
1802 if (size > PY_SSIZE_T_MAX) {
1803 PyErr_SetString(PyExc_OverflowError, "input too long");
1804 return NULL;
1805 }
Victor Stinnera1d12bb2011-12-11 21:53:09 +01001806 return PyUnicode_DecodeUTF8Stateful(u, (Py_ssize_t)size, NULL, NULL);
Walter Dörwaldd2034312007-05-18 16:29:38 +00001807}
1808
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001809PyObject *
1810_PyUnicode_FromId(_Py_Identifier *id)
1811{
1812 if (!id->object) {
Victor Stinnerd1cd99b2012-02-07 23:05:55 +01001813 id->object = PyUnicode_DecodeUTF8Stateful(id->string,
1814 strlen(id->string),
1815 NULL, NULL);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001816 if (!id->object)
1817 return NULL;
1818 PyUnicode_InternInPlace(&id->object);
1819 assert(!id->next);
1820 id->next = static_strings;
1821 static_strings = id;
1822 }
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001823 return id->object;
1824}
1825
1826void
1827_PyUnicode_ClearStaticStrings()
1828{
1829 _Py_Identifier *i;
1830 for (i = static_strings; i; i = i->next) {
1831 Py_DECREF(i->object);
1832 i->object = NULL;
1833 i->next = NULL;
1834 }
1835}
1836
Benjamin Peterson0df54292012-03-26 14:50:32 -04001837/* Internal function, doesn't check maximum character */
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001838
Victor Stinnerd3f08822012-05-29 12:57:52 +02001839PyObject*
1840_PyUnicode_FromASCII(const char *buffer, Py_ssize_t size)
Victor Stinner702c7342011-10-05 13:50:52 +02001841{
Victor Stinnerd3f08822012-05-29 12:57:52 +02001842 const unsigned char *s = (const unsigned char *)buffer;
Victor Stinner785938e2011-12-11 20:09:03 +01001843 PyObject *unicode;
Victor Stinnere6b2d442011-12-11 21:54:30 +01001844 if (size == 1) {
Victor Stinner0617b6e2011-10-05 23:26:01 +02001845#ifdef Py_DEBUG
Victor Stinnere6b2d442011-12-11 21:54:30 +01001846 assert(s[0] < 128);
Victor Stinner0617b6e2011-10-05 23:26:01 +02001847#endif
Antoine Pitrou7c46da72011-10-06 22:07:51 +02001848 return get_latin1_char(s[0]);
Victor Stinnere6b2d442011-12-11 21:54:30 +01001849 }
Victor Stinner785938e2011-12-11 20:09:03 +01001850 unicode = PyUnicode_New(size, 127);
1851 if (!unicode)
Victor Stinner702c7342011-10-05 13:50:52 +02001852 return NULL;
Victor Stinner785938e2011-12-11 20:09:03 +01001853 memcpy(PyUnicode_1BYTE_DATA(unicode), s, size);
1854 assert(_PyUnicode_CheckConsistency(unicode, 1));
1855 return unicode;
Victor Stinner702c7342011-10-05 13:50:52 +02001856}
1857
Victor Stinnerc80d6d22011-10-05 14:13:28 +02001858static Py_UCS4
1859kind_maxchar_limit(unsigned int kind)
1860{
Benjamin Petersonead6b532011-12-20 17:23:42 -06001861 switch (kind) {
Victor Stinnerc80d6d22011-10-05 14:13:28 +02001862 case PyUnicode_1BYTE_KIND:
1863 return 0x80;
1864 case PyUnicode_2BYTE_KIND:
1865 return 0x100;
1866 case PyUnicode_4BYTE_KIND:
1867 return 0x10000;
1868 default:
1869 assert(0 && "invalid kind");
Victor Stinner8faf8212011-12-08 22:14:11 +01001870 return MAX_UNICODE;
Victor Stinnerc80d6d22011-10-05 14:13:28 +02001871 }
1872}
1873
Victor Stinnere6abb482012-05-02 01:15:40 +02001874Py_LOCAL_INLINE(Py_UCS4)
1875align_maxchar(Py_UCS4 maxchar)
1876{
1877 if (maxchar <= 127)
1878 return 127;
1879 else if (maxchar <= 255)
1880 return 255;
1881 else if (maxchar <= 65535)
1882 return 65535;
1883 else
1884 return MAX_UNICODE;
1885}
1886
Victor Stinner702c7342011-10-05 13:50:52 +02001887static PyObject*
Victor Stinnere57b1c02011-09-28 22:20:48 +02001888_PyUnicode_FromUCS1(const unsigned char* u, Py_ssize_t size)
Mark Dickinson081dfee2009-03-18 14:47:41 +00001889{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001890 PyObject *res;
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001891 unsigned char max_char;
Victor Stinnerb9275c12011-10-05 14:01:42 +02001892
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001893 if (size == 0) {
1894 Py_INCREF(unicode_empty);
1895 return unicode_empty;
1896 }
1897 assert(size > 0);
Antoine Pitrou7c46da72011-10-06 22:07:51 +02001898 if (size == 1)
1899 return get_latin1_char(u[0]);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001900
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02001901 max_char = ucs1lib_find_max_char(u, u + size);
Victor Stinnerb9275c12011-10-05 14:01:42 +02001902 res = PyUnicode_New(size, max_char);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001903 if (!res)
1904 return NULL;
1905 memcpy(PyUnicode_1BYTE_DATA(res), u, size);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001906 assert(_PyUnicode_CheckConsistency(res, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001907 return res;
Mark Dickinson081dfee2009-03-18 14:47:41 +00001908}
1909
Victor Stinnere57b1c02011-09-28 22:20:48 +02001910static PyObject*
1911_PyUnicode_FromUCS2(const Py_UCS2 *u, Py_ssize_t size)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001912{
1913 PyObject *res;
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001914 Py_UCS2 max_char;
Victor Stinnerb9275c12011-10-05 14:01:42 +02001915
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001916 if (size == 0) {
1917 Py_INCREF(unicode_empty);
1918 return unicode_empty;
1919 }
1920 assert(size > 0);
Victor Stinnerb6cd0142012-05-03 02:17:04 +02001921 if (size == 1) {
1922 Py_UCS4 ch = u[0];
1923 if (ch < 256)
1924 return get_latin1_char((unsigned char)ch);
1925
1926 res = PyUnicode_New(1, ch);
1927 if (res == NULL)
1928 return NULL;
1929 PyUnicode_WRITE(PyUnicode_KIND(res), PyUnicode_DATA(res), 0, ch);
1930 assert(_PyUnicode_CheckConsistency(res, 1));
1931 return res;
1932 }
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001933
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02001934 max_char = ucs2lib_find_max_char(u, u + size);
Victor Stinnerb9275c12011-10-05 14:01:42 +02001935 res = PyUnicode_New(size, max_char);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001936 if (!res)
1937 return NULL;
Victor Stinnerb9275c12011-10-05 14:01:42 +02001938 if (max_char >= 256)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001939 memcpy(PyUnicode_2BYTE_DATA(res), u, sizeof(Py_UCS2)*size);
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02001940 else {
1941 _PyUnicode_CONVERT_BYTES(
1942 Py_UCS2, Py_UCS1, u, u + size, PyUnicode_1BYTE_DATA(res));
1943 }
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001944 assert(_PyUnicode_CheckConsistency(res, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001945 return res;
1946}
1947
Victor Stinnere57b1c02011-09-28 22:20:48 +02001948static PyObject*
1949_PyUnicode_FromUCS4(const Py_UCS4 *u, Py_ssize_t size)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001950{
1951 PyObject *res;
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001952 Py_UCS4 max_char;
Victor Stinnerb9275c12011-10-05 14:01:42 +02001953
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001954 if (size == 0) {
1955 Py_INCREF(unicode_empty);
1956 return unicode_empty;
1957 }
1958 assert(size > 0);
Victor Stinnerb6cd0142012-05-03 02:17:04 +02001959 if (size == 1) {
1960 Py_UCS4 ch = u[0];
1961 if (ch < 256)
1962 return get_latin1_char((unsigned char)ch);
1963
1964 res = PyUnicode_New(1, ch);
1965 if (res == NULL)
1966 return NULL;
1967 PyUnicode_WRITE(PyUnicode_KIND(res), PyUnicode_DATA(res), 0, ch);
1968 assert(_PyUnicode_CheckConsistency(res, 1));
1969 return res;
1970 }
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001971
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02001972 max_char = ucs4lib_find_max_char(u, u + size);
Victor Stinnerb9275c12011-10-05 14:01:42 +02001973 res = PyUnicode_New(size, max_char);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001974 if (!res)
1975 return NULL;
Antoine Pitrou950468e2011-10-11 22:45:48 +02001976 if (max_char < 256)
1977 _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS1, u, u + size,
1978 PyUnicode_1BYTE_DATA(res));
1979 else if (max_char < 0x10000)
1980 _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS2, u, u + size,
1981 PyUnicode_2BYTE_DATA(res));
1982 else
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001983 memcpy(PyUnicode_4BYTE_DATA(res), u, sizeof(Py_UCS4)*size);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001984 assert(_PyUnicode_CheckConsistency(res, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001985 return res;
1986}
1987
1988PyObject*
1989PyUnicode_FromKindAndData(int kind, const void *buffer, Py_ssize_t size)
1990{
Victor Stinnercfed46e2011-11-22 01:29:14 +01001991 if (size < 0) {
1992 PyErr_SetString(PyExc_ValueError, "size must be positive");
1993 return NULL;
1994 }
Benjamin Petersonead6b532011-12-20 17:23:42 -06001995 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001996 case PyUnicode_1BYTE_KIND:
Victor Stinnere57b1c02011-09-28 22:20:48 +02001997 return _PyUnicode_FromUCS1(buffer, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001998 case PyUnicode_2BYTE_KIND:
Victor Stinnere57b1c02011-09-28 22:20:48 +02001999 return _PyUnicode_FromUCS2(buffer, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002000 case PyUnicode_4BYTE_KIND:
Victor Stinnere57b1c02011-09-28 22:20:48 +02002001 return _PyUnicode_FromUCS4(buffer, size);
Victor Stinnerb9275c12011-10-05 14:01:42 +02002002 default:
Victor Stinnerb9275c12011-10-05 14:01:42 +02002003 PyErr_SetString(PyExc_SystemError, "invalid kind");
2004 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002005 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002006}
2007
Victor Stinnerece58de2012-04-23 23:36:38 +02002008Py_UCS4
2009_PyUnicode_FindMaxChar(PyObject *unicode, Py_ssize_t start, Py_ssize_t end)
2010{
2011 enum PyUnicode_Kind kind;
2012 void *startptr, *endptr;
2013
2014 assert(PyUnicode_IS_READY(unicode));
2015 assert(0 <= start);
2016 assert(end <= PyUnicode_GET_LENGTH(unicode));
2017 assert(start <= end);
2018
2019 if (start == 0 && end == PyUnicode_GET_LENGTH(unicode))
2020 return PyUnicode_MAX_CHAR_VALUE(unicode);
2021
2022 if (start == end)
2023 return 127;
2024
Victor Stinner94d558b2012-04-27 22:26:58 +02002025 if (PyUnicode_IS_ASCII(unicode))
2026 return 127;
2027
Victor Stinnerece58de2012-04-23 23:36:38 +02002028 kind = PyUnicode_KIND(unicode);
Benjamin Petersonf3b7d862012-04-23 18:07:01 -04002029 startptr = PyUnicode_DATA(unicode);
Benjamin Petersonb9f4c9d2012-04-23 21:45:40 -04002030 endptr = (char *)startptr + end * kind;
2031 startptr = (char *)startptr + start * kind;
Benjamin Peterson2844a7a2012-04-23 18:00:25 -04002032 switch(kind) {
2033 case PyUnicode_1BYTE_KIND:
2034 return ucs1lib_find_max_char(startptr, endptr);
2035 case PyUnicode_2BYTE_KIND:
2036 return ucs2lib_find_max_char(startptr, endptr);
2037 case PyUnicode_4BYTE_KIND:
2038 return ucs4lib_find_max_char(startptr, endptr);
Victor Stinnerece58de2012-04-23 23:36:38 +02002039 default:
Benjamin Peterson2844a7a2012-04-23 18:00:25 -04002040 assert(0);
2041 return 0;
Victor Stinnerece58de2012-04-23 23:36:38 +02002042 }
2043}
2044
Victor Stinner25a4b292011-10-06 12:31:55 +02002045/* Ensure that a string uses the most efficient storage, if it is not the
2046 case: create a new string with of the right kind. Write NULL into *p_unicode
2047 on error. */
Antoine Pitrou53bb5482011-10-10 23:49:24 +02002048static void
Victor Stinner25a4b292011-10-06 12:31:55 +02002049unicode_adjust_maxchar(PyObject **p_unicode)
2050{
2051 PyObject *unicode, *copy;
2052 Py_UCS4 max_char;
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002053 Py_ssize_t len;
Victor Stinner25a4b292011-10-06 12:31:55 +02002054 unsigned int kind;
2055
2056 assert(p_unicode != NULL);
2057 unicode = *p_unicode;
2058 assert(PyUnicode_IS_READY(unicode));
2059 if (PyUnicode_IS_ASCII(unicode))
2060 return;
2061
2062 len = PyUnicode_GET_LENGTH(unicode);
2063 kind = PyUnicode_KIND(unicode);
2064 if (kind == PyUnicode_1BYTE_KIND) {
2065 const Py_UCS1 *u = PyUnicode_1BYTE_DATA(unicode);
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002066 max_char = ucs1lib_find_max_char(u, u + len);
2067 if (max_char >= 128)
2068 return;
Victor Stinner25a4b292011-10-06 12:31:55 +02002069 }
2070 else if (kind == PyUnicode_2BYTE_KIND) {
2071 const Py_UCS2 *u = PyUnicode_2BYTE_DATA(unicode);
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002072 max_char = ucs2lib_find_max_char(u, u + len);
2073 if (max_char >= 256)
2074 return;
Victor Stinner25a4b292011-10-06 12:31:55 +02002075 }
2076 else {
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002077 const Py_UCS4 *u = PyUnicode_4BYTE_DATA(unicode);
Victor Stinner25a4b292011-10-06 12:31:55 +02002078 assert(kind == PyUnicode_4BYTE_KIND);
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002079 max_char = ucs4lib_find_max_char(u, u + len);
2080 if (max_char >= 0x10000)
2081 return;
Victor Stinner25a4b292011-10-06 12:31:55 +02002082 }
Victor Stinner25a4b292011-10-06 12:31:55 +02002083 copy = PyUnicode_New(len, max_char);
Victor Stinnerca439ee2012-06-16 03:17:34 +02002084 if (copy != NULL)
2085 _PyUnicode_FastCopyCharacters(copy, 0, unicode, 0, len);
Victor Stinner25a4b292011-10-06 12:31:55 +02002086 Py_DECREF(unicode);
2087 *p_unicode = copy;
2088}
2089
Victor Stinner034f6cf2011-09-30 02:26:44 +02002090PyObject*
Victor Stinnerbf6e5602011-12-12 01:53:47 +01002091_PyUnicode_Copy(PyObject *unicode)
Victor Stinner034f6cf2011-09-30 02:26:44 +02002092{
Victor Stinner87af4f22011-11-21 23:03:47 +01002093 Py_ssize_t length;
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002094 PyObject *copy;
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002095
Victor Stinner034f6cf2011-09-30 02:26:44 +02002096 if (!PyUnicode_Check(unicode)) {
2097 PyErr_BadInternalCall();
2098 return NULL;
2099 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05002100 if (PyUnicode_READY(unicode) == -1)
Victor Stinner034f6cf2011-09-30 02:26:44 +02002101 return NULL;
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002102
Victor Stinner87af4f22011-11-21 23:03:47 +01002103 length = PyUnicode_GET_LENGTH(unicode);
2104 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode));
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002105 if (!copy)
2106 return NULL;
2107 assert(PyUnicode_KIND(copy) == PyUnicode_KIND(unicode));
2108
Victor Stinner87af4f22011-11-21 23:03:47 +01002109 Py_MEMCPY(PyUnicode_DATA(copy), PyUnicode_DATA(unicode),
2110 length * PyUnicode_KIND(unicode));
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02002111 assert(_PyUnicode_CheckConsistency(copy, 1));
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002112 return copy;
Victor Stinner034f6cf2011-09-30 02:26:44 +02002113}
2114
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002115
Victor Stinnerbc603d12011-10-02 01:00:40 +02002116/* Widen Unicode objects to larger buffers. Don't write terminating null
2117 character. Return NULL on error. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002118
2119void*
2120_PyUnicode_AsKind(PyObject *s, unsigned int kind)
2121{
Victor Stinnerbc603d12011-10-02 01:00:40 +02002122 Py_ssize_t len;
2123 void *result;
2124 unsigned int skind;
2125
Benjamin Petersonbac79492012-01-14 13:34:47 -05002126 if (PyUnicode_READY(s) == -1)
Victor Stinnerbc603d12011-10-02 01:00:40 +02002127 return NULL;
2128
2129 len = PyUnicode_GET_LENGTH(s);
2130 skind = PyUnicode_KIND(s);
2131 if (skind >= kind) {
Victor Stinner01698042011-10-04 00:04:26 +02002132 PyErr_SetString(PyExc_SystemError, "invalid widening attempt");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002133 return NULL;
2134 }
Benjamin Petersonead6b532011-12-20 17:23:42 -06002135 switch (kind) {
Victor Stinnerbc603d12011-10-02 01:00:40 +02002136 case PyUnicode_2BYTE_KIND:
2137 result = PyMem_Malloc(len * sizeof(Py_UCS2));
2138 if (!result)
2139 return PyErr_NoMemory();
2140 assert(skind == PyUnicode_1BYTE_KIND);
2141 _PyUnicode_CONVERT_BYTES(
2142 Py_UCS1, Py_UCS2,
2143 PyUnicode_1BYTE_DATA(s),
2144 PyUnicode_1BYTE_DATA(s) + len,
2145 result);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002146 return result;
Victor Stinnerbc603d12011-10-02 01:00:40 +02002147 case PyUnicode_4BYTE_KIND:
2148 result = PyMem_Malloc(len * sizeof(Py_UCS4));
2149 if (!result)
2150 return PyErr_NoMemory();
2151 if (skind == PyUnicode_2BYTE_KIND) {
2152 _PyUnicode_CONVERT_BYTES(
2153 Py_UCS2, Py_UCS4,
2154 PyUnicode_2BYTE_DATA(s),
2155 PyUnicode_2BYTE_DATA(s) + len,
2156 result);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002157 }
Victor Stinnerbc603d12011-10-02 01:00:40 +02002158 else {
2159 assert(skind == PyUnicode_1BYTE_KIND);
2160 _PyUnicode_CONVERT_BYTES(
2161 Py_UCS1, Py_UCS4,
2162 PyUnicode_1BYTE_DATA(s),
2163 PyUnicode_1BYTE_DATA(s) + len,
2164 result);
2165 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002166 return result;
Victor Stinnerbc603d12011-10-02 01:00:40 +02002167 default:
2168 break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002169 }
Victor Stinner01698042011-10-04 00:04:26 +02002170 PyErr_SetString(PyExc_SystemError, "invalid kind");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002171 return NULL;
2172}
2173
2174static Py_UCS4*
2175as_ucs4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize,
2176 int copy_null)
2177{
2178 int kind;
2179 void *data;
2180 Py_ssize_t len, targetlen;
2181 if (PyUnicode_READY(string) == -1)
2182 return NULL;
2183 kind = PyUnicode_KIND(string);
2184 data = PyUnicode_DATA(string);
2185 len = PyUnicode_GET_LENGTH(string);
2186 targetlen = len;
2187 if (copy_null)
2188 targetlen++;
2189 if (!target) {
2190 if (PY_SSIZE_T_MAX / sizeof(Py_UCS4) < targetlen) {
2191 PyErr_NoMemory();
2192 return NULL;
2193 }
2194 target = PyMem_Malloc(targetlen * sizeof(Py_UCS4));
2195 if (!target) {
2196 PyErr_NoMemory();
2197 return NULL;
2198 }
2199 }
2200 else {
2201 if (targetsize < targetlen) {
2202 PyErr_Format(PyExc_SystemError,
2203 "string is longer than the buffer");
2204 if (copy_null && 0 < targetsize)
2205 target[0] = 0;
2206 return NULL;
2207 }
2208 }
Antoine Pitrou950468e2011-10-11 22:45:48 +02002209 if (kind == PyUnicode_1BYTE_KIND) {
2210 Py_UCS1 *start = (Py_UCS1 *) data;
2211 _PyUnicode_CONVERT_BYTES(Py_UCS1, Py_UCS4, start, start + len, target);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002212 }
Antoine Pitrou950468e2011-10-11 22:45:48 +02002213 else if (kind == PyUnicode_2BYTE_KIND) {
2214 Py_UCS2 *start = (Py_UCS2 *) data;
2215 _PyUnicode_CONVERT_BYTES(Py_UCS2, Py_UCS4, start, start + len, target);
2216 }
2217 else {
2218 assert(kind == PyUnicode_4BYTE_KIND);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002219 Py_MEMCPY(target, data, len * sizeof(Py_UCS4));
Antoine Pitrou950468e2011-10-11 22:45:48 +02002220 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002221 if (copy_null)
2222 target[len] = 0;
2223 return target;
2224}
2225
2226Py_UCS4*
2227PyUnicode_AsUCS4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize,
2228 int copy_null)
2229{
Antoine Pitroude20b0b2011-11-10 21:47:38 +01002230 if (target == NULL || targetsize < 0) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002231 PyErr_BadInternalCall();
2232 return NULL;
2233 }
2234 return as_ucs4(string, target, targetsize, copy_null);
2235}
2236
2237Py_UCS4*
2238PyUnicode_AsUCS4Copy(PyObject *string)
2239{
2240 return as_ucs4(string, NULL, 0, 1);
2241}
2242
2243#ifdef HAVE_WCHAR_H
Mark Dickinson081dfee2009-03-18 14:47:41 +00002244
Alexander Belopolsky40018472011-02-26 01:02:56 +00002245PyObject *
2246PyUnicode_FromWideChar(register const wchar_t *w, Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00002247{
Guido van Rossumd57fd912000-03-10 22:53:23 +00002248 if (w == NULL) {
Victor Stinner382955f2011-12-11 21:44:00 +01002249 if (size == 0) {
2250 Py_INCREF(unicode_empty);
2251 return unicode_empty;
2252 }
Benjamin Peterson29060642009-01-31 22:14:21 +00002253 PyErr_BadInternalCall();
2254 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002255 }
2256
Martin v. Löwis790465f2008-04-05 20:41:37 +00002257 if (size == -1) {
2258 size = wcslen(w);
2259 }
2260
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002261 return PyUnicode_FromUnicode(w, size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00002262}
2263
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002264#endif /* HAVE_WCHAR_H */
Mark Dickinson081dfee2009-03-18 14:47:41 +00002265
Walter Dörwald346737f2007-05-31 10:44:43 +00002266static void
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002267makefmt(char *fmt, int longflag, int longlongflag, int size_tflag,
2268 int zeropad, int width, int precision, char c)
Walter Dörwald346737f2007-05-31 10:44:43 +00002269{
Benjamin Peterson14339b62009-01-31 16:36:08 +00002270 *fmt++ = '%';
2271 if (width) {
2272 if (zeropad)
2273 *fmt++ = '0';
2274 fmt += sprintf(fmt, "%d", width);
2275 }
2276 if (precision)
2277 fmt += sprintf(fmt, ".%d", precision);
2278 if (longflag)
2279 *fmt++ = 'l';
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002280 else if (longlongflag) {
2281 /* longlongflag should only ever be nonzero on machines with
2282 HAVE_LONG_LONG defined */
2283#ifdef HAVE_LONG_LONG
2284 char *f = PY_FORMAT_LONG_LONG;
2285 while (*f)
2286 *fmt++ = *f++;
2287#else
2288 /* we shouldn't ever get here */
2289 assert(0);
2290 *fmt++ = 'l';
2291#endif
2292 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002293 else if (size_tflag) {
2294 char *f = PY_FORMAT_SIZE_T;
2295 while (*f)
2296 *fmt++ = *f++;
2297 }
2298 *fmt++ = c;
2299 *fmt = '\0';
Walter Dörwald346737f2007-05-31 10:44:43 +00002300}
2301
Victor Stinner96865452011-03-01 23:44:09 +00002302/* helper for PyUnicode_FromFormatV() */
2303
2304static const char*
2305parse_format_flags(const char *f,
2306 int *p_width, int *p_precision,
2307 int *p_longflag, int *p_longlongflag, int *p_size_tflag)
2308{
2309 int width, precision, longflag, longlongflag, size_tflag;
2310
2311 /* parse the width.precision part, e.g. "%2.5s" => width=2, precision=5 */
2312 f++;
2313 width = 0;
2314 while (Py_ISDIGIT((unsigned)*f))
2315 width = (width*10) + *f++ - '0';
2316 precision = 0;
2317 if (*f == '.') {
2318 f++;
2319 while (Py_ISDIGIT((unsigned)*f))
2320 precision = (precision*10) + *f++ - '0';
2321 if (*f == '%') {
2322 /* "%.3%s" => f points to "3" */
2323 f--;
2324 }
2325 }
2326 if (*f == '\0') {
2327 /* bogus format "%.1" => go backward, f points to "1" */
2328 f--;
2329 }
2330 if (p_width != NULL)
2331 *p_width = width;
2332 if (p_precision != NULL)
2333 *p_precision = precision;
2334
2335 /* Handle %ld, %lu, %lld and %llu. */
2336 longflag = 0;
2337 longlongflag = 0;
Victor Stinnere7faec12011-03-02 00:01:53 +00002338 size_tflag = 0;
Victor Stinner96865452011-03-01 23:44:09 +00002339
2340 if (*f == 'l') {
Victor Stinner6d970f42011-03-02 00:04:25 +00002341 if (f[1] == 'd' || f[1] == 'u' || f[1] == 'i') {
Victor Stinner96865452011-03-01 23:44:09 +00002342 longflag = 1;
2343 ++f;
2344 }
2345#ifdef HAVE_LONG_LONG
2346 else if (f[1] == 'l' &&
Victor Stinner6d970f42011-03-02 00:04:25 +00002347 (f[2] == 'd' || f[2] == 'u' || f[2] == 'i')) {
Victor Stinner96865452011-03-01 23:44:09 +00002348 longlongflag = 1;
2349 f += 2;
2350 }
2351#endif
2352 }
2353 /* handle the size_t flag. */
Victor Stinner6d970f42011-03-02 00:04:25 +00002354 else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u' || f[1] == 'i')) {
Victor Stinner96865452011-03-01 23:44:09 +00002355 size_tflag = 1;
2356 ++f;
2357 }
2358 if (p_longflag != NULL)
2359 *p_longflag = longflag;
2360 if (p_longlongflag != NULL)
2361 *p_longlongflag = longlongflag;
2362 if (p_size_tflag != NULL)
2363 *p_size_tflag = size_tflag;
2364 return f;
2365}
2366
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002367/* maximum number of characters required for output of %ld. 21 characters
2368 allows for 64-bit integers (in decimal) and an optional sign. */
2369#define MAX_LONG_CHARS 21
2370/* maximum number of characters required for output of %lld.
2371 We need at most ceil(log10(256)*SIZEOF_LONG_LONG) digits,
2372 plus 1 for the sign. 53/22 is an upper bound for log10(256). */
2373#define MAX_LONG_LONG_CHARS (2 + (SIZEOF_LONG_LONG*53-1) / 22)
2374
Walter Dörwaldd2034312007-05-18 16:29:38 +00002375PyObject *
2376PyUnicode_FromFormatV(const char *format, va_list vargs)
2377{
Benjamin Peterson14339b62009-01-31 16:36:08 +00002378 va_list count;
2379 Py_ssize_t callcount = 0;
2380 PyObject **callresults = NULL;
2381 PyObject **callresult = NULL;
2382 Py_ssize_t n = 0;
2383 int width = 0;
2384 int precision = 0;
2385 int zeropad;
2386 const char* f;
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02002387 PyObject *string;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002388 /* used by sprintf */
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002389 char fmt[61]; /* should be enough for %0width.precisionlld */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002390 Py_UCS4 maxchar = 127; /* result is ASCII by default */
2391 Py_UCS4 argmaxchar;
2392 Py_ssize_t numbersize = 0;
2393 char *numberresults = NULL;
2394 char *numberresult = NULL;
2395 Py_ssize_t i;
2396 int kind;
2397 void *data;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002398
Victor Stinner4a2b7a12010-08-13 14:03:48 +00002399 Py_VA_COPY(count, vargs);
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002400 /* step 1: count the number of %S/%R/%A/%s format specifications
2401 * (we call PyObject_Str()/PyObject_Repr()/PyObject_ASCII()/
2402 * PyUnicode_DecodeUTF8() for these objects once during step 3 and put the
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002403 * result in an array)
Georg Brandl7597add2011-10-05 16:36:47 +02002404 * also estimate a upper bound for all the number formats in the string,
2405 * numbers will be formatted in step 3 and be kept in a '\0'-separated
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002406 * buffer before putting everything together. */
Benjamin Peterson14339b62009-01-31 16:36:08 +00002407 for (f = format; *f; f++) {
2408 if (*f == '%') {
Victor Stinner96865452011-03-01 23:44:09 +00002409 int longlongflag;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002410 /* skip width or width.precision (eg. "1.2" of "%1.2f") */
2411 f = parse_format_flags(f, &width, NULL, NULL, &longlongflag, NULL);
2412 if (*f == 's' || *f=='S' || *f=='R' || *f=='A' || *f=='V')
2413 ++callcount;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002414
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002415 else if (*f == 'd' || *f=='u' || *f=='i' || *f=='x' || *f=='p') {
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002416#ifdef HAVE_LONG_LONG
2417 if (longlongflag) {
2418 if (width < MAX_LONG_LONG_CHARS)
2419 width = MAX_LONG_LONG_CHARS;
2420 }
2421 else
2422#endif
2423 /* MAX_LONG_CHARS is enough to hold a 64-bit integer,
2424 including sign. Decimal takes the most space. This
2425 isn't enough for octal. If a width is specified we
2426 need more (which we allocate later). */
2427 if (width < MAX_LONG_CHARS)
2428 width = MAX_LONG_CHARS;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002429
2430 /* account for the size + '\0' to separate numbers
2431 inside of the numberresults buffer */
2432 numbersize += (width + 1);
2433 }
2434 }
2435 else if ((unsigned char)*f > 127) {
2436 PyErr_Format(PyExc_ValueError,
2437 "PyUnicode_FromFormatV() expects an ASCII-encoded format "
2438 "string, got a non-ASCII byte: 0x%02x",
2439 (unsigned char)*f);
2440 return NULL;
2441 }
2442 }
2443 /* step 2: allocate memory for the results of
2444 * PyObject_Str()/PyObject_Repr()/PyUnicode_DecodeUTF8() calls */
2445 if (callcount) {
2446 callresults = PyObject_Malloc(sizeof(PyObject *) * callcount);
2447 if (!callresults) {
2448 PyErr_NoMemory();
2449 return NULL;
2450 }
2451 callresult = callresults;
2452 }
2453 /* step 2.5: allocate memory for the results of formating numbers */
2454 if (numbersize) {
2455 numberresults = PyObject_Malloc(numbersize);
2456 if (!numberresults) {
2457 PyErr_NoMemory();
2458 goto fail;
2459 }
2460 numberresult = numberresults;
2461 }
2462
2463 /* step 3: format numbers and figure out how large a buffer we need */
2464 for (f = format; *f; f++) {
2465 if (*f == '%') {
2466 const char* p;
2467 int longflag;
2468 int longlongflag;
2469 int size_tflag;
2470 int numprinted;
2471
2472 p = f;
2473 zeropad = (f[1] == '0');
2474 f = parse_format_flags(f, &width, &precision,
2475 &longflag, &longlongflag, &size_tflag);
2476 switch (*f) {
2477 case 'c':
2478 {
2479 Py_UCS4 ordinal = va_arg(count, int);
Victor Stinnere6abb482012-05-02 01:15:40 +02002480 maxchar = MAX_MAXCHAR(maxchar, ordinal);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002481 n++;
2482 break;
2483 }
2484 case '%':
2485 n++;
2486 break;
2487 case 'i':
2488 case 'd':
2489 makefmt(fmt, longflag, longlongflag, size_tflag, zeropad,
2490 width, precision, *f);
2491 if (longflag)
2492 numprinted = sprintf(numberresult, fmt,
2493 va_arg(count, long));
2494#ifdef HAVE_LONG_LONG
2495 else if (longlongflag)
2496 numprinted = sprintf(numberresult, fmt,
2497 va_arg(count, PY_LONG_LONG));
2498#endif
2499 else if (size_tflag)
2500 numprinted = sprintf(numberresult, fmt,
2501 va_arg(count, Py_ssize_t));
2502 else
2503 numprinted = sprintf(numberresult, fmt,
2504 va_arg(count, int));
2505 n += numprinted;
2506 /* advance by +1 to skip over the '\0' */
2507 numberresult += (numprinted + 1);
2508 assert(*(numberresult - 1) == '\0');
2509 assert(*(numberresult - 2) != '\0');
2510 assert(numprinted >= 0);
2511 assert(numberresult <= numberresults + numbersize);
2512 break;
2513 case 'u':
2514 makefmt(fmt, longflag, longlongflag, size_tflag, zeropad,
2515 width, precision, 'u');
2516 if (longflag)
2517 numprinted = sprintf(numberresult, fmt,
2518 va_arg(count, unsigned long));
2519#ifdef HAVE_LONG_LONG
2520 else if (longlongflag)
2521 numprinted = sprintf(numberresult, fmt,
2522 va_arg(count, unsigned PY_LONG_LONG));
2523#endif
2524 else if (size_tflag)
2525 numprinted = sprintf(numberresult, fmt,
2526 va_arg(count, size_t));
2527 else
2528 numprinted = sprintf(numberresult, fmt,
2529 va_arg(count, unsigned int));
2530 n += numprinted;
2531 numberresult += (numprinted + 1);
2532 assert(*(numberresult - 1) == '\0');
2533 assert(*(numberresult - 2) != '\0');
2534 assert(numprinted >= 0);
2535 assert(numberresult <= numberresults + numbersize);
2536 break;
2537 case 'x':
2538 makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'x');
2539 numprinted = sprintf(numberresult, fmt, va_arg(count, int));
2540 n += numprinted;
2541 numberresult += (numprinted + 1);
2542 assert(*(numberresult - 1) == '\0');
2543 assert(*(numberresult - 2) != '\0');
2544 assert(numprinted >= 0);
2545 assert(numberresult <= numberresults + numbersize);
2546 break;
2547 case 'p':
2548 numprinted = sprintf(numberresult, "%p", va_arg(count, void*));
2549 /* %p is ill-defined: ensure leading 0x. */
2550 if (numberresult[1] == 'X')
2551 numberresult[1] = 'x';
2552 else if (numberresult[1] != 'x') {
2553 memmove(numberresult + 2, numberresult,
2554 strlen(numberresult) + 1);
2555 numberresult[0] = '0';
2556 numberresult[1] = 'x';
2557 numprinted += 2;
2558 }
2559 n += numprinted;
2560 numberresult += (numprinted + 1);
2561 assert(*(numberresult - 1) == '\0');
2562 assert(*(numberresult - 2) != '\0');
2563 assert(numprinted >= 0);
2564 assert(numberresult <= numberresults + numbersize);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002565 break;
2566 case 's':
2567 {
2568 /* UTF-8 */
Georg Brandl780b2a62009-05-05 09:19:59 +00002569 const char *s = va_arg(count, const char*);
Victor Stinnera1d12bb2011-12-11 21:53:09 +01002570 PyObject *str = PyUnicode_DecodeUTF8Stateful(s, strlen(s), "replace", NULL);
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002571 if (!str)
2572 goto fail;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002573 /* since PyUnicode_DecodeUTF8 returns already flexible
2574 unicode objects, there is no need to call ready on them */
2575 argmaxchar = PyUnicode_MAX_CHAR_VALUE(str);
Victor Stinnere6abb482012-05-02 01:15:40 +02002576 maxchar = MAX_MAXCHAR(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002577 n += PyUnicode_GET_LENGTH(str);
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002578 /* Remember the str and switch to the next slot */
2579 *callresult++ = str;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002580 break;
2581 }
2582 case 'U':
2583 {
2584 PyObject *obj = va_arg(count, PyObject *);
Victor Stinner910337b2011-10-03 03:20:16 +02002585 assert(obj && _PyUnicode_CHECK(obj));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002586 if (PyUnicode_READY(obj) == -1)
2587 goto fail;
2588 argmaxchar = PyUnicode_MAX_CHAR_VALUE(obj);
Victor Stinnere6abb482012-05-02 01:15:40 +02002589 maxchar = MAX_MAXCHAR(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002590 n += PyUnicode_GET_LENGTH(obj);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002591 break;
2592 }
2593 case 'V':
2594 {
2595 PyObject *obj = va_arg(count, PyObject *);
2596 const char *str = va_arg(count, const char *);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002597 PyObject *str_obj;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002598 assert(obj || str);
Victor Stinner910337b2011-10-03 03:20:16 +02002599 assert(!obj || _PyUnicode_CHECK(obj));
Victor Stinner2512a8b2011-03-01 22:46:52 +00002600 if (obj) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002601 if (PyUnicode_READY(obj) == -1)
2602 goto fail;
2603 argmaxchar = PyUnicode_MAX_CHAR_VALUE(obj);
Victor Stinnere6abb482012-05-02 01:15:40 +02002604 maxchar = MAX_MAXCHAR(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002605 n += PyUnicode_GET_LENGTH(obj);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002606 *callresult++ = NULL;
2607 }
2608 else {
Victor Stinnera1d12bb2011-12-11 21:53:09 +01002609 str_obj = PyUnicode_DecodeUTF8Stateful(str, strlen(str), "replace", NULL);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002610 if (!str_obj)
2611 goto fail;
Benjamin Petersonbac79492012-01-14 13:34:47 -05002612 if (PyUnicode_READY(str_obj) == -1) {
Victor Stinnere1335c72011-10-04 20:53:03 +02002613 Py_DECREF(str_obj);
2614 goto fail;
2615 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002616 argmaxchar = PyUnicode_MAX_CHAR_VALUE(str_obj);
Victor Stinnere6abb482012-05-02 01:15:40 +02002617 maxchar = MAX_MAXCHAR(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002618 n += PyUnicode_GET_LENGTH(str_obj);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002619 *callresult++ = str_obj;
2620 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002621 break;
2622 }
2623 case 'S':
2624 {
2625 PyObject *obj = va_arg(count, PyObject *);
2626 PyObject *str;
2627 assert(obj);
2628 str = PyObject_Str(obj);
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002629 if (!str)
Benjamin Peterson14339b62009-01-31 16:36:08 +00002630 goto fail;
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002631 if (PyUnicode_READY(str) == -1) {
2632 Py_DECREF(str);
2633 goto fail;
2634 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002635 argmaxchar = PyUnicode_MAX_CHAR_VALUE(str);
Victor Stinnere6abb482012-05-02 01:15:40 +02002636 maxchar = MAX_MAXCHAR(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002637 n += PyUnicode_GET_LENGTH(str);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002638 /* Remember the str and switch to the next slot */
2639 *callresult++ = str;
2640 break;
2641 }
2642 case 'R':
2643 {
2644 PyObject *obj = va_arg(count, PyObject *);
2645 PyObject *repr;
2646 assert(obj);
2647 repr = PyObject_Repr(obj);
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002648 if (!repr)
Benjamin Peterson14339b62009-01-31 16:36:08 +00002649 goto fail;
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002650 if (PyUnicode_READY(repr) == -1) {
2651 Py_DECREF(repr);
2652 goto fail;
2653 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002654 argmaxchar = PyUnicode_MAX_CHAR_VALUE(repr);
Victor Stinnere6abb482012-05-02 01:15:40 +02002655 maxchar = MAX_MAXCHAR(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002656 n += PyUnicode_GET_LENGTH(repr);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002657 /* Remember the repr and switch to the next slot */
2658 *callresult++ = repr;
2659 break;
2660 }
2661 case 'A':
2662 {
2663 PyObject *obj = va_arg(count, PyObject *);
2664 PyObject *ascii;
2665 assert(obj);
2666 ascii = PyObject_ASCII(obj);
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002667 if (!ascii)
Benjamin Peterson14339b62009-01-31 16:36:08 +00002668 goto fail;
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002669 if (PyUnicode_READY(ascii) == -1) {
2670 Py_DECREF(ascii);
2671 goto fail;
2672 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002673 argmaxchar = PyUnicode_MAX_CHAR_VALUE(ascii);
Victor Stinnere6abb482012-05-02 01:15:40 +02002674 maxchar = MAX_MAXCHAR(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002675 n += PyUnicode_GET_LENGTH(ascii);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002676 /* Remember the repr and switch to the next slot */
2677 *callresult++ = ascii;
2678 break;
2679 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002680 default:
2681 /* if we stumble upon an unknown
2682 formatting code, copy the rest of
2683 the format string to the output
2684 string. (we cannot just skip the
2685 code, since there's no way to know
2686 what's in the argument list) */
2687 n += strlen(p);
2688 goto expand;
2689 }
2690 } else
2691 n++;
2692 }
Benjamin Peterson29060642009-01-31 22:14:21 +00002693 expand:
Benjamin Peterson14339b62009-01-31 16:36:08 +00002694 /* step 4: fill the buffer */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002695 /* Since we've analyzed how much space we need,
Benjamin Peterson14339b62009-01-31 16:36:08 +00002696 we don't have to resize the string.
2697 There can be no errors beyond this point. */
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02002698 string = PyUnicode_New(n, maxchar);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002699 if (!string)
2700 goto fail;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002701 kind = PyUnicode_KIND(string);
2702 data = PyUnicode_DATA(string);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002703 callresult = callresults;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002704 numberresult = numberresults;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002705
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002706 for (i = 0, f = format; *f; f++) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00002707 if (*f == '%') {
Victor Stinner96865452011-03-01 23:44:09 +00002708 const char* p;
Victor Stinner96865452011-03-01 23:44:09 +00002709
2710 p = f;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002711 f = parse_format_flags(f, NULL, NULL, NULL, NULL, NULL);
2712 /* checking for == because the last argument could be a empty
2713 string, which causes i to point to end, the assert at the end of
2714 the loop */
2715 assert(i <= PyUnicode_GET_LENGTH(string));
Walter Dörwaldd2034312007-05-18 16:29:38 +00002716
Benjamin Peterson14339b62009-01-31 16:36:08 +00002717 switch (*f) {
2718 case 'c':
Victor Stinner5ed8b2c2011-02-21 21:13:44 +00002719 {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002720 const int ordinal = va_arg(vargs, int);
2721 PyUnicode_WRITE(kind, data, i++, ordinal);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002722 break;
Victor Stinner5ed8b2c2011-02-21 21:13:44 +00002723 }
Victor Stinner6d970f42011-03-02 00:04:25 +00002724 case 'i':
Benjamin Peterson14339b62009-01-31 16:36:08 +00002725 case 'd':
Benjamin Peterson14339b62009-01-31 16:36:08 +00002726 case 'u':
Benjamin Peterson14339b62009-01-31 16:36:08 +00002727 case 'x':
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002728 case 'p':
Victor Stinnerc5166102012-02-22 13:55:02 +01002729 {
Victor Stinner184252a2012-06-16 02:57:41 +02002730 Py_ssize_t len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002731 /* unused, since we already have the result */
2732 if (*f == 'p')
2733 (void) va_arg(vargs, void *);
2734 else
2735 (void) va_arg(vargs, int);
2736 /* extract the result from numberresults and append. */
Victor Stinner184252a2012-06-16 02:57:41 +02002737 len = strlen(numberresult);
2738 unicode_write_cstr(string, i, numberresult, len);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002739 /* skip over the separating '\0' */
Victor Stinner184252a2012-06-16 02:57:41 +02002740 i += len;
2741 numberresult += len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002742 assert(*numberresult == '\0');
2743 numberresult++;
2744 assert(numberresult <= numberresults + numbersize);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002745 break;
Victor Stinnerc5166102012-02-22 13:55:02 +01002746 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002747 case 's':
2748 {
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002749 /* unused, since we already have the result */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002750 Py_ssize_t size;
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002751 (void) va_arg(vargs, char *);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002752 size = PyUnicode_GET_LENGTH(*callresult);
2753 assert(PyUnicode_KIND(*callresult) <= PyUnicode_KIND(string));
Victor Stinnerd3f08822012-05-29 12:57:52 +02002754 _PyUnicode_FastCopyCharacters(string, i, *callresult, 0, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002755 i += size;
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002756 /* We're done with the unicode()/repr() => forget it */
2757 Py_DECREF(*callresult);
2758 /* switch to next unicode()/repr() result */
2759 ++callresult;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002760 break;
2761 }
2762 case 'U':
2763 {
2764 PyObject *obj = va_arg(vargs, PyObject *);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002765 Py_ssize_t size;
2766 assert(PyUnicode_KIND(obj) <= PyUnicode_KIND(string));
2767 size = PyUnicode_GET_LENGTH(obj);
Victor Stinnerd3f08822012-05-29 12:57:52 +02002768 _PyUnicode_FastCopyCharacters(string, i, obj, 0, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002769 i += size;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002770 break;
2771 }
2772 case 'V':
2773 {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002774 Py_ssize_t size;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002775 PyObject *obj = va_arg(vargs, PyObject *);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002776 va_arg(vargs, const char *);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002777 if (obj) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002778 size = PyUnicode_GET_LENGTH(obj);
2779 assert(PyUnicode_KIND(obj) <= PyUnicode_KIND(string));
Victor Stinnerd3f08822012-05-29 12:57:52 +02002780 _PyUnicode_FastCopyCharacters(string, i, obj, 0, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002781 i += size;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002782 } else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002783 size = PyUnicode_GET_LENGTH(*callresult);
2784 assert(PyUnicode_KIND(*callresult) <=
2785 PyUnicode_KIND(string));
Victor Stinnerd3f08822012-05-29 12:57:52 +02002786 _PyUnicode_FastCopyCharacters(string, i, *callresult, 0, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002787 i += size;
Victor Stinner2512a8b2011-03-01 22:46:52 +00002788 Py_DECREF(*callresult);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002789 }
Victor Stinner2512a8b2011-03-01 22:46:52 +00002790 ++callresult;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002791 break;
2792 }
2793 case 'S':
2794 case 'R':
Victor Stinner9a909002010-10-18 20:59:24 +00002795 case 'A':
Benjamin Peterson14339b62009-01-31 16:36:08 +00002796 {
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02002797 Py_ssize_t size = PyUnicode_GET_LENGTH(*callresult);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002798 /* unused, since we already have the result */
2799 (void) va_arg(vargs, PyObject *);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002800 assert(PyUnicode_KIND(*callresult) <= PyUnicode_KIND(string));
Victor Stinnerd3f08822012-05-29 12:57:52 +02002801 _PyUnicode_FastCopyCharacters(string, i, *callresult, 0, size);
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02002802 i += size;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002803 /* We're done with the unicode()/repr() => forget it */
2804 Py_DECREF(*callresult);
2805 /* switch to next unicode()/repr() result */
2806 ++callresult;
2807 break;
2808 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002809 case '%':
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002810 PyUnicode_WRITE(kind, data, i++, '%');
Benjamin Peterson14339b62009-01-31 16:36:08 +00002811 break;
2812 default:
Victor Stinner184252a2012-06-16 02:57:41 +02002813 {
2814 Py_ssize_t len = strlen(p);
2815 unicode_write_cstr(string, i, p, len);
2816 i += len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002817 assert(i == PyUnicode_GET_LENGTH(string));
Benjamin Peterson14339b62009-01-31 16:36:08 +00002818 goto end;
2819 }
Victor Stinner184252a2012-06-16 02:57:41 +02002820 }
Victor Stinner1205f272010-09-11 00:54:47 +00002821 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002822 else {
2823 assert(i < PyUnicode_GET_LENGTH(string));
2824 PyUnicode_WRITE(kind, data, i++, *f);
2825 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002826 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002827 assert(i == PyUnicode_GET_LENGTH(string));
Walter Dörwaldd2034312007-05-18 16:29:38 +00002828
Benjamin Peterson29060642009-01-31 22:14:21 +00002829 end:
Benjamin Peterson14339b62009-01-31 16:36:08 +00002830 if (callresults)
2831 PyObject_Free(callresults);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002832 if (numberresults)
2833 PyObject_Free(numberresults);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01002834 return unicode_result(string);
Benjamin Peterson29060642009-01-31 22:14:21 +00002835 fail:
Benjamin Peterson14339b62009-01-31 16:36:08 +00002836 if (callresults) {
2837 PyObject **callresult2 = callresults;
2838 while (callresult2 < callresult) {
Victor Stinner2512a8b2011-03-01 22:46:52 +00002839 Py_XDECREF(*callresult2);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002840 ++callresult2;
2841 }
2842 PyObject_Free(callresults);
2843 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002844 if (numberresults)
2845 PyObject_Free(numberresults);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002846 return NULL;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002847}
2848
Walter Dörwaldd2034312007-05-18 16:29:38 +00002849PyObject *
2850PyUnicode_FromFormat(const char *format, ...)
2851{
Benjamin Peterson14339b62009-01-31 16:36:08 +00002852 PyObject* ret;
2853 va_list vargs;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002854
2855#ifdef HAVE_STDARG_PROTOTYPES
Benjamin Peterson14339b62009-01-31 16:36:08 +00002856 va_start(vargs, format);
Walter Dörwaldd2034312007-05-18 16:29:38 +00002857#else
Benjamin Peterson14339b62009-01-31 16:36:08 +00002858 va_start(vargs);
Walter Dörwaldd2034312007-05-18 16:29:38 +00002859#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +00002860 ret = PyUnicode_FromFormatV(format, vargs);
2861 va_end(vargs);
2862 return ret;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002863}
2864
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002865#ifdef HAVE_WCHAR_H
2866
Victor Stinner5593d8a2010-10-02 11:11:27 +00002867/* Helper function for PyUnicode_AsWideChar() and PyUnicode_AsWideCharString():
2868 convert a Unicode object to a wide character string.
2869
Victor Stinnerd88d9832011-09-06 02:00:05 +02002870 - If w is NULL: return the number of wide characters (including the null
Victor Stinner5593d8a2010-10-02 11:11:27 +00002871 character) required to convert the unicode object. Ignore size argument.
2872
Victor Stinnerd88d9832011-09-06 02:00:05 +02002873 - Otherwise: return the number of wide characters (excluding the null
Victor Stinner5593d8a2010-10-02 11:11:27 +00002874 character) written into w. Write at most size wide characters (including
Victor Stinnerd88d9832011-09-06 02:00:05 +02002875 the null character). */
Victor Stinner5593d8a2010-10-02 11:11:27 +00002876static Py_ssize_t
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002877unicode_aswidechar(PyObject *unicode,
Victor Stinner137c34c2010-09-29 10:25:54 +00002878 wchar_t *w,
2879 Py_ssize_t size)
2880{
Victor Stinner5593d8a2010-10-02 11:11:27 +00002881 Py_ssize_t res;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002882 const wchar_t *wstr;
2883
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002884 wstr = PyUnicode_AsUnicodeAndSize(unicode, &res);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002885 if (wstr == NULL)
2886 return -1;
2887
Victor Stinner5593d8a2010-10-02 11:11:27 +00002888 if (w != NULL) {
Victor Stinner5593d8a2010-10-02 11:11:27 +00002889 if (size > res)
2890 size = res + 1;
2891 else
2892 res = size;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002893 Py_MEMCPY(w, wstr, size * sizeof(wchar_t));
Victor Stinner5593d8a2010-10-02 11:11:27 +00002894 return res;
2895 }
2896 else
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002897 return res + 1;
Victor Stinner137c34c2010-09-29 10:25:54 +00002898}
2899
2900Py_ssize_t
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00002901PyUnicode_AsWideChar(PyObject *unicode,
Victor Stinner137c34c2010-09-29 10:25:54 +00002902 wchar_t *w,
2903 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00002904{
2905 if (unicode == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002906 PyErr_BadInternalCall();
2907 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002908 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002909 return unicode_aswidechar(unicode, w, size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00002910}
2911
Victor Stinner137c34c2010-09-29 10:25:54 +00002912wchar_t*
Victor Stinnerbeb4135b2010-10-07 01:02:42 +00002913PyUnicode_AsWideCharString(PyObject *unicode,
Victor Stinner137c34c2010-09-29 10:25:54 +00002914 Py_ssize_t *size)
2915{
2916 wchar_t* buffer;
2917 Py_ssize_t buflen;
2918
2919 if (unicode == NULL) {
2920 PyErr_BadInternalCall();
2921 return NULL;
2922 }
2923
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002924 buflen = unicode_aswidechar(unicode, NULL, 0);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002925 if (buflen == -1)
2926 return NULL;
Victor Stinner5593d8a2010-10-02 11:11:27 +00002927 if (PY_SSIZE_T_MAX / sizeof(wchar_t) < buflen) {
Victor Stinner137c34c2010-09-29 10:25:54 +00002928 PyErr_NoMemory();
2929 return NULL;
2930 }
2931
Victor Stinner137c34c2010-09-29 10:25:54 +00002932 buffer = PyMem_MALLOC(buflen * sizeof(wchar_t));
2933 if (buffer == NULL) {
2934 PyErr_NoMemory();
2935 return NULL;
2936 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002937 buflen = unicode_aswidechar(unicode, buffer, buflen);
Stefan Krah8528c312012-08-19 21:52:43 +02002938 if (buflen == -1) {
2939 PyMem_FREE(buffer);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002940 return NULL;
Stefan Krah8528c312012-08-19 21:52:43 +02002941 }
Victor Stinner5593d8a2010-10-02 11:11:27 +00002942 if (size != NULL)
2943 *size = buflen;
Victor Stinner137c34c2010-09-29 10:25:54 +00002944 return buffer;
2945}
2946
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002947#endif /* HAVE_WCHAR_H */
Guido van Rossumd57fd912000-03-10 22:53:23 +00002948
Alexander Belopolsky40018472011-02-26 01:02:56 +00002949PyObject *
2950PyUnicode_FromOrdinal(int ordinal)
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00002951{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002952 PyObject *v;
Victor Stinner8faf8212011-12-08 22:14:11 +01002953 if (ordinal < 0 || ordinal > MAX_UNICODE) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002954 PyErr_SetString(PyExc_ValueError,
2955 "chr() arg not in range(0x110000)");
2956 return NULL;
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00002957 }
Guido van Rossum8ac004e2007-07-15 13:00:05 +00002958
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002959 if (ordinal < 256)
2960 return get_latin1_char(ordinal);
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00002961
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002962 v = PyUnicode_New(1, ordinal);
2963 if (v == NULL)
2964 return NULL;
2965 PyUnicode_WRITE(PyUnicode_KIND(v), PyUnicode_DATA(v), 0, ordinal);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02002966 assert(_PyUnicode_CheckConsistency(v, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002967 return v;
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00002968}
2969
Alexander Belopolsky40018472011-02-26 01:02:56 +00002970PyObject *
2971PyUnicode_FromObject(register PyObject *obj)
Guido van Rossumd57fd912000-03-10 22:53:23 +00002972{
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00002973 /* XXX Perhaps we should make this API an alias of
Benjamin Peterson29060642009-01-31 22:14:21 +00002974 PyObject_Str() instead ?! */
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00002975 if (PyUnicode_CheckExact(obj)) {
Benjamin Petersonbac79492012-01-14 13:34:47 -05002976 if (PyUnicode_READY(obj) == -1)
Victor Stinnerd3a83d52011-10-01 03:09:33 +02002977 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +00002978 Py_INCREF(obj);
2979 return obj;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00002980 }
2981 if (PyUnicode_Check(obj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002982 /* For a Unicode subtype that's not a Unicode object,
2983 return a true Unicode object with the same data. */
Victor Stinnerbf6e5602011-12-12 01:53:47 +01002984 return _PyUnicode_Copy(obj);
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00002985 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00002986 PyErr_Format(PyExc_TypeError,
2987 "Can't convert '%.100s' object to str implicitly",
Christian Heimes90aa7642007-12-19 02:45:37 +00002988 Py_TYPE(obj)->tp_name);
Guido van Rossum98297ee2007-11-06 21:34:58 +00002989 return NULL;
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00002990}
2991
Alexander Belopolsky40018472011-02-26 01:02:56 +00002992PyObject *
2993PyUnicode_FromEncodedObject(register PyObject *obj,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03002994 const char *encoding,
2995 const char *errors)
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00002996{
Antoine Pitroub0fa8312010-09-01 15:10:12 +00002997 Py_buffer buffer;
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00002998 PyObject *v;
Tim Petersced69f82003-09-16 20:30:58 +00002999
Guido van Rossumd57fd912000-03-10 22:53:23 +00003000 if (obj == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00003001 PyErr_BadInternalCall();
3002 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003003 }
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00003004
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003005 /* Decoding bytes objects is the most common case and should be fast */
3006 if (PyBytes_Check(obj)) {
3007 if (PyBytes_GET_SIZE(obj) == 0) {
3008 Py_INCREF(unicode_empty);
Victor Stinnera464fc12011-10-02 20:39:30 +02003009 v = unicode_empty;
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003010 }
3011 else {
3012 v = PyUnicode_Decode(
3013 PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj),
3014 encoding, errors);
3015 }
3016 return v;
3017 }
3018
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00003019 if (PyUnicode_Check(obj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00003020 PyErr_SetString(PyExc_TypeError,
3021 "decoding str is not supported");
3022 return NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +00003023 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00003024
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003025 /* Retrieve a bytes buffer view through the PEP 3118 buffer interface */
3026 if (PyObject_GetBuffer(obj, &buffer, PyBUF_SIMPLE) < 0) {
3027 PyErr_Format(PyExc_TypeError,
3028 "coercing to str: need bytes, bytearray "
3029 "or buffer-like object, %.80s found",
3030 Py_TYPE(obj)->tp_name);
3031 return NULL;
Marc-André Lemburg6871f6a2001-09-20 12:53:16 +00003032 }
Tim Petersced69f82003-09-16 20:30:58 +00003033
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003034 if (buffer.len == 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00003035 Py_INCREF(unicode_empty);
Victor Stinnera464fc12011-10-02 20:39:30 +02003036 v = unicode_empty;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003037 }
Tim Petersced69f82003-09-16 20:30:58 +00003038 else
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003039 v = PyUnicode_Decode((char*) buffer.buf, buffer.len, encoding, errors);
Marc-André Lemburgad7c98e2001-01-17 17:09:53 +00003040
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003041 PyBuffer_Release(&buffer);
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00003042 return v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003043}
3044
Victor Stinner600d3be2010-06-10 12:00:55 +00003045/* Convert encoding to lower case and replace '_' with '-' in order to
Victor Stinner37296e82010-06-10 13:36:23 +00003046 catch e.g. UTF_8. Return 0 on error (encoding is longer than lower_len-1),
3047 1 on success. */
3048static int
3049normalize_encoding(const char *encoding,
3050 char *lower,
3051 size_t lower_len)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003052{
Guido van Rossumdaa251c2007-10-25 23:47:33 +00003053 const char *e;
Victor Stinner600d3be2010-06-10 12:00:55 +00003054 char *l;
3055 char *l_end;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003056
Benjamin Peterson7a6debe2011-10-15 09:25:28 -04003057 if (encoding == NULL) {
3058 strcpy(lower, "utf-8");
3059 return 1;
3060 }
Guido van Rossumdaa251c2007-10-25 23:47:33 +00003061 e = encoding;
3062 l = lower;
Victor Stinner600d3be2010-06-10 12:00:55 +00003063 l_end = &lower[lower_len - 1];
Victor Stinner37296e82010-06-10 13:36:23 +00003064 while (*e) {
3065 if (l == l_end)
3066 return 0;
David Malcolm96960882010-11-05 17:23:41 +00003067 if (Py_ISUPPER(*e)) {
3068 *l++ = Py_TOLOWER(*e++);
Guido van Rossumdaa251c2007-10-25 23:47:33 +00003069 }
3070 else if (*e == '_') {
3071 *l++ = '-';
3072 e++;
3073 }
3074 else {
3075 *l++ = *e++;
3076 }
3077 }
3078 *l = '\0';
Victor Stinner37296e82010-06-10 13:36:23 +00003079 return 1;
Victor Stinner600d3be2010-06-10 12:00:55 +00003080}
3081
Alexander Belopolsky40018472011-02-26 01:02:56 +00003082PyObject *
3083PyUnicode_Decode(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003084 Py_ssize_t size,
3085 const char *encoding,
3086 const char *errors)
Victor Stinner600d3be2010-06-10 12:00:55 +00003087{
3088 PyObject *buffer = NULL, *unicode;
3089 Py_buffer info;
3090 char lower[11]; /* Enough for any encoding shortcut */
3091
Fred Drakee4315f52000-05-09 19:53:39 +00003092 /* Shortcuts for common default encodings */
Victor Stinner37296e82010-06-10 13:36:23 +00003093 if (normalize_encoding(encoding, lower, sizeof(lower))) {
Alexander Belopolsky1d521462011-02-25 19:19:57 +00003094 if ((strcmp(lower, "utf-8") == 0) ||
3095 (strcmp(lower, "utf8") == 0))
Victor Stinnera1d12bb2011-12-11 21:53:09 +01003096 return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL);
Victor Stinner37296e82010-06-10 13:36:23 +00003097 else if ((strcmp(lower, "latin-1") == 0) ||
Alexander Belopolsky1d521462011-02-25 19:19:57 +00003098 (strcmp(lower, "latin1") == 0) ||
Victor Stinner37296e82010-06-10 13:36:23 +00003099 (strcmp(lower, "iso-8859-1") == 0))
3100 return PyUnicode_DecodeLatin1(s, size, errors);
Victor Stinner99b95382011-07-04 14:23:54 +02003101#ifdef HAVE_MBCS
Victor Stinner37296e82010-06-10 13:36:23 +00003102 else if (strcmp(lower, "mbcs") == 0)
3103 return PyUnicode_DecodeMBCS(s, size, errors);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00003104#endif
Victor Stinner37296e82010-06-10 13:36:23 +00003105 else if (strcmp(lower, "ascii") == 0)
3106 return PyUnicode_DecodeASCII(s, size, errors);
3107 else if (strcmp(lower, "utf-16") == 0)
3108 return PyUnicode_DecodeUTF16(s, size, errors, 0);
3109 else if (strcmp(lower, "utf-32") == 0)
3110 return PyUnicode_DecodeUTF32(s, size, errors, 0);
3111 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00003112
3113 /* Decode via the codec registry */
Guido van Rossumbe801ac2007-10-08 03:32:34 +00003114 buffer = NULL;
Antoine Pitrouc3b39242009-01-03 16:59:18 +00003115 if (PyBuffer_FillInfo(&info, NULL, (void *)s, size, 1, PyBUF_FULL_RO) < 0)
Guido van Rossumbe801ac2007-10-08 03:32:34 +00003116 goto onError;
Antoine Pitrouee58fa42008-08-19 18:22:14 +00003117 buffer = PyMemoryView_FromBuffer(&info);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003118 if (buffer == NULL)
3119 goto onError;
3120 unicode = PyCodec_Decode(buffer, encoding, errors);
3121 if (unicode == NULL)
3122 goto onError;
3123 if (!PyUnicode_Check(unicode)) {
3124 PyErr_Format(PyExc_TypeError,
Benjamin Peterson142957c2008-07-04 19:55:29 +00003125 "decoder did not return a str object (type=%.400s)",
Christian Heimes90aa7642007-12-19 02:45:37 +00003126 Py_TYPE(unicode)->tp_name);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003127 Py_DECREF(unicode);
3128 goto onError;
3129 }
3130 Py_DECREF(buffer);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01003131 return unicode_result(unicode);
Tim Petersced69f82003-09-16 20:30:58 +00003132
Benjamin Peterson29060642009-01-31 22:14:21 +00003133 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00003134 Py_XDECREF(buffer);
3135 return NULL;
3136}
3137
Alexander Belopolsky40018472011-02-26 01:02:56 +00003138PyObject *
3139PyUnicode_AsDecodedObject(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003140 const char *encoding,
3141 const char *errors)
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003142{
3143 PyObject *v;
3144
3145 if (!PyUnicode_Check(unicode)) {
3146 PyErr_BadArgument();
3147 goto onError;
3148 }
3149
3150 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003151 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003152
3153 /* Decode via the codec registry */
3154 v = PyCodec_Decode(unicode, encoding, errors);
3155 if (v == NULL)
3156 goto onError;
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01003157 return unicode_result(v);
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003158
Benjamin Peterson29060642009-01-31 22:14:21 +00003159 onError:
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003160 return NULL;
3161}
3162
Alexander Belopolsky40018472011-02-26 01:02:56 +00003163PyObject *
3164PyUnicode_AsDecodedUnicode(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003165 const char *encoding,
3166 const char *errors)
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003167{
3168 PyObject *v;
3169
3170 if (!PyUnicode_Check(unicode)) {
3171 PyErr_BadArgument();
3172 goto onError;
3173 }
3174
3175 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003176 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003177
3178 /* Decode via the codec registry */
3179 v = PyCodec_Decode(unicode, encoding, errors);
3180 if (v == NULL)
3181 goto onError;
3182 if (!PyUnicode_Check(v)) {
3183 PyErr_Format(PyExc_TypeError,
Benjamin Peterson142957c2008-07-04 19:55:29 +00003184 "decoder did not return a str object (type=%.400s)",
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003185 Py_TYPE(v)->tp_name);
3186 Py_DECREF(v);
3187 goto onError;
3188 }
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01003189 return unicode_result(v);
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003190
Benjamin Peterson29060642009-01-31 22:14:21 +00003191 onError:
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003192 return NULL;
3193}
3194
Alexander Belopolsky40018472011-02-26 01:02:56 +00003195PyObject *
3196PyUnicode_Encode(const Py_UNICODE *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003197 Py_ssize_t size,
3198 const char *encoding,
3199 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003200{
3201 PyObject *v, *unicode;
Tim Petersced69f82003-09-16 20:30:58 +00003202
Guido van Rossumd57fd912000-03-10 22:53:23 +00003203 unicode = PyUnicode_FromUnicode(s, size);
3204 if (unicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003205 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003206 v = PyUnicode_AsEncodedString(unicode, encoding, errors);
3207 Py_DECREF(unicode);
3208 return v;
3209}
3210
Alexander Belopolsky40018472011-02-26 01:02:56 +00003211PyObject *
3212PyUnicode_AsEncodedObject(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003213 const char *encoding,
3214 const char *errors)
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003215{
3216 PyObject *v;
3217
3218 if (!PyUnicode_Check(unicode)) {
3219 PyErr_BadArgument();
3220 goto onError;
3221 }
3222
3223 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003224 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003225
3226 /* Encode via the codec registry */
3227 v = PyCodec_Encode(unicode, encoding, errors);
3228 if (v == NULL)
3229 goto onError;
3230 return v;
3231
Benjamin Peterson29060642009-01-31 22:14:21 +00003232 onError:
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003233 return NULL;
3234}
3235
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003236static size_t
3237wcstombs_errorpos(const wchar_t *wstr)
3238{
3239 size_t len;
3240#if SIZEOF_WCHAR_T == 2
3241 wchar_t buf[3];
3242#else
3243 wchar_t buf[2];
3244#endif
3245 char outbuf[MB_LEN_MAX];
3246 const wchar_t *start, *previous;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003247
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003248#if SIZEOF_WCHAR_T == 2
3249 buf[2] = 0;
3250#else
3251 buf[1] = 0;
3252#endif
3253 start = wstr;
3254 while (*wstr != L'\0')
3255 {
3256 previous = wstr;
3257#if SIZEOF_WCHAR_T == 2
3258 if (Py_UNICODE_IS_HIGH_SURROGATE(wstr[0])
3259 && Py_UNICODE_IS_LOW_SURROGATE(wstr[1]))
3260 {
3261 buf[0] = wstr[0];
3262 buf[1] = wstr[1];
3263 wstr += 2;
3264 }
3265 else {
3266 buf[0] = *wstr;
3267 buf[1] = 0;
3268 wstr++;
3269 }
3270#else
3271 buf[0] = *wstr;
3272 wstr++;
3273#endif
3274 len = wcstombs(outbuf, buf, sizeof(outbuf));
Victor Stinner2f197072011-12-17 07:08:30 +01003275 if (len == (size_t)-1)
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003276 return previous - start;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003277 }
3278
3279 /* failed to find the unencodable character */
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003280 return 0;
3281}
3282
Victor Stinner1b579672011-12-17 05:47:23 +01003283static int
3284locale_error_handler(const char *errors, int *surrogateescape)
3285{
3286 if (errors == NULL) {
3287 *surrogateescape = 0;
3288 return 0;
3289 }
3290
3291 if (strcmp(errors, "strict") == 0) {
3292 *surrogateescape = 0;
3293 return 0;
3294 }
3295 if (strcmp(errors, "surrogateescape") == 0) {
3296 *surrogateescape = 1;
3297 return 0;
3298 }
3299 PyErr_Format(PyExc_ValueError,
3300 "only 'strict' and 'surrogateescape' error handlers "
3301 "are supported, not '%s'",
3302 errors);
3303 return -1;
3304}
3305
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003306PyObject *
Victor Stinner1b579672011-12-17 05:47:23 +01003307PyUnicode_EncodeLocale(PyObject *unicode, const char *errors)
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003308{
3309 Py_ssize_t wlen, wlen2;
3310 wchar_t *wstr;
3311 PyObject *bytes = NULL;
3312 char *errmsg;
Victor Stinner1f33f2b2011-12-17 04:45:09 +01003313 PyObject *reason;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003314 PyObject *exc;
3315 size_t error_pos;
Victor Stinner1b579672011-12-17 05:47:23 +01003316 int surrogateescape;
3317
3318 if (locale_error_handler(errors, &surrogateescape) < 0)
3319 return NULL;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003320
3321 wstr = PyUnicode_AsWideCharString(unicode, &wlen);
3322 if (wstr == NULL)
3323 return NULL;
3324
3325 wlen2 = wcslen(wstr);
3326 if (wlen2 != wlen) {
3327 PyMem_Free(wstr);
3328 PyErr_SetString(PyExc_TypeError, "embedded null character");
3329 return NULL;
3330 }
3331
3332 if (surrogateescape) {
3333 /* locale encoding with surrogateescape */
3334 char *str;
3335
3336 str = _Py_wchar2char(wstr, &error_pos);
3337 if (str == NULL) {
3338 if (error_pos == (size_t)-1) {
3339 PyErr_NoMemory();
3340 PyMem_Free(wstr);
3341 return NULL;
3342 }
3343 else {
3344 goto encode_error;
3345 }
3346 }
3347 PyMem_Free(wstr);
3348
3349 bytes = PyBytes_FromString(str);
3350 PyMem_Free(str);
3351 }
3352 else {
3353 size_t len, len2;
3354
3355 len = wcstombs(NULL, wstr, 0);
3356 if (len == (size_t)-1) {
Victor Stinner2f197072011-12-17 07:08:30 +01003357 error_pos = (size_t)-1;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003358 goto encode_error;
3359 }
3360
3361 bytes = PyBytes_FromStringAndSize(NULL, len);
3362 if (bytes == NULL) {
3363 PyMem_Free(wstr);
3364 return NULL;
3365 }
3366
3367 len2 = wcstombs(PyBytes_AS_STRING(bytes), wstr, len+1);
3368 if (len2 == (size_t)-1 || len2 > len) {
Victor Stinner2f197072011-12-17 07:08:30 +01003369 error_pos = (size_t)-1;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003370 goto encode_error;
3371 }
3372 PyMem_Free(wstr);
3373 }
3374 return bytes;
3375
3376encode_error:
3377 errmsg = strerror(errno);
3378 assert(errmsg != NULL);
Victor Stinner2f197072011-12-17 07:08:30 +01003379
3380 if (error_pos == (size_t)-1)
3381 error_pos = wcstombs_errorpos(wstr);
3382
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003383 PyMem_Free(wstr);
3384 Py_XDECREF(bytes);
3385
Victor Stinner2f197072011-12-17 07:08:30 +01003386 if (errmsg != NULL) {
3387 size_t errlen;
3388 wstr = _Py_char2wchar(errmsg, &errlen);
3389 if (wstr != NULL) {
3390 reason = PyUnicode_FromWideChar(wstr, errlen);
3391 PyMem_Free(wstr);
3392 } else
3393 errmsg = NULL;
3394 }
3395 if (errmsg == NULL)
Victor Stinner1f33f2b2011-12-17 04:45:09 +01003396 reason = PyUnicode_FromString(
3397 "wcstombs() encountered an unencodable "
3398 "wide character");
3399 if (reason == NULL)
3400 return NULL;
3401
3402 exc = PyObject_CallFunction(PyExc_UnicodeEncodeError, "sOnnO",
3403 "locale", unicode,
3404 (Py_ssize_t)error_pos,
3405 (Py_ssize_t)(error_pos+1),
3406 reason);
3407 Py_DECREF(reason);
3408 if (exc != NULL) {
3409 PyCodec_StrictErrors(exc);
3410 Py_XDECREF(exc);
3411 }
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003412 return NULL;
3413}
3414
Victor Stinnerad158722010-10-27 00:25:46 +00003415PyObject *
3416PyUnicode_EncodeFSDefault(PyObject *unicode)
Victor Stinnerae6265f2010-05-15 16:27:27 +00003417{
Victor Stinner99b95382011-07-04 14:23:54 +02003418#ifdef HAVE_MBCS
Victor Stinnerac931b12011-11-20 18:27:03 +01003419 return PyUnicode_EncodeCodePage(CP_ACP, unicode, NULL);
Victor Stinnerad158722010-10-27 00:25:46 +00003420#elif defined(__APPLE__)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003421 return _PyUnicode_AsUTF8String(unicode, "surrogateescape");
Victor Stinnerad158722010-10-27 00:25:46 +00003422#else
Victor Stinner793b5312011-04-27 00:24:21 +02003423 PyInterpreterState *interp = PyThreadState_GET()->interp;
3424 /* Bootstrap check: if the filesystem codec is implemented in Python, we
3425 cannot use it to encode and decode filenames before it is loaded. Load
3426 the Python codec requires to encode at least its own filename. Use the C
3427 version of the locale codec until the codec registry is initialized and
3428 the Python codec is loaded.
3429
3430 Py_FileSystemDefaultEncoding is shared between all interpreters, we
3431 cannot only rely on it: check also interp->fscodec_initialized for
3432 subinterpreters. */
3433 if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) {
Victor Stinnerae6265f2010-05-15 16:27:27 +00003434 return PyUnicode_AsEncodedString(unicode,
3435 Py_FileSystemDefaultEncoding,
3436 "surrogateescape");
Victor Stinnerc39211f2010-09-29 16:35:47 +00003437 }
3438 else {
Victor Stinner1b579672011-12-17 05:47:23 +01003439 return PyUnicode_EncodeLocale(unicode, "surrogateescape");
Victor Stinnerc39211f2010-09-29 16:35:47 +00003440 }
Victor Stinnerad158722010-10-27 00:25:46 +00003441#endif
Victor Stinnerae6265f2010-05-15 16:27:27 +00003442}
3443
Alexander Belopolsky40018472011-02-26 01:02:56 +00003444PyObject *
3445PyUnicode_AsEncodedString(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003446 const char *encoding,
3447 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003448{
3449 PyObject *v;
Victor Stinner600d3be2010-06-10 12:00:55 +00003450 char lower[11]; /* Enough for any encoding shortcut */
Tim Petersced69f82003-09-16 20:30:58 +00003451
Guido van Rossumd57fd912000-03-10 22:53:23 +00003452 if (!PyUnicode_Check(unicode)) {
3453 PyErr_BadArgument();
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003454 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003455 }
Fred Drakee4315f52000-05-09 19:53:39 +00003456
Fred Drakee4315f52000-05-09 19:53:39 +00003457 /* Shortcuts for common default encodings */
Victor Stinner37296e82010-06-10 13:36:23 +00003458 if (normalize_encoding(encoding, lower, sizeof(lower))) {
Alexander Belopolsky1d521462011-02-25 19:19:57 +00003459 if ((strcmp(lower, "utf-8") == 0) ||
3460 (strcmp(lower, "utf8") == 0))
Victor Stinnera5c68c32011-03-02 01:03:14 +00003461 {
Victor Stinner2f283c22011-03-02 01:21:46 +00003462 if (errors == NULL || strcmp(errors, "strict") == 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003463 return _PyUnicode_AsUTF8String(unicode, NULL);
Victor Stinner2f283c22011-03-02 01:21:46 +00003464 else
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003465 return _PyUnicode_AsUTF8String(unicode, errors);
Victor Stinnera5c68c32011-03-02 01:03:14 +00003466 }
Victor Stinner37296e82010-06-10 13:36:23 +00003467 else if ((strcmp(lower, "latin-1") == 0) ||
Alexander Belopolsky1d521462011-02-25 19:19:57 +00003468 (strcmp(lower, "latin1") == 0) ||
Victor Stinner37296e82010-06-10 13:36:23 +00003469 (strcmp(lower, "iso-8859-1") == 0))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003470 return _PyUnicode_AsLatin1String(unicode, errors);
Victor Stinner99b95382011-07-04 14:23:54 +02003471#ifdef HAVE_MBCS
Victor Stinnerac931b12011-11-20 18:27:03 +01003472 else if (strcmp(lower, "mbcs") == 0)
3473 return PyUnicode_EncodeCodePage(CP_ACP, unicode, errors);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00003474#endif
Victor Stinner37296e82010-06-10 13:36:23 +00003475 else if (strcmp(lower, "ascii") == 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003476 return _PyUnicode_AsASCIIString(unicode, errors);
Victor Stinner37296e82010-06-10 13:36:23 +00003477 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00003478
3479 /* Encode via the codec registry */
3480 v = PyCodec_Encode(unicode, encoding, errors);
3481 if (v == NULL)
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003482 return NULL;
3483
3484 /* The normal path */
3485 if (PyBytes_Check(v))
3486 return v;
3487
3488 /* If the codec returns a buffer, raise a warning and convert to bytes */
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003489 if (PyByteArray_Check(v)) {
Victor Stinner4a2b7a12010-08-13 14:03:48 +00003490 int error;
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003491 PyObject *b;
Victor Stinner4a2b7a12010-08-13 14:03:48 +00003492
3493 error = PyErr_WarnFormat(PyExc_RuntimeWarning, 1,
3494 "encoder %s returned bytearray instead of bytes",
3495 encoding);
3496 if (error) {
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003497 Py_DECREF(v);
3498 return NULL;
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003499 }
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003500
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003501 b = PyBytes_FromStringAndSize(PyByteArray_AS_STRING(v), Py_SIZE(v));
3502 Py_DECREF(v);
3503 return b;
3504 }
3505
3506 PyErr_Format(PyExc_TypeError,
3507 "encoder did not return a bytes object (type=%.400s)",
3508 Py_TYPE(v)->tp_name);
3509 Py_DECREF(v);
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003510 return NULL;
3511}
3512
Alexander Belopolsky40018472011-02-26 01:02:56 +00003513PyObject *
3514PyUnicode_AsEncodedUnicode(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003515 const char *encoding,
3516 const char *errors)
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003517{
3518 PyObject *v;
3519
3520 if (!PyUnicode_Check(unicode)) {
3521 PyErr_BadArgument();
3522 goto onError;
3523 }
3524
3525 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003526 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003527
3528 /* Encode via the codec registry */
3529 v = PyCodec_Encode(unicode, encoding, errors);
3530 if (v == NULL)
3531 goto onError;
3532 if (!PyUnicode_Check(v)) {
3533 PyErr_Format(PyExc_TypeError,
Benjamin Peterson142957c2008-07-04 19:55:29 +00003534 "encoder did not return an str object (type=%.400s)",
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003535 Py_TYPE(v)->tp_name);
3536 Py_DECREF(v);
3537 goto onError;
3538 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00003539 return v;
Tim Petersced69f82003-09-16 20:30:58 +00003540
Benjamin Peterson29060642009-01-31 22:14:21 +00003541 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00003542 return NULL;
3543}
3544
Victor Stinner2f197072011-12-17 07:08:30 +01003545static size_t
3546mbstowcs_errorpos(const char *str, size_t len)
3547{
3548#ifdef HAVE_MBRTOWC
3549 const char *start = str;
3550 mbstate_t mbs;
3551 size_t converted;
3552 wchar_t ch;
3553
3554 memset(&mbs, 0, sizeof mbs);
3555 while (len)
3556 {
3557 converted = mbrtowc(&ch, (char*)str, len, &mbs);
3558 if (converted == 0)
3559 /* Reached end of string */
3560 break;
3561 if (converted == (size_t)-1 || converted == (size_t)-2) {
3562 /* Conversion error or incomplete character */
3563 return str - start;
3564 }
3565 else {
3566 str += converted;
3567 len -= converted;
3568 }
3569 }
3570 /* failed to find the undecodable byte sequence */
3571 return 0;
3572#endif
3573 return 0;
3574}
3575
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003576PyObject*
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003577PyUnicode_DecodeLocaleAndSize(const char *str, Py_ssize_t len,
Victor Stinner1b579672011-12-17 05:47:23 +01003578 const char *errors)
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003579{
3580 wchar_t smallbuf[256];
3581 size_t smallbuf_len = Py_ARRAY_LENGTH(smallbuf);
3582 wchar_t *wstr;
3583 size_t wlen, wlen2;
3584 PyObject *unicode;
Victor Stinner1b579672011-12-17 05:47:23 +01003585 int surrogateescape;
Victor Stinner2f197072011-12-17 07:08:30 +01003586 size_t error_pos;
3587 char *errmsg;
3588 PyObject *reason, *exc;
Victor Stinner1b579672011-12-17 05:47:23 +01003589
3590 if (locale_error_handler(errors, &surrogateescape) < 0)
3591 return NULL;
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003592
3593 if (str[len] != '\0' || len != strlen(str)) {
3594 PyErr_SetString(PyExc_TypeError, "embedded null character");
3595 return NULL;
3596 }
3597
3598 if (surrogateescape)
3599 {
3600 wstr = _Py_char2wchar(str, &wlen);
3601 if (wstr == NULL) {
3602 if (wlen == (size_t)-1)
3603 PyErr_NoMemory();
3604 else
3605 PyErr_SetFromErrno(PyExc_OSError);
3606 return NULL;
3607 }
3608
3609 unicode = PyUnicode_FromWideChar(wstr, wlen);
3610 PyMem_Free(wstr);
3611 }
3612 else {
3613#ifndef HAVE_BROKEN_MBSTOWCS
3614 wlen = mbstowcs(NULL, str, 0);
3615#else
3616 wlen = len;
3617#endif
Victor Stinner2f197072011-12-17 07:08:30 +01003618 if (wlen == (size_t)-1)
3619 goto decode_error;
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003620 if (wlen+1 <= smallbuf_len) {
3621 wstr = smallbuf;
3622 }
3623 else {
3624 if (wlen > PY_SSIZE_T_MAX / sizeof(wchar_t) - 1)
3625 return PyErr_NoMemory();
3626
3627 wstr = PyMem_Malloc((wlen+1) * sizeof(wchar_t));
3628 if (!wstr)
3629 return PyErr_NoMemory();
3630 }
3631
3632 /* This shouldn't fail now */
3633 wlen2 = mbstowcs(wstr, str, wlen+1);
3634 if (wlen2 == (size_t)-1) {
3635 if (wstr != smallbuf)
3636 PyMem_Free(wstr);
Victor Stinner2f197072011-12-17 07:08:30 +01003637 goto decode_error;
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003638 }
3639#ifdef HAVE_BROKEN_MBSTOWCS
3640 assert(wlen2 == wlen);
3641#endif
3642 unicode = PyUnicode_FromWideChar(wstr, wlen2);
3643 if (wstr != smallbuf)
3644 PyMem_Free(wstr);
3645 }
3646 return unicode;
Victor Stinner2f197072011-12-17 07:08:30 +01003647
3648decode_error:
3649 errmsg = strerror(errno);
3650 assert(errmsg != NULL);
3651
3652 error_pos = mbstowcs_errorpos(str, len);
3653 if (errmsg != NULL) {
3654 size_t errlen;
3655 wstr = _Py_char2wchar(errmsg, &errlen);
3656 if (wstr != NULL) {
3657 reason = PyUnicode_FromWideChar(wstr, errlen);
3658 PyMem_Free(wstr);
3659 } else
3660 errmsg = NULL;
3661 }
3662 if (errmsg == NULL)
3663 reason = PyUnicode_FromString(
3664 "mbstowcs() encountered an invalid multibyte sequence");
3665 if (reason == NULL)
3666 return NULL;
3667
3668 exc = PyObject_CallFunction(PyExc_UnicodeDecodeError, "sy#nnO",
3669 "locale", str, len,
3670 (Py_ssize_t)error_pos,
3671 (Py_ssize_t)(error_pos+1),
3672 reason);
3673 Py_DECREF(reason);
3674 if (exc != NULL) {
3675 PyCodec_StrictErrors(exc);
3676 Py_XDECREF(exc);
3677 }
3678 return NULL;
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003679}
3680
3681PyObject*
Victor Stinner1b579672011-12-17 05:47:23 +01003682PyUnicode_DecodeLocale(const char *str, const char *errors)
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003683{
3684 Py_ssize_t size = (Py_ssize_t)strlen(str);
Victor Stinner1b579672011-12-17 05:47:23 +01003685 return PyUnicode_DecodeLocaleAndSize(str, size, errors);
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003686}
3687
3688
3689PyObject*
Christian Heimes5894ba72007-11-04 11:43:14 +00003690PyUnicode_DecodeFSDefault(const char *s) {
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003691 Py_ssize_t size = (Py_ssize_t)strlen(s);
Christian Heimes5894ba72007-11-04 11:43:14 +00003692 return PyUnicode_DecodeFSDefaultAndSize(s, size);
3693}
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003694
Christian Heimes5894ba72007-11-04 11:43:14 +00003695PyObject*
3696PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size)
3697{
Victor Stinner99b95382011-07-04 14:23:54 +02003698#ifdef HAVE_MBCS
Victor Stinnerad158722010-10-27 00:25:46 +00003699 return PyUnicode_DecodeMBCS(s, size, NULL);
3700#elif defined(__APPLE__)
Victor Stinnera1d12bb2011-12-11 21:53:09 +01003701 return PyUnicode_DecodeUTF8Stateful(s, size, "surrogateescape", NULL);
Victor Stinnerad158722010-10-27 00:25:46 +00003702#else
Victor Stinner793b5312011-04-27 00:24:21 +02003703 PyInterpreterState *interp = PyThreadState_GET()->interp;
3704 /* Bootstrap check: if the filesystem codec is implemented in Python, we
3705 cannot use it to encode and decode filenames before it is loaded. Load
3706 the Python codec requires to encode at least its own filename. Use the C
3707 version of the locale codec until the codec registry is initialized and
3708 the Python codec is loaded.
3709
3710 Py_FileSystemDefaultEncoding is shared between all interpreters, we
3711 cannot only rely on it: check also interp->fscodec_initialized for
3712 subinterpreters. */
3713 if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) {
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003714 return PyUnicode_Decode(s, size,
3715 Py_FileSystemDefaultEncoding,
Victor Stinnerb9a20ad2010-04-30 16:37:52 +00003716 "surrogateescape");
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003717 }
3718 else {
Victor Stinner1b579672011-12-17 05:47:23 +01003719 return PyUnicode_DecodeLocaleAndSize(s, size, "surrogateescape");
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003720 }
Victor Stinnerad158722010-10-27 00:25:46 +00003721#endif
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003722}
3723
Martin v. Löwis011e8422009-05-05 04:43:17 +00003724
3725int
Antoine Pitrou13348842012-01-29 18:36:34 +01003726_PyUnicode_HasNULChars(PyObject* s)
3727{
3728 static PyObject *nul = NULL;
3729
3730 if (nul == NULL)
3731 nul = PyUnicode_FromStringAndSize("\0", 1);
3732 if (nul == NULL)
3733 return -1;
3734 return PyUnicode_Contains(s, nul);
3735}
3736
3737
3738int
Martin v. Löwis011e8422009-05-05 04:43:17 +00003739PyUnicode_FSConverter(PyObject* arg, void* addr)
3740{
3741 PyObject *output = NULL;
3742 Py_ssize_t size;
3743 void *data;
Martin v. Löwisc15bdef2009-05-29 14:47:46 +00003744 if (arg == NULL) {
3745 Py_DECREF(*(PyObject**)addr);
3746 return 1;
3747 }
Victor Stinnerdcb24032010-04-22 12:08:36 +00003748 if (PyBytes_Check(arg)) {
Martin v. Löwis011e8422009-05-05 04:43:17 +00003749 output = arg;
3750 Py_INCREF(output);
3751 }
3752 else {
3753 arg = PyUnicode_FromObject(arg);
3754 if (!arg)
3755 return 0;
Victor Stinnerae6265f2010-05-15 16:27:27 +00003756 output = PyUnicode_EncodeFSDefault(arg);
Martin v. Löwis011e8422009-05-05 04:43:17 +00003757 Py_DECREF(arg);
3758 if (!output)
3759 return 0;
3760 if (!PyBytes_Check(output)) {
3761 Py_DECREF(output);
3762 PyErr_SetString(PyExc_TypeError, "encoder failed to return bytes");
3763 return 0;
3764 }
3765 }
Victor Stinner0ea2a462010-04-30 00:22:08 +00003766 size = PyBytes_GET_SIZE(output);
3767 data = PyBytes_AS_STRING(output);
Martin v. Löwis011e8422009-05-05 04:43:17 +00003768 if (size != strlen(data)) {
Benjamin Peterson7a6b44a2011-08-18 13:51:47 -05003769 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
Martin v. Löwis011e8422009-05-05 04:43:17 +00003770 Py_DECREF(output);
3771 return 0;
3772 }
3773 *(PyObject**)addr = output;
Martin v. Löwisc15bdef2009-05-29 14:47:46 +00003774 return Py_CLEANUP_SUPPORTED;
Martin v. Löwis011e8422009-05-05 04:43:17 +00003775}
3776
3777
Victor Stinner47fcb5b2010-08-13 23:59:58 +00003778int
3779PyUnicode_FSDecoder(PyObject* arg, void* addr)
3780{
3781 PyObject *output = NULL;
Victor Stinner47fcb5b2010-08-13 23:59:58 +00003782 if (arg == NULL) {
3783 Py_DECREF(*(PyObject**)addr);
3784 return 1;
3785 }
3786 if (PyUnicode_Check(arg)) {
Benjamin Petersonbac79492012-01-14 13:34:47 -05003787 if (PyUnicode_READY(arg) == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003788 return 0;
Victor Stinner47fcb5b2010-08-13 23:59:58 +00003789 output = arg;
3790 Py_INCREF(output);
3791 }
3792 else {
3793 arg = PyBytes_FromObject(arg);
3794 if (!arg)
3795 return 0;
3796 output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(arg),
3797 PyBytes_GET_SIZE(arg));
3798 Py_DECREF(arg);
3799 if (!output)
3800 return 0;
3801 if (!PyUnicode_Check(output)) {
3802 Py_DECREF(output);
3803 PyErr_SetString(PyExc_TypeError, "decoder failed to return unicode");
3804 return 0;
3805 }
3806 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05003807 if (PyUnicode_READY(output) == -1) {
Victor Stinner065836e2011-10-27 01:56:33 +02003808 Py_DECREF(output);
3809 return 0;
3810 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003811 if (findchar(PyUnicode_DATA(output), PyUnicode_KIND(output),
Antoine Pitrouf0b934b2011-10-13 18:55:09 +02003812 PyUnicode_GET_LENGTH(output), 0, 1) >= 0) {
Victor Stinner47fcb5b2010-08-13 23:59:58 +00003813 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
3814 Py_DECREF(output);
3815 return 0;
3816 }
3817 *(PyObject**)addr = output;
3818 return Py_CLEANUP_SUPPORTED;
3819}
3820
3821
Martin v. Löwis5b222132007-06-10 09:51:05 +00003822char*
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003823PyUnicode_AsUTF8AndSize(PyObject *unicode, Py_ssize_t *psize)
Martin v. Löwis5b222132007-06-10 09:51:05 +00003824{
Christian Heimesf3863112007-11-22 07:46:41 +00003825 PyObject *bytes;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003826
Neal Norwitze0a0a6e2007-08-25 01:04:21 +00003827 if (!PyUnicode_Check(unicode)) {
3828 PyErr_BadArgument();
3829 return NULL;
3830 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003831 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis5b222132007-06-10 09:51:05 +00003832 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003833
Victor Stinnere90fe6a2011-10-01 16:48:13 +02003834 if (PyUnicode_UTF8(unicode) == NULL) {
3835 assert(!PyUnicode_IS_COMPACT_ASCII(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003836 bytes = _PyUnicode_AsUTF8String(unicode, "strict");
3837 if (bytes == NULL)
3838 return NULL;
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003839 _PyUnicode_UTF8(unicode) = PyObject_MALLOC(PyBytes_GET_SIZE(bytes) + 1);
3840 if (_PyUnicode_UTF8(unicode) == NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003841 Py_DECREF(bytes);
3842 return NULL;
3843 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003844 _PyUnicode_UTF8_LENGTH(unicode) = PyBytes_GET_SIZE(bytes);
3845 Py_MEMCPY(_PyUnicode_UTF8(unicode),
3846 PyBytes_AS_STRING(bytes),
3847 _PyUnicode_UTF8_LENGTH(unicode) + 1);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003848 Py_DECREF(bytes);
3849 }
3850
3851 if (psize)
Victor Stinnere90fe6a2011-10-01 16:48:13 +02003852 *psize = PyUnicode_UTF8_LENGTH(unicode);
3853 return PyUnicode_UTF8(unicode);
Guido van Rossum7d1df6c2007-08-29 13:53:23 +00003854}
3855
3856char*
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003857PyUnicode_AsUTF8(PyObject *unicode)
Guido van Rossum7d1df6c2007-08-29 13:53:23 +00003858{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003859 return PyUnicode_AsUTF8AndSize(unicode, NULL);
3860}
3861
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003862Py_UNICODE *
3863PyUnicode_AsUnicodeAndSize(PyObject *unicode, Py_ssize_t *size)
3864{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003865 const unsigned char *one_byte;
3866#if SIZEOF_WCHAR_T == 4
3867 const Py_UCS2 *two_bytes;
3868#else
3869 const Py_UCS4 *four_bytes;
3870 const Py_UCS4 *ucs4_end;
3871 Py_ssize_t num_surrogates;
3872#endif
3873 wchar_t *w;
3874 wchar_t *wchar_end;
3875
3876 if (!PyUnicode_Check(unicode)) {
3877 PyErr_BadArgument();
3878 return NULL;
3879 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003880 if (_PyUnicode_WSTR(unicode) == NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003881 /* Non-ASCII compact unicode object */
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003882 assert(_PyUnicode_KIND(unicode) != 0);
3883 assert(PyUnicode_IS_READY(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003884
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003885 if (PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003886#if SIZEOF_WCHAR_T == 2
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003887 four_bytes = PyUnicode_4BYTE_DATA(unicode);
3888 ucs4_end = four_bytes + _PyUnicode_LENGTH(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003889 num_surrogates = 0;
3890
3891 for (; four_bytes < ucs4_end; ++four_bytes) {
3892 if (*four_bytes > 0xFFFF)
3893 ++num_surrogates;
3894 }
3895
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003896 _PyUnicode_WSTR(unicode) = (wchar_t *) PyObject_MALLOC(
3897 sizeof(wchar_t) * (_PyUnicode_LENGTH(unicode) + 1 + num_surrogates));
3898 if (!_PyUnicode_WSTR(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003899 PyErr_NoMemory();
3900 return NULL;
3901 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003902 _PyUnicode_WSTR_LENGTH(unicode) = _PyUnicode_LENGTH(unicode) + num_surrogates;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003903
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003904 w = _PyUnicode_WSTR(unicode);
3905 wchar_end = w + _PyUnicode_WSTR_LENGTH(unicode);
3906 four_bytes = PyUnicode_4BYTE_DATA(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003907 for (; four_bytes < ucs4_end; ++four_bytes, ++w) {
3908 if (*four_bytes > 0xFFFF) {
Victor Stinner8faf8212011-12-08 22:14:11 +01003909 assert(*four_bytes <= MAX_UNICODE);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003910 /* encode surrogate pair in this case */
Victor Stinner551ac952011-11-29 22:58:13 +01003911 *w++ = Py_UNICODE_HIGH_SURROGATE(*four_bytes);
3912 *w = Py_UNICODE_LOW_SURROGATE(*four_bytes);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003913 }
3914 else
3915 *w = *four_bytes;
3916
3917 if (w > wchar_end) {
3918 assert(0 && "Miscalculated string end");
3919 }
3920 }
3921 *w = 0;
3922#else
3923 /* sizeof(wchar_t) == 4 */
3924 Py_FatalError("Impossible unicode object state, wstr and str "
3925 "should share memory already.");
3926 return NULL;
3927#endif
3928 }
3929 else {
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003930 _PyUnicode_WSTR(unicode) = (wchar_t *) PyObject_MALLOC(sizeof(wchar_t) *
3931 (_PyUnicode_LENGTH(unicode) + 1));
3932 if (!_PyUnicode_WSTR(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003933 PyErr_NoMemory();
3934 return NULL;
3935 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003936 if (!PyUnicode_IS_COMPACT_ASCII(unicode))
3937 _PyUnicode_WSTR_LENGTH(unicode) = _PyUnicode_LENGTH(unicode);
3938 w = _PyUnicode_WSTR(unicode);
3939 wchar_end = w + _PyUnicode_LENGTH(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003940
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003941 if (PyUnicode_KIND(unicode) == PyUnicode_1BYTE_KIND) {
3942 one_byte = PyUnicode_1BYTE_DATA(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003943 for (; w < wchar_end; ++one_byte, ++w)
3944 *w = *one_byte;
3945 /* null-terminate the wstr */
3946 *w = 0;
3947 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003948 else if (PyUnicode_KIND(unicode) == PyUnicode_2BYTE_KIND) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003949#if SIZEOF_WCHAR_T == 4
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003950 two_bytes = PyUnicode_2BYTE_DATA(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003951 for (; w < wchar_end; ++two_bytes, ++w)
3952 *w = *two_bytes;
3953 /* null-terminate the wstr */
3954 *w = 0;
3955#else
3956 /* sizeof(wchar_t) == 2 */
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003957 PyObject_FREE(_PyUnicode_WSTR(unicode));
3958 _PyUnicode_WSTR(unicode) = NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003959 Py_FatalError("Impossible unicode object state, wstr "
3960 "and str should share memory already.");
3961 return NULL;
3962#endif
3963 }
3964 else {
3965 assert(0 && "This should never happen.");
3966 }
3967 }
3968 }
3969 if (size != NULL)
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003970 *size = PyUnicode_WSTR_LENGTH(unicode);
3971 return _PyUnicode_WSTR(unicode);
Martin v. Löwis5b222132007-06-10 09:51:05 +00003972}
3973
Alexander Belopolsky40018472011-02-26 01:02:56 +00003974Py_UNICODE *
3975PyUnicode_AsUnicode(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003976{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003977 return PyUnicode_AsUnicodeAndSize(unicode, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003978}
3979
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003980
Alexander Belopolsky40018472011-02-26 01:02:56 +00003981Py_ssize_t
3982PyUnicode_GetSize(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003983{
3984 if (!PyUnicode_Check(unicode)) {
3985 PyErr_BadArgument();
3986 goto onError;
3987 }
3988 return PyUnicode_GET_SIZE(unicode);
3989
Benjamin Peterson29060642009-01-31 22:14:21 +00003990 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00003991 return -1;
3992}
3993
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003994Py_ssize_t
3995PyUnicode_GetLength(PyObject *unicode)
3996{
Victor Stinner07621332012-06-16 04:53:46 +02003997 if (!PyUnicode_Check(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003998 PyErr_BadArgument();
3999 return -1;
4000 }
Victor Stinner07621332012-06-16 04:53:46 +02004001 if (PyUnicode_READY(unicode) == -1)
4002 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004003 return PyUnicode_GET_LENGTH(unicode);
4004}
4005
4006Py_UCS4
4007PyUnicode_ReadChar(PyObject *unicode, Py_ssize_t index)
4008{
Victor Stinner2fe5ced2011-10-02 00:25:40 +02004009 if (!PyUnicode_Check(unicode) || PyUnicode_READY(unicode) == -1) {
4010 PyErr_BadArgument();
4011 return (Py_UCS4)-1;
4012 }
Victor Stinnerc4b49542011-12-11 22:44:26 +01004013 if (index < 0 || index >= PyUnicode_GET_LENGTH(unicode)) {
Victor Stinner2fe5ced2011-10-02 00:25:40 +02004014 PyErr_SetString(PyExc_IndexError, "string index out of range");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004015 return (Py_UCS4)-1;
4016 }
4017 return PyUnicode_READ_CHAR(unicode, index);
4018}
4019
4020int
4021PyUnicode_WriteChar(PyObject *unicode, Py_ssize_t index, Py_UCS4 ch)
4022{
4023 if (!PyUnicode_Check(unicode) || !PyUnicode_IS_COMPACT(unicode)) {
Victor Stinnercd9950f2011-10-02 00:34:53 +02004024 PyErr_BadArgument();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004025 return -1;
4026 }
Victor Stinner488fa492011-12-12 00:01:39 +01004027 assert(PyUnicode_IS_READY(unicode));
Victor Stinnerc4b49542011-12-11 22:44:26 +01004028 if (index < 0 || index >= PyUnicode_GET_LENGTH(unicode)) {
Victor Stinnercd9950f2011-10-02 00:34:53 +02004029 PyErr_SetString(PyExc_IndexError, "string index out of range");
4030 return -1;
4031 }
Victor Stinner488fa492011-12-12 00:01:39 +01004032 if (unicode_check_modifiable(unicode))
Victor Stinnercd9950f2011-10-02 00:34:53 +02004033 return -1;
Victor Stinnerc9590ad2012-03-04 01:34:37 +01004034 if (ch > PyUnicode_MAX_CHAR_VALUE(unicode)) {
4035 PyErr_SetString(PyExc_ValueError, "character out of range");
4036 return -1;
4037 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004038 PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode),
4039 index, ch);
4040 return 0;
4041}
4042
Alexander Belopolsky40018472011-02-26 01:02:56 +00004043const char *
4044PyUnicode_GetDefaultEncoding(void)
Fred Drakee4315f52000-05-09 19:53:39 +00004045{
Victor Stinner42cb4622010-09-01 19:39:01 +00004046 return "utf-8";
Fred Drakee4315f52000-05-09 19:53:39 +00004047}
4048
Victor Stinner554f3f02010-06-16 23:33:54 +00004049/* create or adjust a UnicodeDecodeError */
4050static void
4051make_decode_exception(PyObject **exceptionObject,
4052 const char *encoding,
4053 const char *input, Py_ssize_t length,
4054 Py_ssize_t startpos, Py_ssize_t endpos,
4055 const char *reason)
4056{
4057 if (*exceptionObject == NULL) {
4058 *exceptionObject = PyUnicodeDecodeError_Create(
4059 encoding, input, length, startpos, endpos, reason);
4060 }
4061 else {
4062 if (PyUnicodeDecodeError_SetStart(*exceptionObject, startpos))
4063 goto onError;
4064 if (PyUnicodeDecodeError_SetEnd(*exceptionObject, endpos))
4065 goto onError;
4066 if (PyUnicodeDecodeError_SetReason(*exceptionObject, reason))
4067 goto onError;
4068 }
4069 return;
4070
4071onError:
4072 Py_DECREF(*exceptionObject);
4073 *exceptionObject = NULL;
4074}
4075
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004076/* error handling callback helper:
4077 build arguments, call the callback and check the arguments,
Fred Drakedb390c12005-10-28 14:39:47 +00004078 if no exception occurred, copy the replacement to the output
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004079 and adjust various state variables.
4080 return 0 on success, -1 on error
4081*/
4082
Alexander Belopolsky40018472011-02-26 01:02:56 +00004083static int
4084unicode_decode_call_errorhandler(const char *errors, PyObject **errorHandler,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03004085 const char *encoding, const char *reason,
4086 const char **input, const char **inend, Py_ssize_t *startinpos,
4087 Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004088 PyObject **output, Py_ssize_t *outpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004089{
Benjamin Peterson142957c2008-07-04 19:55:29 +00004090 static char *argparse = "O!n;decoding error handler must return (str, int) tuple";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004091
4092 PyObject *restuple = NULL;
4093 PyObject *repunicode = NULL;
Victor Stinner596a6c42011-11-09 00:02:18 +01004094 Py_ssize_t outsize;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004095 Py_ssize_t insize;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004096 Py_ssize_t requiredsize;
4097 Py_ssize_t newpos;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004098 PyObject *inputobj = NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004099 int res = -1;
4100
Victor Stinner596a6c42011-11-09 00:02:18 +01004101 if (_PyUnicode_KIND(*output) != PyUnicode_WCHAR_KIND)
4102 outsize = PyUnicode_GET_LENGTH(*output);
4103 else
4104 outsize = _PyUnicode_WSTR_LENGTH(*output);
4105
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004106 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004107 *errorHandler = PyCodec_LookupError(errors);
4108 if (*errorHandler == NULL)
4109 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004110 }
4111
Victor Stinner554f3f02010-06-16 23:33:54 +00004112 make_decode_exception(exceptionObject,
4113 encoding,
4114 *input, *inend - *input,
4115 *startinpos, *endinpos,
4116 reason);
4117 if (*exceptionObject == NULL)
4118 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004119
4120 restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL);
4121 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004122 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004123 if (!PyTuple_Check(restuple)) {
Benjamin Petersond75fcb42009-02-19 04:22:03 +00004124 PyErr_SetString(PyExc_TypeError, &argparse[4]);
Benjamin Peterson29060642009-01-31 22:14:21 +00004125 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004126 }
4127 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, &repunicode, &newpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00004128 goto onError;
Benjamin Petersonbac79492012-01-14 13:34:47 -05004129 if (PyUnicode_READY(repunicode) == -1)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004130 goto onError;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004131
4132 /* Copy back the bytes variables, which might have been modified by the
4133 callback */
4134 inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject);
4135 if (!inputobj)
4136 goto onError;
Christian Heimes72b710a2008-05-26 13:28:38 +00004137 if (!PyBytes_Check(inputobj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004138 PyErr_Format(PyExc_TypeError, "exception attribute object must be bytes");
Walter Dörwalde78178e2007-07-30 13:31:40 +00004139 }
Christian Heimes72b710a2008-05-26 13:28:38 +00004140 *input = PyBytes_AS_STRING(inputobj);
4141 insize = PyBytes_GET_SIZE(inputobj);
Walter Dörwalde78178e2007-07-30 13:31:40 +00004142 *inend = *input + insize;
Walter Dörwald36f938f2007-08-10 10:11:43 +00004143 /* we can DECREF safely, as the exception has another reference,
4144 so the object won't go away. */
4145 Py_DECREF(inputobj);
Walter Dörwalde78178e2007-07-30 13:31:40 +00004146
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004147 if (newpos<0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004148 newpos = insize+newpos;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00004149 if (newpos<0 || newpos>insize) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004150 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", newpos);
4151 goto onError;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00004152 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004153
Victor Stinner596a6c42011-11-09 00:02:18 +01004154 if (_PyUnicode_KIND(*output) != PyUnicode_WCHAR_KIND) {
4155 /* need more space? (at least enough for what we
4156 have+the replacement+the rest of the string (starting
4157 at the new input position), so we won't have to check space
4158 when there are no errors in the rest of the string) */
4159 Py_ssize_t replen = PyUnicode_GET_LENGTH(repunicode);
4160 requiredsize = *outpos + replen + insize-newpos;
4161 if (requiredsize > outsize) {
4162 if (requiredsize<2*outsize)
4163 requiredsize = 2*outsize;
4164 if (unicode_resize(output, requiredsize) < 0)
4165 goto onError;
4166 }
Victor Stinner1b487b42012-05-03 12:29:04 +02004167 if (unicode_widen(output, *outpos,
4168 PyUnicode_MAX_CHAR_VALUE(repunicode)) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004169 goto onError;
Victor Stinnerd3f08822012-05-29 12:57:52 +02004170 _PyUnicode_FastCopyCharacters(*output, *outpos, repunicode, 0, replen);
Victor Stinner596a6c42011-11-09 00:02:18 +01004171 *outpos += replen;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004172 }
Victor Stinner596a6c42011-11-09 00:02:18 +01004173 else {
4174 wchar_t *repwstr;
4175 Py_ssize_t repwlen;
4176 repwstr = PyUnicode_AsUnicodeAndSize(repunicode, &repwlen);
4177 if (repwstr == NULL)
4178 goto onError;
4179 /* need more space? (at least enough for what we
4180 have+the replacement+the rest of the string (starting
4181 at the new input position), so we won't have to check space
4182 when there are no errors in the rest of the string) */
4183 requiredsize = *outpos + repwlen + insize-newpos;
4184 if (requiredsize > outsize) {
4185 if (requiredsize < 2*outsize)
4186 requiredsize = 2*outsize;
4187 if (unicode_resize(output, requiredsize) < 0)
4188 goto onError;
4189 }
4190 wcsncpy(_PyUnicode_WSTR(*output) + *outpos, repwstr, repwlen);
4191 *outpos += repwlen;
4192 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004193 *endinpos = newpos;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004194 *inptr = *input + newpos;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004195
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004196 /* we made it! */
4197 res = 0;
4198
Benjamin Peterson29060642009-01-31 22:14:21 +00004199 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004200 Py_XDECREF(restuple);
4201 return res;
4202}
4203
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004204/* --- UTF-7 Codec -------------------------------------------------------- */
4205
Antoine Pitrou244651a2009-05-04 18:56:13 +00004206/* See RFC2152 for details. We encode conservatively and decode liberally. */
4207
4208/* Three simple macros defining base-64. */
4209
4210/* Is c a base-64 character? */
4211
4212#define IS_BASE64(c) \
4213 (((c) >= 'A' && (c) <= 'Z') || \
4214 ((c) >= 'a' && (c) <= 'z') || \
4215 ((c) >= '0' && (c) <= '9') || \
4216 (c) == '+' || (c) == '/')
4217
4218/* given that c is a base-64 character, what is its base-64 value? */
4219
4220#define FROM_BASE64(c) \
4221 (((c) >= 'A' && (c) <= 'Z') ? (c) - 'A' : \
4222 ((c) >= 'a' && (c) <= 'z') ? (c) - 'a' + 26 : \
4223 ((c) >= '0' && (c) <= '9') ? (c) - '0' + 52 : \
4224 (c) == '+' ? 62 : 63)
4225
4226/* What is the base-64 character of the bottom 6 bits of n? */
4227
4228#define TO_BASE64(n) \
4229 ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[(n) & 0x3f])
4230
4231/* DECODE_DIRECT: this byte encountered in a UTF-7 string should be
4232 * decoded as itself. We are permissive on decoding; the only ASCII
4233 * byte not decoding to itself is the + which begins a base64
4234 * string. */
4235
4236#define DECODE_DIRECT(c) \
4237 ((c) <= 127 && (c) != '+')
4238
4239/* The UTF-7 encoder treats ASCII characters differently according to
4240 * whether they are Set D, Set O, Whitespace, or special (i.e. none of
4241 * the above). See RFC2152. This array identifies these different
4242 * sets:
4243 * 0 : "Set D"
4244 * alphanumeric and '(),-./:?
4245 * 1 : "Set O"
4246 * !"#$%&*;<=>@[]^_`{|}
4247 * 2 : "whitespace"
4248 * ht nl cr sp
4249 * 3 : special (must be base64 encoded)
4250 * everything else (i.e. +\~ and non-printing codes 0-8 11-12 14-31 127)
4251 */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004252
Tim Petersced69f82003-09-16 20:30:58 +00004253static
Antoine Pitrou244651a2009-05-04 18:56:13 +00004254char utf7_category[128] = {
4255/* nul soh stx etx eot enq ack bel bs ht nl vt np cr so si */
4256 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, 3, 2, 3, 3,
4257/* dle dc1 dc2 dc3 dc4 nak syn etb can em sub esc fs gs rs us */
4258 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
4259/* sp ! " # $ % & ' ( ) * + , - . / */
4260 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0,
4261/* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */
4262 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0,
4263/* @ A B C D E F G H I J K L M N O */
4264 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4265/* P Q R S T U V W X Y Z [ \ ] ^ _ */
4266 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 1,
4267/* ` a b c d e f g h i j k l m n o */
4268 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4269/* p q r s t u v w x y z { | } ~ del */
4270 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 3, 3,
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004271};
4272
Antoine Pitrou244651a2009-05-04 18:56:13 +00004273/* ENCODE_DIRECT: this character should be encoded as itself. The
4274 * answer depends on whether we are encoding set O as itself, and also
4275 * on whether we are encoding whitespace as itself. RFC2152 makes it
4276 * clear that the answers to these questions vary between
4277 * applications, so this code needs to be flexible. */
Marc-André Lemburge115ec82005-10-19 22:33:31 +00004278
Antoine Pitrou244651a2009-05-04 18:56:13 +00004279#define ENCODE_DIRECT(c, directO, directWS) \
4280 ((c) < 128 && (c) > 0 && \
4281 ((utf7_category[(c)] == 0) || \
4282 (directWS && (utf7_category[(c)] == 2)) || \
4283 (directO && (utf7_category[(c)] == 1))))
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004284
Alexander Belopolsky40018472011-02-26 01:02:56 +00004285PyObject *
4286PyUnicode_DecodeUTF7(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03004287 Py_ssize_t size,
4288 const char *errors)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004289{
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004290 return PyUnicode_DecodeUTF7Stateful(s, size, errors, NULL);
4291}
4292
Antoine Pitrou244651a2009-05-04 18:56:13 +00004293/* The decoder. The only state we preserve is our read position,
4294 * i.e. how many characters we have consumed. So if we end in the
4295 * middle of a shift sequence we have to back off the read position
4296 * and the output to the beginning of the sequence, otherwise we lose
4297 * all the shift state (seen bits, number of bits seen, high
4298 * surrogate). */
4299
Alexander Belopolsky40018472011-02-26 01:02:56 +00004300PyObject *
4301PyUnicode_DecodeUTF7Stateful(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03004302 Py_ssize_t size,
4303 const char *errors,
4304 Py_ssize_t *consumed)
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004305{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004306 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004307 Py_ssize_t startinpos;
4308 Py_ssize_t endinpos;
4309 Py_ssize_t outpos;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004310 const char *e;
Victor Stinner7931d9a2011-11-04 00:22:48 +01004311 PyObject *unicode;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004312 const char *errmsg = "";
4313 int inShift = 0;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004314 Py_ssize_t shiftOutStart;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004315 unsigned int base64bits = 0;
4316 unsigned long base64buffer = 0;
Victor Stinner24729f32011-11-10 20:31:37 +01004317 Py_UCS4 surrogate = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004318 PyObject *errorHandler = NULL;
4319 PyObject *exc = NULL;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004320
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004321 /* Start off assuming it's all ASCII. Widen later as necessary. */
4322 unicode = PyUnicode_New(size, 127);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004323 if (!unicode)
4324 return NULL;
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004325 if (size == 0) {
4326 if (consumed)
4327 *consumed = 0;
Victor Stinner7931d9a2011-11-04 00:22:48 +01004328 return unicode;
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004329 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004330
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004331 shiftOutStart = outpos = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004332 e = s + size;
4333
4334 while (s < e) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004335 Py_UCS4 ch;
Benjamin Peterson29060642009-01-31 22:14:21 +00004336 restart:
Antoine Pitrou5ffd9e92008-07-25 18:05:24 +00004337 ch = (unsigned char) *s;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004338
Antoine Pitrou244651a2009-05-04 18:56:13 +00004339 if (inShift) { /* in a base-64 section */
4340 if (IS_BASE64(ch)) { /* consume a base-64 character */
4341 base64buffer = (base64buffer << 6) | FROM_BASE64(ch);
4342 base64bits += 6;
4343 s++;
4344 if (base64bits >= 16) {
4345 /* we have enough bits for a UTF-16 value */
Victor Stinner24729f32011-11-10 20:31:37 +01004346 Py_UCS4 outCh = (Py_UCS4)(base64buffer >> (base64bits-16));
Antoine Pitrou244651a2009-05-04 18:56:13 +00004347 base64bits -= 16;
4348 base64buffer &= (1 << base64bits) - 1; /* clear high bits */
4349 if (surrogate) {
4350 /* expecting a second surrogate */
Victor Stinner551ac952011-11-29 22:58:13 +01004351 if (Py_UNICODE_IS_LOW_SURROGATE(outCh)) {
4352 Py_UCS4 ch2 = Py_UNICODE_JOIN_SURROGATES(surrogate, outCh);
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004353 if (unicode_putchar(&unicode, &outpos, ch2) < 0)
4354 goto onError;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004355 surrogate = 0;
Antoine Pitrou5418ee02011-11-15 01:42:21 +01004356 continue;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004357 }
4358 else {
Antoine Pitrou78edf752011-11-15 01:44:16 +01004359 if (unicode_putchar(&unicode, &outpos, surrogate) < 0)
4360 goto onError;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004361 surrogate = 0;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004362 }
4363 }
Victor Stinner551ac952011-11-29 22:58:13 +01004364 if (Py_UNICODE_IS_HIGH_SURROGATE(outCh)) {
Antoine Pitrou244651a2009-05-04 18:56:13 +00004365 /* first surrogate */
4366 surrogate = outCh;
4367 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004368 else {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004369 if (unicode_putchar(&unicode, &outpos, outCh) < 0)
4370 goto onError;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004371 }
4372 }
4373 }
4374 else { /* now leaving a base-64 section */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004375 inShift = 0;
4376 s++;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004377 if (surrogate) {
Antoine Pitrou78edf752011-11-15 01:44:16 +01004378 if (unicode_putchar(&unicode, &outpos, surrogate) < 0)
4379 goto onError;
Antoine Pitrou5418ee02011-11-15 01:42:21 +01004380 surrogate = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004381 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004382 if (base64bits > 0) { /* left-over bits */
4383 if (base64bits >= 6) {
4384 /* We've seen at least one base-64 character */
4385 errmsg = "partial character in shift sequence";
4386 goto utf7Error;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004387 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004388 else {
4389 /* Some bits remain; they should be zero */
4390 if (base64buffer != 0) {
4391 errmsg = "non-zero padding bits in shift sequence";
4392 goto utf7Error;
4393 }
4394 }
4395 }
4396 if (ch != '-') {
4397 /* '-' is absorbed; other terminating
4398 characters are preserved */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004399 if (unicode_putchar(&unicode, &outpos, ch) < 0)
4400 goto onError;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004401 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004402 }
4403 }
4404 else if ( ch == '+' ) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004405 startinpos = s-starts;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004406 s++; /* consume '+' */
4407 if (s < e && *s == '-') { /* '+-' encodes '+' */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004408 s++;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004409 if (unicode_putchar(&unicode, &outpos, '+') < 0)
4410 goto onError;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004411 }
4412 else { /* begin base64-encoded section */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004413 inShift = 1;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004414 shiftOutStart = outpos;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004415 base64bits = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004416 }
4417 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004418 else if (DECODE_DIRECT(ch)) { /* character decodes as itself */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004419 if (unicode_putchar(&unicode, &outpos, ch) < 0)
4420 goto onError;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004421 s++;
4422 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004423 else {
4424 startinpos = s-starts;
4425 s++;
4426 errmsg = "unexpected special character";
4427 goto utf7Error;
4428 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004429 continue;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004430utf7Error:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004431 endinpos = s-starts;
4432 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00004433 errors, &errorHandler,
4434 "utf7", errmsg,
4435 &starts, &e, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004436 &unicode, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00004437 goto onError;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004438 }
4439
Antoine Pitrou244651a2009-05-04 18:56:13 +00004440 /* end of string */
4441
4442 if (inShift && !consumed) { /* in shift sequence, no more to follow */
4443 /* if we're in an inconsistent state, that's an error */
4444 if (surrogate ||
4445 (base64bits >= 6) ||
4446 (base64bits > 0 && base64buffer != 0)) {
Antoine Pitrou244651a2009-05-04 18:56:13 +00004447 endinpos = size;
4448 if (unicode_decode_call_errorhandler(
4449 errors, &errorHandler,
4450 "utf7", "unterminated shift sequence",
4451 &starts, &e, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004452 &unicode, &outpos))
Antoine Pitrou244651a2009-05-04 18:56:13 +00004453 goto onError;
4454 if (s < e)
4455 goto restart;
4456 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004457 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004458
4459 /* return state */
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004460 if (consumed) {
Antoine Pitrou244651a2009-05-04 18:56:13 +00004461 if (inShift) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004462 outpos = shiftOutStart; /* back off output */
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004463 *consumed = startinpos;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004464 }
4465 else {
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004466 *consumed = s-starts;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004467 }
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004468 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004469
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004470 if (unicode_resize(&unicode, outpos) < 0)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004471 goto onError;
4472
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004473 Py_XDECREF(errorHandler);
4474 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01004475 return unicode_result(unicode);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004476
Benjamin Peterson29060642009-01-31 22:14:21 +00004477 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004478 Py_XDECREF(errorHandler);
4479 Py_XDECREF(exc);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004480 Py_DECREF(unicode);
4481 return NULL;
4482}
4483
4484
Alexander Belopolsky40018472011-02-26 01:02:56 +00004485PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004486_PyUnicode_EncodeUTF7(PyObject *str,
4487 int base64SetO,
4488 int base64WhiteSpace,
4489 const char *errors)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004490{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004491 int kind;
4492 void *data;
4493 Py_ssize_t len;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004494 PyObject *v;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004495 int inShift = 0;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004496 Py_ssize_t i;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004497 unsigned int base64bits = 0;
4498 unsigned long base64buffer = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004499 char * out;
4500 char * start;
4501
Benjamin Petersonbac79492012-01-14 13:34:47 -05004502 if (PyUnicode_READY(str) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004503 return NULL;
4504 kind = PyUnicode_KIND(str);
4505 data = PyUnicode_DATA(str);
4506 len = PyUnicode_GET_LENGTH(str);
4507
4508 if (len == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004509 return PyBytes_FromStringAndSize(NULL, 0);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004510
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004511 /* It might be possible to tighten this worst case */
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01004512 if (len > PY_SSIZE_T_MAX / 8)
Neal Norwitz3ce5d922008-08-24 07:08:55 +00004513 return PyErr_NoMemory();
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01004514 v = PyBytes_FromStringAndSize(NULL, len * 8);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004515 if (v == NULL)
4516 return NULL;
4517
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004518 start = out = PyBytes_AS_STRING(v);
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004519 for (i = 0; i < len; ++i) {
Victor Stinner0e368262011-11-10 20:12:49 +01004520 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004521
Antoine Pitrou244651a2009-05-04 18:56:13 +00004522 if (inShift) {
4523 if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) {
4524 /* shifting out */
4525 if (base64bits) { /* output remaining bits */
4526 *out++ = TO_BASE64(base64buffer << (6-base64bits));
4527 base64buffer = 0;
4528 base64bits = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004529 }
4530 inShift = 0;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004531 /* Characters not in the BASE64 set implicitly unshift the sequence
4532 so no '-' is required, except if the character is itself a '-' */
4533 if (IS_BASE64(ch) || ch == '-') {
4534 *out++ = '-';
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004535 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004536 *out++ = (char) ch;
4537 }
4538 else {
4539 goto encode_char;
Tim Petersced69f82003-09-16 20:30:58 +00004540 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004541 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004542 else { /* not in a shift sequence */
4543 if (ch == '+') {
4544 *out++ = '+';
4545 *out++ = '-';
4546 }
4547 else if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) {
4548 *out++ = (char) ch;
4549 }
4550 else {
4551 *out++ = '+';
4552 inShift = 1;
4553 goto encode_char;
4554 }
4555 }
4556 continue;
4557encode_char:
Antoine Pitrou244651a2009-05-04 18:56:13 +00004558 if (ch >= 0x10000) {
Victor Stinner8faf8212011-12-08 22:14:11 +01004559 assert(ch <= MAX_UNICODE);
Victor Stinner0d3721d2011-11-22 03:27:53 +01004560
Antoine Pitrou244651a2009-05-04 18:56:13 +00004561 /* code first surrogate */
4562 base64bits += 16;
4563 base64buffer = (base64buffer << 16) | 0xd800 | ((ch-0x10000) >> 10);
4564 while (base64bits >= 6) {
4565 *out++ = TO_BASE64(base64buffer >> (base64bits-6));
4566 base64bits -= 6;
4567 }
4568 /* prepare second surrogate */
Victor Stinner551ac952011-11-29 22:58:13 +01004569 ch = Py_UNICODE_LOW_SURROGATE(ch);
Antoine Pitrou244651a2009-05-04 18:56:13 +00004570 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004571 base64bits += 16;
4572 base64buffer = (base64buffer << 16) | ch;
4573 while (base64bits >= 6) {
4574 *out++ = TO_BASE64(base64buffer >> (base64bits-6));
4575 base64bits -= 6;
4576 }
Hye-Shik Chang1bc09b72004-01-03 19:35:43 +00004577 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004578 if (base64bits)
4579 *out++= TO_BASE64(base64buffer << (6-base64bits) );
4580 if (inShift)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004581 *out++ = '-';
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004582 if (_PyBytes_Resize(&v, out - start) < 0)
4583 return NULL;
4584 return v;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004585}
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004586PyObject *
4587PyUnicode_EncodeUTF7(const Py_UNICODE *s,
4588 Py_ssize_t size,
4589 int base64SetO,
4590 int base64WhiteSpace,
4591 const char *errors)
4592{
4593 PyObject *result;
4594 PyObject *tmp = PyUnicode_FromUnicode(s, size);
4595 if (tmp == NULL)
4596 return NULL;
Victor Stinner0e368262011-11-10 20:12:49 +01004597 result = _PyUnicode_EncodeUTF7(tmp, base64SetO,
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004598 base64WhiteSpace, errors);
4599 Py_DECREF(tmp);
4600 return result;
4601}
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004602
Antoine Pitrou244651a2009-05-04 18:56:13 +00004603#undef IS_BASE64
4604#undef FROM_BASE64
4605#undef TO_BASE64
4606#undef DECODE_DIRECT
4607#undef ENCODE_DIRECT
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004608
Guido van Rossumd57fd912000-03-10 22:53:23 +00004609/* --- UTF-8 Codec -------------------------------------------------------- */
4610
Alexander Belopolsky40018472011-02-26 01:02:56 +00004611PyObject *
4612PyUnicode_DecodeUTF8(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03004613 Py_ssize_t size,
4614 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004615{
Walter Dörwald69652032004-09-07 20:24:22 +00004616 return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL);
4617}
4618
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004619#include "stringlib/asciilib.h"
4620#include "stringlib/codecs.h"
4621#include "stringlib/undef.h"
4622
Antoine Pitrou0a3229d2011-11-21 20:39:13 +01004623#include "stringlib/ucs1lib.h"
4624#include "stringlib/codecs.h"
4625#include "stringlib/undef.h"
4626
4627#include "stringlib/ucs2lib.h"
4628#include "stringlib/codecs.h"
4629#include "stringlib/undef.h"
4630
4631#include "stringlib/ucs4lib.h"
4632#include "stringlib/codecs.h"
4633#include "stringlib/undef.h"
4634
Antoine Pitrouab868312009-01-10 15:40:25 +00004635/* Mask to quickly check whether a C 'long' contains a
4636 non-ASCII, UTF8-encoded char. */
4637#if (SIZEOF_LONG == 8)
Mark Dickinson01ac8b62012-07-07 14:08:48 +02004638# define ASCII_CHAR_MASK 0x8080808080808080UL
Antoine Pitrouab868312009-01-10 15:40:25 +00004639#elif (SIZEOF_LONG == 4)
Mark Dickinson01ac8b62012-07-07 14:08:48 +02004640# define ASCII_CHAR_MASK 0x80808080UL
Antoine Pitrouab868312009-01-10 15:40:25 +00004641#else
4642# error C 'long' size should be either 4 or 8!
4643#endif
4644
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004645static Py_ssize_t
4646ascii_decode(const char *start, const char *end, Py_UCS1 *dest)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004647{
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004648 const char *p = start;
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +02004649 const char *aligned_end = (const char *) _Py_ALIGN_DOWN(end, SIZEOF_LONG);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004650
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004651#if SIZEOF_LONG <= SIZEOF_VOID_P
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +02004652 assert(_Py_IS_ALIGNED(dest, SIZEOF_LONG));
4653 if (_Py_IS_ALIGNED(p, SIZEOF_LONG)) {
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004654 /* Fast path, see in STRINGLIB(utf8_decode) for
4655 an explanation. */
4656 /* Help register allocation */
4657 register const char *_p = p;
4658 register Py_UCS1 * q = dest;
4659 while (_p < aligned_end) {
4660 unsigned long value = *(const unsigned long *) _p;
4661 if (value & ASCII_CHAR_MASK)
Benjamin Peterson29060642009-01-31 22:14:21 +00004662 break;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004663 *((unsigned long *)q) = value;
4664 _p += SIZEOF_LONG;
4665 q += SIZEOF_LONG;
Benjamin Peterson14339b62009-01-31 16:36:08 +00004666 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004667 p = _p;
4668 while (p < end) {
4669 if ((unsigned char)*p & 0x80)
4670 break;
4671 *q++ = *p++;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004672 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004673 return p - start;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004674 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004675#endif
4676 while (p < end) {
4677 /* Fast path, see in STRINGLIB(utf8_decode) in stringlib/codecs.h
4678 for an explanation. */
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +02004679 if (_Py_IS_ALIGNED(p, SIZEOF_LONG)) {
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004680 /* Help register allocation */
4681 register const char *_p = p;
4682 while (_p < aligned_end) {
4683 unsigned long value = *(unsigned long *) _p;
4684 if (value & ASCII_CHAR_MASK)
4685 break;
4686 _p += SIZEOF_LONG;
4687 }
4688 p = _p;
4689 if (_p == end)
4690 break;
4691 }
4692 if ((unsigned char)*p & 0x80)
4693 break;
4694 ++p;
4695 }
4696 memcpy(dest, start, p - start);
4697 return p - start;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004698}
Antoine Pitrouab868312009-01-10 15:40:25 +00004699
Victor Stinner785938e2011-12-11 20:09:03 +01004700PyObject *
4701PyUnicode_DecodeUTF8Stateful(const char *s,
4702 Py_ssize_t size,
4703 const char *errors,
4704 Py_ssize_t *consumed)
4705{
Victor Stinner785938e2011-12-11 20:09:03 +01004706 PyObject *unicode;
Victor Stinner785938e2011-12-11 20:09:03 +01004707 const char *starts = s;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004708 const char *end = s + size;
4709 Py_ssize_t outpos;
4710
4711 Py_ssize_t startinpos;
4712 Py_ssize_t endinpos;
4713 const char *errmsg = "";
4714 PyObject *errorHandler = NULL;
4715 PyObject *exc = NULL;
Victor Stinner785938e2011-12-11 20:09:03 +01004716
4717 if (size == 0) {
4718 if (consumed)
4719 *consumed = 0;
Victor Stinner382955f2011-12-11 21:44:00 +01004720 Py_INCREF(unicode_empty);
4721 return unicode_empty;
Victor Stinner785938e2011-12-11 20:09:03 +01004722 }
4723
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004724 /* ASCII is equivalent to the first 128 ordinals in Unicode. */
4725 if (size == 1 && (unsigned char)s[0] < 128) {
Victor Stinner785938e2011-12-11 20:09:03 +01004726 if (consumed)
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004727 *consumed = 1;
4728 return get_latin1_char((unsigned char)s[0]);
Victor Stinner785938e2011-12-11 20:09:03 +01004729 }
4730
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004731 unicode = PyUnicode_New(size, 127);
Victor Stinner785938e2011-12-11 20:09:03 +01004732 if (!unicode)
4733 return NULL;
Victor Stinner785938e2011-12-11 20:09:03 +01004734
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004735 outpos = ascii_decode(s, end, PyUnicode_1BYTE_DATA(unicode));
4736 s += outpos;
4737 while (s < end) {
4738 Py_UCS4 ch;
4739 int kind = PyUnicode_KIND(unicode);
4740 if (kind == PyUnicode_1BYTE_KIND) {
4741 if (PyUnicode_IS_ASCII(unicode))
4742 ch = asciilib_utf8_decode(&s, end,
4743 PyUnicode_1BYTE_DATA(unicode), &outpos);
4744 else
4745 ch = ucs1lib_utf8_decode(&s, end,
4746 PyUnicode_1BYTE_DATA(unicode), &outpos);
4747 } else if (kind == PyUnicode_2BYTE_KIND) {
4748 ch = ucs2lib_utf8_decode(&s, end,
4749 PyUnicode_2BYTE_DATA(unicode), &outpos);
4750 } else {
4751 assert(kind == PyUnicode_4BYTE_KIND);
4752 ch = ucs4lib_utf8_decode(&s, end,
4753 PyUnicode_4BYTE_DATA(unicode), &outpos);
4754 }
4755
4756 switch (ch) {
4757 case 0:
4758 if (s == end || consumed)
4759 goto End;
4760 errmsg = "unexpected end of data";
4761 startinpos = s - starts;
4762 endinpos = startinpos + 1;
4763 while (endinpos < size && (starts[endinpos] & 0xC0) == 0x80)
4764 endinpos++;
4765 break;
4766 case 1:
4767 errmsg = "invalid start byte";
4768 startinpos = s - starts;
4769 endinpos = startinpos + 1;
4770 break;
4771 case 2:
4772 errmsg = "invalid continuation byte";
4773 startinpos = s - starts;
4774 endinpos = startinpos + 1;
4775 while (endinpos < size && (starts[endinpos] & 0xC0) == 0x80)
4776 endinpos++;
4777 break;
4778 default:
4779 if (unicode_putchar(&unicode, &outpos, ch) < 0)
4780 goto onError;
4781 continue;
4782 }
4783
4784 if (unicode_decode_call_errorhandler(
4785 errors, &errorHandler,
4786 "utf-8", errmsg,
4787 &starts, &end, &startinpos, &endinpos, &exc, &s,
4788 &unicode, &outpos))
4789 goto onError;
Victor Stinner785938e2011-12-11 20:09:03 +01004790 }
4791
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004792End:
4793 if (unicode_resize(&unicode, outpos) < 0)
4794 goto onError;
4795
4796 if (consumed)
4797 *consumed = s - starts;
4798
4799 Py_XDECREF(errorHandler);
4800 Py_XDECREF(exc);
4801 assert(_PyUnicode_CheckConsistency(unicode, 1));
4802 return unicode;
4803
4804onError:
4805 Py_XDECREF(errorHandler);
4806 Py_XDECREF(exc);
4807 Py_XDECREF(unicode);
4808 return NULL;
Victor Stinner785938e2011-12-11 20:09:03 +01004809}
4810
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004811#ifdef __APPLE__
4812
4813/* Simplified UTF-8 decoder using surrogateescape error handler,
4814 used to decode the command line arguments on Mac OS X. */
4815
4816wchar_t*
4817_Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size)
4818{
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004819 const char *e;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004820 wchar_t *unicode;
4821 Py_ssize_t outpos;
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004822
4823 /* Note: size will always be longer than the resulting Unicode
4824 character count */
4825 if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1)) {
4826 PyErr_NoMemory();
4827 return NULL;
4828 }
4829 unicode = PyMem_Malloc((size + 1) * sizeof(wchar_t));
4830 if (!unicode)
4831 return NULL;
4832
4833 /* Unpack UTF-8 encoded data */
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004834 e = s + size;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004835 outpos = 0;
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004836 while (s < e) {
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004837 Py_UCS4 ch;
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004838#if SIZEOF_WCHAR_T == 4
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004839 ch = ucs4lib_utf8_decode(&s, e, (Py_UCS4 *)unicode, &outpos);
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004840#else
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004841 ch = ucs2lib_utf8_decode(&s, e, (Py_UCS2 *)unicode, &outpos);
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004842#endif
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004843 if (ch > 0xFF) {
4844#if SIZEOF_WCHAR_T == 4
4845 assert(0);
4846#else
4847 assert(Py_UNICODE_IS_SURROGATE(ch));
4848 /* compute and append the two surrogates: */
4849 unicode[outpos++] = (wchar_t)Py_UNICODE_HIGH_SURROGATE(ch);
4850 unicode[outpos++] = (wchar_t)Py_UNICODE_LOW_SURROGATE(ch);
4851#endif
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004852 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004853 else {
4854 if (!ch && s == e)
4855 break;
4856 /* surrogateescape */
4857 unicode[outpos++] = 0xDC00 + (unsigned char)*s++;
4858 }
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004859 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004860 unicode[outpos] = L'\0';
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004861 return unicode;
4862}
4863
4864#endif /* __APPLE__ */
Antoine Pitrouab868312009-01-10 15:40:25 +00004865
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004866/* Primary internal function which creates utf8 encoded bytes objects.
4867
4868 Allocation strategy: if the string is short, convert into a stack buffer
Tim Peters602f7402002-04-27 18:03:26 +00004869 and allocate exactly as much space needed at the end. Else allocate the
4870 maximum possible needed (4 result bytes per Unicode character), and return
4871 the excess memory at the end.
Martin v. Löwis2a7ff352002-04-21 09:59:45 +00004872*/
Tim Peters7e3d9612002-04-21 03:26:37 +00004873PyObject *
Victor Stinner7931d9a2011-11-04 00:22:48 +01004874_PyUnicode_AsUTF8String(PyObject *unicode, const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004875{
Victor Stinner6099a032011-12-18 14:22:26 +01004876 enum PyUnicode_Kind kind;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004877 void *data;
4878 Py_ssize_t size;
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +00004879
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004880 if (!PyUnicode_Check(unicode)) {
4881 PyErr_BadArgument();
4882 return NULL;
4883 }
4884
4885 if (PyUnicode_READY(unicode) == -1)
4886 return NULL;
4887
Victor Stinnere90fe6a2011-10-01 16:48:13 +02004888 if (PyUnicode_UTF8(unicode))
4889 return PyBytes_FromStringAndSize(PyUnicode_UTF8(unicode),
4890 PyUnicode_UTF8_LENGTH(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004891
4892 kind = PyUnicode_KIND(unicode);
4893 data = PyUnicode_DATA(unicode);
4894 size = PyUnicode_GET_LENGTH(unicode);
4895
Benjamin Petersonead6b532011-12-20 17:23:42 -06004896 switch (kind) {
Victor Stinner6099a032011-12-18 14:22:26 +01004897 default:
4898 assert(0);
4899 case PyUnicode_1BYTE_KIND:
4900 /* the string cannot be ASCII, or PyUnicode_UTF8() would be set */
4901 assert(!PyUnicode_IS_ASCII(unicode));
4902 return ucs1lib_utf8_encoder(unicode, data, size, errors);
4903 case PyUnicode_2BYTE_KIND:
4904 return ucs2lib_utf8_encoder(unicode, data, size, errors);
4905 case PyUnicode_4BYTE_KIND:
4906 return ucs4lib_utf8_encoder(unicode, data, size, errors);
Tim Peters602f7402002-04-27 18:03:26 +00004907 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00004908}
4909
Alexander Belopolsky40018472011-02-26 01:02:56 +00004910PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004911PyUnicode_EncodeUTF8(const Py_UNICODE *s,
4912 Py_ssize_t size,
4913 const char *errors)
4914{
4915 PyObject *v, *unicode;
4916
4917 unicode = PyUnicode_FromUnicode(s, size);
4918 if (unicode == NULL)
4919 return NULL;
4920 v = _PyUnicode_AsUTF8String(unicode, errors);
4921 Py_DECREF(unicode);
4922 return v;
4923}
4924
4925PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +00004926PyUnicode_AsUTF8String(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004927{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004928 return _PyUnicode_AsUTF8String(unicode, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004929}
4930
Walter Dörwald41980ca2007-08-16 21:55:45 +00004931/* --- UTF-32 Codec ------------------------------------------------------- */
4932
4933PyObject *
4934PyUnicode_DecodeUTF32(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004935 Py_ssize_t size,
4936 const char *errors,
4937 int *byteorder)
Walter Dörwald41980ca2007-08-16 21:55:45 +00004938{
4939 return PyUnicode_DecodeUTF32Stateful(s, size, errors, byteorder, NULL);
4940}
4941
4942PyObject *
4943PyUnicode_DecodeUTF32Stateful(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004944 Py_ssize_t size,
4945 const char *errors,
4946 int *byteorder,
4947 Py_ssize_t *consumed)
Walter Dörwald41980ca2007-08-16 21:55:45 +00004948{
4949 const char *starts = s;
4950 Py_ssize_t startinpos;
4951 Py_ssize_t endinpos;
4952 Py_ssize_t outpos;
Victor Stinner7931d9a2011-11-04 00:22:48 +01004953 PyObject *unicode;
Mark Dickinson7db923c2010-06-12 09:10:14 +00004954 const unsigned char *q, *e;
Walter Dörwald41980ca2007-08-16 21:55:45 +00004955 int bo = 0; /* assume native ordering by default */
4956 const char *errmsg = "";
Walter Dörwald41980ca2007-08-16 21:55:45 +00004957 /* Offsets from q for retrieving bytes in the right order. */
4958#ifdef BYTEORDER_IS_LITTLE_ENDIAN
4959 int iorder[] = {0, 1, 2, 3};
4960#else
4961 int iorder[] = {3, 2, 1, 0};
4962#endif
4963 PyObject *errorHandler = NULL;
4964 PyObject *exc = NULL;
Victor Stinner313a1202010-06-11 23:56:51 +00004965
Walter Dörwald41980ca2007-08-16 21:55:45 +00004966 q = (unsigned char *)s;
4967 e = q + size;
4968
4969 if (byteorder)
4970 bo = *byteorder;
4971
4972 /* Check for BOM marks (U+FEFF) in the input and adjust current
4973 byte order setting accordingly. In native mode, the leading BOM
4974 mark is skipped, in all other modes, it is copied to the output
4975 stream as-is (giving a ZWNBSP character). */
4976 if (bo == 0) {
4977 if (size >= 4) {
4978 const Py_UCS4 bom = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) |
Benjamin Peterson29060642009-01-31 22:14:21 +00004979 (q[iorder[1]] << 8) | q[iorder[0]];
Walter Dörwald41980ca2007-08-16 21:55:45 +00004980#ifdef BYTEORDER_IS_LITTLE_ENDIAN
Benjamin Peterson29060642009-01-31 22:14:21 +00004981 if (bom == 0x0000FEFF) {
4982 q += 4;
4983 bo = -1;
4984 }
4985 else if (bom == 0xFFFE0000) {
4986 q += 4;
4987 bo = 1;
4988 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00004989#else
Benjamin Peterson29060642009-01-31 22:14:21 +00004990 if (bom == 0x0000FEFF) {
4991 q += 4;
4992 bo = 1;
4993 }
4994 else if (bom == 0xFFFE0000) {
4995 q += 4;
4996 bo = -1;
4997 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00004998#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00004999 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00005000 }
5001
5002 if (bo == -1) {
5003 /* force LE */
5004 iorder[0] = 0;
5005 iorder[1] = 1;
5006 iorder[2] = 2;
5007 iorder[3] = 3;
5008 }
5009 else if (bo == 1) {
5010 /* force BE */
5011 iorder[0] = 3;
5012 iorder[1] = 2;
5013 iorder[2] = 1;
5014 iorder[3] = 0;
5015 }
5016
Antoine Pitroucc0cfd32010-06-11 21:46:32 +00005017 /* This might be one to much, because of a BOM */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005018 unicode = PyUnicode_New((size+3)/4, 127);
Antoine Pitroucc0cfd32010-06-11 21:46:32 +00005019 if (!unicode)
5020 return NULL;
5021 if (size == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01005022 return unicode;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005023 outpos = 0;
Antoine Pitroucc0cfd32010-06-11 21:46:32 +00005024
Walter Dörwald41980ca2007-08-16 21:55:45 +00005025 while (q < e) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005026 Py_UCS4 ch;
5027 /* remaining bytes at the end? (size should be divisible by 4) */
5028 if (e-q<4) {
5029 if (consumed)
5030 break;
5031 errmsg = "truncated data";
5032 startinpos = ((const char *)q)-starts;
5033 endinpos = ((const char *)e)-starts;
5034 goto utf32Error;
5035 /* The remaining input chars are ignored if the callback
5036 chooses to skip the input */
5037 }
5038 ch = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) |
5039 (q[iorder[1]] << 8) | q[iorder[0]];
Walter Dörwald41980ca2007-08-16 21:55:45 +00005040
Benjamin Peterson29060642009-01-31 22:14:21 +00005041 if (ch >= 0x110000)
5042 {
5043 errmsg = "codepoint not in range(0x110000)";
5044 startinpos = ((const char *)q)-starts;
5045 endinpos = startinpos+4;
5046 goto utf32Error;
5047 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005048 if (unicode_putchar(&unicode, &outpos, ch) < 0)
5049 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00005050 q += 4;
5051 continue;
5052 utf32Error:
Benjamin Peterson29060642009-01-31 22:14:21 +00005053 if (unicode_decode_call_errorhandler(
5054 errors, &errorHandler,
5055 "utf32", errmsg,
5056 &starts, (const char **)&e, &startinpos, &endinpos, &exc, (const char **)&q,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005057 &unicode, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00005058 goto onError;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005059 }
5060
5061 if (byteorder)
5062 *byteorder = bo;
5063
5064 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00005065 *consumed = (const char *)q-starts;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005066
5067 /* Adjust length */
Victor Stinner16e6a802011-12-12 13:24:15 +01005068 if (unicode_resize(&unicode, outpos) < 0)
Walter Dörwald41980ca2007-08-16 21:55:45 +00005069 goto onError;
5070
5071 Py_XDECREF(errorHandler);
5072 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01005073 return unicode_result(unicode);
Walter Dörwald41980ca2007-08-16 21:55:45 +00005074
Benjamin Peterson29060642009-01-31 22:14:21 +00005075 onError:
Walter Dörwald41980ca2007-08-16 21:55:45 +00005076 Py_DECREF(unicode);
5077 Py_XDECREF(errorHandler);
5078 Py_XDECREF(exc);
5079 return NULL;
5080}
5081
5082PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005083_PyUnicode_EncodeUTF32(PyObject *str,
5084 const char *errors,
5085 int byteorder)
Walter Dörwald41980ca2007-08-16 21:55:45 +00005086{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005087 int kind;
5088 void *data;
5089 Py_ssize_t len;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005090 PyObject *v;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005091 unsigned char *p;
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01005092 Py_ssize_t nsize, i;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005093 /* Offsets from p for storing byte pairs in the right order. */
5094#ifdef BYTEORDER_IS_LITTLE_ENDIAN
5095 int iorder[] = {0, 1, 2, 3};
5096#else
5097 int iorder[] = {3, 2, 1, 0};
5098#endif
5099
Benjamin Peterson29060642009-01-31 22:14:21 +00005100#define STORECHAR(CH) \
5101 do { \
5102 p[iorder[3]] = ((CH) >> 24) & 0xff; \
5103 p[iorder[2]] = ((CH) >> 16) & 0xff; \
5104 p[iorder[1]] = ((CH) >> 8) & 0xff; \
5105 p[iorder[0]] = (CH) & 0xff; \
5106 p += 4; \
Walter Dörwald41980ca2007-08-16 21:55:45 +00005107 } while(0)
5108
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005109 if (!PyUnicode_Check(str)) {
5110 PyErr_BadArgument();
5111 return NULL;
5112 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05005113 if (PyUnicode_READY(str) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005114 return NULL;
5115 kind = PyUnicode_KIND(str);
5116 data = PyUnicode_DATA(str);
5117 len = PyUnicode_GET_LENGTH(str);
5118
5119 nsize = len + (byteorder == 0);
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01005120 if (nsize > PY_SSIZE_T_MAX / 4)
Benjamin Peterson29060642009-01-31 22:14:21 +00005121 return PyErr_NoMemory();
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01005122 v = PyBytes_FromStringAndSize(NULL, nsize * 4);
Walter Dörwald41980ca2007-08-16 21:55:45 +00005123 if (v == NULL)
5124 return NULL;
5125
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005126 p = (unsigned char *)PyBytes_AS_STRING(v);
Walter Dörwald41980ca2007-08-16 21:55:45 +00005127 if (byteorder == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005128 STORECHAR(0xFEFF);
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005129 if (len == 0)
Guido van Rossum98297ee2007-11-06 21:34:58 +00005130 goto done;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005131
5132 if (byteorder == -1) {
5133 /* force LE */
5134 iorder[0] = 0;
5135 iorder[1] = 1;
5136 iorder[2] = 2;
5137 iorder[3] = 3;
5138 }
5139 else if (byteorder == 1) {
5140 /* force BE */
5141 iorder[0] = 3;
5142 iorder[1] = 2;
5143 iorder[2] = 1;
5144 iorder[3] = 0;
5145 }
5146
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005147 for (i = 0; i < len; i++)
5148 STORECHAR(PyUnicode_READ(kind, data, i));
Guido van Rossum98297ee2007-11-06 21:34:58 +00005149
5150 done:
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005151 return v;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005152#undef STORECHAR
5153}
5154
Alexander Belopolsky40018472011-02-26 01:02:56 +00005155PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005156PyUnicode_EncodeUTF32(const Py_UNICODE *s,
5157 Py_ssize_t size,
5158 const char *errors,
5159 int byteorder)
5160{
5161 PyObject *result;
5162 PyObject *tmp = PyUnicode_FromUnicode(s, size);
5163 if (tmp == NULL)
5164 return NULL;
5165 result = _PyUnicode_EncodeUTF32(tmp, errors, byteorder);
5166 Py_DECREF(tmp);
5167 return result;
5168}
5169
5170PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +00005171PyUnicode_AsUTF32String(PyObject *unicode)
Walter Dörwald41980ca2007-08-16 21:55:45 +00005172{
Victor Stinnerb960b342011-11-20 19:12:52 +01005173 return _PyUnicode_EncodeUTF32(unicode, NULL, 0);
Walter Dörwald41980ca2007-08-16 21:55:45 +00005174}
5175
Guido van Rossumd57fd912000-03-10 22:53:23 +00005176/* --- UTF-16 Codec ------------------------------------------------------- */
5177
Tim Peters772747b2001-08-09 22:21:55 +00005178PyObject *
5179PyUnicode_DecodeUTF16(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00005180 Py_ssize_t size,
5181 const char *errors,
5182 int *byteorder)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005183{
Walter Dörwald69652032004-09-07 20:24:22 +00005184 return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL);
5185}
5186
5187PyObject *
5188PyUnicode_DecodeUTF16Stateful(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00005189 Py_ssize_t size,
5190 const char *errors,
5191 int *byteorder,
5192 Py_ssize_t *consumed)
Walter Dörwald69652032004-09-07 20:24:22 +00005193{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005194 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005195 Py_ssize_t startinpos;
5196 Py_ssize_t endinpos;
5197 Py_ssize_t outpos;
Victor Stinner7931d9a2011-11-04 00:22:48 +01005198 PyObject *unicode;
Antoine Pitrou63065d72012-05-15 23:48:04 +02005199 const unsigned char *q, *e;
Tim Peters772747b2001-08-09 22:21:55 +00005200 int bo = 0; /* assume native ordering by default */
Antoine Pitrou63065d72012-05-15 23:48:04 +02005201 int native_ordering;
Marc-André Lemburg9542f482000-07-17 18:23:13 +00005202 const char *errmsg = "";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005203 PyObject *errorHandler = NULL;
5204 PyObject *exc = NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005205
Tim Peters772747b2001-08-09 22:21:55 +00005206 q = (unsigned char *)s;
Antoine Pitrou63065d72012-05-15 23:48:04 +02005207 e = q + size;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005208
5209 if (byteorder)
Tim Peters772747b2001-08-09 22:21:55 +00005210 bo = *byteorder;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005211
Marc-André Lemburg489b56e2001-05-21 20:30:15 +00005212 /* Check for BOM marks (U+FEFF) in the input and adjust current
5213 byte order setting accordingly. In native mode, the leading BOM
5214 mark is skipped, in all other modes, it is copied to the output
5215 stream as-is (giving a ZWNBSP character). */
Antoine Pitrou63065d72012-05-15 23:48:04 +02005216 if (bo == 0 && size >= 2) {
5217 const Py_UCS4 bom = (q[1] << 8) | q[0];
5218 if (bom == 0xFEFF) {
5219 q += 2;
5220 bo = -1;
Benjamin Peterson29060642009-01-31 22:14:21 +00005221 }
Antoine Pitrou63065d72012-05-15 23:48:04 +02005222 else if (bom == 0xFFFE) {
5223 q += 2;
5224 bo = 1;
5225 }
5226 if (byteorder)
5227 *byteorder = bo;
Marc-André Lemburg489b56e2001-05-21 20:30:15 +00005228 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00005229
Antoine Pitrou63065d72012-05-15 23:48:04 +02005230 if (q == e) {
5231 if (consumed)
5232 *consumed = size;
5233 Py_INCREF(unicode_empty);
5234 return unicode_empty;
Tim Peters772747b2001-08-09 22:21:55 +00005235 }
Antoine Pitrou63065d72012-05-15 23:48:04 +02005236
Antoine Pitrouab868312009-01-10 15:40:25 +00005237#ifdef BYTEORDER_IS_LITTLE_ENDIAN
Antoine Pitrou63065d72012-05-15 23:48:04 +02005238 native_ordering = bo <= 0;
Antoine Pitrouab868312009-01-10 15:40:25 +00005239#else
Antoine Pitrou63065d72012-05-15 23:48:04 +02005240 native_ordering = bo >= 0;
Antoine Pitrouab868312009-01-10 15:40:25 +00005241#endif
Tim Peters772747b2001-08-09 22:21:55 +00005242
Antoine Pitrou63065d72012-05-15 23:48:04 +02005243 /* Note: size will always be longer than the resulting Unicode
5244 character count */
5245 unicode = PyUnicode_New((e - q + 1) / 2, 127);
5246 if (!unicode)
5247 return NULL;
5248
5249 outpos = 0;
5250 while (1) {
5251 Py_UCS4 ch = 0;
5252 if (e - q >= 2) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005253 int kind = PyUnicode_KIND(unicode);
Antoine Pitrou63065d72012-05-15 23:48:04 +02005254 if (kind == PyUnicode_1BYTE_KIND) {
5255 if (PyUnicode_IS_ASCII(unicode))
5256 ch = asciilib_utf16_decode(&q, e,
5257 PyUnicode_1BYTE_DATA(unicode), &outpos,
5258 native_ordering);
5259 else
5260 ch = ucs1lib_utf16_decode(&q, e,
5261 PyUnicode_1BYTE_DATA(unicode), &outpos,
5262 native_ordering);
5263 } else if (kind == PyUnicode_2BYTE_KIND) {
5264 ch = ucs2lib_utf16_decode(&q, e,
5265 PyUnicode_2BYTE_DATA(unicode), &outpos,
5266 native_ordering);
5267 } else {
5268 assert(kind == PyUnicode_4BYTE_KIND);
5269 ch = ucs4lib_utf16_decode(&q, e,
5270 PyUnicode_4BYTE_DATA(unicode), &outpos,
5271 native_ordering);
Antoine Pitrouab868312009-01-10 15:40:25 +00005272 }
Antoine Pitrouab868312009-01-10 15:40:25 +00005273 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005274
Antoine Pitrou63065d72012-05-15 23:48:04 +02005275 switch (ch)
5276 {
5277 case 0:
5278 /* remaining byte at the end? (size should be even) */
5279 if (q == e || consumed)
5280 goto End;
5281 errmsg = "truncated data";
5282 startinpos = ((const char *)q) - starts;
5283 endinpos = ((const char *)e) - starts;
5284 break;
5285 /* The remaining input chars are ignored if the callback
5286 chooses to skip the input */
5287 case 1:
5288 errmsg = "unexpected end of data";
5289 startinpos = ((const char *)q) - 2 - starts;
5290 endinpos = ((const char *)e) - starts;
5291 break;
5292 case 2:
5293 errmsg = "illegal encoding";
5294 startinpos = ((const char *)q) - 2 - starts;
5295 endinpos = startinpos + 2;
5296 break;
5297 case 3:
5298 errmsg = "illegal UTF-16 surrogate";
5299 startinpos = ((const char *)q) - 4 - starts;
5300 endinpos = startinpos + 2;
5301 break;
5302 default:
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005303 if (unicode_putchar(&unicode, &outpos, ch) < 0)
5304 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00005305 continue;
5306 }
5307
Benjamin Peterson29060642009-01-31 22:14:21 +00005308 if (unicode_decode_call_errorhandler(
Antoine Pitrouab868312009-01-10 15:40:25 +00005309 errors,
5310 &errorHandler,
5311 "utf16", errmsg,
5312 &starts,
5313 (const char **)&e,
5314 &startinpos,
5315 &endinpos,
5316 &exc,
5317 (const char **)&q,
5318 &unicode,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005319 &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00005320 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005321 }
5322
Antoine Pitrou63065d72012-05-15 23:48:04 +02005323End:
Walter Dörwald69652032004-09-07 20:24:22 +00005324 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00005325 *consumed = (const char *)q-starts;
Walter Dörwald69652032004-09-07 20:24:22 +00005326
Guido van Rossumd57fd912000-03-10 22:53:23 +00005327 /* Adjust length */
Victor Stinner16e6a802011-12-12 13:24:15 +01005328 if (unicode_resize(&unicode, outpos) < 0)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005329 goto onError;
5330
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005331 Py_XDECREF(errorHandler);
5332 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01005333 return unicode_result(unicode);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005334
Benjamin Peterson29060642009-01-31 22:14:21 +00005335 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00005336 Py_DECREF(unicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005337 Py_XDECREF(errorHandler);
5338 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005339 return NULL;
5340}
5341
Tim Peters772747b2001-08-09 22:21:55 +00005342PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005343_PyUnicode_EncodeUTF16(PyObject *str,
5344 const char *errors,
5345 int byteorder)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005346{
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005347 enum PyUnicode_Kind kind;
5348 const void *data;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005349 Py_ssize_t len;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005350 PyObject *v;
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005351 unsigned short *out;
5352 Py_ssize_t bytesize;
5353 Py_ssize_t pairs;
5354#ifdef WORDS_BIGENDIAN
5355 int native_ordering = byteorder >= 0;
Tim Peters772747b2001-08-09 22:21:55 +00005356#else
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005357 int native_ordering = byteorder <= 0;
Tim Peters772747b2001-08-09 22:21:55 +00005358#endif
5359
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005360 if (!PyUnicode_Check(str)) {
5361 PyErr_BadArgument();
5362 return NULL;
5363 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05005364 if (PyUnicode_READY(str) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005365 return NULL;
5366 kind = PyUnicode_KIND(str);
5367 data = PyUnicode_DATA(str);
5368 len = PyUnicode_GET_LENGTH(str);
Victor Stinner0e368262011-11-10 20:12:49 +01005369
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005370 pairs = 0;
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005371 if (kind == PyUnicode_4BYTE_KIND) {
5372 const Py_UCS4 *in = (const Py_UCS4 *)data;
5373 const Py_UCS4 *end = in + len;
5374 while (in < end)
5375 if (*in++ >= 0x10000)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005376 pairs++;
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005377 }
5378 if (len > PY_SSIZE_T_MAX / 2 - pairs - (byteorder == 0))
Benjamin Peterson29060642009-01-31 22:14:21 +00005379 return PyErr_NoMemory();
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005380 bytesize = (len + pairs + (byteorder == 0)) * 2;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005381 v = PyBytes_FromStringAndSize(NULL, bytesize);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005382 if (v == NULL)
5383 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005384
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005385 /* output buffer is 2-bytes aligned */
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +02005386 assert(_Py_IS_ALIGNED(PyBytes_AS_STRING(v), 2));
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005387 out = (unsigned short *)PyBytes_AS_STRING(v);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005388 if (byteorder == 0)
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005389 *out++ = 0xFEFF;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005390 if (len == 0)
Guido van Rossum98297ee2007-11-06 21:34:58 +00005391 goto done;
Tim Peters772747b2001-08-09 22:21:55 +00005392
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005393 switch (kind) {
5394 case PyUnicode_1BYTE_KIND: {
5395 ucs1lib_utf16_encode(out, (const Py_UCS1 *)data, len, native_ordering);
5396 break;
Tim Peters772747b2001-08-09 22:21:55 +00005397 }
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005398 case PyUnicode_2BYTE_KIND: {
5399 ucs2lib_utf16_encode(out, (const Py_UCS2 *)data, len, native_ordering);
5400 break;
Tim Peters772747b2001-08-09 22:21:55 +00005401 }
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005402 case PyUnicode_4BYTE_KIND: {
5403 ucs4lib_utf16_encode(out, (const Py_UCS4 *)data, len, native_ordering);
5404 break;
5405 }
5406 default:
5407 assert(0);
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00005408 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00005409
5410 done:
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005411 return v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005412}
5413
Alexander Belopolsky40018472011-02-26 01:02:56 +00005414PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005415PyUnicode_EncodeUTF16(const Py_UNICODE *s,
5416 Py_ssize_t size,
5417 const char *errors,
5418 int byteorder)
5419{
5420 PyObject *result;
5421 PyObject *tmp = PyUnicode_FromUnicode(s, size);
5422 if (tmp == NULL)
5423 return NULL;
5424 result = _PyUnicode_EncodeUTF16(tmp, errors, byteorder);
5425 Py_DECREF(tmp);
5426 return result;
5427}
5428
5429PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +00005430PyUnicode_AsUTF16String(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005431{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005432 return _PyUnicode_EncodeUTF16(unicode, NULL, 0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005433}
5434
5435/* --- Unicode Escape Codec ----------------------------------------------- */
5436
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005437/* Helper function for PyUnicode_DecodeUnicodeEscape, determines
5438 if all the escapes in the string make it still a valid ASCII string.
5439 Returns -1 if any escapes were found which cause the string to
5440 pop out of ASCII range. Otherwise returns the length of the
5441 required buffer to hold the string.
5442 */
Antoine Pitrou53bb5482011-10-10 23:49:24 +02005443static Py_ssize_t
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005444length_of_escaped_ascii_string(const char *s, Py_ssize_t size)
5445{
5446 const unsigned char *p = (const unsigned char *)s;
5447 const unsigned char *end = p + size;
5448 Py_ssize_t length = 0;
5449
5450 if (size < 0)
5451 return -1;
5452
5453 for (; p < end; ++p) {
5454 if (*p > 127) {
5455 /* Non-ASCII */
5456 return -1;
5457 }
5458 else if (*p != '\\') {
5459 /* Normal character */
5460 ++length;
5461 }
5462 else {
5463 /* Backslash-escape, check next char */
5464 ++p;
5465 /* Escape sequence reaches till end of string or
5466 non-ASCII follow-up. */
5467 if (p >= end || *p > 127)
5468 return -1;
5469 switch (*p) {
5470 case '\n':
5471 /* backslash + \n result in zero characters */
5472 break;
5473 case '\\': case '\'': case '\"':
5474 case 'b': case 'f': case 't':
5475 case 'n': case 'r': case 'v': case 'a':
5476 ++length;
5477 break;
5478 case '0': case '1': case '2': case '3':
5479 case '4': case '5': case '6': case '7':
5480 case 'x': case 'u': case 'U': case 'N':
5481 /* these do not guarantee ASCII characters */
5482 return -1;
5483 default:
5484 /* count the backslash + the other character */
5485 length += 2;
5486 }
5487 }
5488 }
5489 return length;
5490}
5491
Fredrik Lundh06d12682001-01-24 07:59:11 +00005492static _PyUnicode_Name_CAPI *ucnhash_CAPI = NULL;
Marc-André Lemburg0f774e32000-06-28 16:43:35 +00005493
Alexander Belopolsky40018472011-02-26 01:02:56 +00005494PyObject *
5495PyUnicode_DecodeUnicodeEscape(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03005496 Py_ssize_t size,
Victor Stinnerc17f5402011-09-29 00:16:58 +02005497 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005498{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005499 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005500 Py_ssize_t startinpos;
5501 Py_ssize_t endinpos;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005502 int j;
Victor Stinner7931d9a2011-11-04 00:22:48 +01005503 PyObject *v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005504 const char *end;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005505 char* message;
5506 Py_UCS4 chr = 0xffffffff; /* in case 'getcode' messes up */
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005507 PyObject *errorHandler = NULL;
5508 PyObject *exc = NULL;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005509 Py_ssize_t len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005510 Py_ssize_t i;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005511
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005512 len = length_of_escaped_ascii_string(s, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005513
5514 /* After length_of_escaped_ascii_string() there are two alternatives,
5515 either the string is pure ASCII with named escapes like \n, etc.
5516 and we determined it's exact size (common case)
5517 or it contains \x, \u, ... escape sequences. then we create a
5518 legacy wchar string and resize it at the end of this function. */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005519 if (len >= 0) {
5520 v = PyUnicode_New(len, 127);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005521 if (!v)
5522 goto onError;
5523 assert(PyUnicode_KIND(v) == PyUnicode_1BYTE_KIND);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005524 }
5525 else {
5526 /* Escaped strings will always be longer than the resulting
5527 Unicode string, so we start with size here and then reduce the
5528 length after conversion to the true value.
5529 (but if the error callback returns a long replacement string
5530 we'll have to allocate more space) */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005531 v = PyUnicode_New(size, 127);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005532 if (!v)
5533 goto onError;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005534 len = size;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005535 }
5536
Guido van Rossumd57fd912000-03-10 22:53:23 +00005537 if (size == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01005538 return v;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005539 i = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005540 end = s + size;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005541
Guido van Rossumd57fd912000-03-10 22:53:23 +00005542 while (s < end) {
5543 unsigned char c;
Victor Stinner24729f32011-11-10 20:31:37 +01005544 Py_UCS4 x;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005545 int digits;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005546
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005547 /* The only case in which i == ascii_length is a backslash
5548 followed by a newline. */
5549 assert(i <= len);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005550
Guido van Rossumd57fd912000-03-10 22:53:23 +00005551 /* Non-escape characters are interpreted as Unicode ordinals */
5552 if (*s != '\\') {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005553 if (unicode_putchar(&v, &i, (unsigned char) *s++) < 0)
5554 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005555 continue;
5556 }
5557
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005558 startinpos = s-starts;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005559 /* \ - Escapes */
5560 s++;
Guido van Rossum8ce8a782007-11-01 19:42:39 +00005561 c = *s++;
5562 if (s > end)
5563 c = '\0'; /* Invalid after \ */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005564
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005565 /* The only case in which i == ascii_length is a backslash
5566 followed by a newline. */
5567 assert(i < len || (i == len && c == '\n'));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005568
Guido van Rossum8ce8a782007-11-01 19:42:39 +00005569 switch (c) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00005570
Benjamin Peterson29060642009-01-31 22:14:21 +00005571 /* \x escapes */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005572#define WRITECHAR(ch) \
5573 do { \
5574 if (unicode_putchar(&v, &i, ch) < 0) \
5575 goto onError; \
5576 }while(0)
5577
Guido van Rossumd57fd912000-03-10 22:53:23 +00005578 case '\n': break;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005579 case '\\': WRITECHAR('\\'); break;
5580 case '\'': WRITECHAR('\''); break;
5581 case '\"': WRITECHAR('\"'); break;
5582 case 'b': WRITECHAR('\b'); break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005583 /* FF */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005584 case 'f': WRITECHAR('\014'); break;
5585 case 't': WRITECHAR('\t'); break;
5586 case 'n': WRITECHAR('\n'); break;
5587 case 'r': WRITECHAR('\r'); break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005588 /* VT */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005589 case 'v': WRITECHAR('\013'); break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005590 /* BEL, not classic C */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005591 case 'a': WRITECHAR('\007'); break;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005592
Benjamin Peterson29060642009-01-31 22:14:21 +00005593 /* \OOO (octal) escapes */
Guido van Rossumd57fd912000-03-10 22:53:23 +00005594 case '0': case '1': case '2': case '3':
5595 case '4': case '5': case '6': case '7':
Guido van Rossum0e4f6572000-05-01 21:27:20 +00005596 x = s[-1] - '0';
Guido van Rossum8ce8a782007-11-01 19:42:39 +00005597 if (s < end && '0' <= *s && *s <= '7') {
Guido van Rossum0e4f6572000-05-01 21:27:20 +00005598 x = (x<<3) + *s++ - '0';
Guido van Rossum8ce8a782007-11-01 19:42:39 +00005599 if (s < end && '0' <= *s && *s <= '7')
Guido van Rossum0e4f6572000-05-01 21:27:20 +00005600 x = (x<<3) + *s++ - '0';
Guido van Rossumd57fd912000-03-10 22:53:23 +00005601 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005602 WRITECHAR(x);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005603 break;
5604
Benjamin Peterson29060642009-01-31 22:14:21 +00005605 /* hex escapes */
5606 /* \xXX */
Guido van Rossumd57fd912000-03-10 22:53:23 +00005607 case 'x':
Fredrik Lundhccc74732001-02-18 22:13:49 +00005608 digits = 2;
5609 message = "truncated \\xXX escape";
5610 goto hexescape;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005611
Benjamin Peterson29060642009-01-31 22:14:21 +00005612 /* \uXXXX */
Guido van Rossumd57fd912000-03-10 22:53:23 +00005613 case 'u':
Fredrik Lundhccc74732001-02-18 22:13:49 +00005614 digits = 4;
5615 message = "truncated \\uXXXX escape";
5616 goto hexescape;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005617
Benjamin Peterson29060642009-01-31 22:14:21 +00005618 /* \UXXXXXXXX */
Fredrik Lundhdf846752000-09-03 11:29:49 +00005619 case 'U':
Fredrik Lundhccc74732001-02-18 22:13:49 +00005620 digits = 8;
5621 message = "truncated \\UXXXXXXXX escape";
5622 hexescape:
5623 chr = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005624 if (s+digits>end) {
5625 endinpos = size;
5626 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00005627 errors, &errorHandler,
5628 "unicodeescape", "end of string in escape sequence",
5629 &starts, &end, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005630 &v, &i))
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005631 goto onError;
5632 goto nextByte;
5633 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005634 for (j = 0; j < digits; ++j) {
5635 c = (unsigned char) s[j];
David Malcolm96960882010-11-05 17:23:41 +00005636 if (!Py_ISXDIGIT(c)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005637 endinpos = (s+j+1)-starts;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005638 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00005639 errors, &errorHandler,
5640 "unicodeescape", message,
5641 &starts, &end, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005642 &v, &i))
Fredrik Lundhdf846752000-09-03 11:29:49 +00005643 goto onError;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005644 len = PyUnicode_GET_LENGTH(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005645 goto nextByte;
Fredrik Lundhdf846752000-09-03 11:29:49 +00005646 }
5647 chr = (chr<<4) & ~0xF;
5648 if (c >= '0' && c <= '9')
5649 chr += c - '0';
5650 else if (c >= 'a' && c <= 'f')
5651 chr += 10 + c - 'a';
5652 else
5653 chr += 10 + c - 'A';
5654 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005655 s += j;
Jeremy Hylton504de6b2003-10-06 05:08:26 +00005656 if (chr == 0xffffffff && PyErr_Occurred())
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005657 /* _decoding_error will have already written into the
5658 target buffer. */
5659 break;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005660 store:
Fredrik Lundhdf846752000-09-03 11:29:49 +00005661 /* when we get here, chr is a 32-bit unicode character */
Victor Stinner8faf8212011-12-08 22:14:11 +01005662 if (chr <= MAX_UNICODE) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005663 WRITECHAR(chr);
Fredrik Lundhdf846752000-09-03 11:29:49 +00005664 } else {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005665 endinpos = s-starts;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005666 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00005667 errors, &errorHandler,
5668 "unicodeescape", "illegal Unicode character",
5669 &starts, &end, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005670 &v, &i))
Fredrik Lundhdf846752000-09-03 11:29:49 +00005671 goto onError;
5672 }
Fredrik Lundhccc74732001-02-18 22:13:49 +00005673 break;
5674
Benjamin Peterson29060642009-01-31 22:14:21 +00005675 /* \N{name} */
Fredrik Lundhccc74732001-02-18 22:13:49 +00005676 case 'N':
5677 message = "malformed \\N character escape";
5678 if (ucnhash_CAPI == NULL) {
5679 /* load the unicode data module */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005680 ucnhash_CAPI = (_PyUnicode_Name_CAPI *)PyCapsule_Import(
5681 PyUnicodeData_CAPSULE_NAME, 1);
Fredrik Lundhccc74732001-02-18 22:13:49 +00005682 if (ucnhash_CAPI == NULL)
5683 goto ucnhashError;
5684 }
5685 if (*s == '{') {
5686 const char *start = s+1;
5687 /* look for the closing brace */
5688 while (*s != '}' && s < end)
5689 s++;
5690 if (s > start && s < end && *s == '}') {
5691 /* found a name. look it up in the unicode database */
5692 message = "unknown Unicode character name";
5693 s++;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005694 if (ucnhash_CAPI->getcode(NULL, start, (int)(s-start-1),
Ezio Melotti931b8aa2011-10-21 21:57:36 +03005695 &chr, 0))
Fredrik Lundhccc74732001-02-18 22:13:49 +00005696 goto store;
5697 }
5698 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005699 endinpos = s-starts;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005700 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00005701 errors, &errorHandler,
5702 "unicodeescape", message,
5703 &starts, &end, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005704 &v, &i))
Fredrik Lundhccc74732001-02-18 22:13:49 +00005705 goto onError;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005706 break;
5707
5708 default:
Walter Dörwald8c077222002-03-25 11:16:18 +00005709 if (s > end) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005710 message = "\\ at end of string";
5711 s--;
5712 endinpos = s-starts;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005713 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00005714 errors, &errorHandler,
5715 "unicodeescape", message,
5716 &starts, &end, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005717 &v, &i))
Walter Dörwald8c077222002-03-25 11:16:18 +00005718 goto onError;
5719 }
5720 else {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005721 WRITECHAR('\\');
5722 WRITECHAR(s[-1]);
Walter Dörwald8c077222002-03-25 11:16:18 +00005723 }
Fredrik Lundhccc74732001-02-18 22:13:49 +00005724 break;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005725 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005726 nextByte:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005727 ;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005728 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005729#undef WRITECHAR
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005730
Victor Stinner16e6a802011-12-12 13:24:15 +01005731 if (unicode_resize(&v, i) < 0)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005732 goto onError;
Walter Dörwaldd4ade082003-08-15 15:00:26 +00005733 Py_XDECREF(errorHandler);
5734 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01005735 return unicode_result(v);
Walter Dörwald8c077222002-03-25 11:16:18 +00005736
Benjamin Peterson29060642009-01-31 22:14:21 +00005737 ucnhashError:
Fredrik Lundh06d12682001-01-24 07:59:11 +00005738 PyErr_SetString(
5739 PyExc_UnicodeError,
5740 "\\N escapes not supported (can't load unicodedata module)"
5741 );
Hye-Shik Chang4af5c8c2006-03-07 15:39:21 +00005742 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005743 Py_XDECREF(errorHandler);
5744 Py_XDECREF(exc);
Fredrik Lundhf6056062001-01-20 11:15:25 +00005745 return NULL;
5746
Benjamin Peterson29060642009-01-31 22:14:21 +00005747 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00005748 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005749 Py_XDECREF(errorHandler);
5750 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005751 return NULL;
5752}
5753
5754/* Return a Unicode-Escape string version of the Unicode object.
5755
5756 If quotes is true, the string is enclosed in u"" or u'' quotes as
5757 appropriate.
5758
5759*/
5760
Alexander Belopolsky40018472011-02-26 01:02:56 +00005761PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005762PyUnicode_AsUnicodeEscapeString(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005763{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005764 Py_ssize_t i, len;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005765 PyObject *repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005766 char *p;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005767 int kind;
5768 void *data;
5769 Py_ssize_t expandsize = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005770
Ezio Melottie7f90372012-10-05 03:33:31 +03005771 /* Initial allocation is based on the longest-possible character
Thomas Wouters89f507f2006-12-13 04:49:30 +00005772 escape.
5773
Ezio Melottie7f90372012-10-05 03:33:31 +03005774 For UCS1 strings it's '\xxx', 4 bytes per source character.
5775 For UCS2 strings it's '\uxxxx', 6 bytes per source character.
5776 For UCS4 strings it's '\U00xxxxxx', 10 bytes per source character.
Thomas Wouters89f507f2006-12-13 04:49:30 +00005777 */
5778
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005779 if (!PyUnicode_Check(unicode)) {
5780 PyErr_BadArgument();
5781 return NULL;
5782 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05005783 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005784 return NULL;
5785 len = PyUnicode_GET_LENGTH(unicode);
5786 kind = PyUnicode_KIND(unicode);
5787 data = PyUnicode_DATA(unicode);
Benjamin Petersonead6b532011-12-20 17:23:42 -06005788 switch (kind) {
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005789 case PyUnicode_1BYTE_KIND: expandsize = 4; break;
5790 case PyUnicode_2BYTE_KIND: expandsize = 6; break;
5791 case PyUnicode_4BYTE_KIND: expandsize = 10; break;
5792 }
5793
5794 if (len == 0)
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005795 return PyBytes_FromStringAndSize(NULL, 0);
5796
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005797 if (len > (PY_SSIZE_T_MAX - 2 - 1) / expandsize)
Benjamin Peterson29060642009-01-31 22:14:21 +00005798 return PyErr_NoMemory();
Neal Norwitz3ce5d922008-08-24 07:08:55 +00005799
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005800 repr = PyBytes_FromStringAndSize(NULL,
Benjamin Peterson29060642009-01-31 22:14:21 +00005801 2
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005802 + expandsize*len
Benjamin Peterson29060642009-01-31 22:14:21 +00005803 + 1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005804 if (repr == NULL)
5805 return NULL;
5806
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005807 p = PyBytes_AS_STRING(repr);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005808
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005809 for (i = 0; i < len; i++) {
Victor Stinner3326cb62011-11-10 20:15:25 +01005810 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005811
Walter Dörwald79e913e2007-05-12 11:08:06 +00005812 /* Escape backslashes */
5813 if (ch == '\\') {
Guido van Rossumd57fd912000-03-10 22:53:23 +00005814 *p++ = '\\';
5815 *p++ = (char) ch;
Walter Dörwald79e913e2007-05-12 11:08:06 +00005816 continue;
Tim Petersced69f82003-09-16 20:30:58 +00005817 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005818
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00005819 /* Map 21-bit characters to '\U00xxxxxx' */
5820 else if (ch >= 0x10000) {
Victor Stinner8faf8212011-12-08 22:14:11 +01005821 assert(ch <= MAX_UNICODE);
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00005822 *p++ = '\\';
5823 *p++ = 'U';
Victor Stinnerf5cff562011-10-14 02:13:11 +02005824 *p++ = Py_hexdigits[(ch >> 28) & 0x0000000F];
5825 *p++ = Py_hexdigits[(ch >> 24) & 0x0000000F];
5826 *p++ = Py_hexdigits[(ch >> 20) & 0x0000000F];
5827 *p++ = Py_hexdigits[(ch >> 16) & 0x0000000F];
5828 *p++ = Py_hexdigits[(ch >> 12) & 0x0000000F];
5829 *p++ = Py_hexdigits[(ch >> 8) & 0x0000000F];
5830 *p++ = Py_hexdigits[(ch >> 4) & 0x0000000F];
5831 *p++ = Py_hexdigits[ch & 0x0000000F];
Benjamin Peterson29060642009-01-31 22:14:21 +00005832 continue;
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00005833 }
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +00005834
Guido van Rossumd57fd912000-03-10 22:53:23 +00005835 /* Map 16-bit characters to '\uxxxx' */
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +00005836 if (ch >= 256) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00005837 *p++ = '\\';
5838 *p++ = 'u';
Victor Stinnerf5cff562011-10-14 02:13:11 +02005839 *p++ = Py_hexdigits[(ch >> 12) & 0x000F];
5840 *p++ = Py_hexdigits[(ch >> 8) & 0x000F];
5841 *p++ = Py_hexdigits[(ch >> 4) & 0x000F];
5842 *p++ = Py_hexdigits[ch & 0x000F];
Guido van Rossumd57fd912000-03-10 22:53:23 +00005843 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005844
Ka-Ping Yeefa004ad2001-01-24 17:19:08 +00005845 /* Map special whitespace to '\t', \n', '\r' */
5846 else if (ch == '\t') {
5847 *p++ = '\\';
5848 *p++ = 't';
5849 }
5850 else if (ch == '\n') {
5851 *p++ = '\\';
5852 *p++ = 'n';
5853 }
5854 else if (ch == '\r') {
5855 *p++ = '\\';
5856 *p++ = 'r';
5857 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005858
Ka-Ping Yeefa004ad2001-01-24 17:19:08 +00005859 /* Map non-printable US ASCII to '\xhh' */
Marc-André Lemburg11326de2001-11-28 12:56:20 +00005860 else if (ch < ' ' || ch >= 0x7F) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00005861 *p++ = '\\';
Ka-Ping Yeefa004ad2001-01-24 17:19:08 +00005862 *p++ = 'x';
Victor Stinnerf5cff562011-10-14 02:13:11 +02005863 *p++ = Py_hexdigits[(ch >> 4) & 0x000F];
5864 *p++ = Py_hexdigits[ch & 0x000F];
Tim Petersced69f82003-09-16 20:30:58 +00005865 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005866
Guido van Rossumd57fd912000-03-10 22:53:23 +00005867 /* Copy everything else as-is */
5868 else
5869 *p++ = (char) ch;
5870 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00005871
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005872 assert(p - PyBytes_AS_STRING(repr) > 0);
5873 if (_PyBytes_Resize(&repr, p - PyBytes_AS_STRING(repr)) < 0)
5874 return NULL;
5875 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005876}
5877
Alexander Belopolsky40018472011-02-26 01:02:56 +00005878PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005879PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s,
5880 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005881{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005882 PyObject *result;
5883 PyObject *tmp = PyUnicode_FromUnicode(s, size);
5884 if (tmp == NULL)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005885 return NULL;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005886 result = PyUnicode_AsUnicodeEscapeString(tmp);
5887 Py_DECREF(tmp);
5888 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005889}
5890
5891/* --- Raw Unicode Escape Codec ------------------------------------------- */
5892
Alexander Belopolsky40018472011-02-26 01:02:56 +00005893PyObject *
5894PyUnicode_DecodeRawUnicodeEscape(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03005895 Py_ssize_t size,
5896 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005897{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005898 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005899 Py_ssize_t startinpos;
5900 Py_ssize_t endinpos;
5901 Py_ssize_t outpos;
Victor Stinner7931d9a2011-11-04 00:22:48 +01005902 PyObject *v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005903 const char *end;
5904 const char *bs;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005905 PyObject *errorHandler = NULL;
5906 PyObject *exc = NULL;
Tim Petersced69f82003-09-16 20:30:58 +00005907
Guido van Rossumd57fd912000-03-10 22:53:23 +00005908 /* Escaped strings will always be longer than the resulting
5909 Unicode string, so we start with size here and then reduce the
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005910 length after conversion to the true value. (But decoding error
5911 handler might have to resize the string) */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005912 v = PyUnicode_New(size, 127);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005913 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005914 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005915 if (size == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01005916 return v;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005917 outpos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005918 end = s + size;
5919 while (s < end) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005920 unsigned char c;
5921 Py_UCS4 x;
5922 int i;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00005923 int count;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005924
Benjamin Peterson29060642009-01-31 22:14:21 +00005925 /* Non-escape characters are interpreted as Unicode ordinals */
5926 if (*s != '\\') {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005927 if (unicode_putchar(&v, &outpos, (unsigned char)*s++) < 0)
5928 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00005929 continue;
Benjamin Peterson14339b62009-01-31 16:36:08 +00005930 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005931 startinpos = s-starts;
5932
5933 /* \u-escapes are only interpreted iff the number of leading
5934 backslashes if odd */
5935 bs = s;
5936 for (;s < end;) {
5937 if (*s != '\\')
5938 break;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005939 if (unicode_putchar(&v, &outpos, (unsigned char)*s++) < 0)
5940 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00005941 }
5942 if (((s - bs) & 1) == 0 ||
5943 s >= end ||
5944 (*s != 'u' && *s != 'U')) {
5945 continue;
5946 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005947 outpos--;
Benjamin Peterson29060642009-01-31 22:14:21 +00005948 count = *s=='u' ? 4 : 8;
5949 s++;
5950
5951 /* \uXXXX with 4 hex digits, \Uxxxxxxxx with 8 */
Benjamin Peterson29060642009-01-31 22:14:21 +00005952 for (x = 0, i = 0; i < count; ++i, ++s) {
5953 c = (unsigned char)*s;
David Malcolm96960882010-11-05 17:23:41 +00005954 if (!Py_ISXDIGIT(c)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005955 endinpos = s-starts;
5956 if (unicode_decode_call_errorhandler(
5957 errors, &errorHandler,
5958 "rawunicodeescape", "truncated \\uXXXX",
5959 &starts, &end, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005960 &v, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00005961 goto onError;
5962 goto nextByte;
5963 }
5964 x = (x<<4) & ~0xF;
5965 if (c >= '0' && c <= '9')
5966 x += c - '0';
5967 else if (c >= 'a' && c <= 'f')
5968 x += 10 + c - 'a';
5969 else
5970 x += 10 + c - 'A';
5971 }
Victor Stinner8faf8212011-12-08 22:14:11 +01005972 if (x <= MAX_UNICODE) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005973 if (unicode_putchar(&v, &outpos, x) < 0)
5974 goto onError;
Christian Heimesfe337bf2008-03-23 21:54:12 +00005975 } else {
5976 endinpos = s-starts;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00005977 if (unicode_decode_call_errorhandler(
5978 errors, &errorHandler,
5979 "rawunicodeescape", "\\Uxxxxxxxx out of range",
Benjamin Peterson29060642009-01-31 22:14:21 +00005980 &starts, &end, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005981 &v, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00005982 goto onError;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00005983 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005984 nextByte:
5985 ;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005986 }
Victor Stinner16e6a802011-12-12 13:24:15 +01005987 if (unicode_resize(&v, outpos) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005988 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005989 Py_XDECREF(errorHandler);
5990 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01005991 return unicode_result(v);
Tim Petersced69f82003-09-16 20:30:58 +00005992
Benjamin Peterson29060642009-01-31 22:14:21 +00005993 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00005994 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005995 Py_XDECREF(errorHandler);
5996 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005997 return NULL;
5998}
5999
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006000
Alexander Belopolsky40018472011-02-26 01:02:56 +00006001PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006002PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006003{
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006004 PyObject *repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006005 char *p;
6006 char *q;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006007 Py_ssize_t expandsize, pos;
6008 int kind;
6009 void *data;
6010 Py_ssize_t len;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006011
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006012 if (!PyUnicode_Check(unicode)) {
6013 PyErr_BadArgument();
6014 return NULL;
6015 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05006016 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006017 return NULL;
6018 kind = PyUnicode_KIND(unicode);
6019 data = PyUnicode_DATA(unicode);
6020 len = PyUnicode_GET_LENGTH(unicode);
Benjamin Peterson1518e872011-11-23 10:44:52 -06006021 /* 4 byte characters can take up 10 bytes, 2 byte characters can take up 6
6022 bytes, and 1 byte characters 4. */
6023 expandsize = kind * 2 + 2;
Victor Stinner0e368262011-11-10 20:12:49 +01006024
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006025 if (len > PY_SSIZE_T_MAX / expandsize)
Benjamin Peterson29060642009-01-31 22:14:21 +00006026 return PyErr_NoMemory();
Benjamin Peterson14339b62009-01-31 16:36:08 +00006027
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006028 repr = PyBytes_FromStringAndSize(NULL, expandsize * len);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006029 if (repr == NULL)
6030 return NULL;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006031 if (len == 0)
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006032 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006033
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006034 p = q = PyBytes_AS_STRING(repr);
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006035 for (pos = 0; pos < len; pos++) {
6036 Py_UCS4 ch = PyUnicode_READ(kind, data, pos);
Benjamin Peterson29060642009-01-31 22:14:21 +00006037 /* Map 32-bit characters to '\Uxxxxxxxx' */
6038 if (ch >= 0x10000) {
Victor Stinner8faf8212011-12-08 22:14:11 +01006039 assert(ch <= MAX_UNICODE);
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00006040 *p++ = '\\';
6041 *p++ = 'U';
Victor Stinnerf5cff562011-10-14 02:13:11 +02006042 *p++ = Py_hexdigits[(ch >> 28) & 0xf];
6043 *p++ = Py_hexdigits[(ch >> 24) & 0xf];
6044 *p++ = Py_hexdigits[(ch >> 20) & 0xf];
6045 *p++ = Py_hexdigits[(ch >> 16) & 0xf];
6046 *p++ = Py_hexdigits[(ch >> 12) & 0xf];
6047 *p++ = Py_hexdigits[(ch >> 8) & 0xf];
6048 *p++ = Py_hexdigits[(ch >> 4) & 0xf];
6049 *p++ = Py_hexdigits[ch & 15];
Tim Petersced69f82003-09-16 20:30:58 +00006050 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006051 /* Map 16-bit characters to '\uxxxx' */
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006052 else if (ch >= 256) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00006053 *p++ = '\\';
6054 *p++ = 'u';
Victor Stinnerf5cff562011-10-14 02:13:11 +02006055 *p++ = Py_hexdigits[(ch >> 12) & 0xf];
6056 *p++ = Py_hexdigits[(ch >> 8) & 0xf];
6057 *p++ = Py_hexdigits[(ch >> 4) & 0xf];
6058 *p++ = Py_hexdigits[ch & 15];
Guido van Rossumd57fd912000-03-10 22:53:23 +00006059 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006060 /* Copy everything else as-is */
6061 else
Guido van Rossumd57fd912000-03-10 22:53:23 +00006062 *p++ = (char) ch;
6063 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00006064
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006065 assert(p > q);
6066 if (_PyBytes_Resize(&repr, p - q) < 0)
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006067 return NULL;
6068 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006069}
6070
Alexander Belopolsky40018472011-02-26 01:02:56 +00006071PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006072PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s,
6073 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006074{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006075 PyObject *result;
6076 PyObject *tmp = PyUnicode_FromUnicode(s, size);
6077 if (tmp == NULL)
Walter Dörwald711005d2007-05-12 12:03:26 +00006078 return NULL;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006079 result = PyUnicode_AsRawUnicodeEscapeString(tmp);
6080 Py_DECREF(tmp);
6081 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006082}
6083
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006084/* --- Unicode Internal Codec ------------------------------------------- */
6085
Alexander Belopolsky40018472011-02-26 01:02:56 +00006086PyObject *
6087_PyUnicode_DecodeUnicodeInternal(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006088 Py_ssize_t size,
6089 const char *errors)
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006090{
6091 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00006092 Py_ssize_t startinpos;
6093 Py_ssize_t endinpos;
6094 Py_ssize_t outpos;
Victor Stinner7931d9a2011-11-04 00:22:48 +01006095 PyObject *v;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006096 const char *end;
6097 const char *reason;
6098 PyObject *errorHandler = NULL;
6099 PyObject *exc = NULL;
6100
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006101 if (PyErr_WarnEx(PyExc_DeprecationWarning,
Ezio Melotti11060a42011-11-16 09:39:10 +02006102 "unicode_internal codec has been deprecated",
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006103 1))
6104 return NULL;
6105
Thomas Wouters89f507f2006-12-13 04:49:30 +00006106 /* XXX overflow detection missing */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006107 v = PyUnicode_New((size+Py_UNICODE_SIZE-1)/ Py_UNICODE_SIZE, 127);
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006108 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006109 goto onError;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006110 if (PyUnicode_GET_LENGTH(v) == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01006111 return v;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006112 outpos = 0;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006113 end = s + size;
6114
6115 while (s < end) {
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006116 Py_UNICODE uch;
Antoine Pitrou44c6aff2011-11-11 02:59:42 +01006117 Py_UCS4 ch;
6118 /* We copy the raw representation one byte at a time because the
6119 pointer may be unaligned (see test_codeccallbacks). */
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006120 ((char *) &uch)[0] = s[0];
6121 ((char *) &uch)[1] = s[1];
Antoine Pitrou44c6aff2011-11-11 02:59:42 +01006122#ifdef Py_UNICODE_WIDE
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006123 ((char *) &uch)[2] = s[2];
6124 ((char *) &uch)[3] = s[3];
Antoine Pitrou44c6aff2011-11-11 02:59:42 +01006125#endif
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006126 ch = uch;
6127
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006128 /* We have to sanity check the raw data, otherwise doom looms for
6129 some malformed UCS-4 data. */
6130 if (
Benjamin Peterson29060642009-01-31 22:14:21 +00006131#ifdef Py_UNICODE_WIDE
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006132 ch > 0x10ffff ||
Benjamin Peterson29060642009-01-31 22:14:21 +00006133#endif
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006134 end-s < Py_UNICODE_SIZE
6135 )
Benjamin Peterson29060642009-01-31 22:14:21 +00006136 {
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006137 startinpos = s - starts;
6138 if (end-s < Py_UNICODE_SIZE) {
6139 endinpos = end-starts;
6140 reason = "truncated input";
6141 }
6142 else {
6143 endinpos = s - starts + Py_UNICODE_SIZE;
6144 reason = "illegal code point (> 0x10FFFF)";
6145 }
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006146 if (unicode_decode_call_errorhandler(
6147 errors, &errorHandler,
6148 "unicode_internal", reason,
Walter Dörwalde78178e2007-07-30 13:31:40 +00006149 &starts, &end, &startinpos, &endinpos, &exc, &s,
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006150 &v, &outpos))
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006151 goto onError;
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006152 continue;
6153 }
6154
6155 s += Py_UNICODE_SIZE;
6156#ifndef Py_UNICODE_WIDE
Victor Stinner551ac952011-11-29 22:58:13 +01006157 if (Py_UNICODE_IS_HIGH_SURROGATE(ch) && s < end)
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006158 {
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006159 Py_UNICODE uch2;
6160 ((char *) &uch2)[0] = s[0];
6161 ((char *) &uch2)[1] = s[1];
Victor Stinner551ac952011-11-29 22:58:13 +01006162 if (Py_UNICODE_IS_LOW_SURROGATE(uch2))
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006163 {
Victor Stinner551ac952011-11-29 22:58:13 +01006164 ch = Py_UNICODE_JOIN_SURROGATES(uch, uch2);
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006165 s += Py_UNICODE_SIZE;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006166 }
6167 }
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006168#endif
6169
6170 if (unicode_putchar(&v, &outpos, ch) < 0)
6171 goto onError;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006172 }
6173
Victor Stinner16e6a802011-12-12 13:24:15 +01006174 if (unicode_resize(&v, outpos) < 0)
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006175 goto onError;
6176 Py_XDECREF(errorHandler);
6177 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01006178 return unicode_result(v);
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006179
Benjamin Peterson29060642009-01-31 22:14:21 +00006180 onError:
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006181 Py_XDECREF(v);
6182 Py_XDECREF(errorHandler);
6183 Py_XDECREF(exc);
6184 return NULL;
6185}
6186
Guido van Rossumd57fd912000-03-10 22:53:23 +00006187/* --- Latin-1 Codec ------------------------------------------------------ */
6188
Alexander Belopolsky40018472011-02-26 01:02:56 +00006189PyObject *
6190PyUnicode_DecodeLatin1(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006191 Py_ssize_t size,
6192 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006193{
Guido van Rossumd57fd912000-03-10 22:53:23 +00006194 /* Latin-1 is equivalent to the first 256 ordinals in Unicode. */
Victor Stinnere57b1c02011-09-28 22:20:48 +02006195 return _PyUnicode_FromUCS1((unsigned char*)s, size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006196}
6197
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006198/* create or adjust a UnicodeEncodeError */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006199static void
6200make_encode_exception(PyObject **exceptionObject,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006201 const char *encoding,
Martin v. Löwis9e816682011-11-02 12:45:42 +01006202 PyObject *unicode,
6203 Py_ssize_t startpos, Py_ssize_t endpos,
6204 const char *reason)
6205{
6206 if (*exceptionObject == NULL) {
6207 *exceptionObject = PyObject_CallFunction(
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006208 PyExc_UnicodeEncodeError, "sOnns",
Martin v. Löwis9e816682011-11-02 12:45:42 +01006209 encoding, unicode, startpos, endpos, reason);
6210 }
6211 else {
6212 if (PyUnicodeEncodeError_SetStart(*exceptionObject, startpos))
6213 goto onError;
6214 if (PyUnicodeEncodeError_SetEnd(*exceptionObject, endpos))
6215 goto onError;
6216 if (PyUnicodeEncodeError_SetReason(*exceptionObject, reason))
6217 goto onError;
6218 return;
6219 onError:
6220 Py_DECREF(*exceptionObject);
6221 *exceptionObject = NULL;
6222 }
6223}
6224
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006225/* raises a UnicodeEncodeError */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006226static void
6227raise_encode_exception(PyObject **exceptionObject,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006228 const char *encoding,
Martin v. Löwis9e816682011-11-02 12:45:42 +01006229 PyObject *unicode,
6230 Py_ssize_t startpos, Py_ssize_t endpos,
6231 const char *reason)
6232{
Martin v. Löwis12be46c2011-11-04 19:04:15 +01006233 make_encode_exception(exceptionObject,
Martin v. Löwis9e816682011-11-02 12:45:42 +01006234 encoding, unicode, startpos, endpos, reason);
6235 if (*exceptionObject != NULL)
6236 PyCodec_StrictErrors(*exceptionObject);
6237}
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006238
6239/* error handling callback helper:
6240 build arguments, call the callback and check the arguments,
6241 put the result into newpos and return the replacement string, which
6242 has to be freed by the caller */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006243static PyObject *
6244unicode_encode_call_errorhandler(const char *errors,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006245 PyObject **errorHandler,
6246 const char *encoding, const char *reason,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006247 PyObject *unicode, PyObject **exceptionObject,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006248 Py_ssize_t startpos, Py_ssize_t endpos,
6249 Py_ssize_t *newpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006250{
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006251 static char *argparse = "On;encoding error handler must return (str/bytes, int) tuple";
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006252 Py_ssize_t len;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006253 PyObject *restuple;
6254 PyObject *resunicode;
6255
6256 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006257 *errorHandler = PyCodec_LookupError(errors);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006258 if (*errorHandler == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006259 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006260 }
6261
Benjamin Petersonbac79492012-01-14 13:34:47 -05006262 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006263 return NULL;
6264 len = PyUnicode_GET_LENGTH(unicode);
6265
Martin v. Löwis12be46c2011-11-04 19:04:15 +01006266 make_encode_exception(exceptionObject,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006267 encoding, unicode, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006268 if (*exceptionObject == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006269 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006270
6271 restuple = PyObject_CallFunctionObjArgs(
Benjamin Peterson29060642009-01-31 22:14:21 +00006272 *errorHandler, *exceptionObject, NULL);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006273 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006274 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006275 if (!PyTuple_Check(restuple)) {
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006276 PyErr_SetString(PyExc_TypeError, &argparse[3]);
Benjamin Peterson29060642009-01-31 22:14:21 +00006277 Py_DECREF(restuple);
6278 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006279 }
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006280 if (!PyArg_ParseTuple(restuple, argparse,
Benjamin Peterson29060642009-01-31 22:14:21 +00006281 &resunicode, newpos)) {
6282 Py_DECREF(restuple);
6283 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006284 }
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006285 if (!PyUnicode_Check(resunicode) && !PyBytes_Check(resunicode)) {
6286 PyErr_SetString(PyExc_TypeError, &argparse[3]);
6287 Py_DECREF(restuple);
6288 return NULL;
6289 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006290 if (*newpos<0)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006291 *newpos = len + *newpos;
6292 if (*newpos<0 || *newpos>len) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006293 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos);
6294 Py_DECREF(restuple);
6295 return NULL;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00006296 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006297 Py_INCREF(resunicode);
6298 Py_DECREF(restuple);
6299 return resunicode;
6300}
6301
Alexander Belopolsky40018472011-02-26 01:02:56 +00006302static PyObject *
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006303unicode_encode_ucs1(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006304 const char *errors,
Victor Stinnerfcd96532011-11-04 00:28:50 +01006305 unsigned int limit)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006306{
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006307 /* input state */
6308 Py_ssize_t pos=0, size;
6309 int kind;
6310 void *data;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006311 /* output object */
6312 PyObject *res;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006313 /* pointer into the output */
6314 char *str;
6315 /* current output position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00006316 Py_ssize_t ressize;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006317 const char *encoding = (limit == 256) ? "latin-1" : "ascii";
6318 const char *reason = (limit == 256) ? "ordinal not in range(256)" : "ordinal not in range(128)";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006319 PyObject *errorHandler = NULL;
6320 PyObject *exc = NULL;
6321 /* the following variable is used for caching string comparisons
6322 * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */
6323 int known_errorHandler = -1;
6324
Benjamin Petersonbac79492012-01-14 13:34:47 -05006325 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006326 return NULL;
6327 size = PyUnicode_GET_LENGTH(unicode);
6328 kind = PyUnicode_KIND(unicode);
6329 data = PyUnicode_DATA(unicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006330 /* allocate enough for a simple encoding without
6331 replacements, if we need more, we'll resize */
Guido van Rossum98297ee2007-11-06 21:34:58 +00006332 if (size == 0)
Christian Heimes72b710a2008-05-26 13:28:38 +00006333 return PyBytes_FromStringAndSize(NULL, 0);
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006334 res = PyBytes_FromStringAndSize(NULL, size);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006335 if (res == NULL)
Guido van Rossum98297ee2007-11-06 21:34:58 +00006336 return NULL;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006337 str = PyBytes_AS_STRING(res);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006338 ressize = size;
6339
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006340 while (pos < size) {
6341 Py_UCS4 c = PyUnicode_READ(kind, data, pos);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006342
Benjamin Peterson29060642009-01-31 22:14:21 +00006343 /* can we encode this? */
6344 if (c<limit) {
6345 /* no overflow check, because we know that the space is enough */
6346 *str++ = (char)c;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006347 ++pos;
Benjamin Peterson14339b62009-01-31 16:36:08 +00006348 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006349 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00006350 Py_ssize_t requiredsize;
6351 PyObject *repunicode;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006352 Py_ssize_t repsize, newpos, respos, i;
Benjamin Peterson29060642009-01-31 22:14:21 +00006353 /* startpos for collecting unencodable chars */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006354 Py_ssize_t collstart = pos;
6355 Py_ssize_t collend = pos;
Benjamin Peterson29060642009-01-31 22:14:21 +00006356 /* find all unecodable characters */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006357 while ((collend < size) && (PyUnicode_READ(kind, data, collend)>=limit))
Benjamin Peterson29060642009-01-31 22:14:21 +00006358 ++collend;
6359 /* cache callback name lookup (if not done yet, i.e. it's the first error) */
6360 if (known_errorHandler==-1) {
6361 if ((errors==NULL) || (!strcmp(errors, "strict")))
6362 known_errorHandler = 1;
6363 else if (!strcmp(errors, "replace"))
6364 known_errorHandler = 2;
6365 else if (!strcmp(errors, "ignore"))
6366 known_errorHandler = 3;
6367 else if (!strcmp(errors, "xmlcharrefreplace"))
6368 known_errorHandler = 4;
6369 else
6370 known_errorHandler = 0;
6371 }
6372 switch (known_errorHandler) {
6373 case 1: /* strict */
Martin v. Löwis12be46c2011-11-04 19:04:15 +01006374 raise_encode_exception(&exc, encoding, unicode, collstart, collend, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00006375 goto onError;
6376 case 2: /* replace */
6377 while (collstart++<collend)
6378 *str++ = '?'; /* fall through */
6379 case 3: /* ignore */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006380 pos = collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00006381 break;
6382 case 4: /* xmlcharrefreplace */
6383 respos = str - PyBytes_AS_STRING(res);
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006384 /* determine replacement size */
6385 for (i = collstart, repsize = 0; i < collend; ++i) {
6386 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
6387 if (ch < 10)
Benjamin Peterson29060642009-01-31 22:14:21 +00006388 repsize += 2+1+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006389 else if (ch < 100)
Benjamin Peterson29060642009-01-31 22:14:21 +00006390 repsize += 2+2+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006391 else if (ch < 1000)
Benjamin Peterson29060642009-01-31 22:14:21 +00006392 repsize += 2+3+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006393 else if (ch < 10000)
Benjamin Peterson29060642009-01-31 22:14:21 +00006394 repsize += 2+4+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006395 else if (ch < 100000)
Benjamin Peterson29060642009-01-31 22:14:21 +00006396 repsize += 2+5+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006397 else if (ch < 1000000)
Benjamin Peterson29060642009-01-31 22:14:21 +00006398 repsize += 2+6+1;
Victor Stinner0d3721d2011-11-22 03:27:53 +01006399 else {
Victor Stinner8faf8212011-12-08 22:14:11 +01006400 assert(ch <= MAX_UNICODE);
Benjamin Peterson29060642009-01-31 22:14:21 +00006401 repsize += 2+7+1;
Victor Stinner0d3721d2011-11-22 03:27:53 +01006402 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006403 }
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006404 requiredsize = respos+repsize+(size-collend);
Benjamin Peterson29060642009-01-31 22:14:21 +00006405 if (requiredsize > ressize) {
6406 if (requiredsize<2*ressize)
6407 requiredsize = 2*ressize;
6408 if (_PyBytes_Resize(&res, requiredsize))
6409 goto onError;
6410 str = PyBytes_AS_STRING(res) + respos;
6411 ressize = requiredsize;
6412 }
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006413 /* generate replacement */
6414 for (i = collstart; i < collend; ++i) {
6415 str += sprintf(str, "&#%d;", PyUnicode_READ(kind, data, i));
Benjamin Peterson29060642009-01-31 22:14:21 +00006416 }
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006417 pos = collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00006418 break;
6419 default:
6420 repunicode = unicode_encode_call_errorhandler(errors, &errorHandler,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006421 encoding, reason, unicode, &exc,
6422 collstart, collend, &newpos);
6423 if (repunicode == NULL || (PyUnicode_Check(repunicode) &&
Benjamin Petersonbac79492012-01-14 13:34:47 -05006424 PyUnicode_READY(repunicode) == -1))
Benjamin Peterson29060642009-01-31 22:14:21 +00006425 goto onError;
Martin v. Löwis011e8422009-05-05 04:43:17 +00006426 if (PyBytes_Check(repunicode)) {
6427 /* Directly copy bytes result to output. */
6428 repsize = PyBytes_Size(repunicode);
6429 if (repsize > 1) {
6430 /* Make room for all additional bytes. */
Amaury Forgeot d'Arc84ec8d92009-06-29 22:36:49 +00006431 respos = str - PyBytes_AS_STRING(res);
Martin v. Löwis011e8422009-05-05 04:43:17 +00006432 if (_PyBytes_Resize(&res, ressize+repsize-1)) {
6433 Py_DECREF(repunicode);
6434 goto onError;
6435 }
Amaury Forgeot d'Arc84ec8d92009-06-29 22:36:49 +00006436 str = PyBytes_AS_STRING(res) + respos;
Martin v. Löwis011e8422009-05-05 04:43:17 +00006437 ressize += repsize-1;
6438 }
6439 memcpy(str, PyBytes_AsString(repunicode), repsize);
6440 str += repsize;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006441 pos = newpos;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006442 Py_DECREF(repunicode);
Martin v. Löwis011e8422009-05-05 04:43:17 +00006443 break;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006444 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006445 /* need more space? (at least enough for what we
6446 have+the replacement+the rest of the string, so
6447 we won't have to check space for encodable characters) */
6448 respos = str - PyBytes_AS_STRING(res);
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006449 repsize = PyUnicode_GET_LENGTH(repunicode);
6450 requiredsize = respos+repsize+(size-collend);
Benjamin Peterson29060642009-01-31 22:14:21 +00006451 if (requiredsize > ressize) {
6452 if (requiredsize<2*ressize)
6453 requiredsize = 2*ressize;
6454 if (_PyBytes_Resize(&res, requiredsize)) {
6455 Py_DECREF(repunicode);
6456 goto onError;
6457 }
6458 str = PyBytes_AS_STRING(res) + respos;
6459 ressize = requiredsize;
6460 }
6461 /* check if there is anything unencodable in the replacement
6462 and copy it to the output */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006463 for (i = 0; repsize-->0; ++i, ++str) {
6464 c = PyUnicode_READ_CHAR(repunicode, i);
Benjamin Peterson29060642009-01-31 22:14:21 +00006465 if (c >= limit) {
Martin v. Löwis12be46c2011-11-04 19:04:15 +01006466 raise_encode_exception(&exc, encoding, unicode,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006467 pos, pos+1, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00006468 Py_DECREF(repunicode);
6469 goto onError;
6470 }
6471 *str = (char)c;
6472 }
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006473 pos = newpos;
Benjamin Peterson14339b62009-01-31 16:36:08 +00006474 Py_DECREF(repunicode);
Benjamin Peterson14339b62009-01-31 16:36:08 +00006475 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00006476 }
6477 }
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006478 /* Resize if we allocated to much */
6479 size = str - PyBytes_AS_STRING(res);
6480 if (size < ressize) { /* If this falls res will be NULL */
Alexandre Vassalottibad1b922008-12-27 09:49:09 +00006481 assert(size >= 0);
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006482 if (_PyBytes_Resize(&res, size) < 0)
6483 goto onError;
6484 }
6485
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006486 Py_XDECREF(errorHandler);
6487 Py_XDECREF(exc);
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006488 return res;
6489
6490 onError:
6491 Py_XDECREF(res);
6492 Py_XDECREF(errorHandler);
6493 Py_XDECREF(exc);
6494 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006495}
6496
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006497/* Deprecated */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006498PyObject *
6499PyUnicode_EncodeLatin1(const Py_UNICODE *p,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006500 Py_ssize_t size,
6501 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006502{
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006503 PyObject *result;
6504 PyObject *unicode = PyUnicode_FromUnicode(p, size);
6505 if (unicode == NULL)
6506 return NULL;
6507 result = unicode_encode_ucs1(unicode, errors, 256);
6508 Py_DECREF(unicode);
6509 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006510}
6511
Alexander Belopolsky40018472011-02-26 01:02:56 +00006512PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006513_PyUnicode_AsLatin1String(PyObject *unicode, const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006514{
6515 if (!PyUnicode_Check(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006516 PyErr_BadArgument();
6517 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006518 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006519 if (PyUnicode_READY(unicode) == -1)
6520 return NULL;
6521 /* Fast path: if it is a one-byte string, construct
6522 bytes object directly. */
6523 if (PyUnicode_KIND(unicode) == PyUnicode_1BYTE_KIND)
6524 return PyBytes_FromStringAndSize(PyUnicode_DATA(unicode),
6525 PyUnicode_GET_LENGTH(unicode));
6526 /* Non-Latin-1 characters present. Defer to above function to
6527 raise the exception. */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006528 return unicode_encode_ucs1(unicode, errors, 256);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006529}
6530
6531PyObject*
6532PyUnicode_AsLatin1String(PyObject *unicode)
6533{
6534 return _PyUnicode_AsLatin1String(unicode, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006535}
6536
6537/* --- 7-bit ASCII Codec -------------------------------------------------- */
6538
Alexander Belopolsky40018472011-02-26 01:02:56 +00006539PyObject *
6540PyUnicode_DecodeASCII(const char *s,
6541 Py_ssize_t size,
6542 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006543{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006544 const char *starts = s;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006545 PyObject *unicode;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006546 int kind;
6547 void *data;
Martin v. Löwis18e16552006-02-15 17:27:45 +00006548 Py_ssize_t startinpos;
6549 Py_ssize_t endinpos;
6550 Py_ssize_t outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006551 const char *e;
6552 PyObject *errorHandler = NULL;
6553 PyObject *exc = NULL;
Tim Petersced69f82003-09-16 20:30:58 +00006554
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01006555 if (size == 0) {
6556 Py_INCREF(unicode_empty);
6557 return unicode_empty;
6558 }
6559
Guido van Rossumd57fd912000-03-10 22:53:23 +00006560 /* ASCII is equivalent to the first 128 ordinals in Unicode. */
Victor Stinner702c7342011-10-05 13:50:52 +02006561 if (size == 1 && (unsigned char)s[0] < 128)
6562 return get_latin1_char((unsigned char)s[0]);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006563
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006564 unicode = PyUnicode_New(size, 127);
6565 if (unicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006566 goto onError;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006567
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006568 e = s + size;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006569 data = PyUnicode_1BYTE_DATA(unicode);
6570 outpos = ascii_decode(s, e, (Py_UCS1 *)data);
6571 if (outpos == size)
6572 return unicode;
6573
6574 s += outpos;
6575 kind = PyUnicode_1BYTE_KIND;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006576 while (s < e) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006577 register unsigned char c = (unsigned char)*s;
6578 if (c < 128) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006579 PyUnicode_WRITE(kind, data, outpos++, c);
Benjamin Peterson29060642009-01-31 22:14:21 +00006580 ++s;
6581 }
6582 else {
6583 startinpos = s-starts;
6584 endinpos = startinpos + 1;
Benjamin Peterson29060642009-01-31 22:14:21 +00006585 if (unicode_decode_call_errorhandler(
6586 errors, &errorHandler,
6587 "ascii", "ordinal not in range(128)",
6588 &starts, &e, &startinpos, &endinpos, &exc, &s,
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006589 &unicode, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00006590 goto onError;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006591 kind = PyUnicode_KIND(unicode);
6592 data = PyUnicode_DATA(unicode);
Benjamin Peterson29060642009-01-31 22:14:21 +00006593 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00006594 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006595 if (unicode_resize(&unicode, outpos) < 0)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006596 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006597 Py_XDECREF(errorHandler);
6598 Py_XDECREF(exc);
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006599 assert(_PyUnicode_CheckConsistency(unicode, 1));
6600 return unicode;
Tim Petersced69f82003-09-16 20:30:58 +00006601
Benjamin Peterson29060642009-01-31 22:14:21 +00006602 onError:
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006603 Py_XDECREF(unicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006604 Py_XDECREF(errorHandler);
6605 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006606 return NULL;
6607}
6608
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006609/* Deprecated */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006610PyObject *
6611PyUnicode_EncodeASCII(const Py_UNICODE *p,
6612 Py_ssize_t size,
6613 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006614{
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006615 PyObject *result;
6616 PyObject *unicode = PyUnicode_FromUnicode(p, size);
6617 if (unicode == NULL)
6618 return NULL;
6619 result = unicode_encode_ucs1(unicode, errors, 128);
6620 Py_DECREF(unicode);
6621 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006622}
6623
Alexander Belopolsky40018472011-02-26 01:02:56 +00006624PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006625_PyUnicode_AsASCIIString(PyObject *unicode, const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006626{
6627 if (!PyUnicode_Check(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006628 PyErr_BadArgument();
6629 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006630 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006631 if (PyUnicode_READY(unicode) == -1)
6632 return NULL;
6633 /* Fast path: if it is an ASCII-only string, construct bytes object
6634 directly. Else defer to above function to raise the exception. */
6635 if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128)
6636 return PyBytes_FromStringAndSize(PyUnicode_DATA(unicode),
6637 PyUnicode_GET_LENGTH(unicode));
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006638 return unicode_encode_ucs1(unicode, errors, 128);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006639}
6640
6641PyObject *
6642PyUnicode_AsASCIIString(PyObject *unicode)
6643{
6644 return _PyUnicode_AsASCIIString(unicode, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006645}
6646
Victor Stinner99b95382011-07-04 14:23:54 +02006647#ifdef HAVE_MBCS
Guido van Rossum2ea3e142000-03-31 17:24:09 +00006648
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00006649/* --- MBCS codecs for Windows -------------------------------------------- */
Guido van Rossum2ea3e142000-03-31 17:24:09 +00006650
Hirokazu Yamamoto35302462009-03-21 13:23:27 +00006651#if SIZEOF_INT < SIZEOF_SIZE_T
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006652#define NEED_RETRY
6653#endif
6654
Victor Stinner3a50e702011-10-18 21:21:00 +02006655#ifndef WC_ERR_INVALID_CHARS
6656# define WC_ERR_INVALID_CHARS 0x0080
6657#endif
6658
6659static char*
6660code_page_name(UINT code_page, PyObject **obj)
6661{
6662 *obj = NULL;
6663 if (code_page == CP_ACP)
6664 return "mbcs";
6665 if (code_page == CP_UTF7)
6666 return "CP_UTF7";
6667 if (code_page == CP_UTF8)
6668 return "CP_UTF8";
6669
6670 *obj = PyBytes_FromFormat("cp%u", code_page);
6671 if (*obj == NULL)
6672 return NULL;
6673 return PyBytes_AS_STRING(*obj);
6674}
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006675
Alexander Belopolsky40018472011-02-26 01:02:56 +00006676static int
Victor Stinner3a50e702011-10-18 21:21:00 +02006677is_dbcs_lead_byte(UINT code_page, const char *s, int offset)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006678{
6679 const char *curr = s + offset;
Victor Stinner3a50e702011-10-18 21:21:00 +02006680 const char *prev;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006681
Victor Stinner3a50e702011-10-18 21:21:00 +02006682 if (!IsDBCSLeadByteEx(code_page, *curr))
6683 return 0;
6684
6685 prev = CharPrevExA(code_page, s, curr, 0);
6686 if (prev == curr)
6687 return 1;
6688 /* FIXME: This code is limited to "true" double-byte encodings,
6689 as it assumes an incomplete character consists of a single
6690 byte. */
6691 if (curr - prev == 2)
6692 return 1;
6693 if (!IsDBCSLeadByteEx(code_page, *prev))
6694 return 1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006695 return 0;
6696}
6697
Victor Stinner3a50e702011-10-18 21:21:00 +02006698static DWORD
6699decode_code_page_flags(UINT code_page)
6700{
6701 if (code_page == CP_UTF7) {
6702 /* The CP_UTF7 decoder only supports flags=0 */
6703 return 0;
6704 }
6705 else
6706 return MB_ERR_INVALID_CHARS;
6707}
6708
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006709/*
Victor Stinner3a50e702011-10-18 21:21:00 +02006710 * Decode a byte string from a Windows code page into unicode object in strict
6711 * mode.
6712 *
6713 * Returns consumed size if succeed, returns -2 on decode error, or raise a
6714 * WindowsError and returns -1 on other error.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006715 */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006716static int
Victor Stinner3a50e702011-10-18 21:21:00 +02006717decode_code_page_strict(UINT code_page,
Victor Stinner76a31a62011-11-04 00:05:13 +01006718 PyObject **v,
Victor Stinner3a50e702011-10-18 21:21:00 +02006719 const char *in,
6720 int insize)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006721{
Victor Stinner3a50e702011-10-18 21:21:00 +02006722 const DWORD flags = decode_code_page_flags(code_page);
Victor Stinner24729f32011-11-10 20:31:37 +01006723 wchar_t *out;
Victor Stinner3a50e702011-10-18 21:21:00 +02006724 DWORD outsize;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006725
6726 /* First get the size of the result */
Victor Stinner3a50e702011-10-18 21:21:00 +02006727 assert(insize > 0);
6728 outsize = MultiByteToWideChar(code_page, flags, in, insize, NULL, 0);
6729 if (outsize <= 0)
6730 goto error;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006731
6732 if (*v == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006733 /* Create unicode object */
Victor Stinnerab595942011-12-17 04:59:06 +01006734 /* FIXME: don't use _PyUnicode_New(), but allocate a wchar_t* buffer */
Victor Stinner76a31a62011-11-04 00:05:13 +01006735 *v = (PyObject*)_PyUnicode_New(outsize);
Benjamin Peterson29060642009-01-31 22:14:21 +00006736 if (*v == NULL)
6737 return -1;
Victor Stinner3a50e702011-10-18 21:21:00 +02006738 out = PyUnicode_AS_UNICODE(*v);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006739 }
6740 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00006741 /* Extend unicode object */
Victor Stinner3a50e702011-10-18 21:21:00 +02006742 Py_ssize_t n = PyUnicode_GET_SIZE(*v);
Victor Stinner16e6a802011-12-12 13:24:15 +01006743 if (unicode_resize(v, n + outsize) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00006744 return -1;
Victor Stinner3a50e702011-10-18 21:21:00 +02006745 out = PyUnicode_AS_UNICODE(*v) + n;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006746 }
6747
6748 /* Do the conversion */
Victor Stinner3a50e702011-10-18 21:21:00 +02006749 outsize = MultiByteToWideChar(code_page, flags, in, insize, out, outsize);
6750 if (outsize <= 0)
6751 goto error;
6752 return insize;
Victor Stinner554f3f02010-06-16 23:33:54 +00006753
Victor Stinner3a50e702011-10-18 21:21:00 +02006754error:
6755 if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION)
6756 return -2;
6757 PyErr_SetFromWindowsErr(0);
Victor Stinner554f3f02010-06-16 23:33:54 +00006758 return -1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006759}
6760
Victor Stinner3a50e702011-10-18 21:21:00 +02006761/*
6762 * Decode a byte string from a code page into unicode object with an error
6763 * handler.
6764 *
6765 * Returns consumed size if succeed, or raise a WindowsError or
6766 * UnicodeDecodeError exception and returns -1 on error.
6767 */
6768static int
6769decode_code_page_errors(UINT code_page,
Victor Stinner76a31a62011-11-04 00:05:13 +01006770 PyObject **v,
6771 const char *in, const int size,
Victor Stinner3a50e702011-10-18 21:21:00 +02006772 const char *errors)
6773{
6774 const char *startin = in;
6775 const char *endin = in + size;
6776 const DWORD flags = decode_code_page_flags(code_page);
6777 /* Ideally, we should get reason from FormatMessage. This is the Windows
6778 2000 English version of the message. */
6779 const char *reason = "No mapping for the Unicode character exists "
6780 "in the target code page.";
6781 /* each step cannot decode more than 1 character, but a character can be
6782 represented as a surrogate pair */
6783 wchar_t buffer[2], *startout, *out;
6784 int insize, outsize;
6785 PyObject *errorHandler = NULL;
6786 PyObject *exc = NULL;
6787 PyObject *encoding_obj = NULL;
6788 char *encoding;
6789 DWORD err;
6790 int ret = -1;
6791
6792 assert(size > 0);
6793
6794 encoding = code_page_name(code_page, &encoding_obj);
6795 if (encoding == NULL)
6796 return -1;
6797
6798 if (errors == NULL || strcmp(errors, "strict") == 0) {
6799 /* The last error was ERROR_NO_UNICODE_TRANSLATION, then we raise a
6800 UnicodeDecodeError. */
6801 make_decode_exception(&exc, encoding, in, size, 0, 0, reason);
6802 if (exc != NULL) {
6803 PyCodec_StrictErrors(exc);
6804 Py_CLEAR(exc);
6805 }
6806 goto error;
6807 }
6808
6809 if (*v == NULL) {
6810 /* Create unicode object */
6811 if (size > PY_SSIZE_T_MAX / (Py_ssize_t)Py_ARRAY_LENGTH(buffer)) {
6812 PyErr_NoMemory();
6813 goto error;
6814 }
Victor Stinnerab595942011-12-17 04:59:06 +01006815 /* FIXME: don't use _PyUnicode_New(), but allocate a wchar_t* buffer */
Victor Stinner76a31a62011-11-04 00:05:13 +01006816 *v = (PyObject*)_PyUnicode_New(size * Py_ARRAY_LENGTH(buffer));
Victor Stinner3a50e702011-10-18 21:21:00 +02006817 if (*v == NULL)
6818 goto error;
6819 startout = PyUnicode_AS_UNICODE(*v);
6820 }
6821 else {
6822 /* Extend unicode object */
6823 Py_ssize_t n = PyUnicode_GET_SIZE(*v);
6824 if (size > (PY_SSIZE_T_MAX - n) / (Py_ssize_t)Py_ARRAY_LENGTH(buffer)) {
6825 PyErr_NoMemory();
6826 goto error;
6827 }
Victor Stinner16e6a802011-12-12 13:24:15 +01006828 if (unicode_resize(v, n + size * Py_ARRAY_LENGTH(buffer)) < 0)
Victor Stinner3a50e702011-10-18 21:21:00 +02006829 goto error;
6830 startout = PyUnicode_AS_UNICODE(*v) + n;
6831 }
6832
6833 /* Decode the byte string character per character */
6834 out = startout;
6835 while (in < endin)
6836 {
6837 /* Decode a character */
6838 insize = 1;
6839 do
6840 {
6841 outsize = MultiByteToWideChar(code_page, flags,
6842 in, insize,
6843 buffer, Py_ARRAY_LENGTH(buffer));
6844 if (outsize > 0)
6845 break;
6846 err = GetLastError();
6847 if (err != ERROR_NO_UNICODE_TRANSLATION
6848 && err != ERROR_INSUFFICIENT_BUFFER)
6849 {
6850 PyErr_SetFromWindowsErr(0);
6851 goto error;
6852 }
6853 insize++;
6854 }
6855 /* 4=maximum length of a UTF-8 sequence */
6856 while (insize <= 4 && (in + insize) <= endin);
6857
6858 if (outsize <= 0) {
6859 Py_ssize_t startinpos, endinpos, outpos;
6860
6861 startinpos = in - startin;
6862 endinpos = startinpos + 1;
6863 outpos = out - PyUnicode_AS_UNICODE(*v);
6864 if (unicode_decode_call_errorhandler(
6865 errors, &errorHandler,
6866 encoding, reason,
6867 &startin, &endin, &startinpos, &endinpos, &exc, &in,
Victor Stinner596a6c42011-11-09 00:02:18 +01006868 v, &outpos))
Victor Stinner3a50e702011-10-18 21:21:00 +02006869 {
6870 goto error;
6871 }
Victor Stinner596a6c42011-11-09 00:02:18 +01006872 out = PyUnicode_AS_UNICODE(*v) + outpos;
Victor Stinner3a50e702011-10-18 21:21:00 +02006873 }
6874 else {
6875 in += insize;
6876 memcpy(out, buffer, outsize * sizeof(wchar_t));
6877 out += outsize;
6878 }
6879 }
6880
6881 /* write a NUL character at the end */
6882 *out = 0;
6883
6884 /* Extend unicode object */
6885 outsize = out - startout;
6886 assert(outsize <= PyUnicode_WSTR_LENGTH(*v));
Victor Stinner16e6a802011-12-12 13:24:15 +01006887 if (unicode_resize(v, outsize) < 0)
Victor Stinner3a50e702011-10-18 21:21:00 +02006888 goto error;
Victor Stinner76a31a62011-11-04 00:05:13 +01006889 ret = size;
Victor Stinner3a50e702011-10-18 21:21:00 +02006890
6891error:
6892 Py_XDECREF(encoding_obj);
6893 Py_XDECREF(errorHandler);
6894 Py_XDECREF(exc);
6895 return ret;
6896}
6897
Victor Stinner3a50e702011-10-18 21:21:00 +02006898static PyObject *
6899decode_code_page_stateful(int code_page,
Victor Stinner76a31a62011-11-04 00:05:13 +01006900 const char *s, Py_ssize_t size,
6901 const char *errors, Py_ssize_t *consumed)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006902{
Victor Stinner76a31a62011-11-04 00:05:13 +01006903 PyObject *v = NULL;
6904 int chunk_size, final, converted, done;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006905
Victor Stinner3a50e702011-10-18 21:21:00 +02006906 if (code_page < 0) {
6907 PyErr_SetString(PyExc_ValueError, "invalid code page number");
6908 return NULL;
6909 }
6910
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006911 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00006912 *consumed = 0;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006913
Victor Stinner76a31a62011-11-04 00:05:13 +01006914 do
6915 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006916#ifdef NEED_RETRY
Victor Stinner76a31a62011-11-04 00:05:13 +01006917 if (size > INT_MAX) {
6918 chunk_size = INT_MAX;
6919 final = 0;
6920 done = 0;
6921 }
6922 else
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006923#endif
Victor Stinner76a31a62011-11-04 00:05:13 +01006924 {
6925 chunk_size = (int)size;
6926 final = (consumed == NULL);
6927 done = 1;
6928 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006929
Victor Stinner76a31a62011-11-04 00:05:13 +01006930 /* Skip trailing lead-byte unless 'final' is set */
6931 if (!final && is_dbcs_lead_byte(code_page, s, chunk_size - 1))
6932 --chunk_size;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006933
Victor Stinner76a31a62011-11-04 00:05:13 +01006934 if (chunk_size == 0 && done) {
6935 if (v != NULL)
6936 break;
6937 Py_INCREF(unicode_empty);
6938 return unicode_empty;
6939 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006940
Victor Stinner76a31a62011-11-04 00:05:13 +01006941
6942 converted = decode_code_page_strict(code_page, &v,
6943 s, chunk_size);
6944 if (converted == -2)
6945 converted = decode_code_page_errors(code_page, &v,
6946 s, chunk_size,
6947 errors);
6948 assert(converted != 0);
6949
6950 if (converted < 0) {
6951 Py_XDECREF(v);
6952 return NULL;
6953 }
6954
6955 if (consumed)
6956 *consumed += converted;
6957
6958 s += converted;
6959 size -= converted;
6960 } while (!done);
Victor Stinner3a50e702011-10-18 21:21:00 +02006961
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01006962 return unicode_result(v);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006963}
6964
Alexander Belopolsky40018472011-02-26 01:02:56 +00006965PyObject *
Victor Stinner3a50e702011-10-18 21:21:00 +02006966PyUnicode_DecodeCodePageStateful(int code_page,
6967 const char *s,
6968 Py_ssize_t size,
6969 const char *errors,
6970 Py_ssize_t *consumed)
6971{
6972 return decode_code_page_stateful(code_page, s, size, errors, consumed);
6973}
6974
6975PyObject *
6976PyUnicode_DecodeMBCSStateful(const char *s,
6977 Py_ssize_t size,
6978 const char *errors,
6979 Py_ssize_t *consumed)
6980{
6981 return decode_code_page_stateful(CP_ACP, s, size, errors, consumed);
6982}
6983
6984PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +00006985PyUnicode_DecodeMBCS(const char *s,
6986 Py_ssize_t size,
6987 const char *errors)
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00006988{
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006989 return PyUnicode_DecodeMBCSStateful(s, size, errors, NULL);
6990}
6991
Victor Stinner3a50e702011-10-18 21:21:00 +02006992static DWORD
6993encode_code_page_flags(UINT code_page, const char *errors)
6994{
6995 if (code_page == CP_UTF8) {
6996 if (winver.dwMajorVersion >= 6)
6997 /* CP_UTF8 supports WC_ERR_INVALID_CHARS on Windows Vista
6998 and later */
6999 return WC_ERR_INVALID_CHARS;
7000 else
7001 /* CP_UTF8 only supports flags=0 on Windows older than Vista */
7002 return 0;
7003 }
7004 else if (code_page == CP_UTF7) {
7005 /* CP_UTF7 only supports flags=0 */
7006 return 0;
7007 }
7008 else {
7009 if (errors != NULL && strcmp(errors, "replace") == 0)
7010 return 0;
7011 else
7012 return WC_NO_BEST_FIT_CHARS;
7013 }
7014}
7015
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007016/*
Victor Stinner3a50e702011-10-18 21:21:00 +02007017 * Encode a Unicode string to a Windows code page into a byte string in strict
7018 * mode.
7019 *
7020 * Returns consumed characters if succeed, returns -2 on encode error, or raise
7021 * a WindowsError and returns -1 on other error.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007022 */
Alexander Belopolsky40018472011-02-26 01:02:56 +00007023static int
Victor Stinner3a50e702011-10-18 21:21:00 +02007024encode_code_page_strict(UINT code_page, PyObject **outbytes,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007025 PyObject *unicode, Py_ssize_t offset, int len,
Victor Stinner3a50e702011-10-18 21:21:00 +02007026 const char* errors)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007027{
Victor Stinner554f3f02010-06-16 23:33:54 +00007028 BOOL usedDefaultChar = FALSE;
Victor Stinner3a50e702011-10-18 21:21:00 +02007029 BOOL *pusedDefaultChar = &usedDefaultChar;
7030 int outsize;
Victor Stinner554f3f02010-06-16 23:33:54 +00007031 PyObject *exc = NULL;
Victor Stinner24729f32011-11-10 20:31:37 +01007032 wchar_t *p;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007033 Py_ssize_t size;
Victor Stinner3a50e702011-10-18 21:21:00 +02007034 const DWORD flags = encode_code_page_flags(code_page, NULL);
7035 char *out;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007036 /* Create a substring so that we can get the UTF-16 representation
7037 of just the slice under consideration. */
7038 PyObject *substring;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007039
Martin v. Löwis3d325192011-11-04 18:23:06 +01007040 assert(len > 0);
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007041
Victor Stinner3a50e702011-10-18 21:21:00 +02007042 if (code_page != CP_UTF8 && code_page != CP_UTF7)
Victor Stinner554f3f02010-06-16 23:33:54 +00007043 pusedDefaultChar = &usedDefaultChar;
Victor Stinner3a50e702011-10-18 21:21:00 +02007044 else
Victor Stinner554f3f02010-06-16 23:33:54 +00007045 pusedDefaultChar = NULL;
Victor Stinner554f3f02010-06-16 23:33:54 +00007046
Victor Stinner2fc507f2011-11-04 20:06:39 +01007047 substring = PyUnicode_Substring(unicode, offset, offset+len);
7048 if (substring == NULL)
7049 return -1;
7050 p = PyUnicode_AsUnicodeAndSize(substring, &size);
7051 if (p == NULL) {
7052 Py_DECREF(substring);
7053 return -1;
7054 }
Martin v. Löwis3d325192011-11-04 18:23:06 +01007055
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007056 /* First get the size of the result */
Victor Stinner3a50e702011-10-18 21:21:00 +02007057 outsize = WideCharToMultiByte(code_page, flags,
7058 p, size,
7059 NULL, 0,
7060 NULL, pusedDefaultChar);
7061 if (outsize <= 0)
7062 goto error;
7063 /* If we used a default char, then we failed! */
Victor Stinner2fc507f2011-11-04 20:06:39 +01007064 if (pusedDefaultChar && *pusedDefaultChar) {
7065 Py_DECREF(substring);
Victor Stinner3a50e702011-10-18 21:21:00 +02007066 return -2;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007067 }
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007068
Victor Stinner3a50e702011-10-18 21:21:00 +02007069 if (*outbytes == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007070 /* Create string object */
Victor Stinner3a50e702011-10-18 21:21:00 +02007071 *outbytes = PyBytes_FromStringAndSize(NULL, outsize);
Victor Stinner2fc507f2011-11-04 20:06:39 +01007072 if (*outbytes == NULL) {
7073 Py_DECREF(substring);
Benjamin Peterson29060642009-01-31 22:14:21 +00007074 return -1;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007075 }
Victor Stinner3a50e702011-10-18 21:21:00 +02007076 out = PyBytes_AS_STRING(*outbytes);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007077 }
7078 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007079 /* Extend string object */
Victor Stinner3a50e702011-10-18 21:21:00 +02007080 const Py_ssize_t n = PyBytes_Size(*outbytes);
7081 if (outsize > PY_SSIZE_T_MAX - n) {
7082 PyErr_NoMemory();
Victor Stinner2fc507f2011-11-04 20:06:39 +01007083 Py_DECREF(substring);
Benjamin Peterson29060642009-01-31 22:14:21 +00007084 return -1;
Victor Stinner3a50e702011-10-18 21:21:00 +02007085 }
Victor Stinner2fc507f2011-11-04 20:06:39 +01007086 if (_PyBytes_Resize(outbytes, n + outsize) < 0) {
7087 Py_DECREF(substring);
Victor Stinner3a50e702011-10-18 21:21:00 +02007088 return -1;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007089 }
Victor Stinner3a50e702011-10-18 21:21:00 +02007090 out = PyBytes_AS_STRING(*outbytes) + n;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007091 }
7092
7093 /* Do the conversion */
Victor Stinner3a50e702011-10-18 21:21:00 +02007094 outsize = WideCharToMultiByte(code_page, flags,
7095 p, size,
7096 out, outsize,
7097 NULL, pusedDefaultChar);
Victor Stinner2fc507f2011-11-04 20:06:39 +01007098 Py_CLEAR(substring);
Victor Stinner3a50e702011-10-18 21:21:00 +02007099 if (outsize <= 0)
7100 goto error;
7101 if (pusedDefaultChar && *pusedDefaultChar)
7102 return -2;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007103 return 0;
Victor Stinner554f3f02010-06-16 23:33:54 +00007104
Victor Stinner3a50e702011-10-18 21:21:00 +02007105error:
Victor Stinner2fc507f2011-11-04 20:06:39 +01007106 Py_XDECREF(substring);
Victor Stinner3a50e702011-10-18 21:21:00 +02007107 if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION)
7108 return -2;
7109 PyErr_SetFromWindowsErr(0);
Victor Stinner554f3f02010-06-16 23:33:54 +00007110 return -1;
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007111}
7112
Victor Stinner3a50e702011-10-18 21:21:00 +02007113/*
7114 * Encode a Unicode string to a Windows code page into a byte string using a
7115 * error handler.
7116 *
7117 * Returns consumed characters if succeed, or raise a WindowsError and returns
7118 * -1 on other error.
7119 */
7120static int
7121encode_code_page_errors(UINT code_page, PyObject **outbytes,
Victor Stinner7581cef2011-11-03 22:32:33 +01007122 PyObject *unicode, Py_ssize_t unicode_offset,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007123 Py_ssize_t insize, const char* errors)
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007124{
Victor Stinner3a50e702011-10-18 21:21:00 +02007125 const DWORD flags = encode_code_page_flags(code_page, errors);
Victor Stinner2fc507f2011-11-04 20:06:39 +01007126 Py_ssize_t pos = unicode_offset;
7127 Py_ssize_t endin = unicode_offset + insize;
Victor Stinner3a50e702011-10-18 21:21:00 +02007128 /* Ideally, we should get reason from FormatMessage. This is the Windows
7129 2000 English version of the message. */
7130 const char *reason = "invalid character";
7131 /* 4=maximum length of a UTF-8 sequence */
7132 char buffer[4];
7133 BOOL usedDefaultChar = FALSE, *pusedDefaultChar;
7134 Py_ssize_t outsize;
7135 char *out;
Victor Stinner3a50e702011-10-18 21:21:00 +02007136 PyObject *errorHandler = NULL;
7137 PyObject *exc = NULL;
7138 PyObject *encoding_obj = NULL;
7139 char *encoding;
Martin v. Löwis3d325192011-11-04 18:23:06 +01007140 Py_ssize_t newpos, newoutsize;
Victor Stinner3a50e702011-10-18 21:21:00 +02007141 PyObject *rep;
7142 int ret = -1;
7143
7144 assert(insize > 0);
7145
7146 encoding = code_page_name(code_page, &encoding_obj);
7147 if (encoding == NULL)
7148 return -1;
7149
7150 if (errors == NULL || strcmp(errors, "strict") == 0) {
7151 /* The last error was ERROR_NO_UNICODE_TRANSLATION,
7152 then we raise a UnicodeEncodeError. */
Martin v. Löwis12be46c2011-11-04 19:04:15 +01007153 make_encode_exception(&exc, encoding, unicode, 0, 0, reason);
Victor Stinner3a50e702011-10-18 21:21:00 +02007154 if (exc != NULL) {
7155 PyCodec_StrictErrors(exc);
7156 Py_DECREF(exc);
7157 }
7158 Py_XDECREF(encoding_obj);
7159 return -1;
7160 }
7161
7162 if (code_page != CP_UTF8 && code_page != CP_UTF7)
7163 pusedDefaultChar = &usedDefaultChar;
7164 else
7165 pusedDefaultChar = NULL;
7166
7167 if (Py_ARRAY_LENGTH(buffer) > PY_SSIZE_T_MAX / insize) {
7168 PyErr_NoMemory();
7169 goto error;
7170 }
7171 outsize = insize * Py_ARRAY_LENGTH(buffer);
7172
7173 if (*outbytes == NULL) {
7174 /* Create string object */
7175 *outbytes = PyBytes_FromStringAndSize(NULL, outsize);
7176 if (*outbytes == NULL)
7177 goto error;
7178 out = PyBytes_AS_STRING(*outbytes);
7179 }
7180 else {
7181 /* Extend string object */
7182 Py_ssize_t n = PyBytes_Size(*outbytes);
7183 if (n > PY_SSIZE_T_MAX - outsize) {
7184 PyErr_NoMemory();
7185 goto error;
7186 }
7187 if (_PyBytes_Resize(outbytes, n + outsize) < 0)
7188 goto error;
7189 out = PyBytes_AS_STRING(*outbytes) + n;
7190 }
7191
7192 /* Encode the string character per character */
Martin v. Löwis3d325192011-11-04 18:23:06 +01007193 while (pos < endin)
Victor Stinner3a50e702011-10-18 21:21:00 +02007194 {
Victor Stinner2fc507f2011-11-04 20:06:39 +01007195 Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, pos);
7196 wchar_t chars[2];
7197 int charsize;
7198 if (ch < 0x10000) {
7199 chars[0] = (wchar_t)ch;
7200 charsize = 1;
7201 }
7202 else {
7203 ch -= 0x10000;
7204 chars[0] = 0xd800 + (ch >> 10);
7205 chars[1] = 0xdc00 + (ch & 0x3ff);
7206 charsize = 2;
7207 }
7208
Victor Stinner3a50e702011-10-18 21:21:00 +02007209 outsize = WideCharToMultiByte(code_page, flags,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007210 chars, charsize,
Victor Stinner3a50e702011-10-18 21:21:00 +02007211 buffer, Py_ARRAY_LENGTH(buffer),
7212 NULL, pusedDefaultChar);
7213 if (outsize > 0) {
7214 if (pusedDefaultChar == NULL || !(*pusedDefaultChar))
7215 {
Martin v. Löwis3d325192011-11-04 18:23:06 +01007216 pos++;
Victor Stinner3a50e702011-10-18 21:21:00 +02007217 memcpy(out, buffer, outsize);
7218 out += outsize;
7219 continue;
7220 }
7221 }
7222 else if (GetLastError() != ERROR_NO_UNICODE_TRANSLATION) {
7223 PyErr_SetFromWindowsErr(0);
7224 goto error;
7225 }
7226
Victor Stinner3a50e702011-10-18 21:21:00 +02007227 rep = unicode_encode_call_errorhandler(
7228 errors, &errorHandler, encoding, reason,
Victor Stinner7581cef2011-11-03 22:32:33 +01007229 unicode, &exc,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007230 pos, pos + 1, &newpos);
Victor Stinner3a50e702011-10-18 21:21:00 +02007231 if (rep == NULL)
7232 goto error;
Martin v. Löwis3d325192011-11-04 18:23:06 +01007233 pos = newpos;
Victor Stinner3a50e702011-10-18 21:21:00 +02007234
7235 if (PyBytes_Check(rep)) {
7236 outsize = PyBytes_GET_SIZE(rep);
7237 if (outsize != 1) {
7238 Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes);
7239 newoutsize = PyBytes_GET_SIZE(*outbytes) + (outsize - 1);
7240 if (_PyBytes_Resize(outbytes, newoutsize) < 0) {
7241 Py_DECREF(rep);
7242 goto error;
7243 }
7244 out = PyBytes_AS_STRING(*outbytes) + offset;
7245 }
7246 memcpy(out, PyBytes_AS_STRING(rep), outsize);
7247 out += outsize;
7248 }
7249 else {
7250 Py_ssize_t i;
7251 enum PyUnicode_Kind kind;
7252 void *data;
7253
Benjamin Petersonbac79492012-01-14 13:34:47 -05007254 if (PyUnicode_READY(rep) == -1) {
Victor Stinner3a50e702011-10-18 21:21:00 +02007255 Py_DECREF(rep);
7256 goto error;
7257 }
7258
7259 outsize = PyUnicode_GET_LENGTH(rep);
7260 if (outsize != 1) {
7261 Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes);
7262 newoutsize = PyBytes_GET_SIZE(*outbytes) + (outsize - 1);
7263 if (_PyBytes_Resize(outbytes, newoutsize) < 0) {
7264 Py_DECREF(rep);
7265 goto error;
7266 }
7267 out = PyBytes_AS_STRING(*outbytes) + offset;
7268 }
7269 kind = PyUnicode_KIND(rep);
7270 data = PyUnicode_DATA(rep);
7271 for (i=0; i < outsize; i++) {
7272 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
7273 if (ch > 127) {
Martin v. Löwis12be46c2011-11-04 19:04:15 +01007274 raise_encode_exception(&exc,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007275 encoding, unicode,
7276 pos, pos + 1,
Victor Stinner3a50e702011-10-18 21:21:00 +02007277 "unable to encode error handler result to ASCII");
7278 Py_DECREF(rep);
7279 goto error;
7280 }
7281 *out = (unsigned char)ch;
7282 out++;
7283 }
7284 }
7285 Py_DECREF(rep);
7286 }
7287 /* write a NUL byte */
7288 *out = 0;
7289 outsize = out - PyBytes_AS_STRING(*outbytes);
7290 assert(outsize <= PyBytes_GET_SIZE(*outbytes));
7291 if (_PyBytes_Resize(outbytes, outsize) < 0)
7292 goto error;
7293 ret = 0;
7294
7295error:
7296 Py_XDECREF(encoding_obj);
7297 Py_XDECREF(errorHandler);
7298 Py_XDECREF(exc);
7299 return ret;
7300}
7301
Victor Stinner3a50e702011-10-18 21:21:00 +02007302static PyObject *
7303encode_code_page(int code_page,
Victor Stinner7581cef2011-11-03 22:32:33 +01007304 PyObject *unicode,
Victor Stinner3a50e702011-10-18 21:21:00 +02007305 const char *errors)
7306{
Martin v. Löwis3d325192011-11-04 18:23:06 +01007307 Py_ssize_t len;
Victor Stinner3a50e702011-10-18 21:21:00 +02007308 PyObject *outbytes = NULL;
Victor Stinner7581cef2011-11-03 22:32:33 +01007309 Py_ssize_t offset;
Victor Stinner76a31a62011-11-04 00:05:13 +01007310 int chunk_len, ret, done;
Victor Stinner7581cef2011-11-03 22:32:33 +01007311
Benjamin Petersonbac79492012-01-14 13:34:47 -05007312 if (PyUnicode_READY(unicode) == -1)
Victor Stinner2fc507f2011-11-04 20:06:39 +01007313 return NULL;
7314 len = PyUnicode_GET_LENGTH(unicode);
Guido van Rossum03e29f12000-05-04 15:52:20 +00007315
Victor Stinner3a50e702011-10-18 21:21:00 +02007316 if (code_page < 0) {
7317 PyErr_SetString(PyExc_ValueError, "invalid code page number");
7318 return NULL;
7319 }
7320
Martin v. Löwis3d325192011-11-04 18:23:06 +01007321 if (len == 0)
Victor Stinner76a31a62011-11-04 00:05:13 +01007322 return PyBytes_FromStringAndSize(NULL, 0);
7323
Victor Stinner7581cef2011-11-03 22:32:33 +01007324 offset = 0;
7325 do
7326 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007327#ifdef NEED_RETRY
Victor Stinner2fc507f2011-11-04 20:06:39 +01007328 /* UTF-16 encoding may double the size, so use only INT_MAX/2
Martin v. Löwis3d325192011-11-04 18:23:06 +01007329 chunks. */
7330 if (len > INT_MAX/2) {
7331 chunk_len = INT_MAX/2;
Victor Stinner76a31a62011-11-04 00:05:13 +01007332 done = 0;
7333 }
Victor Stinner7581cef2011-11-03 22:32:33 +01007334 else
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007335#endif
Victor Stinner76a31a62011-11-04 00:05:13 +01007336 {
Martin v. Löwis3d325192011-11-04 18:23:06 +01007337 chunk_len = (int)len;
Victor Stinner76a31a62011-11-04 00:05:13 +01007338 done = 1;
7339 }
Victor Stinner2fc507f2011-11-04 20:06:39 +01007340
Victor Stinner76a31a62011-11-04 00:05:13 +01007341 ret = encode_code_page_strict(code_page, &outbytes,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007342 unicode, offset, chunk_len,
Victor Stinner76a31a62011-11-04 00:05:13 +01007343 errors);
7344 if (ret == -2)
7345 ret = encode_code_page_errors(code_page, &outbytes,
7346 unicode, offset,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007347 chunk_len, errors);
Victor Stinner7581cef2011-11-03 22:32:33 +01007348 if (ret < 0) {
7349 Py_XDECREF(outbytes);
7350 return NULL;
7351 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007352
Victor Stinner7581cef2011-11-03 22:32:33 +01007353 offset += chunk_len;
Martin v. Löwis3d325192011-11-04 18:23:06 +01007354 len -= chunk_len;
Victor Stinner76a31a62011-11-04 00:05:13 +01007355 } while (!done);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007356
Victor Stinner3a50e702011-10-18 21:21:00 +02007357 return outbytes;
7358}
7359
7360PyObject *
7361PyUnicode_EncodeMBCS(const Py_UNICODE *p,
7362 Py_ssize_t size,
7363 const char *errors)
7364{
Victor Stinner7581cef2011-11-03 22:32:33 +01007365 PyObject *unicode, *res;
7366 unicode = PyUnicode_FromUnicode(p, size);
7367 if (unicode == NULL)
7368 return NULL;
7369 res = encode_code_page(CP_ACP, unicode, errors);
7370 Py_DECREF(unicode);
7371 return res;
Victor Stinner3a50e702011-10-18 21:21:00 +02007372}
7373
7374PyObject *
7375PyUnicode_EncodeCodePage(int code_page,
7376 PyObject *unicode,
7377 const char *errors)
7378{
Victor Stinner7581cef2011-11-03 22:32:33 +01007379 return encode_code_page(code_page, unicode, errors);
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007380}
Guido van Rossum2ea3e142000-03-31 17:24:09 +00007381
Alexander Belopolsky40018472011-02-26 01:02:56 +00007382PyObject *
7383PyUnicode_AsMBCSString(PyObject *unicode)
Mark Hammond0ccda1e2003-07-01 00:13:27 +00007384{
7385 if (!PyUnicode_Check(unicode)) {
7386 PyErr_BadArgument();
7387 return NULL;
7388 }
Victor Stinner7581cef2011-11-03 22:32:33 +01007389 return PyUnicode_EncodeCodePage(CP_ACP, unicode, NULL);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00007390}
7391
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007392#undef NEED_RETRY
7393
Victor Stinner99b95382011-07-04 14:23:54 +02007394#endif /* HAVE_MBCS */
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007395
Guido van Rossumd57fd912000-03-10 22:53:23 +00007396/* --- Character Mapping Codec -------------------------------------------- */
7397
Alexander Belopolsky40018472011-02-26 01:02:56 +00007398PyObject *
7399PyUnicode_DecodeCharmap(const char *s,
7400 Py_ssize_t size,
7401 PyObject *mapping,
7402 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007403{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007404 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007405 Py_ssize_t startinpos;
7406 Py_ssize_t endinpos;
7407 Py_ssize_t outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007408 const char *e;
Victor Stinner7931d9a2011-11-04 00:22:48 +01007409 PyObject *v;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007410 Py_ssize_t extrachars = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007411 PyObject *errorHandler = NULL;
7412 PyObject *exc = NULL;
Tim Petersced69f82003-09-16 20:30:58 +00007413
Guido van Rossumd57fd912000-03-10 22:53:23 +00007414 /* Default to Latin-1 */
7415 if (mapping == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007416 return PyUnicode_DecodeLatin1(s, size, errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007417
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007418 v = PyUnicode_New(size, 127);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007419 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007420 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007421 if (size == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01007422 return v;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007423 outpos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007424 e = s + size;
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00007425 if (PyUnicode_CheckExact(mapping)) {
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007426 Py_ssize_t maplen;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007427 enum PyUnicode_Kind mapkind;
7428 void *mapdata;
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007429 Py_UCS4 x;
7430
Benjamin Petersonbac79492012-01-14 13:34:47 -05007431 if (PyUnicode_READY(mapping) == -1)
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007432 return NULL;
7433
7434 maplen = PyUnicode_GET_LENGTH(mapping);
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007435 mapdata = PyUnicode_DATA(mapping);
7436 mapkind = PyUnicode_KIND(mapping);
Benjamin Peterson29060642009-01-31 22:14:21 +00007437 while (s < e) {
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007438 unsigned char ch;
7439 if (mapkind == PyUnicode_2BYTE_KIND && maplen >= 256) {
7440 enum PyUnicode_Kind outkind = PyUnicode_KIND(v);
7441 if (outkind == PyUnicode_1BYTE_KIND) {
7442 void *outdata = PyUnicode_DATA(v);
7443 Py_UCS4 maxchar = PyUnicode_MAX_CHAR_VALUE(v);
7444 while (s < e) {
7445 unsigned char ch = *s;
7446 x = PyUnicode_READ(PyUnicode_2BYTE_KIND, mapdata, ch);
7447 if (x > maxchar)
7448 goto Error;
7449 PyUnicode_WRITE(PyUnicode_1BYTE_KIND, outdata, outpos++, x);
7450 ++s;
7451 }
7452 break;
7453 }
7454 else if (outkind == PyUnicode_2BYTE_KIND) {
7455 void *outdata = PyUnicode_DATA(v);
7456 while (s < e) {
7457 unsigned char ch = *s;
7458 x = PyUnicode_READ(PyUnicode_2BYTE_KIND, mapdata, ch);
7459 if (x == 0xFFFE)
7460 goto Error;
7461 PyUnicode_WRITE(PyUnicode_2BYTE_KIND, outdata, outpos++, x);
7462 ++s;
7463 }
7464 break;
7465 }
7466 }
7467 ch = *s;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007468
Benjamin Peterson29060642009-01-31 22:14:21 +00007469 if (ch < maplen)
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007470 x = PyUnicode_READ(mapkind, mapdata, ch);
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007471 else
7472 x = 0xfffe; /* invalid value */
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007473Error:
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007474 if (x == 0xfffe)
7475 {
Benjamin Peterson29060642009-01-31 22:14:21 +00007476 /* undefined mapping */
Benjamin Peterson29060642009-01-31 22:14:21 +00007477 startinpos = s-starts;
7478 endinpos = startinpos+1;
7479 if (unicode_decode_call_errorhandler(
7480 errors, &errorHandler,
7481 "charmap", "character maps to <undefined>",
7482 &starts, &e, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007483 &v, &outpos)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007484 goto onError;
7485 }
7486 continue;
7487 }
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007488
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007489 if (unicode_putchar(&v, &outpos, x) < 0)
7490 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00007491 ++s;
Benjamin Peterson14339b62009-01-31 16:36:08 +00007492 }
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00007493 }
7494 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007495 while (s < e) {
7496 unsigned char ch = *s;
7497 PyObject *w, *x;
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00007498
Benjamin Peterson29060642009-01-31 22:14:21 +00007499 /* Get mapping (char ordinal -> integer, Unicode char or None) */
7500 w = PyLong_FromLong((long)ch);
7501 if (w == NULL)
7502 goto onError;
7503 x = PyObject_GetItem(mapping, w);
7504 Py_DECREF(w);
7505 if (x == NULL) {
7506 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
7507 /* No mapping found means: mapping is undefined. */
7508 PyErr_Clear();
7509 x = Py_None;
7510 Py_INCREF(x);
7511 } else
7512 goto onError;
7513 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00007514
Benjamin Peterson29060642009-01-31 22:14:21 +00007515 /* Apply mapping */
7516 if (PyLong_Check(x)) {
7517 long value = PyLong_AS_LONG(x);
Antoine Pitroua1f76552012-09-23 20:00:04 +02007518 if (value < 0 || value > MAX_UNICODE) {
7519 PyErr_Format(PyExc_TypeError,
7520 "character mapping must be in range(0x%lx)",
7521 (unsigned long)MAX_UNICODE + 1);
Benjamin Peterson29060642009-01-31 22:14:21 +00007522 Py_DECREF(x);
7523 goto onError;
7524 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007525 if (unicode_putchar(&v, &outpos, value) < 0)
7526 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00007527 }
7528 else if (x == Py_None) {
7529 /* undefined mapping */
Benjamin Peterson29060642009-01-31 22:14:21 +00007530 startinpos = s-starts;
7531 endinpos = startinpos+1;
7532 if (unicode_decode_call_errorhandler(
7533 errors, &errorHandler,
7534 "charmap", "character maps to <undefined>",
7535 &starts, &e, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007536 &v, &outpos)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007537 Py_DECREF(x);
7538 goto onError;
7539 }
7540 Py_DECREF(x);
7541 continue;
7542 }
7543 else if (PyUnicode_Check(x)) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007544 Py_ssize_t targetsize;
Benjamin Peterson14339b62009-01-31 16:36:08 +00007545
Benjamin Petersonbac79492012-01-14 13:34:47 -05007546 if (PyUnicode_READY(x) == -1)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007547 goto onError;
7548 targetsize = PyUnicode_GET_LENGTH(x);
7549
7550 if (targetsize == 1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007551 /* 1-1 mapping */
Victor Stinner62aa4d02011-11-09 00:03:45 +01007552 if (unicode_putchar(&v, &outpos,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007553 PyUnicode_READ_CHAR(x, 0)) < 0)
7554 goto onError;
7555 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007556 else if (targetsize > 1) {
7557 /* 1-n mapping */
7558 if (targetsize > extrachars) {
7559 /* resize first */
Benjamin Peterson29060642009-01-31 22:14:21 +00007560 Py_ssize_t needed = (targetsize - extrachars) + \
7561 (targetsize << 2);
7562 extrachars += needed;
7563 /* XXX overflow detection missing */
Victor Stinner16e6a802011-12-12 13:24:15 +01007564 if (unicode_resize(&v,
7565 PyUnicode_GET_LENGTH(v) + needed) < 0)
7566 {
Benjamin Peterson29060642009-01-31 22:14:21 +00007567 Py_DECREF(x);
7568 goto onError;
7569 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007570 }
Victor Stinner1b487b42012-05-03 12:29:04 +02007571 if (unicode_widen(&v, outpos, PyUnicode_MAX_CHAR_VALUE(x)) < 0)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007572 goto onError;
7573 PyUnicode_CopyCharacters(v, outpos, x, 0, targetsize);
7574 outpos += targetsize;
Benjamin Peterson29060642009-01-31 22:14:21 +00007575 extrachars -= targetsize;
7576 }
7577 /* 1-0 mapping: skip the character */
7578 }
7579 else {
7580 /* wrong return value */
7581 PyErr_SetString(PyExc_TypeError,
7582 "character mapping must return integer, None or str");
Benjamin Peterson14339b62009-01-31 16:36:08 +00007583 Py_DECREF(x);
7584 goto onError;
7585 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007586 Py_DECREF(x);
7587 ++s;
Benjamin Peterson14339b62009-01-31 16:36:08 +00007588 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007589 }
Victor Stinner16e6a802011-12-12 13:24:15 +01007590 if (unicode_resize(&v, outpos) < 0)
Antoine Pitroua8f63c02011-11-08 18:37:16 +01007591 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007592 Py_XDECREF(errorHandler);
7593 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01007594 return unicode_result(v);
Tim Petersced69f82003-09-16 20:30:58 +00007595
Benjamin Peterson29060642009-01-31 22:14:21 +00007596 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007597 Py_XDECREF(errorHandler);
7598 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007599 Py_XDECREF(v);
7600 return NULL;
7601}
7602
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007603/* Charmap encoding: the lookup table */
7604
Alexander Belopolsky40018472011-02-26 01:02:56 +00007605struct encoding_map {
Benjamin Peterson29060642009-01-31 22:14:21 +00007606 PyObject_HEAD
7607 unsigned char level1[32];
7608 int count2, count3;
7609 unsigned char level23[1];
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007610};
7611
7612static PyObject*
7613encoding_map_size(PyObject *obj, PyObject* args)
7614{
7615 struct encoding_map *map = (struct encoding_map*)obj;
Benjamin Peterson14339b62009-01-31 16:36:08 +00007616 return PyLong_FromLong(sizeof(*map) - 1 + 16*map->count2 +
Benjamin Peterson29060642009-01-31 22:14:21 +00007617 128*map->count3);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007618}
7619
7620static PyMethodDef encoding_map_methods[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00007621 {"size", encoding_map_size, METH_NOARGS,
Benjamin Peterson29060642009-01-31 22:14:21 +00007622 PyDoc_STR("Return the size (in bytes) of this object") },
7623 { 0 }
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007624};
7625
7626static void
7627encoding_map_dealloc(PyObject* o)
7628{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007629 PyObject_FREE(o);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007630}
7631
7632static PyTypeObject EncodingMapType = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00007633 PyVarObject_HEAD_INIT(NULL, 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007634 "EncodingMap", /*tp_name*/
7635 sizeof(struct encoding_map), /*tp_basicsize*/
7636 0, /*tp_itemsize*/
7637 /* methods */
7638 encoding_map_dealloc, /*tp_dealloc*/
7639 0, /*tp_print*/
7640 0, /*tp_getattr*/
7641 0, /*tp_setattr*/
Mark Dickinsone94c6792009-02-02 20:36:42 +00007642 0, /*tp_reserved*/
Benjamin Peterson29060642009-01-31 22:14:21 +00007643 0, /*tp_repr*/
7644 0, /*tp_as_number*/
7645 0, /*tp_as_sequence*/
7646 0, /*tp_as_mapping*/
7647 0, /*tp_hash*/
7648 0, /*tp_call*/
7649 0, /*tp_str*/
7650 0, /*tp_getattro*/
7651 0, /*tp_setattro*/
7652 0, /*tp_as_buffer*/
7653 Py_TPFLAGS_DEFAULT, /*tp_flags*/
7654 0, /*tp_doc*/
7655 0, /*tp_traverse*/
7656 0, /*tp_clear*/
7657 0, /*tp_richcompare*/
7658 0, /*tp_weaklistoffset*/
7659 0, /*tp_iter*/
7660 0, /*tp_iternext*/
7661 encoding_map_methods, /*tp_methods*/
7662 0, /*tp_members*/
7663 0, /*tp_getset*/
7664 0, /*tp_base*/
7665 0, /*tp_dict*/
7666 0, /*tp_descr_get*/
7667 0, /*tp_descr_set*/
7668 0, /*tp_dictoffset*/
7669 0, /*tp_init*/
7670 0, /*tp_alloc*/
7671 0, /*tp_new*/
7672 0, /*tp_free*/
7673 0, /*tp_is_gc*/
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007674};
7675
7676PyObject*
7677PyUnicode_BuildEncodingMap(PyObject* string)
7678{
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007679 PyObject *result;
7680 struct encoding_map *mresult;
7681 int i;
7682 int need_dict = 0;
7683 unsigned char level1[32];
7684 unsigned char level2[512];
7685 unsigned char *mlevel1, *mlevel2, *mlevel3;
7686 int count2 = 0, count3 = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007687 int kind;
7688 void *data;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007689 Py_ssize_t length;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007690 Py_UCS4 ch;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007691
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007692 if (!PyUnicode_Check(string) || !PyUnicode_GET_LENGTH(string)) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007693 PyErr_BadArgument();
7694 return NULL;
7695 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007696 kind = PyUnicode_KIND(string);
7697 data = PyUnicode_DATA(string);
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007698 length = PyUnicode_GET_LENGTH(string);
7699 length = Py_MIN(length, 256);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007700 memset(level1, 0xFF, sizeof level1);
7701 memset(level2, 0xFF, sizeof level2);
7702
7703 /* If there isn't a one-to-one mapping of NULL to \0,
7704 or if there are non-BMP characters, we need to use
7705 a mapping dictionary. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007706 if (PyUnicode_READ(kind, data, 0) != 0)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007707 need_dict = 1;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007708 for (i = 1; i < length; i++) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007709 int l1, l2;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007710 ch = PyUnicode_READ(kind, data, i);
7711 if (ch == 0 || ch > 0xFFFF) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007712 need_dict = 1;
7713 break;
7714 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007715 if (ch == 0xFFFE)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007716 /* unmapped character */
7717 continue;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007718 l1 = ch >> 11;
7719 l2 = ch >> 7;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007720 if (level1[l1] == 0xFF)
7721 level1[l1] = count2++;
7722 if (level2[l2] == 0xFF)
Benjamin Peterson14339b62009-01-31 16:36:08 +00007723 level2[l2] = count3++;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007724 }
7725
7726 if (count2 >= 0xFF || count3 >= 0xFF)
7727 need_dict = 1;
7728
7729 if (need_dict) {
7730 PyObject *result = PyDict_New();
7731 PyObject *key, *value;
7732 if (!result)
7733 return NULL;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007734 for (i = 0; i < length; i++) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007735 key = PyLong_FromLong(PyUnicode_READ(kind, data, i));
Christian Heimes217cfd12007-12-02 14:31:20 +00007736 value = PyLong_FromLong(i);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007737 if (!key || !value)
7738 goto failed1;
7739 if (PyDict_SetItem(result, key, value) == -1)
7740 goto failed1;
7741 Py_DECREF(key);
7742 Py_DECREF(value);
7743 }
7744 return result;
7745 failed1:
7746 Py_XDECREF(key);
7747 Py_XDECREF(value);
7748 Py_DECREF(result);
7749 return NULL;
7750 }
7751
7752 /* Create a three-level trie */
7753 result = PyObject_MALLOC(sizeof(struct encoding_map) +
7754 16*count2 + 128*count3 - 1);
7755 if (!result)
7756 return PyErr_NoMemory();
7757 PyObject_Init(result, &EncodingMapType);
7758 mresult = (struct encoding_map*)result;
7759 mresult->count2 = count2;
7760 mresult->count3 = count3;
7761 mlevel1 = mresult->level1;
7762 mlevel2 = mresult->level23;
7763 mlevel3 = mresult->level23 + 16*count2;
7764 memcpy(mlevel1, level1, 32);
7765 memset(mlevel2, 0xFF, 16*count2);
7766 memset(mlevel3, 0, 128*count3);
7767 count3 = 0;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007768 for (i = 1; i < length; i++) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007769 int o1, o2, o3, i2, i3;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007770 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
7771 if (ch == 0xFFFE)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007772 /* unmapped character */
7773 continue;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007774 o1 = ch>>11;
7775 o2 = (ch>>7) & 0xF;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007776 i2 = 16*mlevel1[o1] + o2;
7777 if (mlevel2[i2] == 0xFF)
7778 mlevel2[i2] = count3++;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007779 o3 = ch & 0x7F;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007780 i3 = 128*mlevel2[i2] + o3;
7781 mlevel3[i3] = i;
7782 }
7783 return result;
7784}
7785
7786static int
Victor Stinner22168992011-11-20 17:09:18 +01007787encoding_map_lookup(Py_UCS4 c, PyObject *mapping)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007788{
7789 struct encoding_map *map = (struct encoding_map*)mapping;
7790 int l1 = c>>11;
7791 int l2 = (c>>7) & 0xF;
7792 int l3 = c & 0x7F;
7793 int i;
7794
Victor Stinner22168992011-11-20 17:09:18 +01007795 if (c > 0xFFFF)
Benjamin Peterson29060642009-01-31 22:14:21 +00007796 return -1;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007797 if (c == 0)
7798 return 0;
7799 /* level 1*/
7800 i = map->level1[l1];
7801 if (i == 0xFF) {
7802 return -1;
7803 }
7804 /* level 2*/
7805 i = map->level23[16*i+l2];
7806 if (i == 0xFF) {
7807 return -1;
7808 }
7809 /* level 3 */
7810 i = map->level23[16*map->count2 + 128*i + l3];
7811 if (i == 0) {
7812 return -1;
7813 }
7814 return i;
7815}
7816
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007817/* Lookup the character ch in the mapping. If the character
7818 can't be found, Py_None is returned (or NULL, if another
Fred Drakedb390c12005-10-28 14:39:47 +00007819 error occurred). */
Alexander Belopolsky40018472011-02-26 01:02:56 +00007820static PyObject *
Victor Stinner22168992011-11-20 17:09:18 +01007821charmapencode_lookup(Py_UCS4 c, PyObject *mapping)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007822{
Christian Heimes217cfd12007-12-02 14:31:20 +00007823 PyObject *w = PyLong_FromLong((long)c);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007824 PyObject *x;
7825
7826 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007827 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007828 x = PyObject_GetItem(mapping, w);
7829 Py_DECREF(w);
7830 if (x == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007831 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
7832 /* No mapping found means: mapping is undefined. */
7833 PyErr_Clear();
7834 x = Py_None;
7835 Py_INCREF(x);
7836 return x;
7837 } else
7838 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007839 }
Walter Dörwaldadc72742003-01-08 22:01:33 +00007840 else if (x == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00007841 return x;
Christian Heimes217cfd12007-12-02 14:31:20 +00007842 else if (PyLong_Check(x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007843 long value = PyLong_AS_LONG(x);
7844 if (value < 0 || value > 255) {
7845 PyErr_SetString(PyExc_TypeError,
7846 "character mapping must be in range(256)");
7847 Py_DECREF(x);
7848 return NULL;
7849 }
7850 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007851 }
Christian Heimes72b710a2008-05-26 13:28:38 +00007852 else if (PyBytes_Check(x))
Benjamin Peterson29060642009-01-31 22:14:21 +00007853 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007854 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007855 /* wrong return value */
7856 PyErr_Format(PyExc_TypeError,
7857 "character mapping must return integer, bytes or None, not %.400s",
7858 x->ob_type->tp_name);
7859 Py_DECREF(x);
7860 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007861 }
7862}
7863
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007864static int
Guido van Rossum98297ee2007-11-06 21:34:58 +00007865charmapencode_resize(PyObject **outobj, Py_ssize_t *outpos, Py_ssize_t requiredsize)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007866{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007867 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj);
7868 /* exponentially overallocate to minimize reallocations */
7869 if (requiredsize < 2*outsize)
7870 requiredsize = 2*outsize;
7871 if (_PyBytes_Resize(outobj, requiredsize))
7872 return -1;
7873 return 0;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007874}
7875
Benjamin Peterson14339b62009-01-31 16:36:08 +00007876typedef enum charmapencode_result {
Benjamin Peterson29060642009-01-31 22:14:21 +00007877 enc_SUCCESS, enc_FAILED, enc_EXCEPTION
Alexander Belopolsky40018472011-02-26 01:02:56 +00007878} charmapencode_result;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007879/* lookup the character, put the result in the output string and adjust
Walter Dörwald827b0552007-05-12 13:23:53 +00007880 various state variables. Resize the output bytes object if not enough
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007881 space is available. Return a new reference to the object that
7882 was put in the output buffer, or Py_None, if the mapping was undefined
7883 (in which case no character was written) or NULL, if a
Andrew M. Kuchling8294de52005-11-02 16:36:12 +00007884 reallocation error occurred. The caller must decref the result */
Alexander Belopolsky40018472011-02-26 01:02:56 +00007885static charmapencode_result
Victor Stinner22168992011-11-20 17:09:18 +01007886charmapencode_output(Py_UCS4 c, PyObject *mapping,
Alexander Belopolsky40018472011-02-26 01:02:56 +00007887 PyObject **outobj, Py_ssize_t *outpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007888{
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007889 PyObject *rep;
7890 char *outstart;
Christian Heimes72b710a2008-05-26 13:28:38 +00007891 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007892
Christian Heimes90aa7642007-12-19 02:45:37 +00007893 if (Py_TYPE(mapping) == &EncodingMapType) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007894 int res = encoding_map_lookup(c, mapping);
Benjamin Peterson29060642009-01-31 22:14:21 +00007895 Py_ssize_t requiredsize = *outpos+1;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007896 if (res == -1)
7897 return enc_FAILED;
Benjamin Peterson29060642009-01-31 22:14:21 +00007898 if (outsize<requiredsize)
7899 if (charmapencode_resize(outobj, outpos, requiredsize))
7900 return enc_EXCEPTION;
Christian Heimes72b710a2008-05-26 13:28:38 +00007901 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00007902 outstart[(*outpos)++] = (char)res;
7903 return enc_SUCCESS;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007904 }
7905
7906 rep = charmapencode_lookup(c, mapping);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007907 if (rep==NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007908 return enc_EXCEPTION;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007909 else if (rep==Py_None) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007910 Py_DECREF(rep);
7911 return enc_FAILED;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007912 } else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007913 if (PyLong_Check(rep)) {
7914 Py_ssize_t requiredsize = *outpos+1;
7915 if (outsize<requiredsize)
7916 if (charmapencode_resize(outobj, outpos, requiredsize)) {
7917 Py_DECREF(rep);
7918 return enc_EXCEPTION;
7919 }
Christian Heimes72b710a2008-05-26 13:28:38 +00007920 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00007921 outstart[(*outpos)++] = (char)PyLong_AS_LONG(rep);
Benjamin Peterson14339b62009-01-31 16:36:08 +00007922 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007923 else {
7924 const char *repchars = PyBytes_AS_STRING(rep);
7925 Py_ssize_t repsize = PyBytes_GET_SIZE(rep);
7926 Py_ssize_t requiredsize = *outpos+repsize;
7927 if (outsize<requiredsize)
7928 if (charmapencode_resize(outobj, outpos, requiredsize)) {
7929 Py_DECREF(rep);
7930 return enc_EXCEPTION;
7931 }
Christian Heimes72b710a2008-05-26 13:28:38 +00007932 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00007933 memcpy(outstart + *outpos, repchars, repsize);
7934 *outpos += repsize;
7935 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007936 }
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007937 Py_DECREF(rep);
7938 return enc_SUCCESS;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007939}
7940
7941/* handle an error in PyUnicode_EncodeCharmap
7942 Return 0 on success, -1 on error */
Alexander Belopolsky40018472011-02-26 01:02:56 +00007943static int
7944charmap_encoding_error(
Martin v. Löwis23e275b2011-11-02 18:02:51 +01007945 PyObject *unicode, Py_ssize_t *inpos, PyObject *mapping,
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007946 PyObject **exceptionObject,
Walter Dörwalde5402fb2003-08-14 20:25:29 +00007947 int *known_errorHandler, PyObject **errorHandler, const char *errors,
Guido van Rossum98297ee2007-11-06 21:34:58 +00007948 PyObject **res, Py_ssize_t *respos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007949{
7950 PyObject *repunicode = NULL; /* initialize to prevent gcc warning */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01007951 Py_ssize_t size, repsize;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007952 Py_ssize_t newpos;
Victor Stinnerae4f7c82011-11-20 18:28:55 +01007953 enum PyUnicode_Kind kind;
7954 void *data;
7955 Py_ssize_t index;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007956 /* startpos for collecting unencodable chars */
Martin v. Löwis18e16552006-02-15 17:27:45 +00007957 Py_ssize_t collstartpos = *inpos;
7958 Py_ssize_t collendpos = *inpos+1;
7959 Py_ssize_t collpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007960 char *encoding = "charmap";
7961 char *reason = "character maps to <undefined>";
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007962 charmapencode_result x;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01007963 Py_UCS4 ch;
Brian Curtin2787ea42011-11-02 15:09:37 -05007964 int val;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007965
Benjamin Petersonbac79492012-01-14 13:34:47 -05007966 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01007967 return -1;
7968 size = PyUnicode_GET_LENGTH(unicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007969 /* find all unencodable characters */
7970 while (collendpos < size) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007971 PyObject *rep;
Christian Heimes90aa7642007-12-19 02:45:37 +00007972 if (Py_TYPE(mapping) == &EncodingMapType) {
Martin v. Löwis23e275b2011-11-02 18:02:51 +01007973 ch = PyUnicode_READ_CHAR(unicode, collendpos);
Brian Curtin2787ea42011-11-02 15:09:37 -05007974 val = encoding_map_lookup(ch, mapping);
7975 if (val != -1)
Benjamin Peterson29060642009-01-31 22:14:21 +00007976 break;
7977 ++collendpos;
7978 continue;
7979 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00007980
Martin v. Löwis23e275b2011-11-02 18:02:51 +01007981 ch = PyUnicode_READ_CHAR(unicode, collendpos);
7982 rep = charmapencode_lookup(ch, mapping);
Benjamin Peterson29060642009-01-31 22:14:21 +00007983 if (rep==NULL)
7984 return -1;
7985 else if (rep!=Py_None) {
7986 Py_DECREF(rep);
7987 break;
7988 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00007989 Py_DECREF(rep);
Benjamin Peterson29060642009-01-31 22:14:21 +00007990 ++collendpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007991 }
7992 /* cache callback name lookup
7993 * (if not done yet, i.e. it's the first error) */
7994 if (*known_errorHandler==-1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007995 if ((errors==NULL) || (!strcmp(errors, "strict")))
7996 *known_errorHandler = 1;
7997 else if (!strcmp(errors, "replace"))
7998 *known_errorHandler = 2;
7999 else if (!strcmp(errors, "ignore"))
8000 *known_errorHandler = 3;
8001 else if (!strcmp(errors, "xmlcharrefreplace"))
8002 *known_errorHandler = 4;
8003 else
8004 *known_errorHandler = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008005 }
8006 switch (*known_errorHandler) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00008007 case 1: /* strict */
Martin v. Löwis12be46c2011-11-04 19:04:15 +01008008 raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason);
Benjamin Peterson14339b62009-01-31 16:36:08 +00008009 return -1;
8010 case 2: /* replace */
8011 for (collpos = collstartpos; collpos<collendpos; ++collpos) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008012 x = charmapencode_output('?', mapping, res, respos);
8013 if (x==enc_EXCEPTION) {
8014 return -1;
8015 }
8016 else if (x==enc_FAILED) {
Martin v. Löwis12be46c2011-11-04 19:04:15 +01008017 raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00008018 return -1;
8019 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008020 }
8021 /* fall through */
8022 case 3: /* ignore */
8023 *inpos = collendpos;
8024 break;
8025 case 4: /* xmlcharrefreplace */
8026 /* generate replacement (temporarily (mis)uses p) */
8027 for (collpos = collstartpos; collpos < collendpos; ++collpos) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008028 char buffer[2+29+1+1];
8029 char *cp;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008030 sprintf(buffer, "&#%d;", (int)PyUnicode_READ_CHAR(unicode, collpos));
Benjamin Peterson29060642009-01-31 22:14:21 +00008031 for (cp = buffer; *cp; ++cp) {
8032 x = charmapencode_output(*cp, mapping, res, respos);
8033 if (x==enc_EXCEPTION)
8034 return -1;
8035 else if (x==enc_FAILED) {
Martin v. Löwis12be46c2011-11-04 19:04:15 +01008036 raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00008037 return -1;
8038 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008039 }
8040 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008041 *inpos = collendpos;
8042 break;
8043 default:
8044 repunicode = unicode_encode_call_errorhandler(errors, errorHandler,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008045 encoding, reason, unicode, exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00008046 collstartpos, collendpos, &newpos);
Benjamin Peterson14339b62009-01-31 16:36:08 +00008047 if (repunicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008048 return -1;
Martin v. Löwis011e8422009-05-05 04:43:17 +00008049 if (PyBytes_Check(repunicode)) {
8050 /* Directly copy bytes result to output. */
8051 Py_ssize_t outsize = PyBytes_Size(*res);
8052 Py_ssize_t requiredsize;
8053 repsize = PyBytes_Size(repunicode);
8054 requiredsize = *respos + repsize;
8055 if (requiredsize > outsize)
8056 /* Make room for all additional bytes. */
8057 if (charmapencode_resize(res, respos, requiredsize)) {
8058 Py_DECREF(repunicode);
8059 return -1;
8060 }
8061 memcpy(PyBytes_AsString(*res) + *respos,
8062 PyBytes_AsString(repunicode), repsize);
8063 *respos += repsize;
8064 *inpos = newpos;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00008065 Py_DECREF(repunicode);
Martin v. Löwis011e8422009-05-05 04:43:17 +00008066 break;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00008067 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008068 /* generate replacement */
Benjamin Petersonbac79492012-01-14 13:34:47 -05008069 if (PyUnicode_READY(repunicode) == -1) {
Victor Stinnerae4f7c82011-11-20 18:28:55 +01008070 Py_DECREF(repunicode);
8071 return -1;
8072 }
Victor Stinner9e30aa52011-11-21 02:49:52 +01008073 repsize = PyUnicode_GET_LENGTH(repunicode);
Victor Stinnerae4f7c82011-11-20 18:28:55 +01008074 data = PyUnicode_DATA(repunicode);
8075 kind = PyUnicode_KIND(repunicode);
8076 for (index = 0; index < repsize; index++) {
8077 Py_UCS4 repch = PyUnicode_READ(kind, data, index);
8078 x = charmapencode_output(repch, mapping, res, respos);
Benjamin Peterson29060642009-01-31 22:14:21 +00008079 if (x==enc_EXCEPTION) {
Victor Stinnerae4f7c82011-11-20 18:28:55 +01008080 Py_DECREF(repunicode);
Benjamin Peterson29060642009-01-31 22:14:21 +00008081 return -1;
8082 }
8083 else if (x==enc_FAILED) {
8084 Py_DECREF(repunicode);
Martin v. Löwis12be46c2011-11-04 19:04:15 +01008085 raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00008086 return -1;
8087 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008088 }
8089 *inpos = newpos;
8090 Py_DECREF(repunicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008091 }
8092 return 0;
8093}
8094
Alexander Belopolsky40018472011-02-26 01:02:56 +00008095PyObject *
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008096_PyUnicode_EncodeCharmap(PyObject *unicode,
8097 PyObject *mapping,
8098 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008099{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008100 /* output object */
8101 PyObject *res = NULL;
8102 /* current input position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00008103 Py_ssize_t inpos = 0;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008104 Py_ssize_t size;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008105 /* current output position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00008106 Py_ssize_t respos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008107 PyObject *errorHandler = NULL;
8108 PyObject *exc = NULL;
8109 /* the following variable is used for caching string comparisons
8110 * -1=not initialized, 0=unknown, 1=strict, 2=replace,
8111 * 3=ignore, 4=xmlcharrefreplace */
8112 int known_errorHandler = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008113
Benjamin Petersonbac79492012-01-14 13:34:47 -05008114 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008115 return NULL;
8116 size = PyUnicode_GET_LENGTH(unicode);
8117
Guido van Rossumd57fd912000-03-10 22:53:23 +00008118 /* Default to Latin-1 */
8119 if (mapping == NULL)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008120 return unicode_encode_ucs1(unicode, errors, 256);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008121
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008122 /* allocate enough for a simple encoding without
8123 replacements, if we need more, we'll resize */
Christian Heimes72b710a2008-05-26 13:28:38 +00008124 res = PyBytes_FromStringAndSize(NULL, size);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008125 if (res == NULL)
8126 goto onError;
Marc-André Lemburgb7520772000-08-14 11:29:19 +00008127 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008128 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008129
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008130 while (inpos<size) {
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008131 Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, inpos);
Benjamin Peterson29060642009-01-31 22:14:21 +00008132 /* try to encode it */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008133 charmapencode_result x = charmapencode_output(ch, mapping, &res, &respos);
Benjamin Peterson29060642009-01-31 22:14:21 +00008134 if (x==enc_EXCEPTION) /* error */
8135 goto onError;
8136 if (x==enc_FAILED) { /* unencodable character */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008137 if (charmap_encoding_error(unicode, &inpos, mapping,
Benjamin Peterson29060642009-01-31 22:14:21 +00008138 &exc,
8139 &known_errorHandler, &errorHandler, errors,
8140 &res, &respos)) {
8141 goto onError;
8142 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008143 }
Benjamin Peterson29060642009-01-31 22:14:21 +00008144 else
8145 /* done with this character => adjust input position */
8146 ++inpos;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008147 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008148
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008149 /* Resize if we allocated to much */
Christian Heimes72b710a2008-05-26 13:28:38 +00008150 if (respos<PyBytes_GET_SIZE(res))
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00008151 if (_PyBytes_Resize(&res, respos) < 0)
8152 goto onError;
Guido van Rossum98297ee2007-11-06 21:34:58 +00008153
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008154 Py_XDECREF(exc);
8155 Py_XDECREF(errorHandler);
8156 return res;
8157
Benjamin Peterson29060642009-01-31 22:14:21 +00008158 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008159 Py_XDECREF(res);
8160 Py_XDECREF(exc);
8161 Py_XDECREF(errorHandler);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008162 return NULL;
8163}
8164
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008165/* Deprecated */
8166PyObject *
8167PyUnicode_EncodeCharmap(const Py_UNICODE *p,
8168 Py_ssize_t size,
8169 PyObject *mapping,
8170 const char *errors)
8171{
8172 PyObject *result;
8173 PyObject *unicode = PyUnicode_FromUnicode(p, size);
8174 if (unicode == NULL)
8175 return NULL;
8176 result = _PyUnicode_EncodeCharmap(unicode, mapping, errors);
8177 Py_DECREF(unicode);
Victor Stinnerfc026c92011-11-04 00:24:51 +01008178 return result;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008179}
8180
Alexander Belopolsky40018472011-02-26 01:02:56 +00008181PyObject *
8182PyUnicode_AsCharmapString(PyObject *unicode,
8183 PyObject *mapping)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008184{
8185 if (!PyUnicode_Check(unicode) || mapping == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008186 PyErr_BadArgument();
8187 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008188 }
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008189 return _PyUnicode_EncodeCharmap(unicode, mapping, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008190}
8191
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008192/* create or adjust a UnicodeTranslateError */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008193static void
8194make_translate_exception(PyObject **exceptionObject,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008195 PyObject *unicode,
Alexander Belopolsky40018472011-02-26 01:02:56 +00008196 Py_ssize_t startpos, Py_ssize_t endpos,
8197 const char *reason)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008198{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008199 if (*exceptionObject == NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008200 *exceptionObject = _PyUnicodeTranslateError_Create(
8201 unicode, startpos, endpos, reason);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008202 }
8203 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00008204 if (PyUnicodeTranslateError_SetStart(*exceptionObject, startpos))
8205 goto onError;
8206 if (PyUnicodeTranslateError_SetEnd(*exceptionObject, endpos))
8207 goto onError;
8208 if (PyUnicodeTranslateError_SetReason(*exceptionObject, reason))
8209 goto onError;
8210 return;
8211 onError:
8212 Py_DECREF(*exceptionObject);
8213 *exceptionObject = NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008214 }
8215}
8216
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008217/* raises a UnicodeTranslateError */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008218static void
8219raise_translate_exception(PyObject **exceptionObject,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008220 PyObject *unicode,
Alexander Belopolsky40018472011-02-26 01:02:56 +00008221 Py_ssize_t startpos, Py_ssize_t endpos,
8222 const char *reason)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008223{
8224 make_translate_exception(exceptionObject,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008225 unicode, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008226 if (*exceptionObject != NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008227 PyCodec_StrictErrors(*exceptionObject);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008228}
8229
8230/* error handling callback helper:
8231 build arguments, call the callback and check the arguments,
8232 put the result into newpos and return the replacement string, which
8233 has to be freed by the caller */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008234static PyObject *
8235unicode_translate_call_errorhandler(const char *errors,
8236 PyObject **errorHandler,
8237 const char *reason,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008238 PyObject *unicode, PyObject **exceptionObject,
Alexander Belopolsky40018472011-02-26 01:02:56 +00008239 Py_ssize_t startpos, Py_ssize_t endpos,
8240 Py_ssize_t *newpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008241{
Benjamin Peterson142957c2008-07-04 19:55:29 +00008242 static char *argparse = "O!n;translating error handler must return (str, int) tuple";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008243
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008244 Py_ssize_t i_newpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008245 PyObject *restuple;
8246 PyObject *resunicode;
8247
8248 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008249 *errorHandler = PyCodec_LookupError(errors);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008250 if (*errorHandler == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008251 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008252 }
8253
8254 make_translate_exception(exceptionObject,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008255 unicode, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008256 if (*exceptionObject == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008257 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008258
8259 restuple = PyObject_CallFunctionObjArgs(
Benjamin Peterson29060642009-01-31 22:14:21 +00008260 *errorHandler, *exceptionObject, NULL);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008261 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008262 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008263 if (!PyTuple_Check(restuple)) {
Benjamin Petersond75fcb42009-02-19 04:22:03 +00008264 PyErr_SetString(PyExc_TypeError, &argparse[4]);
Benjamin Peterson29060642009-01-31 22:14:21 +00008265 Py_DECREF(restuple);
8266 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008267 }
8268 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type,
Benjamin Peterson29060642009-01-31 22:14:21 +00008269 &resunicode, &i_newpos)) {
8270 Py_DECREF(restuple);
8271 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008272 }
Martin v. Löwis18e16552006-02-15 17:27:45 +00008273 if (i_newpos<0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008274 *newpos = PyUnicode_GET_LENGTH(unicode)+i_newpos;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008275 else
8276 *newpos = i_newpos;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008277 if (*newpos<0 || *newpos>PyUnicode_GET_LENGTH(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008278 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos);
8279 Py_DECREF(restuple);
8280 return NULL;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00008281 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008282 Py_INCREF(resunicode);
8283 Py_DECREF(restuple);
8284 return resunicode;
8285}
8286
8287/* Lookup the character ch in the mapping and put the result in result,
8288 which must be decrefed by the caller.
8289 Return 0 on success, -1 on error */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008290static int
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008291charmaptranslate_lookup(Py_UCS4 c, PyObject *mapping, PyObject **result)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008292{
Christian Heimes217cfd12007-12-02 14:31:20 +00008293 PyObject *w = PyLong_FromLong((long)c);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008294 PyObject *x;
8295
8296 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008297 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008298 x = PyObject_GetItem(mapping, w);
8299 Py_DECREF(w);
8300 if (x == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008301 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
8302 /* No mapping found means: use 1:1 mapping. */
8303 PyErr_Clear();
8304 *result = NULL;
8305 return 0;
8306 } else
8307 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008308 }
8309 else if (x == Py_None) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008310 *result = x;
8311 return 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008312 }
Christian Heimes217cfd12007-12-02 14:31:20 +00008313 else if (PyLong_Check(x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008314 long value = PyLong_AS_LONG(x);
8315 long max = PyUnicode_GetMax();
8316 if (value < 0 || value > max) {
8317 PyErr_Format(PyExc_TypeError,
Guido van Rossum5a2f7e602007-10-24 21:13:09 +00008318 "character mapping must be in range(0x%x)", max+1);
Benjamin Peterson29060642009-01-31 22:14:21 +00008319 Py_DECREF(x);
8320 return -1;
8321 }
8322 *result = x;
8323 return 0;
8324 }
8325 else if (PyUnicode_Check(x)) {
8326 *result = x;
8327 return 0;
8328 }
8329 else {
8330 /* wrong return value */
8331 PyErr_SetString(PyExc_TypeError,
8332 "character mapping must return integer, None or str");
Benjamin Peterson14339b62009-01-31 16:36:08 +00008333 Py_DECREF(x);
8334 return -1;
8335 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008336}
8337/* ensure that *outobj is at least requiredsize characters long,
Benjamin Peterson29060642009-01-31 22:14:21 +00008338 if not reallocate and adjust various state variables.
8339 Return 0 on success, -1 on error */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008340static int
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008341charmaptranslate_makespace(Py_UCS4 **outobj, Py_ssize_t *psize,
Benjamin Peterson29060642009-01-31 22:14:21 +00008342 Py_ssize_t requiredsize)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008343{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008344 Py_ssize_t oldsize = *psize;
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +00008345 Py_UCS4 *new_outobj;
Walter Dörwald4894c302003-10-24 14:25:28 +00008346 if (requiredsize > oldsize) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008347 /* exponentially overallocate to minimize reallocations */
8348 if (requiredsize < 2 * oldsize)
8349 requiredsize = 2 * oldsize;
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +00008350 new_outobj = PyMem_Realloc(*outobj, requiredsize * sizeof(Py_UCS4));
8351 if (new_outobj == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008352 return -1;
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +00008353 *outobj = new_outobj;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008354 *psize = requiredsize;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008355 }
8356 return 0;
8357}
8358/* lookup the character, put the result in the output string and adjust
8359 various state variables. Return a new reference to the object that
8360 was put in the output buffer in *result, or Py_None, if the mapping was
8361 undefined (in which case no character was written).
8362 The called must decref result.
8363 Return 0 on success, -1 on error. */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008364static int
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008365charmaptranslate_output(PyObject *input, Py_ssize_t ipos,
8366 PyObject *mapping, Py_UCS4 **output,
8367 Py_ssize_t *osize, Py_ssize_t *opos,
Alexander Belopolsky40018472011-02-26 01:02:56 +00008368 PyObject **res)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008369{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008370 Py_UCS4 curinp = PyUnicode_READ_CHAR(input, ipos);
8371 if (charmaptranslate_lookup(curinp, mapping, res))
Benjamin Peterson29060642009-01-31 22:14:21 +00008372 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008373 if (*res==NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008374 /* not found => default to 1:1 mapping */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008375 (*output)[(*opos)++] = curinp;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008376 }
8377 else if (*res==Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00008378 ;
Christian Heimes217cfd12007-12-02 14:31:20 +00008379 else if (PyLong_Check(*res)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008380 /* no overflow check, because we know that the space is enough */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008381 (*output)[(*opos)++] = (Py_UCS4)PyLong_AS_LONG(*res);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008382 }
8383 else if (PyUnicode_Check(*res)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008384 Py_ssize_t repsize;
8385 if (PyUnicode_READY(*res) == -1)
8386 return -1;
8387 repsize = PyUnicode_GET_LENGTH(*res);
Benjamin Peterson29060642009-01-31 22:14:21 +00008388 if (repsize==1) {
8389 /* no overflow check, because we know that the space is enough */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008390 (*output)[(*opos)++] = PyUnicode_READ_CHAR(*res, 0);
Benjamin Peterson29060642009-01-31 22:14:21 +00008391 }
8392 else if (repsize!=0) {
8393 /* more than one character */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008394 Py_ssize_t requiredsize = *opos +
8395 (PyUnicode_GET_LENGTH(input) - ipos) +
Benjamin Peterson29060642009-01-31 22:14:21 +00008396 repsize - 1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008397 Py_ssize_t i;
8398 if (charmaptranslate_makespace(output, osize, requiredsize))
Benjamin Peterson29060642009-01-31 22:14:21 +00008399 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008400 for(i = 0; i < repsize; i++)
8401 (*output)[(*opos)++] = PyUnicode_READ_CHAR(*res, i);
Benjamin Peterson29060642009-01-31 22:14:21 +00008402 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008403 }
8404 else
Benjamin Peterson29060642009-01-31 22:14:21 +00008405 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008406 return 0;
8407}
8408
Alexander Belopolsky40018472011-02-26 01:02:56 +00008409PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008410_PyUnicode_TranslateCharmap(PyObject *input,
8411 PyObject *mapping,
8412 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008413{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008414 /* input object */
8415 char *idata;
8416 Py_ssize_t size, i;
8417 int kind;
8418 /* output buffer */
8419 Py_UCS4 *output = NULL;
8420 Py_ssize_t osize;
8421 PyObject *res;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008422 /* current output position */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008423 Py_ssize_t opos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008424 char *reason = "character maps to <undefined>";
8425 PyObject *errorHandler = NULL;
8426 PyObject *exc = NULL;
8427 /* the following variable is used for caching string comparisons
8428 * -1=not initialized, 0=unknown, 1=strict, 2=replace,
8429 * 3=ignore, 4=xmlcharrefreplace */
8430 int known_errorHandler = -1;
8431
Guido van Rossumd57fd912000-03-10 22:53:23 +00008432 if (mapping == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008433 PyErr_BadArgument();
8434 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008435 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008436
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008437 if (PyUnicode_READY(input) == -1)
8438 return NULL;
8439 idata = (char*)PyUnicode_DATA(input);
8440 kind = PyUnicode_KIND(input);
8441 size = PyUnicode_GET_LENGTH(input);
8442 i = 0;
8443
8444 if (size == 0) {
8445 Py_INCREF(input);
8446 return input;
8447 }
8448
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008449 /* allocate enough for a simple 1:1 translation without
8450 replacements, if we need more, we'll resize */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008451 osize = size;
8452 output = PyMem_Malloc(osize * sizeof(Py_UCS4));
8453 opos = 0;
8454 if (output == NULL) {
8455 PyErr_NoMemory();
Benjamin Peterson29060642009-01-31 22:14:21 +00008456 goto onError;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008457 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008458
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008459 while (i<size) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008460 /* try to encode it */
8461 PyObject *x = NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008462 if (charmaptranslate_output(input, i, mapping,
8463 &output, &osize, &opos, &x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008464 Py_XDECREF(x);
8465 goto onError;
8466 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008467 Py_XDECREF(x);
Benjamin Peterson29060642009-01-31 22:14:21 +00008468 if (x!=Py_None) /* it worked => adjust input pointer */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008469 ++i;
Benjamin Peterson29060642009-01-31 22:14:21 +00008470 else { /* untranslatable character */
8471 PyObject *repunicode = NULL; /* initialize to prevent gcc warning */
8472 Py_ssize_t repsize;
8473 Py_ssize_t newpos;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008474 Py_ssize_t uni2;
Benjamin Peterson29060642009-01-31 22:14:21 +00008475 /* startpos for collecting untranslatable chars */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008476 Py_ssize_t collstart = i;
8477 Py_ssize_t collend = i+1;
8478 Py_ssize_t coll;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008479
Benjamin Peterson29060642009-01-31 22:14:21 +00008480 /* find all untranslatable characters */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008481 while (collend < size) {
8482 if (charmaptranslate_lookup(PyUnicode_READ(kind,idata, collend), mapping, &x))
Benjamin Peterson29060642009-01-31 22:14:21 +00008483 goto onError;
8484 Py_XDECREF(x);
8485 if (x!=Py_None)
8486 break;
8487 ++collend;
8488 }
8489 /* cache callback name lookup
8490 * (if not done yet, i.e. it's the first error) */
8491 if (known_errorHandler==-1) {
8492 if ((errors==NULL) || (!strcmp(errors, "strict")))
8493 known_errorHandler = 1;
8494 else if (!strcmp(errors, "replace"))
8495 known_errorHandler = 2;
8496 else if (!strcmp(errors, "ignore"))
8497 known_errorHandler = 3;
8498 else if (!strcmp(errors, "xmlcharrefreplace"))
8499 known_errorHandler = 4;
8500 else
8501 known_errorHandler = 0;
8502 }
8503 switch (known_errorHandler) {
8504 case 1: /* strict */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008505 raise_translate_exception(&exc, input, collstart,
8506 collend, reason);
Benjamin Peterson14339b62009-01-31 16:36:08 +00008507 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00008508 case 2: /* replace */
8509 /* No need to check for space, this is a 1:1 replacement */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008510 for (coll = collstart; coll<collend; coll++)
8511 output[opos++] = '?';
Benjamin Peterson29060642009-01-31 22:14:21 +00008512 /* fall through */
8513 case 3: /* ignore */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008514 i = collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00008515 break;
8516 case 4: /* xmlcharrefreplace */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008517 /* generate replacement (temporarily (mis)uses i) */
8518 for (i = collstart; i < collend; ++i) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008519 char buffer[2+29+1+1];
8520 char *cp;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008521 sprintf(buffer, "&#%d;", PyUnicode_READ(kind, idata, i));
8522 if (charmaptranslate_makespace(&output, &osize,
8523 opos+strlen(buffer)+(size-collend)))
Benjamin Peterson29060642009-01-31 22:14:21 +00008524 goto onError;
8525 for (cp = buffer; *cp; ++cp)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008526 output[opos++] = *cp;
Benjamin Peterson29060642009-01-31 22:14:21 +00008527 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008528 i = collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00008529 break;
8530 default:
8531 repunicode = unicode_translate_call_errorhandler(errors, &errorHandler,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008532 reason, input, &exc,
8533 collstart, collend, &newpos);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01008534 if (repunicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008535 goto onError;
Benjamin Peterson9ca3ffa2012-01-01 16:04:29 -06008536 if (PyUnicode_READY(repunicode) == -1) {
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01008537 Py_DECREF(repunicode);
8538 goto onError;
8539 }
Benjamin Peterson29060642009-01-31 22:14:21 +00008540 /* generate replacement */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008541 repsize = PyUnicode_GET_LENGTH(repunicode);
8542 if (charmaptranslate_makespace(&output, &osize,
8543 opos+repsize+(size-collend))) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008544 Py_DECREF(repunicode);
8545 goto onError;
8546 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008547 for (uni2 = 0; repsize-->0; ++uni2)
8548 output[opos++] = PyUnicode_READ_CHAR(repunicode, uni2);
8549 i = newpos;
Benjamin Peterson29060642009-01-31 22:14:21 +00008550 Py_DECREF(repunicode);
Benjamin Peterson14339b62009-01-31 16:36:08 +00008551 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008552 }
8553 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008554 res = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, output, opos);
8555 if (!res)
8556 goto onError;
8557 PyMem_Free(output);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008558 Py_XDECREF(exc);
8559 Py_XDECREF(errorHandler);
8560 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008561
Benjamin Peterson29060642009-01-31 22:14:21 +00008562 onError:
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008563 PyMem_Free(output);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008564 Py_XDECREF(exc);
8565 Py_XDECREF(errorHandler);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008566 return NULL;
8567}
8568
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008569/* Deprecated. Use PyUnicode_Translate instead. */
8570PyObject *
8571PyUnicode_TranslateCharmap(const Py_UNICODE *p,
8572 Py_ssize_t size,
8573 PyObject *mapping,
8574 const char *errors)
8575{
Christian Heimes5f520f42012-09-11 14:03:25 +02008576 PyObject *result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008577 PyObject *unicode = PyUnicode_FromUnicode(p, size);
8578 if (!unicode)
8579 return NULL;
Christian Heimes5f520f42012-09-11 14:03:25 +02008580 result = _PyUnicode_TranslateCharmap(unicode, mapping, errors);
8581 Py_DECREF(unicode);
8582 return result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008583}
8584
Alexander Belopolsky40018472011-02-26 01:02:56 +00008585PyObject *
8586PyUnicode_Translate(PyObject *str,
8587 PyObject *mapping,
8588 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008589{
8590 PyObject *result;
Tim Petersced69f82003-09-16 20:30:58 +00008591
Guido van Rossumd57fd912000-03-10 22:53:23 +00008592 str = PyUnicode_FromObject(str);
8593 if (str == NULL)
Christian Heimes5f520f42012-09-11 14:03:25 +02008594 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008595 result = _PyUnicode_TranslateCharmap(str, mapping, errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008596 Py_DECREF(str);
8597 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008598}
Tim Petersced69f82003-09-16 20:30:58 +00008599
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008600static Py_UCS4
Victor Stinner9310abb2011-10-05 00:59:23 +02008601fix_decimal_and_space_to_ascii(PyObject *self)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008602{
8603 /* No need to call PyUnicode_READY(self) because this function is only
8604 called as a callback from fixup() which does it already. */
8605 const Py_ssize_t len = PyUnicode_GET_LENGTH(self);
8606 const int kind = PyUnicode_KIND(self);
8607 void *data = PyUnicode_DATA(self);
Victor Stinnere6abb482012-05-02 01:15:40 +02008608 Py_UCS4 maxchar = 127, ch, fixed;
Benjamin Peterson821e4cf2012-01-12 15:40:18 -05008609 int modified = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008610 Py_ssize_t i;
8611
8612 for (i = 0; i < len; ++i) {
8613 ch = PyUnicode_READ(kind, data, i);
8614 fixed = 0;
8615 if (ch > 127) {
8616 if (Py_UNICODE_ISSPACE(ch))
8617 fixed = ' ';
8618 else {
8619 const int decimal = Py_UNICODE_TODECIMAL(ch);
8620 if (decimal >= 0)
8621 fixed = '0' + decimal;
8622 }
8623 if (fixed != 0) {
Benjamin Peterson821e4cf2012-01-12 15:40:18 -05008624 modified = 1;
Victor Stinnere6abb482012-05-02 01:15:40 +02008625 maxchar = MAX_MAXCHAR(maxchar, fixed);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008626 PyUnicode_WRITE(kind, data, i, fixed);
8627 }
Victor Stinnere6abb482012-05-02 01:15:40 +02008628 else
8629 maxchar = MAX_MAXCHAR(maxchar, ch);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008630 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008631 }
8632
Benjamin Peterson821e4cf2012-01-12 15:40:18 -05008633 return (modified) ? maxchar : 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008634}
8635
8636PyObject *
8637_PyUnicode_TransformDecimalAndSpaceToASCII(PyObject *unicode)
8638{
8639 if (!PyUnicode_Check(unicode)) {
8640 PyErr_BadInternalCall();
8641 return NULL;
8642 }
8643 if (PyUnicode_READY(unicode) == -1)
8644 return NULL;
8645 if (PyUnicode_MAX_CHAR_VALUE(unicode) <= 127) {
8646 /* If the string is already ASCII, just return the same string */
8647 Py_INCREF(unicode);
8648 return unicode;
8649 }
Victor Stinner9310abb2011-10-05 00:59:23 +02008650 return fixup(unicode, fix_decimal_and_space_to_ascii);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008651}
8652
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008653PyObject *
8654PyUnicode_TransformDecimalToASCII(Py_UNICODE *s,
8655 Py_ssize_t length)
8656{
Victor Stinnerf0124502011-11-21 23:12:56 +01008657 PyObject *decimal;
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008658 Py_ssize_t i;
Victor Stinnerf0124502011-11-21 23:12:56 +01008659 Py_UCS4 maxchar;
8660 enum PyUnicode_Kind kind;
8661 void *data;
8662
Victor Stinner99d7ad02012-02-22 13:37:39 +01008663 maxchar = 127;
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008664 for (i = 0; i < length; i++) {
Victor Stinnerf0124502011-11-21 23:12:56 +01008665 Py_UNICODE ch = s[i];
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008666 if (ch > 127) {
8667 int decimal = Py_UNICODE_TODECIMAL(ch);
8668 if (decimal >= 0)
Victor Stinnerf0124502011-11-21 23:12:56 +01008669 ch = '0' + decimal;
Victor Stinnere6abb482012-05-02 01:15:40 +02008670 maxchar = MAX_MAXCHAR(maxchar, ch);
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008671 }
8672 }
Victor Stinnerf0124502011-11-21 23:12:56 +01008673
8674 /* Copy to a new string */
8675 decimal = PyUnicode_New(length, maxchar);
8676 if (decimal == NULL)
8677 return decimal;
8678 kind = PyUnicode_KIND(decimal);
8679 data = PyUnicode_DATA(decimal);
8680 /* Iterate over code points */
8681 for (i = 0; i < length; i++) {
8682 Py_UNICODE ch = s[i];
8683 if (ch > 127) {
8684 int decimal = Py_UNICODE_TODECIMAL(ch);
8685 if (decimal >= 0)
8686 ch = '0' + decimal;
8687 }
8688 PyUnicode_WRITE(kind, data, i, ch);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008689 }
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01008690 return unicode_result(decimal);
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008691}
Guido van Rossum9e896b32000-04-05 20:11:21 +00008692/* --- Decimal Encoder ---------------------------------------------------- */
8693
Alexander Belopolsky40018472011-02-26 01:02:56 +00008694int
8695PyUnicode_EncodeDecimal(Py_UNICODE *s,
8696 Py_ssize_t length,
8697 char *output,
8698 const char *errors)
Guido van Rossum9e896b32000-04-05 20:11:21 +00008699{
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008700 PyObject *unicode;
Victor Stinner6345be92011-11-25 20:09:01 +01008701 Py_ssize_t i;
Victor Stinner42bf7752011-11-21 22:52:58 +01008702 enum PyUnicode_Kind kind;
8703 void *data;
Guido van Rossum9e896b32000-04-05 20:11:21 +00008704
8705 if (output == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008706 PyErr_BadArgument();
8707 return -1;
Guido van Rossum9e896b32000-04-05 20:11:21 +00008708 }
8709
Victor Stinner42bf7752011-11-21 22:52:58 +01008710 unicode = PyUnicode_FromUnicode(s, length);
8711 if (unicode == NULL)
8712 return -1;
8713
Benjamin Petersonbac79492012-01-14 13:34:47 -05008714 if (PyUnicode_READY(unicode) == -1) {
Victor Stinner6345be92011-11-25 20:09:01 +01008715 Py_DECREF(unicode);
8716 return -1;
8717 }
Victor Stinner42bf7752011-11-21 22:52:58 +01008718 kind = PyUnicode_KIND(unicode);
8719 data = PyUnicode_DATA(unicode);
8720
Victor Stinnerb84d7232011-11-22 01:50:07 +01008721 for (i=0; i < length; ) {
Victor Stinner6345be92011-11-25 20:09:01 +01008722 PyObject *exc;
8723 Py_UCS4 ch;
Benjamin Peterson29060642009-01-31 22:14:21 +00008724 int decimal;
Victor Stinner6345be92011-11-25 20:09:01 +01008725 Py_ssize_t startpos;
8726
8727 ch = PyUnicode_READ(kind, data, i);
Tim Petersced69f82003-09-16 20:30:58 +00008728
Benjamin Peterson29060642009-01-31 22:14:21 +00008729 if (Py_UNICODE_ISSPACE(ch)) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00008730 *output++ = ' ';
Victor Stinnerb84d7232011-11-22 01:50:07 +01008731 i++;
Benjamin Peterson29060642009-01-31 22:14:21 +00008732 continue;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008733 }
Benjamin Peterson29060642009-01-31 22:14:21 +00008734 decimal = Py_UNICODE_TODECIMAL(ch);
8735 if (decimal >= 0) {
8736 *output++ = '0' + decimal;
Victor Stinnerb84d7232011-11-22 01:50:07 +01008737 i++;
Benjamin Peterson29060642009-01-31 22:14:21 +00008738 continue;
8739 }
8740 if (0 < ch && ch < 256) {
8741 *output++ = (char)ch;
Victor Stinnerb84d7232011-11-22 01:50:07 +01008742 i++;
Benjamin Peterson29060642009-01-31 22:14:21 +00008743 continue;
8744 }
Victor Stinner6345be92011-11-25 20:09:01 +01008745
Victor Stinner42bf7752011-11-21 22:52:58 +01008746 startpos = i;
Victor Stinner6345be92011-11-25 20:09:01 +01008747 exc = NULL;
8748 raise_encode_exception(&exc, "decimal", unicode,
8749 startpos, startpos+1,
8750 "invalid decimal Unicode string");
8751 Py_XDECREF(exc);
8752 Py_DECREF(unicode);
8753 return -1;
Guido van Rossum9e896b32000-04-05 20:11:21 +00008754 }
8755 /* 0-terminate the output string */
8756 *output++ = '\0';
Victor Stinner42bf7752011-11-21 22:52:58 +01008757 Py_DECREF(unicode);
Guido van Rossum9e896b32000-04-05 20:11:21 +00008758 return 0;
Guido van Rossum9e896b32000-04-05 20:11:21 +00008759}
8760
Guido van Rossumd57fd912000-03-10 22:53:23 +00008761/* --- Helpers ------------------------------------------------------------ */
8762
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008763static Py_ssize_t
Victor Stinner794d5672011-10-10 03:21:36 +02008764any_find_slice(int direction, PyObject* s1, PyObject* s2,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008765 Py_ssize_t start,
8766 Py_ssize_t end)
8767{
8768 int kind1, kind2, kind;
8769 void *buf1, *buf2;
8770 Py_ssize_t len1, len2, result;
8771
8772 kind1 = PyUnicode_KIND(s1);
8773 kind2 = PyUnicode_KIND(s2);
8774 kind = kind1 > kind2 ? kind1 : kind2;
8775 buf1 = PyUnicode_DATA(s1);
8776 buf2 = PyUnicode_DATA(s2);
8777 if (kind1 != kind)
8778 buf1 = _PyUnicode_AsKind(s1, kind);
8779 if (!buf1)
8780 return -2;
8781 if (kind2 != kind)
8782 buf2 = _PyUnicode_AsKind(s2, kind);
8783 if (!buf2) {
8784 if (kind1 != kind) PyMem_Free(buf1);
8785 return -2;
8786 }
8787 len1 = PyUnicode_GET_LENGTH(s1);
8788 len2 = PyUnicode_GET_LENGTH(s2);
8789
Victor Stinner794d5672011-10-10 03:21:36 +02008790 if (direction > 0) {
Benjamin Petersonead6b532011-12-20 17:23:42 -06008791 switch (kind) {
Victor Stinner794d5672011-10-10 03:21:36 +02008792 case PyUnicode_1BYTE_KIND:
8793 if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2))
8794 result = asciilib_find_slice(buf1, len1, buf2, len2, start, end);
8795 else
8796 result = ucs1lib_find_slice(buf1, len1, buf2, len2, start, end);
8797 break;
8798 case PyUnicode_2BYTE_KIND:
8799 result = ucs2lib_find_slice(buf1, len1, buf2, len2, start, end);
8800 break;
8801 case PyUnicode_4BYTE_KIND:
8802 result = ucs4lib_find_slice(buf1, len1, buf2, len2, start, end);
8803 break;
8804 default:
8805 assert(0); result = -2;
8806 }
8807 }
8808 else {
Benjamin Petersonead6b532011-12-20 17:23:42 -06008809 switch (kind) {
Victor Stinner794d5672011-10-10 03:21:36 +02008810 case PyUnicode_1BYTE_KIND:
8811 if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2))
8812 result = asciilib_rfind_slice(buf1, len1, buf2, len2, start, end);
8813 else
8814 result = ucs1lib_rfind_slice(buf1, len1, buf2, len2, start, end);
8815 break;
8816 case PyUnicode_2BYTE_KIND:
8817 result = ucs2lib_rfind_slice(buf1, len1, buf2, len2, start, end);
8818 break;
8819 case PyUnicode_4BYTE_KIND:
8820 result = ucs4lib_rfind_slice(buf1, len1, buf2, len2, start, end);
8821 break;
8822 default:
8823 assert(0); result = -2;
8824 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008825 }
8826
8827 if (kind1 != kind)
8828 PyMem_Free(buf1);
8829 if (kind2 != kind)
8830 PyMem_Free(buf2);
8831
8832 return result;
8833}
8834
8835Py_ssize_t
Victor Stinner41a863c2012-02-24 00:37:51 +01008836_PyUnicode_InsertThousandsGrouping(
8837 PyObject *unicode, Py_ssize_t index,
8838 Py_ssize_t n_buffer,
8839 void *digits, Py_ssize_t n_digits,
8840 Py_ssize_t min_width,
8841 const char *grouping, PyObject *thousands_sep,
8842 Py_UCS4 *maxchar)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008843{
Victor Stinner41a863c2012-02-24 00:37:51 +01008844 unsigned int kind, thousands_sep_kind;
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008845 char *data, *thousands_sep_data;
Victor Stinner41a863c2012-02-24 00:37:51 +01008846 Py_ssize_t thousands_sep_len;
8847 Py_ssize_t len;
8848
8849 if (unicode != NULL) {
8850 kind = PyUnicode_KIND(unicode);
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008851 data = (char *) PyUnicode_DATA(unicode) + index * kind;
Victor Stinner41a863c2012-02-24 00:37:51 +01008852 }
8853 else {
8854 kind = PyUnicode_1BYTE_KIND;
8855 data = NULL;
8856 }
8857 thousands_sep_kind = PyUnicode_KIND(thousands_sep);
8858 thousands_sep_data = PyUnicode_DATA(thousands_sep);
8859 thousands_sep_len = PyUnicode_GET_LENGTH(thousands_sep);
8860 if (unicode != NULL && thousands_sep_kind != kind) {
Victor Stinner90f50d42012-02-24 01:44:47 +01008861 if (thousands_sep_kind < kind) {
8862 thousands_sep_data = _PyUnicode_AsKind(thousands_sep, kind);
8863 if (!thousands_sep_data)
8864 return -1;
8865 }
8866 else {
8867 data = _PyUnicode_AsKind(unicode, thousands_sep_kind);
8868 if (!data)
8869 return -1;
8870 }
Victor Stinner41a863c2012-02-24 00:37:51 +01008871 }
8872
Benjamin Petersonead6b532011-12-20 17:23:42 -06008873 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008874 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02008875 if (unicode != NULL && PyUnicode_IS_ASCII(unicode))
Victor Stinner41a863c2012-02-24 00:37:51 +01008876 len = asciilib_InsertThousandsGrouping(
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008877 (Py_UCS1 *) data, n_buffer, (Py_UCS1 *) digits, n_digits,
Victor Stinner41a863c2012-02-24 00:37:51 +01008878 min_width, grouping,
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008879 (Py_UCS1 *) thousands_sep_data, thousands_sep_len);
Victor Stinnerc3cec782011-10-05 21:24:08 +02008880 else
Victor Stinner41a863c2012-02-24 00:37:51 +01008881 len = ucs1lib_InsertThousandsGrouping(
Victor Stinnerc3cec782011-10-05 21:24:08 +02008882 (Py_UCS1*)data, n_buffer, (Py_UCS1*)digits, n_digits,
Victor Stinner41a863c2012-02-24 00:37:51 +01008883 min_width, grouping,
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008884 (Py_UCS1 *) thousands_sep_data, thousands_sep_len);
Victor Stinner41a863c2012-02-24 00:37:51 +01008885 break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008886 case PyUnicode_2BYTE_KIND:
Victor Stinner41a863c2012-02-24 00:37:51 +01008887 len = ucs2lib_InsertThousandsGrouping(
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008888 (Py_UCS2 *) data, n_buffer, (Py_UCS2 *) digits, n_digits,
Victor Stinner41a863c2012-02-24 00:37:51 +01008889 min_width, grouping,
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008890 (Py_UCS2 *) thousands_sep_data, thousands_sep_len);
Victor Stinner41a863c2012-02-24 00:37:51 +01008891 break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008892 case PyUnicode_4BYTE_KIND:
Victor Stinner41a863c2012-02-24 00:37:51 +01008893 len = ucs4lib_InsertThousandsGrouping(
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008894 (Py_UCS4 *) data, n_buffer, (Py_UCS4 *) digits, n_digits,
Victor Stinner41a863c2012-02-24 00:37:51 +01008895 min_width, grouping,
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008896 (Py_UCS4 *) thousands_sep_data, thousands_sep_len);
Victor Stinner41a863c2012-02-24 00:37:51 +01008897 break;
8898 default:
8899 assert(0);
8900 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008901 }
Victor Stinner90f50d42012-02-24 01:44:47 +01008902 if (unicode != NULL && thousands_sep_kind != kind) {
8903 if (thousands_sep_kind < kind)
8904 PyMem_Free(thousands_sep_data);
8905 else
8906 PyMem_Free(data);
8907 }
Victor Stinner41a863c2012-02-24 00:37:51 +01008908 if (unicode == NULL) {
8909 *maxchar = 127;
8910 if (len != n_digits) {
Victor Stinnere6abb482012-05-02 01:15:40 +02008911 *maxchar = MAX_MAXCHAR(*maxchar,
8912 PyUnicode_MAX_CHAR_VALUE(thousands_sep));
Victor Stinner41a863c2012-02-24 00:37:51 +01008913 }
8914 }
8915 return len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008916}
8917
8918
Thomas Wouters477c8d52006-05-27 19:21:47 +00008919/* helper macro to fixup start/end slice values */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00008920#define ADJUST_INDICES(start, end, len) \
8921 if (end > len) \
8922 end = len; \
8923 else if (end < 0) { \
8924 end += len; \
8925 if (end < 0) \
8926 end = 0; \
8927 } \
8928 if (start < 0) { \
8929 start += len; \
8930 if (start < 0) \
8931 start = 0; \
8932 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00008933
Alexander Belopolsky40018472011-02-26 01:02:56 +00008934Py_ssize_t
8935PyUnicode_Count(PyObject *str,
8936 PyObject *substr,
8937 Py_ssize_t start,
8938 Py_ssize_t end)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008939{
Martin v. Löwis18e16552006-02-15 17:27:45 +00008940 Py_ssize_t result;
Victor Stinner9db1a8b2011-10-23 20:04:37 +02008941 PyObject* str_obj;
8942 PyObject* sub_obj;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008943 int kind1, kind2, kind;
8944 void *buf1 = NULL, *buf2 = NULL;
8945 Py_ssize_t len1, len2;
Tim Petersced69f82003-09-16 20:30:58 +00008946
Victor Stinner9db1a8b2011-10-23 20:04:37 +02008947 str_obj = PyUnicode_FromObject(str);
Benjamin Peterson22a29702012-01-02 09:00:30 -06008948 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +00008949 return -1;
Victor Stinner9db1a8b2011-10-23 20:04:37 +02008950 sub_obj = PyUnicode_FromObject(substr);
Benjamin Peterson22a29702012-01-02 09:00:30 -06008951 if (!sub_obj) {
8952 Py_DECREF(str_obj);
8953 return -1;
8954 }
Benjamin Peterson4c13a4a2012-01-02 09:07:38 -06008955 if (PyUnicode_READY(sub_obj) == -1 || PyUnicode_READY(str_obj) == -1) {
Benjamin Peterson5e458f52012-01-02 10:12:13 -06008956 Py_DECREF(sub_obj);
Benjamin Peterson29060642009-01-31 22:14:21 +00008957 Py_DECREF(str_obj);
8958 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008959 }
Tim Petersced69f82003-09-16 20:30:58 +00008960
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008961 kind1 = PyUnicode_KIND(str_obj);
8962 kind2 = PyUnicode_KIND(sub_obj);
Antoine Pitroue45c0c52012-05-12 15:49:07 +02008963 kind = kind1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008964 buf1 = PyUnicode_DATA(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008965 buf2 = PyUnicode_DATA(sub_obj);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -05008966 if (kind2 != kind) {
Antoine Pitrou758153b2012-05-12 15:51:51 +02008967 if (kind2 > kind) {
8968 Py_DECREF(sub_obj);
8969 Py_DECREF(str_obj);
Antoine Pitroue45c0c52012-05-12 15:49:07 +02008970 return 0;
Antoine Pitrou758153b2012-05-12 15:51:51 +02008971 }
Victor Stinner7931d9a2011-11-04 00:22:48 +01008972 buf2 = _PyUnicode_AsKind(sub_obj, kind);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -05008973 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008974 if (!buf2)
8975 goto onError;
8976 len1 = PyUnicode_GET_LENGTH(str_obj);
8977 len2 = PyUnicode_GET_LENGTH(sub_obj);
8978
8979 ADJUST_INDICES(start, end, len1);
Benjamin Petersonead6b532011-12-20 17:23:42 -06008980 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008981 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02008982 if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sub_obj))
8983 result = asciilib_count(
8984 ((Py_UCS1*)buf1) + start, end - start,
8985 buf2, len2, PY_SSIZE_T_MAX
8986 );
8987 else
8988 result = ucs1lib_count(
8989 ((Py_UCS1*)buf1) + start, end - start,
8990 buf2, len2, PY_SSIZE_T_MAX
8991 );
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008992 break;
8993 case PyUnicode_2BYTE_KIND:
8994 result = ucs2lib_count(
8995 ((Py_UCS2*)buf1) + start, end - start,
8996 buf2, len2, PY_SSIZE_T_MAX
8997 );
8998 break;
8999 case PyUnicode_4BYTE_KIND:
9000 result = ucs4lib_count(
9001 ((Py_UCS4*)buf1) + start, end - start,
9002 buf2, len2, PY_SSIZE_T_MAX
9003 );
9004 break;
9005 default:
9006 assert(0); result = 0;
9007 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00009008
9009 Py_DECREF(sub_obj);
9010 Py_DECREF(str_obj);
9011
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009012 if (kind2 != kind)
9013 PyMem_Free(buf2);
9014
Guido van Rossumd57fd912000-03-10 22:53:23 +00009015 return result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009016 onError:
9017 Py_DECREF(sub_obj);
9018 Py_DECREF(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009019 if (kind2 != kind && buf2)
9020 PyMem_Free(buf2);
9021 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009022}
9023
Alexander Belopolsky40018472011-02-26 01:02:56 +00009024Py_ssize_t
9025PyUnicode_Find(PyObject *str,
9026 PyObject *sub,
9027 Py_ssize_t start,
9028 Py_ssize_t end,
9029 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009030{
Martin v. Löwis18e16552006-02-15 17:27:45 +00009031 Py_ssize_t result;
Tim Petersced69f82003-09-16 20:30:58 +00009032
Guido van Rossumd57fd912000-03-10 22:53:23 +00009033 str = PyUnicode_FromObject(str);
Benjamin Peterson22a29702012-01-02 09:00:30 -06009034 if (!str)
Benjamin Peterson29060642009-01-31 22:14:21 +00009035 return -2;
Thomas Wouters477c8d52006-05-27 19:21:47 +00009036 sub = PyUnicode_FromObject(sub);
Benjamin Peterson22a29702012-01-02 09:00:30 -06009037 if (!sub) {
9038 Py_DECREF(str);
9039 return -2;
9040 }
9041 if (PyUnicode_READY(sub) == -1 || PyUnicode_READY(str) == -1) {
9042 Py_DECREF(sub);
Benjamin Peterson29060642009-01-31 22:14:21 +00009043 Py_DECREF(str);
9044 return -2;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009045 }
Tim Petersced69f82003-09-16 20:30:58 +00009046
Victor Stinner794d5672011-10-10 03:21:36 +02009047 result = any_find_slice(direction,
9048 str, sub, start, end
9049 );
Thomas Wouters477c8d52006-05-27 19:21:47 +00009050
Guido van Rossumd57fd912000-03-10 22:53:23 +00009051 Py_DECREF(str);
Thomas Wouters477c8d52006-05-27 19:21:47 +00009052 Py_DECREF(sub);
9053
Guido van Rossumd57fd912000-03-10 22:53:23 +00009054 return result;
9055}
9056
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009057Py_ssize_t
9058PyUnicode_FindChar(PyObject *str, Py_UCS4 ch,
9059 Py_ssize_t start, Py_ssize_t end,
9060 int direction)
9061{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009062 int kind;
Antoine Pitrouf0b934b2011-10-13 18:55:09 +02009063 Py_ssize_t result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009064 if (PyUnicode_READY(str) == -1)
9065 return -2;
Victor Stinner267aa242011-10-02 01:08:37 +02009066 if (start < 0 || end < 0) {
9067 PyErr_SetString(PyExc_IndexError, "string index out of range");
9068 return -2;
9069 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009070 if (end > PyUnicode_GET_LENGTH(str))
9071 end = PyUnicode_GET_LENGTH(str);
9072 kind = PyUnicode_KIND(str);
Antoine Pitrouf0b934b2011-10-13 18:55:09 +02009073 result = findchar(PyUnicode_1BYTE_DATA(str) + kind*start,
9074 kind, end-start, ch, direction);
9075 if (result == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009076 return -1;
Antoine Pitrouf0b934b2011-10-13 18:55:09 +02009077 else
9078 return start + result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009079}
9080
Alexander Belopolsky40018472011-02-26 01:02:56 +00009081static int
Victor Stinner9db1a8b2011-10-23 20:04:37 +02009082tailmatch(PyObject *self,
9083 PyObject *substring,
Alexander Belopolsky40018472011-02-26 01:02:56 +00009084 Py_ssize_t start,
9085 Py_ssize_t end,
9086 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009087{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009088 int kind_self;
9089 int kind_sub;
9090 void *data_self;
9091 void *data_sub;
9092 Py_ssize_t offset;
9093 Py_ssize_t i;
9094 Py_ssize_t end_sub;
9095
9096 if (PyUnicode_READY(self) == -1 ||
9097 PyUnicode_READY(substring) == -1)
9098 return 0;
9099
9100 if (PyUnicode_GET_LENGTH(substring) == 0)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009101 return 1;
9102
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009103 ADJUST_INDICES(start, end, PyUnicode_GET_LENGTH(self));
9104 end -= PyUnicode_GET_LENGTH(substring);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009105 if (end < start)
Benjamin Peterson29060642009-01-31 22:14:21 +00009106 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009107
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009108 kind_self = PyUnicode_KIND(self);
9109 data_self = PyUnicode_DATA(self);
9110 kind_sub = PyUnicode_KIND(substring);
9111 data_sub = PyUnicode_DATA(substring);
9112 end_sub = PyUnicode_GET_LENGTH(substring) - 1;
9113
9114 if (direction > 0)
9115 offset = end;
9116 else
9117 offset = start;
9118
9119 if (PyUnicode_READ(kind_self, data_self, offset) ==
9120 PyUnicode_READ(kind_sub, data_sub, 0) &&
9121 PyUnicode_READ(kind_self, data_self, offset + end_sub) ==
9122 PyUnicode_READ(kind_sub, data_sub, end_sub)) {
9123 /* If both are of the same kind, memcmp is sufficient */
9124 if (kind_self == kind_sub) {
9125 return ! memcmp((char *)data_self +
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009126 (offset * PyUnicode_KIND(substring)),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009127 data_sub,
9128 PyUnicode_GET_LENGTH(substring) *
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009129 PyUnicode_KIND(substring));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009130 }
9131 /* otherwise we have to compare each character by first accesing it */
9132 else {
9133 /* We do not need to compare 0 and len(substring)-1 because
9134 the if statement above ensured already that they are equal
9135 when we end up here. */
Antoine Pitrou057119b2012-09-02 17:56:33 +02009136 /* TODO: honor direction and do a forward or backwards search */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009137 for (i = 1; i < end_sub; ++i) {
9138 if (PyUnicode_READ(kind_self, data_self, offset + i) !=
9139 PyUnicode_READ(kind_sub, data_sub, i))
9140 return 0;
9141 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009142 return 1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009143 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00009144 }
9145
9146 return 0;
9147}
9148
Alexander Belopolsky40018472011-02-26 01:02:56 +00009149Py_ssize_t
9150PyUnicode_Tailmatch(PyObject *str,
9151 PyObject *substr,
9152 Py_ssize_t start,
9153 Py_ssize_t end,
9154 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009155{
Martin v. Löwis18e16552006-02-15 17:27:45 +00009156 Py_ssize_t result;
Tim Petersced69f82003-09-16 20:30:58 +00009157
Guido van Rossumd57fd912000-03-10 22:53:23 +00009158 str = PyUnicode_FromObject(str);
9159 if (str == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009160 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009161 substr = PyUnicode_FromObject(substr);
9162 if (substr == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009163 Py_DECREF(str);
9164 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009165 }
Tim Petersced69f82003-09-16 20:30:58 +00009166
Victor Stinner9db1a8b2011-10-23 20:04:37 +02009167 result = tailmatch(str, substr,
Benjamin Peterson29060642009-01-31 22:14:21 +00009168 start, end, direction);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009169 Py_DECREF(str);
9170 Py_DECREF(substr);
9171 return result;
9172}
9173
Guido van Rossumd57fd912000-03-10 22:53:23 +00009174/* Apply fixfct filter to the Unicode object self and return a
9175 reference to the modified object */
9176
Alexander Belopolsky40018472011-02-26 01:02:56 +00009177static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +02009178fixup(PyObject *self,
9179 Py_UCS4 (*fixfct)(PyObject *s))
Guido van Rossumd57fd912000-03-10 22:53:23 +00009180{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009181 PyObject *u;
9182 Py_UCS4 maxchar_old, maxchar_new = 0;
Victor Stinnereaab6042011-12-11 22:22:39 +01009183 PyObject *v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009184
Victor Stinnerbf6e5602011-12-12 01:53:47 +01009185 u = _PyUnicode_Copy(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009186 if (u == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009187 return NULL;
Victor Stinner87af4f22011-11-21 23:03:47 +01009188 maxchar_old = PyUnicode_MAX_CHAR_VALUE(u);
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00009189
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009190 /* fix functions return the new maximum character in a string,
9191 if the kind of the resulting unicode object does not change,
9192 everything is fine. Otherwise we need to change the string kind
9193 and re-run the fix function. */
Victor Stinner9310abb2011-10-05 00:59:23 +02009194 maxchar_new = fixfct(u);
Victor Stinnereaab6042011-12-11 22:22:39 +01009195
9196 if (maxchar_new == 0) {
9197 /* no changes */;
9198 if (PyUnicode_CheckExact(self)) {
9199 Py_DECREF(u);
9200 Py_INCREF(self);
9201 return self;
9202 }
9203 else
9204 return u;
9205 }
9206
Victor Stinnere6abb482012-05-02 01:15:40 +02009207 maxchar_new = align_maxchar(maxchar_new);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009208
Victor Stinnereaab6042011-12-11 22:22:39 +01009209 if (maxchar_new == maxchar_old)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009210 return u;
Victor Stinnereaab6042011-12-11 22:22:39 +01009211
9212 /* In case the maximum character changed, we need to
9213 convert the string to the new category. */
9214 v = PyUnicode_New(PyUnicode_GET_LENGTH(self), maxchar_new);
9215 if (v == NULL) {
9216 Py_DECREF(u);
9217 return NULL;
9218 }
9219 if (maxchar_new > maxchar_old) {
9220 /* If the maxchar increased so that the kind changed, not all
9221 characters are representable anymore and we need to fix the
9222 string again. This only happens in very few cases. */
Victor Stinnerd3f08822012-05-29 12:57:52 +02009223 _PyUnicode_FastCopyCharacters(v, 0,
9224 self, 0, PyUnicode_GET_LENGTH(self));
Victor Stinnereaab6042011-12-11 22:22:39 +01009225 maxchar_old = fixfct(v);
9226 assert(maxchar_old > 0 && maxchar_old <= maxchar_new);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009227 }
9228 else {
Victor Stinnerd3f08822012-05-29 12:57:52 +02009229 _PyUnicode_FastCopyCharacters(v, 0,
9230 u, 0, PyUnicode_GET_LENGTH(self));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009231 }
Victor Stinnereaab6042011-12-11 22:22:39 +01009232 Py_DECREF(u);
9233 assert(_PyUnicode_CheckConsistency(v, 1));
9234 return v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009235}
9236
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009237static PyObject *
9238ascii_upper_or_lower(PyObject *self, int lower)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009239{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009240 Py_ssize_t len = PyUnicode_GET_LENGTH(self);
9241 char *resdata, *data = PyUnicode_DATA(self);
9242 PyObject *res;
Tim Petersced69f82003-09-16 20:30:58 +00009243
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009244 res = PyUnicode_New(len, 127);
9245 if (res == NULL)
9246 return NULL;
9247 resdata = PyUnicode_DATA(res);
9248 if (lower)
9249 _Py_bytes_lower(resdata, data, len);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009250 else
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009251 _Py_bytes_upper(resdata, data, len);
9252 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009253}
9254
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009255static Py_UCS4
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009256handle_capital_sigma(int kind, void *data, Py_ssize_t length, Py_ssize_t i)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009257{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009258 Py_ssize_t j;
9259 int final_sigma;
9260 Py_UCS4 c;
9261 /* U+03A3 is in the Final_Sigma context when, it is found like this:
Tim Petersced69f82003-09-16 20:30:58 +00009262
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009263 \p{cased}\p{case-ignorable}*U+03A3!(\p{case-ignorable}*\p{cased})
9264
9265 where ! is a negation and \p{xxx} is a character with property xxx.
9266 */
9267 for (j = i - 1; j >= 0; j--) {
9268 c = PyUnicode_READ(kind, data, j);
9269 if (!_PyUnicode_IsCaseIgnorable(c))
9270 break;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009271 }
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009272 final_sigma = j >= 0 && _PyUnicode_IsCased(c);
9273 if (final_sigma) {
9274 for (j = i + 1; j < length; j++) {
9275 c = PyUnicode_READ(kind, data, j);
9276 if (!_PyUnicode_IsCaseIgnorable(c))
9277 break;
9278 }
9279 final_sigma = j == length || !_PyUnicode_IsCased(c);
9280 }
9281 return (final_sigma) ? 0x3C2 : 0x3C3;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009282}
9283
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009284static int
9285lower_ucs4(int kind, void *data, Py_ssize_t length, Py_ssize_t i,
9286 Py_UCS4 c, Py_UCS4 *mapped)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009287{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009288 /* Obscure special case. */
9289 if (c == 0x3A3) {
9290 mapped[0] = handle_capital_sigma(kind, data, length, i);
9291 return 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009292 }
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009293 return _PyUnicode_ToLowerFull(c, mapped);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009294}
9295
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009296static Py_ssize_t
9297do_capitalize(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009298{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009299 Py_ssize_t i, k = 0;
9300 int n_res, j;
9301 Py_UCS4 c, mapped[3];
Tim Petersced69f82003-09-16 20:30:58 +00009302
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009303 c = PyUnicode_READ(kind, data, 0);
9304 n_res = _PyUnicode_ToUpperFull(c, mapped);
9305 for (j = 0; j < n_res; j++) {
Victor Stinnere6abb482012-05-02 01:15:40 +02009306 *maxchar = MAX_MAXCHAR(*maxchar, mapped[j]);
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009307 res[k++] = mapped[j];
Guido van Rossumd57fd912000-03-10 22:53:23 +00009308 }
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009309 for (i = 1; i < length; i++) {
9310 c = PyUnicode_READ(kind, data, i);
9311 n_res = lower_ucs4(kind, data, length, i, c, mapped);
9312 for (j = 0; j < n_res; j++) {
Victor Stinnere6abb482012-05-02 01:15:40 +02009313 *maxchar = MAX_MAXCHAR(*maxchar, mapped[j]);
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009314 res[k++] = mapped[j];
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00009315 }
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00009316 }
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009317 return k;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009318}
9319
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009320static Py_ssize_t
9321do_swapcase(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar) {
9322 Py_ssize_t i, k = 0;
9323
9324 for (i = 0; i < length; i++) {
9325 Py_UCS4 c = PyUnicode_READ(kind, data, i), mapped[3];
9326 int n_res, j;
9327 if (Py_UNICODE_ISUPPER(c)) {
9328 n_res = lower_ucs4(kind, data, length, i, c, mapped);
9329 }
9330 else if (Py_UNICODE_ISLOWER(c)) {
9331 n_res = _PyUnicode_ToUpperFull(c, mapped);
9332 }
9333 else {
9334 n_res = 1;
9335 mapped[0] = c;
9336 }
9337 for (j = 0; j < n_res; j++) {
Victor Stinnere6abb482012-05-02 01:15:40 +02009338 *maxchar = MAX_MAXCHAR(*maxchar, mapped[j]);
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009339 res[k++] = mapped[j];
9340 }
9341 }
9342 return k;
9343}
9344
9345static Py_ssize_t
9346do_upper_or_lower(int kind, void *data, Py_ssize_t length, Py_UCS4 *res,
9347 Py_UCS4 *maxchar, int lower)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009348{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009349 Py_ssize_t i, k = 0;
9350
9351 for (i = 0; i < length; i++) {
9352 Py_UCS4 c = PyUnicode_READ(kind, data, i), mapped[3];
9353 int n_res, j;
9354 if (lower)
9355 n_res = lower_ucs4(kind, data, length, i, c, mapped);
9356 else
9357 n_res = _PyUnicode_ToUpperFull(c, mapped);
9358 for (j = 0; j < n_res; j++) {
Victor Stinnere6abb482012-05-02 01:15:40 +02009359 *maxchar = MAX_MAXCHAR(*maxchar, mapped[j]);
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009360 res[k++] = mapped[j];
9361 }
9362 }
9363 return k;
9364}
9365
9366static Py_ssize_t
9367do_upper(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
9368{
9369 return do_upper_or_lower(kind, data, length, res, maxchar, 0);
9370}
9371
9372static Py_ssize_t
9373do_lower(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
9374{
9375 return do_upper_or_lower(kind, data, length, res, maxchar, 1);
9376}
9377
Benjamin Petersone51757f2012-01-12 21:10:29 -05009378static Py_ssize_t
Benjamin Petersond5890c82012-01-14 13:23:30 -05009379do_casefold(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
9380{
9381 Py_ssize_t i, k = 0;
9382
9383 for (i = 0; i < length; i++) {
9384 Py_UCS4 c = PyUnicode_READ(kind, data, i);
9385 Py_UCS4 mapped[3];
9386 int j, n_res = _PyUnicode_ToFoldedFull(c, mapped);
9387 for (j = 0; j < n_res; j++) {
Victor Stinnere6abb482012-05-02 01:15:40 +02009388 *maxchar = MAX_MAXCHAR(*maxchar, mapped[j]);
Benjamin Petersond5890c82012-01-14 13:23:30 -05009389 res[k++] = mapped[j];
9390 }
9391 }
9392 return k;
9393}
9394
9395static Py_ssize_t
Benjamin Petersone51757f2012-01-12 21:10:29 -05009396do_title(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
9397{
9398 Py_ssize_t i, k = 0;
9399 int previous_is_cased;
9400
9401 previous_is_cased = 0;
9402 for (i = 0; i < length; i++) {
9403 const Py_UCS4 c = PyUnicode_READ(kind, data, i);
9404 Py_UCS4 mapped[3];
9405 int n_res, j;
9406
9407 if (previous_is_cased)
9408 n_res = lower_ucs4(kind, data, length, i, c, mapped);
9409 else
9410 n_res = _PyUnicode_ToTitleFull(c, mapped);
9411
9412 for (j = 0; j < n_res; j++) {
Victor Stinnere6abb482012-05-02 01:15:40 +02009413 *maxchar = MAX_MAXCHAR(*maxchar, mapped[j]);
Benjamin Petersone51757f2012-01-12 21:10:29 -05009414 res[k++] = mapped[j];
9415 }
9416
9417 previous_is_cased = _PyUnicode_IsCased(c);
9418 }
9419 return k;
9420}
9421
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009422static PyObject *
9423case_operation(PyObject *self,
9424 Py_ssize_t (*perform)(int, void *, Py_ssize_t, Py_UCS4 *, Py_UCS4 *))
9425{
9426 PyObject *res = NULL;
9427 Py_ssize_t length, newlength = 0;
9428 int kind, outkind;
9429 void *data, *outdata;
9430 Py_UCS4 maxchar = 0, *tmp, *tmpend;
9431
Benjamin Petersoneea48462012-01-16 14:28:50 -05009432 assert(PyUnicode_IS_READY(self));
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009433
9434 kind = PyUnicode_KIND(self);
9435 data = PyUnicode_DATA(self);
9436 length = PyUnicode_GET_LENGTH(self);
9437 tmp = PyMem_MALLOC(sizeof(Py_UCS4) * 3 * length);
9438 if (tmp == NULL)
9439 return PyErr_NoMemory();
9440 newlength = perform(kind, data, length, tmp, &maxchar);
9441 res = PyUnicode_New(newlength, maxchar);
9442 if (res == NULL)
9443 goto leave;
9444 tmpend = tmp + newlength;
9445 outdata = PyUnicode_DATA(res);
9446 outkind = PyUnicode_KIND(res);
9447 switch (outkind) {
9448 case PyUnicode_1BYTE_KIND:
9449 _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS1, tmp, tmpend, outdata);
9450 break;
9451 case PyUnicode_2BYTE_KIND:
9452 _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS2, tmp, tmpend, outdata);
9453 break;
9454 case PyUnicode_4BYTE_KIND:
9455 memcpy(outdata, tmp, sizeof(Py_UCS4) * newlength);
9456 break;
9457 default:
9458 assert(0);
9459 break;
9460 }
9461 leave:
9462 PyMem_FREE(tmp);
9463 return res;
9464}
9465
Tim Peters8ce9f162004-08-27 01:49:32 +00009466PyObject *
9467PyUnicode_Join(PyObject *separator, PyObject *seq)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009468{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009469 PyObject *sep = NULL;
Victor Stinnerdd077322011-10-07 17:02:31 +02009470 Py_ssize_t seplen;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009471 PyObject *res = NULL; /* the result */
Tim Peters05eba1f2004-08-27 21:32:02 +00009472 PyObject *fseq; /* PySequence_Fast(seq) */
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009473 Py_ssize_t seqlen; /* len(fseq) -- number of items in sequence */
9474 PyObject **items;
Tim Peters8ce9f162004-08-27 01:49:32 +00009475 PyObject *item;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009476 Py_ssize_t sz, i, res_offset;
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009477 Py_UCS4 maxchar;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009478 Py_UCS4 item_maxchar;
Victor Stinnerdd077322011-10-07 17:02:31 +02009479 int use_memcpy;
9480 unsigned char *res_data = NULL, *sep_data = NULL;
9481 PyObject *last_obj;
9482 unsigned int kind = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009483
Tim Peters05eba1f2004-08-27 21:32:02 +00009484 fseq = PySequence_Fast(seq, "");
9485 if (fseq == NULL) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00009486 return NULL;
Tim Peters8ce9f162004-08-27 01:49:32 +00009487 }
9488
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009489 /* NOTE: the following code can't call back into Python code,
9490 * so we are sure that fseq won't be mutated.
Tim Peters91879ab2004-08-27 22:35:44 +00009491 */
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009492
Tim Peters05eba1f2004-08-27 21:32:02 +00009493 seqlen = PySequence_Fast_GET_SIZE(fseq);
9494 /* If empty sequence, return u"". */
9495 if (seqlen == 0) {
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009496 Py_DECREF(fseq);
9497 Py_INCREF(unicode_empty);
9498 res = unicode_empty;
9499 return res;
Tim Peters05eba1f2004-08-27 21:32:02 +00009500 }
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009501
Tim Peters05eba1f2004-08-27 21:32:02 +00009502 /* If singleton sequence with an exact Unicode, return that. */
Victor Stinnerdd077322011-10-07 17:02:31 +02009503 last_obj = NULL;
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009504 items = PySequence_Fast_ITEMS(fseq);
Victor Stinneracf47b82011-10-06 12:32:37 +02009505 if (seqlen == 1) {
9506 if (PyUnicode_CheckExact(items[0])) {
9507 res = items[0];
9508 Py_INCREF(res);
9509 Py_DECREF(fseq);
9510 return res;
9511 }
Victor Stinnerdd077322011-10-07 17:02:31 +02009512 seplen = 0;
Victor Stinnerc6f0df72011-10-06 15:58:54 +02009513 maxchar = 0;
Tim Peters8ce9f162004-08-27 01:49:32 +00009514 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009515 else {
Victor Stinneracf47b82011-10-06 12:32:37 +02009516 /* Set up sep and seplen */
9517 if (separator == NULL) {
9518 /* fall back to a blank space separator */
9519 sep = PyUnicode_FromOrdinal(' ');
9520 if (!sep)
9521 goto onError;
Victor Stinnerdd077322011-10-07 17:02:31 +02009522 seplen = 1;
Victor Stinneracf47b82011-10-06 12:32:37 +02009523 maxchar = 32;
Tim Peters05eba1f2004-08-27 21:32:02 +00009524 }
Victor Stinneracf47b82011-10-06 12:32:37 +02009525 else {
9526 if (!PyUnicode_Check(separator)) {
9527 PyErr_Format(PyExc_TypeError,
9528 "separator: expected str instance,"
9529 " %.80s found",
9530 Py_TYPE(separator)->tp_name);
9531 goto onError;
9532 }
9533 if (PyUnicode_READY(separator))
9534 goto onError;
9535 sep = separator;
9536 seplen = PyUnicode_GET_LENGTH(separator);
9537 maxchar = PyUnicode_MAX_CHAR_VALUE(separator);
9538 /* inc refcount to keep this code path symmetric with the
9539 above case of a blank separator */
9540 Py_INCREF(sep);
9541 }
Victor Stinnerdd077322011-10-07 17:02:31 +02009542 last_obj = sep;
Tim Peters05eba1f2004-08-27 21:32:02 +00009543 }
9544
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009545 /* There are at least two things to join, or else we have a subclass
9546 * of str in the sequence.
9547 * Do a pre-pass to figure out the total amount of space we'll
9548 * need (sz), and see whether all argument are strings.
9549 */
9550 sz = 0;
Victor Stinnerdd077322011-10-07 17:02:31 +02009551#ifdef Py_DEBUG
9552 use_memcpy = 0;
9553#else
9554 use_memcpy = 1;
9555#endif
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009556 for (i = 0; i < seqlen; i++) {
9557 const Py_ssize_t old_sz = sz;
9558 item = items[i];
Benjamin Peterson29060642009-01-31 22:14:21 +00009559 if (!PyUnicode_Check(item)) {
9560 PyErr_Format(PyExc_TypeError,
9561 "sequence item %zd: expected str instance,"
9562 " %.80s found",
9563 i, Py_TYPE(item)->tp_name);
9564 goto onError;
9565 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009566 if (PyUnicode_READY(item) == -1)
9567 goto onError;
9568 sz += PyUnicode_GET_LENGTH(item);
9569 item_maxchar = PyUnicode_MAX_CHAR_VALUE(item);
Victor Stinnere6abb482012-05-02 01:15:40 +02009570 maxchar = MAX_MAXCHAR(maxchar, item_maxchar);
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009571 if (i != 0)
9572 sz += seplen;
9573 if (sz < old_sz || sz > PY_SSIZE_T_MAX) {
9574 PyErr_SetString(PyExc_OverflowError,
Benjamin Peterson29060642009-01-31 22:14:21 +00009575 "join() result is too long for a Python string");
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009576 goto onError;
9577 }
Victor Stinnerdd077322011-10-07 17:02:31 +02009578 if (use_memcpy && last_obj != NULL) {
9579 if (PyUnicode_KIND(last_obj) != PyUnicode_KIND(item))
9580 use_memcpy = 0;
9581 }
9582 last_obj = item;
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009583 }
Tim Petersced69f82003-09-16 20:30:58 +00009584
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009585 res = PyUnicode_New(sz, maxchar);
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009586 if (res == NULL)
9587 goto onError;
Tim Peters91879ab2004-08-27 22:35:44 +00009588
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009589 /* Catenate everything. */
Victor Stinnerdd077322011-10-07 17:02:31 +02009590#ifdef Py_DEBUG
9591 use_memcpy = 0;
9592#else
9593 if (use_memcpy) {
9594 res_data = PyUnicode_1BYTE_DATA(res);
9595 kind = PyUnicode_KIND(res);
9596 if (seplen != 0)
9597 sep_data = PyUnicode_1BYTE_DATA(sep);
9598 }
9599#endif
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009600 for (i = 0, res_offset = 0; i < seqlen; ++i) {
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009601 Py_ssize_t itemlen;
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009602 item = items[i];
Benjamin Peterson29060642009-01-31 22:14:21 +00009603 /* Copy item, and maybe the separator. */
Victor Stinner9ce5a832011-10-03 23:36:02 +02009604 if (i && seplen != 0) {
Victor Stinnerdd077322011-10-07 17:02:31 +02009605 if (use_memcpy) {
9606 Py_MEMCPY(res_data,
9607 sep_data,
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009608 kind * seplen);
9609 res_data += kind * seplen;
Victor Stinnerdd077322011-10-07 17:02:31 +02009610 }
9611 else {
Victor Stinnerd3f08822012-05-29 12:57:52 +02009612 _PyUnicode_FastCopyCharacters(res, res_offset, sep, 0, seplen);
Victor Stinnerdd077322011-10-07 17:02:31 +02009613 res_offset += seplen;
9614 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009615 }
Victor Stinner9ce5a832011-10-03 23:36:02 +02009616 itemlen = PyUnicode_GET_LENGTH(item);
9617 if (itemlen != 0) {
Victor Stinnerdd077322011-10-07 17:02:31 +02009618 if (use_memcpy) {
9619 Py_MEMCPY(res_data,
9620 PyUnicode_DATA(item),
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009621 kind * itemlen);
9622 res_data += kind * itemlen;
Victor Stinnerdd077322011-10-07 17:02:31 +02009623 }
9624 else {
Victor Stinnerd3f08822012-05-29 12:57:52 +02009625 _PyUnicode_FastCopyCharacters(res, res_offset, item, 0, itemlen);
Victor Stinnerdd077322011-10-07 17:02:31 +02009626 res_offset += itemlen;
9627 }
Victor Stinner9ce5a832011-10-03 23:36:02 +02009628 }
Tim Peters05eba1f2004-08-27 21:32:02 +00009629 }
Victor Stinnerdd077322011-10-07 17:02:31 +02009630 if (use_memcpy)
9631 assert(res_data == PyUnicode_1BYTE_DATA(res)
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009632 + kind * PyUnicode_GET_LENGTH(res));
Victor Stinnerdd077322011-10-07 17:02:31 +02009633 else
9634 assert(res_offset == PyUnicode_GET_LENGTH(res));
Tim Peters8ce9f162004-08-27 01:49:32 +00009635
Tim Peters05eba1f2004-08-27 21:32:02 +00009636 Py_DECREF(fseq);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009637 Py_XDECREF(sep);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02009638 assert(_PyUnicode_CheckConsistency(res, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009639 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009640
Benjamin Peterson29060642009-01-31 22:14:21 +00009641 onError:
Tim Peters05eba1f2004-08-27 21:32:02 +00009642 Py_DECREF(fseq);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009643 Py_XDECREF(sep);
Tim Peters8ce9f162004-08-27 01:49:32 +00009644 Py_XDECREF(res);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009645 return NULL;
9646}
9647
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009648#define FILL(kind, data, value, start, length) \
9649 do { \
9650 Py_ssize_t i_ = 0; \
9651 assert(kind != PyUnicode_WCHAR_KIND); \
9652 switch ((kind)) { \
9653 case PyUnicode_1BYTE_KIND: { \
9654 unsigned char * to_ = (unsigned char *)((data)) + (start); \
Victor Stinnerf2c76aa2012-05-03 13:10:40 +02009655 memset(to_, (unsigned char)value, (length)); \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009656 break; \
9657 } \
9658 case PyUnicode_2BYTE_KIND: { \
9659 Py_UCS2 * to_ = (Py_UCS2 *)((data)) + (start); \
9660 for (; i_ < (length); ++i_, ++to_) *to_ = (value); \
9661 break; \
9662 } \
Benjamin Petersone157cf12012-01-01 15:56:20 -06009663 case PyUnicode_4BYTE_KIND: { \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009664 Py_UCS4 * to_ = (Py_UCS4 *)((data)) + (start); \
9665 for (; i_ < (length); ++i_, ++to_) *to_ = (value); \
9666 break; \
Benjamin Petersone157cf12012-01-01 15:56:20 -06009667 default: assert(0); \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009668 } \
9669 } \
9670 } while (0)
9671
Victor Stinnerd3f08822012-05-29 12:57:52 +02009672void
9673_PyUnicode_FastFill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length,
9674 Py_UCS4 fill_char)
9675{
9676 const enum PyUnicode_Kind kind = PyUnicode_KIND(unicode);
9677 const void *data = PyUnicode_DATA(unicode);
9678 assert(PyUnicode_IS_READY(unicode));
9679 assert(unicode_modifiable(unicode));
9680 assert(fill_char <= PyUnicode_MAX_CHAR_VALUE(unicode));
9681 assert(start >= 0);
9682 assert(start + length <= PyUnicode_GET_LENGTH(unicode));
9683 FILL(kind, data, fill_char, start, length);
9684}
9685
Victor Stinner3fe55312012-01-04 00:33:50 +01009686Py_ssize_t
9687PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length,
9688 Py_UCS4 fill_char)
9689{
9690 Py_ssize_t maxlen;
Victor Stinner3fe55312012-01-04 00:33:50 +01009691
9692 if (!PyUnicode_Check(unicode)) {
9693 PyErr_BadInternalCall();
9694 return -1;
9695 }
9696 if (PyUnicode_READY(unicode) == -1)
9697 return -1;
9698 if (unicode_check_modifiable(unicode))
9699 return -1;
9700
Victor Stinnerd3f08822012-05-29 12:57:52 +02009701 if (start < 0) {
9702 PyErr_SetString(PyExc_IndexError, "string index out of range");
9703 return -1;
9704 }
Victor Stinner3fe55312012-01-04 00:33:50 +01009705 if (fill_char > PyUnicode_MAX_CHAR_VALUE(unicode)) {
9706 PyErr_SetString(PyExc_ValueError,
9707 "fill character is bigger than "
9708 "the string maximum character");
9709 return -1;
9710 }
9711
9712 maxlen = PyUnicode_GET_LENGTH(unicode) - start;
9713 length = Py_MIN(maxlen, length);
9714 if (length <= 0)
9715 return 0;
9716
Victor Stinnerd3f08822012-05-29 12:57:52 +02009717 _PyUnicode_FastFill(unicode, start, length, fill_char);
Victor Stinner3fe55312012-01-04 00:33:50 +01009718 return length;
9719}
9720
Victor Stinner9310abb2011-10-05 00:59:23 +02009721static PyObject *
9722pad(PyObject *self,
Alexander Belopolsky40018472011-02-26 01:02:56 +00009723 Py_ssize_t left,
9724 Py_ssize_t right,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009725 Py_UCS4 fill)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009726{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009727 PyObject *u;
9728 Py_UCS4 maxchar;
Victor Stinner6c7a52a2011-09-28 21:39:17 +02009729 int kind;
9730 void *data;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009731
9732 if (left < 0)
9733 left = 0;
9734 if (right < 0)
9735 right = 0;
9736
Victor Stinnerc4b49542011-12-11 22:44:26 +01009737 if (left == 0 && right == 0)
9738 return unicode_result_unchanged(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009739
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009740 if (left > PY_SSIZE_T_MAX - _PyUnicode_LENGTH(self) ||
9741 right > PY_SSIZE_T_MAX - (left + _PyUnicode_LENGTH(self))) {
Neal Norwitz3ce5d922008-08-24 07:08:55 +00009742 PyErr_SetString(PyExc_OverflowError, "padded string is too long");
9743 return NULL;
9744 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009745 maxchar = PyUnicode_MAX_CHAR_VALUE(self);
Victor Stinnere6abb482012-05-02 01:15:40 +02009746 maxchar = MAX_MAXCHAR(maxchar, fill);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009747 u = PyUnicode_New(left + _PyUnicode_LENGTH(self) + right, maxchar);
Victor Stinner6c7a52a2011-09-28 21:39:17 +02009748 if (!u)
9749 return NULL;
9750
9751 kind = PyUnicode_KIND(u);
9752 data = PyUnicode_DATA(u);
9753 if (left)
9754 FILL(kind, data, fill, 0, left);
9755 if (right)
9756 FILL(kind, data, fill, left + _PyUnicode_LENGTH(self), right);
Victor Stinnerd3f08822012-05-29 12:57:52 +02009757 _PyUnicode_FastCopyCharacters(u, left, self, 0, _PyUnicode_LENGTH(self));
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02009758 assert(_PyUnicode_CheckConsistency(u, 1));
9759 return u;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009760}
9761
Alexander Belopolsky40018472011-02-26 01:02:56 +00009762PyObject *
9763PyUnicode_Splitlines(PyObject *string, int keepends)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009764{
Guido van Rossumd57fd912000-03-10 22:53:23 +00009765 PyObject *list;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009766
9767 string = PyUnicode_FromObject(string);
Benjamin Peterson22a29702012-01-02 09:00:30 -06009768 if (string == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009769 return NULL;
Benjamin Peterson22a29702012-01-02 09:00:30 -06009770 if (PyUnicode_READY(string) == -1) {
9771 Py_DECREF(string);
9772 return NULL;
9773 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00009774
Benjamin Petersonead6b532011-12-20 17:23:42 -06009775 switch (PyUnicode_KIND(string)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009776 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009777 if (PyUnicode_IS_ASCII(string))
9778 list = asciilib_splitlines(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009779 string, PyUnicode_1BYTE_DATA(string),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009780 PyUnicode_GET_LENGTH(string), keepends);
9781 else
9782 list = ucs1lib_splitlines(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009783 string, PyUnicode_1BYTE_DATA(string),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009784 PyUnicode_GET_LENGTH(string), keepends);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009785 break;
9786 case PyUnicode_2BYTE_KIND:
9787 list = ucs2lib_splitlines(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009788 string, PyUnicode_2BYTE_DATA(string),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009789 PyUnicode_GET_LENGTH(string), keepends);
9790 break;
9791 case PyUnicode_4BYTE_KIND:
9792 list = ucs4lib_splitlines(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009793 string, PyUnicode_4BYTE_DATA(string),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009794 PyUnicode_GET_LENGTH(string), keepends);
9795 break;
9796 default:
9797 assert(0);
9798 list = 0;
9799 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00009800 Py_DECREF(string);
9801 return list;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009802}
9803
Alexander Belopolsky40018472011-02-26 01:02:56 +00009804static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +02009805split(PyObject *self,
9806 PyObject *substring,
Alexander Belopolsky40018472011-02-26 01:02:56 +00009807 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009808{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009809 int kind1, kind2, kind;
9810 void *buf1, *buf2;
9811 Py_ssize_t len1, len2;
9812 PyObject* out;
9813
Guido van Rossumd57fd912000-03-10 22:53:23 +00009814 if (maxcount < 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009815 maxcount = PY_SSIZE_T_MAX;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009816
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009817 if (PyUnicode_READY(self) == -1)
9818 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009819
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009820 if (substring == NULL)
Benjamin Petersonead6b532011-12-20 17:23:42 -06009821 switch (PyUnicode_KIND(self)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009822 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009823 if (PyUnicode_IS_ASCII(self))
9824 return asciilib_split_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009825 self, PyUnicode_1BYTE_DATA(self),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009826 PyUnicode_GET_LENGTH(self), maxcount
9827 );
9828 else
9829 return ucs1lib_split_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009830 self, PyUnicode_1BYTE_DATA(self),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009831 PyUnicode_GET_LENGTH(self), maxcount
9832 );
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009833 case PyUnicode_2BYTE_KIND:
9834 return ucs2lib_split_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009835 self, PyUnicode_2BYTE_DATA(self),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009836 PyUnicode_GET_LENGTH(self), maxcount
9837 );
9838 case PyUnicode_4BYTE_KIND:
9839 return ucs4lib_split_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009840 self, PyUnicode_4BYTE_DATA(self),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009841 PyUnicode_GET_LENGTH(self), maxcount
9842 );
9843 default:
9844 assert(0);
9845 return NULL;
9846 }
9847
9848 if (PyUnicode_READY(substring) == -1)
9849 return NULL;
9850
9851 kind1 = PyUnicode_KIND(self);
9852 kind2 = PyUnicode_KIND(substring);
9853 kind = kind1 > kind2 ? kind1 : kind2;
9854 buf1 = PyUnicode_DATA(self);
9855 buf2 = PyUnicode_DATA(substring);
9856 if (kind1 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +01009857 buf1 = _PyUnicode_AsKind(self, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009858 if (!buf1)
9859 return NULL;
9860 if (kind2 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +01009861 buf2 = _PyUnicode_AsKind(substring, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009862 if (!buf2) {
9863 if (kind1 != kind) PyMem_Free(buf1);
9864 return NULL;
9865 }
9866 len1 = PyUnicode_GET_LENGTH(self);
9867 len2 = PyUnicode_GET_LENGTH(substring);
9868
Benjamin Petersonead6b532011-12-20 17:23:42 -06009869 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009870 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009871 if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring))
9872 out = asciilib_split(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009873 self, buf1, len1, buf2, len2, maxcount);
Victor Stinnerc3cec782011-10-05 21:24:08 +02009874 else
9875 out = ucs1lib_split(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009876 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009877 break;
9878 case PyUnicode_2BYTE_KIND:
9879 out = ucs2lib_split(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009880 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009881 break;
9882 case PyUnicode_4BYTE_KIND:
9883 out = ucs4lib_split(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009884 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009885 break;
9886 default:
9887 out = NULL;
9888 }
9889 if (kind1 != kind)
9890 PyMem_Free(buf1);
9891 if (kind2 != kind)
9892 PyMem_Free(buf2);
9893 return out;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009894}
9895
Alexander Belopolsky40018472011-02-26 01:02:56 +00009896static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +02009897rsplit(PyObject *self,
9898 PyObject *substring,
Alexander Belopolsky40018472011-02-26 01:02:56 +00009899 Py_ssize_t maxcount)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009900{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009901 int kind1, kind2, kind;
9902 void *buf1, *buf2;
9903 Py_ssize_t len1, len2;
9904 PyObject* out;
9905
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009906 if (maxcount < 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009907 maxcount = PY_SSIZE_T_MAX;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009908
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009909 if (PyUnicode_READY(self) == -1)
9910 return NULL;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009911
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009912 if (substring == NULL)
Benjamin Petersonead6b532011-12-20 17:23:42 -06009913 switch (PyUnicode_KIND(self)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009914 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009915 if (PyUnicode_IS_ASCII(self))
9916 return asciilib_rsplit_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009917 self, PyUnicode_1BYTE_DATA(self),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009918 PyUnicode_GET_LENGTH(self), maxcount
9919 );
9920 else
9921 return ucs1lib_rsplit_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009922 self, PyUnicode_1BYTE_DATA(self),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009923 PyUnicode_GET_LENGTH(self), maxcount
9924 );
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009925 case PyUnicode_2BYTE_KIND:
9926 return ucs2lib_rsplit_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009927 self, PyUnicode_2BYTE_DATA(self),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009928 PyUnicode_GET_LENGTH(self), maxcount
9929 );
9930 case PyUnicode_4BYTE_KIND:
9931 return ucs4lib_rsplit_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009932 self, PyUnicode_4BYTE_DATA(self),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009933 PyUnicode_GET_LENGTH(self), maxcount
9934 );
9935 default:
9936 assert(0);
9937 return NULL;
9938 }
9939
9940 if (PyUnicode_READY(substring) == -1)
9941 return NULL;
9942
9943 kind1 = PyUnicode_KIND(self);
9944 kind2 = PyUnicode_KIND(substring);
9945 kind = kind1 > kind2 ? kind1 : kind2;
9946 buf1 = PyUnicode_DATA(self);
9947 buf2 = PyUnicode_DATA(substring);
9948 if (kind1 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +01009949 buf1 = _PyUnicode_AsKind(self, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009950 if (!buf1)
9951 return NULL;
9952 if (kind2 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +01009953 buf2 = _PyUnicode_AsKind(substring, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009954 if (!buf2) {
9955 if (kind1 != kind) PyMem_Free(buf1);
9956 return NULL;
9957 }
9958 len1 = PyUnicode_GET_LENGTH(self);
9959 len2 = PyUnicode_GET_LENGTH(substring);
9960
Benjamin Petersonead6b532011-12-20 17:23:42 -06009961 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009962 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009963 if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring))
9964 out = asciilib_rsplit(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009965 self, buf1, len1, buf2, len2, maxcount);
Victor Stinnerc3cec782011-10-05 21:24:08 +02009966 else
9967 out = ucs1lib_rsplit(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009968 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009969 break;
9970 case PyUnicode_2BYTE_KIND:
9971 out = ucs2lib_rsplit(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009972 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009973 break;
9974 case PyUnicode_4BYTE_KIND:
9975 out = ucs4lib_rsplit(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009976 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009977 break;
9978 default:
9979 out = NULL;
9980 }
9981 if (kind1 != kind)
9982 PyMem_Free(buf1);
9983 if (kind2 != kind)
9984 PyMem_Free(buf2);
9985 return out;
9986}
9987
9988static Py_ssize_t
Victor Stinnerc3cec782011-10-05 21:24:08 +02009989anylib_find(int kind, PyObject *str1, void *buf1, Py_ssize_t len1,
9990 PyObject *str2, void *buf2, Py_ssize_t len2, Py_ssize_t offset)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009991{
Benjamin Petersonead6b532011-12-20 17:23:42 -06009992 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009993 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009994 if (PyUnicode_IS_ASCII(str1) && PyUnicode_IS_ASCII(str2))
9995 return asciilib_find(buf1, len1, buf2, len2, offset);
9996 else
9997 return ucs1lib_find(buf1, len1, buf2, len2, offset);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009998 case PyUnicode_2BYTE_KIND:
9999 return ucs2lib_find(buf1, len1, buf2, len2, offset);
10000 case PyUnicode_4BYTE_KIND:
10001 return ucs4lib_find(buf1, len1, buf2, len2, offset);
10002 }
10003 assert(0);
10004 return -1;
10005}
10006
10007static Py_ssize_t
Victor Stinnerc3cec782011-10-05 21:24:08 +020010008anylib_count(int kind, PyObject *sstr, void* sbuf, Py_ssize_t slen,
10009 PyObject *str1, void *buf1, Py_ssize_t len1, Py_ssize_t maxcount)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010010{
Benjamin Petersonc0b95d12011-12-20 17:24:05 -060010011 switch (kind) {
10012 case PyUnicode_1BYTE_KIND:
10013 if (PyUnicode_IS_ASCII(sstr) && PyUnicode_IS_ASCII(str1))
10014 return asciilib_count(sbuf, slen, buf1, len1, maxcount);
10015 else
10016 return ucs1lib_count(sbuf, slen, buf1, len1, maxcount);
10017 case PyUnicode_2BYTE_KIND:
10018 return ucs2lib_count(sbuf, slen, buf1, len1, maxcount);
10019 case PyUnicode_4BYTE_KIND:
10020 return ucs4lib_count(sbuf, slen, buf1, len1, maxcount);
10021 }
10022 assert(0);
10023 return 0;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000010024}
10025
Alexander Belopolsky40018472011-02-26 01:02:56 +000010026static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010027replace(PyObject *self, PyObject *str1,
10028 PyObject *str2, Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010029{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010030 PyObject *u;
10031 char *sbuf = PyUnicode_DATA(self);
10032 char *buf1 = PyUnicode_DATA(str1);
10033 char *buf2 = PyUnicode_DATA(str2);
10034 int srelease = 0, release1 = 0, release2 = 0;
10035 int skind = PyUnicode_KIND(self);
10036 int kind1 = PyUnicode_KIND(str1);
10037 int kind2 = PyUnicode_KIND(str2);
10038 Py_ssize_t slen = PyUnicode_GET_LENGTH(self);
10039 Py_ssize_t len1 = PyUnicode_GET_LENGTH(str1);
10040 Py_ssize_t len2 = PyUnicode_GET_LENGTH(str2);
Victor Stinner49a0a212011-10-12 23:46:10 +020010041 int mayshrink;
10042 Py_UCS4 maxchar, maxchar_str2;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010043
10044 if (maxcount < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000010045 maxcount = PY_SSIZE_T_MAX;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010046 else if (maxcount == 0 || slen == 0)
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010047 goto nothing;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010048
Victor Stinner59de0ee2011-10-07 10:01:28 +020010049 if (str1 == str2)
10050 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010051 if (skind < kind1)
10052 /* substring too wide to be present */
10053 goto nothing;
10054
Victor Stinner49a0a212011-10-12 23:46:10 +020010055 maxchar = PyUnicode_MAX_CHAR_VALUE(self);
10056 maxchar_str2 = PyUnicode_MAX_CHAR_VALUE(str2);
10057 /* Replacing str1 with str2 may cause a maxchar reduction in the
10058 result string. */
10059 mayshrink = (maxchar_str2 < maxchar);
Victor Stinnere6abb482012-05-02 01:15:40 +020010060 maxchar = MAX_MAXCHAR(maxchar, maxchar_str2);
Victor Stinner49a0a212011-10-12 23:46:10 +020010061
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010062 if (len1 == len2) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010063 /* same length */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010064 if (len1 == 0)
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010065 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010066 if (len1 == 1) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010067 /* replace characters */
Victor Stinner49a0a212011-10-12 23:46:10 +020010068 Py_UCS4 u1, u2;
10069 int rkind;
Victor Stinnerf6441102011-12-18 02:43:08 +010010070 Py_ssize_t index, pos;
10071 char *src;
10072
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010073 u1 = PyUnicode_READ_CHAR(str1, 0);
Victor Stinnerf6441102011-12-18 02:43:08 +010010074 pos = findchar(sbuf, PyUnicode_KIND(self), slen, u1, 1);
10075 if (pos < 0)
Thomas Wouters477c8d52006-05-27 19:21:47 +000010076 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010077 u2 = PyUnicode_READ_CHAR(str2, 0);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010078 u = PyUnicode_New(slen, maxchar);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010079 if (!u)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010080 goto error;
Victor Stinnerd3f08822012-05-29 12:57:52 +020010081 _PyUnicode_FastCopyCharacters(u, 0, self, 0, slen);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010082 rkind = PyUnicode_KIND(u);
Victor Stinnerf6441102011-12-18 02:43:08 +010010083
10084 PyUnicode_WRITE(rkind, PyUnicode_DATA(u), pos, u2);
10085 index = 0;
10086 src = sbuf;
10087 while (--maxcount)
10088 {
10089 pos++;
10090 src += pos * PyUnicode_KIND(self);
10091 slen -= pos;
10092 index += pos;
10093 pos = findchar(src, PyUnicode_KIND(self), slen, u1, 1);
10094 if (pos < 0)
10095 break;
10096 PyUnicode_WRITE(rkind, PyUnicode_DATA(u), index + pos, u2);
10097 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010098 }
10099 else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010100 int rkind = skind;
10101 char *res;
Victor Stinnerf6441102011-12-18 02:43:08 +010010102 Py_ssize_t i;
Victor Stinner25a4b292011-10-06 12:31:55 +020010103
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010104 if (kind1 < rkind) {
10105 /* widen substring */
10106 buf1 = _PyUnicode_AsKind(str1, rkind);
10107 if (!buf1) goto error;
10108 release1 = 1;
10109 }
Victor Stinnerc3cec782011-10-05 21:24:08 +020010110 i = anylib_find(rkind, self, sbuf, slen, str1, buf1, len1, 0);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010111 if (i < 0)
10112 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010113 if (rkind > kind2) {
10114 /* widen replacement */
10115 buf2 = _PyUnicode_AsKind(str2, rkind);
10116 if (!buf2) goto error;
10117 release2 = 1;
10118 }
10119 else if (rkind < kind2) {
10120 /* widen self and buf1 */
10121 rkind = kind2;
10122 if (release1) PyMem_Free(buf1);
10123 sbuf = _PyUnicode_AsKind(self, rkind);
10124 if (!sbuf) goto error;
10125 srelease = 1;
10126 buf1 = _PyUnicode_AsKind(str1, rkind);
10127 if (!buf1) goto error;
10128 release1 = 1;
10129 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010130 u = PyUnicode_New(slen, maxchar);
10131 if (!u)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010132 goto error;
Victor Stinner49a0a212011-10-12 23:46:10 +020010133 assert(PyUnicode_KIND(u) == rkind);
10134 res = PyUnicode_DATA(u);
Victor Stinner25a4b292011-10-06 12:31:55 +020010135
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010136 memcpy(res, sbuf, rkind * slen);
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010137 /* change everything in-place, starting with this one */
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010138 memcpy(res + rkind * i,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010139 buf2,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010140 rkind * len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010141 i += len1;
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010142
10143 while ( --maxcount > 0) {
Victor Stinnerc3cec782011-10-05 21:24:08 +020010144 i = anylib_find(rkind, self,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010145 sbuf+rkind*i, slen-i,
Victor Stinnerc3cec782011-10-05 21:24:08 +020010146 str1, buf1, len1, i);
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010147 if (i == -1)
10148 break;
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010149 memcpy(res + rkind * i,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010150 buf2,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010151 rkind * len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010152 i += len1;
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010153 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000010154 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010155 }
10156 else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010157 Py_ssize_t n, i, j, ires;
Mark Dickinsonc04ddff2012-10-06 18:04:49 +010010158 Py_ssize_t new_size;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010159 int rkind = skind;
10160 char *res;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010161
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010162 if (kind1 < rkind) {
Victor Stinner49a0a212011-10-12 23:46:10 +020010163 /* widen substring */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010164 buf1 = _PyUnicode_AsKind(str1, rkind);
10165 if (!buf1) goto error;
10166 release1 = 1;
10167 }
Victor Stinnerc3cec782011-10-05 21:24:08 +020010168 n = anylib_count(rkind, self, sbuf, slen, str1, buf1, len1, maxcount);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010169 if (n == 0)
10170 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010171 if (kind2 < rkind) {
Victor Stinner49a0a212011-10-12 23:46:10 +020010172 /* widen replacement */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010173 buf2 = _PyUnicode_AsKind(str2, rkind);
10174 if (!buf2) goto error;
10175 release2 = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010176 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010177 else if (kind2 > rkind) {
Victor Stinner49a0a212011-10-12 23:46:10 +020010178 /* widen self and buf1 */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010179 rkind = kind2;
10180 sbuf = _PyUnicode_AsKind(self, rkind);
10181 if (!sbuf) goto error;
10182 srelease = 1;
10183 if (release1) PyMem_Free(buf1);
10184 buf1 = _PyUnicode_AsKind(str1, rkind);
10185 if (!buf1) goto error;
10186 release1 = 1;
10187 }
10188 /* new_size = PyUnicode_GET_LENGTH(self) + n * (PyUnicode_GET_LENGTH(str2) -
10189 PyUnicode_GET_LENGTH(str1))); */
Mark Dickinsonc04ddff2012-10-06 18:04:49 +010010190 if (len2 > len1 && len2 - len1 > (PY_SSIZE_T_MAX - slen) / n) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010191 PyErr_SetString(PyExc_OverflowError,
10192 "replace string is too long");
10193 goto error;
10194 }
Mark Dickinsonc04ddff2012-10-06 18:04:49 +010010195 new_size = slen + n * (len2 - len1);
Victor Stinner49a0a212011-10-12 23:46:10 +020010196 if (new_size == 0) {
10197 Py_INCREF(unicode_empty);
10198 u = unicode_empty;
10199 goto done;
10200 }
Mark Dickinsonc04ddff2012-10-06 18:04:49 +010010201 if (new_size > (PY_SSIZE_T_MAX >> (rkind-1))) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010202 PyErr_SetString(PyExc_OverflowError,
10203 "replace string is too long");
10204 goto error;
10205 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010206 u = PyUnicode_New(new_size, maxchar);
10207 if (!u)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010208 goto error;
Victor Stinner49a0a212011-10-12 23:46:10 +020010209 assert(PyUnicode_KIND(u) == rkind);
10210 res = PyUnicode_DATA(u);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010211 ires = i = 0;
10212 if (len1 > 0) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010213 while (n-- > 0) {
10214 /* look for next match */
Victor Stinnerc3cec782011-10-05 21:24:08 +020010215 j = anylib_find(rkind, self,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010216 sbuf + rkind * i, slen-i,
Victor Stinnerc3cec782011-10-05 21:24:08 +020010217 str1, buf1, len1, i);
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010218 if (j == -1)
10219 break;
10220 else if (j > i) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010221 /* copy unchanged part [i:j] */
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010222 memcpy(res + rkind * ires,
10223 sbuf + rkind * i,
10224 rkind * (j-i));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010225 ires += j - i;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010226 }
10227 /* copy substitution string */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010228 if (len2 > 0) {
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010229 memcpy(res + rkind * ires,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010230 buf2,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010231 rkind * len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010232 ires += len2;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010233 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010234 i = j + len1;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010235 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010236 if (i < slen)
Thomas Wouters477c8d52006-05-27 19:21:47 +000010237 /* copy tail [i:] */
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010238 memcpy(res + rkind * ires,
10239 sbuf + rkind * i,
10240 rkind * (slen-i));
Victor Stinner49a0a212011-10-12 23:46:10 +020010241 }
10242 else {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010243 /* interleave */
10244 while (n > 0) {
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010245 memcpy(res + rkind * ires,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010246 buf2,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010247 rkind * len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010248 ires += len2;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010249 if (--n <= 0)
10250 break;
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010251 memcpy(res + rkind * ires,
10252 sbuf + rkind * i,
10253 rkind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010254 ires++;
10255 i++;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010256 }
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010257 memcpy(res + rkind * ires,
10258 sbuf + rkind * i,
10259 rkind * (slen-i));
Thomas Wouters477c8d52006-05-27 19:21:47 +000010260 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010261 }
10262
10263 if (mayshrink) {
Victor Stinner25a4b292011-10-06 12:31:55 +020010264 unicode_adjust_maxchar(&u);
10265 if (u == NULL)
10266 goto error;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010267 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010268
10269 done:
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010270 if (srelease)
10271 PyMem_FREE(sbuf);
10272 if (release1)
10273 PyMem_FREE(buf1);
10274 if (release2)
10275 PyMem_FREE(buf2);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020010276 assert(_PyUnicode_CheckConsistency(u, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010277 return u;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010278
Benjamin Peterson29060642009-01-31 22:14:21 +000010279 nothing:
Thomas Wouters477c8d52006-05-27 19:21:47 +000010280 /* nothing to replace; return original string (when possible) */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010281 if (srelease)
10282 PyMem_FREE(sbuf);
10283 if (release1)
10284 PyMem_FREE(buf1);
10285 if (release2)
10286 PyMem_FREE(buf2);
Victor Stinnerc4b49542011-12-11 22:44:26 +010010287 return unicode_result_unchanged(self);
10288
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010289 error:
10290 if (srelease && sbuf)
10291 PyMem_FREE(sbuf);
10292 if (release1 && buf1)
10293 PyMem_FREE(buf1);
10294 if (release2 && buf2)
10295 PyMem_FREE(buf2);
10296 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010297}
10298
10299/* --- Unicode Object Methods --------------------------------------------- */
10300
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010301PyDoc_STRVAR(title__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010302 "S.title() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010303\n\
10304Return a titlecased version of S, i.e. words start with title case\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010305characters, all remaining cased characters have lower case.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010306
10307static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020010308unicode_title(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010309{
Benjamin Petersoneea48462012-01-16 14:28:50 -050010310 if (PyUnicode_READY(self) == -1)
10311 return NULL;
Victor Stinnerb0800dc2012-02-25 00:47:08 +010010312 return case_operation(self, do_title);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010313}
10314
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010315PyDoc_STRVAR(capitalize__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010316 "S.capitalize() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010317\n\
10318Return a capitalized version of S, i.e. make the first character\n\
Senthil Kumarane51ee8a2010-07-05 12:00:56 +000010319have upper case and the rest lower case.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010320
10321static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020010322unicode_capitalize(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010323{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -050010324 if (PyUnicode_READY(self) == -1)
10325 return NULL;
10326 if (PyUnicode_GET_LENGTH(self) == 0)
10327 return unicode_result_unchanged(self);
Victor Stinnerb0800dc2012-02-25 00:47:08 +010010328 return case_operation(self, do_capitalize);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010329}
10330
Benjamin Petersond5890c82012-01-14 13:23:30 -050010331PyDoc_STRVAR(casefold__doc__,
10332 "S.casefold() -> str\n\
10333\n\
10334Return a version of S suitable for caseless comparisons.");
10335
10336static PyObject *
10337unicode_casefold(PyObject *self)
10338{
10339 if (PyUnicode_READY(self) == -1)
10340 return NULL;
10341 if (PyUnicode_IS_ASCII(self))
10342 return ascii_upper_or_lower(self, 1);
Victor Stinnerb0800dc2012-02-25 00:47:08 +010010343 return case_operation(self, do_casefold);
Benjamin Petersond5890c82012-01-14 13:23:30 -050010344}
10345
10346
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000010347/* Argument converter. Coerces to a single unicode character */
10348
10349static int
10350convert_uc(PyObject *obj, void *addr)
10351{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010352 Py_UCS4 *fillcharloc = (Py_UCS4 *)addr;
Benjamin Peterson14339b62009-01-31 16:36:08 +000010353 PyObject *uniobj;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000010354
Benjamin Peterson14339b62009-01-31 16:36:08 +000010355 uniobj = PyUnicode_FromObject(obj);
10356 if (uniobj == NULL) {
10357 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000010358 "The fill character cannot be converted to Unicode");
Benjamin Peterson14339b62009-01-31 16:36:08 +000010359 return 0;
10360 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010361 if (PyUnicode_GET_LENGTH(uniobj) != 1) {
Benjamin Peterson14339b62009-01-31 16:36:08 +000010362 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000010363 "The fill character must be exactly one character long");
Benjamin Peterson14339b62009-01-31 16:36:08 +000010364 Py_DECREF(uniobj);
10365 return 0;
10366 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010367 *fillcharloc = PyUnicode_READ_CHAR(uniobj, 0);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010368 Py_DECREF(uniobj);
10369 return 1;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000010370}
10371
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010372PyDoc_STRVAR(center__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010373 "S.center(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010374\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000010375Return S centered in a string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000010376done using the specified fill character (default is a space)");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010377
10378static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +020010379unicode_center(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010380{
Martin v. Löwis18e16552006-02-15 17:27:45 +000010381 Py_ssize_t marg, left;
10382 Py_ssize_t width;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010383 Py_UCS4 fillchar = ' ';
10384
Victor Stinnere9a29352011-10-01 02:14:59 +020010385 if (!PyArg_ParseTuple(args, "n|O&:center", &width, convert_uc, &fillchar))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010386 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010387
Benjamin Petersonbac79492012-01-14 13:34:47 -050010388 if (PyUnicode_READY(self) == -1)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010389 return NULL;
10390
Victor Stinnerc4b49542011-12-11 22:44:26 +010010391 if (PyUnicode_GET_LENGTH(self) >= width)
10392 return unicode_result_unchanged(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010393
Victor Stinnerc4b49542011-12-11 22:44:26 +010010394 marg = width - PyUnicode_GET_LENGTH(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010395 left = marg / 2 + (marg & width & 1);
10396
Victor Stinner9310abb2011-10-05 00:59:23 +020010397 return pad(self, left, marg - left, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010398}
10399
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010400/* This function assumes that str1 and str2 are readied by the caller. */
10401
Marc-André Lemburge5034372000-08-08 08:04:29 +000010402static int
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010403unicode_compare(PyObject *str1, PyObject *str2)
Marc-André Lemburge5034372000-08-08 08:04:29 +000010404{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010405 int kind1, kind2;
10406 void *data1, *data2;
10407 Py_ssize_t len1, len2, i;
Marc-André Lemburge5034372000-08-08 08:04:29 +000010408
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010409 kind1 = PyUnicode_KIND(str1);
10410 kind2 = PyUnicode_KIND(str2);
10411 data1 = PyUnicode_DATA(str1);
10412 data2 = PyUnicode_DATA(str2);
10413 len1 = PyUnicode_GET_LENGTH(str1);
10414 len2 = PyUnicode_GET_LENGTH(str2);
Marc-André Lemburge5034372000-08-08 08:04:29 +000010415
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010416 for (i = 0; i < len1 && i < len2; ++i) {
10417 Py_UCS4 c1, c2;
10418 c1 = PyUnicode_READ(kind1, data1, i);
10419 c2 = PyUnicode_READ(kind2, data2, i);
Fredrik Lundh45714e92001-06-26 16:39:36 +000010420
10421 if (c1 != c2)
10422 return (c1 < c2) ? -1 : 1;
Marc-André Lemburge5034372000-08-08 08:04:29 +000010423 }
10424
10425 return (len1 < len2) ? -1 : (len1 != len2);
10426}
10427
Alexander Belopolsky40018472011-02-26 01:02:56 +000010428int
10429PyUnicode_Compare(PyObject *left, PyObject *right)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010430{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010431 if (PyUnicode_Check(left) && PyUnicode_Check(right)) {
10432 if (PyUnicode_READY(left) == -1 ||
10433 PyUnicode_READY(right) == -1)
10434 return -1;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010435 return unicode_compare(left, right);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010436 }
Guido van Rossum09dc34f2007-05-04 04:17:33 +000010437 PyErr_Format(PyExc_TypeError,
10438 "Can't compare %.100s and %.100s",
10439 left->ob_type->tp_name,
10440 right->ob_type->tp_name);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010441 return -1;
10442}
10443
Martin v. Löwis5b222132007-06-10 09:51:05 +000010444int
10445PyUnicode_CompareWithASCIIString(PyObject* uni, const char* str)
10446{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010447 Py_ssize_t i;
10448 int kind;
10449 void *data;
10450 Py_UCS4 chr;
10451
Victor Stinner910337b2011-10-03 03:20:16 +020010452 assert(_PyUnicode_CHECK(uni));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010453 if (PyUnicode_READY(uni) == -1)
10454 return -1;
10455 kind = PyUnicode_KIND(uni);
10456 data = PyUnicode_DATA(uni);
Martin v. Löwis5b222132007-06-10 09:51:05 +000010457 /* Compare Unicode string and source character set string */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010458 for (i = 0; (chr = PyUnicode_READ(kind, data, i)) && str[i]; i++)
10459 if (chr != str[i])
10460 return (chr < (unsigned char)(str[i])) ? -1 : 1;
Benjamin Peterson8667a9b2010-01-09 21:45:28 +000010461 /* This check keeps Python strings that end in '\0' from comparing equal
10462 to C strings identical up to that point. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010463 if (PyUnicode_GET_LENGTH(uni) != i || chr)
Benjamin Peterson29060642009-01-31 22:14:21 +000010464 return 1; /* uni is longer */
Martin v. Löwis5b222132007-06-10 09:51:05 +000010465 if (str[i])
Benjamin Peterson29060642009-01-31 22:14:21 +000010466 return -1; /* str is longer */
Martin v. Löwis5b222132007-06-10 09:51:05 +000010467 return 0;
10468}
10469
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010470
Benjamin Peterson29060642009-01-31 22:14:21 +000010471#define TEST_COND(cond) \
Benjamin Peterson14339b62009-01-31 16:36:08 +000010472 ((cond) ? Py_True : Py_False)
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010473
Alexander Belopolsky40018472011-02-26 01:02:56 +000010474PyObject *
10475PyUnicode_RichCompare(PyObject *left, PyObject *right, int op)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000010476{
10477 int result;
Benjamin Peterson14339b62009-01-31 16:36:08 +000010478
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010479 if (PyUnicode_Check(left) && PyUnicode_Check(right)) {
10480 PyObject *v;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010481 if (PyUnicode_READY(left) == -1 ||
10482 PyUnicode_READY(right) == -1)
10483 return NULL;
10484 if (PyUnicode_GET_LENGTH(left) != PyUnicode_GET_LENGTH(right) ||
10485 PyUnicode_KIND(left) != PyUnicode_KIND(right)) {
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010486 if (op == Py_EQ) {
10487 Py_INCREF(Py_False);
10488 return Py_False;
10489 }
10490 if (op == Py_NE) {
10491 Py_INCREF(Py_True);
10492 return Py_True;
10493 }
10494 }
10495 if (left == right)
10496 result = 0;
10497 else
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010498 result = unicode_compare(left, right);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010499
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010500 /* Convert the return value to a Boolean */
10501 switch (op) {
10502 case Py_EQ:
10503 v = TEST_COND(result == 0);
10504 break;
10505 case Py_NE:
10506 v = TEST_COND(result != 0);
10507 break;
10508 case Py_LE:
10509 v = TEST_COND(result <= 0);
10510 break;
10511 case Py_GE:
10512 v = TEST_COND(result >= 0);
10513 break;
10514 case Py_LT:
10515 v = TEST_COND(result == -1);
10516 break;
10517 case Py_GT:
10518 v = TEST_COND(result == 1);
10519 break;
10520 default:
10521 PyErr_BadArgument();
10522 return NULL;
10523 }
10524 Py_INCREF(v);
10525 return v;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000010526 }
Benjamin Peterson14339b62009-01-31 16:36:08 +000010527
Brian Curtindfc80e32011-08-10 20:28:54 -050010528 Py_RETURN_NOTIMPLEMENTED;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000010529}
10530
Alexander Belopolsky40018472011-02-26 01:02:56 +000010531int
10532PyUnicode_Contains(PyObject *container, PyObject *element)
Guido van Rossum403d68b2000-03-13 15:55:09 +000010533{
Thomas Wouters477c8d52006-05-27 19:21:47 +000010534 PyObject *str, *sub;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010535 int kind1, kind2, kind;
10536 void *buf1, *buf2;
10537 Py_ssize_t len1, len2;
Martin v. Löwis18e16552006-02-15 17:27:45 +000010538 int result;
Guido van Rossum403d68b2000-03-13 15:55:09 +000010539
10540 /* Coerce the two arguments */
Thomas Wouters477c8d52006-05-27 19:21:47 +000010541 sub = PyUnicode_FromObject(element);
10542 if (!sub) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010543 PyErr_Format(PyExc_TypeError,
10544 "'in <string>' requires string as left operand, not %s",
10545 element->ob_type->tp_name);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010546 return -1;
Guido van Rossum403d68b2000-03-13 15:55:09 +000010547 }
10548
Thomas Wouters477c8d52006-05-27 19:21:47 +000010549 str = PyUnicode_FromObject(container);
Benjamin Peterson22a29702012-01-02 09:00:30 -060010550 if (!str) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010551 Py_DECREF(sub);
10552 return -1;
10553 }
Benjamin Peterson22a29702012-01-02 09:00:30 -060010554 if (PyUnicode_READY(sub) == -1 || PyUnicode_READY(str) == -1) {
10555 Py_DECREF(sub);
10556 Py_DECREF(str);
10557 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000010558
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010559 kind1 = PyUnicode_KIND(str);
10560 kind2 = PyUnicode_KIND(sub);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010561 kind = kind1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010562 buf1 = PyUnicode_DATA(str);
10563 buf2 = PyUnicode_DATA(sub);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010564 if (kind2 != kind) {
Antoine Pitrou758153b2012-05-12 15:51:51 +020010565 if (kind2 > kind) {
10566 Py_DECREF(sub);
10567 Py_DECREF(str);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010568 return 0;
Antoine Pitrou758153b2012-05-12 15:51:51 +020010569 }
Victor Stinner7931d9a2011-11-04 00:22:48 +010010570 buf2 = _PyUnicode_AsKind(sub, kind);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010571 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010572 if (!buf2) {
10573 Py_DECREF(sub);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010574 Py_DECREF(str);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010575 return -1;
10576 }
10577 len1 = PyUnicode_GET_LENGTH(str);
10578 len2 = PyUnicode_GET_LENGTH(sub);
10579
Benjamin Petersonead6b532011-12-20 17:23:42 -060010580 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010581 case PyUnicode_1BYTE_KIND:
10582 result = ucs1lib_find(buf1, len1, buf2, len2, 0) != -1;
10583 break;
10584 case PyUnicode_2BYTE_KIND:
10585 result = ucs2lib_find(buf1, len1, buf2, len2, 0) != -1;
10586 break;
10587 case PyUnicode_4BYTE_KIND:
10588 result = ucs4lib_find(buf1, len1, buf2, len2, 0) != -1;
10589 break;
10590 default:
10591 result = -1;
10592 assert(0);
10593 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000010594
10595 Py_DECREF(str);
10596 Py_DECREF(sub);
10597
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010598 if (kind2 != kind)
10599 PyMem_Free(buf2);
10600
Guido van Rossum403d68b2000-03-13 15:55:09 +000010601 return result;
Guido van Rossum403d68b2000-03-13 15:55:09 +000010602}
10603
Guido van Rossumd57fd912000-03-10 22:53:23 +000010604/* Concat to string or Unicode object giving a new Unicode object. */
10605
Alexander Belopolsky40018472011-02-26 01:02:56 +000010606PyObject *
10607PyUnicode_Concat(PyObject *left, PyObject *right)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010608{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010609 PyObject *u = NULL, *v = NULL, *w;
Victor Stinner127226b2011-10-13 01:12:34 +020010610 Py_UCS4 maxchar, maxchar2;
Victor Stinner488fa492011-12-12 00:01:39 +010010611 Py_ssize_t u_len, v_len, new_len;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010612
10613 /* Coerce the two arguments */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010614 u = PyUnicode_FromObject(left);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010615 if (u == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000010616 goto onError;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010617 v = PyUnicode_FromObject(right);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010618 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000010619 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010620
10621 /* Shortcuts */
Victor Stinnera464fc12011-10-02 20:39:30 +020010622 if (v == unicode_empty) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010623 Py_DECREF(v);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010624 return u;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010625 }
Victor Stinnera464fc12011-10-02 20:39:30 +020010626 if (u == unicode_empty) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010627 Py_DECREF(u);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010628 return v;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010629 }
10630
Victor Stinner488fa492011-12-12 00:01:39 +010010631 u_len = PyUnicode_GET_LENGTH(u);
10632 v_len = PyUnicode_GET_LENGTH(v);
10633 if (u_len > PY_SSIZE_T_MAX - v_len) {
10634 PyErr_SetString(PyExc_OverflowError,
10635 "strings are too large to concat");
10636 goto onError;
10637 }
10638 new_len = u_len + v_len;
10639
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010640 maxchar = PyUnicode_MAX_CHAR_VALUE(u);
Victor Stinner127226b2011-10-13 01:12:34 +020010641 maxchar2 = PyUnicode_MAX_CHAR_VALUE(v);
Victor Stinnere6abb482012-05-02 01:15:40 +020010642 maxchar = MAX_MAXCHAR(maxchar, maxchar2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010643
Guido van Rossumd57fd912000-03-10 22:53:23 +000010644 /* Concat the two Unicode strings */
Victor Stinner488fa492011-12-12 00:01:39 +010010645 w = PyUnicode_New(new_len, maxchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010646 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000010647 goto onError;
Victor Stinnerd3f08822012-05-29 12:57:52 +020010648 _PyUnicode_FastCopyCharacters(w, 0, u, 0, u_len);
10649 _PyUnicode_FastCopyCharacters(w, u_len, v, 0, v_len);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010650 Py_DECREF(u);
10651 Py_DECREF(v);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020010652 assert(_PyUnicode_CheckConsistency(w, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010653 return w;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010654
Benjamin Peterson29060642009-01-31 22:14:21 +000010655 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +000010656 Py_XDECREF(u);
10657 Py_XDECREF(v);
10658 return NULL;
10659}
10660
Walter Dörwald1ab83302007-05-18 17:15:44 +000010661void
Victor Stinner23e56682011-10-03 03:54:37 +020010662PyUnicode_Append(PyObject **p_left, PyObject *right)
Walter Dörwald1ab83302007-05-18 17:15:44 +000010663{
Victor Stinner23e56682011-10-03 03:54:37 +020010664 PyObject *left, *res;
Victor Stinner488fa492011-12-12 00:01:39 +010010665 Py_UCS4 maxchar, maxchar2;
10666 Py_ssize_t left_len, right_len, new_len;
Victor Stinner23e56682011-10-03 03:54:37 +020010667
10668 if (p_left == NULL) {
10669 if (!PyErr_Occurred())
10670 PyErr_BadInternalCall();
Benjamin Peterson14339b62009-01-31 16:36:08 +000010671 return;
10672 }
Victor Stinner23e56682011-10-03 03:54:37 +020010673 left = *p_left;
10674 if (right == NULL || !PyUnicode_Check(left)) {
10675 if (!PyErr_Occurred())
10676 PyErr_BadInternalCall();
10677 goto error;
10678 }
10679
Benjamin Petersonbac79492012-01-14 13:34:47 -050010680 if (PyUnicode_READY(left) == -1)
Victor Stinnere1335c72011-10-04 20:53:03 +020010681 goto error;
Benjamin Petersonbac79492012-01-14 13:34:47 -050010682 if (PyUnicode_READY(right) == -1)
Victor Stinnere1335c72011-10-04 20:53:03 +020010683 goto error;
10684
Victor Stinner488fa492011-12-12 00:01:39 +010010685 /* Shortcuts */
10686 if (left == unicode_empty) {
10687 Py_DECREF(left);
10688 Py_INCREF(right);
10689 *p_left = right;
10690 return;
10691 }
10692 if (right == unicode_empty)
10693 return;
10694
10695 left_len = PyUnicode_GET_LENGTH(left);
10696 right_len = PyUnicode_GET_LENGTH(right);
10697 if (left_len > PY_SSIZE_T_MAX - right_len) {
10698 PyErr_SetString(PyExc_OverflowError,
10699 "strings are too large to concat");
10700 goto error;
10701 }
10702 new_len = left_len + right_len;
10703
10704 if (unicode_modifiable(left)
10705 && PyUnicode_CheckExact(right)
10706 && PyUnicode_KIND(right) <= PyUnicode_KIND(left)
Victor Stinnerb0923652011-10-04 01:17:31 +020010707 /* Don't resize for ascii += latin1. Convert ascii to latin1 requires
10708 to change the structure size, but characters are stored just after
Georg Brandl7597add2011-10-05 16:36:47 +020010709 the structure, and so it requires to move all characters which is
Victor Stinnerb0923652011-10-04 01:17:31 +020010710 not so different than duplicating the string. */
Victor Stinner488fa492011-12-12 00:01:39 +010010711 && !(PyUnicode_IS_ASCII(left) && !PyUnicode_IS_ASCII(right)))
10712 {
10713 /* append inplace */
10714 if (unicode_resize(p_left, new_len) != 0) {
10715 /* XXX if _PyUnicode_Resize() fails, 'left' has been
10716 * deallocated so it cannot be put back into
10717 * 'variable'. The MemoryError is raised when there
10718 * is no value in 'variable', which might (very
10719 * remotely) be a cause of incompatibilities.
10720 */
10721 goto error;
Victor Stinner23e56682011-10-03 03:54:37 +020010722 }
Victor Stinner488fa492011-12-12 00:01:39 +010010723 /* copy 'right' into the newly allocated area of 'left' */
Victor Stinnerd3f08822012-05-29 12:57:52 +020010724 _PyUnicode_FastCopyCharacters(*p_left, left_len, right, 0, right_len);
Victor Stinner23e56682011-10-03 03:54:37 +020010725 }
Victor Stinner488fa492011-12-12 00:01:39 +010010726 else {
10727 maxchar = PyUnicode_MAX_CHAR_VALUE(left);
10728 maxchar2 = PyUnicode_MAX_CHAR_VALUE(right);
Victor Stinnere6abb482012-05-02 01:15:40 +020010729 maxchar = MAX_MAXCHAR(maxchar, maxchar2);
Victor Stinner23e56682011-10-03 03:54:37 +020010730
Victor Stinner488fa492011-12-12 00:01:39 +010010731 /* Concat the two Unicode strings */
10732 res = PyUnicode_New(new_len, maxchar);
10733 if (res == NULL)
10734 goto error;
Victor Stinnerd3f08822012-05-29 12:57:52 +020010735 _PyUnicode_FastCopyCharacters(res, 0, left, 0, left_len);
10736 _PyUnicode_FastCopyCharacters(res, left_len, right, 0, right_len);
Victor Stinner488fa492011-12-12 00:01:39 +010010737 Py_DECREF(left);
10738 *p_left = res;
10739 }
10740 assert(_PyUnicode_CheckConsistency(*p_left, 1));
Victor Stinner23e56682011-10-03 03:54:37 +020010741 return;
10742
10743error:
Victor Stinner488fa492011-12-12 00:01:39 +010010744 Py_CLEAR(*p_left);
Walter Dörwald1ab83302007-05-18 17:15:44 +000010745}
10746
10747void
10748PyUnicode_AppendAndDel(PyObject **pleft, PyObject *right)
10749{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010750 PyUnicode_Append(pleft, right);
10751 Py_XDECREF(right);
Walter Dörwald1ab83302007-05-18 17:15:44 +000010752}
10753
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010754PyDoc_STRVAR(count__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010755 "S.count(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010756\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000010757Return the number of non-overlapping occurrences of substring sub in\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000010758string S[start:end]. Optional arguments start and end are\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010759interpreted as in slice notation.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010760
10761static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010762unicode_count(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010763{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010764 PyObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +000010765 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000010766 Py_ssize_t end = PY_SSIZE_T_MAX;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010767 PyObject *result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010768 int kind1, kind2, kind;
10769 void *buf1, *buf2;
10770 Py_ssize_t len1, len2, iresult;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010771
Jesus Ceaac451502011-04-20 17:09:23 +020010772 if (!stringlib_parse_args_finds_unicode("count", args, &substring,
10773 &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +000010774 return NULL;
Tim Petersced69f82003-09-16 20:30:58 +000010775
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010776 kind1 = PyUnicode_KIND(self);
10777 kind2 = PyUnicode_KIND(substring);
Benjamin Petersonb63f49f2012-05-03 18:31:07 -040010778 if (kind2 > kind1)
10779 return PyLong_FromLong(0);
10780 kind = kind1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010781 buf1 = PyUnicode_DATA(self);
10782 buf2 = PyUnicode_DATA(substring);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010783 if (kind2 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +010010784 buf2 = _PyUnicode_AsKind(substring, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010785 if (!buf2) {
10786 Py_DECREF(substring);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010787 return NULL;
10788 }
10789 len1 = PyUnicode_GET_LENGTH(self);
10790 len2 = PyUnicode_GET_LENGTH(substring);
10791
10792 ADJUST_INDICES(start, end, len1);
Benjamin Petersonead6b532011-12-20 17:23:42 -060010793 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010794 case PyUnicode_1BYTE_KIND:
10795 iresult = ucs1lib_count(
10796 ((Py_UCS1*)buf1) + start, end - start,
10797 buf2, len2, PY_SSIZE_T_MAX
10798 );
10799 break;
10800 case PyUnicode_2BYTE_KIND:
10801 iresult = ucs2lib_count(
10802 ((Py_UCS2*)buf1) + start, end - start,
10803 buf2, len2, PY_SSIZE_T_MAX
10804 );
10805 break;
10806 case PyUnicode_4BYTE_KIND:
10807 iresult = ucs4lib_count(
10808 ((Py_UCS4*)buf1) + start, end - start,
10809 buf2, len2, PY_SSIZE_T_MAX
10810 );
10811 break;
10812 default:
10813 assert(0); iresult = 0;
10814 }
10815
10816 result = PyLong_FromSsize_t(iresult);
10817
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010818 if (kind2 != kind)
10819 PyMem_Free(buf2);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010820
10821 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010822
Guido van Rossumd57fd912000-03-10 22:53:23 +000010823 return result;
10824}
10825
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010826PyDoc_STRVAR(encode__doc__,
Victor Stinnerc911bbf2010-11-07 19:04:46 +000010827 "S.encode(encoding='utf-8', errors='strict') -> bytes\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010828\n\
Victor Stinnere14e2122010-11-07 18:41:46 +000010829Encode S using the codec registered for encoding. Default encoding\n\
10830is 'utf-8'. errors may be given to set a different error\n\
Fred Drakee4315f52000-05-09 19:53:39 +000010831handling scheme. Default is 'strict' meaning that encoding errors raise\n\
Walter Dörwald3aeb6322002-09-02 13:14:32 +000010832a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and\n\
10833'xmlcharrefreplace' as well as any other name registered with\n\
10834codecs.register_error that can handle UnicodeEncodeErrors.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010835
10836static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010837unicode_encode(PyObject *self, PyObject *args, PyObject *kwargs)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010838{
Benjamin Peterson308d6372009-09-18 21:42:35 +000010839 static char *kwlist[] = {"encoding", "errors", 0};
Guido van Rossumd57fd912000-03-10 22:53:23 +000010840 char *encoding = NULL;
10841 char *errors = NULL;
Guido van Rossum35d94282007-08-27 18:20:11 +000010842
Benjamin Peterson308d6372009-09-18 21:42:35 +000010843 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:encode",
10844 kwlist, &encoding, &errors))
Guido van Rossumd57fd912000-03-10 22:53:23 +000010845 return NULL;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010846 return PyUnicode_AsEncodedString(self, encoding, errors);
Marc-André Lemburgd2d45982004-07-08 17:57:32 +000010847}
10848
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010849PyDoc_STRVAR(expandtabs__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010850 "S.expandtabs([tabsize]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010851\n\
10852Return a copy of S where all tab characters are expanded using spaces.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010853If tabsize is not given, a tab size of 8 characters is assumed.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010854
10855static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010856unicode_expandtabs(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010857{
Antoine Pitroue71d5742011-10-04 15:55:09 +020010858 Py_ssize_t i, j, line_pos, src_len, incr;
10859 Py_UCS4 ch;
10860 PyObject *u;
10861 void *src_data, *dest_data;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010862 int tabsize = 8;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010863 int kind;
Antoine Pitroue19aa382011-10-04 16:04:01 +020010864 int found;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010865
10866 if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize))
Benjamin Peterson29060642009-01-31 22:14:21 +000010867 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010868
Antoine Pitrou22425222011-10-04 19:10:51 +020010869 if (PyUnicode_READY(self) == -1)
10870 return NULL;
10871
Thomas Wouters7e474022000-07-16 12:04:32 +000010872 /* First pass: determine size of output string */
Antoine Pitroue71d5742011-10-04 15:55:09 +020010873 src_len = PyUnicode_GET_LENGTH(self);
10874 i = j = line_pos = 0;
10875 kind = PyUnicode_KIND(self);
10876 src_data = PyUnicode_DATA(self);
Antoine Pitroue19aa382011-10-04 16:04:01 +020010877 found = 0;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010878 for (; i < src_len; i++) {
10879 ch = PyUnicode_READ(kind, src_data, i);
10880 if (ch == '\t') {
Antoine Pitroue19aa382011-10-04 16:04:01 +020010881 found = 1;
Benjamin Peterson29060642009-01-31 22:14:21 +000010882 if (tabsize > 0) {
Antoine Pitroue71d5742011-10-04 15:55:09 +020010883 incr = tabsize - (line_pos % tabsize); /* cannot overflow */
Benjamin Peterson29060642009-01-31 22:14:21 +000010884 if (j > PY_SSIZE_T_MAX - incr)
Antoine Pitroue71d5742011-10-04 15:55:09 +020010885 goto overflow;
10886 line_pos += incr;
Benjamin Peterson29060642009-01-31 22:14:21 +000010887 j += incr;
Christian Heimesdd15f6c2008-03-16 00:07:10 +000010888 }
Benjamin Peterson29060642009-01-31 22:14:21 +000010889 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000010890 else {
Benjamin Peterson29060642009-01-31 22:14:21 +000010891 if (j > PY_SSIZE_T_MAX - 1)
Antoine Pitroue71d5742011-10-04 15:55:09 +020010892 goto overflow;
10893 line_pos++;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010894 j++;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010895 if (ch == '\n' || ch == '\r')
10896 line_pos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010897 }
Antoine Pitroue71d5742011-10-04 15:55:09 +020010898 }
Victor Stinnerc4b49542011-12-11 22:44:26 +010010899 if (!found)
10900 return unicode_result_unchanged(self);
Guido van Rossumcd16bf62007-06-13 18:07:49 +000010901
Guido van Rossumd57fd912000-03-10 22:53:23 +000010902 /* Second pass: create output string and fill it */
Antoine Pitroue71d5742011-10-04 15:55:09 +020010903 u = PyUnicode_New(j, PyUnicode_MAX_CHAR_VALUE(self));
Guido van Rossumd57fd912000-03-10 22:53:23 +000010904 if (!u)
10905 return NULL;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010906 dest_data = PyUnicode_DATA(u);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010907
Antoine Pitroue71d5742011-10-04 15:55:09 +020010908 i = j = line_pos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010909
Antoine Pitroue71d5742011-10-04 15:55:09 +020010910 for (; i < src_len; i++) {
10911 ch = PyUnicode_READ(kind, src_data, i);
10912 if (ch == '\t') {
Benjamin Peterson29060642009-01-31 22:14:21 +000010913 if (tabsize > 0) {
Antoine Pitroue71d5742011-10-04 15:55:09 +020010914 incr = tabsize - (line_pos % tabsize);
10915 line_pos += incr;
Victor Stinnerda79e632012-02-22 13:37:04 +010010916 FILL(kind, dest_data, ' ', j, incr);
10917 j += incr;
Benjamin Peterson29060642009-01-31 22:14:21 +000010918 }
Benjamin Peterson14339b62009-01-31 16:36:08 +000010919 }
Benjamin Peterson29060642009-01-31 22:14:21 +000010920 else {
Antoine Pitroue71d5742011-10-04 15:55:09 +020010921 line_pos++;
10922 PyUnicode_WRITE(kind, dest_data, j, ch);
Christian Heimesdd15f6c2008-03-16 00:07:10 +000010923 j++;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010924 if (ch == '\n' || ch == '\r')
10925 line_pos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010926 }
Antoine Pitroue71d5742011-10-04 15:55:09 +020010927 }
10928 assert (j == PyUnicode_GET_LENGTH(u));
Victor Stinnerd3df8ab2011-11-22 01:22:34 +010010929 return unicode_result(u);
Christian Heimesdd15f6c2008-03-16 00:07:10 +000010930
Antoine Pitroue71d5742011-10-04 15:55:09 +020010931 overflow:
Christian Heimesdd15f6c2008-03-16 00:07:10 +000010932 PyErr_SetString(PyExc_OverflowError, "new string is too long");
10933 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010934}
10935
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010936PyDoc_STRVAR(find__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010937 "S.find(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010938\n\
10939Return the lowest index in S where substring sub is found,\n\
Senthil Kumaran53516a82011-07-27 23:33:54 +080010940such that sub is contained within S[start:end]. Optional\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010941arguments start and end are interpreted as in slice notation.\n\
10942\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010943Return -1 on failure.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010944
10945static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010946unicode_find(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010947{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010948 PyObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +000010949 Py_ssize_t start;
10950 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010951 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010952
Jesus Ceaac451502011-04-20 17:09:23 +020010953 if (!stringlib_parse_args_finds_unicode("find", args, &substring,
10954 &start, &end))
Guido van Rossumd57fd912000-03-10 22:53:23 +000010955 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010956
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010957 if (PyUnicode_READY(self) == -1)
10958 return NULL;
10959 if (PyUnicode_READY(substring) == -1)
10960 return NULL;
10961
Victor Stinner7931d9a2011-11-04 00:22:48 +010010962 result = any_find_slice(1, self, substring, start, end);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010963
10964 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010965
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010966 if (result == -2)
10967 return NULL;
10968
Christian Heimes217cfd12007-12-02 14:31:20 +000010969 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010970}
10971
10972static PyObject *
Victor Stinner2fe5ced2011-10-02 00:25:40 +020010973unicode_getitem(PyObject *self, Py_ssize_t index)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010974{
Victor Stinnerb6cd0142012-05-03 02:17:04 +020010975 void *data;
10976 enum PyUnicode_Kind kind;
10977 Py_UCS4 ch;
10978 PyObject *res;
10979
10980 if (!PyUnicode_Check(self) || PyUnicode_READY(self) == -1) {
10981 PyErr_BadArgument();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010982 return NULL;
Victor Stinnerb6cd0142012-05-03 02:17:04 +020010983 }
10984 if (index < 0 || index >= PyUnicode_GET_LENGTH(self)) {
10985 PyErr_SetString(PyExc_IndexError, "string index out of range");
10986 return NULL;
10987 }
10988 kind = PyUnicode_KIND(self);
10989 data = PyUnicode_DATA(self);
10990 ch = PyUnicode_READ(kind, data, index);
10991 if (ch < 256)
10992 return get_latin1_char(ch);
10993
10994 res = PyUnicode_New(1, ch);
10995 if (res == NULL)
10996 return NULL;
10997 kind = PyUnicode_KIND(res);
10998 data = PyUnicode_DATA(res);
10999 PyUnicode_WRITE(kind, data, 0, ch);
11000 assert(_PyUnicode_CheckConsistency(res, 1));
11001 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011002}
11003
Guido van Rossumc2504932007-09-18 19:42:40 +000011004/* Believe it or not, this produces the same value for ASCII strings
Mark Dickinson57e683e2011-09-24 18:18:40 +010011005 as bytes_hash(). */
Benjamin Peterson8f67d082010-10-17 20:54:53 +000011006static Py_hash_t
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011007unicode_hash(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011008{
Guido van Rossumc2504932007-09-18 19:42:40 +000011009 Py_ssize_t len;
Mark Dickinson57e683e2011-09-24 18:18:40 +010011010 Py_uhash_t x;
Guido van Rossumc2504932007-09-18 19:42:40 +000011011
Benjamin Petersonf6622c82012-04-09 14:53:07 -040011012#ifdef Py_DEBUG
Benjamin Peterson69e97272012-02-21 11:08:50 -050011013 assert(_Py_HashSecret_Initialized);
Benjamin Petersonf6622c82012-04-09 14:53:07 -040011014#endif
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011015 if (_PyUnicode_HASH(self) != -1)
11016 return _PyUnicode_HASH(self);
11017 if (PyUnicode_READY(self) == -1)
11018 return -1;
11019 len = PyUnicode_GET_LENGTH(self);
Georg Brandl16fa2a12012-02-21 00:50:13 +010011020 /*
11021 We make the hash of the empty string be 0, rather than using
11022 (prefix ^ suffix), since this slightly obfuscates the hash secret
11023 */
11024 if (len == 0) {
11025 _PyUnicode_HASH(self) = 0;
11026 return 0;
11027 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011028
11029 /* The hash function as a macro, gets expanded three times below. */
Georg Brandl2fb477c2012-02-21 00:33:36 +010011030#define HASH(P) \
11031 x ^= (Py_uhash_t) *P << 7; \
11032 while (--len >= 0) \
11033 x = (_PyHASH_MULTIPLIER * x) ^ (Py_uhash_t) *P++; \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011034
Georg Brandl2fb477c2012-02-21 00:33:36 +010011035 x = (Py_uhash_t) _Py_HashSecret.prefix;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011036 switch (PyUnicode_KIND(self)) {
11037 case PyUnicode_1BYTE_KIND: {
11038 const unsigned char *c = PyUnicode_1BYTE_DATA(self);
11039 HASH(c);
11040 break;
11041 }
11042 case PyUnicode_2BYTE_KIND: {
11043 const Py_UCS2 *s = PyUnicode_2BYTE_DATA(self);
11044 HASH(s);
11045 break;
11046 }
11047 default: {
11048 Py_UCS4 *l;
11049 assert(PyUnicode_KIND(self) == PyUnicode_4BYTE_KIND &&
11050 "Impossible switch case in unicode_hash");
11051 l = PyUnicode_4BYTE_DATA(self);
11052 HASH(l);
11053 break;
11054 }
11055 }
Georg Brandl2fb477c2012-02-21 00:33:36 +010011056 x ^= (Py_uhash_t) PyUnicode_GET_LENGTH(self);
11057 x ^= (Py_uhash_t) _Py_HashSecret.suffix;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011058
Guido van Rossumc2504932007-09-18 19:42:40 +000011059 if (x == -1)
11060 x = -2;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011061 _PyUnicode_HASH(self) = x;
Guido van Rossumc2504932007-09-18 19:42:40 +000011062 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011063}
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011064#undef HASH
Guido van Rossumd57fd912000-03-10 22:53:23 +000011065
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011066PyDoc_STRVAR(index__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011067 "S.index(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011068\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011069Like S.find() but raise ValueError when the substring is not found.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011070
11071static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011072unicode_index(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011073{
Martin v. Löwis18e16552006-02-15 17:27:45 +000011074 Py_ssize_t result;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011075 PyObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +000011076 Py_ssize_t start;
11077 Py_ssize_t end;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011078
Jesus Ceaac451502011-04-20 17:09:23 +020011079 if (!stringlib_parse_args_finds_unicode("index", args, &substring,
11080 &start, &end))
Guido van Rossumd57fd912000-03-10 22:53:23 +000011081 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011082
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011083 if (PyUnicode_READY(self) == -1)
11084 return NULL;
11085 if (PyUnicode_READY(substring) == -1)
11086 return NULL;
11087
Victor Stinner7931d9a2011-11-04 00:22:48 +010011088 result = any_find_slice(1, self, substring, start, end);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011089
11090 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000011091
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011092 if (result == -2)
11093 return NULL;
11094
Guido van Rossumd57fd912000-03-10 22:53:23 +000011095 if (result < 0) {
11096 PyErr_SetString(PyExc_ValueError, "substring not found");
11097 return NULL;
11098 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000011099
Christian Heimes217cfd12007-12-02 14:31:20 +000011100 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011101}
11102
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011103PyDoc_STRVAR(islower__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011104 "S.islower() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011105\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +000011106Return True if all cased characters in S are lowercase and there is\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011107at least one cased character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011108
11109static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011110unicode_islower(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011111{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011112 Py_ssize_t i, length;
11113 int kind;
11114 void *data;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011115 int cased;
11116
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011117 if (PyUnicode_READY(self) == -1)
11118 return NULL;
11119 length = PyUnicode_GET_LENGTH(self);
11120 kind = PyUnicode_KIND(self);
11121 data = PyUnicode_DATA(self);
11122
Guido van Rossumd57fd912000-03-10 22:53:23 +000011123 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011124 if (length == 1)
11125 return PyBool_FromLong(
11126 Py_UNICODE_ISLOWER(PyUnicode_READ(kind, data, 0)));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011127
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011128 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011129 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011130 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011131
Guido van Rossumd57fd912000-03-10 22:53:23 +000011132 cased = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011133 for (i = 0; i < length; i++) {
11134 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Tim Petersced69f82003-09-16 20:30:58 +000011135
Benjamin Peterson29060642009-01-31 22:14:21 +000011136 if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch))
11137 return PyBool_FromLong(0);
11138 else if (!cased && Py_UNICODE_ISLOWER(ch))
11139 cased = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011140 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011141 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011142}
11143
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011144PyDoc_STRVAR(isupper__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011145 "S.isupper() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011146\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011147Return True if all cased characters in S are uppercase and there is\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011148at least one cased character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011149
11150static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011151unicode_isupper(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011152{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011153 Py_ssize_t i, length;
11154 int kind;
11155 void *data;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011156 int cased;
11157
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011158 if (PyUnicode_READY(self) == -1)
11159 return NULL;
11160 length = PyUnicode_GET_LENGTH(self);
11161 kind = PyUnicode_KIND(self);
11162 data = PyUnicode_DATA(self);
11163
Guido van Rossumd57fd912000-03-10 22:53:23 +000011164 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011165 if (length == 1)
11166 return PyBool_FromLong(
11167 Py_UNICODE_ISUPPER(PyUnicode_READ(kind, data, 0)) != 0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011168
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011169 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011170 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011171 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011172
Guido van Rossumd57fd912000-03-10 22:53:23 +000011173 cased = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011174 for (i = 0; i < length; i++) {
11175 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Tim Petersced69f82003-09-16 20:30:58 +000011176
Benjamin Peterson29060642009-01-31 22:14:21 +000011177 if (Py_UNICODE_ISLOWER(ch) || Py_UNICODE_ISTITLE(ch))
11178 return PyBool_FromLong(0);
11179 else if (!cased && Py_UNICODE_ISUPPER(ch))
11180 cased = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011181 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011182 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011183}
11184
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011185PyDoc_STRVAR(istitle__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011186 "S.istitle() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011187\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011188Return True if S is a titlecased string and there is at least one\n\
11189character in S, i.e. upper- and titlecase characters may only\n\
11190follow uncased characters and lowercase characters only cased ones.\n\
11191Return False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011192
11193static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011194unicode_istitle(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011195{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011196 Py_ssize_t i, length;
11197 int kind;
11198 void *data;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011199 int cased, previous_is_cased;
11200
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011201 if (PyUnicode_READY(self) == -1)
11202 return NULL;
11203 length = PyUnicode_GET_LENGTH(self);
11204 kind = PyUnicode_KIND(self);
11205 data = PyUnicode_DATA(self);
11206
Guido van Rossumd57fd912000-03-10 22:53:23 +000011207 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011208 if (length == 1) {
11209 Py_UCS4 ch = PyUnicode_READ(kind, data, 0);
11210 return PyBool_FromLong((Py_UNICODE_ISTITLE(ch) != 0) ||
11211 (Py_UNICODE_ISUPPER(ch) != 0));
11212 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000011213
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011214 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011215 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011216 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011217
Guido van Rossumd57fd912000-03-10 22:53:23 +000011218 cased = 0;
11219 previous_is_cased = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011220 for (i = 0; i < length; i++) {
11221 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Tim Petersced69f82003-09-16 20:30:58 +000011222
Benjamin Peterson29060642009-01-31 22:14:21 +000011223 if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) {
11224 if (previous_is_cased)
11225 return PyBool_FromLong(0);
11226 previous_is_cased = 1;
11227 cased = 1;
11228 }
11229 else if (Py_UNICODE_ISLOWER(ch)) {
11230 if (!previous_is_cased)
11231 return PyBool_FromLong(0);
11232 previous_is_cased = 1;
11233 cased = 1;
11234 }
11235 else
11236 previous_is_cased = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011237 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011238 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011239}
11240
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011241PyDoc_STRVAR(isspace__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011242 "S.isspace() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011243\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011244Return True if all characters in S are whitespace\n\
11245and there is at least one character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011246
11247static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011248unicode_isspace(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011249{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011250 Py_ssize_t i, length;
11251 int kind;
11252 void *data;
11253
11254 if (PyUnicode_READY(self) == -1)
11255 return NULL;
11256 length = PyUnicode_GET_LENGTH(self);
11257 kind = PyUnicode_KIND(self);
11258 data = PyUnicode_DATA(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011259
Guido van Rossumd57fd912000-03-10 22:53:23 +000011260 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011261 if (length == 1)
11262 return PyBool_FromLong(
11263 Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, 0)));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011264
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011265 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011266 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011267 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011268
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011269 for (i = 0; i < length; i++) {
11270 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Ezio Melotti93e7afc2011-08-22 14:08:38 +030011271 if (!Py_UNICODE_ISSPACE(ch))
Benjamin Peterson29060642009-01-31 22:14:21 +000011272 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011273 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011274 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011275}
11276
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011277PyDoc_STRVAR(isalpha__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011278 "S.isalpha() -> bool\n\
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011279\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011280Return True if all characters in S are alphabetic\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011281and there is at least one character in S, False otherwise.");
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011282
11283static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011284unicode_isalpha(PyObject *self)
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011285{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011286 Py_ssize_t i, length;
11287 int kind;
11288 void *data;
11289
11290 if (PyUnicode_READY(self) == -1)
11291 return NULL;
11292 length = PyUnicode_GET_LENGTH(self);
11293 kind = PyUnicode_KIND(self);
11294 data = PyUnicode_DATA(self);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011295
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011296 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011297 if (length == 1)
11298 return PyBool_FromLong(
11299 Py_UNICODE_ISALPHA(PyUnicode_READ(kind, data, 0)));
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011300
11301 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011302 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011303 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011304
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011305 for (i = 0; i < length; i++) {
11306 if (!Py_UNICODE_ISALPHA(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011307 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011308 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011309 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011310}
11311
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011312PyDoc_STRVAR(isalnum__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011313 "S.isalnum() -> bool\n\
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011314\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011315Return True if all characters in S are alphanumeric\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011316and there is at least one character in S, False otherwise.");
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011317
11318static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011319unicode_isalnum(PyObject *self)
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011320{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011321 int kind;
11322 void *data;
11323 Py_ssize_t len, i;
11324
11325 if (PyUnicode_READY(self) == -1)
11326 return NULL;
11327
11328 kind = PyUnicode_KIND(self);
11329 data = PyUnicode_DATA(self);
11330 len = PyUnicode_GET_LENGTH(self);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011331
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011332 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011333 if (len == 1) {
11334 const Py_UCS4 ch = PyUnicode_READ(kind, data, 0);
11335 return PyBool_FromLong(Py_UNICODE_ISALNUM(ch));
11336 }
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011337
11338 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011339 if (len == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011340 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011341
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011342 for (i = 0; i < len; i++) {
11343 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Ezio Melotti93e7afc2011-08-22 14:08:38 +030011344 if (!Py_UNICODE_ISALNUM(ch))
Benjamin Peterson29060642009-01-31 22:14:21 +000011345 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011346 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011347 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011348}
11349
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011350PyDoc_STRVAR(isdecimal__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011351 "S.isdecimal() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011352\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +000011353Return True if there are only decimal characters in S,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011354False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011355
11356static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011357unicode_isdecimal(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011358{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011359 Py_ssize_t i, length;
11360 int kind;
11361 void *data;
11362
11363 if (PyUnicode_READY(self) == -1)
11364 return NULL;
11365 length = PyUnicode_GET_LENGTH(self);
11366 kind = PyUnicode_KIND(self);
11367 data = PyUnicode_DATA(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011368
Guido van Rossumd57fd912000-03-10 22:53:23 +000011369 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011370 if (length == 1)
11371 return PyBool_FromLong(
11372 Py_UNICODE_ISDECIMAL(PyUnicode_READ(kind, data, 0)));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011373
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011374 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011375 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011376 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011377
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011378 for (i = 0; i < length; i++) {
11379 if (!Py_UNICODE_ISDECIMAL(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011380 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011381 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011382 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011383}
11384
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011385PyDoc_STRVAR(isdigit__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011386 "S.isdigit() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011387\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011388Return True if all characters in S are digits\n\
11389and there is at least one character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011390
11391static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011392unicode_isdigit(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011393{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011394 Py_ssize_t i, length;
11395 int kind;
11396 void *data;
11397
11398 if (PyUnicode_READY(self) == -1)
11399 return NULL;
11400 length = PyUnicode_GET_LENGTH(self);
11401 kind = PyUnicode_KIND(self);
11402 data = PyUnicode_DATA(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011403
Guido van Rossumd57fd912000-03-10 22:53:23 +000011404 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011405 if (length == 1) {
11406 const Py_UCS4 ch = PyUnicode_READ(kind, data, 0);
11407 return PyBool_FromLong(Py_UNICODE_ISDIGIT(ch));
11408 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000011409
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011410 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011411 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011412 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011413
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011414 for (i = 0; i < length; i++) {
11415 if (!Py_UNICODE_ISDIGIT(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011416 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011417 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011418 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011419}
11420
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011421PyDoc_STRVAR(isnumeric__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011422 "S.isnumeric() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011423\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +000011424Return True if there are only numeric characters in S,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011425False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011426
11427static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011428unicode_isnumeric(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011429{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011430 Py_ssize_t i, length;
11431 int kind;
11432 void *data;
11433
11434 if (PyUnicode_READY(self) == -1)
11435 return NULL;
11436 length = PyUnicode_GET_LENGTH(self);
11437 kind = PyUnicode_KIND(self);
11438 data = PyUnicode_DATA(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011439
Guido van Rossumd57fd912000-03-10 22:53:23 +000011440 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011441 if (length == 1)
11442 return PyBool_FromLong(
11443 Py_UNICODE_ISNUMERIC(PyUnicode_READ(kind, data, 0)));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011444
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011445 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011446 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011447 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011448
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011449 for (i = 0; i < length; i++) {
11450 if (!Py_UNICODE_ISNUMERIC(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011451 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011452 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011453 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011454}
11455
Martin v. Löwis47383402007-08-15 07:32:56 +000011456int
11457PyUnicode_IsIdentifier(PyObject *self)
11458{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011459 int kind;
11460 void *data;
11461 Py_ssize_t i;
Ezio Melotti93e7afc2011-08-22 14:08:38 +030011462 Py_UCS4 first;
Martin v. Löwis47383402007-08-15 07:32:56 +000011463
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011464 if (PyUnicode_READY(self) == -1) {
11465 Py_FatalError("identifier not ready");
Benjamin Peterson29060642009-01-31 22:14:21 +000011466 return 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011467 }
11468
11469 /* Special case for empty strings */
11470 if (PyUnicode_GET_LENGTH(self) == 0)
11471 return 0;
11472 kind = PyUnicode_KIND(self);
11473 data = PyUnicode_DATA(self);
Martin v. Löwis47383402007-08-15 07:32:56 +000011474
11475 /* PEP 3131 says that the first character must be in
11476 XID_Start and subsequent characters in XID_Continue,
11477 and for the ASCII range, the 2.x rules apply (i.e
Benjamin Peterson14339b62009-01-31 16:36:08 +000011478 start with letters and underscore, continue with
Martin v. Löwis47383402007-08-15 07:32:56 +000011479 letters, digits, underscore). However, given the current
11480 definition of XID_Start and XID_Continue, it is sufficient
11481 to check just for these, except that _ must be allowed
11482 as starting an identifier. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011483 first = PyUnicode_READ(kind, data, 0);
Benjamin Petersonf413b802011-08-12 22:17:18 -050011484 if (!_PyUnicode_IsXidStart(first) && first != 0x5F /* LOW LINE */)
Martin v. Löwis47383402007-08-15 07:32:56 +000011485 return 0;
11486
Benjamin Peterson9c6e6a02011-09-28 08:09:05 -040011487 for (i = 1; i < PyUnicode_GET_LENGTH(self); i++)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011488 if (!_PyUnicode_IsXidContinue(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011489 return 0;
Martin v. Löwis47383402007-08-15 07:32:56 +000011490 return 1;
11491}
11492
11493PyDoc_STRVAR(isidentifier__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011494 "S.isidentifier() -> bool\n\
Martin v. Löwis47383402007-08-15 07:32:56 +000011495\n\
11496Return True if S is a valid identifier according\n\
11497to the language definition.");
11498
11499static PyObject*
11500unicode_isidentifier(PyObject *self)
11501{
11502 return PyBool_FromLong(PyUnicode_IsIdentifier(self));
11503}
11504
Georg Brandl559e5d72008-06-11 18:37:52 +000011505PyDoc_STRVAR(isprintable__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011506 "S.isprintable() -> bool\n\
Georg Brandl559e5d72008-06-11 18:37:52 +000011507\n\
11508Return True if all characters in S are considered\n\
11509printable in repr() or S is empty, False otherwise.");
11510
11511static PyObject*
11512unicode_isprintable(PyObject *self)
11513{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011514 Py_ssize_t i, length;
11515 int kind;
11516 void *data;
11517
11518 if (PyUnicode_READY(self) == -1)
11519 return NULL;
11520 length = PyUnicode_GET_LENGTH(self);
11521 kind = PyUnicode_KIND(self);
11522 data = PyUnicode_DATA(self);
Georg Brandl559e5d72008-06-11 18:37:52 +000011523
11524 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011525 if (length == 1)
11526 return PyBool_FromLong(
11527 Py_UNICODE_ISPRINTABLE(PyUnicode_READ(kind, data, 0)));
Georg Brandl559e5d72008-06-11 18:37:52 +000011528
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011529 for (i = 0; i < length; i++) {
11530 if (!Py_UNICODE_ISPRINTABLE(PyUnicode_READ(kind, data, i))) {
Georg Brandl559e5d72008-06-11 18:37:52 +000011531 Py_RETURN_FALSE;
11532 }
11533 }
11534 Py_RETURN_TRUE;
11535}
11536
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011537PyDoc_STRVAR(join__doc__,
Georg Brandl495f7b52009-10-27 15:28:25 +000011538 "S.join(iterable) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011539\n\
11540Return a string which is the concatenation of the strings in the\n\
Georg Brandl495f7b52009-10-27 15:28:25 +000011541iterable. The separator between elements is S.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011542
11543static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000011544unicode_join(PyObject *self, PyObject *data)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011545{
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000011546 return PyUnicode_Join(self, data);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011547}
11548
Martin v. Löwis18e16552006-02-15 17:27:45 +000011549static Py_ssize_t
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011550unicode_length(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011551{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011552 if (PyUnicode_READY(self) == -1)
11553 return -1;
11554 return PyUnicode_GET_LENGTH(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011555}
11556
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011557PyDoc_STRVAR(ljust__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011558 "S.ljust(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011559\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +000011560Return S left-justified in a Unicode string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000011561done using the specified fill character (default is a space).");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011562
11563static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +020011564unicode_ljust(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011565{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000011566 Py_ssize_t width;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011567 Py_UCS4 fillchar = ' ';
11568
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000011569 if (!PyArg_ParseTuple(args, "n|O&:ljust", &width, convert_uc, &fillchar))
Guido van Rossumd57fd912000-03-10 22:53:23 +000011570 return NULL;
11571
Benjamin Petersonbac79492012-01-14 13:34:47 -050011572 if (PyUnicode_READY(self) == -1)
Victor Stinnerc4b49542011-12-11 22:44:26 +010011573 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011574
Victor Stinnerc4b49542011-12-11 22:44:26 +010011575 if (PyUnicode_GET_LENGTH(self) >= width)
11576 return unicode_result_unchanged(self);
11577
11578 return pad(self, 0, width - PyUnicode_GET_LENGTH(self), fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011579}
11580
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011581PyDoc_STRVAR(lower__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011582 "S.lower() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011583\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011584Return a copy of the string S converted to lowercase.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011585
11586static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020011587unicode_lower(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011588{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -050011589 if (PyUnicode_READY(self) == -1)
11590 return NULL;
11591 if (PyUnicode_IS_ASCII(self))
11592 return ascii_upper_or_lower(self, 1);
Victor Stinnerb0800dc2012-02-25 00:47:08 +010011593 return case_operation(self, do_lower);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011594}
11595
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011596#define LEFTSTRIP 0
11597#define RIGHTSTRIP 1
11598#define BOTHSTRIP 2
11599
11600/* Arrays indexed by above */
11601static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"};
11602
11603#define STRIPNAME(i) (stripformat[i]+3)
11604
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011605/* externally visible for str.strip(unicode) */
11606PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011607_PyUnicode_XStrip(PyObject *self, int striptype, PyObject *sepobj)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011608{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011609 void *data;
11610 int kind;
11611 Py_ssize_t i, j, len;
11612 BLOOM_MASK sepmask;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011613
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011614 if (PyUnicode_READY(self) == -1 || PyUnicode_READY(sepobj) == -1)
11615 return NULL;
11616
11617 kind = PyUnicode_KIND(self);
11618 data = PyUnicode_DATA(self);
11619 len = PyUnicode_GET_LENGTH(self);
11620 sepmask = make_bloom_mask(PyUnicode_KIND(sepobj),
11621 PyUnicode_DATA(sepobj),
11622 PyUnicode_GET_LENGTH(sepobj));
Thomas Wouters477c8d52006-05-27 19:21:47 +000011623
Benjamin Peterson14339b62009-01-31 16:36:08 +000011624 i = 0;
11625 if (striptype != RIGHTSTRIP) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011626 while (i < len &&
11627 BLOOM_MEMBER(sepmask, PyUnicode_READ(kind, data, i), sepobj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011628 i++;
11629 }
Benjamin Peterson14339b62009-01-31 16:36:08 +000011630 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011631
Benjamin Peterson14339b62009-01-31 16:36:08 +000011632 j = len;
11633 if (striptype != LEFTSTRIP) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011634 do {
11635 j--;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011636 } while (j >= i &&
11637 BLOOM_MEMBER(sepmask, PyUnicode_READ(kind, data, j), sepobj));
Benjamin Peterson29060642009-01-31 22:14:21 +000011638 j++;
Benjamin Peterson14339b62009-01-31 16:36:08 +000011639 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011640
Victor Stinner7931d9a2011-11-04 00:22:48 +010011641 return PyUnicode_Substring(self, i, j);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011642}
11643
11644PyObject*
11645PyUnicode_Substring(PyObject *self, Py_ssize_t start, Py_ssize_t end)
11646{
11647 unsigned char *data;
11648 int kind;
Victor Stinner12bab6d2011-10-01 01:53:49 +020011649 Py_ssize_t length;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011650
Victor Stinnerde636f32011-10-01 03:55:54 +020011651 if (PyUnicode_READY(self) == -1)
11652 return NULL;
11653
Victor Stinner684d5fd2012-05-03 02:32:34 +020011654 length = PyUnicode_GET_LENGTH(self);
11655 end = Py_MIN(end, length);
Victor Stinnerde636f32011-10-01 03:55:54 +020011656
Victor Stinner684d5fd2012-05-03 02:32:34 +020011657 if (start == 0 && end == length)
Victor Stinnerc4b49542011-12-11 22:44:26 +010011658 return unicode_result_unchanged(self);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011659
Victor Stinnerde636f32011-10-01 03:55:54 +020011660 if (start < 0 || end < 0) {
Victor Stinner12bab6d2011-10-01 01:53:49 +020011661 PyErr_SetString(PyExc_IndexError, "string index out of range");
11662 return NULL;
11663 }
Victor Stinner684d5fd2012-05-03 02:32:34 +020011664 if (start >= length || end < start) {
Victor Stinner3a7f79772012-05-03 03:36:40 +020011665 Py_INCREF(unicode_empty);
11666 return unicode_empty;
Victor Stinner684d5fd2012-05-03 02:32:34 +020011667 }
Victor Stinner12bab6d2011-10-01 01:53:49 +020011668
Victor Stinner684d5fd2012-05-03 02:32:34 +020011669 length = end - start;
Victor Stinnerb9275c12011-10-05 14:01:42 +020011670 if (PyUnicode_IS_ASCII(self)) {
Victor Stinnerb9275c12011-10-05 14:01:42 +020011671 data = PyUnicode_1BYTE_DATA(self);
Victor Stinnerd3f08822012-05-29 12:57:52 +020011672 return _PyUnicode_FromASCII((char*)(data + start), length);
Victor Stinnerb9275c12011-10-05 14:01:42 +020011673 }
11674 else {
11675 kind = PyUnicode_KIND(self);
11676 data = PyUnicode_1BYTE_DATA(self);
11677 return PyUnicode_FromKindAndData(kind,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020011678 data + kind * start,
Victor Stinnerb9275c12011-10-05 14:01:42 +020011679 length);
11680 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011681}
Guido van Rossumd57fd912000-03-10 22:53:23 +000011682
11683static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011684do_strip(PyObject *self, int striptype)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011685{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011686 int kind;
11687 void *data;
11688 Py_ssize_t len, i, j;
11689
11690 if (PyUnicode_READY(self) == -1)
11691 return NULL;
11692
11693 kind = PyUnicode_KIND(self);
11694 data = PyUnicode_DATA(self);
11695 len = PyUnicode_GET_LENGTH(self);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011696
Benjamin Peterson14339b62009-01-31 16:36:08 +000011697 i = 0;
11698 if (striptype != RIGHTSTRIP) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011699 while (i < len && Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, i))) {
Benjamin Peterson14339b62009-01-31 16:36:08 +000011700 i++;
11701 }
11702 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011703
Benjamin Peterson14339b62009-01-31 16:36:08 +000011704 j = len;
11705 if (striptype != LEFTSTRIP) {
11706 do {
11707 j--;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011708 } while (j >= i && Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, j)));
Benjamin Peterson14339b62009-01-31 16:36:08 +000011709 j++;
11710 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011711
Victor Stinner7931d9a2011-11-04 00:22:48 +010011712 return PyUnicode_Substring(self, i, j);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011713}
11714
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011715
11716static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011717do_argstrip(PyObject *self, int striptype, PyObject *args)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011718{
Benjamin Peterson14339b62009-01-31 16:36:08 +000011719 PyObject *sep = NULL;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011720
Benjamin Peterson14339b62009-01-31 16:36:08 +000011721 if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep))
11722 return NULL;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011723
Benjamin Peterson14339b62009-01-31 16:36:08 +000011724 if (sep != NULL && sep != Py_None) {
11725 if (PyUnicode_Check(sep))
11726 return _PyUnicode_XStrip(self, striptype, sep);
11727 else {
11728 PyErr_Format(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000011729 "%s arg must be None or str",
11730 STRIPNAME(striptype));
Benjamin Peterson14339b62009-01-31 16:36:08 +000011731 return NULL;
11732 }
11733 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011734
Benjamin Peterson14339b62009-01-31 16:36:08 +000011735 return do_strip(self, striptype);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011736}
11737
11738
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011739PyDoc_STRVAR(strip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011740 "S.strip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011741\n\
11742Return a copy of the string S with leading and trailing\n\
11743whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000011744If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011745
11746static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011747unicode_strip(PyObject *self, PyObject *args)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011748{
Benjamin Peterson14339b62009-01-31 16:36:08 +000011749 if (PyTuple_GET_SIZE(args) == 0)
11750 return do_strip(self, BOTHSTRIP); /* Common case */
11751 else
11752 return do_argstrip(self, BOTHSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011753}
11754
11755
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011756PyDoc_STRVAR(lstrip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011757 "S.lstrip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011758\n\
11759Return a copy of the string S with leading whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000011760If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011761
11762static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011763unicode_lstrip(PyObject *self, PyObject *args)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011764{
Benjamin Peterson14339b62009-01-31 16:36:08 +000011765 if (PyTuple_GET_SIZE(args) == 0)
11766 return do_strip(self, LEFTSTRIP); /* Common case */
11767 else
11768 return do_argstrip(self, LEFTSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011769}
11770
11771
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011772PyDoc_STRVAR(rstrip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011773 "S.rstrip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011774\n\
11775Return a copy of the string S with trailing whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000011776If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011777
11778static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011779unicode_rstrip(PyObject *self, PyObject *args)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011780{
Benjamin Peterson14339b62009-01-31 16:36:08 +000011781 if (PyTuple_GET_SIZE(args) == 0)
11782 return do_strip(self, RIGHTSTRIP); /* Common case */
11783 else
11784 return do_argstrip(self, RIGHTSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011785}
11786
11787
Guido van Rossumd57fd912000-03-10 22:53:23 +000011788static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011789unicode_repeat(PyObject *str, Py_ssize_t len)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011790{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011791 PyObject *u;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011792 Py_ssize_t nchars, n;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011793
Georg Brandl222de0f2009-04-12 12:01:50 +000011794 if (len < 1) {
11795 Py_INCREF(unicode_empty);
Victor Stinnera464fc12011-10-02 20:39:30 +020011796 return unicode_empty;
Georg Brandl222de0f2009-04-12 12:01:50 +000011797 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000011798
Victor Stinnerc4b49542011-12-11 22:44:26 +010011799 /* no repeat, return original string */
11800 if (len == 1)
11801 return unicode_result_unchanged(str);
Tim Peters8f422462000-09-09 06:13:41 +000011802
Benjamin Petersonbac79492012-01-14 13:34:47 -050011803 if (PyUnicode_READY(str) == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011804 return NULL;
11805
Victor Stinnerc759f3e2011-10-01 03:09:58 +020011806 if (PyUnicode_GET_LENGTH(str) > PY_SSIZE_T_MAX / len) {
Victor Stinner67ca64c2011-10-01 02:47:29 +020011807 PyErr_SetString(PyExc_OverflowError,
11808 "repeated string is too long");
11809 return NULL;
11810 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011811 nchars = len * PyUnicode_GET_LENGTH(str);
Victor Stinner67ca64c2011-10-01 02:47:29 +020011812
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011813 u = PyUnicode_New(nchars, PyUnicode_MAX_CHAR_VALUE(str));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011814 if (!u)
11815 return NULL;
Victor Stinner67ca64c2011-10-01 02:47:29 +020011816 assert(PyUnicode_KIND(u) == PyUnicode_KIND(str));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011817
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011818 if (PyUnicode_GET_LENGTH(str) == 1) {
11819 const int kind = PyUnicode_KIND(str);
11820 const Py_UCS4 fill_char = PyUnicode_READ(kind, PyUnicode_DATA(str), 0);
Victor Stinner73f53b52011-12-18 03:26:31 +010011821 if (kind == PyUnicode_1BYTE_KIND) {
11822 void *to = PyUnicode_DATA(u);
Victor Stinner67ca64c2011-10-01 02:47:29 +020011823 memset(to, (unsigned char)fill_char, len);
Victor Stinner73f53b52011-12-18 03:26:31 +010011824 }
11825 else if (kind == PyUnicode_2BYTE_KIND) {
11826 Py_UCS2 *ucs2 = PyUnicode_2BYTE_DATA(u);
Victor Stinner67ca64c2011-10-01 02:47:29 +020011827 for (n = 0; n < len; ++n)
Victor Stinner73f53b52011-12-18 03:26:31 +010011828 ucs2[n] = fill_char;
11829 } else {
11830 Py_UCS4 *ucs4 = PyUnicode_4BYTE_DATA(u);
11831 assert(kind == PyUnicode_4BYTE_KIND);
11832 for (n = 0; n < len; ++n)
11833 ucs4[n] = fill_char;
Victor Stinner67ca64c2011-10-01 02:47:29 +020011834 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011835 }
11836 else {
11837 /* number of characters copied this far */
11838 Py_ssize_t done = PyUnicode_GET_LENGTH(str);
Martin v. Löwisc47adb02011-10-07 20:55:35 +020011839 const Py_ssize_t char_size = PyUnicode_KIND(str);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011840 char *to = (char *) PyUnicode_DATA(u);
11841 Py_MEMCPY(to, PyUnicode_DATA(str),
11842 PyUnicode_GET_LENGTH(str) * char_size);
Benjamin Peterson29060642009-01-31 22:14:21 +000011843 while (done < nchars) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011844 n = (done <= nchars-done) ? done : nchars-done;
11845 Py_MEMCPY(to + (done * char_size), to, n * char_size);
Thomas Wouters477c8d52006-05-27 19:21:47 +000011846 done += n;
Benjamin Peterson29060642009-01-31 22:14:21 +000011847 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000011848 }
11849
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020011850 assert(_PyUnicode_CheckConsistency(u, 1));
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011851 return u;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011852}
11853
Alexander Belopolsky40018472011-02-26 01:02:56 +000011854PyObject *
11855PyUnicode_Replace(PyObject *obj,
11856 PyObject *subobj,
11857 PyObject *replobj,
11858 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011859{
11860 PyObject *self;
11861 PyObject *str1;
11862 PyObject *str2;
11863 PyObject *result;
11864
11865 self = PyUnicode_FromObject(obj);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011866 if (self == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000011867 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011868 str1 = PyUnicode_FromObject(subobj);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011869 if (str1 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011870 Py_DECREF(self);
11871 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011872 }
11873 str2 = PyUnicode_FromObject(replobj);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011874 if (str2 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011875 Py_DECREF(self);
11876 Py_DECREF(str1);
11877 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011878 }
Benjamin Peterson22a29702012-01-02 09:00:30 -060011879 if (PyUnicode_READY(self) == -1 ||
11880 PyUnicode_READY(str1) == -1 ||
11881 PyUnicode_READY(str2) == -1)
11882 result = NULL;
11883 else
11884 result = replace(self, str1, str2, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011885 Py_DECREF(self);
11886 Py_DECREF(str1);
11887 Py_DECREF(str2);
11888 return result;
11889}
11890
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011891PyDoc_STRVAR(replace__doc__,
Ezio Melottic1897e72010-06-26 18:50:39 +000011892 "S.replace(old, new[, count]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011893\n\
11894Return a copy of S with all occurrences of substring\n\
Georg Brandlf08a9dd2008-06-10 16:57:31 +000011895old replaced by new. If the optional argument count is\n\
11896given, only the first count occurrences are replaced.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011897
11898static PyObject*
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011899unicode_replace(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011900{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011901 PyObject *str1;
11902 PyObject *str2;
Martin v. Löwis18e16552006-02-15 17:27:45 +000011903 Py_ssize_t maxcount = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011904 PyObject *result;
11905
Martin v. Löwis18e16552006-02-15 17:27:45 +000011906 if (!PyArg_ParseTuple(args, "OO|n:replace", &str1, &str2, &maxcount))
Guido van Rossumd57fd912000-03-10 22:53:23 +000011907 return NULL;
Benjamin Peterson22a29702012-01-02 09:00:30 -060011908 if (PyUnicode_READY(self) == -1)
Benjamin Peterson29060642009-01-31 22:14:21 +000011909 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011910 str1 = PyUnicode_FromObject(str1);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011911 if (str1 == NULL)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011912 return NULL;
11913 str2 = PyUnicode_FromObject(str2);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011914 if (str2 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011915 Py_DECREF(str1);
11916 return NULL;
Walter Dörwaldf6b56ae2003-02-09 23:42:56 +000011917 }
Benjamin Peterson22a29702012-01-02 09:00:30 -060011918 if (PyUnicode_READY(str1) == -1 || PyUnicode_READY(str2) == -1)
11919 result = NULL;
11920 else
11921 result = replace(self, str1, str2, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011922
11923 Py_DECREF(str1);
11924 Py_DECREF(str2);
11925 return result;
11926}
11927
Alexander Belopolsky40018472011-02-26 01:02:56 +000011928static PyObject *
11929unicode_repr(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011930{
Walter Dörwald79e913e2007-05-12 11:08:06 +000011931 PyObject *repr;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011932 Py_ssize_t isize;
11933 Py_ssize_t osize, squote, dquote, i, o;
11934 Py_UCS4 max, quote;
11935 int ikind, okind;
11936 void *idata, *odata;
Walter Dörwald79e913e2007-05-12 11:08:06 +000011937
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011938 if (PyUnicode_READY(unicode) == -1)
Walter Dörwald79e913e2007-05-12 11:08:06 +000011939 return NULL;
11940
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011941 isize = PyUnicode_GET_LENGTH(unicode);
11942 idata = PyUnicode_DATA(unicode);
Walter Dörwald79e913e2007-05-12 11:08:06 +000011943
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011944 /* Compute length of output, quote characters, and
11945 maximum character */
11946 osize = 2; /* quotes */
11947 max = 127;
11948 squote = dquote = 0;
11949 ikind = PyUnicode_KIND(unicode);
11950 for (i = 0; i < isize; i++) {
11951 Py_UCS4 ch = PyUnicode_READ(ikind, idata, i);
11952 switch (ch) {
11953 case '\'': squote++; osize++; break;
11954 case '"': dquote++; osize++; break;
11955 case '\\': case '\t': case '\r': case '\n':
11956 osize += 2; break;
11957 default:
11958 /* Fast-path ASCII */
11959 if (ch < ' ' || ch == 0x7f)
11960 osize += 4; /* \xHH */
11961 else if (ch < 0x7f)
11962 osize++;
11963 else if (Py_UNICODE_ISPRINTABLE(ch)) {
11964 osize++;
11965 max = ch > max ? ch : max;
11966 }
11967 else if (ch < 0x100)
11968 osize += 4; /* \xHH */
11969 else if (ch < 0x10000)
11970 osize += 6; /* \uHHHH */
11971 else
11972 osize += 10; /* \uHHHHHHHH */
11973 }
11974 }
11975
11976 quote = '\'';
11977 if (squote) {
11978 if (dquote)
11979 /* Both squote and dquote present. Use squote,
11980 and escape them */
11981 osize += squote;
11982 else
11983 quote = '"';
11984 }
11985
11986 repr = PyUnicode_New(osize, max);
11987 if (repr == NULL)
11988 return NULL;
11989 okind = PyUnicode_KIND(repr);
11990 odata = PyUnicode_DATA(repr);
11991
11992 PyUnicode_WRITE(okind, odata, 0, quote);
11993 PyUnicode_WRITE(okind, odata, osize-1, quote);
11994
11995 for (i = 0, o = 1; i < isize; i++) {
11996 Py_UCS4 ch = PyUnicode_READ(ikind, idata, i);
Walter Dörwald79e913e2007-05-12 11:08:06 +000011997
11998 /* Escape quotes and backslashes */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011999 if ((ch == quote) || (ch == '\\')) {
12000 PyUnicode_WRITE(okind, odata, o++, '\\');
12001 PyUnicode_WRITE(okind, odata, o++, ch);
Walter Dörwald79e913e2007-05-12 11:08:06 +000012002 continue;
12003 }
12004
Benjamin Peterson29060642009-01-31 22:14:21 +000012005 /* Map special whitespace to '\t', \n', '\r' */
Georg Brandl559e5d72008-06-11 18:37:52 +000012006 if (ch == '\t') {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012007 PyUnicode_WRITE(okind, odata, o++, '\\');
12008 PyUnicode_WRITE(okind, odata, o++, 't');
Walter Dörwald79e913e2007-05-12 11:08:06 +000012009 }
12010 else if (ch == '\n') {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012011 PyUnicode_WRITE(okind, odata, o++, '\\');
12012 PyUnicode_WRITE(okind, odata, o++, 'n');
Walter Dörwald79e913e2007-05-12 11:08:06 +000012013 }
12014 else if (ch == '\r') {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012015 PyUnicode_WRITE(okind, odata, o++, '\\');
12016 PyUnicode_WRITE(okind, odata, o++, 'r');
Walter Dörwald79e913e2007-05-12 11:08:06 +000012017 }
12018
12019 /* Map non-printable US ASCII to '\xhh' */
Georg Brandl559e5d72008-06-11 18:37:52 +000012020 else if (ch < ' ' || ch == 0x7F) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012021 PyUnicode_WRITE(okind, odata, o++, '\\');
12022 PyUnicode_WRITE(okind, odata, o++, 'x');
Victor Stinnerf5cff562011-10-14 02:13:11 +020012023 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0x000F]);
12024 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0x000F]);
Walter Dörwald79e913e2007-05-12 11:08:06 +000012025 }
12026
Georg Brandl559e5d72008-06-11 18:37:52 +000012027 /* Copy ASCII characters as-is */
12028 else if (ch < 0x7F) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012029 PyUnicode_WRITE(okind, odata, o++, ch);
Georg Brandl559e5d72008-06-11 18:37:52 +000012030 }
12031
Benjamin Peterson29060642009-01-31 22:14:21 +000012032 /* Non-ASCII characters */
Georg Brandl559e5d72008-06-11 18:37:52 +000012033 else {
Benjamin Peterson14339b62009-01-31 16:36:08 +000012034 /* Map Unicode whitespace and control characters
Georg Brandl559e5d72008-06-11 18:37:52 +000012035 (categories Z* and C* except ASCII space)
12036 */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012037 if (!Py_UNICODE_ISPRINTABLE(ch)) {
Kristján Valur Jónsson55e5dc82012-06-06 21:58:08 +000012038 PyUnicode_WRITE(okind, odata, o++, '\\');
Georg Brandl559e5d72008-06-11 18:37:52 +000012039 /* Map 8-bit characters to '\xhh' */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012040 if (ch <= 0xff) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012041 PyUnicode_WRITE(okind, odata, o++, 'x');
Victor Stinnerf5cff562011-10-14 02:13:11 +020012042 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0x000F]);
12043 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0x000F]);
Georg Brandl559e5d72008-06-11 18:37:52 +000012044 }
Kristján Valur Jónsson55e5dc82012-06-06 21:58:08 +000012045 /* Map 16-bit characters to '\uxxxx' */
12046 else if (ch <= 0xffff) {
12047 PyUnicode_WRITE(okind, odata, o++, 'u');
Victor Stinnerf5cff562011-10-14 02:13:11 +020012048 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 12) & 0xF]);
12049 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 8) & 0xF]);
12050 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0xF]);
12051 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0xF]);
Georg Brandl559e5d72008-06-11 18:37:52 +000012052 }
Kristján Valur Jónsson55e5dc82012-06-06 21:58:08 +000012053 /* Map 21-bit characters to '\U00xxxxxx' */
Georg Brandl559e5d72008-06-11 18:37:52 +000012054 else {
Kristján Valur Jónsson55e5dc82012-06-06 21:58:08 +000012055 PyUnicode_WRITE(okind, odata, o++, 'U');
12056 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 28) & 0xF]);
12057 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 24) & 0xF]);
12058 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 20) & 0xF]);
12059 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 16) & 0xF]);
Victor Stinnerf5cff562011-10-14 02:13:11 +020012060 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 12) & 0xF]);
12061 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 8) & 0xF]);
12062 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0xF]);
12063 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0xF]);
Georg Brandl559e5d72008-06-11 18:37:52 +000012064 }
12065 }
12066 /* Copy characters as-is */
12067 else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012068 PyUnicode_WRITE(okind, odata, o++, ch);
Georg Brandl559e5d72008-06-11 18:37:52 +000012069 }
12070 }
Walter Dörwald79e913e2007-05-12 11:08:06 +000012071 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012072 /* Closing quote already added at the beginning */
Victor Stinner05d11892011-10-06 01:13:58 +020012073 assert(_PyUnicode_CheckConsistency(repr, 1));
Walter Dörwald79e913e2007-05-12 11:08:06 +000012074 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012075}
12076
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012077PyDoc_STRVAR(rfind__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012078 "S.rfind(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012079\n\
12080Return the highest index in S where substring sub is found,\n\
Senthil Kumaran53516a82011-07-27 23:33:54 +080012081such that sub is contained within S[start:end]. Optional\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012082arguments start and end are interpreted as in slice notation.\n\
12083\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012084Return -1 on failure.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012085
12086static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012087unicode_rfind(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012088{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012089 PyObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +000012090 Py_ssize_t start;
12091 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012092 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012093
Jesus Ceaac451502011-04-20 17:09:23 +020012094 if (!stringlib_parse_args_finds_unicode("rfind", args, &substring,
12095 &start, &end))
Benjamin Peterson14339b62009-01-31 16:36:08 +000012096 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012097
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012098 if (PyUnicode_READY(self) == -1)
12099 return NULL;
12100 if (PyUnicode_READY(substring) == -1)
12101 return NULL;
12102
Victor Stinner7931d9a2011-11-04 00:22:48 +010012103 result = any_find_slice(-1, self, substring, start, end);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012104
12105 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012106
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012107 if (result == -2)
12108 return NULL;
12109
Christian Heimes217cfd12007-12-02 14:31:20 +000012110 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012111}
12112
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012113PyDoc_STRVAR(rindex__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012114 "S.rindex(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012115\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012116Like S.rfind() but raise ValueError when the substring is not found.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012117
12118static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012119unicode_rindex(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012120{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012121 PyObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +000012122 Py_ssize_t start;
12123 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012124 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012125
Jesus Ceaac451502011-04-20 17:09:23 +020012126 if (!stringlib_parse_args_finds_unicode("rindex", args, &substring,
12127 &start, &end))
Benjamin Peterson14339b62009-01-31 16:36:08 +000012128 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012129
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012130 if (PyUnicode_READY(self) == -1)
12131 return NULL;
12132 if (PyUnicode_READY(substring) == -1)
12133 return NULL;
12134
Victor Stinner7931d9a2011-11-04 00:22:48 +010012135 result = any_find_slice(-1, self, substring, start, end);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012136
12137 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012138
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012139 if (result == -2)
12140 return NULL;
12141
Guido van Rossumd57fd912000-03-10 22:53:23 +000012142 if (result < 0) {
12143 PyErr_SetString(PyExc_ValueError, "substring not found");
12144 return NULL;
12145 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012146
Christian Heimes217cfd12007-12-02 14:31:20 +000012147 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012148}
12149
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012150PyDoc_STRVAR(rjust__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012151 "S.rjust(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012152\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +000012153Return S right-justified in a string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000012154done using the specified fill character (default is a space).");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012155
12156static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +020012157unicode_rjust(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012158{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000012159 Py_ssize_t width;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012160 Py_UCS4 fillchar = ' ';
12161
Victor Stinnere9a29352011-10-01 02:14:59 +020012162 if (!PyArg_ParseTuple(args, "n|O&:rjust", &width, convert_uc, &fillchar))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012163 return NULL;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000012164
Benjamin Petersonbac79492012-01-14 13:34:47 -050012165 if (PyUnicode_READY(self) == -1)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012166 return NULL;
12167
Victor Stinnerc4b49542011-12-11 22:44:26 +010012168 if (PyUnicode_GET_LENGTH(self) >= width)
12169 return unicode_result_unchanged(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012170
Victor Stinnerc4b49542011-12-11 22:44:26 +010012171 return pad(self, width - PyUnicode_GET_LENGTH(self), 0, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012172}
12173
Alexander Belopolsky40018472011-02-26 01:02:56 +000012174PyObject *
12175PyUnicode_Split(PyObject *s, PyObject *sep, Py_ssize_t maxsplit)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012176{
12177 PyObject *result;
Tim Petersced69f82003-09-16 20:30:58 +000012178
Guido van Rossumd57fd912000-03-10 22:53:23 +000012179 s = PyUnicode_FromObject(s);
12180 if (s == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +000012181 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +000012182 if (sep != NULL) {
12183 sep = PyUnicode_FromObject(sep);
12184 if (sep == NULL) {
12185 Py_DECREF(s);
12186 return NULL;
12187 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000012188 }
12189
Victor Stinner9310abb2011-10-05 00:59:23 +020012190 result = split(s, sep, maxsplit);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012191
12192 Py_DECREF(s);
12193 Py_XDECREF(sep);
12194 return result;
12195}
12196
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012197PyDoc_STRVAR(split__doc__,
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012198 "S.split(sep=None, maxsplit=-1) -> list of strings\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012199\n\
12200Return a list of the words in S, using sep as the\n\
12201delimiter string. If maxsplit is given, at most maxsplit\n\
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +000012202splits are done. If sep is not specified or is None, any\n\
Alexandre Vassalotti8ae3e052008-05-16 00:41:41 +000012203whitespace string is a separator and empty strings are\n\
12204removed from the result.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012205
12206static PyObject*
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012207unicode_split(PyObject *self, PyObject *args, PyObject *kwds)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012208{
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012209 static char *kwlist[] = {"sep", "maxsplit", 0};
Guido van Rossumd57fd912000-03-10 22:53:23 +000012210 PyObject *substring = Py_None;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012211 Py_ssize_t maxcount = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012212
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012213 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|On:split",
12214 kwlist, &substring, &maxcount))
Guido van Rossumd57fd912000-03-10 22:53:23 +000012215 return NULL;
12216
12217 if (substring == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +000012218 return split(self, NULL, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012219 else if (PyUnicode_Check(substring))
Victor Stinner9310abb2011-10-05 00:59:23 +020012220 return split(self, substring, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012221 else
Victor Stinner7931d9a2011-11-04 00:22:48 +010012222 return PyUnicode_Split(self, substring, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012223}
12224
Thomas Wouters477c8d52006-05-27 19:21:47 +000012225PyObject *
12226PyUnicode_Partition(PyObject *str_in, PyObject *sep_in)
12227{
12228 PyObject* str_obj;
12229 PyObject* sep_obj;
12230 PyObject* out;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012231 int kind1, kind2, kind;
12232 void *buf1 = NULL, *buf2 = NULL;
12233 Py_ssize_t len1, len2;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012234
12235 str_obj = PyUnicode_FromObject(str_in);
Benjamin Peterson22a29702012-01-02 09:00:30 -060012236 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +000012237 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012238 sep_obj = PyUnicode_FromObject(sep_in);
Benjamin Peterson22a29702012-01-02 09:00:30 -060012239 if (!sep_obj) {
12240 Py_DECREF(str_obj);
12241 return NULL;
12242 }
12243 if (PyUnicode_READY(sep_obj) == -1 || PyUnicode_READY(str_obj) == -1) {
12244 Py_DECREF(sep_obj);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012245 Py_DECREF(str_obj);
12246 return NULL;
12247 }
12248
Victor Stinner14f8f022011-10-05 20:58:25 +020012249 kind1 = PyUnicode_KIND(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012250 kind2 = PyUnicode_KIND(sep_obj);
Victor Stinner14f8f022011-10-05 20:58:25 +020012251 kind = Py_MAX(kind1, kind2);
12252 buf1 = PyUnicode_DATA(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012253 if (kind1 != kind)
Victor Stinner14f8f022011-10-05 20:58:25 +020012254 buf1 = _PyUnicode_AsKind(str_obj, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012255 if (!buf1)
12256 goto onError;
12257 buf2 = PyUnicode_DATA(sep_obj);
12258 if (kind2 != kind)
12259 buf2 = _PyUnicode_AsKind(sep_obj, kind);
12260 if (!buf2)
12261 goto onError;
12262 len1 = PyUnicode_GET_LENGTH(str_obj);
12263 len2 = PyUnicode_GET_LENGTH(sep_obj);
12264
Benjamin Petersonead6b532011-12-20 17:23:42 -060012265 switch (PyUnicode_KIND(str_obj)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012266 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +020012267 if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj))
12268 out = asciilib_partition(str_obj, buf1, len1, sep_obj, buf2, len2);
12269 else
12270 out = ucs1lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012271 break;
12272 case PyUnicode_2BYTE_KIND:
12273 out = ucs2lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2);
12274 break;
12275 case PyUnicode_4BYTE_KIND:
12276 out = ucs4lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2);
12277 break;
12278 default:
12279 assert(0);
12280 out = 0;
12281 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000012282
12283 Py_DECREF(sep_obj);
12284 Py_DECREF(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012285 if (kind1 != kind)
12286 PyMem_Free(buf1);
12287 if (kind2 != kind)
12288 PyMem_Free(buf2);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012289
12290 return out;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012291 onError:
12292 Py_DECREF(sep_obj);
12293 Py_DECREF(str_obj);
12294 if (kind1 != kind && buf1)
12295 PyMem_Free(buf1);
12296 if (kind2 != kind && buf2)
12297 PyMem_Free(buf2);
12298 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012299}
12300
12301
12302PyObject *
12303PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in)
12304{
12305 PyObject* str_obj;
12306 PyObject* sep_obj;
12307 PyObject* out;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012308 int kind1, kind2, kind;
12309 void *buf1 = NULL, *buf2 = NULL;
12310 Py_ssize_t len1, len2;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012311
12312 str_obj = PyUnicode_FromObject(str_in);
12313 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +000012314 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012315 sep_obj = PyUnicode_FromObject(sep_in);
12316 if (!sep_obj) {
12317 Py_DECREF(str_obj);
12318 return NULL;
12319 }
12320
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012321 kind1 = PyUnicode_KIND(str_in);
12322 kind2 = PyUnicode_KIND(sep_obj);
Georg Brandl4cb0de22011-09-28 21:49:49 +020012323 kind = Py_MAX(kind1, kind2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012324 buf1 = PyUnicode_DATA(str_in);
12325 if (kind1 != kind)
12326 buf1 = _PyUnicode_AsKind(str_in, kind);
12327 if (!buf1)
12328 goto onError;
12329 buf2 = PyUnicode_DATA(sep_obj);
12330 if (kind2 != kind)
12331 buf2 = _PyUnicode_AsKind(sep_obj, kind);
12332 if (!buf2)
12333 goto onError;
12334 len1 = PyUnicode_GET_LENGTH(str_obj);
12335 len2 = PyUnicode_GET_LENGTH(sep_obj);
12336
Benjamin Petersonead6b532011-12-20 17:23:42 -060012337 switch (PyUnicode_KIND(str_in)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012338 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +020012339 if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj))
12340 out = asciilib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12341 else
12342 out = ucs1lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012343 break;
12344 case PyUnicode_2BYTE_KIND:
12345 out = ucs2lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12346 break;
12347 case PyUnicode_4BYTE_KIND:
12348 out = ucs4lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12349 break;
12350 default:
12351 assert(0);
12352 out = 0;
12353 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000012354
12355 Py_DECREF(sep_obj);
12356 Py_DECREF(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012357 if (kind1 != kind)
12358 PyMem_Free(buf1);
12359 if (kind2 != kind)
12360 PyMem_Free(buf2);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012361
12362 return out;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012363 onError:
12364 Py_DECREF(sep_obj);
12365 Py_DECREF(str_obj);
12366 if (kind1 != kind && buf1)
12367 PyMem_Free(buf1);
12368 if (kind2 != kind && buf2)
12369 PyMem_Free(buf2);
12370 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012371}
12372
12373PyDoc_STRVAR(partition__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012374 "S.partition(sep) -> (head, sep, tail)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000012375\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +000012376Search for the separator sep in S, and return the part before it,\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000012377the separator itself, and the part after it. If the separator is not\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +000012378found, return S and two empty strings.");
Thomas Wouters477c8d52006-05-27 19:21:47 +000012379
12380static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020012381unicode_partition(PyObject *self, PyObject *separator)
Thomas Wouters477c8d52006-05-27 19:21:47 +000012382{
Victor Stinner9310abb2011-10-05 00:59:23 +020012383 return PyUnicode_Partition(self, separator);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012384}
12385
12386PyDoc_STRVAR(rpartition__doc__,
Ezio Melotti5b2b2422010-01-25 11:58:28 +000012387 "S.rpartition(sep) -> (head, sep, tail)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000012388\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +000012389Search for the separator sep in S, starting at the end of S, and return\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000012390the part before it, the separator itself, and the part after it. If the\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +000012391separator is not found, return two empty strings and S.");
Thomas Wouters477c8d52006-05-27 19:21:47 +000012392
12393static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020012394unicode_rpartition(PyObject *self, PyObject *separator)
Thomas Wouters477c8d52006-05-27 19:21:47 +000012395{
Victor Stinner9310abb2011-10-05 00:59:23 +020012396 return PyUnicode_RPartition(self, separator);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012397}
12398
Alexander Belopolsky40018472011-02-26 01:02:56 +000012399PyObject *
12400PyUnicode_RSplit(PyObject *s, PyObject *sep, Py_ssize_t maxsplit)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012401{
12402 PyObject *result;
Benjamin Peterson14339b62009-01-31 16:36:08 +000012403
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012404 s = PyUnicode_FromObject(s);
12405 if (s == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +000012406 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +000012407 if (sep != NULL) {
12408 sep = PyUnicode_FromObject(sep);
12409 if (sep == NULL) {
12410 Py_DECREF(s);
12411 return NULL;
12412 }
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012413 }
12414
Victor Stinner9310abb2011-10-05 00:59:23 +020012415 result = rsplit(s, sep, maxsplit);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012416
12417 Py_DECREF(s);
12418 Py_XDECREF(sep);
12419 return result;
12420}
12421
12422PyDoc_STRVAR(rsplit__doc__,
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012423 "S.rsplit(sep=None, maxsplit=-1) -> list of strings\n\
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012424\n\
12425Return a list of the words in S, using sep as the\n\
12426delimiter string, starting at the end of the string and\n\
12427working to the front. If maxsplit is given, at most maxsplit\n\
12428splits are done. If sep is not specified, any whitespace string\n\
12429is a separator.");
12430
12431static PyObject*
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012432unicode_rsplit(PyObject *self, PyObject *args, PyObject *kwds)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012433{
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012434 static char *kwlist[] = {"sep", "maxsplit", 0};
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012435 PyObject *substring = Py_None;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012436 Py_ssize_t maxcount = -1;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012437
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012438 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|On:rsplit",
12439 kwlist, &substring, &maxcount))
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012440 return NULL;
12441
12442 if (substring == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +000012443 return rsplit(self, NULL, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012444 else if (PyUnicode_Check(substring))
Victor Stinner9310abb2011-10-05 00:59:23 +020012445 return rsplit(self, substring, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012446 else
Victor Stinner9310abb2011-10-05 00:59:23 +020012447 return PyUnicode_RSplit(self, substring, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012448}
12449
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012450PyDoc_STRVAR(splitlines__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012451 "S.splitlines([keepends]) -> list of strings\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012452\n\
12453Return a list of the lines in S, breaking at line boundaries.\n\
Guido van Rossum86662912000-04-11 15:38:46 +000012454Line breaks are not included in the resulting list unless keepends\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012455is given and true.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012456
12457static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012458unicode_splitlines(PyObject *self, PyObject *args, PyObject *kwds)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012459{
Mark Dickinson0d5f6ad2011-09-24 09:14:39 +010012460 static char *kwlist[] = {"keepends", 0};
Guido van Rossum86662912000-04-11 15:38:46 +000012461 int keepends = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012462
Mark Dickinson0d5f6ad2011-09-24 09:14:39 +010012463 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|i:splitlines",
12464 kwlist, &keepends))
Guido van Rossumd57fd912000-03-10 22:53:23 +000012465 return NULL;
12466
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012467 return PyUnicode_Splitlines(self, keepends);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012468}
12469
12470static
Guido van Rossumf15a29f2007-05-04 00:41:39 +000012471PyObject *unicode_str(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012472{
Victor Stinnerc4b49542011-12-11 22:44:26 +010012473 return unicode_result_unchanged(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012474}
12475
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012476PyDoc_STRVAR(swapcase__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012477 "S.swapcase() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012478\n\
12479Return a copy of S with uppercase characters converted to lowercase\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012480and vice versa.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012481
12482static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020012483unicode_swapcase(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012484{
Benjamin Petersoneea48462012-01-16 14:28:50 -050012485 if (PyUnicode_READY(self) == -1)
12486 return NULL;
Victor Stinnerb0800dc2012-02-25 00:47:08 +010012487 return case_operation(self, do_swapcase);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012488}
12489
Georg Brandlceee0772007-11-27 23:48:05 +000012490PyDoc_STRVAR(maketrans__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012491 "str.maketrans(x[, y[, z]]) -> dict (static method)\n\
Georg Brandlceee0772007-11-27 23:48:05 +000012492\n\
12493Return a translation table usable for str.translate().\n\
12494If there is only one argument, it must be a dictionary mapping Unicode\n\
12495ordinals (integers) or characters to Unicode ordinals, strings or None.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000012496Character keys will be then converted to ordinals.\n\
Georg Brandlceee0772007-11-27 23:48:05 +000012497If there are two arguments, they must be strings of equal length, and\n\
12498in the resulting dictionary, each character in x will be mapped to the\n\
12499character at the same position in y. If there is a third argument, it\n\
12500must be a string, whose characters will be mapped to None in the result.");
12501
12502static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012503unicode_maketrans(PyObject *null, PyObject *args)
Georg Brandlceee0772007-11-27 23:48:05 +000012504{
12505 PyObject *x, *y = NULL, *z = NULL;
12506 PyObject *new = NULL, *key, *value;
12507 Py_ssize_t i = 0;
12508 int res;
Benjamin Peterson14339b62009-01-31 16:36:08 +000012509
Georg Brandlceee0772007-11-27 23:48:05 +000012510 if (!PyArg_ParseTuple(args, "O|UU:maketrans", &x, &y, &z))
12511 return NULL;
12512 new = PyDict_New();
12513 if (!new)
12514 return NULL;
12515 if (y != NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012516 int x_kind, y_kind, z_kind;
12517 void *x_data, *y_data, *z_data;
12518
Georg Brandlceee0772007-11-27 23:48:05 +000012519 /* x must be a string too, of equal length */
Georg Brandlceee0772007-11-27 23:48:05 +000012520 if (!PyUnicode_Check(x)) {
12521 PyErr_SetString(PyExc_TypeError, "first maketrans argument must "
12522 "be a string if there is a second argument");
12523 goto err;
12524 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012525 if (PyUnicode_GET_LENGTH(x) != PyUnicode_GET_LENGTH(y)) {
Georg Brandlceee0772007-11-27 23:48:05 +000012526 PyErr_SetString(PyExc_ValueError, "the first two maketrans "
12527 "arguments must have equal length");
12528 goto err;
12529 }
12530 /* create entries for translating chars in x to those in y */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012531 x_kind = PyUnicode_KIND(x);
12532 y_kind = PyUnicode_KIND(y);
12533 x_data = PyUnicode_DATA(x);
12534 y_data = PyUnicode_DATA(y);
12535 for (i = 0; i < PyUnicode_GET_LENGTH(x); i++) {
12536 key = PyLong_FromLong(PyUnicode_READ(x_kind, x_data, i));
Benjamin Peterson53aa1d72011-12-20 13:29:45 -060012537 if (!key)
Georg Brandlceee0772007-11-27 23:48:05 +000012538 goto err;
Benjamin Peterson822c7902011-12-20 13:32:50 -060012539 value = PyLong_FromLong(PyUnicode_READ(y_kind, y_data, i));
Benjamin Peterson53aa1d72011-12-20 13:29:45 -060012540 if (!value) {
12541 Py_DECREF(key);
12542 goto err;
12543 }
Georg Brandlceee0772007-11-27 23:48:05 +000012544 res = PyDict_SetItem(new, key, value);
12545 Py_DECREF(key);
12546 Py_DECREF(value);
12547 if (res < 0)
12548 goto err;
12549 }
12550 /* create entries for deleting chars in z */
12551 if (z != NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012552 z_kind = PyUnicode_KIND(z);
12553 z_data = PyUnicode_DATA(z);
Victor Stinnerc4f281e2011-10-11 22:11:42 +020012554 for (i = 0; i < PyUnicode_GET_LENGTH(z); i++) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012555 key = PyLong_FromLong(PyUnicode_READ(z_kind, z_data, i));
Georg Brandlceee0772007-11-27 23:48:05 +000012556 if (!key)
12557 goto err;
12558 res = PyDict_SetItem(new, key, Py_None);
12559 Py_DECREF(key);
12560 if (res < 0)
12561 goto err;
12562 }
12563 }
12564 } else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012565 int kind;
12566 void *data;
12567
Georg Brandlceee0772007-11-27 23:48:05 +000012568 /* x must be a dict */
Raymond Hettinger3ad05762009-05-29 22:11:22 +000012569 if (!PyDict_CheckExact(x)) {
Georg Brandlceee0772007-11-27 23:48:05 +000012570 PyErr_SetString(PyExc_TypeError, "if you give only one argument "
12571 "to maketrans it must be a dict");
12572 goto err;
12573 }
12574 /* copy entries into the new dict, converting string keys to int keys */
12575 while (PyDict_Next(x, &i, &key, &value)) {
12576 if (PyUnicode_Check(key)) {
12577 /* convert string keys to integer keys */
12578 PyObject *newkey;
Victor Stinnerc4f281e2011-10-11 22:11:42 +020012579 if (PyUnicode_GET_LENGTH(key) != 1) {
Georg Brandlceee0772007-11-27 23:48:05 +000012580 PyErr_SetString(PyExc_ValueError, "string keys in translate "
12581 "table must be of length 1");
12582 goto err;
12583 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012584 kind = PyUnicode_KIND(key);
12585 data = PyUnicode_DATA(key);
12586 newkey = PyLong_FromLong(PyUnicode_READ(kind, data, 0));
Georg Brandlceee0772007-11-27 23:48:05 +000012587 if (!newkey)
12588 goto err;
12589 res = PyDict_SetItem(new, newkey, value);
12590 Py_DECREF(newkey);
12591 if (res < 0)
12592 goto err;
Christian Heimes217cfd12007-12-02 14:31:20 +000012593 } else if (PyLong_Check(key)) {
Georg Brandlceee0772007-11-27 23:48:05 +000012594 /* just keep integer keys */
12595 if (PyDict_SetItem(new, key, value) < 0)
12596 goto err;
12597 } else {
12598 PyErr_SetString(PyExc_TypeError, "keys in translate table must "
12599 "be strings or integers");
12600 goto err;
12601 }
12602 }
12603 }
12604 return new;
12605 err:
12606 Py_DECREF(new);
12607 return NULL;
12608}
12609
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012610PyDoc_STRVAR(translate__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012611 "S.translate(table) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012612\n\
12613Return a copy of the string S, where all characters have been mapped\n\
12614through the given translation table, which must be a mapping of\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000012615Unicode ordinals to Unicode ordinals, strings, or None.\n\
Walter Dörwald5c1ee172002-09-04 20:31:32 +000012616Unmapped characters are left untouched. Characters mapped to None\n\
12617are deleted.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012618
12619static PyObject*
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012620unicode_translate(PyObject *self, PyObject *table)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012621{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012622 return _PyUnicode_TranslateCharmap(self, table, "ignore");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012623}
12624
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012625PyDoc_STRVAR(upper__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012626 "S.upper() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012627\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012628Return a copy of S converted to uppercase.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012629
12630static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020012631unicode_upper(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012632{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -050012633 if (PyUnicode_READY(self) == -1)
12634 return NULL;
12635 if (PyUnicode_IS_ASCII(self))
12636 return ascii_upper_or_lower(self, 0);
Victor Stinnerb0800dc2012-02-25 00:47:08 +010012637 return case_operation(self, do_upper);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012638}
12639
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012640PyDoc_STRVAR(zfill__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012641 "S.zfill(width) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012642\n\
Benjamin Peterson9aa42992008-09-10 21:57:34 +000012643Pad a numeric string S with zeros on the left, to fill a field\n\
12644of the specified width. The string S is never truncated.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012645
12646static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +020012647unicode_zfill(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012648{
Martin v. Löwis18e16552006-02-15 17:27:45 +000012649 Py_ssize_t fill;
Victor Stinner9310abb2011-10-05 00:59:23 +020012650 PyObject *u;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012651 Py_ssize_t width;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012652 int kind;
12653 void *data;
12654 Py_UCS4 chr;
12655
Martin v. Löwis18e16552006-02-15 17:27:45 +000012656 if (!PyArg_ParseTuple(args, "n:zfill", &width))
Guido van Rossumd57fd912000-03-10 22:53:23 +000012657 return NULL;
12658
Benjamin Petersonbac79492012-01-14 13:34:47 -050012659 if (PyUnicode_READY(self) == -1)
Victor Stinnerc4b49542011-12-11 22:44:26 +010012660 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012661
Victor Stinnerc4b49542011-12-11 22:44:26 +010012662 if (PyUnicode_GET_LENGTH(self) >= width)
12663 return unicode_result_unchanged(self);
12664
12665 fill = width - PyUnicode_GET_LENGTH(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012666
12667 u = pad(self, fill, 0, '0');
12668
Walter Dörwald068325e2002-04-15 13:36:47 +000012669 if (u == NULL)
12670 return NULL;
12671
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012672 kind = PyUnicode_KIND(u);
12673 data = PyUnicode_DATA(u);
12674 chr = PyUnicode_READ(kind, data, fill);
12675
12676 if (chr == '+' || chr == '-') {
Guido van Rossumd57fd912000-03-10 22:53:23 +000012677 /* move sign to beginning of string */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012678 PyUnicode_WRITE(kind, data, 0, chr);
12679 PyUnicode_WRITE(kind, data, fill, '0');
Guido van Rossumd57fd912000-03-10 22:53:23 +000012680 }
12681
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020012682 assert(_PyUnicode_CheckConsistency(u, 1));
Victor Stinner7931d9a2011-11-04 00:22:48 +010012683 return u;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012684}
Guido van Rossumd57fd912000-03-10 22:53:23 +000012685
12686#if 0
Alexander Belopolsky942af5a2010-12-04 03:38:46 +000012687static PyObject *
12688unicode__decimal2ascii(PyObject *self)
12689{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012690 return PyUnicode_TransformDecimalAndSpaceToASCII(self);
Alexander Belopolsky942af5a2010-12-04 03:38:46 +000012691}
Guido van Rossumd57fd912000-03-10 22:53:23 +000012692#endif
12693
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012694PyDoc_STRVAR(startswith__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012695 "S.startswith(prefix[, start[, end]]) -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012696\n\
Guido van Rossuma7132182003-04-09 19:32:45 +000012697Return True if S starts with the specified prefix, False otherwise.\n\
12698With optional start, test S beginning at that position.\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012699With optional end, stop comparing S at that position.\n\
12700prefix can also be a tuple of strings to try.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012701
12702static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012703unicode_startswith(PyObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +000012704 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012705{
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012706 PyObject *subobj;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012707 PyObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012708 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000012709 Py_ssize_t end = PY_SSIZE_T_MAX;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012710 int result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012711
Jesus Ceaac451502011-04-20 17:09:23 +020012712 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +000012713 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012714 if (PyTuple_Check(subobj)) {
12715 Py_ssize_t i;
12716 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012717 substring = PyUnicode_FromObject(PyTuple_GET_ITEM(subobj, i));
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012718 if (substring == NULL)
12719 return NULL;
12720 result = tailmatch(self, substring, start, end, -1);
12721 Py_DECREF(substring);
12722 if (result) {
12723 Py_RETURN_TRUE;
12724 }
12725 }
12726 /* nothing matched */
12727 Py_RETURN_FALSE;
12728 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012729 substring = PyUnicode_FromObject(subobj);
Ezio Melottiba42fd52011-04-26 06:09:45 +030012730 if (substring == NULL) {
12731 if (PyErr_ExceptionMatches(PyExc_TypeError))
12732 PyErr_Format(PyExc_TypeError, "startswith first arg must be str or "
12733 "a tuple of str, not %s", Py_TYPE(subobj)->tp_name);
Benjamin Peterson29060642009-01-31 22:14:21 +000012734 return NULL;
Ezio Melottiba42fd52011-04-26 06:09:45 +030012735 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012736 result = tailmatch(self, substring, start, end, -1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012737 Py_DECREF(substring);
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012738 return PyBool_FromLong(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012739}
12740
12741
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012742PyDoc_STRVAR(endswith__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012743 "S.endswith(suffix[, start[, end]]) -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012744\n\
Guido van Rossuma7132182003-04-09 19:32:45 +000012745Return True if S ends with the specified suffix, False otherwise.\n\
12746With optional start, test S beginning at that position.\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012747With optional end, stop comparing S at that position.\n\
12748suffix can also be a tuple of strings to try.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012749
12750static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012751unicode_endswith(PyObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +000012752 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012753{
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012754 PyObject *subobj;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012755 PyObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012756 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000012757 Py_ssize_t end = PY_SSIZE_T_MAX;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012758 int result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012759
Jesus Ceaac451502011-04-20 17:09:23 +020012760 if (!stringlib_parse_args_finds("endswith", args, &subobj, &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +000012761 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012762 if (PyTuple_Check(subobj)) {
12763 Py_ssize_t i;
12764 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012765 substring = PyUnicode_FromObject(
Benjamin Peterson29060642009-01-31 22:14:21 +000012766 PyTuple_GET_ITEM(subobj, i));
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012767 if (substring == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000012768 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012769 result = tailmatch(self, substring, start, end, +1);
12770 Py_DECREF(substring);
12771 if (result) {
12772 Py_RETURN_TRUE;
12773 }
12774 }
12775 Py_RETURN_FALSE;
12776 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012777 substring = PyUnicode_FromObject(subobj);
Ezio Melottiba42fd52011-04-26 06:09:45 +030012778 if (substring == NULL) {
12779 if (PyErr_ExceptionMatches(PyExc_TypeError))
12780 PyErr_Format(PyExc_TypeError, "endswith first arg must be str or "
12781 "a tuple of str, not %s", Py_TYPE(subobj)->tp_name);
Benjamin Peterson29060642009-01-31 22:14:21 +000012782 return NULL;
Ezio Melottiba42fd52011-04-26 06:09:45 +030012783 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012784 result = tailmatch(self, substring, start, end, +1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012785 Py_DECREF(substring);
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012786 return PyBool_FromLong(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012787}
12788
Victor Stinner202fdca2012-05-07 12:47:02 +020012789Py_LOCAL_INLINE(void)
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012790_PyUnicodeWriter_Update(_PyUnicodeWriter *writer)
Victor Stinner202fdca2012-05-07 12:47:02 +020012791{
Victor Stinnerd3f08822012-05-29 12:57:52 +020012792 writer->size = PyUnicode_GET_LENGTH(writer->buffer);
Victor Stinner202fdca2012-05-07 12:47:02 +020012793 writer->maxchar = PyUnicode_MAX_CHAR_VALUE(writer->buffer);
12794 writer->data = PyUnicode_DATA(writer->buffer);
12795 writer->kind = PyUnicode_KIND(writer->buffer);
12796}
12797
Victor Stinnerd3f08822012-05-29 12:57:52 +020012798void
12799_PyUnicodeWriter_Init(_PyUnicodeWriter *writer, Py_ssize_t min_length)
Victor Stinner202fdca2012-05-07 12:47:02 +020012800{
Victor Stinnerd3f08822012-05-29 12:57:52 +020012801 memset(writer, 0, sizeof(*writer));
12802#ifdef Py_DEBUG
12803 writer->kind = 5; /* invalid kind */
12804#endif
12805 writer->min_length = Py_MAX(min_length, 100);
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012806 writer->overallocate = (min_length > 0);
Victor Stinner202fdca2012-05-07 12:47:02 +020012807}
12808
Victor Stinnerd3f08822012-05-29 12:57:52 +020012809int
12810_PyUnicodeWriter_PrepareInternal(_PyUnicodeWriter *writer,
12811 Py_ssize_t length, Py_UCS4 maxchar)
Victor Stinner202fdca2012-05-07 12:47:02 +020012812{
12813 Py_ssize_t newlen;
12814 PyObject *newbuffer;
12815
Victor Stinnerd3f08822012-05-29 12:57:52 +020012816 assert(length > 0);
12817
Victor Stinner202fdca2012-05-07 12:47:02 +020012818 if (length > PY_SSIZE_T_MAX - writer->pos) {
12819 PyErr_NoMemory();
12820 return -1;
12821 }
12822 newlen = writer->pos + length;
12823
Victor Stinnerd3f08822012-05-29 12:57:52 +020012824 if (writer->buffer == NULL) {
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012825 if (writer->overallocate) {
Victor Stinnerd3f08822012-05-29 12:57:52 +020012826 /* overallocate 25% to limit the number of resize */
12827 if (newlen <= (PY_SSIZE_T_MAX - newlen / 4))
12828 newlen += newlen / 4;
12829 if (newlen < writer->min_length)
12830 newlen = writer->min_length;
12831 }
12832 writer->buffer = PyUnicode_New(newlen, maxchar);
12833 if (writer->buffer == NULL)
12834 return -1;
12835 _PyUnicodeWriter_Update(writer);
12836 return 0;
12837 }
Victor Stinner202fdca2012-05-07 12:47:02 +020012838
Victor Stinnerd3f08822012-05-29 12:57:52 +020012839 if (newlen > writer->size) {
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012840 if (writer->overallocate) {
Victor Stinnerd3f08822012-05-29 12:57:52 +020012841 /* overallocate 25% to limit the number of resize */
12842 if (newlen <= (PY_SSIZE_T_MAX - newlen / 4))
12843 newlen += newlen / 4;
12844 if (newlen < writer->min_length)
12845 newlen = writer->min_length;
12846 }
12847
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012848 if (maxchar > writer->maxchar || writer->readonly) {
Victor Stinner202fdca2012-05-07 12:47:02 +020012849 /* resize + widen */
12850 newbuffer = PyUnicode_New(newlen, maxchar);
12851 if (newbuffer == NULL)
12852 return -1;
Victor Stinnerd3f08822012-05-29 12:57:52 +020012853 _PyUnicode_FastCopyCharacters(newbuffer, 0,
12854 writer->buffer, 0, writer->pos);
Victor Stinner202fdca2012-05-07 12:47:02 +020012855 Py_DECREF(writer->buffer);
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012856 writer->readonly = 0;
Victor Stinner202fdca2012-05-07 12:47:02 +020012857 }
12858 else {
12859 newbuffer = resize_compact(writer->buffer, newlen);
12860 if (newbuffer == NULL)
12861 return -1;
12862 }
12863 writer->buffer = newbuffer;
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012864 _PyUnicodeWriter_Update(writer);
Victor Stinner202fdca2012-05-07 12:47:02 +020012865 }
12866 else if (maxchar > writer->maxchar) {
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012867 assert(!writer->readonly);
Victor Stinnerd3f08822012-05-29 12:57:52 +020012868 newbuffer = PyUnicode_New(writer->size, maxchar);
12869 if (newbuffer == NULL)
Victor Stinner202fdca2012-05-07 12:47:02 +020012870 return -1;
Victor Stinnerd3f08822012-05-29 12:57:52 +020012871 _PyUnicode_FastCopyCharacters(newbuffer, 0,
12872 writer->buffer, 0, writer->pos);
12873 Py_DECREF(writer->buffer);
12874 writer->buffer = newbuffer;
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012875 _PyUnicodeWriter_Update(writer);
Victor Stinner202fdca2012-05-07 12:47:02 +020012876 }
12877 return 0;
12878}
12879
Victor Stinnerd3f08822012-05-29 12:57:52 +020012880int
12881_PyUnicodeWriter_WriteStr(_PyUnicodeWriter *writer, PyObject *str)
12882{
12883 Py_UCS4 maxchar;
12884 Py_ssize_t len;
12885
12886 if (PyUnicode_READY(str) == -1)
12887 return -1;
12888 len = PyUnicode_GET_LENGTH(str);
12889 if (len == 0)
12890 return 0;
12891 maxchar = PyUnicode_MAX_CHAR_VALUE(str);
12892 if (maxchar > writer->maxchar || len > writer->size - writer->pos) {
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012893 if (writer->buffer == NULL && !writer->overallocate) {
Victor Stinnerd3f08822012-05-29 12:57:52 +020012894 Py_INCREF(str);
12895 writer->buffer = str;
12896 _PyUnicodeWriter_Update(writer);
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012897 writer->readonly = 1;
Victor Stinnerd3f08822012-05-29 12:57:52 +020012898 writer->size = 0;
12899 writer->pos += len;
12900 return 0;
12901 }
12902 if (_PyUnicodeWriter_PrepareInternal(writer, len, maxchar) == -1)
12903 return -1;
12904 }
12905 _PyUnicode_FastCopyCharacters(writer->buffer, writer->pos,
12906 str, 0, len);
12907 writer->pos += len;
12908 return 0;
12909}
12910
12911PyObject *
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012912_PyUnicodeWriter_Finish(_PyUnicodeWriter *writer)
Victor Stinner202fdca2012-05-07 12:47:02 +020012913{
Victor Stinnerd3f08822012-05-29 12:57:52 +020012914 if (writer->pos == 0) {
12915 Py_XDECREF(writer->buffer);
12916 Py_INCREF(unicode_empty);
12917 return unicode_empty;
12918 }
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012919 if (writer->readonly) {
Victor Stinnerd3f08822012-05-29 12:57:52 +020012920 assert(PyUnicode_GET_LENGTH(writer->buffer) == writer->pos);
12921 return writer->buffer;
12922 }
12923 if (PyUnicode_GET_LENGTH(writer->buffer) != writer->pos) {
12924 PyObject *newbuffer;
12925 newbuffer = resize_compact(writer->buffer, writer->pos);
12926 if (newbuffer == NULL) {
12927 Py_DECREF(writer->buffer);
12928 return NULL;
12929 }
12930 writer->buffer = newbuffer;
Victor Stinner202fdca2012-05-07 12:47:02 +020012931 }
Victor Stinnerf59c28c2012-05-09 03:24:14 +020012932 assert(_PyUnicode_CheckConsistency(writer->buffer, 1));
Victor Stinner202fdca2012-05-07 12:47:02 +020012933 return writer->buffer;
12934}
12935
Victor Stinnerd3f08822012-05-29 12:57:52 +020012936void
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012937_PyUnicodeWriter_Dealloc(_PyUnicodeWriter *writer)
Victor Stinner202fdca2012-05-07 12:47:02 +020012938{
12939 Py_CLEAR(writer->buffer);
12940}
12941
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012942#include "stringlib/unicode_format.h"
Eric Smith8c663262007-08-25 02:26:07 +000012943
12944PyDoc_STRVAR(format__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012945 "S.format(*args, **kwargs) -> str\n\
Eric Smith8c663262007-08-25 02:26:07 +000012946\n\
Eric Smith51d2fd92010-11-06 19:27:37 +000012947Return a formatted version of S, using substitutions from args and kwargs.\n\
12948The substitutions are identified by braces ('{' and '}').");
Eric Smith8c663262007-08-25 02:26:07 +000012949
Eric Smith27bbca62010-11-04 17:06:58 +000012950PyDoc_STRVAR(format_map__doc__,
12951 "S.format_map(mapping) -> str\n\
12952\n\
Eric Smith51d2fd92010-11-06 19:27:37 +000012953Return a formatted version of S, using substitutions from mapping.\n\
12954The substitutions are identified by braces ('{' and '}').");
Eric Smith27bbca62010-11-04 17:06:58 +000012955
Eric Smith4a7d76d2008-05-30 18:10:19 +000012956static PyObject *
12957unicode__format__(PyObject* self, PyObject* args)
12958{
Victor Stinnerd3f08822012-05-29 12:57:52 +020012959 PyObject *format_spec;
12960 _PyUnicodeWriter writer;
12961 int ret;
Eric Smith4a7d76d2008-05-30 18:10:19 +000012962
12963 if (!PyArg_ParseTuple(args, "U:__format__", &format_spec))
12964 return NULL;
12965
Victor Stinnerd3f08822012-05-29 12:57:52 +020012966 if (PyUnicode_READY(self) == -1)
12967 return NULL;
12968 _PyUnicodeWriter_Init(&writer, 0);
12969 ret = _PyUnicode_FormatAdvancedWriter(&writer,
12970 self, format_spec, 0,
12971 PyUnicode_GET_LENGTH(format_spec));
12972 if (ret == -1) {
12973 _PyUnicodeWriter_Dealloc(&writer);
12974 return NULL;
12975 }
12976 return _PyUnicodeWriter_Finish(&writer);
Eric Smith4a7d76d2008-05-30 18:10:19 +000012977}
12978
Eric Smith8c663262007-08-25 02:26:07 +000012979PyDoc_STRVAR(p_format__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012980 "S.__format__(format_spec) -> str\n\
Eric Smith8c663262007-08-25 02:26:07 +000012981\n\
Eric Smith51d2fd92010-11-06 19:27:37 +000012982Return a formatted version of S as described by format_spec.");
Eric Smith8c663262007-08-25 02:26:07 +000012983
12984static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012985unicode__sizeof__(PyObject *v)
Georg Brandlc28e1fa2008-06-10 19:20:26 +000012986{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012987 Py_ssize_t size;
12988
12989 /* If it's a compact object, account for base structure +
12990 character data. */
12991 if (PyUnicode_IS_COMPACT_ASCII(v))
12992 size = sizeof(PyASCIIObject) + PyUnicode_GET_LENGTH(v) + 1;
12993 else if (PyUnicode_IS_COMPACT(v))
12994 size = sizeof(PyCompactUnicodeObject) +
Martin v. Löwisc47adb02011-10-07 20:55:35 +020012995 (PyUnicode_GET_LENGTH(v) + 1) * PyUnicode_KIND(v);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012996 else {
12997 /* If it is a two-block object, account for base object, and
12998 for character block if present. */
12999 size = sizeof(PyUnicodeObject);
Victor Stinnerc3c74152011-10-02 20:39:55 +020013000 if (_PyUnicode_DATA_ANY(v))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013001 size += (PyUnicode_GET_LENGTH(v) + 1) *
Martin v. Löwisc47adb02011-10-07 20:55:35 +020013002 PyUnicode_KIND(v);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013003 }
13004 /* If the wstr pointer is present, account for it unless it is shared
Victor Stinnera3be6132011-10-03 02:16:37 +020013005 with the data pointer. Check if the data is not shared. */
Victor Stinner03490912011-10-03 23:45:12 +020013006 if (_PyUnicode_HAS_WSTR_MEMORY(v))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013007 size += (PyUnicode_WSTR_LENGTH(v) + 1) * sizeof(wchar_t);
Victor Stinner829c0ad2011-10-03 01:08:02 +020013008 if (_PyUnicode_HAS_UTF8_MEMORY(v))
Victor Stinnere90fe6a2011-10-01 16:48:13 +020013009 size += PyUnicode_UTF8_LENGTH(v) + 1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013010
13011 return PyLong_FromSsize_t(size);
Georg Brandlc28e1fa2008-06-10 19:20:26 +000013012}
13013
13014PyDoc_STRVAR(sizeof__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000013015 "S.__sizeof__() -> size of S in memory, in bytes");
Georg Brandlc28e1fa2008-06-10 19:20:26 +000013016
13017static PyObject *
Victor Stinner034f6cf2011-09-30 02:26:44 +020013018unicode_getnewargs(PyObject *v)
Guido van Rossum5d9113d2003-01-29 17:58:45 +000013019{
Victor Stinnerbf6e5602011-12-12 01:53:47 +010013020 PyObject *copy = _PyUnicode_Copy(v);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013021 if (!copy)
13022 return NULL;
13023 return Py_BuildValue("(N)", copy);
Guido van Rossum5d9113d2003-01-29 17:58:45 +000013024}
13025
Guido van Rossumd57fd912000-03-10 22:53:23 +000013026static PyMethodDef unicode_methods[] = {
Benjamin Peterson28a4dce2010-12-12 01:33:04 +000013027 {"encode", (PyCFunction) unicode_encode, METH_VARARGS | METH_KEYWORDS, encode__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013028 {"replace", (PyCFunction) unicode_replace, METH_VARARGS, replace__doc__},
Ezio Melotticda6b6d2012-02-26 09:39:55 +020013029 {"split", (PyCFunction) unicode_split, METH_VARARGS | METH_KEYWORDS, split__doc__},
13030 {"rsplit", (PyCFunction) unicode_rsplit, METH_VARARGS | METH_KEYWORDS, rsplit__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013031 {"join", (PyCFunction) unicode_join, METH_O, join__doc__},
13032 {"capitalize", (PyCFunction) unicode_capitalize, METH_NOARGS, capitalize__doc__},
Benjamin Petersond5890c82012-01-14 13:23:30 -050013033 {"casefold", (PyCFunction) unicode_casefold, METH_NOARGS, casefold__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013034 {"title", (PyCFunction) unicode_title, METH_NOARGS, title__doc__},
13035 {"center", (PyCFunction) unicode_center, METH_VARARGS, center__doc__},
13036 {"count", (PyCFunction) unicode_count, METH_VARARGS, count__doc__},
13037 {"expandtabs", (PyCFunction) unicode_expandtabs, METH_VARARGS, expandtabs__doc__},
13038 {"find", (PyCFunction) unicode_find, METH_VARARGS, find__doc__},
Thomas Wouters477c8d52006-05-27 19:21:47 +000013039 {"partition", (PyCFunction) unicode_partition, METH_O, partition__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013040 {"index", (PyCFunction) unicode_index, METH_VARARGS, index__doc__},
13041 {"ljust", (PyCFunction) unicode_ljust, METH_VARARGS, ljust__doc__},
13042 {"lower", (PyCFunction) unicode_lower, METH_NOARGS, lower__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000013043 {"lstrip", (PyCFunction) unicode_lstrip, METH_VARARGS, lstrip__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013044 {"rfind", (PyCFunction) unicode_rfind, METH_VARARGS, rfind__doc__},
13045 {"rindex", (PyCFunction) unicode_rindex, METH_VARARGS, rindex__doc__},
13046 {"rjust", (PyCFunction) unicode_rjust, METH_VARARGS, rjust__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000013047 {"rstrip", (PyCFunction) unicode_rstrip, METH_VARARGS, rstrip__doc__},
Thomas Wouters477c8d52006-05-27 19:21:47 +000013048 {"rpartition", (PyCFunction) unicode_rpartition, METH_O, rpartition__doc__},
Mark Dickinson0d5f6ad2011-09-24 09:14:39 +010013049 {"splitlines", (PyCFunction) unicode_splitlines, METH_VARARGS | METH_KEYWORDS, splitlines__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000013050 {"strip", (PyCFunction) unicode_strip, METH_VARARGS, strip__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013051 {"swapcase", (PyCFunction) unicode_swapcase, METH_NOARGS, swapcase__doc__},
13052 {"translate", (PyCFunction) unicode_translate, METH_O, translate__doc__},
13053 {"upper", (PyCFunction) unicode_upper, METH_NOARGS, upper__doc__},
13054 {"startswith", (PyCFunction) unicode_startswith, METH_VARARGS, startswith__doc__},
13055 {"endswith", (PyCFunction) unicode_endswith, METH_VARARGS, endswith__doc__},
13056 {"islower", (PyCFunction) unicode_islower, METH_NOARGS, islower__doc__},
13057 {"isupper", (PyCFunction) unicode_isupper, METH_NOARGS, isupper__doc__},
13058 {"istitle", (PyCFunction) unicode_istitle, METH_NOARGS, istitle__doc__},
13059 {"isspace", (PyCFunction) unicode_isspace, METH_NOARGS, isspace__doc__},
13060 {"isdecimal", (PyCFunction) unicode_isdecimal, METH_NOARGS, isdecimal__doc__},
13061 {"isdigit", (PyCFunction) unicode_isdigit, METH_NOARGS, isdigit__doc__},
13062 {"isnumeric", (PyCFunction) unicode_isnumeric, METH_NOARGS, isnumeric__doc__},
13063 {"isalpha", (PyCFunction) unicode_isalpha, METH_NOARGS, isalpha__doc__},
13064 {"isalnum", (PyCFunction) unicode_isalnum, METH_NOARGS, isalnum__doc__},
Martin v. Löwis47383402007-08-15 07:32:56 +000013065 {"isidentifier", (PyCFunction) unicode_isidentifier, METH_NOARGS, isidentifier__doc__},
Georg Brandl559e5d72008-06-11 18:37:52 +000013066 {"isprintable", (PyCFunction) unicode_isprintable, METH_NOARGS, isprintable__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013067 {"zfill", (PyCFunction) unicode_zfill, METH_VARARGS, zfill__doc__},
Eric Smith9cd1e092007-08-31 18:39:38 +000013068 {"format", (PyCFunction) do_string_format, METH_VARARGS | METH_KEYWORDS, format__doc__},
Eric Smith27bbca62010-11-04 17:06:58 +000013069 {"format_map", (PyCFunction) do_string_format_map, METH_O, format_map__doc__},
Eric Smith4a7d76d2008-05-30 18:10:19 +000013070 {"__format__", (PyCFunction) unicode__format__, METH_VARARGS, p_format__doc__},
Georg Brandlceee0772007-11-27 23:48:05 +000013071 {"maketrans", (PyCFunction) unicode_maketrans,
13072 METH_VARARGS | METH_STATIC, maketrans__doc__},
Georg Brandlc28e1fa2008-06-10 19:20:26 +000013073 {"__sizeof__", (PyCFunction) unicode__sizeof__, METH_NOARGS, sizeof__doc__},
Walter Dörwald068325e2002-04-15 13:36:47 +000013074#if 0
Alexander Belopolsky942af5a2010-12-04 03:38:46 +000013075 /* These methods are just used for debugging the implementation. */
Alexander Belopolsky942af5a2010-12-04 03:38:46 +000013076 {"_decimal2ascii", (PyCFunction) unicode__decimal2ascii, METH_NOARGS},
Guido van Rossumd57fd912000-03-10 22:53:23 +000013077#endif
13078
Benjamin Peterson14339b62009-01-31 16:36:08 +000013079 {"__getnewargs__", (PyCFunction)unicode_getnewargs, METH_NOARGS},
Guido van Rossumd57fd912000-03-10 22:53:23 +000013080 {NULL, NULL}
13081};
13082
Neil Schemenauerce30bc92002-11-18 16:10:18 +000013083static PyObject *
13084unicode_mod(PyObject *v, PyObject *w)
13085{
Brian Curtindfc80e32011-08-10 20:28:54 -050013086 if (!PyUnicode_Check(v))
13087 Py_RETURN_NOTIMPLEMENTED;
Benjamin Peterson29060642009-01-31 22:14:21 +000013088 return PyUnicode_Format(v, w);
Neil Schemenauerce30bc92002-11-18 16:10:18 +000013089}
13090
13091static PyNumberMethods unicode_as_number = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000013092 0, /*nb_add*/
13093 0, /*nb_subtract*/
13094 0, /*nb_multiply*/
13095 unicode_mod, /*nb_remainder*/
Neil Schemenauerce30bc92002-11-18 16:10:18 +000013096};
13097
Guido van Rossumd57fd912000-03-10 22:53:23 +000013098static PySequenceMethods unicode_as_sequence = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000013099 (lenfunc) unicode_length, /* sq_length */
13100 PyUnicode_Concat, /* sq_concat */
13101 (ssizeargfunc) unicode_repeat, /* sq_repeat */
13102 (ssizeargfunc) unicode_getitem, /* sq_item */
13103 0, /* sq_slice */
13104 0, /* sq_ass_item */
13105 0, /* sq_ass_slice */
13106 PyUnicode_Contains, /* sq_contains */
Guido van Rossumd57fd912000-03-10 22:53:23 +000013107};
13108
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013109static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013110unicode_subscript(PyObject* self, PyObject* item)
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013111{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013112 if (PyUnicode_READY(self) == -1)
13113 return NULL;
13114
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000013115 if (PyIndex_Check(item)) {
13116 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013117 if (i == -1 && PyErr_Occurred())
13118 return NULL;
13119 if (i < 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013120 i += PyUnicode_GET_LENGTH(self);
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013121 return unicode_getitem(self, i);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013122 } else if (PySlice_Check(item)) {
Martin v. Löwis18e16552006-02-15 17:27:45 +000013123 Py_ssize_t start, stop, step, slicelength, cur, i;
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013124 PyObject *result;
13125 void *src_data, *dest_data;
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013126 int src_kind, dest_kind;
Victor Stinnerc80d6d22011-10-05 14:13:28 +020013127 Py_UCS4 ch, max_char, kind_limit;
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013128
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013129 if (PySlice_GetIndicesEx(item, PyUnicode_GET_LENGTH(self),
Benjamin Peterson29060642009-01-31 22:14:21 +000013130 &start, &stop, &step, &slicelength) < 0) {
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013131 return NULL;
13132 }
13133
13134 if (slicelength <= 0) {
Victor Stinner382955f2011-12-11 21:44:00 +010013135 Py_INCREF(unicode_empty);
13136 return unicode_empty;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013137 } else if (start == 0 && step == 1 &&
Victor Stinnerc4b49542011-12-11 22:44:26 +010013138 slicelength == PyUnicode_GET_LENGTH(self)) {
13139 return unicode_result_unchanged(self);
Thomas Woutersed03b412007-08-28 21:37:11 +000013140 } else if (step == 1) {
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013141 return PyUnicode_Substring(self,
Victor Stinner12bab6d2011-10-01 01:53:49 +020013142 start, start + slicelength);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013143 }
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013144 /* General case */
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013145 src_kind = PyUnicode_KIND(self);
13146 src_data = PyUnicode_DATA(self);
Victor Stinner55c99112011-10-13 01:17:06 +020013147 if (!PyUnicode_IS_ASCII(self)) {
13148 kind_limit = kind_maxchar_limit(src_kind);
13149 max_char = 0;
13150 for (cur = start, i = 0; i < slicelength; cur += step, i++) {
13151 ch = PyUnicode_READ(src_kind, src_data, cur);
13152 if (ch > max_char) {
13153 max_char = ch;
13154 if (max_char >= kind_limit)
13155 break;
13156 }
Victor Stinnerc80d6d22011-10-05 14:13:28 +020013157 }
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013158 }
Victor Stinner55c99112011-10-13 01:17:06 +020013159 else
13160 max_char = 127;
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013161 result = PyUnicode_New(slicelength, max_char);
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013162 if (result == NULL)
13163 return NULL;
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013164 dest_kind = PyUnicode_KIND(result);
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013165 dest_data = PyUnicode_DATA(result);
13166
13167 for (cur = start, i = 0; i < slicelength; cur += step, i++) {
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013168 Py_UCS4 ch = PyUnicode_READ(src_kind, src_data, cur);
13169 PyUnicode_WRITE(dest_kind, dest_data, i, ch);
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013170 }
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020013171 assert(_PyUnicode_CheckConsistency(result, 1));
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013172 return result;
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013173 } else {
13174 PyErr_SetString(PyExc_TypeError, "string indices must be integers");
13175 return NULL;
13176 }
13177}
13178
13179static PyMappingMethods unicode_as_mapping = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000013180 (lenfunc)unicode_length, /* mp_length */
13181 (binaryfunc)unicode_subscript, /* mp_subscript */
13182 (objobjargproc)0, /* mp_ass_subscript */
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013183};
13184
Guido van Rossumd57fd912000-03-10 22:53:23 +000013185
Guido van Rossumd57fd912000-03-10 22:53:23 +000013186/* Helpers for PyUnicode_Format() */
13187
13188static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +000013189getnextarg(PyObject *args, Py_ssize_t arglen, Py_ssize_t *p_argidx)
Guido van Rossumd57fd912000-03-10 22:53:23 +000013190{
Martin v. Löwis18e16552006-02-15 17:27:45 +000013191 Py_ssize_t argidx = *p_argidx;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013192 if (argidx < arglen) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013193 (*p_argidx)++;
13194 if (arglen < 0)
13195 return args;
13196 else
13197 return PyTuple_GetItem(args, argidx);
Guido van Rossumd57fd912000-03-10 22:53:23 +000013198 }
13199 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000013200 "not enough arguments for format string");
Guido van Rossumd57fd912000-03-10 22:53:23 +000013201 return NULL;
13202}
13203
Mark Dickinsonf489caf2009-05-01 11:42:00 +000013204/* Returns a new reference to a PyUnicode object, or NULL on failure. */
Guido van Rossumd57fd912000-03-10 22:53:23 +000013205
Victor Stinnerd3f08822012-05-29 12:57:52 +020013206static int
13207formatfloat(PyObject *v, int flags, int prec, int type,
13208 PyObject **p_output, _PyUnicodeWriter *writer)
Guido van Rossumd57fd912000-03-10 22:53:23 +000013209{
Mark Dickinsonf489caf2009-05-01 11:42:00 +000013210 char *p;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013211 double x;
Victor Stinnerd3f08822012-05-29 12:57:52 +020013212 Py_ssize_t len;
Tim Petersced69f82003-09-16 20:30:58 +000013213
Guido van Rossumd57fd912000-03-10 22:53:23 +000013214 x = PyFloat_AsDouble(v);
13215 if (x == -1.0 && PyErr_Occurred())
Victor Stinnerd3f08822012-05-29 12:57:52 +020013216 return -1;
Mark Dickinsonf489caf2009-05-01 11:42:00 +000013217
Guido van Rossumd57fd912000-03-10 22:53:23 +000013218 if (prec < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000013219 prec = 6;
Eric Smith0923d1d2009-04-16 20:16:10 +000013220
Eric Smith0923d1d2009-04-16 20:16:10 +000013221 p = PyOS_double_to_string(x, type, prec,
13222 (flags & F_ALT) ? Py_DTSF_ALT : 0, NULL);
Mark Dickinsonf489caf2009-05-01 11:42:00 +000013223 if (p == NULL)
Victor Stinnerd3f08822012-05-29 12:57:52 +020013224 return -1;
13225 len = strlen(p);
13226 if (writer) {
Christian Heimesf4f99392012-09-10 11:48:41 +020013227 if (_PyUnicodeWriter_Prepare(writer, len, 127) == -1) {
13228 PyMem_Free(p);
Victor Stinnerd3f08822012-05-29 12:57:52 +020013229 return -1;
Christian Heimesf4f99392012-09-10 11:48:41 +020013230 }
Victor Stinner184252a2012-06-16 02:57:41 +020013231 unicode_write_cstr(writer->buffer, writer->pos, p, len);
Victor Stinnerd3f08822012-05-29 12:57:52 +020013232 writer->pos += len;
13233 }
13234 else
13235 *p_output = _PyUnicode_FromASCII(p, len);
Eric Smith0923d1d2009-04-16 20:16:10 +000013236 PyMem_Free(p);
Victor Stinnerd3f08822012-05-29 12:57:52 +020013237 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013238}
13239
Victor Stinnerd0880d52012-04-27 23:40:13 +020013240/* formatlong() emulates the format codes d, u, o, x and X, and
13241 * the F_ALT flag, for Python's long (unbounded) ints. It's not used for
13242 * Python's regular ints.
13243 * Return value: a new PyUnicodeObject*, or NULL if error.
13244 * The output string is of the form
13245 * "-"? ("0x" | "0X")? digit+
13246 * "0x"/"0X" are present only for x and X conversions, with F_ALT
13247 * set in flags. The case of hex digits will be correct,
13248 * There will be at least prec digits, zero-filled on the left if
13249 * necessary to get that many.
13250 * val object to be converted
13251 * flags bitmask of format flags; only F_ALT is looked at
13252 * prec minimum number of digits; 0-fill on left if needed
13253 * type a character in [duoxX]; u acts the same as d
13254 *
13255 * CAUTION: o, x and X conversions on regular ints can never
13256 * produce a '-' sign, but can for Python's unbounded ints.
13257 */
Tim Peters38fd5b62000-09-21 05:43:11 +000013258static PyObject*
13259formatlong(PyObject *val, int flags, int prec, int type)
13260{
Victor Stinnerd0880d52012-04-27 23:40:13 +020013261 PyObject *result = NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013262 char *buf;
Victor Stinnerd0880d52012-04-27 23:40:13 +020013263 Py_ssize_t i;
13264 int sign; /* 1 if '-', else 0 */
13265 int len; /* number of characters */
13266 Py_ssize_t llen;
13267 int numdigits; /* len == numnondigits + numdigits */
13268 int numnondigits = 0;
Tim Peters38fd5b62000-09-21 05:43:11 +000013269
Victor Stinnerd0880d52012-04-27 23:40:13 +020013270 /* Avoid exceeding SSIZE_T_MAX */
13271 if (prec > INT_MAX-3) {
13272 PyErr_SetString(PyExc_OverflowError,
13273 "precision too large");
Benjamin Peterson14339b62009-01-31 16:36:08 +000013274 return NULL;
Victor Stinnerd0880d52012-04-27 23:40:13 +020013275 }
13276
13277 assert(PyLong_Check(val));
13278
13279 switch (type) {
13280 case 'd':
13281 case 'u':
13282 /* Special-case boolean: we want 0/1 */
Victor Stinnerb11d91d2012-04-28 00:25:34 +020013283 if (PyBool_Check(val))
13284 result = PyNumber_ToBase(val, 10);
13285 else
13286 result = Py_TYPE(val)->tp_str(val);
Victor Stinnerd0880d52012-04-27 23:40:13 +020013287 break;
13288 case 'o':
13289 numnondigits = 2;
13290 result = PyNumber_ToBase(val, 8);
13291 break;
13292 case 'x':
13293 case 'X':
13294 numnondigits = 2;
13295 result = PyNumber_ToBase(val, 16);
13296 break;
13297 default:
13298 assert(!"'type' not in [duoxX]");
13299 }
13300 if (!result)
13301 return NULL;
13302
13303 assert(unicode_modifiable(result));
13304 assert(PyUnicode_IS_READY(result));
13305 assert(PyUnicode_IS_ASCII(result));
13306
13307 /* To modify the string in-place, there can only be one reference. */
13308 if (Py_REFCNT(result) != 1) {
13309 PyErr_BadInternalCall();
13310 return NULL;
13311 }
13312 buf = PyUnicode_DATA(result);
13313 llen = PyUnicode_GET_LENGTH(result);
13314 if (llen > INT_MAX) {
13315 PyErr_SetString(PyExc_ValueError,
13316 "string too large in _PyBytes_FormatLong");
13317 return NULL;
13318 }
13319 len = (int)llen;
13320 sign = buf[0] == '-';
13321 numnondigits += sign;
13322 numdigits = len - numnondigits;
13323 assert(numdigits > 0);
13324
13325 /* Get rid of base marker unless F_ALT */
13326 if (((flags & F_ALT) == 0 &&
13327 (type == 'o' || type == 'x' || type == 'X'))) {
13328 assert(buf[sign] == '0');
13329 assert(buf[sign+1] == 'x' || buf[sign+1] == 'X' ||
13330 buf[sign+1] == 'o');
13331 numnondigits -= 2;
13332 buf += 2;
13333 len -= 2;
13334 if (sign)
13335 buf[0] = '-';
13336 assert(len == numnondigits + numdigits);
13337 assert(numdigits > 0);
13338 }
13339
13340 /* Fill with leading zeroes to meet minimum width. */
13341 if (prec > numdigits) {
13342 PyObject *r1 = PyBytes_FromStringAndSize(NULL,
13343 numnondigits + prec);
13344 char *b1;
13345 if (!r1) {
13346 Py_DECREF(result);
13347 return NULL;
13348 }
13349 b1 = PyBytes_AS_STRING(r1);
13350 for (i = 0; i < numnondigits; ++i)
13351 *b1++ = *buf++;
13352 for (i = 0; i < prec - numdigits; i++)
13353 *b1++ = '0';
13354 for (i = 0; i < numdigits; i++)
13355 *b1++ = *buf++;
13356 *b1 = '\0';
13357 Py_DECREF(result);
13358 result = r1;
13359 buf = PyBytes_AS_STRING(result);
13360 len = numnondigits + prec;
13361 }
13362
13363 /* Fix up case for hex conversions. */
13364 if (type == 'X') {
13365 /* Need to convert all lower case letters to upper case.
13366 and need to convert 0x to 0X (and -0x to -0X). */
13367 for (i = 0; i < len; i++)
13368 if (buf[i] >= 'a' && buf[i] <= 'x')
13369 buf[i] -= 'a'-'A';
13370 }
13371 if (!PyUnicode_Check(result) || len != PyUnicode_GET_LENGTH(result)) {
13372 PyObject *unicode;
Victor Stinnerd3f08822012-05-29 12:57:52 +020013373 unicode = _PyUnicode_FromASCII(buf, len);
Victor Stinnerd0880d52012-04-27 23:40:13 +020013374 Py_DECREF(result);
13375 result = unicode;
13376 }
Benjamin Peterson14339b62009-01-31 16:36:08 +000013377 return result;
Tim Peters38fd5b62000-09-21 05:43:11 +000013378}
13379
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013380static Py_UCS4
13381formatchar(PyObject *v)
Guido van Rossumd57fd912000-03-10 22:53:23 +000013382{
Amaury Forgeot d'Arca4db6862008-07-04 21:26:43 +000013383 /* presume that the buffer is at least 3 characters long */
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +000013384 if (PyUnicode_Check(v)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013385 if (PyUnicode_GET_LENGTH(v) == 1) {
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013386 return PyUnicode_READ_CHAR(v, 0);
Benjamin Peterson29060642009-01-31 22:14:21 +000013387 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013388 goto onError;
13389 }
13390 else {
13391 /* Integer input truncated to a character */
13392 long x;
13393 x = PyLong_AsLong(v);
13394 if (x == -1 && PyErr_Occurred())
13395 goto onError;
13396
Victor Stinner8faf8212011-12-08 22:14:11 +010013397 if (x < 0 || x > MAX_UNICODE) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013398 PyErr_SetString(PyExc_OverflowError,
13399 "%c arg not in range(0x110000)");
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013400 return (Py_UCS4) -1;
Benjamin Peterson29060642009-01-31 22:14:21 +000013401 }
13402
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013403 return (Py_UCS4) x;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013404 }
Amaury Forgeot d'Arca4db6862008-07-04 21:26:43 +000013405
Benjamin Peterson29060642009-01-31 22:14:21 +000013406 onError:
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +000013407 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000013408 "%c requires int or char");
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013409 return (Py_UCS4) -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013410}
13411
Alexander Belopolsky40018472011-02-26 01:02:56 +000013412PyObject *
13413PyUnicode_Format(PyObject *format, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000013414{
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013415 Py_ssize_t fmtcnt, fmtpos, arglen, argidx;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013416 int args_owned = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013417 PyObject *dict = NULL;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013418 PyObject *temp = NULL;
13419 PyObject *second = NULL;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013420 PyObject *uformat;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013421 void *fmt;
13422 enum PyUnicode_Kind kind, fmtkind;
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013423 _PyUnicodeWriter writer;
Victor Stinneree4544c2012-05-09 22:24:08 +020013424 Py_ssize_t sublen;
13425 Py_UCS4 maxchar;
Tim Petersced69f82003-09-16 20:30:58 +000013426
Guido van Rossumd57fd912000-03-10 22:53:23 +000013427 if (format == NULL || args == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013428 PyErr_BadInternalCall();
13429 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013430 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013431 uformat = PyUnicode_FromObject(format);
Benjamin Peterson22a29702012-01-02 09:00:30 -060013432 if (uformat == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000013433 return NULL;
Victor Stinner19294072012-10-05 00:09:33 +020013434 if (PyUnicode_READY(uformat) == -1) {
Benjamin Peterson22a29702012-01-02 09:00:30 -060013435 Py_DECREF(uformat);
Victor Stinner19294072012-10-05 00:09:33 +020013436 return NULL;
13437 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013438
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013439 fmt = PyUnicode_DATA(uformat);
13440 fmtkind = PyUnicode_KIND(uformat);
13441 fmtcnt = PyUnicode_GET_LENGTH(uformat);
13442 fmtpos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013443
Victor Stinnerd3f08822012-05-29 12:57:52 +020013444 _PyUnicodeWriter_Init(&writer, fmtcnt + 100);
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013445
Guido van Rossumd57fd912000-03-10 22:53:23 +000013446 if (PyTuple_Check(args)) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013447 arglen = PyTuple_Size(args);
13448 argidx = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013449 }
13450 else {
Benjamin Peterson29060642009-01-31 22:14:21 +000013451 arglen = -1;
13452 argidx = -2;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013453 }
Benjamin Peterson28a6cfa2012-08-28 17:55:35 -040013454 if (PyMapping_Check(args) && !PyTuple_Check(args) && !PyUnicode_Check(args))
Benjamin Peterson29060642009-01-31 22:14:21 +000013455 dict = args;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013456
13457 while (--fmtcnt >= 0) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013458 if (PyUnicode_READ(fmtkind, fmt, fmtpos) != '%') {
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013459 Py_ssize_t nonfmtpos;
13460 nonfmtpos = fmtpos++;
13461 while (fmtcnt >= 0 &&
13462 PyUnicode_READ(fmtkind, fmt, fmtpos) != '%') {
13463 fmtpos++;
13464 fmtcnt--;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013465 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013466 if (fmtcnt < 0)
13467 fmtpos--;
Victor Stinneree4544c2012-05-09 22:24:08 +020013468 sublen = fmtpos - nonfmtpos;
13469 maxchar = _PyUnicode_FindMaxChar(uformat,
13470 nonfmtpos, nonfmtpos + sublen);
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013471 if (_PyUnicodeWriter_Prepare(&writer, sublen, maxchar) == -1)
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013472 goto onError;
Victor Stinneree4544c2012-05-09 22:24:08 +020013473
Victor Stinnerd3f08822012-05-29 12:57:52 +020013474 _PyUnicode_FastCopyCharacters(writer.buffer, writer.pos,
13475 uformat, nonfmtpos, sublen);
Victor Stinneree4544c2012-05-09 22:24:08 +020013476 writer.pos += sublen;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013477 }
13478 else {
Benjamin Peterson29060642009-01-31 22:14:21 +000013479 /* Got a format specifier */
13480 int flags = 0;
13481 Py_ssize_t width = -1;
13482 int prec = -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013483 Py_UCS4 c = '\0';
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013484 Py_UCS4 fill;
13485 int sign;
13486 Py_UCS4 signchar;
Benjamin Peterson29060642009-01-31 22:14:21 +000013487 int isnumok;
13488 PyObject *v = NULL;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013489 void *pbuf = NULL;
13490 Py_ssize_t pindex, len;
Victor Stinneree4544c2012-05-09 22:24:08 +020013491 Py_UCS4 bufmaxchar;
13492 Py_ssize_t buflen;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013493
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013494 fmtpos++;
Victor Stinner438106b2012-05-02 00:41:57 +020013495 c = PyUnicode_READ(fmtkind, fmt, fmtpos);
13496 if (c == '(') {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013497 Py_ssize_t keystart;
Benjamin Peterson29060642009-01-31 22:14:21 +000013498 Py_ssize_t keylen;
13499 PyObject *key;
13500 int pcount = 1;
Christian Heimesa612dc02008-02-24 13:08:18 +000013501
Benjamin Peterson29060642009-01-31 22:14:21 +000013502 if (dict == NULL) {
13503 PyErr_SetString(PyExc_TypeError,
13504 "format requires a mapping");
13505 goto onError;
13506 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013507 ++fmtpos;
Benjamin Peterson29060642009-01-31 22:14:21 +000013508 --fmtcnt;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013509 keystart = fmtpos;
Benjamin Peterson29060642009-01-31 22:14:21 +000013510 /* Skip over balanced parentheses */
13511 while (pcount > 0 && --fmtcnt >= 0) {
Victor Stinnerbff7c962012-05-03 01:44:59 +020013512 c = PyUnicode_READ(fmtkind, fmt, fmtpos);
13513 if (c == ')')
Benjamin Peterson29060642009-01-31 22:14:21 +000013514 --pcount;
Victor Stinnerbff7c962012-05-03 01:44:59 +020013515 else if (c == '(')
Benjamin Peterson29060642009-01-31 22:14:21 +000013516 ++pcount;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013517 fmtpos++;
Benjamin Peterson29060642009-01-31 22:14:21 +000013518 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013519 keylen = fmtpos - keystart - 1;
Benjamin Peterson29060642009-01-31 22:14:21 +000013520 if (fmtcnt < 0 || pcount > 0) {
13521 PyErr_SetString(PyExc_ValueError,
13522 "incomplete format key");
13523 goto onError;
13524 }
Victor Stinner7931d9a2011-11-04 00:22:48 +010013525 key = PyUnicode_Substring(uformat,
Victor Stinner12bab6d2011-10-01 01:53:49 +020013526 keystart, keystart + keylen);
Benjamin Peterson29060642009-01-31 22:14:21 +000013527 if (key == NULL)
13528 goto onError;
13529 if (args_owned) {
13530 Py_DECREF(args);
13531 args_owned = 0;
13532 }
13533 args = PyObject_GetItem(dict, key);
13534 Py_DECREF(key);
13535 if (args == NULL) {
13536 goto onError;
13537 }
13538 args_owned = 1;
13539 arglen = -1;
13540 argidx = -2;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013541 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013542 while (--fmtcnt >= 0) {
Victor Stinner438106b2012-05-02 00:41:57 +020013543 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
13544 switch (c) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013545 case '-': flags |= F_LJUST; continue;
13546 case '+': flags |= F_SIGN; continue;
13547 case ' ': flags |= F_BLANK; continue;
13548 case '#': flags |= F_ALT; continue;
13549 case '0': flags |= F_ZERO; continue;
13550 }
13551 break;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013552 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013553 if (c == '*') {
13554 v = getnextarg(args, arglen, &argidx);
13555 if (v == NULL)
13556 goto onError;
13557 if (!PyLong_Check(v)) {
13558 PyErr_SetString(PyExc_TypeError,
13559 "* wants int");
13560 goto onError;
13561 }
13562 width = PyLong_AsLong(v);
13563 if (width == -1 && PyErr_Occurred())
13564 goto onError;
13565 if (width < 0) {
13566 flags |= F_LJUST;
13567 width = -width;
13568 }
13569 if (--fmtcnt >= 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013570 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013571 }
13572 else if (c >= '0' && c <= '9') {
13573 width = c - '0';
13574 while (--fmtcnt >= 0) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013575 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013576 if (c < '0' || c > '9')
13577 break;
Martin v. Löwisb05c0732012-05-15 13:45:49 +020013578 /* Since c is unsigned, the RHS would end up as unsigned,
13579 mixing signed and unsigned comparison. Since c is between
13580 '0' and '9', casting to int is safe. */
13581 if (width > (PY_SSIZE_T_MAX - ((int)c - '0')) / 10) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013582 PyErr_SetString(PyExc_ValueError,
13583 "width too big");
Benjamin Peterson14339b62009-01-31 16:36:08 +000013584 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +000013585 }
13586 width = width*10 + (c - '0');
13587 }
13588 }
13589 if (c == '.') {
13590 prec = 0;
13591 if (--fmtcnt >= 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013592 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013593 if (c == '*') {
13594 v = getnextarg(args, arglen, &argidx);
13595 if (v == NULL)
13596 goto onError;
13597 if (!PyLong_Check(v)) {
13598 PyErr_SetString(PyExc_TypeError,
13599 "* wants int");
13600 goto onError;
13601 }
13602 prec = PyLong_AsLong(v);
13603 if (prec == -1 && PyErr_Occurred())
13604 goto onError;
13605 if (prec < 0)
13606 prec = 0;
13607 if (--fmtcnt >= 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013608 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013609 }
13610 else if (c >= '0' && c <= '9') {
13611 prec = c - '0';
13612 while (--fmtcnt >= 0) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013613 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013614 if (c < '0' || c > '9')
13615 break;
Martin v. Löwisb05c0732012-05-15 13:45:49 +020013616 if (prec > (INT_MAX - ((int)c - '0')) / 10) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013617 PyErr_SetString(PyExc_ValueError,
13618 "prec too big");
13619 goto onError;
13620 }
13621 prec = prec*10 + (c - '0');
13622 }
13623 }
13624 } /* prec */
13625 if (fmtcnt >= 0) {
13626 if (c == 'h' || c == 'l' || c == 'L') {
13627 if (--fmtcnt >= 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013628 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013629 }
13630 }
13631 if (fmtcnt < 0) {
13632 PyErr_SetString(PyExc_ValueError,
13633 "incomplete format");
13634 goto onError;
13635 }
Victor Stinnerd3f08822012-05-29 12:57:52 +020013636 if (fmtcnt == 0)
Victor Stinnerd7b7c742012-06-04 22:52:12 +020013637 writer.overallocate = 0;
Victor Stinneraff3cc62012-04-30 05:19:21 +020013638
13639 if (c == '%') {
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013640 if (_PyUnicodeWriter_Prepare(&writer, 1, '%') == -1)
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013641 goto onError;
Victor Stinneree4544c2012-05-09 22:24:08 +020013642 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, '%');
13643 writer.pos += 1;
Victor Stinneraff3cc62012-04-30 05:19:21 +020013644 continue;
Benjamin Peterson29060642009-01-31 22:14:21 +000013645 }
Victor Stinneraff3cc62012-04-30 05:19:21 +020013646
Victor Stinneraff3cc62012-04-30 05:19:21 +020013647 v = getnextarg(args, arglen, &argidx);
13648 if (v == NULL)
13649 goto onError;
13650
Benjamin Peterson29060642009-01-31 22:14:21 +000013651 sign = 0;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013652 signchar = '\0';
Benjamin Peterson29060642009-01-31 22:14:21 +000013653 fill = ' ';
13654 switch (c) {
13655
Benjamin Peterson29060642009-01-31 22:14:21 +000013656 case 's':
13657 case 'r':
13658 case 'a':
Victor Stinnerd3f08822012-05-29 12:57:52 +020013659 if (PyLong_CheckExact(v) && width == -1 && prec == -1) {
13660 /* Fast path */
13661 if (_PyLong_FormatWriter(&writer, v, 10, flags & F_ALT) == -1)
13662 goto onError;
13663 goto nextarg;
13664 }
13665
Victor Stinner808fc0a2010-03-22 12:50:40 +000013666 if (PyUnicode_CheckExact(v) && c == 's') {
Benjamin Peterson29060642009-01-31 22:14:21 +000013667 temp = v;
13668 Py_INCREF(temp);
Benjamin Peterson14339b62009-01-31 16:36:08 +000013669 }
13670 else {
Benjamin Peterson29060642009-01-31 22:14:21 +000013671 if (c == 's')
13672 temp = PyObject_Str(v);
13673 else if (c == 'r')
13674 temp = PyObject_Repr(v);
13675 else
13676 temp = PyObject_ASCII(v);
Benjamin Peterson29060642009-01-31 22:14:21 +000013677 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013678 break;
13679
13680 case 'i':
13681 case 'd':
13682 case 'u':
13683 case 'o':
13684 case 'x':
13685 case 'X':
Victor Stinnerd3f08822012-05-29 12:57:52 +020013686 if (PyLong_CheckExact(v)
13687 && width == -1 && prec == -1
13688 && !(flags & (F_SIGN | F_BLANK)))
13689 {
13690 /* Fast path */
13691 switch(c)
13692 {
13693 case 'd':
13694 case 'i':
13695 case 'u':
13696 if (_PyLong_FormatWriter(&writer, v, 10, flags & F_ALT) == -1)
13697 goto onError;
13698 goto nextarg;
13699 case 'x':
13700 if (_PyLong_FormatWriter(&writer, v, 16, flags & F_ALT) == -1)
13701 goto onError;
13702 goto nextarg;
13703 case 'o':
13704 if (_PyLong_FormatWriter(&writer, v, 8, flags & F_ALT) == -1)
13705 goto onError;
13706 goto nextarg;
13707 default:
13708 break;
13709 }
13710 }
13711
Benjamin Peterson29060642009-01-31 22:14:21 +000013712 isnumok = 0;
13713 if (PyNumber_Check(v)) {
13714 PyObject *iobj=NULL;
13715
13716 if (PyLong_Check(v)) {
13717 iobj = v;
13718 Py_INCREF(iobj);
13719 }
13720 else {
13721 iobj = PyNumber_Long(v);
13722 }
13723 if (iobj!=NULL) {
13724 if (PyLong_Check(iobj)) {
13725 isnumok = 1;
Victor Stinneraff3cc62012-04-30 05:19:21 +020013726 sign = 1;
Senthil Kumaran9ebe08d2011-07-03 21:03:16 -070013727 temp = formatlong(iobj, flags, prec, (c == 'i'? 'd': c));
Benjamin Peterson29060642009-01-31 22:14:21 +000013728 Py_DECREF(iobj);
Benjamin Peterson29060642009-01-31 22:14:21 +000013729 }
13730 else {
13731 Py_DECREF(iobj);
13732 }
13733 }
13734 }
13735 if (!isnumok) {
13736 PyErr_Format(PyExc_TypeError,
13737 "%%%c format: a number is required, "
13738 "not %.200s", (char)c, Py_TYPE(v)->tp_name);
13739 goto onError;
13740 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013741 if (flags & F_ZERO)
Benjamin Peterson29060642009-01-31 22:14:21 +000013742 fill = '0';
13743 break;
13744
13745 case 'e':
13746 case 'E':
13747 case 'f':
13748 case 'F':
13749 case 'g':
13750 case 'G':
Victor Stinnerd3f08822012-05-29 12:57:52 +020013751 if (width == -1 && prec == -1
13752 && !(flags & (F_SIGN | F_BLANK)))
13753 {
13754 /* Fast path */
13755 if (formatfloat(v, flags, prec, c, NULL, &writer) == -1)
13756 goto onError;
13757 goto nextarg;
13758 }
13759
Benjamin Peterson29060642009-01-31 22:14:21 +000013760 sign = 1;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013761 if (flags & F_ZERO)
Benjamin Peterson29060642009-01-31 22:14:21 +000013762 fill = '0';
Victor Stinnerd3f08822012-05-29 12:57:52 +020013763 if (formatfloat(v, flags, prec, c, &temp, NULL) == -1)
13764 temp = NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +000013765 break;
13766
13767 case 'c':
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013768 {
13769 Py_UCS4 ch = formatchar(v);
13770 if (ch == (Py_UCS4) -1)
Benjamin Peterson29060642009-01-31 22:14:21 +000013771 goto onError;
Victor Stinnerd3f08822012-05-29 12:57:52 +020013772 if (width == -1 && prec == -1) {
13773 /* Fast path */
13774 if (_PyUnicodeWriter_Prepare(&writer, 1, ch) == -1)
13775 goto onError;
13776 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, ch);
13777 writer.pos += 1;
13778 goto nextarg;
13779 }
Victor Stinnerb5c3ea32012-05-02 00:29:36 +020013780 temp = PyUnicode_FromOrdinal(ch);
Benjamin Peterson29060642009-01-31 22:14:21 +000013781 break;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013782 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013783
13784 default:
13785 PyErr_Format(PyExc_ValueError,
13786 "unsupported format character '%c' (0x%x) "
13787 "at index %zd",
13788 (31<=c && c<=126) ? (char)c : '?',
13789 (int)c,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013790 fmtpos - 1);
Benjamin Peterson29060642009-01-31 22:14:21 +000013791 goto onError;
13792 }
Victor Stinneraff3cc62012-04-30 05:19:21 +020013793 if (temp == NULL)
13794 goto onError;
13795 assert (PyUnicode_Check(temp));
Victor Stinnerd3f08822012-05-29 12:57:52 +020013796
13797 if (width == -1 && prec == -1
13798 && !(flags & (F_SIGN | F_BLANK)))
13799 {
13800 /* Fast path */
13801 if (_PyUnicodeWriter_WriteStr(&writer, temp) == -1)
13802 goto onError;
13803 goto nextarg;
13804 }
13805
Victor Stinneraff3cc62012-04-30 05:19:21 +020013806 if (PyUnicode_READY(temp) == -1) {
13807 Py_CLEAR(temp);
13808 goto onError;
13809 }
13810 kind = PyUnicode_KIND(temp);
13811 pbuf = PyUnicode_DATA(temp);
13812 len = PyUnicode_GET_LENGTH(temp);
13813
13814 if (c == 's' || c == 'r' || c == 'a') {
13815 if (prec >= 0 && len > prec)
13816 len = prec;
13817 }
13818
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013819 /* pbuf is initialized here. */
13820 pindex = 0;
Benjamin Peterson29060642009-01-31 22:14:21 +000013821 if (sign) {
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013822 Py_UCS4 ch = PyUnicode_READ(kind, pbuf, pindex);
13823 if (ch == '-' || ch == '+') {
13824 signchar = ch;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013825 len--;
13826 pindex++;
Benjamin Peterson29060642009-01-31 22:14:21 +000013827 }
13828 else if (flags & F_SIGN)
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013829 signchar = '+';
Benjamin Peterson29060642009-01-31 22:14:21 +000013830 else if (flags & F_BLANK)
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013831 signchar = ' ';
Benjamin Peterson29060642009-01-31 22:14:21 +000013832 else
13833 sign = 0;
13834 }
13835 if (width < len)
13836 width = len;
Victor Stinneree4544c2012-05-09 22:24:08 +020013837
13838 /* Compute the length and maximum character of the
13839 written characters */
13840 bufmaxchar = 127;
13841 if (!(flags & F_LJUST)) {
13842 if (sign) {
13843 if ((width-1) > len)
Victor Stinnerd3f08822012-05-29 12:57:52 +020013844 bufmaxchar = MAX_MAXCHAR(bufmaxchar, fill);
Victor Stinneree4544c2012-05-09 22:24:08 +020013845 }
13846 else {
13847 if (width > len)
Victor Stinnerd3f08822012-05-29 12:57:52 +020013848 bufmaxchar = MAX_MAXCHAR(bufmaxchar, fill);
Victor Stinneree4544c2012-05-09 22:24:08 +020013849 }
13850 }
13851 maxchar = _PyUnicode_FindMaxChar(temp, 0, pindex+len);
Victor Stinnerd3f08822012-05-29 12:57:52 +020013852 bufmaxchar = MAX_MAXCHAR(bufmaxchar, maxchar);
Victor Stinneree4544c2012-05-09 22:24:08 +020013853
13854 buflen = width;
13855 if (sign && len == width)
13856 buflen++;
13857
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013858 if (_PyUnicodeWriter_Prepare(&writer, buflen, bufmaxchar) == -1)
Victor Stinneree4544c2012-05-09 22:24:08 +020013859 goto onError;
13860
13861 /* Write characters */
Benjamin Peterson29060642009-01-31 22:14:21 +000013862 if (sign) {
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013863 if (fill != ' ') {
Victor Stinneree4544c2012-05-09 22:24:08 +020013864 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, signchar);
13865 writer.pos += 1;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013866 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013867 if (width > len)
13868 width--;
13869 }
13870 if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013871 assert(PyUnicode_READ(kind, pbuf, pindex) == '0');
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013872 assert(PyUnicode_READ(kind, pbuf, pindex + 1) == c);
Benjamin Peterson29060642009-01-31 22:14:21 +000013873 if (fill != ' ') {
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013874 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, '0');
13875 PyUnicode_WRITE(writer.kind, writer.data, writer.pos+1, c);
13876 writer.pos += 2;
13877 pindex += 2;
Benjamin Peterson29060642009-01-31 22:14:21 +000013878 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013879 width -= 2;
13880 if (width < 0)
13881 width = 0;
13882 len -= 2;
13883 }
13884 if (width > len && !(flags & F_LJUST)) {
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013885 sublen = width - len;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013886 FILL(writer.kind, writer.data, fill, writer.pos, sublen);
13887 writer.pos += sublen;
Antoine Pitrou978b9d22011-10-07 12:35:48 +020013888 width = len;
Benjamin Peterson29060642009-01-31 22:14:21 +000013889 }
13890 if (fill == ' ') {
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013891 if (sign) {
Victor Stinneree4544c2012-05-09 22:24:08 +020013892 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, signchar);
13893 writer.pos += 1;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013894 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013895 if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013896 assert(PyUnicode_READ(kind, pbuf, pindex) == '0');
13897 assert(PyUnicode_READ(kind, pbuf, pindex+1) == c);
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013898 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, '0');
13899 PyUnicode_WRITE(writer.kind, writer.data, writer.pos+1, c);
13900 writer.pos += 2;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013901 pindex += 2;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013902 }
13903 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013904
Victor Stinnerc9d369f2012-06-16 02:22:37 +020013905 if (len) {
13906 _PyUnicode_FastCopyCharacters(writer.buffer, writer.pos,
13907 temp, pindex, len);
13908 writer.pos += len;
13909 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013910 if (width > len) {
Victor Stinneree4544c2012-05-09 22:24:08 +020013911 sublen = width - len;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013912 FILL(writer.kind, writer.data, ' ', writer.pos, sublen);
13913 writer.pos += sublen;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013914 }
Victor Stinneree4544c2012-05-09 22:24:08 +020013915
Victor Stinnerd3f08822012-05-29 12:57:52 +020013916nextarg:
Benjamin Peterson29060642009-01-31 22:14:21 +000013917 if (dict && (argidx < arglen) && c != '%') {
13918 PyErr_SetString(PyExc_TypeError,
13919 "not all arguments converted during string formatting");
Benjamin Peterson29060642009-01-31 22:14:21 +000013920 goto onError;
13921 }
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013922 Py_CLEAR(temp);
Benjamin Peterson29060642009-01-31 22:14:21 +000013923 } /* '%' */
Guido van Rossumd57fd912000-03-10 22:53:23 +000013924 } /* until end */
13925 if (argidx < arglen && !dict) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013926 PyErr_SetString(PyExc_TypeError,
13927 "not all arguments converted during string formatting");
13928 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013929 }
13930
13931 if (args_owned) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013932 Py_DECREF(args);
Guido van Rossumd57fd912000-03-10 22:53:23 +000013933 }
13934 Py_DECREF(uformat);
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013935 Py_XDECREF(temp);
13936 Py_XDECREF(second);
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013937 return _PyUnicodeWriter_Finish(&writer);
Guido van Rossumd57fd912000-03-10 22:53:23 +000013938
Benjamin Peterson29060642009-01-31 22:14:21 +000013939 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +000013940 Py_DECREF(uformat);
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013941 Py_XDECREF(temp);
13942 Py_XDECREF(second);
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013943 _PyUnicodeWriter_Dealloc(&writer);
Guido van Rossumd57fd912000-03-10 22:53:23 +000013944 if (args_owned) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013945 Py_DECREF(args);
Guido van Rossumd57fd912000-03-10 22:53:23 +000013946 }
13947 return NULL;
13948}
13949
Jeremy Hylton938ace62002-07-17 16:30:39 +000013950static PyObject *
Guido van Rossume023fe02001-08-30 03:12:59 +000013951unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
13952
Tim Peters6d6c1a32001-08-02 04:15:00 +000013953static PyObject *
13954unicode_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
13955{
Benjamin Peterson29060642009-01-31 22:14:21 +000013956 PyObject *x = NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013957 static char *kwlist[] = {"object", "encoding", "errors", 0};
13958 char *encoding = NULL;
13959 char *errors = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +000013960
Benjamin Peterson14339b62009-01-31 16:36:08 +000013961 if (type != &PyUnicode_Type)
13962 return unicode_subtype_new(type, args, kwds);
13963 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:str",
Benjamin Peterson29060642009-01-31 22:14:21 +000013964 kwlist, &x, &encoding, &errors))
Benjamin Peterson14339b62009-01-31 16:36:08 +000013965 return NULL;
Victor Stinner382955f2011-12-11 21:44:00 +010013966 if (x == NULL) {
13967 Py_INCREF(unicode_empty);
13968 return unicode_empty;
13969 }
Benjamin Peterson14339b62009-01-31 16:36:08 +000013970 if (encoding == NULL && errors == NULL)
13971 return PyObject_Str(x);
13972 else
Benjamin Peterson29060642009-01-31 22:14:21 +000013973 return PyUnicode_FromEncodedObject(x, encoding, errors);
Tim Peters6d6c1a32001-08-02 04:15:00 +000013974}
13975
Guido van Rossume023fe02001-08-30 03:12:59 +000013976static PyObject *
13977unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
13978{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013979 PyObject *unicode, *self;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020013980 Py_ssize_t length, char_size;
13981 int share_wstr, share_utf8;
13982 unsigned int kind;
13983 void *data;
Guido van Rossume023fe02001-08-30 03:12:59 +000013984
Benjamin Peterson14339b62009-01-31 16:36:08 +000013985 assert(PyType_IsSubtype(type, &PyUnicode_Type));
Victor Stinner07ac3eb2011-10-01 16:16:43 +020013986
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013987 unicode = unicode_new(&PyUnicode_Type, args, kwds);
Victor Stinner07ac3eb2011-10-01 16:16:43 +020013988 if (unicode == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +000013989 return NULL;
Victor Stinner910337b2011-10-03 03:20:16 +020013990 assert(_PyUnicode_CHECK(unicode));
Benjamin Petersonbac79492012-01-14 13:34:47 -050013991 if (PyUnicode_READY(unicode) == -1) {
Benjamin Peterson22a29702012-01-02 09:00:30 -060013992 Py_DECREF(unicode);
Victor Stinner07ac3eb2011-10-01 16:16:43 +020013993 return NULL;
Benjamin Peterson22a29702012-01-02 09:00:30 -060013994 }
Victor Stinner07ac3eb2011-10-01 16:16:43 +020013995
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013996 self = type->tp_alloc(type, 0);
Victor Stinner07ac3eb2011-10-01 16:16:43 +020013997 if (self == NULL) {
13998 Py_DECREF(unicode);
Benjamin Peterson14339b62009-01-31 16:36:08 +000013999 return NULL;
14000 }
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014001 kind = PyUnicode_KIND(unicode);
14002 length = PyUnicode_GET_LENGTH(unicode);
14003
14004 _PyUnicode_LENGTH(self) = length;
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +020014005#ifdef Py_DEBUG
14006 _PyUnicode_HASH(self) = -1;
14007#else
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014008 _PyUnicode_HASH(self) = _PyUnicode_HASH(unicode);
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +020014009#endif
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014010 _PyUnicode_STATE(self).interned = 0;
14011 _PyUnicode_STATE(self).kind = kind;
14012 _PyUnicode_STATE(self).compact = 0;
Victor Stinner3cf46372011-10-03 14:42:15 +020014013 _PyUnicode_STATE(self).ascii = _PyUnicode_STATE(unicode).ascii;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014014 _PyUnicode_STATE(self).ready = 1;
14015 _PyUnicode_WSTR(self) = NULL;
14016 _PyUnicode_UTF8_LENGTH(self) = 0;
14017 _PyUnicode_UTF8(self) = NULL;
14018 _PyUnicode_WSTR_LENGTH(self) = 0;
Victor Stinnerc3c74152011-10-02 20:39:55 +020014019 _PyUnicode_DATA_ANY(self) = NULL;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014020
14021 share_utf8 = 0;
14022 share_wstr = 0;
14023 if (kind == PyUnicode_1BYTE_KIND) {
14024 char_size = 1;
14025 if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128)
14026 share_utf8 = 1;
14027 }
14028 else if (kind == PyUnicode_2BYTE_KIND) {
14029 char_size = 2;
14030 if (sizeof(wchar_t) == 2)
14031 share_wstr = 1;
14032 }
14033 else {
14034 assert(kind == PyUnicode_4BYTE_KIND);
14035 char_size = 4;
14036 if (sizeof(wchar_t) == 4)
14037 share_wstr = 1;
14038 }
14039
14040 /* Ensure we won't overflow the length. */
14041 if (length > (PY_SSIZE_T_MAX / char_size - 1)) {
14042 PyErr_NoMemory();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014043 goto onError;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014044 }
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014045 data = PyObject_MALLOC((length + 1) * char_size);
14046 if (data == NULL) {
14047 PyErr_NoMemory();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014048 goto onError;
14049 }
14050
Victor Stinnerc3c74152011-10-02 20:39:55 +020014051 _PyUnicode_DATA_ANY(self) = data;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014052 if (share_utf8) {
14053 _PyUnicode_UTF8_LENGTH(self) = length;
14054 _PyUnicode_UTF8(self) = data;
14055 }
14056 if (share_wstr) {
14057 _PyUnicode_WSTR_LENGTH(self) = length;
14058 _PyUnicode_WSTR(self) = (wchar_t *)data;
14059 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014060
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014061 Py_MEMCPY(data, PyUnicode_DATA(unicode),
Martin v. Löwisc47adb02011-10-07 20:55:35 +020014062 kind * (length + 1));
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020014063 assert(_PyUnicode_CheckConsistency(self, 1));
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +020014064#ifdef Py_DEBUG
14065 _PyUnicode_HASH(self) = _PyUnicode_HASH(unicode);
14066#endif
Victor Stinnerdd18d3a2011-10-22 11:08:10 +020014067 Py_DECREF(unicode);
Victor Stinner7931d9a2011-11-04 00:22:48 +010014068 return self;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014069
14070onError:
14071 Py_DECREF(unicode);
14072 Py_DECREF(self);
14073 return NULL;
Guido van Rossume023fe02001-08-30 03:12:59 +000014074}
14075
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000014076PyDoc_STRVAR(unicode_doc,
Chris Jerdonek83fe2e12012-10-07 14:48:36 -070014077"str(object='') -> str\n\
14078str(bytes_or_buffer[, encoding[, errors]]) -> str\n\
Tim Peters6d6c1a32001-08-02 04:15:00 +000014079\n\
Nick Coghlan573b1fd2012-08-16 14:13:07 +100014080Create a new string object from the given object. If encoding or\n\
14081errors is specified, then the object must expose a data buffer\n\
14082that will be decoded using the given encoding and error handler.\n\
14083Otherwise, returns the result of object.__str__() (if defined)\n\
14084or repr(object).\n\
14085encoding defaults to sys.getdefaultencoding().\n\
14086errors defaults to 'strict'.");
Tim Peters6d6c1a32001-08-02 04:15:00 +000014087
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014088static PyObject *unicode_iter(PyObject *seq);
14089
Guido van Rossumd57fd912000-03-10 22:53:23 +000014090PyTypeObject PyUnicode_Type = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +000014091 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Benjamin Peterson14339b62009-01-31 16:36:08 +000014092 "str", /* tp_name */
14093 sizeof(PyUnicodeObject), /* tp_size */
14094 0, /* tp_itemsize */
Guido van Rossumd57fd912000-03-10 22:53:23 +000014095 /* Slots */
Benjamin Peterson14339b62009-01-31 16:36:08 +000014096 (destructor)unicode_dealloc, /* tp_dealloc */
14097 0, /* tp_print */
14098 0, /* tp_getattr */
14099 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +000014100 0, /* tp_reserved */
Benjamin Peterson14339b62009-01-31 16:36:08 +000014101 unicode_repr, /* tp_repr */
14102 &unicode_as_number, /* tp_as_number */
14103 &unicode_as_sequence, /* tp_as_sequence */
14104 &unicode_as_mapping, /* tp_as_mapping */
14105 (hashfunc) unicode_hash, /* tp_hash*/
14106 0, /* tp_call*/
14107 (reprfunc) unicode_str, /* tp_str */
14108 PyObject_GenericGetAttr, /* tp_getattro */
14109 0, /* tp_setattro */
14110 0, /* tp_as_buffer */
14111 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE |
Benjamin Peterson29060642009-01-31 22:14:21 +000014112 Py_TPFLAGS_UNICODE_SUBCLASS, /* tp_flags */
Benjamin Peterson14339b62009-01-31 16:36:08 +000014113 unicode_doc, /* tp_doc */
14114 0, /* tp_traverse */
14115 0, /* tp_clear */
14116 PyUnicode_RichCompare, /* tp_richcompare */
14117 0, /* tp_weaklistoffset */
14118 unicode_iter, /* tp_iter */
14119 0, /* tp_iternext */
14120 unicode_methods, /* tp_methods */
14121 0, /* tp_members */
14122 0, /* tp_getset */
14123 &PyBaseObject_Type, /* tp_base */
14124 0, /* tp_dict */
14125 0, /* tp_descr_get */
14126 0, /* tp_descr_set */
14127 0, /* tp_dictoffset */
14128 0, /* tp_init */
14129 0, /* tp_alloc */
14130 unicode_new, /* tp_new */
14131 PyObject_Del, /* tp_free */
Guido van Rossumd57fd912000-03-10 22:53:23 +000014132};
14133
14134/* Initialize the Unicode implementation */
14135
Victor Stinner3a50e702011-10-18 21:21:00 +020014136int _PyUnicode_Init(void)
Guido van Rossumd57fd912000-03-10 22:53:23 +000014137{
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000014138 int i;
14139
Thomas Wouters477c8d52006-05-27 19:21:47 +000014140 /* XXX - move this array to unicodectype.c ? */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014141 Py_UCS2 linebreak[] = {
Thomas Wouters477c8d52006-05-27 19:21:47 +000014142 0x000A, /* LINE FEED */
14143 0x000D, /* CARRIAGE RETURN */
14144 0x001C, /* FILE SEPARATOR */
14145 0x001D, /* GROUP SEPARATOR */
14146 0x001E, /* RECORD SEPARATOR */
14147 0x0085, /* NEXT LINE */
14148 0x2028, /* LINE SEPARATOR */
14149 0x2029, /* PARAGRAPH SEPARATOR */
14150 };
14151
Fred Drakee4315f52000-05-09 19:53:39 +000014152 /* Init the implementation */
Victor Stinnera464fc12011-10-02 20:39:30 +020014153 unicode_empty = PyUnicode_New(0, 0);
Thomas Wouters0e3f5912006-08-11 14:57:12 +000014154 if (!unicode_empty)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014155 Py_FatalError("Can't create empty string");
Victor Stinnerd3df8ab2011-11-22 01:22:34 +010014156 assert(_PyUnicode_CheckConsistency(unicode_empty, 1));
Thomas Wouters0e3f5912006-08-11 14:57:12 +000014157
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000014158 for (i = 0; i < 256; i++)
Benjamin Peterson29060642009-01-31 22:14:21 +000014159 unicode_latin1[i] = NULL;
Guido van Rossumcacfc072002-05-24 19:01:59 +000014160 if (PyType_Ready(&PyUnicode_Type) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000014161 Py_FatalError("Can't initialize 'unicode'");
Thomas Wouters477c8d52006-05-27 19:21:47 +000014162
14163 /* initialize the linebreak bloom filter */
14164 bloom_linebreak = make_bloom_mask(
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014165 PyUnicode_2BYTE_KIND, linebreak,
Victor Stinner63941882011-09-29 00:42:28 +020014166 Py_ARRAY_LENGTH(linebreak));
Thomas Wouters0e3f5912006-08-11 14:57:12 +000014167
14168 PyType_Ready(&EncodingMapType);
Victor Stinner3a50e702011-10-18 21:21:00 +020014169
14170#ifdef HAVE_MBCS
14171 winver.dwOSVersionInfoSize = sizeof(winver);
14172 if (!GetVersionEx((OSVERSIONINFO*)&winver)) {
14173 PyErr_SetFromWindowsErr(0);
14174 return -1;
14175 }
14176#endif
14177 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000014178}
14179
14180/* Finalize the Unicode implementation */
14181
Christian Heimesa156e092008-02-16 07:38:31 +000014182int
14183PyUnicode_ClearFreeList(void)
14184{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014185 return 0;
Christian Heimesa156e092008-02-16 07:38:31 +000014186}
14187
Guido van Rossumd57fd912000-03-10 22:53:23 +000014188void
Thomas Wouters78890102000-07-22 19:25:51 +000014189_PyUnicode_Fini(void)
Guido van Rossumd57fd912000-03-10 22:53:23 +000014190{
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000014191 int i;
Guido van Rossumd57fd912000-03-10 22:53:23 +000014192
Guido van Rossum4ae8ef82000-10-03 18:09:04 +000014193 Py_XDECREF(unicode_empty);
14194 unicode_empty = NULL;
Barry Warsaw5b4c2282000-10-03 20:45:26 +000014195
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000014196 for (i = 0; i < 256; i++) {
Benjamin Peterson29060642009-01-31 22:14:21 +000014197 if (unicode_latin1[i]) {
14198 Py_DECREF(unicode_latin1[i]);
14199 unicode_latin1[i] = NULL;
14200 }
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000014201 }
Martin v. Löwisafe55bb2011-10-09 10:38:36 +020014202 _PyUnicode_ClearStaticStrings();
Christian Heimesa156e092008-02-16 07:38:31 +000014203 (void)PyUnicode_ClearFreeList();
Guido van Rossumd57fd912000-03-10 22:53:23 +000014204}
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +000014205
Walter Dörwald16807132007-05-25 13:52:07 +000014206void
14207PyUnicode_InternInPlace(PyObject **p)
14208{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014209 register PyObject *s = *p;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014210 PyObject *t;
Victor Stinner4fae54c2011-10-03 02:01:52 +020014211#ifdef Py_DEBUG
14212 assert(s != NULL);
14213 assert(_PyUnicode_CHECK(s));
14214#else
Benjamin Peterson14339b62009-01-31 16:36:08 +000014215 if (s == NULL || !PyUnicode_Check(s))
Victor Stinner4fae54c2011-10-03 02:01:52 +020014216 return;
14217#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +000014218 /* If it's a subclass, we don't really know what putting
14219 it in the interned dict might do. */
14220 if (!PyUnicode_CheckExact(s))
14221 return;
14222 if (PyUnicode_CHECK_INTERNED(s))
14223 return;
14224 if (interned == NULL) {
14225 interned = PyDict_New();
14226 if (interned == NULL) {
14227 PyErr_Clear(); /* Don't leave an exception */
14228 return;
14229 }
14230 }
14231 /* It might be that the GetItem call fails even
14232 though the key is present in the dictionary,
14233 namely when this happens during a stack overflow. */
14234 Py_ALLOW_RECURSION
Victor Stinner7931d9a2011-11-04 00:22:48 +010014235 t = PyDict_GetItem(interned, s);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014236 Py_END_ALLOW_RECURSION
Martin v. Löwis5b222132007-06-10 09:51:05 +000014237
Benjamin Peterson29060642009-01-31 22:14:21 +000014238 if (t) {
14239 Py_INCREF(t);
14240 Py_DECREF(*p);
14241 *p = t;
14242 return;
14243 }
Walter Dörwald16807132007-05-25 13:52:07 +000014244
Benjamin Peterson14339b62009-01-31 16:36:08 +000014245 PyThreadState_GET()->recursion_critical = 1;
Victor Stinner7931d9a2011-11-04 00:22:48 +010014246 if (PyDict_SetItem(interned, s, s) < 0) {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014247 PyErr_Clear();
14248 PyThreadState_GET()->recursion_critical = 0;
14249 return;
14250 }
14251 PyThreadState_GET()->recursion_critical = 0;
14252 /* The two references in interned are not counted by refcnt.
14253 The deallocator will take care of this */
14254 Py_REFCNT(s) -= 2;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014255 _PyUnicode_STATE(s).interned = SSTATE_INTERNED_MORTAL;
Walter Dörwald16807132007-05-25 13:52:07 +000014256}
14257
14258void
14259PyUnicode_InternImmortal(PyObject **p)
14260{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014261 PyUnicode_InternInPlace(p);
14262 if (PyUnicode_CHECK_INTERNED(*p) != SSTATE_INTERNED_IMMORTAL) {
Victor Stinneraf9e4b82011-10-23 20:07:00 +020014263 _PyUnicode_STATE(*p).interned = SSTATE_INTERNED_IMMORTAL;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014264 Py_INCREF(*p);
14265 }
Walter Dörwald16807132007-05-25 13:52:07 +000014266}
14267
14268PyObject *
14269PyUnicode_InternFromString(const char *cp)
14270{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014271 PyObject *s = PyUnicode_FromString(cp);
14272 if (s == NULL)
14273 return NULL;
14274 PyUnicode_InternInPlace(&s);
14275 return s;
Walter Dörwald16807132007-05-25 13:52:07 +000014276}
14277
Alexander Belopolsky40018472011-02-26 01:02:56 +000014278void
14279_Py_ReleaseInternedUnicodeStrings(void)
Walter Dörwald16807132007-05-25 13:52:07 +000014280{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014281 PyObject *keys;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014282 PyObject *s;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014283 Py_ssize_t i, n;
14284 Py_ssize_t immortal_size = 0, mortal_size = 0;
Walter Dörwald16807132007-05-25 13:52:07 +000014285
Benjamin Peterson14339b62009-01-31 16:36:08 +000014286 if (interned == NULL || !PyDict_Check(interned))
14287 return;
14288 keys = PyDict_Keys(interned);
14289 if (keys == NULL || !PyList_Check(keys)) {
14290 PyErr_Clear();
14291 return;
14292 }
Walter Dörwald16807132007-05-25 13:52:07 +000014293
Benjamin Peterson14339b62009-01-31 16:36:08 +000014294 /* Since _Py_ReleaseInternedUnicodeStrings() is intended to help a leak
14295 detector, interned unicode strings are not forcibly deallocated;
14296 rather, we give them their stolen references back, and then clear
14297 and DECREF the interned dict. */
Walter Dörwald16807132007-05-25 13:52:07 +000014298
Benjamin Peterson14339b62009-01-31 16:36:08 +000014299 n = PyList_GET_SIZE(keys);
14300 fprintf(stderr, "releasing %" PY_FORMAT_SIZE_T "d interned strings\n",
Benjamin Peterson29060642009-01-31 22:14:21 +000014301 n);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014302 for (i = 0; i < n; i++) {
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014303 s = PyList_GET_ITEM(keys, i);
Victor Stinner6b56a7f2011-10-04 20:04:52 +020014304 if (PyUnicode_READY(s) == -1) {
14305 assert(0 && "could not ready string");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014306 fprintf(stderr, "could not ready string\n");
Victor Stinner6b56a7f2011-10-04 20:04:52 +020014307 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014308 switch (PyUnicode_CHECK_INTERNED(s)) {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014309 case SSTATE_NOT_INTERNED:
14310 /* XXX Shouldn't happen */
14311 break;
14312 case SSTATE_INTERNED_IMMORTAL:
14313 Py_REFCNT(s) += 1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014314 immortal_size += PyUnicode_GET_LENGTH(s);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014315 break;
14316 case SSTATE_INTERNED_MORTAL:
14317 Py_REFCNT(s) += 2;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014318 mortal_size += PyUnicode_GET_LENGTH(s);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014319 break;
14320 default:
14321 Py_FatalError("Inconsistent interned string state.");
14322 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014323 _PyUnicode_STATE(s).interned = SSTATE_NOT_INTERNED;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014324 }
14325 fprintf(stderr, "total size of all interned strings: "
14326 "%" PY_FORMAT_SIZE_T "d/%" PY_FORMAT_SIZE_T "d "
14327 "mortal/immortal\n", mortal_size, immortal_size);
14328 Py_DECREF(keys);
14329 PyDict_Clear(interned);
14330 Py_DECREF(interned);
14331 interned = NULL;
Walter Dörwald16807132007-05-25 13:52:07 +000014332}
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014333
14334
14335/********************* Unicode Iterator **************************/
14336
14337typedef struct {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014338 PyObject_HEAD
14339 Py_ssize_t it_index;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014340 PyObject *it_seq; /* Set to NULL when iterator is exhausted */
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014341} unicodeiterobject;
14342
14343static void
14344unicodeiter_dealloc(unicodeiterobject *it)
14345{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014346 _PyObject_GC_UNTRACK(it);
14347 Py_XDECREF(it->it_seq);
14348 PyObject_GC_Del(it);
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014349}
14350
14351static int
14352unicodeiter_traverse(unicodeiterobject *it, visitproc visit, void *arg)
14353{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014354 Py_VISIT(it->it_seq);
14355 return 0;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014356}
14357
14358static PyObject *
14359unicodeiter_next(unicodeiterobject *it)
14360{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014361 PyObject *seq, *item;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014362
Benjamin Peterson14339b62009-01-31 16:36:08 +000014363 assert(it != NULL);
14364 seq = it->it_seq;
14365 if (seq == NULL)
14366 return NULL;
Victor Stinner910337b2011-10-03 03:20:16 +020014367 assert(_PyUnicode_CHECK(seq));
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014368
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014369 if (it->it_index < PyUnicode_GET_LENGTH(seq)) {
14370 int kind = PyUnicode_KIND(seq);
14371 void *data = PyUnicode_DATA(seq);
14372 Py_UCS4 chr = PyUnicode_READ(kind, data, it->it_index);
14373 item = PyUnicode_FromOrdinal(chr);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014374 if (item != NULL)
14375 ++it->it_index;
14376 return item;
14377 }
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014378
Benjamin Peterson14339b62009-01-31 16:36:08 +000014379 Py_DECREF(seq);
14380 it->it_seq = NULL;
14381 return NULL;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014382}
14383
14384static PyObject *
14385unicodeiter_len(unicodeiterobject *it)
14386{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014387 Py_ssize_t len = 0;
14388 if (it->it_seq)
Victor Stinnerc4f281e2011-10-11 22:11:42 +020014389 len = PyUnicode_GET_LENGTH(it->it_seq) - it->it_index;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014390 return PyLong_FromSsize_t(len);
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014391}
14392
14393PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
14394
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000014395static PyObject *
14396unicodeiter_reduce(unicodeiterobject *it)
14397{
14398 if (it->it_seq != NULL) {
Antoine Pitroua7013882012-04-05 00:04:20 +020014399 return Py_BuildValue("N(O)n", _PyObject_GetBuiltin("iter"),
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000014400 it->it_seq, it->it_index);
14401 } else {
14402 PyObject *u = PyUnicode_FromUnicode(NULL, 0);
14403 if (u == NULL)
14404 return NULL;
Antoine Pitroua7013882012-04-05 00:04:20 +020014405 return Py_BuildValue("N(N)", _PyObject_GetBuiltin("iter"), u);
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000014406 }
14407}
14408
14409PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
14410
14411static PyObject *
14412unicodeiter_setstate(unicodeiterobject *it, PyObject *state)
14413{
14414 Py_ssize_t index = PyLong_AsSsize_t(state);
14415 if (index == -1 && PyErr_Occurred())
14416 return NULL;
14417 if (index < 0)
14418 index = 0;
14419 it->it_index = index;
14420 Py_RETURN_NONE;
14421}
14422
14423PyDoc_STRVAR(setstate_doc, "Set state information for unpickling.");
14424
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014425static PyMethodDef unicodeiter_methods[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014426 {"__length_hint__", (PyCFunction)unicodeiter_len, METH_NOARGS,
Benjamin Peterson29060642009-01-31 22:14:21 +000014427 length_hint_doc},
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000014428 {"__reduce__", (PyCFunction)unicodeiter_reduce, METH_NOARGS,
14429 reduce_doc},
14430 {"__setstate__", (PyCFunction)unicodeiter_setstate, METH_O,
14431 setstate_doc},
Benjamin Peterson14339b62009-01-31 16:36:08 +000014432 {NULL, NULL} /* sentinel */
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014433};
14434
14435PyTypeObject PyUnicodeIter_Type = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014436 PyVarObject_HEAD_INIT(&PyType_Type, 0)
14437 "str_iterator", /* tp_name */
14438 sizeof(unicodeiterobject), /* tp_basicsize */
14439 0, /* tp_itemsize */
14440 /* methods */
14441 (destructor)unicodeiter_dealloc, /* tp_dealloc */
14442 0, /* tp_print */
14443 0, /* tp_getattr */
14444 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +000014445 0, /* tp_reserved */
Benjamin Peterson14339b62009-01-31 16:36:08 +000014446 0, /* tp_repr */
14447 0, /* tp_as_number */
14448 0, /* tp_as_sequence */
14449 0, /* tp_as_mapping */
14450 0, /* tp_hash */
14451 0, /* tp_call */
14452 0, /* tp_str */
14453 PyObject_GenericGetAttr, /* tp_getattro */
14454 0, /* tp_setattro */
14455 0, /* tp_as_buffer */
14456 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
14457 0, /* tp_doc */
14458 (traverseproc)unicodeiter_traverse, /* tp_traverse */
14459 0, /* tp_clear */
14460 0, /* tp_richcompare */
14461 0, /* tp_weaklistoffset */
14462 PyObject_SelfIter, /* tp_iter */
14463 (iternextfunc)unicodeiter_next, /* tp_iternext */
14464 unicodeiter_methods, /* tp_methods */
14465 0,
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014466};
14467
14468static PyObject *
14469unicode_iter(PyObject *seq)
14470{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014471 unicodeiterobject *it;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014472
Benjamin Peterson14339b62009-01-31 16:36:08 +000014473 if (!PyUnicode_Check(seq)) {
14474 PyErr_BadInternalCall();
14475 return NULL;
14476 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014477 if (PyUnicode_READY(seq) == -1)
14478 return NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014479 it = PyObject_GC_New(unicodeiterobject, &PyUnicodeIter_Type);
14480 if (it == NULL)
14481 return NULL;
14482 it->it_index = 0;
14483 Py_INCREF(seq);
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014484 it->it_seq = seq;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014485 _PyObject_GC_TRACK(it);
14486 return (PyObject *)it;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014487}
14488
Martin v. Löwis0d3072e2011-10-31 08:40:56 +010014489
14490size_t
14491Py_UNICODE_strlen(const Py_UNICODE *u)
14492{
14493 int res = 0;
14494 while(*u++)
14495 res++;
14496 return res;
14497}
14498
14499Py_UNICODE*
14500Py_UNICODE_strcpy(Py_UNICODE *s1, const Py_UNICODE *s2)
14501{
14502 Py_UNICODE *u = s1;
14503 while ((*u++ = *s2++));
14504 return s1;
14505}
14506
14507Py_UNICODE*
14508Py_UNICODE_strncpy(Py_UNICODE *s1, const Py_UNICODE *s2, size_t n)
14509{
14510 Py_UNICODE *u = s1;
14511 while ((*u++ = *s2++))
14512 if (n-- == 0)
14513 break;
14514 return s1;
14515}
14516
14517Py_UNICODE*
14518Py_UNICODE_strcat(Py_UNICODE *s1, const Py_UNICODE *s2)
14519{
14520 Py_UNICODE *u1 = s1;
14521 u1 += Py_UNICODE_strlen(u1);
14522 Py_UNICODE_strcpy(u1, s2);
14523 return s1;
14524}
14525
14526int
14527Py_UNICODE_strcmp(const Py_UNICODE *s1, const Py_UNICODE *s2)
14528{
14529 while (*s1 && *s2 && *s1 == *s2)
14530 s1++, s2++;
14531 if (*s1 && *s2)
14532 return (*s1 < *s2) ? -1 : +1;
14533 if (*s1)
14534 return 1;
14535 if (*s2)
14536 return -1;
14537 return 0;
14538}
14539
14540int
14541Py_UNICODE_strncmp(const Py_UNICODE *s1, const Py_UNICODE *s2, size_t n)
14542{
14543 register Py_UNICODE u1, u2;
14544 for (; n != 0; n--) {
14545 u1 = *s1;
14546 u2 = *s2;
14547 if (u1 != u2)
14548 return (u1 < u2) ? -1 : +1;
14549 if (u1 == '\0')
14550 return 0;
14551 s1++;
14552 s2++;
14553 }
14554 return 0;
14555}
14556
14557Py_UNICODE*
14558Py_UNICODE_strchr(const Py_UNICODE *s, Py_UNICODE c)
14559{
14560 const Py_UNICODE *p;
14561 for (p = s; *p; p++)
14562 if (*p == c)
14563 return (Py_UNICODE*)p;
14564 return NULL;
14565}
14566
14567Py_UNICODE*
14568Py_UNICODE_strrchr(const Py_UNICODE *s, Py_UNICODE c)
14569{
14570 const Py_UNICODE *p;
14571 p = s + Py_UNICODE_strlen(s);
14572 while (p != s) {
14573 p--;
14574 if (*p == c)
14575 return (Py_UNICODE*)p;
14576 }
14577 return NULL;
14578}
Victor Stinner331ea922010-08-10 16:37:20 +000014579
Victor Stinner71133ff2010-09-01 23:43:53 +000014580Py_UNICODE*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014581PyUnicode_AsUnicodeCopy(PyObject *unicode)
Victor Stinner71133ff2010-09-01 23:43:53 +000014582{
Victor Stinner577db2c2011-10-11 22:12:48 +020014583 Py_UNICODE *u, *copy;
Victor Stinner57ffa9d2011-10-23 20:10:08 +020014584 Py_ssize_t len, size;
Victor Stinner71133ff2010-09-01 23:43:53 +000014585
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014586 if (!PyUnicode_Check(unicode)) {
14587 PyErr_BadArgument();
14588 return NULL;
14589 }
Victor Stinner57ffa9d2011-10-23 20:10:08 +020014590 u = PyUnicode_AsUnicodeAndSize(unicode, &len);
Victor Stinner577db2c2011-10-11 22:12:48 +020014591 if (u == NULL)
14592 return NULL;
Victor Stinner71133ff2010-09-01 23:43:53 +000014593 /* Ensure we won't overflow the size. */
Victor Stinner57ffa9d2011-10-23 20:10:08 +020014594 if (len > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
Victor Stinner71133ff2010-09-01 23:43:53 +000014595 PyErr_NoMemory();
14596 return NULL;
14597 }
Victor Stinner57ffa9d2011-10-23 20:10:08 +020014598 size = len + 1; /* copy the null character */
Victor Stinner71133ff2010-09-01 23:43:53 +000014599 size *= sizeof(Py_UNICODE);
14600 copy = PyMem_Malloc(size);
14601 if (copy == NULL) {
14602 PyErr_NoMemory();
14603 return NULL;
14604 }
Victor Stinner577db2c2011-10-11 22:12:48 +020014605 memcpy(copy, u, size);
Victor Stinner71133ff2010-09-01 23:43:53 +000014606 return copy;
14607}
Martin v. Löwis5b222132007-06-10 09:51:05 +000014608
Georg Brandl66c221e2010-10-14 07:04:07 +000014609/* A _string module, to export formatter_parser and formatter_field_name_split
14610 to the string.Formatter class implemented in Python. */
14611
14612static PyMethodDef _string_methods[] = {
14613 {"formatter_field_name_split", (PyCFunction) formatter_field_name_split,
14614 METH_O, PyDoc_STR("split the argument as a field name")},
14615 {"formatter_parser", (PyCFunction) formatter_parser,
14616 METH_O, PyDoc_STR("parse the argument as a format string")},
14617 {NULL, NULL}
14618};
14619
14620static struct PyModuleDef _string_module = {
14621 PyModuleDef_HEAD_INIT,
14622 "_string",
14623 PyDoc_STR("string helper module"),
14624 0,
14625 _string_methods,
14626 NULL,
14627 NULL,
14628 NULL,
14629 NULL
14630};
14631
14632PyMODINIT_FUNC
14633PyInit__string(void)
14634{
14635 return PyModule_Create(&_string_module);
14636}
14637
14638
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000014639#ifdef __cplusplus
14640}
14641#endif