blob: 35da4575308d01d70f8f66e8a28bbb5a91777f91 [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
Serhiy Storchaka05997252013-01-26 12:14:02 +020060NOTE: In the interpreter's initialization phase, some globals are currently
61 initialized dynamically as needed. In the process Unicode objects may
62 be created before the Unicode type is ready.
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +000063
64*/
Guido van Rossumd57fd912000-03-10 22:53:23 +000065
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000066
67#ifdef __cplusplus
68extern "C" {
69#endif
70
Victor Stinner8faf8212011-12-08 22:14:11 +010071/* Maximum code point of Unicode 6.0: 0x10ffff (1,114,111) */
72#define MAX_UNICODE 0x10ffff
73
Victor Stinner910337b2011-10-03 03:20:16 +020074#ifdef Py_DEBUG
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020075# define _PyUnicode_CHECK(op) _PyUnicode_CheckConsistency(op, 0)
Victor Stinner910337b2011-10-03 03:20:16 +020076#else
77# define _PyUnicode_CHECK(op) PyUnicode_Check(op)
78#endif
Victor Stinnerfb5f5f22011-09-28 21:39:49 +020079
Victor Stinnere90fe6a2011-10-01 16:48:13 +020080#define _PyUnicode_UTF8(op) \
81 (((PyCompactUnicodeObject*)(op))->utf8)
82#define PyUnicode_UTF8(op) \
Victor Stinner910337b2011-10-03 03:20:16 +020083 (assert(_PyUnicode_CHECK(op)), \
Victor Stinnere90fe6a2011-10-01 16:48:13 +020084 assert(PyUnicode_IS_READY(op)), \
85 PyUnicode_IS_COMPACT_ASCII(op) ? \
86 ((char*)((PyASCIIObject*)(op) + 1)) : \
87 _PyUnicode_UTF8(op))
Victor Stinnerbc8b81b2011-09-29 19:31:34 +020088#define _PyUnicode_UTF8_LENGTH(op) \
Victor Stinnere90fe6a2011-10-01 16:48:13 +020089 (((PyCompactUnicodeObject*)(op))->utf8_length)
90#define PyUnicode_UTF8_LENGTH(op) \
Victor Stinner910337b2011-10-03 03:20:16 +020091 (assert(_PyUnicode_CHECK(op)), \
Victor Stinnere90fe6a2011-10-01 16:48:13 +020092 assert(PyUnicode_IS_READY(op)), \
93 PyUnicode_IS_COMPACT_ASCII(op) ? \
94 ((PyASCIIObject*)(op))->length : \
95 _PyUnicode_UTF8_LENGTH(op))
Victor Stinnera5f91632011-10-04 01:07:11 +020096#define _PyUnicode_WSTR(op) \
97 (((PyASCIIObject*)(op))->wstr)
98#define _PyUnicode_WSTR_LENGTH(op) \
99 (((PyCompactUnicodeObject*)(op))->wstr_length)
100#define _PyUnicode_LENGTH(op) \
101 (((PyASCIIObject *)(op))->length)
102#define _PyUnicode_STATE(op) \
103 (((PyASCIIObject *)(op))->state)
104#define _PyUnicode_HASH(op) \
105 (((PyASCIIObject *)(op))->hash)
Victor Stinner910337b2011-10-03 03:20:16 +0200106#define _PyUnicode_KIND(op) \
107 (assert(_PyUnicode_CHECK(op)), \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200108 ((PyASCIIObject *)(op))->state.kind)
Victor Stinner910337b2011-10-03 03:20:16 +0200109#define _PyUnicode_GET_LENGTH(op) \
110 (assert(_PyUnicode_CHECK(op)), \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200111 ((PyASCIIObject *)(op))->length)
Victor Stinnera5f91632011-10-04 01:07:11 +0200112#define _PyUnicode_DATA_ANY(op) \
113 (((PyUnicodeObject*)(op))->data.any)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200114
Victor Stinner910337b2011-10-03 03:20:16 +0200115#undef PyUnicode_READY
116#define PyUnicode_READY(op) \
117 (assert(_PyUnicode_CHECK(op)), \
118 (PyUnicode_IS_READY(op) ? \
Victor Stinnera5f91632011-10-04 01:07:11 +0200119 0 : \
Victor Stinner7931d9a2011-11-04 00:22:48 +0100120 _PyUnicode_Ready(op)))
Victor Stinner910337b2011-10-03 03:20:16 +0200121
Victor Stinnerc379ead2011-10-03 12:52:27 +0200122#define _PyUnicode_SHARE_UTF8(op) \
123 (assert(_PyUnicode_CHECK(op)), \
124 assert(!PyUnicode_IS_COMPACT_ASCII(op)), \
125 (_PyUnicode_UTF8(op) == PyUnicode_DATA(op)))
126#define _PyUnicode_SHARE_WSTR(op) \
127 (assert(_PyUnicode_CHECK(op)), \
128 (_PyUnicode_WSTR(unicode) == PyUnicode_DATA(op)))
129
Victor Stinner829c0ad2011-10-03 01:08:02 +0200130/* true if the Unicode object has an allocated UTF-8 memory block
131 (not shared with other data) */
Victor Stinner910337b2011-10-03 03:20:16 +0200132#define _PyUnicode_HAS_UTF8_MEMORY(op) \
133 (assert(_PyUnicode_CHECK(op)), \
134 (!PyUnicode_IS_COMPACT_ASCII(op) \
135 && _PyUnicode_UTF8(op) \
Victor Stinner829c0ad2011-10-03 01:08:02 +0200136 && _PyUnicode_UTF8(op) != PyUnicode_DATA(op)))
137
Victor Stinner03490912011-10-03 23:45:12 +0200138/* true if the Unicode object has an allocated wstr memory block
139 (not shared with other data) */
140#define _PyUnicode_HAS_WSTR_MEMORY(op) \
141 (assert(_PyUnicode_CHECK(op)), \
142 (_PyUnicode_WSTR(op) && \
143 (!PyUnicode_IS_READY(op) || \
144 _PyUnicode_WSTR(op) != PyUnicode_DATA(op))))
145
Victor Stinner910337b2011-10-03 03:20:16 +0200146/* Generic helper macro to convert characters of different types.
147 from_type and to_type have to be valid type names, begin and end
148 are pointers to the source characters which should be of type
149 "from_type *". to is a pointer of type "to_type *" and points to the
150 buffer where the result characters are written to. */
151#define _PyUnicode_CONVERT_BYTES(from_type, to_type, begin, end, to) \
152 do { \
Antoine Pitroue459a082011-10-11 20:58:41 +0200153 to_type *_to = (to_type *) to; \
154 const from_type *_iter = (begin); \
155 const from_type *_end = (end); \
156 Py_ssize_t n = (_end) - (_iter); \
157 const from_type *_unrolled_end = \
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +0200158 _iter + _Py_SIZE_ROUND_DOWN(n, 4); \
Antoine Pitroue459a082011-10-11 20:58:41 +0200159 while (_iter < (_unrolled_end)) { \
160 _to[0] = (to_type) _iter[0]; \
161 _to[1] = (to_type) _iter[1]; \
162 _to[2] = (to_type) _iter[2]; \
163 _to[3] = (to_type) _iter[3]; \
164 _iter += 4; _to += 4; \
Victor Stinner910337b2011-10-03 03:20:16 +0200165 } \
Antoine Pitroue459a082011-10-11 20:58:41 +0200166 while (_iter < (_end)) \
167 *_to++ = (to_type) *_iter++; \
Victor Stinner910337b2011-10-03 03:20:16 +0200168 } while (0)
Victor Stinner829c0ad2011-10-03 01:08:02 +0200169
Walter Dörwald16807132007-05-25 13:52:07 +0000170/* This dictionary holds all interned unicode strings. Note that references
171 to strings in this dictionary are *not* counted in the string's ob_refcnt.
172 When the interned string reaches a refcnt of 0 the string deallocation
173 function will delete the reference from this dictionary.
174
175 Another way to look at this is that to say that the actual reference
Guido van Rossum98297ee2007-11-06 21:34:58 +0000176 count of a string is: s->ob_refcnt + (s->state ? 2 : 0)
Walter Dörwald16807132007-05-25 13:52:07 +0000177*/
Serhiy Storchaka05997252013-01-26 12:14:02 +0200178static PyObject *interned = NULL;
Walter Dörwald16807132007-05-25 13:52:07 +0000179
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000180/* The empty Unicode object is shared to improve performance. */
Serhiy Storchaka678db842013-01-26 12:16:36 +0200181static PyObject *unicode_empty = NULL;
Serhiy Storchaka05997252013-01-26 12:14:02 +0200182
Serhiy Storchaka678db842013-01-26 12:16:36 +0200183#define _Py_INCREF_UNICODE_EMPTY() \
Serhiy Storchaka05997252013-01-26 12:14:02 +0200184 do { \
185 if (unicode_empty != NULL) \
186 Py_INCREF(unicode_empty); \
187 else { \
Serhiy Storchaka678db842013-01-26 12:16:36 +0200188 unicode_empty = PyUnicode_New(0, 0); \
189 if (unicode_empty != NULL) { \
Serhiy Storchaka05997252013-01-26 12:14:02 +0200190 Py_INCREF(unicode_empty); \
Serhiy Storchaka678db842013-01-26 12:16:36 +0200191 assert(_PyUnicode_CheckConsistency(unicode_empty, 1)); \
192 } \
Serhiy Storchaka05997252013-01-26 12:14:02 +0200193 } \
Serhiy Storchaka05997252013-01-26 12:14:02 +0200194 } while (0)
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000195
Serhiy Storchaka678db842013-01-26 12:16:36 +0200196#define _Py_RETURN_UNICODE_EMPTY() \
197 do { \
198 _Py_INCREF_UNICODE_EMPTY(); \
199 return unicode_empty; \
200 } while (0)
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000201
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200202/* List of static strings. */
Serhiy Storchaka678db842013-01-26 12:16:36 +0200203static _Py_Identifier *static_strings = NULL;
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200204
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000205/* Single character Unicode strings in the Latin-1 range are being
206 shared as well. */
Serhiy Storchaka678db842013-01-26 12:16:36 +0200207static PyObject *unicode_latin1[256] = {NULL};
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000208
Christian Heimes190d79e2008-01-30 11:58:22 +0000209/* Fast detection of the most frequent whitespace characters */
210const unsigned char _Py_ascii_whitespace[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +0000211 0, 0, 0, 0, 0, 0, 0, 0,
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000212/* case 0x0009: * CHARACTER TABULATION */
Christian Heimes1a8501c2008-10-02 19:56:01 +0000213/* case 0x000A: * LINE FEED */
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000214/* case 0x000B: * LINE TABULATION */
Christian Heimes1a8501c2008-10-02 19:56:01 +0000215/* case 0x000C: * FORM FEED */
216/* case 0x000D: * CARRIAGE RETURN */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000217 0, 1, 1, 1, 1, 1, 0, 0,
218 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000219/* case 0x001C: * FILE SEPARATOR */
220/* case 0x001D: * GROUP SEPARATOR */
221/* case 0x001E: * RECORD SEPARATOR */
222/* case 0x001F: * UNIT SEPARATOR */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000223 0, 0, 0, 0, 1, 1, 1, 1,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000224/* case 0x0020: * SPACE */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000225 1, 0, 0, 0, 0, 0, 0, 0,
226 0, 0, 0, 0, 0, 0, 0, 0,
227 0, 0, 0, 0, 0, 0, 0, 0,
228 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes190d79e2008-01-30 11:58:22 +0000229
Benjamin Peterson14339b62009-01-31 16:36:08 +0000230 0, 0, 0, 0, 0, 0, 0, 0,
231 0, 0, 0, 0, 0, 0, 0, 0,
232 0, 0, 0, 0, 0, 0, 0, 0,
233 0, 0, 0, 0, 0, 0, 0, 0,
234 0, 0, 0, 0, 0, 0, 0, 0,
235 0, 0, 0, 0, 0, 0, 0, 0,
236 0, 0, 0, 0, 0, 0, 0, 0,
237 0, 0, 0, 0, 0, 0, 0, 0
Christian Heimes190d79e2008-01-30 11:58:22 +0000238};
239
Victor Stinner1b4f9ce2011-10-03 13:28:14 +0200240/* forward */
Victor Stinnerfe226c02011-10-03 03:52:20 +0200241static PyUnicodeObject *_PyUnicode_New(Py_ssize_t length);
Victor Stinner1b4f9ce2011-10-03 13:28:14 +0200242static PyObject* get_latin1_char(unsigned char ch);
Victor Stinner488fa492011-12-12 00:01:39 +0100243static int unicode_modifiable(PyObject *unicode);
244
Victor Stinnerfe226c02011-10-03 03:52:20 +0200245
Alexander Belopolsky40018472011-02-26 01:02:56 +0000246static PyObject *
Victor Stinnerd21b58c2013-02-26 00:15:54 +0100247_PyUnicode_FromUCS1(const Py_UCS1 *s, Py_ssize_t size);
Antoine Pitroudd4e2f02011-10-13 00:02:27 +0200248static PyObject *
249_PyUnicode_FromUCS2(const Py_UCS2 *s, Py_ssize_t size);
250static PyObject *
251_PyUnicode_FromUCS4(const Py_UCS4 *s, Py_ssize_t size);
252
253static PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +0000254unicode_encode_call_errorhandler(const char *errors,
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000255 PyObject **errorHandler,const char *encoding, const char *reason,
Martin v. Löwis23e275b2011-11-02 18:02:51 +0100256 PyObject *unicode, PyObject **exceptionObject,
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000257 Py_ssize_t startpos, Py_ssize_t endpos, Py_ssize_t *newpos);
258
Alexander Belopolsky40018472011-02-26 01:02:56 +0000259static void
260raise_encode_exception(PyObject **exceptionObject,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +0300261 const char *encoding,
Martin v. Löwis9e816682011-11-02 12:45:42 +0100262 PyObject *unicode,
263 Py_ssize_t startpos, Py_ssize_t endpos,
264 const char *reason);
Victor Stinner31be90b2010-04-22 19:38:16 +0000265
Christian Heimes190d79e2008-01-30 11:58:22 +0000266/* Same for linebreaks */
267static unsigned char ascii_linebreak[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +0000268 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000269/* 0x000A, * LINE FEED */
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000270/* 0x000B, * LINE TABULATION */
271/* 0x000C, * FORM FEED */
Christian Heimes1a8501c2008-10-02 19:56:01 +0000272/* 0x000D, * CARRIAGE RETURN */
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000273 0, 0, 1, 1, 1, 1, 0, 0,
Benjamin Peterson14339b62009-01-31 16:36:08 +0000274 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000275/* 0x001C, * FILE SEPARATOR */
276/* 0x001D, * GROUP SEPARATOR */
277/* 0x001E, * RECORD SEPARATOR */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000278 0, 0, 0, 0, 1, 1, 1, 0,
279 0, 0, 0, 0, 0, 0, 0, 0,
280 0, 0, 0, 0, 0, 0, 0, 0,
281 0, 0, 0, 0, 0, 0, 0, 0,
282 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes190d79e2008-01-30 11:58:22 +0000283
Benjamin Peterson14339b62009-01-31 16:36:08 +0000284 0, 0, 0, 0, 0, 0, 0, 0,
285 0, 0, 0, 0, 0, 0, 0, 0,
286 0, 0, 0, 0, 0, 0, 0, 0,
287 0, 0, 0, 0, 0, 0, 0, 0,
288 0, 0, 0, 0, 0, 0, 0, 0,
289 0, 0, 0, 0, 0, 0, 0, 0,
290 0, 0, 0, 0, 0, 0, 0, 0,
291 0, 0, 0, 0, 0, 0, 0, 0
Christian Heimes190d79e2008-01-30 11:58:22 +0000292};
293
Ezio Melotti48a2f8f2011-09-29 00:18:19 +0300294/* The max unicode value is always 0x10FFFF while using the PEP-393 API.
295 This function is kept for backward compatibility with the old API. */
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000296Py_UNICODE
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +0000297PyUnicode_GetMax(void)
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000298{
Fredrik Lundh8f455852001-06-27 18:59:43 +0000299#ifdef Py_UNICODE_WIDE
Benjamin Peterson14339b62009-01-31 16:36:08 +0000300 return 0x10FFFF;
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000301#else
Benjamin Peterson14339b62009-01-31 16:36:08 +0000302 /* This is actually an illegal character, so it should
303 not be passed to unichr. */
304 return 0xFFFF;
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000305#endif
306}
307
Victor Stinner910337b2011-10-03 03:20:16 +0200308#ifdef Py_DEBUG
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +0200309int
Victor Stinner7931d9a2011-11-04 00:22:48 +0100310_PyUnicode_CheckConsistency(PyObject *op, int check_content)
Victor Stinner910337b2011-10-03 03:20:16 +0200311{
312 PyASCIIObject *ascii;
313 unsigned int kind;
314
315 assert(PyUnicode_Check(op));
316
317 ascii = (PyASCIIObject *)op;
318 kind = ascii->state.kind;
319
Victor Stinnera3b334d2011-10-03 13:53:37 +0200320 if (ascii->state.ascii == 1 && ascii->state.compact == 1) {
Victor Stinner910337b2011-10-03 03:20:16 +0200321 assert(kind == PyUnicode_1BYTE_KIND);
Victor Stinner910337b2011-10-03 03:20:16 +0200322 assert(ascii->state.ready == 1);
323 }
Victor Stinnera41463c2011-10-04 01:05:08 +0200324 else {
Victor Stinner85041a52011-10-03 14:42:39 +0200325 PyCompactUnicodeObject *compact = (PyCompactUnicodeObject *)op;
Victor Stinner7f11ad42011-10-04 00:00:20 +0200326 void *data;
Victor Stinner910337b2011-10-03 03:20:16 +0200327
Victor Stinnera41463c2011-10-04 01:05:08 +0200328 if (ascii->state.compact == 1) {
329 data = compact + 1;
Victor Stinner910337b2011-10-03 03:20:16 +0200330 assert(kind == PyUnicode_1BYTE_KIND
331 || kind == PyUnicode_2BYTE_KIND
332 || kind == PyUnicode_4BYTE_KIND);
Victor Stinnera41463c2011-10-04 01:05:08 +0200333 assert(ascii->state.ascii == 0);
Victor Stinner910337b2011-10-03 03:20:16 +0200334 assert(ascii->state.ready == 1);
Victor Stinnera41463c2011-10-04 01:05:08 +0200335 assert (compact->utf8 != data);
Victor Stinnere30c0a12011-11-04 20:54:05 +0100336 }
337 else {
Victor Stinnera41463c2011-10-04 01:05:08 +0200338 PyUnicodeObject *unicode = (PyUnicodeObject *)op;
339
340 data = unicode->data.any;
341 if (kind == PyUnicode_WCHAR_KIND) {
Victor Stinnere30c0a12011-11-04 20:54:05 +0100342 assert(ascii->length == 0);
343 assert(ascii->hash == -1);
Victor Stinnera41463c2011-10-04 01:05:08 +0200344 assert(ascii->state.compact == 0);
345 assert(ascii->state.ascii == 0);
346 assert(ascii->state.ready == 0);
Victor Stinnere30c0a12011-11-04 20:54:05 +0100347 assert(ascii->state.interned == SSTATE_NOT_INTERNED);
Victor Stinnera41463c2011-10-04 01:05:08 +0200348 assert(ascii->wstr != NULL);
349 assert(data == NULL);
350 assert(compact->utf8 == NULL);
Victor Stinnera41463c2011-10-04 01:05:08 +0200351 }
352 else {
353 assert(kind == PyUnicode_1BYTE_KIND
354 || kind == PyUnicode_2BYTE_KIND
355 || kind == PyUnicode_4BYTE_KIND);
356 assert(ascii->state.compact == 0);
357 assert(ascii->state.ready == 1);
358 assert(data != NULL);
359 if (ascii->state.ascii) {
360 assert (compact->utf8 == data);
361 assert (compact->utf8_length == ascii->length);
362 }
363 else
364 assert (compact->utf8 != data);
365 }
366 }
367 if (kind != PyUnicode_WCHAR_KIND) {
Victor Stinner7f11ad42011-10-04 00:00:20 +0200368 if (
369#if SIZEOF_WCHAR_T == 2
370 kind == PyUnicode_2BYTE_KIND
371#else
372 kind == PyUnicode_4BYTE_KIND
373#endif
374 )
Victor Stinnera41463c2011-10-04 01:05:08 +0200375 {
376 assert(ascii->wstr == data);
377 assert(compact->wstr_length == ascii->length);
378 } else
379 assert(ascii->wstr != data);
Victor Stinner910337b2011-10-03 03:20:16 +0200380 }
Victor Stinnera41463c2011-10-04 01:05:08 +0200381
382 if (compact->utf8 == NULL)
383 assert(compact->utf8_length == 0);
384 if (ascii->wstr == NULL)
385 assert(compact->wstr_length == 0);
Victor Stinner910337b2011-10-03 03:20:16 +0200386 }
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200387 /* check that the best kind is used */
388 if (check_content && kind != PyUnicode_WCHAR_KIND)
389 {
390 Py_ssize_t i;
391 Py_UCS4 maxchar = 0;
Victor Stinner718fbf02012-04-26 00:39:37 +0200392 void *data;
393 Py_UCS4 ch;
394
395 data = PyUnicode_DATA(ascii);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200396 for (i=0; i < ascii->length; i++)
397 {
Victor Stinner718fbf02012-04-26 00:39:37 +0200398 ch = PyUnicode_READ(kind, data, i);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200399 if (ch > maxchar)
400 maxchar = ch;
401 }
402 if (kind == PyUnicode_1BYTE_KIND) {
Victor Stinner77faf692011-11-20 18:56:05 +0100403 if (ascii->state.ascii == 0) {
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200404 assert(maxchar >= 128);
Victor Stinner77faf692011-11-20 18:56:05 +0100405 assert(maxchar <= 255);
406 }
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200407 else
408 assert(maxchar < 128);
409 }
Victor Stinner77faf692011-11-20 18:56:05 +0100410 else if (kind == PyUnicode_2BYTE_KIND) {
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200411 assert(maxchar >= 0x100);
Victor Stinner77faf692011-11-20 18:56:05 +0100412 assert(maxchar <= 0xFFFF);
413 }
414 else {
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200415 assert(maxchar >= 0x10000);
Victor Stinner8faf8212011-12-08 22:14:11 +0100416 assert(maxchar <= MAX_UNICODE);
Victor Stinner77faf692011-11-20 18:56:05 +0100417 }
Victor Stinner718fbf02012-04-26 00:39:37 +0200418 assert(PyUnicode_READ(kind, data, ascii->length) == 0);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200419 }
Benjamin Petersonccc51c12011-10-03 19:34:12 -0400420 return 1;
421}
Victor Stinner910337b2011-10-03 03:20:16 +0200422#endif
423
Victor Stinnerd3df8ab2011-11-22 01:22:34 +0100424static PyObject*
425unicode_result_wchar(PyObject *unicode)
426{
427#ifndef Py_DEBUG
428 Py_ssize_t len;
429
430 assert(Py_REFCNT(unicode) == 1);
431
432 len = _PyUnicode_WSTR_LENGTH(unicode);
433 if (len == 0) {
Victor Stinnerd3df8ab2011-11-22 01:22:34 +0100434 Py_DECREF(unicode);
Serhiy Storchaka678db842013-01-26 12:16:36 +0200435 _Py_RETURN_UNICODE_EMPTY();
Victor Stinnerd3df8ab2011-11-22 01:22:34 +0100436 }
437
438 if (len == 1) {
439 wchar_t ch = _PyUnicode_WSTR(unicode)[0];
Victor Stinnerd21b58c2013-02-26 00:15:54 +0100440 if ((Py_UCS4)ch < 256) {
Victor Stinnerd3df8ab2011-11-22 01:22:34 +0100441 PyObject *latin1_char = get_latin1_char((unsigned char)ch);
442 Py_DECREF(unicode);
443 return latin1_char;
444 }
445 }
446
447 if (_PyUnicode_Ready(unicode) < 0) {
448 Py_XDECREF(unicode);
449 return NULL;
450 }
451#else
452 /* don't make the result ready in debug mode to ensure that the caller
453 makes the string ready before using it */
454 assert(_PyUnicode_CheckConsistency(unicode, 1));
455#endif
456 return unicode;
457}
458
459static PyObject*
460unicode_result_ready(PyObject *unicode)
461{
462 Py_ssize_t length;
463
464 length = PyUnicode_GET_LENGTH(unicode);
465 if (length == 0) {
466 if (unicode != unicode_empty) {
Victor Stinnerd3df8ab2011-11-22 01:22:34 +0100467 Py_DECREF(unicode);
Serhiy Storchaka678db842013-01-26 12:16:36 +0200468 _Py_RETURN_UNICODE_EMPTY();
Victor Stinnerd3df8ab2011-11-22 01:22:34 +0100469 }
470 return unicode_empty;
471 }
472
473 if (length == 1) {
474 Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, 0);
475 if (ch < 256) {
476 PyObject *latin1_char = unicode_latin1[ch];
477 if (latin1_char != NULL) {
478 if (unicode != latin1_char) {
479 Py_INCREF(latin1_char);
480 Py_DECREF(unicode);
481 }
482 return latin1_char;
483 }
484 else {
485 assert(_PyUnicode_CheckConsistency(unicode, 1));
486 Py_INCREF(unicode);
487 unicode_latin1[ch] = unicode;
488 return unicode;
489 }
490 }
491 }
492
493 assert(_PyUnicode_CheckConsistency(unicode, 1));
494 return unicode;
495}
496
497static PyObject*
498unicode_result(PyObject *unicode)
499{
500 assert(_PyUnicode_CHECK(unicode));
501 if (PyUnicode_IS_READY(unicode))
502 return unicode_result_ready(unicode);
503 else
504 return unicode_result_wchar(unicode);
505}
506
Victor Stinnerc4b49542011-12-11 22:44:26 +0100507static PyObject*
508unicode_result_unchanged(PyObject *unicode)
509{
510 if (PyUnicode_CheckExact(unicode)) {
Benjamin Petersonbac79492012-01-14 13:34:47 -0500511 if (PyUnicode_READY(unicode) == -1)
Victor Stinnerc4b49542011-12-11 22:44:26 +0100512 return NULL;
513 Py_INCREF(unicode);
514 return unicode;
515 }
516 else
517 /* Subtype -- return genuine unicode string with the same value. */
Victor Stinnerbf6e5602011-12-12 01:53:47 +0100518 return _PyUnicode_Copy(unicode);
Victor Stinnerc4b49542011-12-11 22:44:26 +0100519}
520
Victor Stinner3a50e702011-10-18 21:21:00 +0200521#ifdef HAVE_MBCS
522static OSVERSIONINFOEX winver;
523#endif
524
Thomas Wouters477c8d52006-05-27 19:21:47 +0000525/* --- Bloom Filters ----------------------------------------------------- */
526
527/* stuff to implement simple "bloom filters" for Unicode characters.
528 to keep things simple, we use a single bitmask, using the least 5
529 bits from each unicode characters as the bit index. */
530
531/* the linebreak mask is set up by Unicode_Init below */
532
Antoine Pitrouf068f942010-01-13 14:19:12 +0000533#if LONG_BIT >= 128
534#define BLOOM_WIDTH 128
535#elif LONG_BIT >= 64
536#define BLOOM_WIDTH 64
537#elif LONG_BIT >= 32
538#define BLOOM_WIDTH 32
539#else
540#error "LONG_BIT is smaller than 32"
541#endif
542
Thomas Wouters477c8d52006-05-27 19:21:47 +0000543#define BLOOM_MASK unsigned long
544
Serhiy Storchaka05997252013-01-26 12:14:02 +0200545static BLOOM_MASK bloom_linebreak = ~(BLOOM_MASK)0;
Thomas Wouters477c8d52006-05-27 19:21:47 +0000546
Antoine Pitrouf068f942010-01-13 14:19:12 +0000547#define BLOOM_ADD(mask, ch) ((mask |= (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
548#define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
Thomas Wouters477c8d52006-05-27 19:21:47 +0000549
Benjamin Peterson29060642009-01-31 22:14:21 +0000550#define BLOOM_LINEBREAK(ch) \
551 ((ch) < 128U ? ascii_linebreak[(ch)] : \
552 (BLOOM(bloom_linebreak, (ch)) && Py_UNICODE_ISLINEBREAK(ch)))
Thomas Wouters477c8d52006-05-27 19:21:47 +0000553
Alexander Belopolsky40018472011-02-26 01:02:56 +0000554Py_LOCAL_INLINE(BLOOM_MASK)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200555make_bloom_mask(int kind, void* ptr, Py_ssize_t len)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000556{
557 /* calculate simple bloom-style bitmask for a given unicode string */
558
Antoine Pitrouf068f942010-01-13 14:19:12 +0000559 BLOOM_MASK mask;
Thomas Wouters477c8d52006-05-27 19:21:47 +0000560 Py_ssize_t i;
561
562 mask = 0;
563 for (i = 0; i < len; i++)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200564 BLOOM_ADD(mask, PyUnicode_READ(kind, ptr, i));
Thomas Wouters477c8d52006-05-27 19:21:47 +0000565
566 return mask;
567}
568
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200569#define BLOOM_MEMBER(mask, chr, str) \
570 (BLOOM(mask, chr) \
571 && (PyUnicode_FindChar(str, chr, 0, PyUnicode_GET_LENGTH(str), 1) >= 0))
Thomas Wouters477c8d52006-05-27 19:21:47 +0000572
Antoine Pitroudd4e2f02011-10-13 00:02:27 +0200573/* Compilation of templated routines */
574
575#include "stringlib/asciilib.h"
576#include "stringlib/fastsearch.h"
577#include "stringlib/partition.h"
578#include "stringlib/split.h"
579#include "stringlib/count.h"
580#include "stringlib/find.h"
581#include "stringlib/find_max_char.h"
582#include "stringlib/localeutil.h"
583#include "stringlib/undef.h"
584
585#include "stringlib/ucs1lib.h"
586#include "stringlib/fastsearch.h"
587#include "stringlib/partition.h"
588#include "stringlib/split.h"
589#include "stringlib/count.h"
590#include "stringlib/find.h"
591#include "stringlib/find_max_char.h"
592#include "stringlib/localeutil.h"
593#include "stringlib/undef.h"
594
595#include "stringlib/ucs2lib.h"
596#include "stringlib/fastsearch.h"
597#include "stringlib/partition.h"
598#include "stringlib/split.h"
599#include "stringlib/count.h"
600#include "stringlib/find.h"
601#include "stringlib/find_max_char.h"
602#include "stringlib/localeutil.h"
603#include "stringlib/undef.h"
604
605#include "stringlib/ucs4lib.h"
606#include "stringlib/fastsearch.h"
607#include "stringlib/partition.h"
608#include "stringlib/split.h"
609#include "stringlib/count.h"
610#include "stringlib/find.h"
611#include "stringlib/find_max_char.h"
612#include "stringlib/localeutil.h"
613#include "stringlib/undef.h"
614
Antoine Pitrouf0b934b2011-10-13 18:55:09 +0200615#include "stringlib/unicodedefs.h"
616#include "stringlib/fastsearch.h"
617#include "stringlib/count.h"
618#include "stringlib/find.h"
Antoine Pitrou0a3229d2011-11-21 20:39:13 +0100619#include "stringlib/undef.h"
Antoine Pitrouf0b934b2011-10-13 18:55:09 +0200620
Guido van Rossumd57fd912000-03-10 22:53:23 +0000621/* --- Unicode Object ----------------------------------------------------- */
622
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200623static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +0200624fixup(PyObject *self, Py_UCS4 (*fixfct)(PyObject *s));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200625
Antoine Pitrouf0b934b2011-10-13 18:55:09 +0200626Py_LOCAL_INLINE(Py_ssize_t) findchar(void *s, int kind,
627 Py_ssize_t size, Py_UCS4 ch,
628 int direction)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200629{
Antoine Pitrouf0b934b2011-10-13 18:55:09 +0200630 int mode = (direction == 1) ? FAST_SEARCH : FAST_RSEARCH;
631
632 switch (kind) {
633 case PyUnicode_1BYTE_KIND:
634 {
635 Py_UCS1 ch1 = (Py_UCS1) ch;
636 if (ch1 == ch)
637 return ucs1lib_fastsearch((Py_UCS1 *) s, size, &ch1, 1, 0, mode);
638 else
639 return -1;
640 }
641 case PyUnicode_2BYTE_KIND:
642 {
643 Py_UCS2 ch2 = (Py_UCS2) ch;
644 if (ch2 == ch)
645 return ucs2lib_fastsearch((Py_UCS2 *) s, size, &ch2, 1, 0, mode);
646 else
647 return -1;
648 }
649 case PyUnicode_4BYTE_KIND:
650 return ucs4lib_fastsearch((Py_UCS4 *) s, size, &ch, 1, 0, mode);
651 default:
652 assert(0);
653 return -1;
Victor Stinner9e7a1bc2011-10-13 00:18:12 +0200654 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200655}
656
Victor Stinnerfe226c02011-10-03 03:52:20 +0200657static PyObject*
658resize_compact(PyObject *unicode, Py_ssize_t length)
659{
660 Py_ssize_t char_size;
661 Py_ssize_t struct_size;
662 Py_ssize_t new_size;
663 int share_wstr;
Victor Stinner84def372011-12-11 20:04:56 +0100664 PyObject *new_unicode;
Victor Stinner79891572012-05-03 13:43:07 +0200665 assert(unicode_modifiable(unicode));
Victor Stinnerfe226c02011-10-03 03:52:20 +0200666 assert(PyUnicode_IS_READY(unicode));
Victor Stinner488fa492011-12-12 00:01:39 +0100667 assert(PyUnicode_IS_COMPACT(unicode));
668
Martin v. Löwisc47adb02011-10-07 20:55:35 +0200669 char_size = PyUnicode_KIND(unicode);
Victor Stinner488fa492011-12-12 00:01:39 +0100670 if (PyUnicode_IS_ASCII(unicode))
Victor Stinnerfe226c02011-10-03 03:52:20 +0200671 struct_size = sizeof(PyASCIIObject);
672 else
673 struct_size = sizeof(PyCompactUnicodeObject);
Victor Stinnerc379ead2011-10-03 12:52:27 +0200674 share_wstr = _PyUnicode_SHARE_WSTR(unicode);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200675
Victor Stinnerfe226c02011-10-03 03:52:20 +0200676 if (length > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1)) {
677 PyErr_NoMemory();
678 return NULL;
679 }
680 new_size = (struct_size + (length + 1) * char_size);
681
Victor Stinner84def372011-12-11 20:04:56 +0100682 _Py_DEC_REFTOTAL;
683 _Py_ForgetReference(unicode);
684
685 new_unicode = (PyObject *)PyObject_REALLOC((char *)unicode, new_size);
686 if (new_unicode == NULL) {
Victor Stinnerb0a82a62011-12-12 13:08:33 +0100687 _Py_NewReference(unicode);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200688 PyErr_NoMemory();
689 return NULL;
690 }
Victor Stinner84def372011-12-11 20:04:56 +0100691 unicode = new_unicode;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200692 _Py_NewReference(unicode);
Victor Stinner84def372011-12-11 20:04:56 +0100693
Victor Stinnerfe226c02011-10-03 03:52:20 +0200694 _PyUnicode_LENGTH(unicode) = length;
Victor Stinnerc379ead2011-10-03 12:52:27 +0200695 if (share_wstr) {
Victor Stinnerfe226c02011-10-03 03:52:20 +0200696 _PyUnicode_WSTR(unicode) = PyUnicode_DATA(unicode);
Victor Stinner488fa492011-12-12 00:01:39 +0100697 if (!PyUnicode_IS_ASCII(unicode))
Victor Stinnerc379ead2011-10-03 12:52:27 +0200698 _PyUnicode_WSTR_LENGTH(unicode) = length;
699 }
Victor Stinnerbbbac2e2013-02-07 23:12:46 +0100700 else if (_PyUnicode_HAS_WSTR_MEMORY(unicode)) {
701 PyObject_DEL(_PyUnicode_WSTR(unicode));
702 _PyUnicode_WSTR(unicode) = NULL;
703 }
Victor Stinnerfe226c02011-10-03 03:52:20 +0200704 PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode),
705 length, 0);
Victor Stinner79891572012-05-03 13:43:07 +0200706 assert(_PyUnicode_CheckConsistency(unicode, 0));
Victor Stinnerfe226c02011-10-03 03:52:20 +0200707 return unicode;
708}
709
Alexander Belopolsky40018472011-02-26 01:02:56 +0000710static int
Victor Stinner9db1a8b2011-10-23 20:04:37 +0200711resize_inplace(PyObject *unicode, Py_ssize_t length)
Guido van Rossumd57fd912000-03-10 22:53:23 +0000712{
Victor Stinner95663112011-10-04 01:03:50 +0200713 wchar_t *wstr;
Victor Stinner7a9105a2011-12-12 00:13:42 +0100714 Py_ssize_t new_size;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200715 assert(!PyUnicode_IS_COMPACT(unicode));
Victor Stinnerfe226c02011-10-03 03:52:20 +0200716 assert(Py_REFCNT(unicode) == 1);
Tim Petersced69f82003-09-16 20:30:58 +0000717
Victor Stinnerfe226c02011-10-03 03:52:20 +0200718 if (PyUnicode_IS_READY(unicode)) {
719 Py_ssize_t char_size;
Victor Stinner1c8d0c72011-10-03 12:11:00 +0200720 int share_wstr, share_utf8;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200721 void *data;
722
723 data = _PyUnicode_DATA_ANY(unicode);
Martin v. Löwisc47adb02011-10-07 20:55:35 +0200724 char_size = PyUnicode_KIND(unicode);
Victor Stinnerc379ead2011-10-03 12:52:27 +0200725 share_wstr = _PyUnicode_SHARE_WSTR(unicode);
726 share_utf8 = _PyUnicode_SHARE_UTF8(unicode);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200727
728 if (length > (PY_SSIZE_T_MAX / char_size - 1)) {
729 PyErr_NoMemory();
730 return -1;
731 }
732 new_size = (length + 1) * char_size;
733
Victor Stinner7a9105a2011-12-12 00:13:42 +0100734 if (!share_utf8 && _PyUnicode_HAS_UTF8_MEMORY(unicode))
735 {
736 PyObject_DEL(_PyUnicode_UTF8(unicode));
737 _PyUnicode_UTF8(unicode) = NULL;
738 _PyUnicode_UTF8_LENGTH(unicode) = 0;
739 }
740
Victor Stinnerfe226c02011-10-03 03:52:20 +0200741 data = (PyObject *)PyObject_REALLOC(data, new_size);
742 if (data == NULL) {
743 PyErr_NoMemory();
744 return -1;
745 }
746 _PyUnicode_DATA_ANY(unicode) = data;
Victor Stinnerc379ead2011-10-03 12:52:27 +0200747 if (share_wstr) {
Victor Stinnerfe226c02011-10-03 03:52:20 +0200748 _PyUnicode_WSTR(unicode) = data;
Victor Stinnerc379ead2011-10-03 12:52:27 +0200749 _PyUnicode_WSTR_LENGTH(unicode) = length;
750 }
751 if (share_utf8) {
Victor Stinner1c8d0c72011-10-03 12:11:00 +0200752 _PyUnicode_UTF8(unicode) = data;
Victor Stinnerc379ead2011-10-03 12:52:27 +0200753 _PyUnicode_UTF8_LENGTH(unicode) = length;
754 }
Victor Stinnerfe226c02011-10-03 03:52:20 +0200755 _PyUnicode_LENGTH(unicode) = length;
756 PyUnicode_WRITE(PyUnicode_KIND(unicode), data, length, 0);
Victor Stinner95663112011-10-04 01:03:50 +0200757 if (share_wstr || _PyUnicode_WSTR(unicode) == NULL) {
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200758 assert(_PyUnicode_CheckConsistency(unicode, 0));
Victor Stinnerfe226c02011-10-03 03:52:20 +0200759 return 0;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200760 }
Victor Stinnerfe226c02011-10-03 03:52:20 +0200761 }
Victor Stinner95663112011-10-04 01:03:50 +0200762 assert(_PyUnicode_WSTR(unicode) != NULL);
763
764 /* check for integer overflow */
765 if (length > PY_SSIZE_T_MAX / sizeof(wchar_t) - 1) {
766 PyErr_NoMemory();
767 return -1;
768 }
Victor Stinner7a9105a2011-12-12 00:13:42 +0100769 new_size = sizeof(wchar_t) * (length + 1);
Victor Stinner95663112011-10-04 01:03:50 +0200770 wstr = _PyUnicode_WSTR(unicode);
Victor Stinner7a9105a2011-12-12 00:13:42 +0100771 wstr = PyObject_REALLOC(wstr, new_size);
Victor Stinner95663112011-10-04 01:03:50 +0200772 if (!wstr) {
773 PyErr_NoMemory();
774 return -1;
775 }
776 _PyUnicode_WSTR(unicode) = wstr;
777 _PyUnicode_WSTR(unicode)[length] = 0;
778 _PyUnicode_WSTR_LENGTH(unicode) = length;
Victor Stinnerbb10a1f2011-10-05 01:34:17 +0200779 assert(_PyUnicode_CheckConsistency(unicode, 0));
Guido van Rossumd57fd912000-03-10 22:53:23 +0000780 return 0;
781}
782
Victor Stinnerfe226c02011-10-03 03:52:20 +0200783static PyObject*
784resize_copy(PyObject *unicode, Py_ssize_t length)
785{
786 Py_ssize_t copy_length;
Victor Stinner7a9105a2011-12-12 00:13:42 +0100787 if (_PyUnicode_KIND(unicode) != PyUnicode_WCHAR_KIND) {
Victor Stinnerfe226c02011-10-03 03:52:20 +0200788 PyObject *copy;
Victor Stinner7a9105a2011-12-12 00:13:42 +0100789
Benjamin Petersonbac79492012-01-14 13:34:47 -0500790 if (PyUnicode_READY(unicode) == -1)
Victor Stinner7a9105a2011-12-12 00:13:42 +0100791 return NULL;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200792
793 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode));
794 if (copy == NULL)
795 return NULL;
796
797 copy_length = Py_MIN(length, PyUnicode_GET_LENGTH(unicode));
Victor Stinnerd3f08822012-05-29 12:57:52 +0200798 _PyUnicode_FastCopyCharacters(copy, 0, unicode, 0, copy_length);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200799 return copy;
Victor Stinner8cfcbed2011-10-03 23:19:21 +0200800 }
801 else {
Victor Stinner9db1a8b2011-10-23 20:04:37 +0200802 PyObject *w;
Victor Stinner7a9105a2011-12-12 00:13:42 +0100803
Victor Stinner9db1a8b2011-10-23 20:04:37 +0200804 w = (PyObject*)_PyUnicode_New(length);
Victor Stinnerfe226c02011-10-03 03:52:20 +0200805 if (w == NULL)
806 return NULL;
807 copy_length = _PyUnicode_WSTR_LENGTH(unicode);
808 copy_length = Py_MIN(copy_length, length);
809 Py_UNICODE_COPY(_PyUnicode_WSTR(w), _PyUnicode_WSTR(unicode),
810 copy_length);
Victor Stinner9db1a8b2011-10-23 20:04:37 +0200811 return w;
Victor Stinnerfe226c02011-10-03 03:52:20 +0200812 }
813}
814
Guido van Rossumd57fd912000-03-10 22:53:23 +0000815/* We allocate one more byte to make sure the string is
Martin v. Löwis47383402007-08-15 07:32:56 +0000816 Ux0000 terminated; some code (e.g. new_identifier)
817 relies on that.
Guido van Rossumd57fd912000-03-10 22:53:23 +0000818
819 XXX This allocator could further be enhanced by assuring that the
Benjamin Peterson29060642009-01-31 22:14:21 +0000820 free list never reduces its size below 1.
Guido van Rossumd57fd912000-03-10 22:53:23 +0000821
822*/
823
Alexander Belopolsky40018472011-02-26 01:02:56 +0000824static PyUnicodeObject *
825_PyUnicode_New(Py_ssize_t length)
Guido van Rossumd57fd912000-03-10 22:53:23 +0000826{
827 register PyUnicodeObject *unicode;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200828 size_t new_size;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000829
Thomas Wouters477c8d52006-05-27 19:21:47 +0000830 /* Optimization for empty strings */
Guido van Rossumd57fd912000-03-10 22:53:23 +0000831 if (length == 0 && unicode_empty != NULL) {
832 Py_INCREF(unicode_empty);
Victor Stinnera464fc12011-10-02 20:39:30 +0200833 return (PyUnicodeObject*)unicode_empty;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000834 }
835
Neal Norwitz3ce5d922008-08-24 07:08:55 +0000836 /* Ensure we won't overflow the size. */
837 if (length > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
838 return (PyUnicodeObject *)PyErr_NoMemory();
839 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200840 if (length < 0) {
841 PyErr_SetString(PyExc_SystemError,
842 "Negative size passed to _PyUnicode_New");
843 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000844 }
845
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200846 unicode = PyObject_New(PyUnicodeObject, &PyUnicode_Type);
847 if (unicode == NULL)
848 return NULL;
849 new_size = sizeof(Py_UNICODE) * ((size_t)length + 1);
850 _PyUnicode_WSTR(unicode) = (Py_UNICODE*) PyObject_MALLOC(new_size);
851 if (!_PyUnicode_WSTR(unicode)) {
Victor Stinnerb0a82a62011-12-12 13:08:33 +0100852 Py_DECREF(unicode);
Benjamin Peterson29060642009-01-31 22:14:21 +0000853 PyErr_NoMemory();
Victor Stinnerb0a82a62011-12-12 13:08:33 +0100854 return NULL;
Guido van Rossum3c1bb802000-04-27 20:13:50 +0000855 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200856
Jeremy Hyltond8082792003-09-16 19:41:39 +0000857 /* Initialize the first element to guard against cases where
Tim Petersced69f82003-09-16 20:30:58 +0000858 * the caller fails before initializing str -- unicode_resize()
859 * reads str[0], and the Keep-Alive optimization can keep memory
860 * allocated for str alive across a call to unicode_dealloc(unicode).
861 * We don't want unicode_resize to read uninitialized memory in
862 * that case.
863 */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200864 _PyUnicode_WSTR(unicode)[0] = 0;
865 _PyUnicode_WSTR(unicode)[length] = 0;
866 _PyUnicode_WSTR_LENGTH(unicode) = length;
867 _PyUnicode_HASH(unicode) = -1;
868 _PyUnicode_STATE(unicode).interned = 0;
869 _PyUnicode_STATE(unicode).kind = 0;
870 _PyUnicode_STATE(unicode).compact = 0;
871 _PyUnicode_STATE(unicode).ready = 0;
872 _PyUnicode_STATE(unicode).ascii = 0;
Victor Stinnerc3c74152011-10-02 20:39:55 +0200873 _PyUnicode_DATA_ANY(unicode) = NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200874 _PyUnicode_LENGTH(unicode) = 0;
Victor Stinnere90fe6a2011-10-01 16:48:13 +0200875 _PyUnicode_UTF8(unicode) = NULL;
876 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Victor Stinner7931d9a2011-11-04 00:22:48 +0100877 assert(_PyUnicode_CheckConsistency((PyObject *)unicode, 0));
Guido van Rossumd57fd912000-03-10 22:53:23 +0000878 return unicode;
879}
880
Victor Stinnerf42dc442011-10-02 23:33:16 +0200881static const char*
882unicode_kind_name(PyObject *unicode)
883{
Victor Stinner42dfd712011-10-03 14:41:45 +0200884 /* don't check consistency: unicode_kind_name() is called from
885 _PyUnicode_Dump() */
Victor Stinnerf42dc442011-10-02 23:33:16 +0200886 if (!PyUnicode_IS_COMPACT(unicode))
887 {
888 if (!PyUnicode_IS_READY(unicode))
889 return "wstr";
Benjamin Petersonead6b532011-12-20 17:23:42 -0600890 switch (PyUnicode_KIND(unicode))
Victor Stinnerf42dc442011-10-02 23:33:16 +0200891 {
892 case PyUnicode_1BYTE_KIND:
Victor Stinnera3b334d2011-10-03 13:53:37 +0200893 if (PyUnicode_IS_ASCII(unicode))
Victor Stinnerf42dc442011-10-02 23:33:16 +0200894 return "legacy ascii";
895 else
896 return "legacy latin1";
897 case PyUnicode_2BYTE_KIND:
898 return "legacy UCS2";
899 case PyUnicode_4BYTE_KIND:
900 return "legacy UCS4";
901 default:
902 return "<legacy invalid kind>";
903 }
904 }
905 assert(PyUnicode_IS_READY(unicode));
Benjamin Petersonead6b532011-12-20 17:23:42 -0600906 switch (PyUnicode_KIND(unicode)) {
Victor Stinnerf42dc442011-10-02 23:33:16 +0200907 case PyUnicode_1BYTE_KIND:
Victor Stinnera3b334d2011-10-03 13:53:37 +0200908 if (PyUnicode_IS_ASCII(unicode))
Victor Stinnerf42dc442011-10-02 23:33:16 +0200909 return "ascii";
910 else
Victor Stinnera3b334d2011-10-03 13:53:37 +0200911 return "latin1";
Victor Stinnerf42dc442011-10-02 23:33:16 +0200912 case PyUnicode_2BYTE_KIND:
Victor Stinnera3b334d2011-10-03 13:53:37 +0200913 return "UCS2";
Victor Stinnerf42dc442011-10-02 23:33:16 +0200914 case PyUnicode_4BYTE_KIND:
Victor Stinnera3b334d2011-10-03 13:53:37 +0200915 return "UCS4";
Victor Stinnerf42dc442011-10-02 23:33:16 +0200916 default:
917 return "<invalid compact kind>";
918 }
919}
920
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200921#ifdef Py_DEBUG
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200922/* Functions wrapping macros for use in debugger */
923char *_PyUnicode_utf8(void *unicode){
Victor Stinnere90fe6a2011-10-01 16:48:13 +0200924 return PyUnicode_UTF8(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200925}
926
927void *_PyUnicode_compact_data(void *unicode) {
928 return _PyUnicode_COMPACT_DATA(unicode);
929}
930void *_PyUnicode_data(void *unicode){
931 printf("obj %p\n", unicode);
932 printf("compact %d\n", PyUnicode_IS_COMPACT(unicode));
933 printf("compact ascii %d\n", PyUnicode_IS_COMPACT_ASCII(unicode));
934 printf("ascii op %p\n", ((void*)((PyASCIIObject*)(unicode) + 1)));
935 printf("compact op %p\n", ((void*)((PyCompactUnicodeObject*)(unicode) + 1)));
936 printf("compact data %p\n", _PyUnicode_COMPACT_DATA(unicode));
937 return PyUnicode_DATA(unicode);
938}
Victor Stinnerfe0c1552011-10-03 02:59:31 +0200939
940void
941_PyUnicode_Dump(PyObject *op)
942{
943 PyASCIIObject *ascii = (PyASCIIObject *)op;
Victor Stinnera849a4b2011-10-03 12:12:11 +0200944 PyCompactUnicodeObject *compact = (PyCompactUnicodeObject *)op;
945 PyUnicodeObject *unicode = (PyUnicodeObject *)op;
946 void *data;
Victor Stinner0d60e872011-10-23 19:47:19 +0200947
Victor Stinnera849a4b2011-10-03 12:12:11 +0200948 if (ascii->state.compact)
Victor Stinner0d60e872011-10-23 19:47:19 +0200949 {
950 if (ascii->state.ascii)
951 data = (ascii + 1);
952 else
953 data = (compact + 1);
954 }
Victor Stinnera849a4b2011-10-03 12:12:11 +0200955 else
956 data = unicode->data.any;
Victor Stinner0d60e872011-10-23 19:47:19 +0200957 printf("%s: len=%zu, ",unicode_kind_name(op), ascii->length);
958
Victor Stinnera849a4b2011-10-03 12:12:11 +0200959 if (ascii->wstr == data)
960 printf("shared ");
961 printf("wstr=%p", ascii->wstr);
Victor Stinner0d60e872011-10-23 19:47:19 +0200962
Victor Stinnera3b334d2011-10-03 13:53:37 +0200963 if (!(ascii->state.ascii == 1 && ascii->state.compact == 1)) {
Victor Stinnera849a4b2011-10-03 12:12:11 +0200964 printf(" (%zu), ", compact->wstr_length);
965 if (!ascii->state.compact && compact->utf8 == unicode->data.any)
966 printf("shared ");
967 printf("utf8=%p (%zu)", compact->utf8, compact->utf8_length);
Victor Stinnerfe0c1552011-10-03 02:59:31 +0200968 }
Victor Stinnera849a4b2011-10-03 12:12:11 +0200969 printf(", data=%p\n", data);
Victor Stinnerfe0c1552011-10-03 02:59:31 +0200970}
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200971#endif
972
973PyObject *
974PyUnicode_New(Py_ssize_t size, Py_UCS4 maxchar)
975{
976 PyObject *obj;
977 PyCompactUnicodeObject *unicode;
978 void *data;
Victor Stinner8f825062012-04-27 13:55:39 +0200979 enum PyUnicode_Kind kind;
Victor Stinner9e9d6892011-10-04 01:02:02 +0200980 int is_sharing, is_ascii;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200981 Py_ssize_t char_size;
982 Py_ssize_t struct_size;
983
984 /* Optimization for empty strings */
985 if (size == 0 && unicode_empty != NULL) {
986 Py_INCREF(unicode_empty);
Victor Stinnera464fc12011-10-02 20:39:30 +0200987 return unicode_empty;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200988 }
989
Victor Stinner9e9d6892011-10-04 01:02:02 +0200990 is_ascii = 0;
991 is_sharing = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200992 struct_size = sizeof(PyCompactUnicodeObject);
993 if (maxchar < 128) {
Victor Stinner8f825062012-04-27 13:55:39 +0200994 kind = PyUnicode_1BYTE_KIND;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200995 char_size = 1;
996 is_ascii = 1;
997 struct_size = sizeof(PyASCIIObject);
998 }
999 else if (maxchar < 256) {
Victor Stinner8f825062012-04-27 13:55:39 +02001000 kind = PyUnicode_1BYTE_KIND;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001001 char_size = 1;
1002 }
1003 else if (maxchar < 65536) {
Victor Stinner8f825062012-04-27 13:55:39 +02001004 kind = PyUnicode_2BYTE_KIND;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001005 char_size = 2;
1006 if (sizeof(wchar_t) == 2)
1007 is_sharing = 1;
1008 }
1009 else {
Victor Stinnerc9590ad2012-03-04 01:34:37 +01001010 if (maxchar > MAX_UNICODE) {
1011 PyErr_SetString(PyExc_SystemError,
1012 "invalid maximum character passed to PyUnicode_New");
1013 return NULL;
1014 }
Victor Stinner8f825062012-04-27 13:55:39 +02001015 kind = PyUnicode_4BYTE_KIND;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001016 char_size = 4;
1017 if (sizeof(wchar_t) == 4)
1018 is_sharing = 1;
1019 }
1020
1021 /* Ensure we won't overflow the size. */
1022 if (size < 0) {
1023 PyErr_SetString(PyExc_SystemError,
1024 "Negative size passed to PyUnicode_New");
1025 return NULL;
1026 }
1027 if (size > ((PY_SSIZE_T_MAX - struct_size) / char_size - 1))
1028 return PyErr_NoMemory();
1029
1030 /* Duplicated allocation code from _PyObject_New() instead of a call to
1031 * PyObject_New() so we are able to allocate space for the object and
1032 * it's data buffer.
1033 */
1034 obj = (PyObject *) PyObject_MALLOC(struct_size + (size + 1) * char_size);
1035 if (obj == NULL)
1036 return PyErr_NoMemory();
1037 obj = PyObject_INIT(obj, &PyUnicode_Type);
1038 if (obj == NULL)
1039 return NULL;
1040
1041 unicode = (PyCompactUnicodeObject *)obj;
1042 if (is_ascii)
1043 data = ((PyASCIIObject*)obj) + 1;
1044 else
1045 data = unicode + 1;
1046 _PyUnicode_LENGTH(unicode) = size;
1047 _PyUnicode_HASH(unicode) = -1;
1048 _PyUnicode_STATE(unicode).interned = 0;
Victor Stinner8f825062012-04-27 13:55:39 +02001049 _PyUnicode_STATE(unicode).kind = kind;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001050 _PyUnicode_STATE(unicode).compact = 1;
1051 _PyUnicode_STATE(unicode).ready = 1;
1052 _PyUnicode_STATE(unicode).ascii = is_ascii;
1053 if (is_ascii) {
1054 ((char*)data)[size] = 0;
1055 _PyUnicode_WSTR(unicode) = NULL;
1056 }
Victor Stinner8f825062012-04-27 13:55:39 +02001057 else if (kind == PyUnicode_1BYTE_KIND) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001058 ((char*)data)[size] = 0;
1059 _PyUnicode_WSTR(unicode) = NULL;
1060 _PyUnicode_WSTR_LENGTH(unicode) = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001061 unicode->utf8 = NULL;
Victor Stinner9e9d6892011-10-04 01:02:02 +02001062 unicode->utf8_length = 0;
Victor Stinner8f825062012-04-27 13:55:39 +02001063 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001064 else {
1065 unicode->utf8 = NULL;
Victor Stinner9e9d6892011-10-04 01:02:02 +02001066 unicode->utf8_length = 0;
Victor Stinner8f825062012-04-27 13:55:39 +02001067 if (kind == PyUnicode_2BYTE_KIND)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001068 ((Py_UCS2*)data)[size] = 0;
Victor Stinner8f825062012-04-27 13:55:39 +02001069 else /* kind == PyUnicode_4BYTE_KIND */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001070 ((Py_UCS4*)data)[size] = 0;
1071 if (is_sharing) {
1072 _PyUnicode_WSTR_LENGTH(unicode) = size;
1073 _PyUnicode_WSTR(unicode) = (wchar_t *)data;
1074 }
1075 else {
1076 _PyUnicode_WSTR_LENGTH(unicode) = 0;
1077 _PyUnicode_WSTR(unicode) = NULL;
1078 }
1079 }
Victor Stinner8f825062012-04-27 13:55:39 +02001080#ifdef Py_DEBUG
1081 /* Fill the data with invalid characters to detect bugs earlier.
1082 _PyUnicode_CheckConsistency(str, 1) detects invalid characters,
1083 at least for ASCII and UCS-4 strings. U+00FF is invalid in ASCII
1084 and U+FFFFFFFF is an invalid character in Unicode 6.0. */
1085 memset(data, 0xff, size * kind);
1086#endif
Victor Stinner7931d9a2011-11-04 00:22:48 +01001087 assert(_PyUnicode_CheckConsistency((PyObject*)unicode, 0));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001088 return obj;
1089}
1090
1091#if SIZEOF_WCHAR_T == 2
1092/* Helper function to convert a 16-bits wchar_t representation to UCS4, this
1093 will decode surrogate pairs, the other conversions are implemented as macros
Georg Brandl7597add2011-10-05 16:36:47 +02001094 for efficiency.
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001095
1096 This function assumes that unicode can hold one more code point than wstr
1097 characters for a terminating null character. */
Victor Stinnerc53be962011-10-02 21:33:54 +02001098static void
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001099unicode_convert_wchar_to_ucs4(const wchar_t *begin, const wchar_t *end,
Victor Stinner9db1a8b2011-10-23 20:04:37 +02001100 PyObject *unicode)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001101{
1102 const wchar_t *iter;
1103 Py_UCS4 *ucs4_out;
1104
Victor Stinner910337b2011-10-03 03:20:16 +02001105 assert(unicode != NULL);
1106 assert(_PyUnicode_CHECK(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001107 assert(_PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND);
1108 ucs4_out = PyUnicode_4BYTE_DATA(unicode);
1109
1110 for (iter = begin; iter < end; ) {
1111 assert(ucs4_out < (PyUnicode_4BYTE_DATA(unicode) +
1112 _PyUnicode_GET_LENGTH(unicode)));
Victor Stinner551ac952011-11-29 22:58:13 +01001113 if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0])
1114 && (iter+1) < end
1115 && Py_UNICODE_IS_LOW_SURROGATE(iter[1]))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001116 {
Victor Stinner551ac952011-11-29 22:58:13 +01001117 *ucs4_out++ = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001118 iter += 2;
1119 }
1120 else {
1121 *ucs4_out++ = *iter;
1122 iter++;
1123 }
1124 }
1125 assert(ucs4_out == (PyUnicode_4BYTE_DATA(unicode) +
1126 _PyUnicode_GET_LENGTH(unicode)));
1127
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001128}
1129#endif
1130
Victor Stinnercd9950f2011-10-02 00:34:53 +02001131static int
Victor Stinner488fa492011-12-12 00:01:39 +01001132unicode_check_modifiable(PyObject *unicode)
Victor Stinnercd9950f2011-10-02 00:34:53 +02001133{
Victor Stinner488fa492011-12-12 00:01:39 +01001134 if (!unicode_modifiable(unicode)) {
Victor Stinner01698042011-10-04 00:04:26 +02001135 PyErr_SetString(PyExc_SystemError,
Victor Stinner488fa492011-12-12 00:01:39 +01001136 "Cannot modify a string currently used");
Victor Stinnercd9950f2011-10-02 00:34:53 +02001137 return -1;
1138 }
Victor Stinnercd9950f2011-10-02 00:34:53 +02001139 return 0;
1140}
1141
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001142static int
1143_copy_characters(PyObject *to, Py_ssize_t to_start,
1144 PyObject *from, Py_ssize_t from_start,
1145 Py_ssize_t how_many, int check_maxchar)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001146{
Victor Stinnera0702ab2011-09-29 14:14:38 +02001147 unsigned int from_kind, to_kind;
1148 void *from_data, *to_data;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001149
Victor Stinneree4544c2012-05-09 22:24:08 +02001150 assert(0 <= how_many);
1151 assert(0 <= from_start);
1152 assert(0 <= to_start);
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001153 assert(PyUnicode_Check(from));
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001154 assert(PyUnicode_IS_READY(from));
Victor Stinneree4544c2012-05-09 22:24:08 +02001155 assert(from_start + how_many <= PyUnicode_GET_LENGTH(from));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001156
Victor Stinnerd3f08822012-05-29 12:57:52 +02001157 assert(PyUnicode_Check(to));
1158 assert(PyUnicode_IS_READY(to));
1159 assert(to_start + how_many <= PyUnicode_GET_LENGTH(to));
1160
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001161 if (how_many == 0)
1162 return 0;
1163
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001164 from_kind = PyUnicode_KIND(from);
Victor Stinnera0702ab2011-09-29 14:14:38 +02001165 from_data = PyUnicode_DATA(from);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001166 to_kind = PyUnicode_KIND(to);
Victor Stinnera0702ab2011-09-29 14:14:38 +02001167 to_data = PyUnicode_DATA(to);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001168
Victor Stinnerf1852262012-06-16 16:38:26 +02001169#ifdef Py_DEBUG
1170 if (!check_maxchar
1171 && PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to))
1172 {
1173 const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to);
1174 Py_UCS4 ch;
1175 Py_ssize_t i;
1176 for (i=0; i < how_many; i++) {
1177 ch = PyUnicode_READ(from_kind, from_data, from_start + i);
1178 assert(ch <= to_maxchar);
1179 }
1180 }
1181#endif
1182
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001183 if (from_kind == to_kind) {
Victor Stinnerf1852262012-06-16 16:38:26 +02001184 if (check_maxchar
1185 && !PyUnicode_IS_ASCII(from) && PyUnicode_IS_ASCII(to))
1186 {
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001187 /* Writing Latin-1 characters into an ASCII string requires to
1188 check that all written characters are pure ASCII */
Victor Stinnerf1852262012-06-16 16:38:26 +02001189 Py_UCS4 max_char;
1190 max_char = ucs1lib_find_max_char(from_data,
1191 (Py_UCS1*)from_data + how_many);
1192 if (max_char >= 128)
1193 return -1;
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001194 }
Martin v. Löwisc47adb02011-10-07 20:55:35 +02001195 Py_MEMCPY((char*)to_data + to_kind * to_start,
1196 (char*)from_data + from_kind * from_start,
1197 to_kind * how_many);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001198 }
Victor Stinnera0702ab2011-09-29 14:14:38 +02001199 else if (from_kind == PyUnicode_1BYTE_KIND
1200 && to_kind == PyUnicode_2BYTE_KIND)
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001201 {
1202 _PyUnicode_CONVERT_BYTES(
1203 Py_UCS1, Py_UCS2,
1204 PyUnicode_1BYTE_DATA(from) + from_start,
1205 PyUnicode_1BYTE_DATA(from) + from_start + how_many,
1206 PyUnicode_2BYTE_DATA(to) + to_start
1207 );
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001208 }
Victor Stinner157f83f2011-09-28 21:41:31 +02001209 else if (from_kind == PyUnicode_1BYTE_KIND
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001210 && to_kind == PyUnicode_4BYTE_KIND)
1211 {
1212 _PyUnicode_CONVERT_BYTES(
1213 Py_UCS1, Py_UCS4,
1214 PyUnicode_1BYTE_DATA(from) + from_start,
1215 PyUnicode_1BYTE_DATA(from) + from_start + how_many,
1216 PyUnicode_4BYTE_DATA(to) + to_start
1217 );
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001218 }
1219 else if (from_kind == PyUnicode_2BYTE_KIND
1220 && to_kind == PyUnicode_4BYTE_KIND)
1221 {
1222 _PyUnicode_CONVERT_BYTES(
1223 Py_UCS2, Py_UCS4,
1224 PyUnicode_2BYTE_DATA(from) + from_start,
1225 PyUnicode_2BYTE_DATA(from) + from_start + how_many,
1226 PyUnicode_4BYTE_DATA(to) + to_start
1227 );
Victor Stinnerbe78eaf2011-09-28 21:37:03 +02001228 }
Victor Stinnera0702ab2011-09-29 14:14:38 +02001229 else {
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001230 assert (PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to));
1231
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001232 if (!check_maxchar) {
1233 if (from_kind == PyUnicode_2BYTE_KIND
1234 && to_kind == PyUnicode_1BYTE_KIND)
1235 {
1236 _PyUnicode_CONVERT_BYTES(
1237 Py_UCS2, Py_UCS1,
1238 PyUnicode_2BYTE_DATA(from) + from_start,
1239 PyUnicode_2BYTE_DATA(from) + from_start + how_many,
1240 PyUnicode_1BYTE_DATA(to) + to_start
1241 );
1242 }
1243 else if (from_kind == PyUnicode_4BYTE_KIND
1244 && to_kind == PyUnicode_1BYTE_KIND)
1245 {
1246 _PyUnicode_CONVERT_BYTES(
1247 Py_UCS4, Py_UCS1,
1248 PyUnicode_4BYTE_DATA(from) + from_start,
1249 PyUnicode_4BYTE_DATA(from) + from_start + how_many,
1250 PyUnicode_1BYTE_DATA(to) + to_start
1251 );
1252 }
1253 else if (from_kind == PyUnicode_4BYTE_KIND
1254 && to_kind == PyUnicode_2BYTE_KIND)
1255 {
1256 _PyUnicode_CONVERT_BYTES(
1257 Py_UCS4, Py_UCS2,
1258 PyUnicode_4BYTE_DATA(from) + from_start,
1259 PyUnicode_4BYTE_DATA(from) + from_start + how_many,
1260 PyUnicode_2BYTE_DATA(to) + to_start
1261 );
1262 }
1263 else {
1264 assert(0);
1265 return -1;
1266 }
1267 }
Victor Stinnerf1852262012-06-16 16:38:26 +02001268 else {
Victor Stinnera0702ab2011-09-29 14:14:38 +02001269 const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to);
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001270 Py_UCS4 ch;
Victor Stinnera0702ab2011-09-29 14:14:38 +02001271 Py_ssize_t i;
1272
Victor Stinnera0702ab2011-09-29 14:14:38 +02001273 for (i=0; i < how_many; i++) {
1274 ch = PyUnicode_READ(from_kind, from_data, from_start + i);
Victor Stinnerc9d369f2012-06-16 02:22:37 +02001275 if (ch > to_maxchar)
1276 return -1;
Victor Stinnera0702ab2011-09-29 14:14:38 +02001277 PyUnicode_WRITE(to_kind, to_data, to_start + i, ch);
1278 }
Victor Stinnera0702ab2011-09-29 14:14:38 +02001279 }
1280 }
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001281 return 0;
1282}
1283
Victor Stinnerd3f08822012-05-29 12:57:52 +02001284void
1285_PyUnicode_FastCopyCharacters(
1286 PyObject *to, Py_ssize_t to_start,
1287 PyObject *from, Py_ssize_t from_start, Py_ssize_t how_many)
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001288{
1289 (void)_copy_characters(to, to_start, from, from_start, how_many, 0);
1290}
1291
1292Py_ssize_t
1293PyUnicode_CopyCharacters(PyObject *to, Py_ssize_t to_start,
1294 PyObject *from, Py_ssize_t from_start,
1295 Py_ssize_t how_many)
1296{
1297 int err;
1298
1299 if (!PyUnicode_Check(from) || !PyUnicode_Check(to)) {
1300 PyErr_BadInternalCall();
1301 return -1;
1302 }
1303
Benjamin Petersonbac79492012-01-14 13:34:47 -05001304 if (PyUnicode_READY(from) == -1)
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001305 return -1;
Benjamin Petersonbac79492012-01-14 13:34:47 -05001306 if (PyUnicode_READY(to) == -1)
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001307 return -1;
1308
Victor Stinnerd3f08822012-05-29 12:57:52 +02001309 if (from_start < 0) {
1310 PyErr_SetString(PyExc_IndexError, "string index out of range");
1311 return -1;
1312 }
1313 if (to_start < 0) {
1314 PyErr_SetString(PyExc_IndexError, "string index out of range");
1315 return -1;
1316 }
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001317 how_many = Py_MIN(PyUnicode_GET_LENGTH(from), how_many);
1318 if (to_start + how_many > PyUnicode_GET_LENGTH(to)) {
1319 PyErr_Format(PyExc_SystemError,
1320 "Cannot write %zi characters at %zi "
1321 "in a string of %zi characters",
1322 how_many, to_start, PyUnicode_GET_LENGTH(to));
1323 return -1;
1324 }
1325
1326 if (how_many == 0)
1327 return 0;
1328
Victor Stinner488fa492011-12-12 00:01:39 +01001329 if (unicode_check_modifiable(to))
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001330 return -1;
1331
1332 err = _copy_characters(to, to_start, from, from_start, how_many, 1);
1333 if (err) {
1334 PyErr_Format(PyExc_SystemError,
1335 "Cannot copy %s characters "
1336 "into a string of %s characters",
1337 unicode_kind_name(from),
1338 unicode_kind_name(to));
1339 return -1;
1340 }
Victor Stinnera0702ab2011-09-29 14:14:38 +02001341 return how_many;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001342}
1343
Victor Stinner17222162011-09-28 22:15:37 +02001344/* Find the maximum code point and count the number of surrogate pairs so a
1345 correct string length can be computed before converting a string to UCS4.
1346 This function counts single surrogates as a character and not as a pair.
1347
1348 Return 0 on success, or -1 on error. */
1349static int
1350find_maxchar_surrogates(const wchar_t *begin, const wchar_t *end,
1351 Py_UCS4 *maxchar, Py_ssize_t *num_surrogates)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001352{
1353 const wchar_t *iter;
Victor Stinner8faf8212011-12-08 22:14:11 +01001354 Py_UCS4 ch;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001355
Victor Stinnerc53be962011-10-02 21:33:54 +02001356 assert(num_surrogates != NULL && maxchar != NULL);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001357 *num_surrogates = 0;
1358 *maxchar = 0;
1359
1360 for (iter = begin; iter < end; ) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001361#if SIZEOF_WCHAR_T == 2
Victor Stinnerca4f2072011-11-22 03:38:40 +01001362 if (Py_UNICODE_IS_HIGH_SURROGATE(iter[0])
1363 && (iter+1) < end
1364 && Py_UNICODE_IS_LOW_SURROGATE(iter[1]))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001365 {
Victor Stinner8faf8212011-12-08 22:14:11 +01001366 ch = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001367 ++(*num_surrogates);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001368 iter += 2;
1369 }
1370 else
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001371#endif
Victor Stinner8faf8212011-12-08 22:14:11 +01001372 {
1373 ch = *iter;
1374 iter++;
1375 }
1376 if (ch > *maxchar) {
1377 *maxchar = ch;
1378 if (*maxchar > MAX_UNICODE) {
1379 PyErr_Format(PyExc_ValueError,
1380 "character U+%x is not in range [U+0000; U+10ffff]",
1381 ch);
1382 return -1;
1383 }
1384 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001385 }
1386 return 0;
1387}
1388
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001389int
1390_PyUnicode_Ready(PyObject *unicode)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001391{
1392 wchar_t *end;
1393 Py_UCS4 maxchar = 0;
1394 Py_ssize_t num_surrogates;
1395#if SIZEOF_WCHAR_T == 2
1396 Py_ssize_t length_wo_surrogates;
1397#endif
1398
Georg Brandl7597add2011-10-05 16:36:47 +02001399 /* _PyUnicode_Ready() is only intended for old-style API usage where
Victor Stinnerd8f65102011-09-29 19:43:17 +02001400 strings were created using _PyObject_New() and where no canonical
1401 representation (the str field) has been set yet aka strings
1402 which are not yet ready. */
Victor Stinner910337b2011-10-03 03:20:16 +02001403 assert(_PyUnicode_CHECK(unicode));
1404 assert(_PyUnicode_KIND(unicode) == PyUnicode_WCHAR_KIND);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001405 assert(_PyUnicode_WSTR(unicode) != NULL);
Victor Stinnerc3c74152011-10-02 20:39:55 +02001406 assert(_PyUnicode_DATA_ANY(unicode) == NULL);
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001407 assert(_PyUnicode_UTF8(unicode) == NULL);
Victor Stinnerd8f65102011-09-29 19:43:17 +02001408 /* Actually, it should neither be interned nor be anything else: */
1409 assert(_PyUnicode_STATE(unicode).interned == SSTATE_NOT_INTERNED);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001410
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001411 end = _PyUnicode_WSTR(unicode) + _PyUnicode_WSTR_LENGTH(unicode);
Victor Stinner17222162011-09-28 22:15:37 +02001412 if (find_maxchar_surrogates(_PyUnicode_WSTR(unicode), end,
Victor Stinnerd8f65102011-09-29 19:43:17 +02001413 &maxchar, &num_surrogates) == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001414 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001415
1416 if (maxchar < 256) {
Victor Stinnerc3c74152011-10-02 20:39:55 +02001417 _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(_PyUnicode_WSTR_LENGTH(unicode) + 1);
1418 if (!_PyUnicode_DATA_ANY(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001419 PyErr_NoMemory();
1420 return -1;
1421 }
Victor Stinnerfb5f5f22011-09-28 21:39:49 +02001422 _PyUnicode_CONVERT_BYTES(wchar_t, unsigned char,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001423 _PyUnicode_WSTR(unicode), end,
1424 PyUnicode_1BYTE_DATA(unicode));
1425 PyUnicode_1BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0';
1426 _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
1427 _PyUnicode_STATE(unicode).kind = PyUnicode_1BYTE_KIND;
1428 if (maxchar < 128) {
Victor Stinnera3b334d2011-10-03 13:53:37 +02001429 _PyUnicode_STATE(unicode).ascii = 1;
Victor Stinnerc3c74152011-10-02 20:39:55 +02001430 _PyUnicode_UTF8(unicode) = _PyUnicode_DATA_ANY(unicode);
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001431 _PyUnicode_UTF8_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001432 }
1433 else {
Victor Stinnera3b334d2011-10-03 13:53:37 +02001434 _PyUnicode_STATE(unicode).ascii = 0;
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001435 _PyUnicode_UTF8(unicode) = NULL;
1436 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001437 }
1438 PyObject_FREE(_PyUnicode_WSTR(unicode));
1439 _PyUnicode_WSTR(unicode) = NULL;
1440 _PyUnicode_WSTR_LENGTH(unicode) = 0;
1441 }
1442 /* In this case we might have to convert down from 4-byte native
1443 wchar_t to 2-byte unicode. */
1444 else if (maxchar < 65536) {
1445 assert(num_surrogates == 0 &&
1446 "FindMaxCharAndNumSurrogatePairs() messed up");
1447
Victor Stinner506f5922011-09-28 22:34:18 +02001448#if SIZEOF_WCHAR_T == 2
1449 /* We can share representations and are done. */
Victor Stinnerc3c74152011-10-02 20:39:55 +02001450 _PyUnicode_DATA_ANY(unicode) = _PyUnicode_WSTR(unicode);
Victor Stinner506f5922011-09-28 22:34:18 +02001451 PyUnicode_2BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0';
1452 _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
1453 _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND;
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001454 _PyUnicode_UTF8(unicode) = NULL;
1455 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Victor Stinner506f5922011-09-28 22:34:18 +02001456#else
1457 /* sizeof(wchar_t) == 4 */
Victor Stinnerc3c74152011-10-02 20:39:55 +02001458 _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(
Victor Stinner506f5922011-09-28 22:34:18 +02001459 2 * (_PyUnicode_WSTR_LENGTH(unicode) + 1));
Victor Stinnerc3c74152011-10-02 20:39:55 +02001460 if (!_PyUnicode_DATA_ANY(unicode)) {
Victor Stinner506f5922011-09-28 22:34:18 +02001461 PyErr_NoMemory();
1462 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001463 }
Victor Stinner506f5922011-09-28 22:34:18 +02001464 _PyUnicode_CONVERT_BYTES(wchar_t, Py_UCS2,
1465 _PyUnicode_WSTR(unicode), end,
1466 PyUnicode_2BYTE_DATA(unicode));
1467 PyUnicode_2BYTE_DATA(unicode)[_PyUnicode_WSTR_LENGTH(unicode)] = '\0';
1468 _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
1469 _PyUnicode_STATE(unicode).kind = PyUnicode_2BYTE_KIND;
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001470 _PyUnicode_UTF8(unicode) = NULL;
1471 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Victor Stinner506f5922011-09-28 22:34:18 +02001472 PyObject_FREE(_PyUnicode_WSTR(unicode));
1473 _PyUnicode_WSTR(unicode) = NULL;
1474 _PyUnicode_WSTR_LENGTH(unicode) = 0;
1475#endif
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001476 }
1477 /* maxchar exeeds 16 bit, wee need 4 bytes for unicode characters */
1478 else {
1479#if SIZEOF_WCHAR_T == 2
1480 /* in case the native representation is 2-bytes, we need to allocate a
1481 new normalized 4-byte version. */
1482 length_wo_surrogates = _PyUnicode_WSTR_LENGTH(unicode) - num_surrogates;
Victor Stinnerc3c74152011-10-02 20:39:55 +02001483 _PyUnicode_DATA_ANY(unicode) = PyObject_MALLOC(4 * (length_wo_surrogates + 1));
1484 if (!_PyUnicode_DATA_ANY(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001485 PyErr_NoMemory();
1486 return -1;
1487 }
1488 _PyUnicode_LENGTH(unicode) = length_wo_surrogates;
1489 _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND;
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001490 _PyUnicode_UTF8(unicode) = NULL;
1491 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Victor Stinner126c5592011-10-03 04:17:10 +02001492 /* unicode_convert_wchar_to_ucs4() requires a ready string */
1493 _PyUnicode_STATE(unicode).ready = 1;
Victor Stinnerc53be962011-10-02 21:33:54 +02001494 unicode_convert_wchar_to_ucs4(_PyUnicode_WSTR(unicode), end, unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001495 PyObject_FREE(_PyUnicode_WSTR(unicode));
1496 _PyUnicode_WSTR(unicode) = NULL;
1497 _PyUnicode_WSTR_LENGTH(unicode) = 0;
1498#else
1499 assert(num_surrogates == 0);
1500
Victor Stinnerc3c74152011-10-02 20:39:55 +02001501 _PyUnicode_DATA_ANY(unicode) = _PyUnicode_WSTR(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001502 _PyUnicode_LENGTH(unicode) = _PyUnicode_WSTR_LENGTH(unicode);
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001503 _PyUnicode_UTF8(unicode) = NULL;
1504 _PyUnicode_UTF8_LENGTH(unicode) = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001505 _PyUnicode_STATE(unicode).kind = PyUnicode_4BYTE_KIND;
1506#endif
1507 PyUnicode_4BYTE_DATA(unicode)[_PyUnicode_LENGTH(unicode)] = '\0';
1508 }
1509 _PyUnicode_STATE(unicode).ready = 1;
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001510 assert(_PyUnicode_CheckConsistency(unicode, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001511 return 0;
1512}
1513
Alexander Belopolsky40018472011-02-26 01:02:56 +00001514static void
Victor Stinner9db1a8b2011-10-23 20:04:37 +02001515unicode_dealloc(register PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00001516{
Walter Dörwald16807132007-05-25 13:52:07 +00001517 switch (PyUnicode_CHECK_INTERNED(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00001518 case SSTATE_NOT_INTERNED:
1519 break;
Walter Dörwald16807132007-05-25 13:52:07 +00001520
Benjamin Peterson29060642009-01-31 22:14:21 +00001521 case SSTATE_INTERNED_MORTAL:
1522 /* revive dead object temporarily for DelItem */
1523 Py_REFCNT(unicode) = 3;
Victor Stinner7931d9a2011-11-04 00:22:48 +01001524 if (PyDict_DelItem(interned, unicode) != 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00001525 Py_FatalError(
1526 "deletion of interned string failed");
1527 break;
Walter Dörwald16807132007-05-25 13:52:07 +00001528
Benjamin Peterson29060642009-01-31 22:14:21 +00001529 case SSTATE_INTERNED_IMMORTAL:
1530 Py_FatalError("Immortal interned string died.");
Walter Dörwald16807132007-05-25 13:52:07 +00001531
Benjamin Peterson29060642009-01-31 22:14:21 +00001532 default:
1533 Py_FatalError("Inconsistent interned string state.");
Walter Dörwald16807132007-05-25 13:52:07 +00001534 }
1535
Victor Stinner03490912011-10-03 23:45:12 +02001536 if (_PyUnicode_HAS_WSTR_MEMORY(unicode))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001537 PyObject_DEL(_PyUnicode_WSTR(unicode));
Victor Stinner829c0ad2011-10-03 01:08:02 +02001538 if (_PyUnicode_HAS_UTF8_MEMORY(unicode))
Victor Stinnere90fe6a2011-10-01 16:48:13 +02001539 PyObject_DEL(_PyUnicode_UTF8(unicode));
Victor Stinnerb0a82a62011-12-12 13:08:33 +01001540 if (!PyUnicode_IS_COMPACT(unicode) && _PyUnicode_DATA_ANY(unicode))
1541 PyObject_DEL(_PyUnicode_DATA_ANY(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001542
Victor Stinnerb0a82a62011-12-12 13:08:33 +01001543 Py_TYPE(unicode)->tp_free(unicode);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001544}
1545
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001546#ifdef Py_DEBUG
1547static int
1548unicode_is_singleton(PyObject *unicode)
1549{
1550 PyASCIIObject *ascii = (PyASCIIObject *)unicode;
1551 if (unicode == unicode_empty)
1552 return 1;
1553 if (ascii->state.kind != PyUnicode_WCHAR_KIND && ascii->length == 1)
1554 {
1555 Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, 0);
1556 if (ch < 256 && unicode_latin1[ch] == unicode)
1557 return 1;
1558 }
1559 return 0;
1560}
1561#endif
1562
Alexander Belopolsky40018472011-02-26 01:02:56 +00001563static int
Victor Stinner488fa492011-12-12 00:01:39 +01001564unicode_modifiable(PyObject *unicode)
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001565{
Victor Stinner488fa492011-12-12 00:01:39 +01001566 assert(_PyUnicode_CHECK(unicode));
Victor Stinnerfe226c02011-10-03 03:52:20 +02001567 if (Py_REFCNT(unicode) != 1)
1568 return 0;
Victor Stinner488fa492011-12-12 00:01:39 +01001569 if (_PyUnicode_HASH(unicode) != -1)
1570 return 0;
Victor Stinnerfe226c02011-10-03 03:52:20 +02001571 if (PyUnicode_CHECK_INTERNED(unicode))
1572 return 0;
Victor Stinner488fa492011-12-12 00:01:39 +01001573 if (!PyUnicode_CheckExact(unicode))
1574 return 0;
Victor Stinner77bb47b2011-10-03 20:06:05 +02001575#ifdef Py_DEBUG
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02001576 /* singleton refcount is greater than 1 */
1577 assert(!unicode_is_singleton(unicode));
Victor Stinner77bb47b2011-10-03 20:06:05 +02001578#endif
Victor Stinnerfe226c02011-10-03 03:52:20 +02001579 return 1;
1580}
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001581
Victor Stinnerfe226c02011-10-03 03:52:20 +02001582static int
1583unicode_resize(PyObject **p_unicode, Py_ssize_t length)
1584{
1585 PyObject *unicode;
1586 Py_ssize_t old_length;
1587
1588 assert(p_unicode != NULL);
1589 unicode = *p_unicode;
1590
1591 assert(unicode != NULL);
1592 assert(PyUnicode_Check(unicode));
1593 assert(0 <= length);
1594
Victor Stinner910337b2011-10-03 03:20:16 +02001595 if (_PyUnicode_KIND(unicode) == PyUnicode_WCHAR_KIND)
Victor Stinnerfe226c02011-10-03 03:52:20 +02001596 old_length = PyUnicode_WSTR_LENGTH(unicode);
1597 else
1598 old_length = PyUnicode_GET_LENGTH(unicode);
1599 if (old_length == length)
1600 return 0;
1601
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001602 if (length == 0) {
Serhiy Storchaka678db842013-01-26 12:16:36 +02001603 _Py_INCREF_UNICODE_EMPTY();
1604 if (!unicode_empty)
Benjamin Peterson29060642009-01-31 22:14:21 +00001605 return -1;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001606 Py_DECREF(*p_unicode);
1607 *p_unicode = unicode_empty;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001608 return 0;
1609 }
1610
Victor Stinner488fa492011-12-12 00:01:39 +01001611 if (!unicode_modifiable(unicode)) {
Victor Stinnerfe226c02011-10-03 03:52:20 +02001612 PyObject *copy = resize_copy(unicode, length);
1613 if (copy == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00001614 return -1;
Victor Stinnerfe226c02011-10-03 03:52:20 +02001615 Py_DECREF(*p_unicode);
1616 *p_unicode = copy;
Benjamin Peterson29060642009-01-31 22:14:21 +00001617 return 0;
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001618 }
1619
Victor Stinnerfe226c02011-10-03 03:52:20 +02001620 if (PyUnicode_IS_COMPACT(unicode)) {
Victor Stinnerb0a82a62011-12-12 13:08:33 +01001621 PyObject *new_unicode = resize_compact(unicode, length);
1622 if (new_unicode == NULL)
Victor Stinnerfe226c02011-10-03 03:52:20 +02001623 return -1;
Victor Stinnerb0a82a62011-12-12 13:08:33 +01001624 *p_unicode = new_unicode;
Victor Stinnerfe226c02011-10-03 03:52:20 +02001625 return 0;
Benjamin Peterson4bfce8f2011-10-03 19:35:07 -04001626 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02001627 return resize_inplace(unicode, length);
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001628}
1629
Alexander Belopolsky40018472011-02-26 01:02:56 +00001630int
Victor Stinnerfe226c02011-10-03 03:52:20 +02001631PyUnicode_Resize(PyObject **p_unicode, Py_ssize_t length)
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +00001632{
Victor Stinnerfe226c02011-10-03 03:52:20 +02001633 PyObject *unicode;
1634 if (p_unicode == NULL) {
1635 PyErr_BadInternalCall();
1636 return -1;
1637 }
1638 unicode = *p_unicode;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001639 if (unicode == NULL || !PyUnicode_Check(unicode) || length < 0)
Victor Stinnerfe226c02011-10-03 03:52:20 +02001640 {
1641 PyErr_BadInternalCall();
1642 return -1;
1643 }
1644 return unicode_resize(p_unicode, length);
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +00001645}
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001646
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001647static int
Victor Stinner1b487b42012-05-03 12:29:04 +02001648unicode_widen(PyObject **p_unicode, Py_ssize_t length,
1649 unsigned int maxchar)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001650{
1651 PyObject *result;
1652 assert(PyUnicode_IS_READY(*p_unicode));
Victor Stinner1b487b42012-05-03 12:29:04 +02001653 assert(length <= PyUnicode_GET_LENGTH(*p_unicode));
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001654 if (maxchar <= PyUnicode_MAX_CHAR_VALUE(*p_unicode))
1655 return 0;
1656 result = PyUnicode_New(PyUnicode_GET_LENGTH(*p_unicode),
1657 maxchar);
1658 if (result == NULL)
1659 return -1;
Victor Stinnerd3f08822012-05-29 12:57:52 +02001660 _PyUnicode_FastCopyCharacters(result, 0, *p_unicode, 0, length);
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001661 Py_DECREF(*p_unicode);
1662 *p_unicode = result;
1663 return 0;
1664}
1665
1666static int
1667unicode_putchar(PyObject **p_unicode, Py_ssize_t *pos,
1668 Py_UCS4 ch)
1669{
Victor Stinner15e9ed22012-02-22 13:36:20 +01001670 assert(ch <= MAX_UNICODE);
Victor Stinner1b487b42012-05-03 12:29:04 +02001671 if (unicode_widen(p_unicode, *pos, ch) < 0)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01001672 return -1;
1673 PyUnicode_WRITE(PyUnicode_KIND(*p_unicode),
1674 PyUnicode_DATA(*p_unicode),
1675 (*pos)++, ch);
1676 return 0;
1677}
1678
Victor Stinnerc5166102012-02-22 13:55:02 +01001679/* Copy a ASCII or latin1 char* string into a Python Unicode string.
Victor Stinnerc5166102012-02-22 13:55:02 +01001680
Victor Stinnerb429d3b2012-02-22 21:22:20 +01001681 WARNING: The function doesn't copy the terminating null character and
1682 doesn't check the maximum character (may write a latin1 character in an
1683 ASCII string). */
Victor Stinner184252a2012-06-16 02:57:41 +02001684static void
1685unicode_write_cstr(PyObject *unicode, Py_ssize_t index,
1686 const char *str, Py_ssize_t len)
Victor Stinnerc5166102012-02-22 13:55:02 +01001687{
1688 enum PyUnicode_Kind kind = PyUnicode_KIND(unicode);
1689 void *data = PyUnicode_DATA(unicode);
Victor Stinner184252a2012-06-16 02:57:41 +02001690 const char *end = str + len;
Victor Stinnerc5166102012-02-22 13:55:02 +01001691
1692 switch (kind) {
1693 case PyUnicode_1BYTE_KIND: {
Victor Stinnerc5166102012-02-22 13:55:02 +01001694 assert(index + len <= PyUnicode_GET_LENGTH(unicode));
Antoine Pitrouba6bafc2012-02-22 16:41:50 +01001695 memcpy((char *) data + index, str, len);
Victor Stinner184252a2012-06-16 02:57:41 +02001696 break;
Victor Stinnerc5166102012-02-22 13:55:02 +01001697 }
1698 case PyUnicode_2BYTE_KIND: {
1699 Py_UCS2 *start = (Py_UCS2 *)data + index;
1700 Py_UCS2 *ucs2 = start;
1701 assert(index <= PyUnicode_GET_LENGTH(unicode));
1702
Victor Stinner184252a2012-06-16 02:57:41 +02001703 for (; str < end; ++ucs2, ++str)
Victor Stinnerc5166102012-02-22 13:55:02 +01001704 *ucs2 = (Py_UCS2)*str;
1705
1706 assert((ucs2 - start) <= PyUnicode_GET_LENGTH(unicode));
Victor Stinner184252a2012-06-16 02:57:41 +02001707 break;
Victor Stinnerc5166102012-02-22 13:55:02 +01001708 }
1709 default: {
1710 Py_UCS4 *start = (Py_UCS4 *)data + index;
1711 Py_UCS4 *ucs4 = start;
1712 assert(kind == PyUnicode_4BYTE_KIND);
1713 assert(index <= PyUnicode_GET_LENGTH(unicode));
1714
Victor Stinner184252a2012-06-16 02:57:41 +02001715 for (; str < end; ++ucs4, ++str)
Victor Stinnerc5166102012-02-22 13:55:02 +01001716 *ucs4 = (Py_UCS4)*str;
1717
1718 assert((ucs4 - start) <= PyUnicode_GET_LENGTH(unicode));
Victor Stinnerc5166102012-02-22 13:55:02 +01001719 }
1720 }
1721}
1722
1723
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001724static PyObject*
1725get_latin1_char(unsigned char ch)
1726{
Victor Stinnera464fc12011-10-02 20:39:30 +02001727 PyObject *unicode = unicode_latin1[ch];
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001728 if (!unicode) {
Victor Stinnera464fc12011-10-02 20:39:30 +02001729 unicode = PyUnicode_New(1, ch);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001730 if (!unicode)
1731 return NULL;
1732 PyUnicode_1BYTE_DATA(unicode)[0] = ch;
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001733 assert(_PyUnicode_CheckConsistency(unicode, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001734 unicode_latin1[ch] = unicode;
1735 }
1736 Py_INCREF(unicode);
Victor Stinnera464fc12011-10-02 20:39:30 +02001737 return unicode;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001738}
1739
Alexander Belopolsky40018472011-02-26 01:02:56 +00001740PyObject *
1741PyUnicode_FromUnicode(const Py_UNICODE *u, Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00001742{
Victor Stinner9db1a8b2011-10-23 20:04:37 +02001743 PyObject *unicode;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001744 Py_UCS4 maxchar = 0;
1745 Py_ssize_t num_surrogates;
1746
1747 if (u == NULL)
1748 return (PyObject*)_PyUnicode_New(size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001749
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001750 /* If the Unicode data is known at construction time, we can apply
1751 some optimizations which share commonly used objects. */
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00001752
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001753 /* Optimization for empty strings */
Serhiy Storchaka678db842013-01-26 12:16:36 +02001754 if (size == 0)
1755 _Py_RETURN_UNICODE_EMPTY();
Tim Petersced69f82003-09-16 20:30:58 +00001756
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001757 /* Single character Unicode objects in the Latin-1 range are
1758 shared when using this constructor */
Victor Stinnerd21b58c2013-02-26 00:15:54 +01001759 if (size == 1 && (Py_UCS4)*u < 256)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001760 return get_latin1_char((unsigned char)*u);
1761
1762 /* If not empty and not single character, copy the Unicode data
1763 into the new object */
Victor Stinnerd8f65102011-09-29 19:43:17 +02001764 if (find_maxchar_surrogates(u, u + size,
1765 &maxchar, &num_surrogates) == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001766 return NULL;
1767
Victor Stinner8faf8212011-12-08 22:14:11 +01001768 unicode = PyUnicode_New(size - num_surrogates, maxchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001769 if (!unicode)
1770 return NULL;
1771
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001772 switch (PyUnicode_KIND(unicode)) {
1773 case PyUnicode_1BYTE_KIND:
Victor Stinnerfb5f5f22011-09-28 21:39:49 +02001774 _PyUnicode_CONVERT_BYTES(Py_UNICODE, unsigned char,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001775 u, u + size, PyUnicode_1BYTE_DATA(unicode));
1776 break;
1777 case PyUnicode_2BYTE_KIND:
1778#if Py_UNICODE_SIZE == 2
1779 Py_MEMCPY(PyUnicode_2BYTE_DATA(unicode), u, size * 2);
1780#else
Victor Stinnerfb5f5f22011-09-28 21:39:49 +02001781 _PyUnicode_CONVERT_BYTES(Py_UNICODE, Py_UCS2,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001782 u, u + size, PyUnicode_2BYTE_DATA(unicode));
1783#endif
1784 break;
1785 case PyUnicode_4BYTE_KIND:
1786#if SIZEOF_WCHAR_T == 2
1787 /* This is the only case which has to process surrogates, thus
1788 a simple copy loop is not enough and we need a function. */
Victor Stinnerc53be962011-10-02 21:33:54 +02001789 unicode_convert_wchar_to_ucs4(u, u + size, unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001790#else
1791 assert(num_surrogates == 0);
1792 Py_MEMCPY(PyUnicode_4BYTE_DATA(unicode), u, size * 4);
1793#endif
1794 break;
1795 default:
1796 assert(0 && "Impossible state");
1797 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00001798
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001799 return unicode_result(unicode);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001800}
1801
Alexander Belopolsky40018472011-02-26 01:02:56 +00001802PyObject *
1803PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size)
Walter Dörwaldacaa5a12007-05-05 12:00:46 +00001804{
Benjamin Peterson14339b62009-01-31 16:36:08 +00001805 if (size < 0) {
1806 PyErr_SetString(PyExc_SystemError,
Benjamin Peterson29060642009-01-31 22:14:21 +00001807 "Negative size passed to PyUnicode_FromStringAndSize");
Benjamin Peterson14339b62009-01-31 16:36:08 +00001808 return NULL;
1809 }
Victor Stinnera1d12bb2011-12-11 21:53:09 +01001810 if (u != NULL)
1811 return PyUnicode_DecodeUTF8Stateful(u, size, NULL, NULL);
1812 else
1813 return (PyObject *)_PyUnicode_New(size);
Walter Dörwaldacaa5a12007-05-05 12:00:46 +00001814}
1815
Alexander Belopolsky40018472011-02-26 01:02:56 +00001816PyObject *
1817PyUnicode_FromString(const char *u)
Walter Dörwaldd2034312007-05-18 16:29:38 +00001818{
1819 size_t size = strlen(u);
1820 if (size > PY_SSIZE_T_MAX) {
1821 PyErr_SetString(PyExc_OverflowError, "input too long");
1822 return NULL;
1823 }
Victor Stinnera1d12bb2011-12-11 21:53:09 +01001824 return PyUnicode_DecodeUTF8Stateful(u, (Py_ssize_t)size, NULL, NULL);
Walter Dörwaldd2034312007-05-18 16:29:38 +00001825}
1826
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001827PyObject *
1828_PyUnicode_FromId(_Py_Identifier *id)
1829{
1830 if (!id->object) {
Victor Stinnerd1cd99b2012-02-07 23:05:55 +01001831 id->object = PyUnicode_DecodeUTF8Stateful(id->string,
1832 strlen(id->string),
1833 NULL, NULL);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001834 if (!id->object)
1835 return NULL;
1836 PyUnicode_InternInPlace(&id->object);
1837 assert(!id->next);
1838 id->next = static_strings;
1839 static_strings = id;
1840 }
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001841 return id->object;
1842}
1843
1844void
1845_PyUnicode_ClearStaticStrings()
1846{
Benjamin Peterson0c270a82013-01-09 09:52:01 -06001847 _Py_Identifier *tmp, *s = static_strings;
1848 while (s) {
Serhiy Storchaka505ff752014-02-09 13:33:53 +02001849 Py_CLEAR(s->object);
Benjamin Peterson0c270a82013-01-09 09:52:01 -06001850 tmp = s->next;
1851 s->next = NULL;
1852 s = tmp;
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001853 }
Benjamin Peterson0c270a82013-01-09 09:52:01 -06001854 static_strings = NULL;
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001855}
1856
Benjamin Peterson0df54292012-03-26 14:50:32 -04001857/* Internal function, doesn't check maximum character */
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001858
Victor Stinnerd3f08822012-05-29 12:57:52 +02001859PyObject*
1860_PyUnicode_FromASCII(const char *buffer, Py_ssize_t size)
Victor Stinner702c7342011-10-05 13:50:52 +02001861{
Victor Stinnerd3f08822012-05-29 12:57:52 +02001862 const unsigned char *s = (const unsigned char *)buffer;
Victor Stinner785938e2011-12-11 20:09:03 +01001863 PyObject *unicode;
Victor Stinnere6b2d442011-12-11 21:54:30 +01001864 if (size == 1) {
Victor Stinner0617b6e2011-10-05 23:26:01 +02001865#ifdef Py_DEBUG
Victor Stinnerd21b58c2013-02-26 00:15:54 +01001866 assert((unsigned char)s[0] < 128);
Victor Stinner0617b6e2011-10-05 23:26:01 +02001867#endif
Antoine Pitrou7c46da72011-10-06 22:07:51 +02001868 return get_latin1_char(s[0]);
Victor Stinnere6b2d442011-12-11 21:54:30 +01001869 }
Victor Stinner785938e2011-12-11 20:09:03 +01001870 unicode = PyUnicode_New(size, 127);
1871 if (!unicode)
Victor Stinner702c7342011-10-05 13:50:52 +02001872 return NULL;
Victor Stinner785938e2011-12-11 20:09:03 +01001873 memcpy(PyUnicode_1BYTE_DATA(unicode), s, size);
1874 assert(_PyUnicode_CheckConsistency(unicode, 1));
1875 return unicode;
Victor Stinner702c7342011-10-05 13:50:52 +02001876}
1877
Victor Stinnerc80d6d22011-10-05 14:13:28 +02001878static Py_UCS4
1879kind_maxchar_limit(unsigned int kind)
1880{
Benjamin Petersonead6b532011-12-20 17:23:42 -06001881 switch (kind) {
Victor Stinnerc80d6d22011-10-05 14:13:28 +02001882 case PyUnicode_1BYTE_KIND:
1883 return 0x80;
1884 case PyUnicode_2BYTE_KIND:
1885 return 0x100;
1886 case PyUnicode_4BYTE_KIND:
1887 return 0x10000;
1888 default:
1889 assert(0 && "invalid kind");
Victor Stinner8faf8212011-12-08 22:14:11 +01001890 return MAX_UNICODE;
Victor Stinnerc80d6d22011-10-05 14:13:28 +02001891 }
1892}
1893
Victor Stinnere6abb482012-05-02 01:15:40 +02001894Py_LOCAL_INLINE(Py_UCS4)
1895align_maxchar(Py_UCS4 maxchar)
1896{
1897 if (maxchar <= 127)
1898 return 127;
1899 else if (maxchar <= 255)
1900 return 255;
1901 else if (maxchar <= 65535)
1902 return 65535;
1903 else
1904 return MAX_UNICODE;
1905}
1906
Victor Stinner702c7342011-10-05 13:50:52 +02001907static PyObject*
Victor Stinnerd21b58c2013-02-26 00:15:54 +01001908_PyUnicode_FromUCS1(const Py_UCS1* u, Py_ssize_t size)
Mark Dickinson081dfee2009-03-18 14:47:41 +00001909{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001910 PyObject *res;
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001911 unsigned char max_char;
Victor Stinnerb9275c12011-10-05 14:01:42 +02001912
Serhiy Storchaka678db842013-01-26 12:16:36 +02001913 if (size == 0)
1914 _Py_RETURN_UNICODE_EMPTY();
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001915 assert(size > 0);
Antoine Pitrou7c46da72011-10-06 22:07:51 +02001916 if (size == 1)
1917 return get_latin1_char(u[0]);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001918
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02001919 max_char = ucs1lib_find_max_char(u, u + size);
Victor Stinnerb9275c12011-10-05 14:01:42 +02001920 res = PyUnicode_New(size, max_char);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001921 if (!res)
1922 return NULL;
1923 memcpy(PyUnicode_1BYTE_DATA(res), u, size);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001924 assert(_PyUnicode_CheckConsistency(res, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001925 return res;
Mark Dickinson081dfee2009-03-18 14:47:41 +00001926}
1927
Victor Stinnere57b1c02011-09-28 22:20:48 +02001928static PyObject*
1929_PyUnicode_FromUCS2(const Py_UCS2 *u, Py_ssize_t size)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001930{
1931 PyObject *res;
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001932 Py_UCS2 max_char;
Victor Stinnerb9275c12011-10-05 14:01:42 +02001933
Serhiy Storchaka678db842013-01-26 12:16:36 +02001934 if (size == 0)
1935 _Py_RETURN_UNICODE_EMPTY();
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001936 assert(size > 0);
Victor Stinnerb6cd0142012-05-03 02:17:04 +02001937 if (size == 1) {
1938 Py_UCS4 ch = u[0];
1939 if (ch < 256)
1940 return get_latin1_char((unsigned char)ch);
1941
1942 res = PyUnicode_New(1, ch);
1943 if (res == NULL)
1944 return NULL;
1945 PyUnicode_WRITE(PyUnicode_KIND(res), PyUnicode_DATA(res), 0, ch);
1946 assert(_PyUnicode_CheckConsistency(res, 1));
1947 return res;
1948 }
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001949
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02001950 max_char = ucs2lib_find_max_char(u, u + size);
Victor Stinnerb9275c12011-10-05 14:01:42 +02001951 res = PyUnicode_New(size, max_char);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001952 if (!res)
1953 return NULL;
Victor Stinnerb9275c12011-10-05 14:01:42 +02001954 if (max_char >= 256)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001955 memcpy(PyUnicode_2BYTE_DATA(res), u, sizeof(Py_UCS2)*size);
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02001956 else {
1957 _PyUnicode_CONVERT_BYTES(
1958 Py_UCS2, Py_UCS1, u, u + size, PyUnicode_1BYTE_DATA(res));
1959 }
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001960 assert(_PyUnicode_CheckConsistency(res, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001961 return res;
1962}
1963
Victor Stinnere57b1c02011-09-28 22:20:48 +02001964static PyObject*
1965_PyUnicode_FromUCS4(const Py_UCS4 *u, Py_ssize_t size)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001966{
1967 PyObject *res;
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001968 Py_UCS4 max_char;
Victor Stinnerb9275c12011-10-05 14:01:42 +02001969
Serhiy Storchaka678db842013-01-26 12:16:36 +02001970 if (size == 0)
1971 _Py_RETURN_UNICODE_EMPTY();
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001972 assert(size > 0);
Victor Stinnerb6cd0142012-05-03 02:17:04 +02001973 if (size == 1) {
1974 Py_UCS4 ch = u[0];
1975 if (ch < 256)
1976 return get_latin1_char((unsigned char)ch);
1977
1978 res = PyUnicode_New(1, ch);
1979 if (res == NULL)
1980 return NULL;
1981 PyUnicode_WRITE(PyUnicode_KIND(res), PyUnicode_DATA(res), 0, ch);
1982 assert(_PyUnicode_CheckConsistency(res, 1));
1983 return res;
1984 }
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01001985
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02001986 max_char = ucs4lib_find_max_char(u, u + size);
Victor Stinnerb9275c12011-10-05 14:01:42 +02001987 res = PyUnicode_New(size, max_char);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001988 if (!res)
1989 return NULL;
Antoine Pitrou950468e2011-10-11 22:45:48 +02001990 if (max_char < 256)
1991 _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS1, u, u + size,
1992 PyUnicode_1BYTE_DATA(res));
1993 else if (max_char < 0x10000)
1994 _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS2, u, u + size,
1995 PyUnicode_2BYTE_DATA(res));
1996 else
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001997 memcpy(PyUnicode_4BYTE_DATA(res), u, sizeof(Py_UCS4)*size);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02001998 assert(_PyUnicode_CheckConsistency(res, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001999 return res;
2000}
2001
2002PyObject*
2003PyUnicode_FromKindAndData(int kind, const void *buffer, Py_ssize_t size)
2004{
Victor Stinnercfed46e2011-11-22 01:29:14 +01002005 if (size < 0) {
2006 PyErr_SetString(PyExc_ValueError, "size must be positive");
2007 return NULL;
2008 }
Benjamin Petersonead6b532011-12-20 17:23:42 -06002009 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002010 case PyUnicode_1BYTE_KIND:
Victor Stinnere57b1c02011-09-28 22:20:48 +02002011 return _PyUnicode_FromUCS1(buffer, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002012 case PyUnicode_2BYTE_KIND:
Victor Stinnere57b1c02011-09-28 22:20:48 +02002013 return _PyUnicode_FromUCS2(buffer, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002014 case PyUnicode_4BYTE_KIND:
Victor Stinnere57b1c02011-09-28 22:20:48 +02002015 return _PyUnicode_FromUCS4(buffer, size);
Victor Stinnerb9275c12011-10-05 14:01:42 +02002016 default:
Victor Stinnerb9275c12011-10-05 14:01:42 +02002017 PyErr_SetString(PyExc_SystemError, "invalid kind");
2018 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002019 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002020}
2021
Victor Stinnerece58de2012-04-23 23:36:38 +02002022Py_UCS4
2023_PyUnicode_FindMaxChar(PyObject *unicode, Py_ssize_t start, Py_ssize_t end)
2024{
2025 enum PyUnicode_Kind kind;
2026 void *startptr, *endptr;
2027
2028 assert(PyUnicode_IS_READY(unicode));
2029 assert(0 <= start);
2030 assert(end <= PyUnicode_GET_LENGTH(unicode));
2031 assert(start <= end);
2032
2033 if (start == 0 && end == PyUnicode_GET_LENGTH(unicode))
2034 return PyUnicode_MAX_CHAR_VALUE(unicode);
2035
2036 if (start == end)
2037 return 127;
2038
Victor Stinner94d558b2012-04-27 22:26:58 +02002039 if (PyUnicode_IS_ASCII(unicode))
2040 return 127;
2041
Victor Stinnerece58de2012-04-23 23:36:38 +02002042 kind = PyUnicode_KIND(unicode);
Benjamin Petersonf3b7d862012-04-23 18:07:01 -04002043 startptr = PyUnicode_DATA(unicode);
Benjamin Petersonb9f4c9d2012-04-23 21:45:40 -04002044 endptr = (char *)startptr + end * kind;
2045 startptr = (char *)startptr + start * kind;
Benjamin Peterson2844a7a2012-04-23 18:00:25 -04002046 switch(kind) {
2047 case PyUnicode_1BYTE_KIND:
2048 return ucs1lib_find_max_char(startptr, endptr);
2049 case PyUnicode_2BYTE_KIND:
2050 return ucs2lib_find_max_char(startptr, endptr);
2051 case PyUnicode_4BYTE_KIND:
2052 return ucs4lib_find_max_char(startptr, endptr);
Victor Stinnerece58de2012-04-23 23:36:38 +02002053 default:
Benjamin Peterson2844a7a2012-04-23 18:00:25 -04002054 assert(0);
2055 return 0;
Victor Stinnerece58de2012-04-23 23:36:38 +02002056 }
2057}
2058
Victor Stinner25a4b292011-10-06 12:31:55 +02002059/* Ensure that a string uses the most efficient storage, if it is not the
2060 case: create a new string with of the right kind. Write NULL into *p_unicode
2061 on error. */
Antoine Pitrou53bb5482011-10-10 23:49:24 +02002062static void
Victor Stinner25a4b292011-10-06 12:31:55 +02002063unicode_adjust_maxchar(PyObject **p_unicode)
2064{
2065 PyObject *unicode, *copy;
2066 Py_UCS4 max_char;
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002067 Py_ssize_t len;
Victor Stinner25a4b292011-10-06 12:31:55 +02002068 unsigned int kind;
2069
2070 assert(p_unicode != NULL);
2071 unicode = *p_unicode;
2072 assert(PyUnicode_IS_READY(unicode));
2073 if (PyUnicode_IS_ASCII(unicode))
2074 return;
2075
2076 len = PyUnicode_GET_LENGTH(unicode);
2077 kind = PyUnicode_KIND(unicode);
2078 if (kind == PyUnicode_1BYTE_KIND) {
2079 const Py_UCS1 *u = PyUnicode_1BYTE_DATA(unicode);
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002080 max_char = ucs1lib_find_max_char(u, u + len);
2081 if (max_char >= 128)
2082 return;
Victor Stinner25a4b292011-10-06 12:31:55 +02002083 }
2084 else if (kind == PyUnicode_2BYTE_KIND) {
2085 const Py_UCS2 *u = PyUnicode_2BYTE_DATA(unicode);
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002086 max_char = ucs2lib_find_max_char(u, u + len);
2087 if (max_char >= 256)
2088 return;
Victor Stinner25a4b292011-10-06 12:31:55 +02002089 }
2090 else {
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002091 const Py_UCS4 *u = PyUnicode_4BYTE_DATA(unicode);
Victor Stinner25a4b292011-10-06 12:31:55 +02002092 assert(kind == PyUnicode_4BYTE_KIND);
Antoine Pitroudd4e2f02011-10-13 00:02:27 +02002093 max_char = ucs4lib_find_max_char(u, u + len);
2094 if (max_char >= 0x10000)
2095 return;
Victor Stinner25a4b292011-10-06 12:31:55 +02002096 }
Victor Stinner25a4b292011-10-06 12:31:55 +02002097 copy = PyUnicode_New(len, max_char);
Victor Stinnerca439ee2012-06-16 03:17:34 +02002098 if (copy != NULL)
2099 _PyUnicode_FastCopyCharacters(copy, 0, unicode, 0, len);
Victor Stinner25a4b292011-10-06 12:31:55 +02002100 Py_DECREF(unicode);
2101 *p_unicode = copy;
2102}
2103
Victor Stinner034f6cf2011-09-30 02:26:44 +02002104PyObject*
Victor Stinnerbf6e5602011-12-12 01:53:47 +01002105_PyUnicode_Copy(PyObject *unicode)
Victor Stinner034f6cf2011-09-30 02:26:44 +02002106{
Victor Stinner87af4f22011-11-21 23:03:47 +01002107 Py_ssize_t length;
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002108 PyObject *copy;
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002109
Victor Stinner034f6cf2011-09-30 02:26:44 +02002110 if (!PyUnicode_Check(unicode)) {
2111 PyErr_BadInternalCall();
2112 return NULL;
2113 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05002114 if (PyUnicode_READY(unicode) == -1)
Victor Stinner034f6cf2011-09-30 02:26:44 +02002115 return NULL;
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002116
Victor Stinner87af4f22011-11-21 23:03:47 +01002117 length = PyUnicode_GET_LENGTH(unicode);
2118 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode));
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002119 if (!copy)
2120 return NULL;
2121 assert(PyUnicode_KIND(copy) == PyUnicode_KIND(unicode));
2122
Victor Stinner87af4f22011-11-21 23:03:47 +01002123 Py_MEMCPY(PyUnicode_DATA(copy), PyUnicode_DATA(unicode),
2124 length * PyUnicode_KIND(unicode));
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02002125 assert(_PyUnicode_CheckConsistency(copy, 1));
Victor Stinnerc841e7d2011-10-01 01:34:32 +02002126 return copy;
Victor Stinner034f6cf2011-09-30 02:26:44 +02002127}
2128
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002129
Victor Stinnerbc603d12011-10-02 01:00:40 +02002130/* Widen Unicode objects to larger buffers. Don't write terminating null
2131 character. Return NULL on error. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002132
2133void*
2134_PyUnicode_AsKind(PyObject *s, unsigned int kind)
2135{
Victor Stinnerbc603d12011-10-02 01:00:40 +02002136 Py_ssize_t len;
2137 void *result;
2138 unsigned int skind;
2139
Benjamin Petersonbac79492012-01-14 13:34:47 -05002140 if (PyUnicode_READY(s) == -1)
Victor Stinnerbc603d12011-10-02 01:00:40 +02002141 return NULL;
2142
2143 len = PyUnicode_GET_LENGTH(s);
2144 skind = PyUnicode_KIND(s);
2145 if (skind >= kind) {
Victor Stinner01698042011-10-04 00:04:26 +02002146 PyErr_SetString(PyExc_SystemError, "invalid widening attempt");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002147 return NULL;
2148 }
Benjamin Petersonead6b532011-12-20 17:23:42 -06002149 switch (kind) {
Victor Stinnerbc603d12011-10-02 01:00:40 +02002150 case PyUnicode_2BYTE_KIND:
2151 result = PyMem_Malloc(len * sizeof(Py_UCS2));
2152 if (!result)
2153 return PyErr_NoMemory();
2154 assert(skind == PyUnicode_1BYTE_KIND);
2155 _PyUnicode_CONVERT_BYTES(
2156 Py_UCS1, Py_UCS2,
2157 PyUnicode_1BYTE_DATA(s),
2158 PyUnicode_1BYTE_DATA(s) + len,
2159 result);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002160 return result;
Victor Stinnerbc603d12011-10-02 01:00:40 +02002161 case PyUnicode_4BYTE_KIND:
2162 result = PyMem_Malloc(len * sizeof(Py_UCS4));
2163 if (!result)
2164 return PyErr_NoMemory();
2165 if (skind == PyUnicode_2BYTE_KIND) {
2166 _PyUnicode_CONVERT_BYTES(
2167 Py_UCS2, Py_UCS4,
2168 PyUnicode_2BYTE_DATA(s),
2169 PyUnicode_2BYTE_DATA(s) + len,
2170 result);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002171 }
Victor Stinnerbc603d12011-10-02 01:00:40 +02002172 else {
2173 assert(skind == PyUnicode_1BYTE_KIND);
2174 _PyUnicode_CONVERT_BYTES(
2175 Py_UCS1, Py_UCS4,
2176 PyUnicode_1BYTE_DATA(s),
2177 PyUnicode_1BYTE_DATA(s) + len,
2178 result);
2179 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002180 return result;
Victor Stinnerbc603d12011-10-02 01:00:40 +02002181 default:
2182 break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002183 }
Victor Stinner01698042011-10-04 00:04:26 +02002184 PyErr_SetString(PyExc_SystemError, "invalid kind");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002185 return NULL;
2186}
2187
2188static Py_UCS4*
2189as_ucs4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize,
2190 int copy_null)
2191{
2192 int kind;
2193 void *data;
2194 Py_ssize_t len, targetlen;
2195 if (PyUnicode_READY(string) == -1)
2196 return NULL;
2197 kind = PyUnicode_KIND(string);
2198 data = PyUnicode_DATA(string);
2199 len = PyUnicode_GET_LENGTH(string);
2200 targetlen = len;
2201 if (copy_null)
2202 targetlen++;
2203 if (!target) {
2204 if (PY_SSIZE_T_MAX / sizeof(Py_UCS4) < targetlen) {
2205 PyErr_NoMemory();
2206 return NULL;
2207 }
2208 target = PyMem_Malloc(targetlen * sizeof(Py_UCS4));
2209 if (!target) {
2210 PyErr_NoMemory();
2211 return NULL;
2212 }
2213 }
2214 else {
2215 if (targetsize < targetlen) {
2216 PyErr_Format(PyExc_SystemError,
2217 "string is longer than the buffer");
2218 if (copy_null && 0 < targetsize)
2219 target[0] = 0;
2220 return NULL;
2221 }
2222 }
Antoine Pitrou950468e2011-10-11 22:45:48 +02002223 if (kind == PyUnicode_1BYTE_KIND) {
2224 Py_UCS1 *start = (Py_UCS1 *) data;
2225 _PyUnicode_CONVERT_BYTES(Py_UCS1, Py_UCS4, start, start + len, target);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002226 }
Antoine Pitrou950468e2011-10-11 22:45:48 +02002227 else if (kind == PyUnicode_2BYTE_KIND) {
2228 Py_UCS2 *start = (Py_UCS2 *) data;
2229 _PyUnicode_CONVERT_BYTES(Py_UCS2, Py_UCS4, start, start + len, target);
2230 }
2231 else {
2232 assert(kind == PyUnicode_4BYTE_KIND);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002233 Py_MEMCPY(target, data, len * sizeof(Py_UCS4));
Antoine Pitrou950468e2011-10-11 22:45:48 +02002234 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002235 if (copy_null)
2236 target[len] = 0;
2237 return target;
2238}
2239
2240Py_UCS4*
2241PyUnicode_AsUCS4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize,
2242 int copy_null)
2243{
Antoine Pitroude20b0b2011-11-10 21:47:38 +01002244 if (target == NULL || targetsize < 0) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002245 PyErr_BadInternalCall();
2246 return NULL;
2247 }
2248 return as_ucs4(string, target, targetsize, copy_null);
2249}
2250
2251Py_UCS4*
2252PyUnicode_AsUCS4Copy(PyObject *string)
2253{
2254 return as_ucs4(string, NULL, 0, 1);
2255}
2256
2257#ifdef HAVE_WCHAR_H
Mark Dickinson081dfee2009-03-18 14:47:41 +00002258
Alexander Belopolsky40018472011-02-26 01:02:56 +00002259PyObject *
2260PyUnicode_FromWideChar(register const wchar_t *w, Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00002261{
Guido van Rossumd57fd912000-03-10 22:53:23 +00002262 if (w == NULL) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00002263 if (size == 0)
Serhiy Storchaka678db842013-01-26 12:16:36 +02002264 _Py_RETURN_UNICODE_EMPTY();
Benjamin Peterson29060642009-01-31 22:14:21 +00002265 PyErr_BadInternalCall();
2266 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002267 }
2268
Martin v. Löwis790465f2008-04-05 20:41:37 +00002269 if (size == -1) {
2270 size = wcslen(w);
2271 }
2272
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002273 return PyUnicode_FromUnicode(w, size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00002274}
2275
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002276#endif /* HAVE_WCHAR_H */
Mark Dickinson081dfee2009-03-18 14:47:41 +00002277
Walter Dörwald346737f2007-05-31 10:44:43 +00002278static void
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002279makefmt(char *fmt, int longflag, int longlongflag, int size_tflag,
2280 int zeropad, int width, int precision, char c)
Walter Dörwald346737f2007-05-31 10:44:43 +00002281{
Benjamin Peterson14339b62009-01-31 16:36:08 +00002282 *fmt++ = '%';
2283 if (width) {
2284 if (zeropad)
2285 *fmt++ = '0';
2286 fmt += sprintf(fmt, "%d", width);
2287 }
2288 if (precision)
2289 fmt += sprintf(fmt, ".%d", precision);
2290 if (longflag)
2291 *fmt++ = 'l';
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002292 else if (longlongflag) {
2293 /* longlongflag should only ever be nonzero on machines with
2294 HAVE_LONG_LONG defined */
2295#ifdef HAVE_LONG_LONG
2296 char *f = PY_FORMAT_LONG_LONG;
2297 while (*f)
2298 *fmt++ = *f++;
2299#else
2300 /* we shouldn't ever get here */
2301 assert(0);
2302 *fmt++ = 'l';
2303#endif
2304 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002305 else if (size_tflag) {
2306 char *f = PY_FORMAT_SIZE_T;
2307 while (*f)
2308 *fmt++ = *f++;
2309 }
2310 *fmt++ = c;
2311 *fmt = '\0';
Walter Dörwald346737f2007-05-31 10:44:43 +00002312}
2313
Victor Stinner96865452011-03-01 23:44:09 +00002314/* helper for PyUnicode_FromFormatV() */
2315
2316static const char*
2317parse_format_flags(const char *f,
2318 int *p_width, int *p_precision,
2319 int *p_longflag, int *p_longlongflag, int *p_size_tflag)
2320{
2321 int width, precision, longflag, longlongflag, size_tflag;
2322
2323 /* parse the width.precision part, e.g. "%2.5s" => width=2, precision=5 */
2324 f++;
2325 width = 0;
2326 while (Py_ISDIGIT((unsigned)*f))
2327 width = (width*10) + *f++ - '0';
2328 precision = 0;
2329 if (*f == '.') {
2330 f++;
2331 while (Py_ISDIGIT((unsigned)*f))
2332 precision = (precision*10) + *f++ - '0';
2333 if (*f == '%') {
2334 /* "%.3%s" => f points to "3" */
2335 f--;
2336 }
2337 }
2338 if (*f == '\0') {
2339 /* bogus format "%.1" => go backward, f points to "1" */
2340 f--;
2341 }
2342 if (p_width != NULL)
2343 *p_width = width;
2344 if (p_precision != NULL)
2345 *p_precision = precision;
2346
2347 /* Handle %ld, %lu, %lld and %llu. */
2348 longflag = 0;
2349 longlongflag = 0;
Victor Stinnere7faec12011-03-02 00:01:53 +00002350 size_tflag = 0;
Victor Stinner96865452011-03-01 23:44:09 +00002351
2352 if (*f == 'l') {
Victor Stinner6d970f42011-03-02 00:04:25 +00002353 if (f[1] == 'd' || f[1] == 'u' || f[1] == 'i') {
Victor Stinner96865452011-03-01 23:44:09 +00002354 longflag = 1;
2355 ++f;
2356 }
2357#ifdef HAVE_LONG_LONG
2358 else if (f[1] == 'l' &&
Victor Stinner6d970f42011-03-02 00:04:25 +00002359 (f[2] == 'd' || f[2] == 'u' || f[2] == 'i')) {
Victor Stinner96865452011-03-01 23:44:09 +00002360 longlongflag = 1;
2361 f += 2;
2362 }
2363#endif
2364 }
2365 /* handle the size_t flag. */
Victor Stinner6d970f42011-03-02 00:04:25 +00002366 else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u' || f[1] == 'i')) {
Victor Stinner96865452011-03-01 23:44:09 +00002367 size_tflag = 1;
2368 ++f;
2369 }
2370 if (p_longflag != NULL)
2371 *p_longflag = longflag;
2372 if (p_longlongflag != NULL)
2373 *p_longlongflag = longlongflag;
2374 if (p_size_tflag != NULL)
2375 *p_size_tflag = size_tflag;
2376 return f;
2377}
2378
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002379/* maximum number of characters required for output of %ld. 21 characters
2380 allows for 64-bit integers (in decimal) and an optional sign. */
2381#define MAX_LONG_CHARS 21
2382/* maximum number of characters required for output of %lld.
2383 We need at most ceil(log10(256)*SIZEOF_LONG_LONG) digits,
2384 plus 1 for the sign. 53/22 is an upper bound for log10(256). */
2385#define MAX_LONG_LONG_CHARS (2 + (SIZEOF_LONG_LONG*53-1) / 22)
2386
Walter Dörwaldd2034312007-05-18 16:29:38 +00002387PyObject *
2388PyUnicode_FromFormatV(const char *format, va_list vargs)
2389{
Benjamin Peterson14339b62009-01-31 16:36:08 +00002390 va_list count;
2391 Py_ssize_t callcount = 0;
2392 PyObject **callresults = NULL;
2393 PyObject **callresult = NULL;
2394 Py_ssize_t n = 0;
2395 int width = 0;
2396 int precision = 0;
2397 int zeropad;
2398 const char* f;
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02002399 PyObject *string;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002400 /* used by sprintf */
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002401 char fmt[61]; /* should be enough for %0width.precisionlld */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002402 Py_UCS4 maxchar = 127; /* result is ASCII by default */
2403 Py_UCS4 argmaxchar;
2404 Py_ssize_t numbersize = 0;
2405 char *numberresults = NULL;
2406 char *numberresult = NULL;
2407 Py_ssize_t i;
2408 int kind;
2409 void *data;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002410
Victor Stinner4a2b7a12010-08-13 14:03:48 +00002411 Py_VA_COPY(count, vargs);
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002412 /* step 1: count the number of %S/%R/%A/%s format specifications
2413 * (we call PyObject_Str()/PyObject_Repr()/PyObject_ASCII()/
2414 * PyUnicode_DecodeUTF8() for these objects once during step 3 and put the
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002415 * result in an array)
Georg Brandl7597add2011-10-05 16:36:47 +02002416 * also estimate a upper bound for all the number formats in the string,
2417 * numbers will be formatted in step 3 and be kept in a '\0'-separated
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002418 * buffer before putting everything together. */
Benjamin Peterson14339b62009-01-31 16:36:08 +00002419 for (f = format; *f; f++) {
2420 if (*f == '%') {
Victor Stinner96865452011-03-01 23:44:09 +00002421 int longlongflag;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002422 /* skip width or width.precision (eg. "1.2" of "%1.2f") */
2423 f = parse_format_flags(f, &width, NULL, NULL, &longlongflag, NULL);
2424 if (*f == 's' || *f=='S' || *f=='R' || *f=='A' || *f=='V')
2425 ++callcount;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002426
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002427 else if (*f == 'd' || *f=='u' || *f=='i' || *f=='x' || *f=='p') {
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00002428#ifdef HAVE_LONG_LONG
2429 if (longlongflag) {
2430 if (width < MAX_LONG_LONG_CHARS)
2431 width = MAX_LONG_LONG_CHARS;
2432 }
2433 else
2434#endif
2435 /* MAX_LONG_CHARS is enough to hold a 64-bit integer,
2436 including sign. Decimal takes the most space. This
2437 isn't enough for octal. If a width is specified we
2438 need more (which we allocate later). */
2439 if (width < MAX_LONG_CHARS)
2440 width = MAX_LONG_CHARS;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002441
2442 /* account for the size + '\0' to separate numbers
2443 inside of the numberresults buffer */
2444 numbersize += (width + 1);
2445 }
2446 }
2447 else if ((unsigned char)*f > 127) {
2448 PyErr_Format(PyExc_ValueError,
2449 "PyUnicode_FromFormatV() expects an ASCII-encoded format "
2450 "string, got a non-ASCII byte: 0x%02x",
2451 (unsigned char)*f);
2452 return NULL;
2453 }
2454 }
2455 /* step 2: allocate memory for the results of
2456 * PyObject_Str()/PyObject_Repr()/PyUnicode_DecodeUTF8() calls */
2457 if (callcount) {
2458 callresults = PyObject_Malloc(sizeof(PyObject *) * callcount);
2459 if (!callresults) {
2460 PyErr_NoMemory();
2461 return NULL;
2462 }
2463 callresult = callresults;
2464 }
2465 /* step 2.5: allocate memory for the results of formating numbers */
2466 if (numbersize) {
2467 numberresults = PyObject_Malloc(numbersize);
2468 if (!numberresults) {
2469 PyErr_NoMemory();
2470 goto fail;
2471 }
2472 numberresult = numberresults;
2473 }
2474
2475 /* step 3: format numbers and figure out how large a buffer we need */
2476 for (f = format; *f; f++) {
2477 if (*f == '%') {
2478 const char* p;
2479 int longflag;
2480 int longlongflag;
2481 int size_tflag;
2482 int numprinted;
2483
2484 p = f;
2485 zeropad = (f[1] == '0');
2486 f = parse_format_flags(f, &width, &precision,
2487 &longflag, &longlongflag, &size_tflag);
2488 switch (*f) {
2489 case 'c':
2490 {
Serhiy Storchaka8eeae212013-06-23 20:12:14 +03002491 int ordinal = va_arg(count, int);
2492 if (ordinal < 0 || ordinal > MAX_UNICODE) {
2493 PyErr_SetString(PyExc_OverflowError,
2494 "%c arg not in range(0x110000)");
2495 goto fail;
2496 }
2497 maxchar = Py_MAX(maxchar, (Py_UCS4)ordinal);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002498 n++;
2499 break;
2500 }
2501 case '%':
2502 n++;
2503 break;
2504 case 'i':
2505 case 'd':
2506 makefmt(fmt, longflag, longlongflag, size_tflag, zeropad,
2507 width, precision, *f);
2508 if (longflag)
2509 numprinted = sprintf(numberresult, fmt,
2510 va_arg(count, long));
2511#ifdef HAVE_LONG_LONG
2512 else if (longlongflag)
2513 numprinted = sprintf(numberresult, fmt,
2514 va_arg(count, PY_LONG_LONG));
2515#endif
2516 else if (size_tflag)
2517 numprinted = sprintf(numberresult, fmt,
2518 va_arg(count, Py_ssize_t));
2519 else
2520 numprinted = sprintf(numberresult, fmt,
2521 va_arg(count, int));
2522 n += numprinted;
2523 /* advance by +1 to skip over the '\0' */
2524 numberresult += (numprinted + 1);
2525 assert(*(numberresult - 1) == '\0');
2526 assert(*(numberresult - 2) != '\0');
2527 assert(numprinted >= 0);
2528 assert(numberresult <= numberresults + numbersize);
2529 break;
2530 case 'u':
2531 makefmt(fmt, longflag, longlongflag, size_tflag, zeropad,
2532 width, precision, 'u');
2533 if (longflag)
2534 numprinted = sprintf(numberresult, fmt,
2535 va_arg(count, unsigned long));
2536#ifdef HAVE_LONG_LONG
2537 else if (longlongflag)
2538 numprinted = sprintf(numberresult, fmt,
2539 va_arg(count, unsigned PY_LONG_LONG));
2540#endif
2541 else if (size_tflag)
2542 numprinted = sprintf(numberresult, fmt,
2543 va_arg(count, size_t));
2544 else
2545 numprinted = sprintf(numberresult, fmt,
2546 va_arg(count, unsigned int));
2547 n += numprinted;
2548 numberresult += (numprinted + 1);
2549 assert(*(numberresult - 1) == '\0');
2550 assert(*(numberresult - 2) != '\0');
2551 assert(numprinted >= 0);
2552 assert(numberresult <= numberresults + numbersize);
2553 break;
2554 case 'x':
2555 makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'x');
2556 numprinted = sprintf(numberresult, fmt, va_arg(count, int));
2557 n += numprinted;
2558 numberresult += (numprinted + 1);
2559 assert(*(numberresult - 1) == '\0');
2560 assert(*(numberresult - 2) != '\0');
2561 assert(numprinted >= 0);
2562 assert(numberresult <= numberresults + numbersize);
2563 break;
2564 case 'p':
2565 numprinted = sprintf(numberresult, "%p", va_arg(count, void*));
2566 /* %p is ill-defined: ensure leading 0x. */
2567 if (numberresult[1] == 'X')
2568 numberresult[1] = 'x';
2569 else if (numberresult[1] != 'x') {
2570 memmove(numberresult + 2, numberresult,
2571 strlen(numberresult) + 1);
2572 numberresult[0] = '0';
2573 numberresult[1] = 'x';
2574 numprinted += 2;
2575 }
2576 n += numprinted;
2577 numberresult += (numprinted + 1);
2578 assert(*(numberresult - 1) == '\0');
2579 assert(*(numberresult - 2) != '\0');
2580 assert(numprinted >= 0);
2581 assert(numberresult <= numberresults + numbersize);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002582 break;
2583 case 's':
2584 {
2585 /* UTF-8 */
Georg Brandl780b2a62009-05-05 09:19:59 +00002586 const char *s = va_arg(count, const char*);
Victor Stinnera1d12bb2011-12-11 21:53:09 +01002587 PyObject *str = PyUnicode_DecodeUTF8Stateful(s, strlen(s), "replace", NULL);
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002588 if (!str)
2589 goto fail;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002590 /* since PyUnicode_DecodeUTF8 returns already flexible
2591 unicode objects, there is no need to call ready on them */
2592 argmaxchar = PyUnicode_MAX_CHAR_VALUE(str);
Benjamin Peterson7e303732013-06-10 09:19:46 -07002593 maxchar = Py_MAX(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002594 n += PyUnicode_GET_LENGTH(str);
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002595 /* Remember the str and switch to the next slot */
2596 *callresult++ = str;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002597 break;
2598 }
2599 case 'U':
2600 {
2601 PyObject *obj = va_arg(count, PyObject *);
Victor Stinner910337b2011-10-03 03:20:16 +02002602 assert(obj && _PyUnicode_CHECK(obj));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002603 if (PyUnicode_READY(obj) == -1)
2604 goto fail;
2605 argmaxchar = PyUnicode_MAX_CHAR_VALUE(obj);
Benjamin Peterson7e303732013-06-10 09:19:46 -07002606 maxchar = Py_MAX(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002607 n += PyUnicode_GET_LENGTH(obj);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002608 break;
2609 }
2610 case 'V':
2611 {
2612 PyObject *obj = va_arg(count, PyObject *);
2613 const char *str = va_arg(count, const char *);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002614 PyObject *str_obj;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002615 assert(obj || str);
Victor Stinner910337b2011-10-03 03:20:16 +02002616 assert(!obj || _PyUnicode_CHECK(obj));
Victor Stinner2512a8b2011-03-01 22:46:52 +00002617 if (obj) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002618 if (PyUnicode_READY(obj) == -1)
2619 goto fail;
2620 argmaxchar = PyUnicode_MAX_CHAR_VALUE(obj);
Benjamin Peterson7e303732013-06-10 09:19:46 -07002621 maxchar = Py_MAX(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002622 n += PyUnicode_GET_LENGTH(obj);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002623 *callresult++ = NULL;
2624 }
2625 else {
Victor Stinnera1d12bb2011-12-11 21:53:09 +01002626 str_obj = PyUnicode_DecodeUTF8Stateful(str, strlen(str), "replace", NULL);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002627 if (!str_obj)
2628 goto fail;
Benjamin Petersonbac79492012-01-14 13:34:47 -05002629 if (PyUnicode_READY(str_obj) == -1) {
Victor Stinnere1335c72011-10-04 20:53:03 +02002630 Py_DECREF(str_obj);
2631 goto fail;
2632 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002633 argmaxchar = PyUnicode_MAX_CHAR_VALUE(str_obj);
Benjamin Peterson7e303732013-06-10 09:19:46 -07002634 maxchar = Py_MAX(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002635 n += PyUnicode_GET_LENGTH(str_obj);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002636 *callresult++ = str_obj;
2637 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002638 break;
2639 }
2640 case 'S':
2641 {
2642 PyObject *obj = va_arg(count, PyObject *);
2643 PyObject *str;
2644 assert(obj);
2645 str = PyObject_Str(obj);
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002646 if (!str)
Benjamin Peterson14339b62009-01-31 16:36:08 +00002647 goto fail;
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002648 if (PyUnicode_READY(str) == -1) {
2649 Py_DECREF(str);
2650 goto fail;
2651 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002652 argmaxchar = PyUnicode_MAX_CHAR_VALUE(str);
Benjamin Peterson7e303732013-06-10 09:19:46 -07002653 maxchar = Py_MAX(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002654 n += PyUnicode_GET_LENGTH(str);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002655 /* Remember the str and switch to the next slot */
2656 *callresult++ = str;
2657 break;
2658 }
2659 case 'R':
2660 {
2661 PyObject *obj = va_arg(count, PyObject *);
2662 PyObject *repr;
2663 assert(obj);
2664 repr = PyObject_Repr(obj);
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002665 if (!repr)
Benjamin Peterson14339b62009-01-31 16:36:08 +00002666 goto fail;
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002667 if (PyUnicode_READY(repr) == -1) {
2668 Py_DECREF(repr);
2669 goto fail;
2670 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002671 argmaxchar = PyUnicode_MAX_CHAR_VALUE(repr);
Benjamin Peterson7e303732013-06-10 09:19:46 -07002672 maxchar = Py_MAX(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002673 n += PyUnicode_GET_LENGTH(repr);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002674 /* Remember the repr and switch to the next slot */
2675 *callresult++ = repr;
2676 break;
2677 }
2678 case 'A':
2679 {
2680 PyObject *obj = va_arg(count, PyObject *);
2681 PyObject *ascii;
2682 assert(obj);
2683 ascii = PyObject_ASCII(obj);
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002684 if (!ascii)
Benjamin Peterson14339b62009-01-31 16:36:08 +00002685 goto fail;
Benjamin Petersonc8d8b882012-01-14 13:37:31 -05002686 if (PyUnicode_READY(ascii) == -1) {
2687 Py_DECREF(ascii);
2688 goto fail;
2689 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002690 argmaxchar = PyUnicode_MAX_CHAR_VALUE(ascii);
Benjamin Peterson7e303732013-06-10 09:19:46 -07002691 maxchar = Py_MAX(maxchar, argmaxchar);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002692 n += PyUnicode_GET_LENGTH(ascii);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002693 /* Remember the repr and switch to the next slot */
2694 *callresult++ = ascii;
2695 break;
2696 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002697 default:
2698 /* if we stumble upon an unknown
2699 formatting code, copy the rest of
2700 the format string to the output
2701 string. (we cannot just skip the
2702 code, since there's no way to know
2703 what's in the argument list) */
2704 n += strlen(p);
2705 goto expand;
2706 }
2707 } else
2708 n++;
2709 }
Benjamin Peterson29060642009-01-31 22:14:21 +00002710 expand:
Benjamin Peterson14339b62009-01-31 16:36:08 +00002711 /* step 4: fill the buffer */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002712 /* Since we've analyzed how much space we need,
Benjamin Peterson14339b62009-01-31 16:36:08 +00002713 we don't have to resize the string.
2714 There can be no errors beyond this point. */
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02002715 string = PyUnicode_New(n, maxchar);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002716 if (!string)
2717 goto fail;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002718 kind = PyUnicode_KIND(string);
2719 data = PyUnicode_DATA(string);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002720 callresult = callresults;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002721 numberresult = numberresults;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002722
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002723 for (i = 0, f = format; *f; f++) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00002724 if (*f == '%') {
Victor Stinner96865452011-03-01 23:44:09 +00002725 const char* p;
Victor Stinner96865452011-03-01 23:44:09 +00002726
2727 p = f;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002728 f = parse_format_flags(f, NULL, NULL, NULL, NULL, NULL);
2729 /* checking for == because the last argument could be a empty
2730 string, which causes i to point to end, the assert at the end of
2731 the loop */
2732 assert(i <= PyUnicode_GET_LENGTH(string));
Walter Dörwaldd2034312007-05-18 16:29:38 +00002733
Benjamin Peterson14339b62009-01-31 16:36:08 +00002734 switch (*f) {
2735 case 'c':
Victor Stinner5ed8b2c2011-02-21 21:13:44 +00002736 {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002737 const int ordinal = va_arg(vargs, int);
2738 PyUnicode_WRITE(kind, data, i++, ordinal);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002739 break;
Victor Stinner5ed8b2c2011-02-21 21:13:44 +00002740 }
Victor Stinner6d970f42011-03-02 00:04:25 +00002741 case 'i':
Benjamin Peterson14339b62009-01-31 16:36:08 +00002742 case 'd':
Benjamin Peterson14339b62009-01-31 16:36:08 +00002743 case 'u':
Benjamin Peterson14339b62009-01-31 16:36:08 +00002744 case 'x':
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002745 case 'p':
Victor Stinnerc5166102012-02-22 13:55:02 +01002746 {
Victor Stinner184252a2012-06-16 02:57:41 +02002747 Py_ssize_t len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002748 /* unused, since we already have the result */
2749 if (*f == 'p')
2750 (void) va_arg(vargs, void *);
2751 else
2752 (void) va_arg(vargs, int);
2753 /* extract the result from numberresults and append. */
Victor Stinner184252a2012-06-16 02:57:41 +02002754 len = strlen(numberresult);
2755 unicode_write_cstr(string, i, numberresult, len);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002756 /* skip over the separating '\0' */
Victor Stinner184252a2012-06-16 02:57:41 +02002757 i += len;
2758 numberresult += len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002759 assert(*numberresult == '\0');
2760 numberresult++;
2761 assert(numberresult <= numberresults + numbersize);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002762 break;
Victor Stinnerc5166102012-02-22 13:55:02 +01002763 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002764 case 's':
2765 {
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002766 /* unused, since we already have the result */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002767 Py_ssize_t size;
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002768 (void) va_arg(vargs, char *);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002769 size = PyUnicode_GET_LENGTH(*callresult);
2770 assert(PyUnicode_KIND(*callresult) <= PyUnicode_KIND(string));
Victor Stinnerd3f08822012-05-29 12:57:52 +02002771 _PyUnicode_FastCopyCharacters(string, i, *callresult, 0, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002772 i += size;
Walter Dörwaldc1651a02009-05-03 22:55:55 +00002773 /* We're done with the unicode()/repr() => forget it */
2774 Py_DECREF(*callresult);
2775 /* switch to next unicode()/repr() result */
2776 ++callresult;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002777 break;
2778 }
2779 case 'U':
2780 {
2781 PyObject *obj = va_arg(vargs, PyObject *);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002782 Py_ssize_t size;
2783 assert(PyUnicode_KIND(obj) <= PyUnicode_KIND(string));
2784 size = PyUnicode_GET_LENGTH(obj);
Victor Stinnerd3f08822012-05-29 12:57:52 +02002785 _PyUnicode_FastCopyCharacters(string, i, obj, 0, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002786 i += size;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002787 break;
2788 }
2789 case 'V':
2790 {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002791 Py_ssize_t size;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002792 PyObject *obj = va_arg(vargs, PyObject *);
Victor Stinner2512a8b2011-03-01 22:46:52 +00002793 va_arg(vargs, const char *);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002794 if (obj) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002795 size = PyUnicode_GET_LENGTH(obj);
2796 assert(PyUnicode_KIND(obj) <= PyUnicode_KIND(string));
Victor Stinnerd3f08822012-05-29 12:57:52 +02002797 _PyUnicode_FastCopyCharacters(string, i, obj, 0, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002798 i += size;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002799 } else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002800 size = PyUnicode_GET_LENGTH(*callresult);
2801 assert(PyUnicode_KIND(*callresult) <=
2802 PyUnicode_KIND(string));
Victor Stinnerd3f08822012-05-29 12:57:52 +02002803 _PyUnicode_FastCopyCharacters(string, i, *callresult, 0, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002804 i += size;
Victor Stinner2512a8b2011-03-01 22:46:52 +00002805 Py_DECREF(*callresult);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002806 }
Victor Stinner2512a8b2011-03-01 22:46:52 +00002807 ++callresult;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002808 break;
2809 }
2810 case 'S':
2811 case 'R':
Victor Stinner9a909002010-10-18 20:59:24 +00002812 case 'A':
Benjamin Peterson14339b62009-01-31 16:36:08 +00002813 {
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02002814 Py_ssize_t size = PyUnicode_GET_LENGTH(*callresult);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002815 /* unused, since we already have the result */
2816 (void) va_arg(vargs, PyObject *);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002817 assert(PyUnicode_KIND(*callresult) <= PyUnicode_KIND(string));
Victor Stinnerd3f08822012-05-29 12:57:52 +02002818 _PyUnicode_FastCopyCharacters(string, i, *callresult, 0, size);
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02002819 i += size;
Benjamin Peterson14339b62009-01-31 16:36:08 +00002820 /* We're done with the unicode()/repr() => forget it */
2821 Py_DECREF(*callresult);
2822 /* switch to next unicode()/repr() result */
2823 ++callresult;
2824 break;
2825 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002826 case '%':
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002827 PyUnicode_WRITE(kind, data, i++, '%');
Benjamin Peterson14339b62009-01-31 16:36:08 +00002828 break;
2829 default:
Victor Stinner184252a2012-06-16 02:57:41 +02002830 {
2831 Py_ssize_t len = strlen(p);
2832 unicode_write_cstr(string, i, p, len);
2833 i += len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002834 assert(i == PyUnicode_GET_LENGTH(string));
Benjamin Peterson14339b62009-01-31 16:36:08 +00002835 goto end;
2836 }
Victor Stinner184252a2012-06-16 02:57:41 +02002837 }
Victor Stinner1205f272010-09-11 00:54:47 +00002838 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002839 else {
2840 assert(i < PyUnicode_GET_LENGTH(string));
2841 PyUnicode_WRITE(kind, data, i++, *f);
2842 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002843 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002844 assert(i == PyUnicode_GET_LENGTH(string));
Walter Dörwaldd2034312007-05-18 16:29:38 +00002845
Benjamin Peterson29060642009-01-31 22:14:21 +00002846 end:
Benjamin Peterson14339b62009-01-31 16:36:08 +00002847 if (callresults)
2848 PyObject_Free(callresults);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002849 if (numberresults)
2850 PyObject_Free(numberresults);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01002851 return unicode_result(string);
Benjamin Peterson29060642009-01-31 22:14:21 +00002852 fail:
Benjamin Peterson14339b62009-01-31 16:36:08 +00002853 if (callresults) {
2854 PyObject **callresult2 = callresults;
2855 while (callresult2 < callresult) {
Victor Stinner2512a8b2011-03-01 22:46:52 +00002856 Py_XDECREF(*callresult2);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002857 ++callresult2;
2858 }
2859 PyObject_Free(callresults);
2860 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002861 if (numberresults)
2862 PyObject_Free(numberresults);
Benjamin Peterson14339b62009-01-31 16:36:08 +00002863 return NULL;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002864}
2865
Walter Dörwaldd2034312007-05-18 16:29:38 +00002866PyObject *
2867PyUnicode_FromFormat(const char *format, ...)
2868{
Benjamin Peterson14339b62009-01-31 16:36:08 +00002869 PyObject* ret;
2870 va_list vargs;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002871
2872#ifdef HAVE_STDARG_PROTOTYPES
Benjamin Peterson14339b62009-01-31 16:36:08 +00002873 va_start(vargs, format);
Walter Dörwaldd2034312007-05-18 16:29:38 +00002874#else
Benjamin Peterson14339b62009-01-31 16:36:08 +00002875 va_start(vargs);
Walter Dörwaldd2034312007-05-18 16:29:38 +00002876#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +00002877 ret = PyUnicode_FromFormatV(format, vargs);
2878 va_end(vargs);
2879 return ret;
Walter Dörwaldd2034312007-05-18 16:29:38 +00002880}
2881
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002882#ifdef HAVE_WCHAR_H
2883
Victor Stinner5593d8a2010-10-02 11:11:27 +00002884/* Helper function for PyUnicode_AsWideChar() and PyUnicode_AsWideCharString():
2885 convert a Unicode object to a wide character string.
2886
Victor Stinnerd88d9832011-09-06 02:00:05 +02002887 - If w is NULL: return the number of wide characters (including the null
Victor Stinner5593d8a2010-10-02 11:11:27 +00002888 character) required to convert the unicode object. Ignore size argument.
2889
Victor Stinnerd88d9832011-09-06 02:00:05 +02002890 - Otherwise: return the number of wide characters (excluding the null
Victor Stinner5593d8a2010-10-02 11:11:27 +00002891 character) written into w. Write at most size wide characters (including
Victor Stinnerd88d9832011-09-06 02:00:05 +02002892 the null character). */
Victor Stinner5593d8a2010-10-02 11:11:27 +00002893static Py_ssize_t
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002894unicode_aswidechar(PyObject *unicode,
Victor Stinner137c34c2010-09-29 10:25:54 +00002895 wchar_t *w,
2896 Py_ssize_t size)
2897{
Victor Stinner5593d8a2010-10-02 11:11:27 +00002898 Py_ssize_t res;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002899 const wchar_t *wstr;
2900
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002901 wstr = PyUnicode_AsUnicodeAndSize(unicode, &res);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002902 if (wstr == NULL)
2903 return -1;
2904
Victor Stinner5593d8a2010-10-02 11:11:27 +00002905 if (w != NULL) {
Victor Stinner5593d8a2010-10-02 11:11:27 +00002906 if (size > res)
2907 size = res + 1;
2908 else
2909 res = size;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002910 Py_MEMCPY(w, wstr, size * sizeof(wchar_t));
Victor Stinner5593d8a2010-10-02 11:11:27 +00002911 return res;
2912 }
2913 else
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002914 return res + 1;
Victor Stinner137c34c2010-09-29 10:25:54 +00002915}
2916
2917Py_ssize_t
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00002918PyUnicode_AsWideChar(PyObject *unicode,
Victor Stinner137c34c2010-09-29 10:25:54 +00002919 wchar_t *w,
2920 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00002921{
2922 if (unicode == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002923 PyErr_BadInternalCall();
2924 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002925 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002926 return unicode_aswidechar(unicode, w, size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00002927}
2928
Victor Stinner137c34c2010-09-29 10:25:54 +00002929wchar_t*
Victor Stinnerbeb4135b2010-10-07 01:02:42 +00002930PyUnicode_AsWideCharString(PyObject *unicode,
Victor Stinner137c34c2010-09-29 10:25:54 +00002931 Py_ssize_t *size)
2932{
2933 wchar_t* buffer;
2934 Py_ssize_t buflen;
2935
2936 if (unicode == NULL) {
2937 PyErr_BadInternalCall();
2938 return NULL;
2939 }
2940
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002941 buflen = unicode_aswidechar(unicode, NULL, 0);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002942 if (buflen == -1)
2943 return NULL;
Victor Stinner5593d8a2010-10-02 11:11:27 +00002944 if (PY_SSIZE_T_MAX / sizeof(wchar_t) < buflen) {
Victor Stinner137c34c2010-09-29 10:25:54 +00002945 PyErr_NoMemory();
2946 return NULL;
2947 }
2948
Victor Stinner137c34c2010-09-29 10:25:54 +00002949 buffer = PyMem_MALLOC(buflen * sizeof(wchar_t));
2950 if (buffer == NULL) {
2951 PyErr_NoMemory();
2952 return NULL;
2953 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02002954 buflen = unicode_aswidechar(unicode, buffer, buflen);
Stefan Krah8528c312012-08-19 21:52:43 +02002955 if (buflen == -1) {
2956 PyMem_FREE(buffer);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002957 return NULL;
Stefan Krah8528c312012-08-19 21:52:43 +02002958 }
Victor Stinner5593d8a2010-10-02 11:11:27 +00002959 if (size != NULL)
2960 *size = buflen;
Victor Stinner137c34c2010-09-29 10:25:54 +00002961 return buffer;
2962}
2963
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002964#endif /* HAVE_WCHAR_H */
Guido van Rossumd57fd912000-03-10 22:53:23 +00002965
Alexander Belopolsky40018472011-02-26 01:02:56 +00002966PyObject *
2967PyUnicode_FromOrdinal(int ordinal)
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00002968{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002969 PyObject *v;
Victor Stinner8faf8212011-12-08 22:14:11 +01002970 if (ordinal < 0 || ordinal > MAX_UNICODE) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002971 PyErr_SetString(PyExc_ValueError,
2972 "chr() arg not in range(0x110000)");
2973 return NULL;
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00002974 }
Guido van Rossum8ac004e2007-07-15 13:00:05 +00002975
Victor Stinnerd21b58c2013-02-26 00:15:54 +01002976 if ((Py_UCS4)ordinal < 256)
2977 return get_latin1_char((unsigned char)ordinal);
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00002978
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002979 v = PyUnicode_New(1, ordinal);
2980 if (v == NULL)
2981 return NULL;
2982 PyUnicode_WRITE(PyUnicode_KIND(v), PyUnicode_DATA(v), 0, ordinal);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02002983 assert(_PyUnicode_CheckConsistency(v, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002984 return v;
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00002985}
2986
Alexander Belopolsky40018472011-02-26 01:02:56 +00002987PyObject *
2988PyUnicode_FromObject(register PyObject *obj)
Guido van Rossumd57fd912000-03-10 22:53:23 +00002989{
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00002990 /* XXX Perhaps we should make this API an alias of
Benjamin Peterson29060642009-01-31 22:14:21 +00002991 PyObject_Str() instead ?! */
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00002992 if (PyUnicode_CheckExact(obj)) {
Benjamin Petersonbac79492012-01-14 13:34:47 -05002993 if (PyUnicode_READY(obj) == -1)
Victor Stinnerd3a83d52011-10-01 03:09:33 +02002994 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +00002995 Py_INCREF(obj);
2996 return obj;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00002997 }
2998 if (PyUnicode_Check(obj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002999 /* For a Unicode subtype that's not a Unicode object,
3000 return a true Unicode object with the same data. */
Victor Stinnerbf6e5602011-12-12 01:53:47 +01003001 return _PyUnicode_Copy(obj);
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00003002 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00003003 PyErr_Format(PyExc_TypeError,
3004 "Can't convert '%.100s' object to str implicitly",
Christian Heimes90aa7642007-12-19 02:45:37 +00003005 Py_TYPE(obj)->tp_name);
Guido van Rossum98297ee2007-11-06 21:34:58 +00003006 return NULL;
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00003007}
3008
Alexander Belopolsky40018472011-02-26 01:02:56 +00003009PyObject *
3010PyUnicode_FromEncodedObject(register PyObject *obj,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003011 const char *encoding,
3012 const char *errors)
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00003013{
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003014 Py_buffer buffer;
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00003015 PyObject *v;
Tim Petersced69f82003-09-16 20:30:58 +00003016
Guido van Rossumd57fd912000-03-10 22:53:23 +00003017 if (obj == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00003018 PyErr_BadInternalCall();
3019 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003020 }
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00003021
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003022 /* Decoding bytes objects is the most common case and should be fast */
3023 if (PyBytes_Check(obj)) {
Serhiy Storchaka05997252013-01-26 12:14:02 +02003024 if (PyBytes_GET_SIZE(obj) == 0)
3025 _Py_RETURN_UNICODE_EMPTY();
3026 v = PyUnicode_Decode(
3027 PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj),
3028 encoding, errors);
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003029 return v;
3030 }
3031
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00003032 if (PyUnicode_Check(obj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00003033 PyErr_SetString(PyExc_TypeError,
3034 "decoding str is not supported");
3035 return NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +00003036 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00003037
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003038 /* Retrieve a bytes buffer view through the PEP 3118 buffer interface */
3039 if (PyObject_GetBuffer(obj, &buffer, PyBUF_SIMPLE) < 0) {
3040 PyErr_Format(PyExc_TypeError,
3041 "coercing to str: need bytes, bytearray "
3042 "or buffer-like object, %.80s found",
3043 Py_TYPE(obj)->tp_name);
3044 return NULL;
Marc-André Lemburg6871f6a2001-09-20 12:53:16 +00003045 }
Tim Petersced69f82003-09-16 20:30:58 +00003046
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003047 if (buffer.len == 0) {
Serhiy Storchaka05997252013-01-26 12:14:02 +02003048 PyBuffer_Release(&buffer);
3049 _Py_RETURN_UNICODE_EMPTY();
Guido van Rossumd57fd912000-03-10 22:53:23 +00003050 }
Marc-André Lemburgad7c98e2001-01-17 17:09:53 +00003051
Serhiy Storchaka05997252013-01-26 12:14:02 +02003052 v = PyUnicode_Decode((char*) buffer.buf, buffer.len, encoding, errors);
Antoine Pitroub0fa8312010-09-01 15:10:12 +00003053 PyBuffer_Release(&buffer);
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00003054 return v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003055}
3056
Victor Stinner600d3be2010-06-10 12:00:55 +00003057/* Convert encoding to lower case and replace '_' with '-' in order to
Victor Stinner37296e82010-06-10 13:36:23 +00003058 catch e.g. UTF_8. Return 0 on error (encoding is longer than lower_len-1),
3059 1 on success. */
Victor Stinner20b654a2013-01-03 01:08:58 +01003060int
3061_Py_normalize_encoding(const char *encoding,
Victor Stinner37296e82010-06-10 13:36:23 +00003062 char *lower,
3063 size_t lower_len)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003064{
Guido van Rossumdaa251c2007-10-25 23:47:33 +00003065 const char *e;
Victor Stinner600d3be2010-06-10 12:00:55 +00003066 char *l;
3067 char *l_end;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003068
Benjamin Peterson7a6debe2011-10-15 09:25:28 -04003069 if (encoding == NULL) {
3070 strcpy(lower, "utf-8");
3071 return 1;
3072 }
Guido van Rossumdaa251c2007-10-25 23:47:33 +00003073 e = encoding;
3074 l = lower;
Victor Stinner600d3be2010-06-10 12:00:55 +00003075 l_end = &lower[lower_len - 1];
Victor Stinner37296e82010-06-10 13:36:23 +00003076 while (*e) {
3077 if (l == l_end)
3078 return 0;
David Malcolm96960882010-11-05 17:23:41 +00003079 if (Py_ISUPPER(*e)) {
3080 *l++ = Py_TOLOWER(*e++);
Guido van Rossumdaa251c2007-10-25 23:47:33 +00003081 }
3082 else if (*e == '_') {
3083 *l++ = '-';
3084 e++;
3085 }
3086 else {
3087 *l++ = *e++;
3088 }
3089 }
3090 *l = '\0';
Victor Stinner37296e82010-06-10 13:36:23 +00003091 return 1;
Victor Stinner600d3be2010-06-10 12:00:55 +00003092}
3093
Alexander Belopolsky40018472011-02-26 01:02:56 +00003094PyObject *
3095PyUnicode_Decode(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003096 Py_ssize_t size,
3097 const char *encoding,
3098 const char *errors)
Victor Stinner600d3be2010-06-10 12:00:55 +00003099{
3100 PyObject *buffer = NULL, *unicode;
3101 Py_buffer info;
3102 char lower[11]; /* Enough for any encoding shortcut */
3103
Fred Drakee4315f52000-05-09 19:53:39 +00003104 /* Shortcuts for common default encodings */
Victor Stinner20b654a2013-01-03 01:08:58 +01003105 if (_Py_normalize_encoding(encoding, lower, sizeof(lower))) {
Alexander Belopolsky1d521462011-02-25 19:19:57 +00003106 if ((strcmp(lower, "utf-8") == 0) ||
3107 (strcmp(lower, "utf8") == 0))
Victor Stinnera1d12bb2011-12-11 21:53:09 +01003108 return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL);
Victor Stinner37296e82010-06-10 13:36:23 +00003109 else if ((strcmp(lower, "latin-1") == 0) ||
Alexander Belopolsky1d521462011-02-25 19:19:57 +00003110 (strcmp(lower, "latin1") == 0) ||
Victor Stinner37296e82010-06-10 13:36:23 +00003111 (strcmp(lower, "iso-8859-1") == 0))
3112 return PyUnicode_DecodeLatin1(s, size, errors);
Victor Stinner99b95382011-07-04 14:23:54 +02003113#ifdef HAVE_MBCS
Victor Stinner37296e82010-06-10 13:36:23 +00003114 else if (strcmp(lower, "mbcs") == 0)
3115 return PyUnicode_DecodeMBCS(s, size, errors);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00003116#endif
Victor Stinner37296e82010-06-10 13:36:23 +00003117 else if (strcmp(lower, "ascii") == 0)
3118 return PyUnicode_DecodeASCII(s, size, errors);
3119 else if (strcmp(lower, "utf-16") == 0)
3120 return PyUnicode_DecodeUTF16(s, size, errors, 0);
3121 else if (strcmp(lower, "utf-32") == 0)
3122 return PyUnicode_DecodeUTF32(s, size, errors, 0);
3123 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00003124
3125 /* Decode via the codec registry */
Guido van Rossumbe801ac2007-10-08 03:32:34 +00003126 buffer = NULL;
Antoine Pitrouc3b39242009-01-03 16:59:18 +00003127 if (PyBuffer_FillInfo(&info, NULL, (void *)s, size, 1, PyBUF_FULL_RO) < 0)
Guido van Rossumbe801ac2007-10-08 03:32:34 +00003128 goto onError;
Antoine Pitrouee58fa42008-08-19 18:22:14 +00003129 buffer = PyMemoryView_FromBuffer(&info);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003130 if (buffer == NULL)
3131 goto onError;
Serhiy Storchaka94ee3892014-02-24 14:43:03 +02003132 unicode = _PyCodec_DecodeText(buffer, encoding, errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003133 if (unicode == NULL)
3134 goto onError;
3135 if (!PyUnicode_Check(unicode)) {
3136 PyErr_Format(PyExc_TypeError,
Benjamin Peterson142957c2008-07-04 19:55:29 +00003137 "decoder did not return a str object (type=%.400s)",
Christian Heimes90aa7642007-12-19 02:45:37 +00003138 Py_TYPE(unicode)->tp_name);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003139 Py_DECREF(unicode);
3140 goto onError;
3141 }
3142 Py_DECREF(buffer);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01003143 return unicode_result(unicode);
Tim Petersced69f82003-09-16 20:30:58 +00003144
Benjamin Peterson29060642009-01-31 22:14:21 +00003145 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00003146 Py_XDECREF(buffer);
3147 return NULL;
3148}
3149
Alexander Belopolsky40018472011-02-26 01:02:56 +00003150PyObject *
3151PyUnicode_AsDecodedObject(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003152 const char *encoding,
3153 const char *errors)
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003154{
3155 PyObject *v;
3156
3157 if (!PyUnicode_Check(unicode)) {
3158 PyErr_BadArgument();
3159 goto onError;
3160 }
3161
3162 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003163 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003164
3165 /* Decode via the codec registry */
3166 v = PyCodec_Decode(unicode, encoding, errors);
3167 if (v == NULL)
3168 goto onError;
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01003169 return unicode_result(v);
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003170
Benjamin Peterson29060642009-01-31 22:14:21 +00003171 onError:
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003172 return NULL;
3173}
3174
Alexander Belopolsky40018472011-02-26 01:02:56 +00003175PyObject *
3176PyUnicode_AsDecodedUnicode(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003177 const char *encoding,
3178 const char *errors)
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003179{
3180 PyObject *v;
3181
3182 if (!PyUnicode_Check(unicode)) {
3183 PyErr_BadArgument();
3184 goto onError;
3185 }
3186
3187 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003188 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003189
3190 /* Decode via the codec registry */
3191 v = PyCodec_Decode(unicode, encoding, errors);
3192 if (v == NULL)
3193 goto onError;
3194 if (!PyUnicode_Check(v)) {
3195 PyErr_Format(PyExc_TypeError,
Benjamin Peterson142957c2008-07-04 19:55:29 +00003196 "decoder did not return a str object (type=%.400s)",
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003197 Py_TYPE(v)->tp_name);
3198 Py_DECREF(v);
3199 goto onError;
3200 }
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01003201 return unicode_result(v);
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003202
Benjamin Peterson29060642009-01-31 22:14:21 +00003203 onError:
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003204 return NULL;
3205}
3206
Alexander Belopolsky40018472011-02-26 01:02:56 +00003207PyObject *
3208PyUnicode_Encode(const Py_UNICODE *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003209 Py_ssize_t size,
3210 const char *encoding,
3211 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003212{
3213 PyObject *v, *unicode;
Tim Petersced69f82003-09-16 20:30:58 +00003214
Guido van Rossumd57fd912000-03-10 22:53:23 +00003215 unicode = PyUnicode_FromUnicode(s, size);
3216 if (unicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003217 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003218 v = PyUnicode_AsEncodedString(unicode, encoding, errors);
3219 Py_DECREF(unicode);
3220 return v;
3221}
3222
Alexander Belopolsky40018472011-02-26 01:02:56 +00003223PyObject *
3224PyUnicode_AsEncodedObject(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003225 const char *encoding,
3226 const char *errors)
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003227{
3228 PyObject *v;
3229
3230 if (!PyUnicode_Check(unicode)) {
3231 PyErr_BadArgument();
3232 goto onError;
3233 }
3234
3235 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003236 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003237
3238 /* Encode via the codec registry */
3239 v = PyCodec_Encode(unicode, encoding, errors);
3240 if (v == NULL)
3241 goto onError;
3242 return v;
3243
Benjamin Peterson29060642009-01-31 22:14:21 +00003244 onError:
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00003245 return NULL;
3246}
3247
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003248static size_t
3249wcstombs_errorpos(const wchar_t *wstr)
3250{
3251 size_t len;
3252#if SIZEOF_WCHAR_T == 2
3253 wchar_t buf[3];
3254#else
3255 wchar_t buf[2];
3256#endif
3257 char outbuf[MB_LEN_MAX];
3258 const wchar_t *start, *previous;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003259
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003260#if SIZEOF_WCHAR_T == 2
3261 buf[2] = 0;
3262#else
3263 buf[1] = 0;
3264#endif
3265 start = wstr;
3266 while (*wstr != L'\0')
3267 {
3268 previous = wstr;
3269#if SIZEOF_WCHAR_T == 2
3270 if (Py_UNICODE_IS_HIGH_SURROGATE(wstr[0])
3271 && Py_UNICODE_IS_LOW_SURROGATE(wstr[1]))
3272 {
3273 buf[0] = wstr[0];
3274 buf[1] = wstr[1];
3275 wstr += 2;
3276 }
3277 else {
3278 buf[0] = *wstr;
3279 buf[1] = 0;
3280 wstr++;
3281 }
3282#else
3283 buf[0] = *wstr;
3284 wstr++;
3285#endif
3286 len = wcstombs(outbuf, buf, sizeof(outbuf));
Victor Stinner2f197072011-12-17 07:08:30 +01003287 if (len == (size_t)-1)
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003288 return previous - start;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003289 }
3290
3291 /* failed to find the unencodable character */
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003292 return 0;
3293}
3294
Victor Stinner1b579672011-12-17 05:47:23 +01003295static int
3296locale_error_handler(const char *errors, int *surrogateescape)
3297{
3298 if (errors == NULL) {
3299 *surrogateescape = 0;
3300 return 0;
3301 }
3302
3303 if (strcmp(errors, "strict") == 0) {
3304 *surrogateescape = 0;
3305 return 0;
3306 }
3307 if (strcmp(errors, "surrogateescape") == 0) {
3308 *surrogateescape = 1;
3309 return 0;
3310 }
3311 PyErr_Format(PyExc_ValueError,
3312 "only 'strict' and 'surrogateescape' error handlers "
3313 "are supported, not '%s'",
3314 errors);
3315 return -1;
3316}
3317
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003318PyObject *
Victor Stinner1b579672011-12-17 05:47:23 +01003319PyUnicode_EncodeLocale(PyObject *unicode, const char *errors)
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003320{
3321 Py_ssize_t wlen, wlen2;
3322 wchar_t *wstr;
3323 PyObject *bytes = NULL;
3324 char *errmsg;
Raymond Hettingere56666d2013-08-04 11:51:03 -07003325 PyObject *reason = NULL;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003326 PyObject *exc;
3327 size_t error_pos;
Victor Stinner1b579672011-12-17 05:47:23 +01003328 int surrogateescape;
3329
3330 if (locale_error_handler(errors, &surrogateescape) < 0)
3331 return NULL;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003332
3333 wstr = PyUnicode_AsWideCharString(unicode, &wlen);
3334 if (wstr == NULL)
3335 return NULL;
3336
3337 wlen2 = wcslen(wstr);
3338 if (wlen2 != wlen) {
3339 PyMem_Free(wstr);
3340 PyErr_SetString(PyExc_TypeError, "embedded null character");
3341 return NULL;
3342 }
3343
3344 if (surrogateescape) {
3345 /* locale encoding with surrogateescape */
3346 char *str;
3347
3348 str = _Py_wchar2char(wstr, &error_pos);
3349 if (str == NULL) {
3350 if (error_pos == (size_t)-1) {
3351 PyErr_NoMemory();
3352 PyMem_Free(wstr);
3353 return NULL;
3354 }
3355 else {
3356 goto encode_error;
3357 }
3358 }
3359 PyMem_Free(wstr);
3360
3361 bytes = PyBytes_FromString(str);
3362 PyMem_Free(str);
3363 }
3364 else {
3365 size_t len, len2;
3366
3367 len = wcstombs(NULL, wstr, 0);
3368 if (len == (size_t)-1) {
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
3373 bytes = PyBytes_FromStringAndSize(NULL, len);
3374 if (bytes == NULL) {
3375 PyMem_Free(wstr);
3376 return NULL;
3377 }
3378
3379 len2 = wcstombs(PyBytes_AS_STRING(bytes), wstr, len+1);
3380 if (len2 == (size_t)-1 || len2 > len) {
Victor Stinner2f197072011-12-17 07:08:30 +01003381 error_pos = (size_t)-1;
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003382 goto encode_error;
3383 }
3384 PyMem_Free(wstr);
3385 }
3386 return bytes;
3387
3388encode_error:
3389 errmsg = strerror(errno);
3390 assert(errmsg != NULL);
Victor Stinner2f197072011-12-17 07:08:30 +01003391
3392 if (error_pos == (size_t)-1)
3393 error_pos = wcstombs_errorpos(wstr);
3394
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003395 PyMem_Free(wstr);
3396 Py_XDECREF(bytes);
3397
Victor Stinner2f197072011-12-17 07:08:30 +01003398 if (errmsg != NULL) {
3399 size_t errlen;
3400 wstr = _Py_char2wchar(errmsg, &errlen);
3401 if (wstr != NULL) {
3402 reason = PyUnicode_FromWideChar(wstr, errlen);
3403 PyMem_Free(wstr);
3404 } else
3405 errmsg = NULL;
3406 }
3407 if (errmsg == NULL)
Victor Stinner1f33f2b2011-12-17 04:45:09 +01003408 reason = PyUnicode_FromString(
3409 "wcstombs() encountered an unencodable "
3410 "wide character");
3411 if (reason == NULL)
3412 return NULL;
3413
3414 exc = PyObject_CallFunction(PyExc_UnicodeEncodeError, "sOnnO",
3415 "locale", unicode,
3416 (Py_ssize_t)error_pos,
3417 (Py_ssize_t)(error_pos+1),
3418 reason);
3419 Py_DECREF(reason);
3420 if (exc != NULL) {
3421 PyCodec_StrictErrors(exc);
3422 Py_XDECREF(exc);
3423 }
Victor Stinnerf2ea71f2011-12-17 04:13:41 +01003424 return NULL;
3425}
3426
Victor Stinnerad158722010-10-27 00:25:46 +00003427PyObject *
3428PyUnicode_EncodeFSDefault(PyObject *unicode)
Victor Stinnerae6265f2010-05-15 16:27:27 +00003429{
Victor Stinner99b95382011-07-04 14:23:54 +02003430#ifdef HAVE_MBCS
Victor Stinnerac931b12011-11-20 18:27:03 +01003431 return PyUnicode_EncodeCodePage(CP_ACP, unicode, NULL);
Victor Stinnerad158722010-10-27 00:25:46 +00003432#elif defined(__APPLE__)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003433 return _PyUnicode_AsUTF8String(unicode, "surrogateescape");
Victor Stinnerad158722010-10-27 00:25:46 +00003434#else
Victor Stinner793b5312011-04-27 00:24:21 +02003435 PyInterpreterState *interp = PyThreadState_GET()->interp;
3436 /* Bootstrap check: if the filesystem codec is implemented in Python, we
3437 cannot use it to encode and decode filenames before it is loaded. Load
3438 the Python codec requires to encode at least its own filename. Use the C
3439 version of the locale codec until the codec registry is initialized and
3440 the Python codec is loaded.
3441
3442 Py_FileSystemDefaultEncoding is shared between all interpreters, we
3443 cannot only rely on it: check also interp->fscodec_initialized for
3444 subinterpreters. */
3445 if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) {
Victor Stinnerae6265f2010-05-15 16:27:27 +00003446 return PyUnicode_AsEncodedString(unicode,
3447 Py_FileSystemDefaultEncoding,
3448 "surrogateescape");
Victor Stinnerc39211f2010-09-29 16:35:47 +00003449 }
3450 else {
Victor Stinner1b579672011-12-17 05:47:23 +01003451 return PyUnicode_EncodeLocale(unicode, "surrogateescape");
Victor Stinnerc39211f2010-09-29 16:35:47 +00003452 }
Victor Stinnerad158722010-10-27 00:25:46 +00003453#endif
Victor Stinnerae6265f2010-05-15 16:27:27 +00003454}
3455
Alexander Belopolsky40018472011-02-26 01:02:56 +00003456PyObject *
3457PyUnicode_AsEncodedString(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003458 const char *encoding,
3459 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003460{
3461 PyObject *v;
Victor Stinner600d3be2010-06-10 12:00:55 +00003462 char lower[11]; /* Enough for any encoding shortcut */
Tim Petersced69f82003-09-16 20:30:58 +00003463
Guido van Rossumd57fd912000-03-10 22:53:23 +00003464 if (!PyUnicode_Check(unicode)) {
3465 PyErr_BadArgument();
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003466 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003467 }
Fred Drakee4315f52000-05-09 19:53:39 +00003468
Fred Drakee4315f52000-05-09 19:53:39 +00003469 /* Shortcuts for common default encodings */
Victor Stinner20b654a2013-01-03 01:08:58 +01003470 if (_Py_normalize_encoding(encoding, lower, sizeof(lower))) {
Alexander Belopolsky1d521462011-02-25 19:19:57 +00003471 if ((strcmp(lower, "utf-8") == 0) ||
3472 (strcmp(lower, "utf8") == 0))
Victor Stinnera5c68c32011-03-02 01:03:14 +00003473 {
Victor Stinner2f283c22011-03-02 01:21:46 +00003474 if (errors == NULL || strcmp(errors, "strict") == 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003475 return _PyUnicode_AsUTF8String(unicode, NULL);
Victor Stinner2f283c22011-03-02 01:21:46 +00003476 else
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003477 return _PyUnicode_AsUTF8String(unicode, errors);
Victor Stinnera5c68c32011-03-02 01:03:14 +00003478 }
Victor Stinner37296e82010-06-10 13:36:23 +00003479 else if ((strcmp(lower, "latin-1") == 0) ||
Alexander Belopolsky1d521462011-02-25 19:19:57 +00003480 (strcmp(lower, "latin1") == 0) ||
Victor Stinner37296e82010-06-10 13:36:23 +00003481 (strcmp(lower, "iso-8859-1") == 0))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003482 return _PyUnicode_AsLatin1String(unicode, errors);
Victor Stinner99b95382011-07-04 14:23:54 +02003483#ifdef HAVE_MBCS
Victor Stinnerac931b12011-11-20 18:27:03 +01003484 else if (strcmp(lower, "mbcs") == 0)
3485 return PyUnicode_EncodeCodePage(CP_ACP, unicode, errors);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00003486#endif
Victor Stinner37296e82010-06-10 13:36:23 +00003487 else if (strcmp(lower, "ascii") == 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003488 return _PyUnicode_AsASCIIString(unicode, errors);
Victor Stinner37296e82010-06-10 13:36:23 +00003489 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00003490
3491 /* Encode via the codec registry */
Serhiy Storchaka94ee3892014-02-24 14:43:03 +02003492 v = _PyCodec_EncodeText(unicode, encoding, errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003493 if (v == NULL)
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003494 return NULL;
3495
3496 /* The normal path */
3497 if (PyBytes_Check(v))
3498 return v;
3499
3500 /* If the codec returns a buffer, raise a warning and convert to bytes */
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003501 if (PyByteArray_Check(v)) {
Victor Stinner4a2b7a12010-08-13 14:03:48 +00003502 int error;
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003503 PyObject *b;
Victor Stinner4a2b7a12010-08-13 14:03:48 +00003504
3505 error = PyErr_WarnFormat(PyExc_RuntimeWarning, 1,
3506 "encoder %s returned bytearray instead of bytes",
3507 encoding);
3508 if (error) {
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003509 Py_DECREF(v);
3510 return NULL;
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003511 }
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003512
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00003513 b = PyBytes_FromStringAndSize(PyByteArray_AS_STRING(v), Py_SIZE(v));
3514 Py_DECREF(v);
3515 return b;
3516 }
3517
3518 PyErr_Format(PyExc_TypeError,
3519 "encoder did not return a bytes object (type=%.400s)",
3520 Py_TYPE(v)->tp_name);
3521 Py_DECREF(v);
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003522 return NULL;
3523}
3524
Alexander Belopolsky40018472011-02-26 01:02:56 +00003525PyObject *
3526PyUnicode_AsEncodedUnicode(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03003527 const char *encoding,
3528 const char *errors)
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003529{
3530 PyObject *v;
3531
3532 if (!PyUnicode_Check(unicode)) {
3533 PyErr_BadArgument();
3534 goto onError;
3535 }
3536
3537 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00003538 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003539
3540 /* Encode via the codec registry */
3541 v = PyCodec_Encode(unicode, encoding, errors);
3542 if (v == NULL)
3543 goto onError;
3544 if (!PyUnicode_Check(v)) {
3545 PyErr_Format(PyExc_TypeError,
Benjamin Peterson142957c2008-07-04 19:55:29 +00003546 "encoder did not return an str object (type=%.400s)",
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00003547 Py_TYPE(v)->tp_name);
3548 Py_DECREF(v);
3549 goto onError;
3550 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00003551 return v;
Tim Petersced69f82003-09-16 20:30:58 +00003552
Benjamin Peterson29060642009-01-31 22:14:21 +00003553 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00003554 return NULL;
3555}
3556
Victor Stinner2f197072011-12-17 07:08:30 +01003557static size_t
3558mbstowcs_errorpos(const char *str, size_t len)
3559{
3560#ifdef HAVE_MBRTOWC
3561 const char *start = str;
3562 mbstate_t mbs;
3563 size_t converted;
3564 wchar_t ch;
3565
3566 memset(&mbs, 0, sizeof mbs);
3567 while (len)
3568 {
3569 converted = mbrtowc(&ch, (char*)str, len, &mbs);
3570 if (converted == 0)
3571 /* Reached end of string */
3572 break;
3573 if (converted == (size_t)-1 || converted == (size_t)-2) {
3574 /* Conversion error or incomplete character */
3575 return str - start;
3576 }
3577 else {
3578 str += converted;
3579 len -= converted;
3580 }
3581 }
3582 /* failed to find the undecodable byte sequence */
3583 return 0;
3584#endif
3585 return 0;
3586}
3587
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003588PyObject*
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003589PyUnicode_DecodeLocaleAndSize(const char *str, Py_ssize_t len,
Victor Stinner1b579672011-12-17 05:47:23 +01003590 const char *errors)
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003591{
3592 wchar_t smallbuf[256];
3593 size_t smallbuf_len = Py_ARRAY_LENGTH(smallbuf);
3594 wchar_t *wstr;
3595 size_t wlen, wlen2;
3596 PyObject *unicode;
Victor Stinner1b579672011-12-17 05:47:23 +01003597 int surrogateescape;
Victor Stinner2f197072011-12-17 07:08:30 +01003598 size_t error_pos;
3599 char *errmsg;
3600 PyObject *reason, *exc;
Victor Stinner1b579672011-12-17 05:47:23 +01003601
3602 if (locale_error_handler(errors, &surrogateescape) < 0)
3603 return NULL;
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003604
3605 if (str[len] != '\0' || len != strlen(str)) {
3606 PyErr_SetString(PyExc_TypeError, "embedded null character");
3607 return NULL;
3608 }
3609
3610 if (surrogateescape)
3611 {
3612 wstr = _Py_char2wchar(str, &wlen);
3613 if (wstr == NULL) {
3614 if (wlen == (size_t)-1)
3615 PyErr_NoMemory();
3616 else
3617 PyErr_SetFromErrno(PyExc_OSError);
3618 return NULL;
3619 }
3620
3621 unicode = PyUnicode_FromWideChar(wstr, wlen);
3622 PyMem_Free(wstr);
3623 }
3624 else {
3625#ifndef HAVE_BROKEN_MBSTOWCS
3626 wlen = mbstowcs(NULL, str, 0);
3627#else
3628 wlen = len;
3629#endif
Victor Stinner2f197072011-12-17 07:08:30 +01003630 if (wlen == (size_t)-1)
3631 goto decode_error;
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003632 if (wlen+1 <= smallbuf_len) {
3633 wstr = smallbuf;
3634 }
3635 else {
3636 if (wlen > PY_SSIZE_T_MAX / sizeof(wchar_t) - 1)
3637 return PyErr_NoMemory();
3638
3639 wstr = PyMem_Malloc((wlen+1) * sizeof(wchar_t));
3640 if (!wstr)
3641 return PyErr_NoMemory();
3642 }
3643
3644 /* This shouldn't fail now */
3645 wlen2 = mbstowcs(wstr, str, wlen+1);
3646 if (wlen2 == (size_t)-1) {
3647 if (wstr != smallbuf)
3648 PyMem_Free(wstr);
Victor Stinner2f197072011-12-17 07:08:30 +01003649 goto decode_error;
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003650 }
3651#ifdef HAVE_BROKEN_MBSTOWCS
3652 assert(wlen2 == wlen);
3653#endif
3654 unicode = PyUnicode_FromWideChar(wstr, wlen2);
3655 if (wstr != smallbuf)
3656 PyMem_Free(wstr);
3657 }
3658 return unicode;
Victor Stinner2f197072011-12-17 07:08:30 +01003659
3660decode_error:
3661 errmsg = strerror(errno);
3662 assert(errmsg != NULL);
3663
3664 error_pos = mbstowcs_errorpos(str, len);
3665 if (errmsg != NULL) {
3666 size_t errlen;
3667 wstr = _Py_char2wchar(errmsg, &errlen);
3668 if (wstr != NULL) {
3669 reason = PyUnicode_FromWideChar(wstr, errlen);
3670 PyMem_Free(wstr);
3671 } else
3672 errmsg = NULL;
3673 }
3674 if (errmsg == NULL)
3675 reason = PyUnicode_FromString(
3676 "mbstowcs() encountered an invalid multibyte sequence");
3677 if (reason == NULL)
3678 return NULL;
3679
3680 exc = PyObject_CallFunction(PyExc_UnicodeDecodeError, "sy#nnO",
3681 "locale", str, len,
3682 (Py_ssize_t)error_pos,
3683 (Py_ssize_t)(error_pos+1),
3684 reason);
3685 Py_DECREF(reason);
3686 if (exc != NULL) {
3687 PyCodec_StrictErrors(exc);
3688 Py_XDECREF(exc);
3689 }
3690 return NULL;
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003691}
3692
3693PyObject*
Victor Stinner1b579672011-12-17 05:47:23 +01003694PyUnicode_DecodeLocale(const char *str, const char *errors)
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003695{
3696 Py_ssize_t size = (Py_ssize_t)strlen(str);
Victor Stinner1b579672011-12-17 05:47:23 +01003697 return PyUnicode_DecodeLocaleAndSize(str, size, errors);
Victor Stinneraf02e1c2011-12-16 23:56:01 +01003698}
3699
3700
3701PyObject*
Christian Heimes5894ba72007-11-04 11:43:14 +00003702PyUnicode_DecodeFSDefault(const char *s) {
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003703 Py_ssize_t size = (Py_ssize_t)strlen(s);
Christian Heimes5894ba72007-11-04 11:43:14 +00003704 return PyUnicode_DecodeFSDefaultAndSize(s, size);
3705}
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003706
Christian Heimes5894ba72007-11-04 11:43:14 +00003707PyObject*
3708PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size)
3709{
Victor Stinner99b95382011-07-04 14:23:54 +02003710#ifdef HAVE_MBCS
Victor Stinnerad158722010-10-27 00:25:46 +00003711 return PyUnicode_DecodeMBCS(s, size, NULL);
3712#elif defined(__APPLE__)
Victor Stinnera1d12bb2011-12-11 21:53:09 +01003713 return PyUnicode_DecodeUTF8Stateful(s, size, "surrogateescape", NULL);
Victor Stinnerad158722010-10-27 00:25:46 +00003714#else
Victor Stinner793b5312011-04-27 00:24:21 +02003715 PyInterpreterState *interp = PyThreadState_GET()->interp;
3716 /* Bootstrap check: if the filesystem codec is implemented in Python, we
3717 cannot use it to encode and decode filenames before it is loaded. Load
3718 the Python codec requires to encode at least its own filename. Use the C
3719 version of the locale codec until the codec registry is initialized and
3720 the Python codec is loaded.
3721
3722 Py_FileSystemDefaultEncoding is shared between all interpreters, we
3723 cannot only rely on it: check also interp->fscodec_initialized for
3724 subinterpreters. */
3725 if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) {
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003726 return PyUnicode_Decode(s, size,
3727 Py_FileSystemDefaultEncoding,
Victor Stinnerb9a20ad2010-04-30 16:37:52 +00003728 "surrogateescape");
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003729 }
3730 else {
Victor Stinner1b579672011-12-17 05:47:23 +01003731 return PyUnicode_DecodeLocaleAndSize(s, size, "surrogateescape");
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003732 }
Victor Stinnerad158722010-10-27 00:25:46 +00003733#endif
Guido van Rossum00bc0e02007-10-15 02:52:41 +00003734}
3735
Martin v. Löwis011e8422009-05-05 04:43:17 +00003736
3737int
Antoine Pitrou13348842012-01-29 18:36:34 +01003738_PyUnicode_HasNULChars(PyObject* s)
3739{
3740 static PyObject *nul = NULL;
3741
3742 if (nul == NULL)
3743 nul = PyUnicode_FromStringAndSize("\0", 1);
3744 if (nul == NULL)
3745 return -1;
3746 return PyUnicode_Contains(s, nul);
3747}
3748
3749
3750int
Martin v. Löwis011e8422009-05-05 04:43:17 +00003751PyUnicode_FSConverter(PyObject* arg, void* addr)
3752{
3753 PyObject *output = NULL;
3754 Py_ssize_t size;
3755 void *data;
Martin v. Löwisc15bdef2009-05-29 14:47:46 +00003756 if (arg == NULL) {
3757 Py_DECREF(*(PyObject**)addr);
3758 return 1;
3759 }
Victor Stinnerdcb24032010-04-22 12:08:36 +00003760 if (PyBytes_Check(arg)) {
Martin v. Löwis011e8422009-05-05 04:43:17 +00003761 output = arg;
3762 Py_INCREF(output);
3763 }
3764 else {
3765 arg = PyUnicode_FromObject(arg);
3766 if (!arg)
3767 return 0;
Victor Stinnerae6265f2010-05-15 16:27:27 +00003768 output = PyUnicode_EncodeFSDefault(arg);
Martin v. Löwis011e8422009-05-05 04:43:17 +00003769 Py_DECREF(arg);
3770 if (!output)
3771 return 0;
3772 if (!PyBytes_Check(output)) {
3773 Py_DECREF(output);
3774 PyErr_SetString(PyExc_TypeError, "encoder failed to return bytes");
3775 return 0;
3776 }
3777 }
Victor Stinner0ea2a462010-04-30 00:22:08 +00003778 size = PyBytes_GET_SIZE(output);
3779 data = PyBytes_AS_STRING(output);
Martin v. Löwis011e8422009-05-05 04:43:17 +00003780 if (size != strlen(data)) {
Benjamin Peterson7a6b44a2011-08-18 13:51:47 -05003781 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
Martin v. Löwis011e8422009-05-05 04:43:17 +00003782 Py_DECREF(output);
3783 return 0;
3784 }
3785 *(PyObject**)addr = output;
Martin v. Löwisc15bdef2009-05-29 14:47:46 +00003786 return Py_CLEANUP_SUPPORTED;
Martin v. Löwis011e8422009-05-05 04:43:17 +00003787}
3788
3789
Victor Stinner47fcb5b2010-08-13 23:59:58 +00003790int
3791PyUnicode_FSDecoder(PyObject* arg, void* addr)
3792{
3793 PyObject *output = NULL;
Victor Stinner47fcb5b2010-08-13 23:59:58 +00003794 if (arg == NULL) {
3795 Py_DECREF(*(PyObject**)addr);
3796 return 1;
3797 }
3798 if (PyUnicode_Check(arg)) {
Benjamin Petersonbac79492012-01-14 13:34:47 -05003799 if (PyUnicode_READY(arg) == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003800 return 0;
Victor Stinner47fcb5b2010-08-13 23:59:58 +00003801 output = arg;
3802 Py_INCREF(output);
3803 }
3804 else {
3805 arg = PyBytes_FromObject(arg);
3806 if (!arg)
3807 return 0;
3808 output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(arg),
3809 PyBytes_GET_SIZE(arg));
3810 Py_DECREF(arg);
3811 if (!output)
3812 return 0;
3813 if (!PyUnicode_Check(output)) {
3814 Py_DECREF(output);
3815 PyErr_SetString(PyExc_TypeError, "decoder failed to return unicode");
3816 return 0;
3817 }
3818 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05003819 if (PyUnicode_READY(output) == -1) {
Victor Stinner065836e2011-10-27 01:56:33 +02003820 Py_DECREF(output);
3821 return 0;
3822 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003823 if (findchar(PyUnicode_DATA(output), PyUnicode_KIND(output),
Antoine Pitrouf0b934b2011-10-13 18:55:09 +02003824 PyUnicode_GET_LENGTH(output), 0, 1) >= 0) {
Victor Stinner47fcb5b2010-08-13 23:59:58 +00003825 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
3826 Py_DECREF(output);
3827 return 0;
3828 }
3829 *(PyObject**)addr = output;
3830 return Py_CLEANUP_SUPPORTED;
3831}
3832
3833
Martin v. Löwis5b222132007-06-10 09:51:05 +00003834char*
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003835PyUnicode_AsUTF8AndSize(PyObject *unicode, Py_ssize_t *psize)
Martin v. Löwis5b222132007-06-10 09:51:05 +00003836{
Christian Heimesf3863112007-11-22 07:46:41 +00003837 PyObject *bytes;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003838
Neal Norwitze0a0a6e2007-08-25 01:04:21 +00003839 if (!PyUnicode_Check(unicode)) {
3840 PyErr_BadArgument();
3841 return NULL;
3842 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003843 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis5b222132007-06-10 09:51:05 +00003844 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003845
Victor Stinnere90fe6a2011-10-01 16:48:13 +02003846 if (PyUnicode_UTF8(unicode) == NULL) {
3847 assert(!PyUnicode_IS_COMPACT_ASCII(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003848 bytes = _PyUnicode_AsUTF8String(unicode, "strict");
3849 if (bytes == NULL)
3850 return NULL;
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003851 _PyUnicode_UTF8(unicode) = PyObject_MALLOC(PyBytes_GET_SIZE(bytes) + 1);
3852 if (_PyUnicode_UTF8(unicode) == NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003853 Py_DECREF(bytes);
3854 return NULL;
3855 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003856 _PyUnicode_UTF8_LENGTH(unicode) = PyBytes_GET_SIZE(bytes);
3857 Py_MEMCPY(_PyUnicode_UTF8(unicode),
3858 PyBytes_AS_STRING(bytes),
3859 _PyUnicode_UTF8_LENGTH(unicode) + 1);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003860 Py_DECREF(bytes);
3861 }
3862
3863 if (psize)
Victor Stinnere90fe6a2011-10-01 16:48:13 +02003864 *psize = PyUnicode_UTF8_LENGTH(unicode);
3865 return PyUnicode_UTF8(unicode);
Guido van Rossum7d1df6c2007-08-29 13:53:23 +00003866}
3867
3868char*
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003869PyUnicode_AsUTF8(PyObject *unicode)
Guido van Rossum7d1df6c2007-08-29 13:53:23 +00003870{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003871 return PyUnicode_AsUTF8AndSize(unicode, NULL);
3872}
3873
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003874Py_UNICODE *
3875PyUnicode_AsUnicodeAndSize(PyObject *unicode, Py_ssize_t *size)
3876{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003877 const unsigned char *one_byte;
3878#if SIZEOF_WCHAR_T == 4
3879 const Py_UCS2 *two_bytes;
3880#else
3881 const Py_UCS4 *four_bytes;
3882 const Py_UCS4 *ucs4_end;
3883 Py_ssize_t num_surrogates;
3884#endif
3885 wchar_t *w;
3886 wchar_t *wchar_end;
3887
3888 if (!PyUnicode_Check(unicode)) {
3889 PyErr_BadArgument();
3890 return NULL;
3891 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003892 if (_PyUnicode_WSTR(unicode) == NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003893 /* Non-ASCII compact unicode object */
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003894 assert(_PyUnicode_KIND(unicode) != 0);
3895 assert(PyUnicode_IS_READY(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003896
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003897 if (PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003898#if SIZEOF_WCHAR_T == 2
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003899 four_bytes = PyUnicode_4BYTE_DATA(unicode);
3900 ucs4_end = four_bytes + _PyUnicode_LENGTH(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003901 num_surrogates = 0;
3902
3903 for (; four_bytes < ucs4_end; ++four_bytes) {
3904 if (*four_bytes > 0xFFFF)
3905 ++num_surrogates;
3906 }
3907
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003908 _PyUnicode_WSTR(unicode) = (wchar_t *) PyObject_MALLOC(
3909 sizeof(wchar_t) * (_PyUnicode_LENGTH(unicode) + 1 + num_surrogates));
3910 if (!_PyUnicode_WSTR(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003911 PyErr_NoMemory();
3912 return NULL;
3913 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003914 _PyUnicode_WSTR_LENGTH(unicode) = _PyUnicode_LENGTH(unicode) + num_surrogates;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003915
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003916 w = _PyUnicode_WSTR(unicode);
3917 wchar_end = w + _PyUnicode_WSTR_LENGTH(unicode);
3918 four_bytes = PyUnicode_4BYTE_DATA(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003919 for (; four_bytes < ucs4_end; ++four_bytes, ++w) {
3920 if (*four_bytes > 0xFFFF) {
Victor Stinner8faf8212011-12-08 22:14:11 +01003921 assert(*four_bytes <= MAX_UNICODE);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003922 /* encode surrogate pair in this case */
Victor Stinner551ac952011-11-29 22:58:13 +01003923 *w++ = Py_UNICODE_HIGH_SURROGATE(*four_bytes);
3924 *w = Py_UNICODE_LOW_SURROGATE(*four_bytes);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003925 }
3926 else
3927 *w = *four_bytes;
3928
3929 if (w > wchar_end) {
3930 assert(0 && "Miscalculated string end");
3931 }
3932 }
3933 *w = 0;
3934#else
3935 /* sizeof(wchar_t) == 4 */
3936 Py_FatalError("Impossible unicode object state, wstr and str "
3937 "should share memory already.");
3938 return NULL;
3939#endif
3940 }
3941 else {
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003942 _PyUnicode_WSTR(unicode) = (wchar_t *) PyObject_MALLOC(sizeof(wchar_t) *
3943 (_PyUnicode_LENGTH(unicode) + 1));
3944 if (!_PyUnicode_WSTR(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003945 PyErr_NoMemory();
3946 return NULL;
3947 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003948 if (!PyUnicode_IS_COMPACT_ASCII(unicode))
3949 _PyUnicode_WSTR_LENGTH(unicode) = _PyUnicode_LENGTH(unicode);
3950 w = _PyUnicode_WSTR(unicode);
3951 wchar_end = w + _PyUnicode_LENGTH(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003952
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003953 if (PyUnicode_KIND(unicode) == PyUnicode_1BYTE_KIND) {
3954 one_byte = PyUnicode_1BYTE_DATA(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003955 for (; w < wchar_end; ++one_byte, ++w)
3956 *w = *one_byte;
3957 /* null-terminate the wstr */
3958 *w = 0;
3959 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003960 else if (PyUnicode_KIND(unicode) == PyUnicode_2BYTE_KIND) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003961#if SIZEOF_WCHAR_T == 4
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003962 two_bytes = PyUnicode_2BYTE_DATA(unicode);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003963 for (; w < wchar_end; ++two_bytes, ++w)
3964 *w = *two_bytes;
3965 /* null-terminate the wstr */
3966 *w = 0;
3967#else
3968 /* sizeof(wchar_t) == 2 */
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003969 PyObject_FREE(_PyUnicode_WSTR(unicode));
3970 _PyUnicode_WSTR(unicode) = NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003971 Py_FatalError("Impossible unicode object state, wstr "
3972 "and str should share memory already.");
3973 return NULL;
3974#endif
3975 }
3976 else {
3977 assert(0 && "This should never happen.");
3978 }
3979 }
3980 }
3981 if (size != NULL)
Victor Stinner9db1a8b2011-10-23 20:04:37 +02003982 *size = PyUnicode_WSTR_LENGTH(unicode);
3983 return _PyUnicode_WSTR(unicode);
Martin v. Löwis5b222132007-06-10 09:51:05 +00003984}
3985
Alexander Belopolsky40018472011-02-26 01:02:56 +00003986Py_UNICODE *
3987PyUnicode_AsUnicode(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003988{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003989 return PyUnicode_AsUnicodeAndSize(unicode, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003990}
3991
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003992
Alexander Belopolsky40018472011-02-26 01:02:56 +00003993Py_ssize_t
3994PyUnicode_GetSize(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003995{
3996 if (!PyUnicode_Check(unicode)) {
3997 PyErr_BadArgument();
3998 goto onError;
3999 }
4000 return PyUnicode_GET_SIZE(unicode);
4001
Benjamin Peterson29060642009-01-31 22:14:21 +00004002 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00004003 return -1;
4004}
4005
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004006Py_ssize_t
4007PyUnicode_GetLength(PyObject *unicode)
4008{
Victor Stinner07621332012-06-16 04:53:46 +02004009 if (!PyUnicode_Check(unicode)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004010 PyErr_BadArgument();
4011 return -1;
4012 }
Victor Stinner07621332012-06-16 04:53:46 +02004013 if (PyUnicode_READY(unicode) == -1)
4014 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004015 return PyUnicode_GET_LENGTH(unicode);
4016}
4017
4018Py_UCS4
4019PyUnicode_ReadChar(PyObject *unicode, Py_ssize_t index)
4020{
Victor Stinner2fe5ced2011-10-02 00:25:40 +02004021 if (!PyUnicode_Check(unicode) || PyUnicode_READY(unicode) == -1) {
4022 PyErr_BadArgument();
4023 return (Py_UCS4)-1;
4024 }
Victor Stinnerc4b49542011-12-11 22:44:26 +01004025 if (index < 0 || index >= PyUnicode_GET_LENGTH(unicode)) {
Victor Stinner2fe5ced2011-10-02 00:25:40 +02004026 PyErr_SetString(PyExc_IndexError, "string index out of range");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004027 return (Py_UCS4)-1;
4028 }
4029 return PyUnicode_READ_CHAR(unicode, index);
4030}
4031
4032int
4033PyUnicode_WriteChar(PyObject *unicode, Py_ssize_t index, Py_UCS4 ch)
4034{
4035 if (!PyUnicode_Check(unicode) || !PyUnicode_IS_COMPACT(unicode)) {
Victor Stinnercd9950f2011-10-02 00:34:53 +02004036 PyErr_BadArgument();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004037 return -1;
4038 }
Victor Stinner488fa492011-12-12 00:01:39 +01004039 assert(PyUnicode_IS_READY(unicode));
Victor Stinnerc4b49542011-12-11 22:44:26 +01004040 if (index < 0 || index >= PyUnicode_GET_LENGTH(unicode)) {
Victor Stinnercd9950f2011-10-02 00:34:53 +02004041 PyErr_SetString(PyExc_IndexError, "string index out of range");
4042 return -1;
4043 }
Victor Stinner488fa492011-12-12 00:01:39 +01004044 if (unicode_check_modifiable(unicode))
Victor Stinnercd9950f2011-10-02 00:34:53 +02004045 return -1;
Victor Stinnerc9590ad2012-03-04 01:34:37 +01004046 if (ch > PyUnicode_MAX_CHAR_VALUE(unicode)) {
4047 PyErr_SetString(PyExc_ValueError, "character out of range");
4048 return -1;
4049 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004050 PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode),
4051 index, ch);
4052 return 0;
4053}
4054
Alexander Belopolsky40018472011-02-26 01:02:56 +00004055const char *
4056PyUnicode_GetDefaultEncoding(void)
Fred Drakee4315f52000-05-09 19:53:39 +00004057{
Victor Stinner42cb4622010-09-01 19:39:01 +00004058 return "utf-8";
Fred Drakee4315f52000-05-09 19:53:39 +00004059}
4060
Victor Stinner554f3f02010-06-16 23:33:54 +00004061/* create or adjust a UnicodeDecodeError */
4062static void
4063make_decode_exception(PyObject **exceptionObject,
4064 const char *encoding,
4065 const char *input, Py_ssize_t length,
4066 Py_ssize_t startpos, Py_ssize_t endpos,
4067 const char *reason)
4068{
4069 if (*exceptionObject == NULL) {
4070 *exceptionObject = PyUnicodeDecodeError_Create(
4071 encoding, input, length, startpos, endpos, reason);
4072 }
4073 else {
4074 if (PyUnicodeDecodeError_SetStart(*exceptionObject, startpos))
4075 goto onError;
4076 if (PyUnicodeDecodeError_SetEnd(*exceptionObject, endpos))
4077 goto onError;
4078 if (PyUnicodeDecodeError_SetReason(*exceptionObject, reason))
4079 goto onError;
4080 }
4081 return;
4082
4083onError:
Serhiy Storchaka505ff752014-02-09 13:33:53 +02004084 Py_CLEAR(*exceptionObject);
Victor Stinner554f3f02010-06-16 23:33:54 +00004085}
4086
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004087/* error handling callback helper:
4088 build arguments, call the callback and check the arguments,
Fred Drakedb390c12005-10-28 14:39:47 +00004089 if no exception occurred, copy the replacement to the output
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004090 and adjust various state variables.
4091 return 0 on success, -1 on error
4092*/
4093
Alexander Belopolsky40018472011-02-26 01:02:56 +00004094static int
4095unicode_decode_call_errorhandler(const char *errors, PyObject **errorHandler,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03004096 const char *encoding, const char *reason,
4097 const char **input, const char **inend, Py_ssize_t *startinpos,
4098 Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004099 PyObject **output, Py_ssize_t *outpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004100{
Benjamin Peterson142957c2008-07-04 19:55:29 +00004101 static char *argparse = "O!n;decoding error handler must return (str, int) tuple";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004102
4103 PyObject *restuple = NULL;
4104 PyObject *repunicode = NULL;
Victor Stinner596a6c42011-11-09 00:02:18 +01004105 Py_ssize_t outsize;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004106 Py_ssize_t insize;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004107 Py_ssize_t requiredsize;
4108 Py_ssize_t newpos;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004109 PyObject *inputobj = NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004110 int res = -1;
4111
Victor Stinner596a6c42011-11-09 00:02:18 +01004112 if (_PyUnicode_KIND(*output) != PyUnicode_WCHAR_KIND)
4113 outsize = PyUnicode_GET_LENGTH(*output);
4114 else
4115 outsize = _PyUnicode_WSTR_LENGTH(*output);
4116
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004117 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004118 *errorHandler = PyCodec_LookupError(errors);
4119 if (*errorHandler == NULL)
4120 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004121 }
4122
Victor Stinner554f3f02010-06-16 23:33:54 +00004123 make_decode_exception(exceptionObject,
4124 encoding,
4125 *input, *inend - *input,
4126 *startinpos, *endinpos,
4127 reason);
4128 if (*exceptionObject == NULL)
4129 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004130
4131 restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL);
4132 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004133 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004134 if (!PyTuple_Check(restuple)) {
Benjamin Petersond75fcb42009-02-19 04:22:03 +00004135 PyErr_SetString(PyExc_TypeError, &argparse[4]);
Benjamin Peterson29060642009-01-31 22:14:21 +00004136 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004137 }
4138 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, &repunicode, &newpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00004139 goto onError;
Benjamin Petersonbac79492012-01-14 13:34:47 -05004140 if (PyUnicode_READY(repunicode) == -1)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004141 goto onError;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004142
4143 /* Copy back the bytes variables, which might have been modified by the
4144 callback */
4145 inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject);
4146 if (!inputobj)
4147 goto onError;
Christian Heimes72b710a2008-05-26 13:28:38 +00004148 if (!PyBytes_Check(inputobj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004149 PyErr_Format(PyExc_TypeError, "exception attribute object must be bytes");
Walter Dörwalde78178e2007-07-30 13:31:40 +00004150 }
Christian Heimes72b710a2008-05-26 13:28:38 +00004151 *input = PyBytes_AS_STRING(inputobj);
4152 insize = PyBytes_GET_SIZE(inputobj);
Walter Dörwalde78178e2007-07-30 13:31:40 +00004153 *inend = *input + insize;
Walter Dörwald36f938f2007-08-10 10:11:43 +00004154 /* we can DECREF safely, as the exception has another reference,
4155 so the object won't go away. */
4156 Py_DECREF(inputobj);
Walter Dörwalde78178e2007-07-30 13:31:40 +00004157
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004158 if (newpos<0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004159 newpos = insize+newpos;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00004160 if (newpos<0 || newpos>insize) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004161 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", newpos);
4162 goto onError;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00004163 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004164
Victor Stinner596a6c42011-11-09 00:02:18 +01004165 if (_PyUnicode_KIND(*output) != PyUnicode_WCHAR_KIND) {
4166 /* need more space? (at least enough for what we
4167 have+the replacement+the rest of the string (starting
4168 at the new input position), so we won't have to check space
4169 when there are no errors in the rest of the string) */
4170 Py_ssize_t replen = PyUnicode_GET_LENGTH(repunicode);
Benjamin Petersona1c1be42014-09-29 18:18:57 -04004171 requiredsize = *outpos;
4172 if (requiredsize > PY_SSIZE_T_MAX - replen)
4173 goto overflow;
4174 requiredsize += replen;
4175 if (requiredsize > PY_SSIZE_T_MAX - (insize - newpos))
4176 goto overflow;
4177 requiredsize += insize - newpos;
Victor Stinner596a6c42011-11-09 00:02:18 +01004178 if (requiredsize > outsize) {
Benjamin Petersona1c1be42014-09-29 18:18:57 -04004179 if (outsize <= PY_SSIZE_T_MAX/2 && requiredsize < 2*outsize)
Victor Stinner596a6c42011-11-09 00:02:18 +01004180 requiredsize = 2*outsize;
4181 if (unicode_resize(output, requiredsize) < 0)
4182 goto onError;
4183 }
Victor Stinner1b487b42012-05-03 12:29:04 +02004184 if (unicode_widen(output, *outpos,
4185 PyUnicode_MAX_CHAR_VALUE(repunicode)) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004186 goto onError;
Victor Stinnerd3f08822012-05-29 12:57:52 +02004187 _PyUnicode_FastCopyCharacters(*output, *outpos, repunicode, 0, replen);
Victor Stinner596a6c42011-11-09 00:02:18 +01004188 *outpos += replen;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004189 }
Victor Stinner596a6c42011-11-09 00:02:18 +01004190 else {
4191 wchar_t *repwstr;
4192 Py_ssize_t repwlen;
4193 repwstr = PyUnicode_AsUnicodeAndSize(repunicode, &repwlen);
4194 if (repwstr == NULL)
4195 goto onError;
4196 /* need more space? (at least enough for what we
4197 have+the replacement+the rest of the string (starting
4198 at the new input position), so we won't have to check space
4199 when there are no errors in the rest of the string) */
Benjamin Petersona1c1be42014-09-29 18:18:57 -04004200 requiredsize = *outpos;
4201 if (requiredsize > PY_SSIZE_T_MAX - repwlen)
4202 goto overflow;
4203 requiredsize += repwlen;
4204 if (requiredsize > PY_SSIZE_T_MAX - (insize - newpos))
4205 goto overflow;
4206 requiredsize += insize - newpos;
Victor Stinner596a6c42011-11-09 00:02:18 +01004207 if (requiredsize > outsize) {
Benjamin Petersona1c1be42014-09-29 18:18:57 -04004208 if (outsize <= PY_SSIZE_T_MAX/2 && requiredsize < 2*outsize)
Victor Stinner596a6c42011-11-09 00:02:18 +01004209 requiredsize = 2*outsize;
4210 if (unicode_resize(output, requiredsize) < 0)
4211 goto onError;
4212 }
4213 wcsncpy(_PyUnicode_WSTR(*output) + *outpos, repwstr, repwlen);
4214 *outpos += repwlen;
4215 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004216 *endinpos = newpos;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004217 *inptr = *input + newpos;
Walter Dörwalde78178e2007-07-30 13:31:40 +00004218
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004219 /* we made it! */
4220 res = 0;
4221
Benjamin Peterson29060642009-01-31 22:14:21 +00004222 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004223 Py_XDECREF(restuple);
4224 return res;
Benjamin Petersona1c1be42014-09-29 18:18:57 -04004225
4226 overflow:
4227 PyErr_SetString(PyExc_OverflowError,
4228 "decoded result is too long for a Python string");
4229 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004230}
4231
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004232/* --- UTF-7 Codec -------------------------------------------------------- */
4233
Antoine Pitrou244651a2009-05-04 18:56:13 +00004234/* See RFC2152 for details. We encode conservatively and decode liberally. */
4235
4236/* Three simple macros defining base-64. */
4237
4238/* Is c a base-64 character? */
4239
4240#define IS_BASE64(c) \
4241 (((c) >= 'A' && (c) <= 'Z') || \
4242 ((c) >= 'a' && (c) <= 'z') || \
4243 ((c) >= '0' && (c) <= '9') || \
4244 (c) == '+' || (c) == '/')
4245
4246/* given that c is a base-64 character, what is its base-64 value? */
4247
4248#define FROM_BASE64(c) \
4249 (((c) >= 'A' && (c) <= 'Z') ? (c) - 'A' : \
4250 ((c) >= 'a' && (c) <= 'z') ? (c) - 'a' + 26 : \
4251 ((c) >= '0' && (c) <= '9') ? (c) - '0' + 52 : \
4252 (c) == '+' ? 62 : 63)
4253
4254/* What is the base-64 character of the bottom 6 bits of n? */
4255
4256#define TO_BASE64(n) \
4257 ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[(n) & 0x3f])
4258
4259/* DECODE_DIRECT: this byte encountered in a UTF-7 string should be
4260 * decoded as itself. We are permissive on decoding; the only ASCII
4261 * byte not decoding to itself is the + which begins a base64
4262 * string. */
4263
4264#define DECODE_DIRECT(c) \
4265 ((c) <= 127 && (c) != '+')
4266
4267/* The UTF-7 encoder treats ASCII characters differently according to
4268 * whether they are Set D, Set O, Whitespace, or special (i.e. none of
4269 * the above). See RFC2152. This array identifies these different
4270 * sets:
4271 * 0 : "Set D"
4272 * alphanumeric and '(),-./:?
4273 * 1 : "Set O"
4274 * !"#$%&*;<=>@[]^_`{|}
4275 * 2 : "whitespace"
4276 * ht nl cr sp
4277 * 3 : special (must be base64 encoded)
4278 * everything else (i.e. +\~ and non-printing codes 0-8 11-12 14-31 127)
4279 */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004280
Tim Petersced69f82003-09-16 20:30:58 +00004281static
Antoine Pitrou244651a2009-05-04 18:56:13 +00004282char utf7_category[128] = {
4283/* nul soh stx etx eot enq ack bel bs ht nl vt np cr so si */
4284 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, 3, 2, 3, 3,
4285/* dle dc1 dc2 dc3 dc4 nak syn etb can em sub esc fs gs rs us */
4286 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
4287/* sp ! " # $ % & ' ( ) * + , - . / */
4288 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0,
4289/* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */
4290 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0,
4291/* @ A B C D E F G H I J K L M N O */
4292 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4293/* P Q R S T U V W X Y Z [ \ ] ^ _ */
4294 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 1,
4295/* ` a b c d e f g h i j k l m n o */
4296 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4297/* p q r s t u v w x y z { | } ~ del */
4298 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 3, 3,
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004299};
4300
Antoine Pitrou244651a2009-05-04 18:56:13 +00004301/* ENCODE_DIRECT: this character should be encoded as itself. The
4302 * answer depends on whether we are encoding set O as itself, and also
4303 * on whether we are encoding whitespace as itself. RFC2152 makes it
4304 * clear that the answers to these questions vary between
4305 * applications, so this code needs to be flexible. */
Marc-André Lemburge115ec82005-10-19 22:33:31 +00004306
Antoine Pitrou244651a2009-05-04 18:56:13 +00004307#define ENCODE_DIRECT(c, directO, directWS) \
4308 ((c) < 128 && (c) > 0 && \
4309 ((utf7_category[(c)] == 0) || \
4310 (directWS && (utf7_category[(c)] == 2)) || \
4311 (directO && (utf7_category[(c)] == 1))))
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004312
Alexander Belopolsky40018472011-02-26 01:02:56 +00004313PyObject *
4314PyUnicode_DecodeUTF7(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03004315 Py_ssize_t size,
4316 const char *errors)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004317{
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004318 return PyUnicode_DecodeUTF7Stateful(s, size, errors, NULL);
4319}
4320
Antoine Pitrou244651a2009-05-04 18:56:13 +00004321/* The decoder. The only state we preserve is our read position,
4322 * i.e. how many characters we have consumed. So if we end in the
4323 * middle of a shift sequence we have to back off the read position
4324 * and the output to the beginning of the sequence, otherwise we lose
4325 * all the shift state (seen bits, number of bits seen, high
4326 * surrogate). */
4327
Alexander Belopolsky40018472011-02-26 01:02:56 +00004328PyObject *
4329PyUnicode_DecodeUTF7Stateful(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03004330 Py_ssize_t size,
4331 const char *errors,
4332 Py_ssize_t *consumed)
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004333{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004334 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004335 Py_ssize_t startinpos;
4336 Py_ssize_t endinpos;
4337 Py_ssize_t outpos;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004338 const char *e;
Victor Stinner7931d9a2011-11-04 00:22:48 +01004339 PyObject *unicode;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004340 const char *errmsg = "";
4341 int inShift = 0;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004342 Py_ssize_t shiftOutStart;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004343 unsigned int base64bits = 0;
4344 unsigned long base64buffer = 0;
Victor Stinner24729f32011-11-10 20:31:37 +01004345 Py_UCS4 surrogate = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004346 PyObject *errorHandler = NULL;
4347 PyObject *exc = NULL;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004348
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004349 /* Start off assuming it's all ASCII. Widen later as necessary. */
4350 unicode = PyUnicode_New(size, 127);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004351 if (!unicode)
4352 return NULL;
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004353 if (size == 0) {
4354 if (consumed)
4355 *consumed = 0;
Victor Stinner7931d9a2011-11-04 00:22:48 +01004356 return unicode;
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004357 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004358
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004359 shiftOutStart = outpos = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004360 e = s + size;
4361
4362 while (s < e) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004363 Py_UCS4 ch;
Benjamin Peterson29060642009-01-31 22:14:21 +00004364 restart:
Antoine Pitrou5ffd9e92008-07-25 18:05:24 +00004365 ch = (unsigned char) *s;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004366
Antoine Pitrou244651a2009-05-04 18:56:13 +00004367 if (inShift) { /* in a base-64 section */
4368 if (IS_BASE64(ch)) { /* consume a base-64 character */
4369 base64buffer = (base64buffer << 6) | FROM_BASE64(ch);
4370 base64bits += 6;
4371 s++;
4372 if (base64bits >= 16) {
4373 /* we have enough bits for a UTF-16 value */
Victor Stinner24729f32011-11-10 20:31:37 +01004374 Py_UCS4 outCh = (Py_UCS4)(base64buffer >> (base64bits-16));
Antoine Pitrou244651a2009-05-04 18:56:13 +00004375 base64bits -= 16;
4376 base64buffer &= (1 << base64bits) - 1; /* clear high bits */
Serhiy Storchaka35804e42013-10-19 20:38:19 +03004377 assert(outCh <= 0xffff);
Antoine Pitrou244651a2009-05-04 18:56:13 +00004378 if (surrogate) {
4379 /* expecting a second surrogate */
Victor Stinner551ac952011-11-29 22:58:13 +01004380 if (Py_UNICODE_IS_LOW_SURROGATE(outCh)) {
4381 Py_UCS4 ch2 = Py_UNICODE_JOIN_SURROGATES(surrogate, outCh);
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004382 if (unicode_putchar(&unicode, &outpos, ch2) < 0)
4383 goto onError;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004384 surrogate = 0;
Antoine Pitrou5418ee02011-11-15 01:42:21 +01004385 continue;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004386 }
4387 else {
Antoine Pitrou78edf752011-11-15 01:44:16 +01004388 if (unicode_putchar(&unicode, &outpos, surrogate) < 0)
4389 goto onError;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004390 surrogate = 0;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004391 }
4392 }
Victor Stinner551ac952011-11-29 22:58:13 +01004393 if (Py_UNICODE_IS_HIGH_SURROGATE(outCh)) {
Antoine Pitrou244651a2009-05-04 18:56:13 +00004394 /* first surrogate */
4395 surrogate = outCh;
4396 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004397 else {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004398 if (unicode_putchar(&unicode, &outpos, outCh) < 0)
4399 goto onError;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004400 }
4401 }
4402 }
4403 else { /* now leaving a base-64 section */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004404 inShift = 0;
4405 s++;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004406 if (surrogate) {
Antoine Pitrou78edf752011-11-15 01:44:16 +01004407 if (unicode_putchar(&unicode, &outpos, surrogate) < 0)
4408 goto onError;
Antoine Pitrou5418ee02011-11-15 01:42:21 +01004409 surrogate = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004410 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004411 if (base64bits > 0) { /* left-over bits */
4412 if (base64bits >= 6) {
4413 /* We've seen at least one base-64 character */
4414 errmsg = "partial character in shift sequence";
4415 goto utf7Error;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004416 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004417 else {
4418 /* Some bits remain; they should be zero */
4419 if (base64buffer != 0) {
4420 errmsg = "non-zero padding bits in shift sequence";
4421 goto utf7Error;
4422 }
4423 }
4424 }
4425 if (ch != '-') {
4426 /* '-' is absorbed; other terminating
4427 characters are preserved */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004428 if (unicode_putchar(&unicode, &outpos, ch) < 0)
4429 goto onError;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004430 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004431 }
4432 }
4433 else if ( ch == '+' ) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004434 startinpos = s-starts;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004435 s++; /* consume '+' */
4436 if (s < e && *s == '-') { /* '+-' encodes '+' */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004437 s++;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004438 if (unicode_putchar(&unicode, &outpos, '+') < 0)
4439 goto onError;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004440 }
4441 else { /* begin base64-encoded section */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004442 inShift = 1;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004443 shiftOutStart = outpos;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004444 base64bits = 0;
Serhiy Storchaka35804e42013-10-19 20:38:19 +03004445 base64buffer = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004446 }
4447 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004448 else if (DECODE_DIRECT(ch)) { /* character decodes as itself */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004449 if (unicode_putchar(&unicode, &outpos, ch) < 0)
4450 goto onError;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004451 s++;
4452 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004453 else {
4454 startinpos = s-starts;
4455 s++;
4456 errmsg = "unexpected special character";
4457 goto utf7Error;
4458 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004459 continue;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004460utf7Error:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004461 endinpos = s-starts;
4462 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00004463 errors, &errorHandler,
4464 "utf7", errmsg,
4465 &starts, &e, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004466 &unicode, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00004467 goto onError;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004468 }
4469
Antoine Pitrou244651a2009-05-04 18:56:13 +00004470 /* end of string */
4471
4472 if (inShift && !consumed) { /* in shift sequence, no more to follow */
4473 /* if we're in an inconsistent state, that's an error */
4474 if (surrogate ||
4475 (base64bits >= 6) ||
4476 (base64bits > 0 && base64buffer != 0)) {
Antoine Pitrou244651a2009-05-04 18:56:13 +00004477 endinpos = size;
4478 if (unicode_decode_call_errorhandler(
4479 errors, &errorHandler,
4480 "utf7", "unterminated shift sequence",
4481 &starts, &e, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004482 &unicode, &outpos))
Antoine Pitrou244651a2009-05-04 18:56:13 +00004483 goto onError;
4484 if (s < e)
4485 goto restart;
4486 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004487 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004488
4489 /* return state */
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004490 if (consumed) {
Antoine Pitrou244651a2009-05-04 18:56:13 +00004491 if (inShift) {
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004492 *consumed = startinpos;
Serhiy Storchaka016a3f32014-02-08 14:01:29 +02004493 if (outpos != shiftOutStart &&
4494 PyUnicode_MAX_CHAR_VALUE(unicode) > 127) {
4495 PyObject *result = PyUnicode_FromKindAndData(
4496 PyUnicode_KIND(unicode), PyUnicode_DATA(unicode),
4497 shiftOutStart);
4498 Py_DECREF(unicode);
4499 unicode = result;
4500 }
4501 outpos = shiftOutStart; /* back off output */
Antoine Pitrou244651a2009-05-04 18:56:13 +00004502 }
4503 else {
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004504 *consumed = s-starts;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004505 }
Christian Heimes5d14c2b2007-11-20 23:38:09 +00004506 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004507
Martin v. Löwise9b11c12011-11-08 17:35:34 +01004508 if (unicode_resize(&unicode, outpos) < 0)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004509 goto onError;
4510
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004511 Py_XDECREF(errorHandler);
4512 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01004513 return unicode_result(unicode);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004514
Benjamin Peterson29060642009-01-31 22:14:21 +00004515 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004516 Py_XDECREF(errorHandler);
4517 Py_XDECREF(exc);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004518 Py_DECREF(unicode);
4519 return NULL;
4520}
4521
4522
Alexander Belopolsky40018472011-02-26 01:02:56 +00004523PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004524_PyUnicode_EncodeUTF7(PyObject *str,
4525 int base64SetO,
4526 int base64WhiteSpace,
4527 const char *errors)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004528{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004529 int kind;
4530 void *data;
4531 Py_ssize_t len;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004532 PyObject *v;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004533 int inShift = 0;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004534 Py_ssize_t i;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004535 unsigned int base64bits = 0;
4536 unsigned long base64buffer = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004537 char * out;
4538 char * start;
4539
Benjamin Petersonbac79492012-01-14 13:34:47 -05004540 if (PyUnicode_READY(str) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004541 return NULL;
4542 kind = PyUnicode_KIND(str);
4543 data = PyUnicode_DATA(str);
4544 len = PyUnicode_GET_LENGTH(str);
4545
4546 if (len == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004547 return PyBytes_FromStringAndSize(NULL, 0);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004548
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004549 /* It might be possible to tighten this worst case */
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01004550 if (len > PY_SSIZE_T_MAX / 8)
Neal Norwitz3ce5d922008-08-24 07:08:55 +00004551 return PyErr_NoMemory();
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01004552 v = PyBytes_FromStringAndSize(NULL, len * 8);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004553 if (v == NULL)
4554 return NULL;
4555
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004556 start = out = PyBytes_AS_STRING(v);
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004557 for (i = 0; i < len; ++i) {
Victor Stinner0e368262011-11-10 20:12:49 +01004558 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004559
Antoine Pitrou244651a2009-05-04 18:56:13 +00004560 if (inShift) {
4561 if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) {
4562 /* shifting out */
4563 if (base64bits) { /* output remaining bits */
4564 *out++ = TO_BASE64(base64buffer << (6-base64bits));
4565 base64buffer = 0;
4566 base64bits = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004567 }
4568 inShift = 0;
Antoine Pitrou244651a2009-05-04 18:56:13 +00004569 /* Characters not in the BASE64 set implicitly unshift the sequence
4570 so no '-' is required, except if the character is itself a '-' */
4571 if (IS_BASE64(ch) || ch == '-') {
4572 *out++ = '-';
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004573 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004574 *out++ = (char) ch;
4575 }
4576 else {
4577 goto encode_char;
Tim Petersced69f82003-09-16 20:30:58 +00004578 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004579 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004580 else { /* not in a shift sequence */
4581 if (ch == '+') {
4582 *out++ = '+';
4583 *out++ = '-';
4584 }
4585 else if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) {
4586 *out++ = (char) ch;
4587 }
4588 else {
4589 *out++ = '+';
4590 inShift = 1;
4591 goto encode_char;
4592 }
4593 }
4594 continue;
4595encode_char:
Antoine Pitrou244651a2009-05-04 18:56:13 +00004596 if (ch >= 0x10000) {
Victor Stinner8faf8212011-12-08 22:14:11 +01004597 assert(ch <= MAX_UNICODE);
Victor Stinner0d3721d2011-11-22 03:27:53 +01004598
Antoine Pitrou244651a2009-05-04 18:56:13 +00004599 /* code first surrogate */
4600 base64bits += 16;
4601 base64buffer = (base64buffer << 16) | 0xd800 | ((ch-0x10000) >> 10);
4602 while (base64bits >= 6) {
4603 *out++ = TO_BASE64(base64buffer >> (base64bits-6));
4604 base64bits -= 6;
4605 }
4606 /* prepare second surrogate */
Victor Stinner551ac952011-11-29 22:58:13 +01004607 ch = Py_UNICODE_LOW_SURROGATE(ch);
Antoine Pitrou244651a2009-05-04 18:56:13 +00004608 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004609 base64bits += 16;
4610 base64buffer = (base64buffer << 16) | ch;
4611 while (base64bits >= 6) {
4612 *out++ = TO_BASE64(base64buffer >> (base64bits-6));
4613 base64bits -= 6;
4614 }
Hye-Shik Chang1bc09b72004-01-03 19:35:43 +00004615 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00004616 if (base64bits)
4617 *out++= TO_BASE64(base64buffer << (6-base64bits) );
4618 if (inShift)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004619 *out++ = '-';
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004620 if (_PyBytes_Resize(&v, out - start) < 0)
4621 return NULL;
4622 return v;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004623}
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004624PyObject *
4625PyUnicode_EncodeUTF7(const Py_UNICODE *s,
4626 Py_ssize_t size,
4627 int base64SetO,
4628 int base64WhiteSpace,
4629 const char *errors)
4630{
4631 PyObject *result;
4632 PyObject *tmp = PyUnicode_FromUnicode(s, size);
4633 if (tmp == NULL)
4634 return NULL;
Victor Stinner0e368262011-11-10 20:12:49 +01004635 result = _PyUnicode_EncodeUTF7(tmp, base64SetO,
Martin v. Löwis1db7c132011-11-10 18:24:32 +01004636 base64WhiteSpace, errors);
4637 Py_DECREF(tmp);
4638 return result;
4639}
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004640
Antoine Pitrou244651a2009-05-04 18:56:13 +00004641#undef IS_BASE64
4642#undef FROM_BASE64
4643#undef TO_BASE64
4644#undef DECODE_DIRECT
4645#undef ENCODE_DIRECT
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00004646
Guido van Rossumd57fd912000-03-10 22:53:23 +00004647/* --- UTF-8 Codec -------------------------------------------------------- */
4648
Alexander Belopolsky40018472011-02-26 01:02:56 +00004649PyObject *
4650PyUnicode_DecodeUTF8(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03004651 Py_ssize_t size,
4652 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004653{
Walter Dörwald69652032004-09-07 20:24:22 +00004654 return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL);
4655}
4656
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004657#include "stringlib/asciilib.h"
4658#include "stringlib/codecs.h"
4659#include "stringlib/undef.h"
4660
Antoine Pitrou0a3229d2011-11-21 20:39:13 +01004661#include "stringlib/ucs1lib.h"
4662#include "stringlib/codecs.h"
4663#include "stringlib/undef.h"
4664
4665#include "stringlib/ucs2lib.h"
4666#include "stringlib/codecs.h"
4667#include "stringlib/undef.h"
4668
4669#include "stringlib/ucs4lib.h"
4670#include "stringlib/codecs.h"
4671#include "stringlib/undef.h"
4672
Antoine Pitrouab868312009-01-10 15:40:25 +00004673/* Mask to quickly check whether a C 'long' contains a
4674 non-ASCII, UTF8-encoded char. */
4675#if (SIZEOF_LONG == 8)
Mark Dickinson01ac8b62012-07-07 14:08:48 +02004676# define ASCII_CHAR_MASK 0x8080808080808080UL
Antoine Pitrouab868312009-01-10 15:40:25 +00004677#elif (SIZEOF_LONG == 4)
Mark Dickinson01ac8b62012-07-07 14:08:48 +02004678# define ASCII_CHAR_MASK 0x80808080UL
Antoine Pitrouab868312009-01-10 15:40:25 +00004679#else
4680# error C 'long' size should be either 4 or 8!
4681#endif
4682
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004683static Py_ssize_t
4684ascii_decode(const char *start, const char *end, Py_UCS1 *dest)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004685{
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004686 const char *p = start;
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +02004687 const char *aligned_end = (const char *) _Py_ALIGN_DOWN(end, SIZEOF_LONG);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004688
Antoine Pitrou8b0e9842013-05-11 15:58:34 +02004689 /*
4690 * Issue #17237: m68k is a bit different from most architectures in
4691 * that objects do not use "natural alignment" - for example, int and
4692 * long are only aligned at 2-byte boundaries. Therefore the assert()
4693 * won't work; also, tests have shown that skipping the "optimised
4694 * version" will even speed up m68k.
4695 */
4696#if !defined(__m68k__)
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004697#if SIZEOF_LONG <= SIZEOF_VOID_P
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +02004698 assert(_Py_IS_ALIGNED(dest, SIZEOF_LONG));
4699 if (_Py_IS_ALIGNED(p, SIZEOF_LONG)) {
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004700 /* Fast path, see in STRINGLIB(utf8_decode) for
4701 an explanation. */
4702 /* Help register allocation */
4703 register const char *_p = p;
4704 register Py_UCS1 * q = dest;
4705 while (_p < aligned_end) {
4706 unsigned long value = *(const unsigned long *) _p;
4707 if (value & ASCII_CHAR_MASK)
Benjamin Peterson29060642009-01-31 22:14:21 +00004708 break;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004709 *((unsigned long *)q) = value;
4710 _p += SIZEOF_LONG;
4711 q += SIZEOF_LONG;
Benjamin Peterson14339b62009-01-31 16:36:08 +00004712 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004713 p = _p;
4714 while (p < end) {
4715 if ((unsigned char)*p & 0x80)
4716 break;
4717 *q++ = *p++;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004718 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004719 return p - start;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004720 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004721#endif
Antoine Pitrou8b0e9842013-05-11 15:58:34 +02004722#endif
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004723 while (p < end) {
4724 /* Fast path, see in STRINGLIB(utf8_decode) in stringlib/codecs.h
4725 for an explanation. */
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +02004726 if (_Py_IS_ALIGNED(p, SIZEOF_LONG)) {
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004727 /* Help register allocation */
4728 register const char *_p = p;
4729 while (_p < aligned_end) {
4730 unsigned long value = *(unsigned long *) _p;
4731 if (value & ASCII_CHAR_MASK)
4732 break;
4733 _p += SIZEOF_LONG;
4734 }
4735 p = _p;
4736 if (_p == end)
4737 break;
4738 }
4739 if ((unsigned char)*p & 0x80)
4740 break;
4741 ++p;
4742 }
4743 memcpy(dest, start, p - start);
4744 return p - start;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004745}
Antoine Pitrouab868312009-01-10 15:40:25 +00004746
Victor Stinner785938e2011-12-11 20:09:03 +01004747PyObject *
4748PyUnicode_DecodeUTF8Stateful(const char *s,
4749 Py_ssize_t size,
4750 const char *errors,
4751 Py_ssize_t *consumed)
4752{
Victor Stinner785938e2011-12-11 20:09:03 +01004753 PyObject *unicode;
Victor Stinner785938e2011-12-11 20:09:03 +01004754 const char *starts = s;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004755 const char *end = s + size;
4756 Py_ssize_t outpos;
4757
4758 Py_ssize_t startinpos;
4759 Py_ssize_t endinpos;
4760 const char *errmsg = "";
4761 PyObject *errorHandler = NULL;
4762 PyObject *exc = NULL;
Victor Stinner785938e2011-12-11 20:09:03 +01004763
4764 if (size == 0) {
4765 if (consumed)
4766 *consumed = 0;
Serhiy Storchaka678db842013-01-26 12:16:36 +02004767 _Py_RETURN_UNICODE_EMPTY();
Victor Stinner785938e2011-12-11 20:09:03 +01004768 }
4769
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004770 /* ASCII is equivalent to the first 128 ordinals in Unicode. */
4771 if (size == 1 && (unsigned char)s[0] < 128) {
Victor Stinner785938e2011-12-11 20:09:03 +01004772 if (consumed)
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004773 *consumed = 1;
4774 return get_latin1_char((unsigned char)s[0]);
Victor Stinner785938e2011-12-11 20:09:03 +01004775 }
4776
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004777 unicode = PyUnicode_New(size, 127);
Victor Stinner785938e2011-12-11 20:09:03 +01004778 if (!unicode)
4779 return NULL;
Victor Stinner785938e2011-12-11 20:09:03 +01004780
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004781 outpos = ascii_decode(s, end, PyUnicode_1BYTE_DATA(unicode));
4782 s += outpos;
4783 while (s < end) {
4784 Py_UCS4 ch;
4785 int kind = PyUnicode_KIND(unicode);
4786 if (kind == PyUnicode_1BYTE_KIND) {
4787 if (PyUnicode_IS_ASCII(unicode))
4788 ch = asciilib_utf8_decode(&s, end,
4789 PyUnicode_1BYTE_DATA(unicode), &outpos);
4790 else
4791 ch = ucs1lib_utf8_decode(&s, end,
4792 PyUnicode_1BYTE_DATA(unicode), &outpos);
4793 } else if (kind == PyUnicode_2BYTE_KIND) {
4794 ch = ucs2lib_utf8_decode(&s, end,
4795 PyUnicode_2BYTE_DATA(unicode), &outpos);
4796 } else {
4797 assert(kind == PyUnicode_4BYTE_KIND);
4798 ch = ucs4lib_utf8_decode(&s, end,
4799 PyUnicode_4BYTE_DATA(unicode), &outpos);
4800 }
4801
4802 switch (ch) {
4803 case 0:
4804 if (s == end || consumed)
4805 goto End;
4806 errmsg = "unexpected end of data";
4807 startinpos = s - starts;
Ezio Melottif7ed5d12012-11-04 23:21:38 +02004808 endinpos = end - starts;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004809 break;
4810 case 1:
4811 errmsg = "invalid start byte";
4812 startinpos = s - starts;
4813 endinpos = startinpos + 1;
4814 break;
4815 case 2:
Ezio Melottif7ed5d12012-11-04 23:21:38 +02004816 case 3:
4817 case 4:
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004818 errmsg = "invalid continuation byte";
4819 startinpos = s - starts;
Ezio Melottif7ed5d12012-11-04 23:21:38 +02004820 endinpos = startinpos + ch - 1;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004821 break;
4822 default:
4823 if (unicode_putchar(&unicode, &outpos, ch) < 0)
4824 goto onError;
4825 continue;
4826 }
4827
4828 if (unicode_decode_call_errorhandler(
4829 errors, &errorHandler,
4830 "utf-8", errmsg,
4831 &starts, &end, &startinpos, &endinpos, &exc, &s,
4832 &unicode, &outpos))
4833 goto onError;
Victor Stinner785938e2011-12-11 20:09:03 +01004834 }
4835
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004836End:
4837 if (unicode_resize(&unicode, outpos) < 0)
4838 goto onError;
4839
4840 if (consumed)
4841 *consumed = s - starts;
4842
4843 Py_XDECREF(errorHandler);
4844 Py_XDECREF(exc);
4845 assert(_PyUnicode_CheckConsistency(unicode, 1));
4846 return unicode;
4847
4848onError:
4849 Py_XDECREF(errorHandler);
4850 Py_XDECREF(exc);
4851 Py_XDECREF(unicode);
4852 return NULL;
Victor Stinner785938e2011-12-11 20:09:03 +01004853}
4854
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004855#ifdef __APPLE__
4856
4857/* Simplified UTF-8 decoder using surrogateescape error handler,
Victor Stinner27b1ca22012-12-03 12:47:59 +01004858 used to decode the command line arguments on Mac OS X.
4859
4860 Return a pointer to a newly allocated wide character string (use
4861 PyMem_Free() to free the memory), or NULL on memory allocation error. */
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004862
4863wchar_t*
4864_Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size)
4865{
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004866 const char *e;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004867 wchar_t *unicode;
4868 Py_ssize_t outpos;
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004869
4870 /* Note: size will always be longer than the resulting Unicode
4871 character count */
Victor Stinner27b1ca22012-12-03 12:47:59 +01004872 if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1))
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004873 return NULL;
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004874 unicode = PyMem_Malloc((size + 1) * sizeof(wchar_t));
4875 if (!unicode)
4876 return NULL;
4877
4878 /* Unpack UTF-8 encoded data */
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004879 e = s + size;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004880 outpos = 0;
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004881 while (s < e) {
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004882 Py_UCS4 ch;
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004883#if SIZEOF_WCHAR_T == 4
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004884 ch = ucs4lib_utf8_decode(&s, e, (Py_UCS4 *)unicode, &outpos);
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004885#else
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004886 ch = ucs2lib_utf8_decode(&s, e, (Py_UCS2 *)unicode, &outpos);
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004887#endif
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004888 if (ch > 0xFF) {
4889#if SIZEOF_WCHAR_T == 4
4890 assert(0);
4891#else
4892 assert(Py_UNICODE_IS_SURROGATE(ch));
4893 /* compute and append the two surrogates: */
4894 unicode[outpos++] = (wchar_t)Py_UNICODE_HIGH_SURROGATE(ch);
4895 unicode[outpos++] = (wchar_t)Py_UNICODE_LOW_SURROGATE(ch);
4896#endif
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004897 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004898 else {
4899 if (!ch && s == e)
4900 break;
4901 /* surrogateescape */
4902 unicode[outpos++] = 0xDC00 + (unsigned char)*s++;
4903 }
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004904 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02004905 unicode[outpos] = L'\0';
Victor Stinnerf933e1a2010-10-20 22:58:25 +00004906 return unicode;
4907}
4908
4909#endif /* __APPLE__ */
Antoine Pitrouab868312009-01-10 15:40:25 +00004910
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004911/* Primary internal function which creates utf8 encoded bytes objects.
4912
4913 Allocation strategy: if the string is short, convert into a stack buffer
Tim Peters602f7402002-04-27 18:03:26 +00004914 and allocate exactly as much space needed at the end. Else allocate the
4915 maximum possible needed (4 result bytes per Unicode character), and return
4916 the excess memory at the end.
Martin v. Löwis2a7ff352002-04-21 09:59:45 +00004917*/
Tim Peters7e3d9612002-04-21 03:26:37 +00004918PyObject *
Victor Stinner7931d9a2011-11-04 00:22:48 +01004919_PyUnicode_AsUTF8String(PyObject *unicode, const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004920{
Victor Stinner6099a032011-12-18 14:22:26 +01004921 enum PyUnicode_Kind kind;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004922 void *data;
4923 Py_ssize_t size;
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +00004924
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004925 if (!PyUnicode_Check(unicode)) {
4926 PyErr_BadArgument();
4927 return NULL;
4928 }
4929
4930 if (PyUnicode_READY(unicode) == -1)
4931 return NULL;
4932
Victor Stinnere90fe6a2011-10-01 16:48:13 +02004933 if (PyUnicode_UTF8(unicode))
4934 return PyBytes_FromStringAndSize(PyUnicode_UTF8(unicode),
4935 PyUnicode_UTF8_LENGTH(unicode));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004936
4937 kind = PyUnicode_KIND(unicode);
4938 data = PyUnicode_DATA(unicode);
4939 size = PyUnicode_GET_LENGTH(unicode);
4940
Benjamin Petersonead6b532011-12-20 17:23:42 -06004941 switch (kind) {
Victor Stinner6099a032011-12-18 14:22:26 +01004942 default:
4943 assert(0);
4944 case PyUnicode_1BYTE_KIND:
4945 /* the string cannot be ASCII, or PyUnicode_UTF8() would be set */
4946 assert(!PyUnicode_IS_ASCII(unicode));
4947 return ucs1lib_utf8_encoder(unicode, data, size, errors);
4948 case PyUnicode_2BYTE_KIND:
4949 return ucs2lib_utf8_encoder(unicode, data, size, errors);
4950 case PyUnicode_4BYTE_KIND:
4951 return ucs4lib_utf8_encoder(unicode, data, size, errors);
Tim Peters602f7402002-04-27 18:03:26 +00004952 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00004953}
4954
Alexander Belopolsky40018472011-02-26 01:02:56 +00004955PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004956PyUnicode_EncodeUTF8(const Py_UNICODE *s,
4957 Py_ssize_t size,
4958 const char *errors)
4959{
4960 PyObject *v, *unicode;
4961
4962 unicode = PyUnicode_FromUnicode(s, size);
4963 if (unicode == NULL)
4964 return NULL;
4965 v = _PyUnicode_AsUTF8String(unicode, errors);
4966 Py_DECREF(unicode);
4967 return v;
4968}
4969
4970PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +00004971PyUnicode_AsUTF8String(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004972{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004973 return _PyUnicode_AsUTF8String(unicode, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004974}
4975
Walter Dörwald41980ca2007-08-16 21:55:45 +00004976/* --- UTF-32 Codec ------------------------------------------------------- */
4977
4978PyObject *
4979PyUnicode_DecodeUTF32(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004980 Py_ssize_t size,
4981 const char *errors,
4982 int *byteorder)
Walter Dörwald41980ca2007-08-16 21:55:45 +00004983{
4984 return PyUnicode_DecodeUTF32Stateful(s, size, errors, byteorder, NULL);
4985}
4986
4987PyObject *
4988PyUnicode_DecodeUTF32Stateful(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004989 Py_ssize_t size,
4990 const char *errors,
4991 int *byteorder,
4992 Py_ssize_t *consumed)
Walter Dörwald41980ca2007-08-16 21:55:45 +00004993{
4994 const char *starts = s;
4995 Py_ssize_t startinpos;
4996 Py_ssize_t endinpos;
4997 Py_ssize_t outpos;
Victor Stinner7931d9a2011-11-04 00:22:48 +01004998 PyObject *unicode;
Mark Dickinson7db923c2010-06-12 09:10:14 +00004999 const unsigned char *q, *e;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005000 int bo = 0; /* assume native ordering by default */
5001 const char *errmsg = "";
Walter Dörwald41980ca2007-08-16 21:55:45 +00005002 /* Offsets from q for retrieving bytes in the right order. */
5003#ifdef BYTEORDER_IS_LITTLE_ENDIAN
5004 int iorder[] = {0, 1, 2, 3};
5005#else
5006 int iorder[] = {3, 2, 1, 0};
5007#endif
5008 PyObject *errorHandler = NULL;
5009 PyObject *exc = NULL;
Victor Stinner313a1202010-06-11 23:56:51 +00005010
Walter Dörwald41980ca2007-08-16 21:55:45 +00005011 q = (unsigned char *)s;
5012 e = q + size;
5013
5014 if (byteorder)
5015 bo = *byteorder;
5016
5017 /* Check for BOM marks (U+FEFF) in the input and adjust current
5018 byte order setting accordingly. In native mode, the leading BOM
5019 mark is skipped, in all other modes, it is copied to the output
5020 stream as-is (giving a ZWNBSP character). */
5021 if (bo == 0) {
5022 if (size >= 4) {
5023 const Py_UCS4 bom = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) |
Benjamin Peterson29060642009-01-31 22:14:21 +00005024 (q[iorder[1]] << 8) | q[iorder[0]];
Walter Dörwald41980ca2007-08-16 21:55:45 +00005025#ifdef BYTEORDER_IS_LITTLE_ENDIAN
Benjamin Peterson29060642009-01-31 22:14:21 +00005026 if (bom == 0x0000FEFF) {
5027 q += 4;
5028 bo = -1;
5029 }
5030 else if (bom == 0xFFFE0000) {
5031 q += 4;
5032 bo = 1;
5033 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00005034#else
Benjamin Peterson29060642009-01-31 22:14:21 +00005035 if (bom == 0x0000FEFF) {
5036 q += 4;
5037 bo = 1;
5038 }
5039 else if (bom == 0xFFFE0000) {
5040 q += 4;
5041 bo = -1;
5042 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00005043#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00005044 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00005045 }
5046
5047 if (bo == -1) {
5048 /* force LE */
5049 iorder[0] = 0;
5050 iorder[1] = 1;
5051 iorder[2] = 2;
5052 iorder[3] = 3;
5053 }
5054 else if (bo == 1) {
5055 /* force BE */
5056 iorder[0] = 3;
5057 iorder[1] = 2;
5058 iorder[2] = 1;
5059 iorder[3] = 0;
5060 }
5061
Antoine Pitroucc0cfd32010-06-11 21:46:32 +00005062 /* This might be one to much, because of a BOM */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005063 unicode = PyUnicode_New((size+3)/4, 127);
Antoine Pitroucc0cfd32010-06-11 21:46:32 +00005064 if (!unicode)
5065 return NULL;
5066 if (size == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01005067 return unicode;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005068 outpos = 0;
Antoine Pitroucc0cfd32010-06-11 21:46:32 +00005069
Walter Dörwald41980ca2007-08-16 21:55:45 +00005070 while (q < e) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005071 Py_UCS4 ch;
5072 /* remaining bytes at the end? (size should be divisible by 4) */
5073 if (e-q<4) {
5074 if (consumed)
5075 break;
5076 errmsg = "truncated data";
5077 startinpos = ((const char *)q)-starts;
5078 endinpos = ((const char *)e)-starts;
5079 goto utf32Error;
5080 /* The remaining input chars are ignored if the callback
5081 chooses to skip the input */
5082 }
5083 ch = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) |
5084 (q[iorder[1]] << 8) | q[iorder[0]];
Walter Dörwald41980ca2007-08-16 21:55:45 +00005085
Benjamin Peterson29060642009-01-31 22:14:21 +00005086 if (ch >= 0x110000)
5087 {
5088 errmsg = "codepoint not in range(0x110000)";
5089 startinpos = ((const char *)q)-starts;
5090 endinpos = startinpos+4;
5091 goto utf32Error;
5092 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005093 if (unicode_putchar(&unicode, &outpos, ch) < 0)
5094 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00005095 q += 4;
5096 continue;
5097 utf32Error:
Benjamin Peterson29060642009-01-31 22:14:21 +00005098 if (unicode_decode_call_errorhandler(
5099 errors, &errorHandler,
5100 "utf32", errmsg,
5101 &starts, (const char **)&e, &startinpos, &endinpos, &exc, (const char **)&q,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005102 &unicode, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00005103 goto onError;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005104 }
5105
5106 if (byteorder)
5107 *byteorder = bo;
5108
5109 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00005110 *consumed = (const char *)q-starts;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005111
5112 /* Adjust length */
Victor Stinner16e6a802011-12-12 13:24:15 +01005113 if (unicode_resize(&unicode, outpos) < 0)
Walter Dörwald41980ca2007-08-16 21:55:45 +00005114 goto onError;
5115
5116 Py_XDECREF(errorHandler);
5117 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01005118 return unicode_result(unicode);
Walter Dörwald41980ca2007-08-16 21:55:45 +00005119
Benjamin Peterson29060642009-01-31 22:14:21 +00005120 onError:
Walter Dörwald41980ca2007-08-16 21:55:45 +00005121 Py_DECREF(unicode);
5122 Py_XDECREF(errorHandler);
5123 Py_XDECREF(exc);
5124 return NULL;
5125}
5126
5127PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005128_PyUnicode_EncodeUTF32(PyObject *str,
5129 const char *errors,
5130 int byteorder)
Walter Dörwald41980ca2007-08-16 21:55:45 +00005131{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005132 int kind;
5133 void *data;
5134 Py_ssize_t len;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005135 PyObject *v;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005136 unsigned char *p;
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01005137 Py_ssize_t nsize, i;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005138 /* Offsets from p for storing byte pairs in the right order. */
5139#ifdef BYTEORDER_IS_LITTLE_ENDIAN
5140 int iorder[] = {0, 1, 2, 3};
5141#else
5142 int iorder[] = {3, 2, 1, 0};
5143#endif
5144
Benjamin Peterson29060642009-01-31 22:14:21 +00005145#define STORECHAR(CH) \
5146 do { \
5147 p[iorder[3]] = ((CH) >> 24) & 0xff; \
5148 p[iorder[2]] = ((CH) >> 16) & 0xff; \
5149 p[iorder[1]] = ((CH) >> 8) & 0xff; \
5150 p[iorder[0]] = (CH) & 0xff; \
5151 p += 4; \
Walter Dörwald41980ca2007-08-16 21:55:45 +00005152 } while(0)
5153
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005154 if (!PyUnicode_Check(str)) {
5155 PyErr_BadArgument();
5156 return NULL;
5157 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05005158 if (PyUnicode_READY(str) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005159 return NULL;
5160 kind = PyUnicode_KIND(str);
5161 data = PyUnicode_DATA(str);
5162 len = PyUnicode_GET_LENGTH(str);
5163
5164 nsize = len + (byteorder == 0);
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01005165 if (nsize > PY_SSIZE_T_MAX / 4)
Benjamin Peterson29060642009-01-31 22:14:21 +00005166 return PyErr_NoMemory();
Mark Dickinsonc04ddff2012-10-06 18:04:49 +01005167 v = PyBytes_FromStringAndSize(NULL, nsize * 4);
Walter Dörwald41980ca2007-08-16 21:55:45 +00005168 if (v == NULL)
5169 return NULL;
5170
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005171 p = (unsigned char *)PyBytes_AS_STRING(v);
Walter Dörwald41980ca2007-08-16 21:55:45 +00005172 if (byteorder == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005173 STORECHAR(0xFEFF);
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005174 if (len == 0)
Guido van Rossum98297ee2007-11-06 21:34:58 +00005175 goto done;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005176
5177 if (byteorder == -1) {
5178 /* force LE */
5179 iorder[0] = 0;
5180 iorder[1] = 1;
5181 iorder[2] = 2;
5182 iorder[3] = 3;
5183 }
5184 else if (byteorder == 1) {
5185 /* force BE */
5186 iorder[0] = 3;
5187 iorder[1] = 2;
5188 iorder[2] = 1;
5189 iorder[3] = 0;
5190 }
5191
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005192 for (i = 0; i < len; i++)
5193 STORECHAR(PyUnicode_READ(kind, data, i));
Guido van Rossum98297ee2007-11-06 21:34:58 +00005194
5195 done:
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005196 return v;
Walter Dörwald41980ca2007-08-16 21:55:45 +00005197#undef STORECHAR
5198}
5199
Alexander Belopolsky40018472011-02-26 01:02:56 +00005200PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005201PyUnicode_EncodeUTF32(const Py_UNICODE *s,
5202 Py_ssize_t size,
5203 const char *errors,
5204 int byteorder)
5205{
5206 PyObject *result;
5207 PyObject *tmp = PyUnicode_FromUnicode(s, size);
5208 if (tmp == NULL)
5209 return NULL;
5210 result = _PyUnicode_EncodeUTF32(tmp, errors, byteorder);
5211 Py_DECREF(tmp);
5212 return result;
5213}
5214
5215PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +00005216PyUnicode_AsUTF32String(PyObject *unicode)
Walter Dörwald41980ca2007-08-16 21:55:45 +00005217{
Victor Stinnerb960b342011-11-20 19:12:52 +01005218 return _PyUnicode_EncodeUTF32(unicode, NULL, 0);
Walter Dörwald41980ca2007-08-16 21:55:45 +00005219}
5220
Guido van Rossumd57fd912000-03-10 22:53:23 +00005221/* --- UTF-16 Codec ------------------------------------------------------- */
5222
Tim Peters772747b2001-08-09 22:21:55 +00005223PyObject *
5224PyUnicode_DecodeUTF16(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00005225 Py_ssize_t size,
5226 const char *errors,
5227 int *byteorder)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005228{
Walter Dörwald69652032004-09-07 20:24:22 +00005229 return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL);
5230}
5231
5232PyObject *
5233PyUnicode_DecodeUTF16Stateful(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00005234 Py_ssize_t size,
5235 const char *errors,
5236 int *byteorder,
5237 Py_ssize_t *consumed)
Walter Dörwald69652032004-09-07 20:24:22 +00005238{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005239 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005240 Py_ssize_t startinpos;
5241 Py_ssize_t endinpos;
5242 Py_ssize_t outpos;
Victor Stinner7931d9a2011-11-04 00:22:48 +01005243 PyObject *unicode;
Antoine Pitrou63065d72012-05-15 23:48:04 +02005244 const unsigned char *q, *e;
Tim Peters772747b2001-08-09 22:21:55 +00005245 int bo = 0; /* assume native ordering by default */
Antoine Pitrou63065d72012-05-15 23:48:04 +02005246 int native_ordering;
Marc-André Lemburg9542f482000-07-17 18:23:13 +00005247 const char *errmsg = "";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005248 PyObject *errorHandler = NULL;
5249 PyObject *exc = NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005250
Tim Peters772747b2001-08-09 22:21:55 +00005251 q = (unsigned char *)s;
Antoine Pitrou63065d72012-05-15 23:48:04 +02005252 e = q + size;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005253
5254 if (byteorder)
Tim Peters772747b2001-08-09 22:21:55 +00005255 bo = *byteorder;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005256
Marc-André Lemburg489b56e2001-05-21 20:30:15 +00005257 /* Check for BOM marks (U+FEFF) in the input and adjust current
5258 byte order setting accordingly. In native mode, the leading BOM
5259 mark is skipped, in all other modes, it is copied to the output
5260 stream as-is (giving a ZWNBSP character). */
Antoine Pitrou63065d72012-05-15 23:48:04 +02005261 if (bo == 0 && size >= 2) {
5262 const Py_UCS4 bom = (q[1] << 8) | q[0];
5263 if (bom == 0xFEFF) {
5264 q += 2;
5265 bo = -1;
Benjamin Peterson29060642009-01-31 22:14:21 +00005266 }
Antoine Pitrou63065d72012-05-15 23:48:04 +02005267 else if (bom == 0xFFFE) {
5268 q += 2;
5269 bo = 1;
5270 }
5271 if (byteorder)
5272 *byteorder = bo;
Marc-André Lemburg489b56e2001-05-21 20:30:15 +00005273 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00005274
Antoine Pitrou63065d72012-05-15 23:48:04 +02005275 if (q == e) {
5276 if (consumed)
5277 *consumed = size;
Serhiy Storchaka678db842013-01-26 12:16:36 +02005278 _Py_RETURN_UNICODE_EMPTY();
Tim Peters772747b2001-08-09 22:21:55 +00005279 }
Antoine Pitrou63065d72012-05-15 23:48:04 +02005280
Antoine Pitrouab868312009-01-10 15:40:25 +00005281#ifdef BYTEORDER_IS_LITTLE_ENDIAN
Antoine Pitrou63065d72012-05-15 23:48:04 +02005282 native_ordering = bo <= 0;
Antoine Pitrouab868312009-01-10 15:40:25 +00005283#else
Antoine Pitrou63065d72012-05-15 23:48:04 +02005284 native_ordering = bo >= 0;
Antoine Pitrouab868312009-01-10 15:40:25 +00005285#endif
Tim Peters772747b2001-08-09 22:21:55 +00005286
Antoine Pitrou63065d72012-05-15 23:48:04 +02005287 /* Note: size will always be longer than the resulting Unicode
5288 character count */
5289 unicode = PyUnicode_New((e - q + 1) / 2, 127);
5290 if (!unicode)
5291 return NULL;
5292
5293 outpos = 0;
5294 while (1) {
5295 Py_UCS4 ch = 0;
5296 if (e - q >= 2) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005297 int kind = PyUnicode_KIND(unicode);
Antoine Pitrou63065d72012-05-15 23:48:04 +02005298 if (kind == PyUnicode_1BYTE_KIND) {
5299 if (PyUnicode_IS_ASCII(unicode))
5300 ch = asciilib_utf16_decode(&q, e,
5301 PyUnicode_1BYTE_DATA(unicode), &outpos,
5302 native_ordering);
5303 else
5304 ch = ucs1lib_utf16_decode(&q, e,
5305 PyUnicode_1BYTE_DATA(unicode), &outpos,
5306 native_ordering);
5307 } else if (kind == PyUnicode_2BYTE_KIND) {
5308 ch = ucs2lib_utf16_decode(&q, e,
5309 PyUnicode_2BYTE_DATA(unicode), &outpos,
5310 native_ordering);
5311 } else {
5312 assert(kind == PyUnicode_4BYTE_KIND);
5313 ch = ucs4lib_utf16_decode(&q, e,
5314 PyUnicode_4BYTE_DATA(unicode), &outpos,
5315 native_ordering);
Antoine Pitrouab868312009-01-10 15:40:25 +00005316 }
Antoine Pitrouab868312009-01-10 15:40:25 +00005317 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005318
Antoine Pitrou63065d72012-05-15 23:48:04 +02005319 switch (ch)
5320 {
5321 case 0:
5322 /* remaining byte at the end? (size should be even) */
5323 if (q == e || consumed)
5324 goto End;
5325 errmsg = "truncated data";
5326 startinpos = ((const char *)q) - starts;
5327 endinpos = ((const char *)e) - starts;
5328 break;
5329 /* The remaining input chars are ignored if the callback
5330 chooses to skip the input */
5331 case 1:
Serhiy Storchaka48e188e2013-01-08 23:14:24 +02005332 q -= 2;
5333 if (consumed)
Serhiy Storchakaae3b32a2013-01-08 23:40:52 +02005334 goto End;
Antoine Pitrou63065d72012-05-15 23:48:04 +02005335 errmsg = "unexpected end of data";
Serhiy Storchaka48e188e2013-01-08 23:14:24 +02005336 startinpos = ((const char *)q) - starts;
Antoine Pitrou63065d72012-05-15 23:48:04 +02005337 endinpos = ((const char *)e) - starts;
5338 break;
5339 case 2:
5340 errmsg = "illegal encoding";
5341 startinpos = ((const char *)q) - 2 - starts;
5342 endinpos = startinpos + 2;
5343 break;
5344 case 3:
5345 errmsg = "illegal UTF-16 surrogate";
5346 startinpos = ((const char *)q) - 4 - starts;
5347 endinpos = startinpos + 2;
5348 break;
5349 default:
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005350 if (unicode_putchar(&unicode, &outpos, ch) < 0)
5351 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00005352 continue;
5353 }
5354
Benjamin Peterson29060642009-01-31 22:14:21 +00005355 if (unicode_decode_call_errorhandler(
Antoine Pitrouab868312009-01-10 15:40:25 +00005356 errors,
5357 &errorHandler,
5358 "utf16", errmsg,
5359 &starts,
5360 (const char **)&e,
5361 &startinpos,
5362 &endinpos,
5363 &exc,
5364 (const char **)&q,
5365 &unicode,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005366 &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00005367 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005368 }
5369
Antoine Pitrou63065d72012-05-15 23:48:04 +02005370End:
Walter Dörwald69652032004-09-07 20:24:22 +00005371 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00005372 *consumed = (const char *)q-starts;
Walter Dörwald69652032004-09-07 20:24:22 +00005373
Guido van Rossumd57fd912000-03-10 22:53:23 +00005374 /* Adjust length */
Victor Stinner16e6a802011-12-12 13:24:15 +01005375 if (unicode_resize(&unicode, outpos) < 0)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005376 goto onError;
5377
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005378 Py_XDECREF(errorHandler);
5379 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01005380 return unicode_result(unicode);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005381
Benjamin Peterson29060642009-01-31 22:14:21 +00005382 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00005383 Py_DECREF(unicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005384 Py_XDECREF(errorHandler);
5385 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005386 return NULL;
5387}
5388
Tim Peters772747b2001-08-09 22:21:55 +00005389PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005390_PyUnicode_EncodeUTF16(PyObject *str,
5391 const char *errors,
5392 int byteorder)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005393{
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005394 enum PyUnicode_Kind kind;
5395 const void *data;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005396 Py_ssize_t len;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005397 PyObject *v;
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005398 unsigned short *out;
5399 Py_ssize_t bytesize;
5400 Py_ssize_t pairs;
5401#ifdef WORDS_BIGENDIAN
5402 int native_ordering = byteorder >= 0;
Tim Peters772747b2001-08-09 22:21:55 +00005403#else
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005404 int native_ordering = byteorder <= 0;
Tim Peters772747b2001-08-09 22:21:55 +00005405#endif
5406
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005407 if (!PyUnicode_Check(str)) {
5408 PyErr_BadArgument();
5409 return NULL;
5410 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05005411 if (PyUnicode_READY(str) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005412 return NULL;
5413 kind = PyUnicode_KIND(str);
5414 data = PyUnicode_DATA(str);
5415 len = PyUnicode_GET_LENGTH(str);
Victor Stinner0e368262011-11-10 20:12:49 +01005416
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005417 pairs = 0;
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005418 if (kind == PyUnicode_4BYTE_KIND) {
5419 const Py_UCS4 *in = (const Py_UCS4 *)data;
5420 const Py_UCS4 *end = in + len;
5421 while (in < end)
5422 if (*in++ >= 0x10000)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005423 pairs++;
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005424 }
5425 if (len > PY_SSIZE_T_MAX / 2 - pairs - (byteorder == 0))
Benjamin Peterson29060642009-01-31 22:14:21 +00005426 return PyErr_NoMemory();
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005427 bytesize = (len + pairs + (byteorder == 0)) * 2;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005428 v = PyBytes_FromStringAndSize(NULL, bytesize);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005429 if (v == NULL)
5430 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005431
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005432 /* output buffer is 2-bytes aligned */
Antoine Pitrouca8aa4a2012-09-20 20:56:47 +02005433 assert(_Py_IS_ALIGNED(PyBytes_AS_STRING(v), 2));
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005434 out = (unsigned short *)PyBytes_AS_STRING(v);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005435 if (byteorder == 0)
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005436 *out++ = 0xFEFF;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005437 if (len == 0)
Guido van Rossum98297ee2007-11-06 21:34:58 +00005438 goto done;
Tim Peters772747b2001-08-09 22:21:55 +00005439
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005440 switch (kind) {
5441 case PyUnicode_1BYTE_KIND: {
5442 ucs1lib_utf16_encode(out, (const Py_UCS1 *)data, len, native_ordering);
5443 break;
Tim Peters772747b2001-08-09 22:21:55 +00005444 }
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005445 case PyUnicode_2BYTE_KIND: {
5446 ucs2lib_utf16_encode(out, (const Py_UCS2 *)data, len, native_ordering);
5447 break;
Tim Peters772747b2001-08-09 22:21:55 +00005448 }
Antoine Pitrou27f6a3b2012-06-15 22:15:23 +02005449 case PyUnicode_4BYTE_KIND: {
5450 ucs4lib_utf16_encode(out, (const Py_UCS4 *)data, len, native_ordering);
5451 break;
5452 }
5453 default:
5454 assert(0);
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00005455 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00005456
5457 done:
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005458 return v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005459}
5460
Alexander Belopolsky40018472011-02-26 01:02:56 +00005461PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005462PyUnicode_EncodeUTF16(const Py_UNICODE *s,
5463 Py_ssize_t size,
5464 const char *errors,
5465 int byteorder)
5466{
5467 PyObject *result;
5468 PyObject *tmp = PyUnicode_FromUnicode(s, size);
5469 if (tmp == NULL)
5470 return NULL;
5471 result = _PyUnicode_EncodeUTF16(tmp, errors, byteorder);
5472 Py_DECREF(tmp);
5473 return result;
5474}
5475
5476PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +00005477PyUnicode_AsUTF16String(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005478{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005479 return _PyUnicode_EncodeUTF16(unicode, NULL, 0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005480}
5481
5482/* --- Unicode Escape Codec ----------------------------------------------- */
5483
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005484/* Helper function for PyUnicode_DecodeUnicodeEscape, determines
5485 if all the escapes in the string make it still a valid ASCII string.
5486 Returns -1 if any escapes were found which cause the string to
5487 pop out of ASCII range. Otherwise returns the length of the
5488 required buffer to hold the string.
5489 */
Antoine Pitrou53bb5482011-10-10 23:49:24 +02005490static Py_ssize_t
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005491length_of_escaped_ascii_string(const char *s, Py_ssize_t size)
5492{
5493 const unsigned char *p = (const unsigned char *)s;
5494 const unsigned char *end = p + size;
5495 Py_ssize_t length = 0;
5496
5497 if (size < 0)
5498 return -1;
5499
5500 for (; p < end; ++p) {
5501 if (*p > 127) {
5502 /* Non-ASCII */
5503 return -1;
5504 }
5505 else if (*p != '\\') {
5506 /* Normal character */
5507 ++length;
5508 }
5509 else {
5510 /* Backslash-escape, check next char */
5511 ++p;
5512 /* Escape sequence reaches till end of string or
5513 non-ASCII follow-up. */
5514 if (p >= end || *p > 127)
5515 return -1;
5516 switch (*p) {
5517 case '\n':
5518 /* backslash + \n result in zero characters */
5519 break;
5520 case '\\': case '\'': case '\"':
5521 case 'b': case 'f': case 't':
5522 case 'n': case 'r': case 'v': case 'a':
5523 ++length;
5524 break;
5525 case '0': case '1': case '2': case '3':
5526 case '4': case '5': case '6': case '7':
5527 case 'x': case 'u': case 'U': case 'N':
5528 /* these do not guarantee ASCII characters */
5529 return -1;
5530 default:
5531 /* count the backslash + the other character */
5532 length += 2;
5533 }
5534 }
5535 }
5536 return length;
5537}
5538
Fredrik Lundh06d12682001-01-24 07:59:11 +00005539static _PyUnicode_Name_CAPI *ucnhash_CAPI = NULL;
Marc-André Lemburg0f774e32000-06-28 16:43:35 +00005540
Alexander Belopolsky40018472011-02-26 01:02:56 +00005541PyObject *
5542PyUnicode_DecodeUnicodeEscape(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03005543 Py_ssize_t size,
Victor Stinnerc17f5402011-09-29 00:16:58 +02005544 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005545{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005546 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005547 Py_ssize_t startinpos;
5548 Py_ssize_t endinpos;
Victor Stinner7931d9a2011-11-04 00:22:48 +01005549 PyObject *v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005550 const char *end;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005551 char* message;
5552 Py_UCS4 chr = 0xffffffff; /* in case 'getcode' messes up */
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005553 PyObject *errorHandler = NULL;
5554 PyObject *exc = NULL;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005555 Py_ssize_t len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005556 Py_ssize_t i;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005557
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005558 len = length_of_escaped_ascii_string(s, size);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005559
5560 /* After length_of_escaped_ascii_string() there are two alternatives,
5561 either the string is pure ASCII with named escapes like \n, etc.
5562 and we determined it's exact size (common case)
5563 or it contains \x, \u, ... escape sequences. then we create a
5564 legacy wchar string and resize it at the end of this function. */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005565 if (len >= 0) {
5566 v = PyUnicode_New(len, 127);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005567 if (!v)
5568 goto onError;
5569 assert(PyUnicode_KIND(v) == PyUnicode_1BYTE_KIND);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005570 }
5571 else {
5572 /* Escaped strings will always be longer than the resulting
5573 Unicode string, so we start with size here and then reduce the
5574 length after conversion to the true value.
5575 (but if the error callback returns a long replacement string
5576 we'll have to allocate more space) */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005577 v = PyUnicode_New(size, 127);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005578 if (!v)
5579 goto onError;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005580 len = size;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005581 }
5582
Guido van Rossumd57fd912000-03-10 22:53:23 +00005583 if (size == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01005584 return v;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005585 i = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005586 end = s + size;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005587
Guido van Rossumd57fd912000-03-10 22:53:23 +00005588 while (s < end) {
5589 unsigned char c;
Victor Stinner24729f32011-11-10 20:31:37 +01005590 Py_UCS4 x;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005591 int digits;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005592
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005593 /* The only case in which i == ascii_length is a backslash
5594 followed by a newline. */
5595 assert(i <= len);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005596
Guido van Rossumd57fd912000-03-10 22:53:23 +00005597 /* Non-escape characters are interpreted as Unicode ordinals */
5598 if (*s != '\\') {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005599 if (unicode_putchar(&v, &i, (unsigned char) *s++) < 0)
5600 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005601 continue;
5602 }
5603
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005604 startinpos = s-starts;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005605 /* \ - Escapes */
5606 s++;
Guido van Rossum8ce8a782007-11-01 19:42:39 +00005607 c = *s++;
5608 if (s > end)
5609 c = '\0'; /* Invalid after \ */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005610
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005611 /* The only case in which i == ascii_length is a backslash
5612 followed by a newline. */
5613 assert(i < len || (i == len && c == '\n'));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005614
Guido van Rossum8ce8a782007-11-01 19:42:39 +00005615 switch (c) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00005616
Benjamin Peterson29060642009-01-31 22:14:21 +00005617 /* \x escapes */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005618#define WRITECHAR(ch) \
5619 do { \
5620 if (unicode_putchar(&v, &i, ch) < 0) \
5621 goto onError; \
5622 }while(0)
5623
Guido van Rossumd57fd912000-03-10 22:53:23 +00005624 case '\n': break;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005625 case '\\': WRITECHAR('\\'); break;
5626 case '\'': WRITECHAR('\''); break;
5627 case '\"': WRITECHAR('\"'); break;
5628 case 'b': WRITECHAR('\b'); break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005629 /* FF */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005630 case 'f': WRITECHAR('\014'); break;
5631 case 't': WRITECHAR('\t'); break;
5632 case 'n': WRITECHAR('\n'); break;
5633 case 'r': WRITECHAR('\r'); break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005634 /* VT */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005635 case 'v': WRITECHAR('\013'); break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005636 /* BEL, not classic C */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005637 case 'a': WRITECHAR('\007'); break;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005638
Benjamin Peterson29060642009-01-31 22:14:21 +00005639 /* \OOO (octal) escapes */
Guido van Rossumd57fd912000-03-10 22:53:23 +00005640 case '0': case '1': case '2': case '3':
5641 case '4': case '5': case '6': case '7':
Guido van Rossum0e4f6572000-05-01 21:27:20 +00005642 x = s[-1] - '0';
Guido van Rossum8ce8a782007-11-01 19:42:39 +00005643 if (s < end && '0' <= *s && *s <= '7') {
Guido van Rossum0e4f6572000-05-01 21:27:20 +00005644 x = (x<<3) + *s++ - '0';
Guido van Rossum8ce8a782007-11-01 19:42:39 +00005645 if (s < end && '0' <= *s && *s <= '7')
Guido van Rossum0e4f6572000-05-01 21:27:20 +00005646 x = (x<<3) + *s++ - '0';
Guido van Rossumd57fd912000-03-10 22:53:23 +00005647 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005648 WRITECHAR(x);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005649 break;
5650
Benjamin Peterson29060642009-01-31 22:14:21 +00005651 /* hex escapes */
5652 /* \xXX */
Guido van Rossumd57fd912000-03-10 22:53:23 +00005653 case 'x':
Fredrik Lundhccc74732001-02-18 22:13:49 +00005654 digits = 2;
5655 message = "truncated \\xXX escape";
5656 goto hexescape;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005657
Benjamin Peterson29060642009-01-31 22:14:21 +00005658 /* \uXXXX */
Guido van Rossumd57fd912000-03-10 22:53:23 +00005659 case 'u':
Fredrik Lundhccc74732001-02-18 22:13:49 +00005660 digits = 4;
5661 message = "truncated \\uXXXX escape";
5662 goto hexescape;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005663
Benjamin Peterson29060642009-01-31 22:14:21 +00005664 /* \UXXXXXXXX */
Fredrik Lundhdf846752000-09-03 11:29:49 +00005665 case 'U':
Fredrik Lundhccc74732001-02-18 22:13:49 +00005666 digits = 8;
5667 message = "truncated \\UXXXXXXXX escape";
5668 hexescape:
5669 chr = 0;
Serhiy Storchakad6793772013-01-29 10:20:44 +02005670 if (end - s < digits) {
5671 /* count only hex digits */
5672 for (; s < end; ++s) {
5673 c = (unsigned char)*s;
5674 if (!Py_ISXDIGIT(c))
5675 goto error;
Fredrik Lundhdf846752000-09-03 11:29:49 +00005676 }
Serhiy Storchakad6793772013-01-29 10:20:44 +02005677 goto error;
5678 }
5679 for (; digits--; ++s) {
5680 c = (unsigned char)*s;
5681 if (!Py_ISXDIGIT(c))
5682 goto error;
Fredrik Lundhdf846752000-09-03 11:29:49 +00005683 chr = (chr<<4) & ~0xF;
5684 if (c >= '0' && c <= '9')
5685 chr += c - '0';
5686 else if (c >= 'a' && c <= 'f')
5687 chr += 10 + c - 'a';
5688 else
5689 chr += 10 + c - 'A';
5690 }
Jeremy Hylton504de6b2003-10-06 05:08:26 +00005691 if (chr == 0xffffffff && PyErr_Occurred())
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005692 /* _decoding_error will have already written into the
5693 target buffer. */
5694 break;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005695 store:
Fredrik Lundhdf846752000-09-03 11:29:49 +00005696 /* when we get here, chr is a 32-bit unicode character */
Serhiy Storchaka24193de2013-01-29 10:28:07 +02005697 message = "illegal Unicode character";
5698 if (chr > MAX_UNICODE)
Serhiy Storchakad6793772013-01-29 10:20:44 +02005699 goto error;
Serhiy Storchaka24193de2013-01-29 10:28:07 +02005700 WRITECHAR(chr);
Fredrik Lundhccc74732001-02-18 22:13:49 +00005701 break;
5702
Benjamin Peterson29060642009-01-31 22:14:21 +00005703 /* \N{name} */
Fredrik Lundhccc74732001-02-18 22:13:49 +00005704 case 'N':
5705 message = "malformed \\N character escape";
5706 if (ucnhash_CAPI == NULL) {
5707 /* load the unicode data module */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005708 ucnhash_CAPI = (_PyUnicode_Name_CAPI *)PyCapsule_Import(
5709 PyUnicodeData_CAPSULE_NAME, 1);
Fredrik Lundhccc74732001-02-18 22:13:49 +00005710 if (ucnhash_CAPI == NULL)
5711 goto ucnhashError;
5712 }
5713 if (*s == '{') {
5714 const char *start = s+1;
5715 /* look for the closing brace */
5716 while (*s != '}' && s < end)
5717 s++;
5718 if (s > start && s < end && *s == '}') {
5719 /* found a name. look it up in the unicode database */
5720 message = "unknown Unicode character name";
5721 s++;
Serhiy Storchaka4f5f0e52013-01-21 11:38:00 +02005722 if (s - start - 1 <= INT_MAX &&
Serhiy Storchakac35f3a92013-01-21 11:42:57 +02005723 ucnhash_CAPI->getcode(NULL, start, (int)(s-start-1),
Ezio Melotti931b8aa2011-10-21 21:57:36 +03005724 &chr, 0))
Fredrik Lundhccc74732001-02-18 22:13:49 +00005725 goto store;
5726 }
5727 }
Serhiy Storchakad6793772013-01-29 10:20:44 +02005728 goto error;
Fredrik Lundhccc74732001-02-18 22:13:49 +00005729
5730 default:
Walter Dörwald8c077222002-03-25 11:16:18 +00005731 if (s > end) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005732 message = "\\ at end of string";
5733 s--;
Serhiy Storchakad6793772013-01-29 10:20:44 +02005734 goto error;
Walter Dörwald8c077222002-03-25 11:16:18 +00005735 }
5736 else {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005737 WRITECHAR('\\');
Serhiy Storchaka73e38802013-01-25 23:52:21 +02005738 WRITECHAR((unsigned char)s[-1]);
Walter Dörwald8c077222002-03-25 11:16:18 +00005739 }
Fredrik Lundhccc74732001-02-18 22:13:49 +00005740 break;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005741 }
Serhiy Storchakad6793772013-01-29 10:20:44 +02005742 continue;
5743
5744 error:
5745 endinpos = s-starts;
Serhiy Storchakad6793772013-01-29 10:20:44 +02005746 if (unicode_decode_call_errorhandler(
5747 errors, &errorHandler,
5748 "unicodeescape", message,
5749 &starts, &end, &startinpos, &endinpos, &exc, &s,
Serhiy Storchaka24193de2013-01-29 10:28:07 +02005750 &v, &i))
Serhiy Storchakad6793772013-01-29 10:20:44 +02005751 goto onError;
Serhiy Storchaka24193de2013-01-29 10:28:07 +02005752 len = PyUnicode_GET_LENGTH(v);
Serhiy Storchakad6793772013-01-29 10:20:44 +02005753 continue;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005754 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005755#undef WRITECHAR
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005756
Victor Stinner16e6a802011-12-12 13:24:15 +01005757 if (unicode_resize(&v, i) < 0)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005758 goto onError;
Walter Dörwaldd4ade082003-08-15 15:00:26 +00005759 Py_XDECREF(errorHandler);
5760 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01005761 return unicode_result(v);
Walter Dörwald8c077222002-03-25 11:16:18 +00005762
Benjamin Peterson29060642009-01-31 22:14:21 +00005763 ucnhashError:
Fredrik Lundh06d12682001-01-24 07:59:11 +00005764 PyErr_SetString(
5765 PyExc_UnicodeError,
5766 "\\N escapes not supported (can't load unicodedata module)"
5767 );
Hye-Shik Chang4af5c8c2006-03-07 15:39:21 +00005768 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005769 Py_XDECREF(errorHandler);
5770 Py_XDECREF(exc);
Fredrik Lundhf6056062001-01-20 11:15:25 +00005771 return NULL;
5772
Benjamin Peterson29060642009-01-31 22:14:21 +00005773 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00005774 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005775 Py_XDECREF(errorHandler);
5776 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005777 return NULL;
5778}
5779
5780/* Return a Unicode-Escape string version of the Unicode object.
5781
5782 If quotes is true, the string is enclosed in u"" or u'' quotes as
5783 appropriate.
5784
5785*/
5786
Alexander Belopolsky40018472011-02-26 01:02:56 +00005787PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005788PyUnicode_AsUnicodeEscapeString(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005789{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005790 Py_ssize_t i, len;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005791 PyObject *repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005792 char *p;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005793 int kind;
5794 void *data;
5795 Py_ssize_t expandsize = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005796
Ezio Melottie7f90372012-10-05 03:33:31 +03005797 /* Initial allocation is based on the longest-possible character
Thomas Wouters89f507f2006-12-13 04:49:30 +00005798 escape.
5799
Ezio Melottie7f90372012-10-05 03:33:31 +03005800 For UCS1 strings it's '\xxx', 4 bytes per source character.
5801 For UCS2 strings it's '\uxxxx', 6 bytes per source character.
5802 For UCS4 strings it's '\U00xxxxxx', 10 bytes per source character.
Thomas Wouters89f507f2006-12-13 04:49:30 +00005803 */
5804
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005805 if (!PyUnicode_Check(unicode)) {
5806 PyErr_BadArgument();
5807 return NULL;
5808 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05005809 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005810 return NULL;
5811 len = PyUnicode_GET_LENGTH(unicode);
5812 kind = PyUnicode_KIND(unicode);
5813 data = PyUnicode_DATA(unicode);
Benjamin Petersonead6b532011-12-20 17:23:42 -06005814 switch (kind) {
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005815 case PyUnicode_1BYTE_KIND: expandsize = 4; break;
5816 case PyUnicode_2BYTE_KIND: expandsize = 6; break;
5817 case PyUnicode_4BYTE_KIND: expandsize = 10; break;
5818 }
5819
5820 if (len == 0)
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005821 return PyBytes_FromStringAndSize(NULL, 0);
5822
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005823 if (len > (PY_SSIZE_T_MAX - 2 - 1) / expandsize)
Benjamin Peterson29060642009-01-31 22:14:21 +00005824 return PyErr_NoMemory();
Neal Norwitz3ce5d922008-08-24 07:08:55 +00005825
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005826 repr = PyBytes_FromStringAndSize(NULL,
Benjamin Peterson29060642009-01-31 22:14:21 +00005827 2
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005828 + expandsize*len
Benjamin Peterson29060642009-01-31 22:14:21 +00005829 + 1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005830 if (repr == NULL)
5831 return NULL;
5832
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005833 p = PyBytes_AS_STRING(repr);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005834
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005835 for (i = 0; i < len; i++) {
Victor Stinner3326cb62011-11-10 20:15:25 +01005836 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005837
Walter Dörwald79e913e2007-05-12 11:08:06 +00005838 /* Escape backslashes */
5839 if (ch == '\\') {
Guido van Rossumd57fd912000-03-10 22:53:23 +00005840 *p++ = '\\';
5841 *p++ = (char) ch;
Walter Dörwald79e913e2007-05-12 11:08:06 +00005842 continue;
Tim Petersced69f82003-09-16 20:30:58 +00005843 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005844
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00005845 /* Map 21-bit characters to '\U00xxxxxx' */
5846 else if (ch >= 0x10000) {
Victor Stinner8faf8212011-12-08 22:14:11 +01005847 assert(ch <= MAX_UNICODE);
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00005848 *p++ = '\\';
5849 *p++ = 'U';
Victor Stinnerf5cff562011-10-14 02:13:11 +02005850 *p++ = Py_hexdigits[(ch >> 28) & 0x0000000F];
5851 *p++ = Py_hexdigits[(ch >> 24) & 0x0000000F];
5852 *p++ = Py_hexdigits[(ch >> 20) & 0x0000000F];
5853 *p++ = Py_hexdigits[(ch >> 16) & 0x0000000F];
5854 *p++ = Py_hexdigits[(ch >> 12) & 0x0000000F];
5855 *p++ = Py_hexdigits[(ch >> 8) & 0x0000000F];
5856 *p++ = Py_hexdigits[(ch >> 4) & 0x0000000F];
5857 *p++ = Py_hexdigits[ch & 0x0000000F];
Benjamin Peterson29060642009-01-31 22:14:21 +00005858 continue;
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00005859 }
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +00005860
Guido van Rossumd57fd912000-03-10 22:53:23 +00005861 /* Map 16-bit characters to '\uxxxx' */
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +00005862 if (ch >= 256) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00005863 *p++ = '\\';
5864 *p++ = 'u';
Victor Stinnerf5cff562011-10-14 02:13:11 +02005865 *p++ = Py_hexdigits[(ch >> 12) & 0x000F];
5866 *p++ = Py_hexdigits[(ch >> 8) & 0x000F];
5867 *p++ = Py_hexdigits[(ch >> 4) & 0x000F];
5868 *p++ = Py_hexdigits[ch & 0x000F];
Guido van Rossumd57fd912000-03-10 22:53:23 +00005869 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005870
Ka-Ping Yeefa004ad2001-01-24 17:19:08 +00005871 /* Map special whitespace to '\t', \n', '\r' */
5872 else if (ch == '\t') {
5873 *p++ = '\\';
5874 *p++ = 't';
5875 }
5876 else if (ch == '\n') {
5877 *p++ = '\\';
5878 *p++ = 'n';
5879 }
5880 else if (ch == '\r') {
5881 *p++ = '\\';
5882 *p++ = 'r';
5883 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005884
Ka-Ping Yeefa004ad2001-01-24 17:19:08 +00005885 /* Map non-printable US ASCII to '\xhh' */
Marc-André Lemburg11326de2001-11-28 12:56:20 +00005886 else if (ch < ' ' || ch >= 0x7F) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00005887 *p++ = '\\';
Ka-Ping Yeefa004ad2001-01-24 17:19:08 +00005888 *p++ = 'x';
Victor Stinnerf5cff562011-10-14 02:13:11 +02005889 *p++ = Py_hexdigits[(ch >> 4) & 0x000F];
5890 *p++ = Py_hexdigits[ch & 0x000F];
Tim Petersced69f82003-09-16 20:30:58 +00005891 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00005892
Guido van Rossumd57fd912000-03-10 22:53:23 +00005893 /* Copy everything else as-is */
5894 else
5895 *p++ = (char) ch;
5896 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00005897
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005898 assert(p - PyBytes_AS_STRING(repr) > 0);
5899 if (_PyBytes_Resize(&repr, p - PyBytes_AS_STRING(repr)) < 0)
5900 return NULL;
5901 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005902}
5903
Alexander Belopolsky40018472011-02-26 01:02:56 +00005904PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005905PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s,
5906 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005907{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005908 PyObject *result;
5909 PyObject *tmp = PyUnicode_FromUnicode(s, size);
5910 if (tmp == NULL)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005911 return NULL;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01005912 result = PyUnicode_AsUnicodeEscapeString(tmp);
5913 Py_DECREF(tmp);
5914 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005915}
5916
5917/* --- Raw Unicode Escape Codec ------------------------------------------- */
5918
Alexander Belopolsky40018472011-02-26 01:02:56 +00005919PyObject *
5920PyUnicode_DecodeRawUnicodeEscape(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03005921 Py_ssize_t size,
5922 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005923{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005924 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005925 Py_ssize_t startinpos;
5926 Py_ssize_t endinpos;
5927 Py_ssize_t outpos;
Victor Stinner7931d9a2011-11-04 00:22:48 +01005928 PyObject *v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005929 const char *end;
5930 const char *bs;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005931 PyObject *errorHandler = NULL;
5932 PyObject *exc = NULL;
Tim Petersced69f82003-09-16 20:30:58 +00005933
Guido van Rossumd57fd912000-03-10 22:53:23 +00005934 /* Escaped strings will always be longer than the resulting
5935 Unicode string, so we start with size here and then reduce the
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005936 length after conversion to the true value. (But decoding error
5937 handler might have to resize the string) */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005938 v = PyUnicode_New(size, 127);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005939 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005940 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005941 if (size == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01005942 return v;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005943 outpos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005944 end = s + size;
5945 while (s < end) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005946 unsigned char c;
5947 Py_UCS4 x;
5948 int i;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00005949 int count;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005950
Benjamin Peterson29060642009-01-31 22:14:21 +00005951 /* Non-escape characters are interpreted as Unicode ordinals */
5952 if (*s != '\\') {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005953 if (unicode_putchar(&v, &outpos, (unsigned char)*s++) < 0)
5954 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00005955 continue;
Benjamin Peterson14339b62009-01-31 16:36:08 +00005956 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005957 startinpos = s-starts;
5958
5959 /* \u-escapes are only interpreted iff the number of leading
5960 backslashes if odd */
5961 bs = s;
5962 for (;s < end;) {
5963 if (*s != '\\')
5964 break;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005965 if (unicode_putchar(&v, &outpos, (unsigned char)*s++) < 0)
5966 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00005967 }
5968 if (((s - bs) & 1) == 0 ||
5969 s >= end ||
5970 (*s != 'u' && *s != 'U')) {
5971 continue;
5972 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005973 outpos--;
Benjamin Peterson29060642009-01-31 22:14:21 +00005974 count = *s=='u' ? 4 : 8;
5975 s++;
5976
5977 /* \uXXXX with 4 hex digits, \Uxxxxxxxx with 8 */
Benjamin Peterson29060642009-01-31 22:14:21 +00005978 for (x = 0, i = 0; i < count; ++i, ++s) {
5979 c = (unsigned char)*s;
David Malcolm96960882010-11-05 17:23:41 +00005980 if (!Py_ISXDIGIT(c)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005981 endinpos = s-starts;
5982 if (unicode_decode_call_errorhandler(
5983 errors, &errorHandler,
5984 "rawunicodeescape", "truncated \\uXXXX",
5985 &starts, &end, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005986 &v, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00005987 goto onError;
5988 goto nextByte;
5989 }
5990 x = (x<<4) & ~0xF;
5991 if (c >= '0' && c <= '9')
5992 x += c - '0';
5993 else if (c >= 'a' && c <= 'f')
5994 x += 10 + c - 'a';
5995 else
5996 x += 10 + c - 'A';
5997 }
Victor Stinner8faf8212011-12-08 22:14:11 +01005998 if (x <= MAX_UNICODE) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01005999 if (unicode_putchar(&v, &outpos, x) < 0)
6000 goto onError;
Christian Heimesfe337bf2008-03-23 21:54:12 +00006001 } else {
6002 endinpos = s-starts;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00006003 if (unicode_decode_call_errorhandler(
6004 errors, &errorHandler,
6005 "rawunicodeescape", "\\Uxxxxxxxx out of range",
Benjamin Peterson29060642009-01-31 22:14:21 +00006006 &starts, &end, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006007 &v, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00006008 goto onError;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00006009 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006010 nextByte:
6011 ;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006012 }
Victor Stinner16e6a802011-12-12 13:24:15 +01006013 if (unicode_resize(&v, outpos) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00006014 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006015 Py_XDECREF(errorHandler);
6016 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01006017 return unicode_result(v);
Tim Petersced69f82003-09-16 20:30:58 +00006018
Benjamin Peterson29060642009-01-31 22:14:21 +00006019 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00006020 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006021 Py_XDECREF(errorHandler);
6022 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006023 return NULL;
6024}
6025
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006026
Alexander Belopolsky40018472011-02-26 01:02:56 +00006027PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006028PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006029{
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006030 PyObject *repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006031 char *p;
6032 char *q;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006033 Py_ssize_t expandsize, pos;
6034 int kind;
6035 void *data;
6036 Py_ssize_t len;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006037
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006038 if (!PyUnicode_Check(unicode)) {
6039 PyErr_BadArgument();
6040 return NULL;
6041 }
Benjamin Petersonbac79492012-01-14 13:34:47 -05006042 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006043 return NULL;
6044 kind = PyUnicode_KIND(unicode);
6045 data = PyUnicode_DATA(unicode);
6046 len = PyUnicode_GET_LENGTH(unicode);
Benjamin Peterson1518e872011-11-23 10:44:52 -06006047 /* 4 byte characters can take up 10 bytes, 2 byte characters can take up 6
6048 bytes, and 1 byte characters 4. */
6049 expandsize = kind * 2 + 2;
Victor Stinner0e368262011-11-10 20:12:49 +01006050
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006051 if (len > PY_SSIZE_T_MAX / expandsize)
Benjamin Peterson29060642009-01-31 22:14:21 +00006052 return PyErr_NoMemory();
Benjamin Peterson14339b62009-01-31 16:36:08 +00006053
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006054 repr = PyBytes_FromStringAndSize(NULL, expandsize * len);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006055 if (repr == NULL)
6056 return NULL;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006057 if (len == 0)
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006058 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006059
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006060 p = q = PyBytes_AS_STRING(repr);
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006061 for (pos = 0; pos < len; pos++) {
6062 Py_UCS4 ch = PyUnicode_READ(kind, data, pos);
Benjamin Peterson29060642009-01-31 22:14:21 +00006063 /* Map 32-bit characters to '\Uxxxxxxxx' */
6064 if (ch >= 0x10000) {
Victor Stinner8faf8212011-12-08 22:14:11 +01006065 assert(ch <= MAX_UNICODE);
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00006066 *p++ = '\\';
6067 *p++ = 'U';
Victor Stinnerf5cff562011-10-14 02:13:11 +02006068 *p++ = Py_hexdigits[(ch >> 28) & 0xf];
6069 *p++ = Py_hexdigits[(ch >> 24) & 0xf];
6070 *p++ = Py_hexdigits[(ch >> 20) & 0xf];
6071 *p++ = Py_hexdigits[(ch >> 16) & 0xf];
6072 *p++ = Py_hexdigits[(ch >> 12) & 0xf];
6073 *p++ = Py_hexdigits[(ch >> 8) & 0xf];
6074 *p++ = Py_hexdigits[(ch >> 4) & 0xf];
6075 *p++ = Py_hexdigits[ch & 15];
Tim Petersced69f82003-09-16 20:30:58 +00006076 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006077 /* Map 16-bit characters to '\uxxxx' */
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006078 else if (ch >= 256) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00006079 *p++ = '\\';
6080 *p++ = 'u';
Victor Stinnerf5cff562011-10-14 02:13:11 +02006081 *p++ = Py_hexdigits[(ch >> 12) & 0xf];
6082 *p++ = Py_hexdigits[(ch >> 8) & 0xf];
6083 *p++ = Py_hexdigits[(ch >> 4) & 0xf];
6084 *p++ = Py_hexdigits[ch & 15];
Guido van Rossumd57fd912000-03-10 22:53:23 +00006085 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006086 /* Copy everything else as-is */
6087 else
Guido van Rossumd57fd912000-03-10 22:53:23 +00006088 *p++ = (char) ch;
6089 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00006090
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006091 assert(p > q);
6092 if (_PyBytes_Resize(&repr, p - q) < 0)
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006093 return NULL;
6094 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006095}
6096
Alexander Belopolsky40018472011-02-26 01:02:56 +00006097PyObject *
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006098PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s,
6099 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006100{
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006101 PyObject *result;
6102 PyObject *tmp = PyUnicode_FromUnicode(s, size);
6103 if (tmp == NULL)
Walter Dörwald711005d2007-05-12 12:03:26 +00006104 return NULL;
Martin v. Löwis1db7c132011-11-10 18:24:32 +01006105 result = PyUnicode_AsRawUnicodeEscapeString(tmp);
6106 Py_DECREF(tmp);
6107 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006108}
6109
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006110/* --- Unicode Internal Codec ------------------------------------------- */
6111
Alexander Belopolsky40018472011-02-26 01:02:56 +00006112PyObject *
6113_PyUnicode_DecodeUnicodeInternal(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006114 Py_ssize_t size,
6115 const char *errors)
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006116{
6117 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00006118 Py_ssize_t startinpos;
6119 Py_ssize_t endinpos;
6120 Py_ssize_t outpos;
Victor Stinner7931d9a2011-11-04 00:22:48 +01006121 PyObject *v;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006122 const char *end;
6123 const char *reason;
6124 PyObject *errorHandler = NULL;
6125 PyObject *exc = NULL;
6126
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006127 if (PyErr_WarnEx(PyExc_DeprecationWarning,
Ezio Melotti11060a42011-11-16 09:39:10 +02006128 "unicode_internal codec has been deprecated",
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006129 1))
6130 return NULL;
6131
Thomas Wouters89f507f2006-12-13 04:49:30 +00006132 /* XXX overflow detection missing */
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006133 v = PyUnicode_New((size+Py_UNICODE_SIZE-1)/ Py_UNICODE_SIZE, 127);
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006134 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006135 goto onError;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006136 if (PyUnicode_GET_LENGTH(v) == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01006137 return v;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006138 outpos = 0;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006139 end = s + size;
6140
6141 while (s < end) {
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006142 Py_UNICODE uch;
Antoine Pitrou44c6aff2011-11-11 02:59:42 +01006143 Py_UCS4 ch;
Serhiy Storchaka03ee12e2013-02-07 16:25:25 +02006144 if (end - s < Py_UNICODE_SIZE) {
Serhiy Storchaka3fd4ab32013-02-07 16:23:21 +02006145 endinpos = end-starts;
6146 reason = "truncated input";
6147 goto error;
6148 }
Antoine Pitrou44c6aff2011-11-11 02:59:42 +01006149 /* We copy the raw representation one byte at a time because the
6150 pointer may be unaligned (see test_codeccallbacks). */
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006151 ((char *) &uch)[0] = s[0];
6152 ((char *) &uch)[1] = s[1];
Antoine Pitrou44c6aff2011-11-11 02:59:42 +01006153#ifdef Py_UNICODE_WIDE
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006154 ((char *) &uch)[2] = s[2];
6155 ((char *) &uch)[3] = s[3];
Antoine Pitrou44c6aff2011-11-11 02:59:42 +01006156#endif
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006157 ch = uch;
Serhiy Storchaka3fd4ab32013-02-07 16:23:21 +02006158#ifdef Py_UNICODE_WIDE
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006159 /* We have to sanity check the raw data, otherwise doom looms for
6160 some malformed UCS-4 data. */
Serhiy Storchaka03ee12e2013-02-07 16:25:25 +02006161 if (ch > 0x10ffff) {
Serhiy Storchaka3fd4ab32013-02-07 16:23:21 +02006162 endinpos = s - starts + Py_UNICODE_SIZE;
6163 reason = "illegal code point (> 0x10FFFF)";
6164 goto error;
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006165 }
Serhiy Storchaka3fd4ab32013-02-07 16:23:21 +02006166#endif
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006167 s += Py_UNICODE_SIZE;
6168#ifndef Py_UNICODE_WIDE
Serhiy Storchaka03ee12e2013-02-07 16:25:25 +02006169 if (Py_UNICODE_IS_HIGH_SURROGATE(ch) && end - s >= Py_UNICODE_SIZE)
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006170 {
Antoine Pitrou0290c7a2011-11-11 13:29:12 +01006171 Py_UNICODE uch2;
6172 ((char *) &uch2)[0] = s[0];
6173 ((char *) &uch2)[1] = s[1];
Victor Stinner551ac952011-11-29 22:58:13 +01006174 if (Py_UNICODE_IS_LOW_SURROGATE(uch2))
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006175 {
Victor Stinner551ac952011-11-29 22:58:13 +01006176 ch = Py_UNICODE_JOIN_SURROGATES(uch, uch2);
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006177 s += Py_UNICODE_SIZE;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006178 }
6179 }
Victor Stinner9f4b1e92011-11-10 20:56:30 +01006180#endif
6181
6182 if (unicode_putchar(&v, &outpos, ch) < 0)
6183 goto onError;
Serhiy Storchaka3fd4ab32013-02-07 16:23:21 +02006184 continue;
6185
6186 error:
6187 startinpos = s - starts;
Serhiy Storchaka3fd4ab32013-02-07 16:23:21 +02006188 if (unicode_decode_call_errorhandler(
6189 errors, &errorHandler,
6190 "unicode_internal", reason,
6191 &starts, &end, &startinpos, &endinpos, &exc, &s,
Serhiy Storchaka03ee12e2013-02-07 16:25:25 +02006192 &v, &outpos))
Serhiy Storchaka3fd4ab32013-02-07 16:23:21 +02006193 goto onError;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006194 }
6195
Victor Stinner16e6a802011-12-12 13:24:15 +01006196 if (unicode_resize(&v, outpos) < 0)
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006197 goto onError;
6198 Py_XDECREF(errorHandler);
6199 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01006200 return unicode_result(v);
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006201
Benjamin Peterson29060642009-01-31 22:14:21 +00006202 onError:
Walter Dörwalda47d1c02005-08-30 10:23:14 +00006203 Py_XDECREF(v);
6204 Py_XDECREF(errorHandler);
6205 Py_XDECREF(exc);
6206 return NULL;
6207}
6208
Guido van Rossumd57fd912000-03-10 22:53:23 +00006209/* --- Latin-1 Codec ------------------------------------------------------ */
6210
Alexander Belopolsky40018472011-02-26 01:02:56 +00006211PyObject *
6212PyUnicode_DecodeLatin1(const char *s,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006213 Py_ssize_t size,
6214 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006215{
Guido van Rossumd57fd912000-03-10 22:53:23 +00006216 /* Latin-1 is equivalent to the first 256 ordinals in Unicode. */
Victor Stinnere57b1c02011-09-28 22:20:48 +02006217 return _PyUnicode_FromUCS1((unsigned char*)s, size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006218}
6219
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006220/* create or adjust a UnicodeEncodeError */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006221static void
6222make_encode_exception(PyObject **exceptionObject,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006223 const char *encoding,
Martin v. Löwis9e816682011-11-02 12:45:42 +01006224 PyObject *unicode,
6225 Py_ssize_t startpos, Py_ssize_t endpos,
6226 const char *reason)
6227{
6228 if (*exceptionObject == NULL) {
6229 *exceptionObject = PyObject_CallFunction(
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006230 PyExc_UnicodeEncodeError, "sOnns",
Martin v. Löwis9e816682011-11-02 12:45:42 +01006231 encoding, unicode, startpos, endpos, reason);
6232 }
6233 else {
6234 if (PyUnicodeEncodeError_SetStart(*exceptionObject, startpos))
6235 goto onError;
6236 if (PyUnicodeEncodeError_SetEnd(*exceptionObject, endpos))
6237 goto onError;
6238 if (PyUnicodeEncodeError_SetReason(*exceptionObject, reason))
6239 goto onError;
6240 return;
6241 onError:
Serhiy Storchaka505ff752014-02-09 13:33:53 +02006242 Py_CLEAR(*exceptionObject);
Martin v. Löwis9e816682011-11-02 12:45:42 +01006243 }
6244}
6245
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006246/* raises a UnicodeEncodeError */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006247static void
6248raise_encode_exception(PyObject **exceptionObject,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006249 const char *encoding,
Martin v. Löwis9e816682011-11-02 12:45:42 +01006250 PyObject *unicode,
6251 Py_ssize_t startpos, Py_ssize_t endpos,
6252 const char *reason)
6253{
Martin v. Löwis12be46c2011-11-04 19:04:15 +01006254 make_encode_exception(exceptionObject,
Martin v. Löwis9e816682011-11-02 12:45:42 +01006255 encoding, unicode, startpos, endpos, reason);
6256 if (*exceptionObject != NULL)
6257 PyCodec_StrictErrors(*exceptionObject);
6258}
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006259
6260/* error handling callback helper:
6261 build arguments, call the callback and check the arguments,
6262 put the result into newpos and return the replacement string, which
6263 has to be freed by the caller */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006264static PyObject *
6265unicode_encode_call_errorhandler(const char *errors,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006266 PyObject **errorHandler,
6267 const char *encoding, const char *reason,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006268 PyObject *unicode, PyObject **exceptionObject,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006269 Py_ssize_t startpos, Py_ssize_t endpos,
6270 Py_ssize_t *newpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006271{
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006272 static char *argparse = "On;encoding error handler must return (str/bytes, int) tuple";
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006273 Py_ssize_t len;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006274 PyObject *restuple;
6275 PyObject *resunicode;
6276
6277 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006278 *errorHandler = PyCodec_LookupError(errors);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006279 if (*errorHandler == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006280 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006281 }
6282
Benjamin Petersonbac79492012-01-14 13:34:47 -05006283 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006284 return NULL;
6285 len = PyUnicode_GET_LENGTH(unicode);
6286
Martin v. Löwis12be46c2011-11-04 19:04:15 +01006287 make_encode_exception(exceptionObject,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006288 encoding, unicode, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006289 if (*exceptionObject == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006290 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006291
6292 restuple = PyObject_CallFunctionObjArgs(
Benjamin Peterson29060642009-01-31 22:14:21 +00006293 *errorHandler, *exceptionObject, NULL);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006294 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006295 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006296 if (!PyTuple_Check(restuple)) {
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006297 PyErr_SetString(PyExc_TypeError, &argparse[3]);
Benjamin Peterson29060642009-01-31 22:14:21 +00006298 Py_DECREF(restuple);
6299 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006300 }
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006301 if (!PyArg_ParseTuple(restuple, argparse,
Benjamin Peterson29060642009-01-31 22:14:21 +00006302 &resunicode, newpos)) {
6303 Py_DECREF(restuple);
6304 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006305 }
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006306 if (!PyUnicode_Check(resunicode) && !PyBytes_Check(resunicode)) {
6307 PyErr_SetString(PyExc_TypeError, &argparse[3]);
6308 Py_DECREF(restuple);
6309 return NULL;
6310 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006311 if (*newpos<0)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006312 *newpos = len + *newpos;
6313 if (*newpos<0 || *newpos>len) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006314 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos);
6315 Py_DECREF(restuple);
6316 return NULL;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00006317 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006318 Py_INCREF(resunicode);
6319 Py_DECREF(restuple);
6320 return resunicode;
6321}
6322
Alexander Belopolsky40018472011-02-26 01:02:56 +00006323static PyObject *
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006324unicode_encode_ucs1(PyObject *unicode,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006325 const char *errors,
Victor Stinnerfcd96532011-11-04 00:28:50 +01006326 unsigned int limit)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006327{
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006328 /* input state */
6329 Py_ssize_t pos=0, size;
6330 int kind;
6331 void *data;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006332 /* output object */
6333 PyObject *res;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006334 /* pointer into the output */
6335 char *str;
6336 /* current output position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00006337 Py_ssize_t ressize;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006338 const char *encoding = (limit == 256) ? "latin-1" : "ascii";
6339 const char *reason = (limit == 256) ? "ordinal not in range(256)" : "ordinal not in range(128)";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006340 PyObject *errorHandler = NULL;
6341 PyObject *exc = NULL;
6342 /* the following variable is used for caching string comparisons
6343 * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */
6344 int known_errorHandler = -1;
6345
Benjamin Petersonbac79492012-01-14 13:34:47 -05006346 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006347 return NULL;
6348 size = PyUnicode_GET_LENGTH(unicode);
6349 kind = PyUnicode_KIND(unicode);
6350 data = PyUnicode_DATA(unicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006351 /* allocate enough for a simple encoding without
6352 replacements, if we need more, we'll resize */
Guido van Rossum98297ee2007-11-06 21:34:58 +00006353 if (size == 0)
Christian Heimes72b710a2008-05-26 13:28:38 +00006354 return PyBytes_FromStringAndSize(NULL, 0);
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006355 res = PyBytes_FromStringAndSize(NULL, size);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006356 if (res == NULL)
Guido van Rossum98297ee2007-11-06 21:34:58 +00006357 return NULL;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006358 str = PyBytes_AS_STRING(res);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006359 ressize = size;
6360
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006361 while (pos < size) {
6362 Py_UCS4 c = PyUnicode_READ(kind, data, pos);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006363
Benjamin Peterson29060642009-01-31 22:14:21 +00006364 /* can we encode this? */
6365 if (c<limit) {
6366 /* no overflow check, because we know that the space is enough */
6367 *str++ = (char)c;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006368 ++pos;
Benjamin Peterson14339b62009-01-31 16:36:08 +00006369 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006370 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00006371 Py_ssize_t requiredsize;
6372 PyObject *repunicode;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006373 Py_ssize_t repsize, newpos, respos, i;
Benjamin Peterson29060642009-01-31 22:14:21 +00006374 /* startpos for collecting unencodable chars */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006375 Py_ssize_t collstart = pos;
6376 Py_ssize_t collend = pos;
Benjamin Peterson29060642009-01-31 22:14:21 +00006377 /* find all unecodable characters */
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006378 while ((collend < size) && (PyUnicode_READ(kind, data, collend) >= limit))
Benjamin Peterson29060642009-01-31 22:14:21 +00006379 ++collend;
6380 /* cache callback name lookup (if not done yet, i.e. it's the first error) */
6381 if (known_errorHandler==-1) {
6382 if ((errors==NULL) || (!strcmp(errors, "strict")))
6383 known_errorHandler = 1;
6384 else if (!strcmp(errors, "replace"))
6385 known_errorHandler = 2;
6386 else if (!strcmp(errors, "ignore"))
6387 known_errorHandler = 3;
6388 else if (!strcmp(errors, "xmlcharrefreplace"))
6389 known_errorHandler = 4;
6390 else
6391 known_errorHandler = 0;
6392 }
6393 switch (known_errorHandler) {
6394 case 1: /* strict */
Martin v. Löwis12be46c2011-11-04 19:04:15 +01006395 raise_encode_exception(&exc, encoding, unicode, collstart, collend, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00006396 goto onError;
6397 case 2: /* replace */
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006398 while (collstart++ < collend)
Benjamin Peterson29060642009-01-31 22:14:21 +00006399 *str++ = '?'; /* fall through */
6400 case 3: /* ignore */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006401 pos = collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00006402 break;
6403 case 4: /* xmlcharrefreplace */
6404 respos = str - PyBytes_AS_STRING(res);
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006405 requiredsize = respos;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006406 /* determine replacement size */
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006407 for (i = collstart; i < collend; ++i) {
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006408 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006409 Py_ssize_t incr;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006410 if (ch < 10)
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006411 incr = 2+1+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006412 else if (ch < 100)
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006413 incr = 2+2+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006414 else if (ch < 1000)
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006415 incr = 2+3+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006416 else if (ch < 10000)
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006417 incr = 2+4+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006418 else if (ch < 100000)
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006419 incr = 2+5+1;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006420 else if (ch < 1000000)
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006421 incr = 2+6+1;
Victor Stinner0d3721d2011-11-22 03:27:53 +01006422 else {
Victor Stinner8faf8212011-12-08 22:14:11 +01006423 assert(ch <= MAX_UNICODE);
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006424 incr = 2+7+1;
Victor Stinner0d3721d2011-11-22 03:27:53 +01006425 }
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006426 if (requiredsize > PY_SSIZE_T_MAX - incr)
6427 goto overflow;
6428 requiredsize += incr;
Benjamin Peterson29060642009-01-31 22:14:21 +00006429 }
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006430 if (requiredsize > PY_SSIZE_T_MAX - (size - collend))
6431 goto overflow;
6432 requiredsize += size - collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00006433 if (requiredsize > ressize) {
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006434 if (ressize <= PY_SSIZE_T_MAX/2 && requiredsize < 2*ressize)
Benjamin Peterson29060642009-01-31 22:14:21 +00006435 requiredsize = 2*ressize;
6436 if (_PyBytes_Resize(&res, requiredsize))
6437 goto onError;
6438 str = PyBytes_AS_STRING(res) + respos;
6439 ressize = requiredsize;
6440 }
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006441 /* generate replacement */
6442 for (i = collstart; i < collend; ++i) {
6443 str += sprintf(str, "&#%d;", PyUnicode_READ(kind, data, i));
Benjamin Peterson29060642009-01-31 22:14:21 +00006444 }
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006445 pos = collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00006446 break;
6447 default:
6448 repunicode = unicode_encode_call_errorhandler(errors, &errorHandler,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006449 encoding, reason, unicode, &exc,
6450 collstart, collend, &newpos);
6451 if (repunicode == NULL || (PyUnicode_Check(repunicode) &&
Benjamin Petersonbac79492012-01-14 13:34:47 -05006452 PyUnicode_READY(repunicode) == -1))
Benjamin Peterson29060642009-01-31 22:14:21 +00006453 goto onError;
Martin v. Löwis011e8422009-05-05 04:43:17 +00006454 if (PyBytes_Check(repunicode)) {
6455 /* Directly copy bytes result to output. */
6456 repsize = PyBytes_Size(repunicode);
6457 if (repsize > 1) {
6458 /* Make room for all additional bytes. */
Amaury Forgeot d'Arc84ec8d92009-06-29 22:36:49 +00006459 respos = str - PyBytes_AS_STRING(res);
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006460 if (ressize > PY_SSIZE_T_MAX - repsize - 1) {
6461 Py_DECREF(repunicode);
6462 goto overflow;
6463 }
Martin v. Löwis011e8422009-05-05 04:43:17 +00006464 if (_PyBytes_Resize(&res, ressize+repsize-1)) {
6465 Py_DECREF(repunicode);
6466 goto onError;
6467 }
Amaury Forgeot d'Arc84ec8d92009-06-29 22:36:49 +00006468 str = PyBytes_AS_STRING(res) + respos;
Martin v. Löwis011e8422009-05-05 04:43:17 +00006469 ressize += repsize-1;
6470 }
6471 memcpy(str, PyBytes_AsString(repunicode), repsize);
6472 str += repsize;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006473 pos = newpos;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006474 Py_DECREF(repunicode);
Martin v. Löwis011e8422009-05-05 04:43:17 +00006475 break;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006476 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006477 /* need more space? (at least enough for what we
6478 have+the replacement+the rest of the string, so
6479 we won't have to check space for encodable characters) */
6480 respos = str - PyBytes_AS_STRING(res);
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006481 repsize = PyUnicode_GET_LENGTH(repunicode);
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006482 requiredsize = respos;
6483 if (requiredsize > PY_SSIZE_T_MAX - repsize)
6484 goto overflow;
6485 requiredsize += repsize;
6486 if (requiredsize > PY_SSIZE_T_MAX - (size - collend))
6487 goto overflow;
6488 requiredsize += size - collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00006489 if (requiredsize > ressize) {
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006490 if (ressize <= PY_SSIZE_T_MAX/2 && requiredsize < 2*ressize)
Benjamin Peterson29060642009-01-31 22:14:21 +00006491 requiredsize = 2*ressize;
6492 if (_PyBytes_Resize(&res, requiredsize)) {
6493 Py_DECREF(repunicode);
6494 goto onError;
6495 }
6496 str = PyBytes_AS_STRING(res) + respos;
6497 ressize = requiredsize;
6498 }
6499 /* check if there is anything unencodable in the replacement
6500 and copy it to the output */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006501 for (i = 0; repsize-->0; ++i, ++str) {
6502 c = PyUnicode_READ_CHAR(repunicode, i);
Benjamin Peterson29060642009-01-31 22:14:21 +00006503 if (c >= limit) {
Martin v. Löwis12be46c2011-11-04 19:04:15 +01006504 raise_encode_exception(&exc, encoding, unicode,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006505 pos, pos+1, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00006506 Py_DECREF(repunicode);
6507 goto onError;
6508 }
6509 *str = (char)c;
6510 }
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006511 pos = newpos;
Benjamin Peterson14339b62009-01-31 16:36:08 +00006512 Py_DECREF(repunicode);
Benjamin Peterson14339b62009-01-31 16:36:08 +00006513 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00006514 }
6515 }
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006516 /* Resize if we allocated to much */
6517 size = str - PyBytes_AS_STRING(res);
6518 if (size < ressize) { /* If this falls res will be NULL */
Alexandre Vassalottibad1b922008-12-27 09:49:09 +00006519 assert(size >= 0);
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006520 if (_PyBytes_Resize(&res, size) < 0)
6521 goto onError;
6522 }
6523
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006524 Py_XDECREF(errorHandler);
6525 Py_XDECREF(exc);
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006526 return res;
6527
Benjamin Petersona1c1be42014-09-29 18:18:57 -04006528 overflow:
6529 PyErr_SetString(PyExc_OverflowError,
6530 "encoded result is too long for a Python string");
6531
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00006532 onError:
6533 Py_XDECREF(res);
6534 Py_XDECREF(errorHandler);
6535 Py_XDECREF(exc);
6536 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006537}
6538
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006539/* Deprecated */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006540PyObject *
6541PyUnicode_EncodeLatin1(const Py_UNICODE *p,
Ezio Melotti2aa2b3b2011-09-29 00:58:57 +03006542 Py_ssize_t size,
6543 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006544{
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006545 PyObject *result;
6546 PyObject *unicode = PyUnicode_FromUnicode(p, size);
6547 if (unicode == NULL)
6548 return NULL;
6549 result = unicode_encode_ucs1(unicode, errors, 256);
6550 Py_DECREF(unicode);
6551 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006552}
6553
Alexander Belopolsky40018472011-02-26 01:02:56 +00006554PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006555_PyUnicode_AsLatin1String(PyObject *unicode, const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006556{
6557 if (!PyUnicode_Check(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006558 PyErr_BadArgument();
6559 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006560 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006561 if (PyUnicode_READY(unicode) == -1)
6562 return NULL;
6563 /* Fast path: if it is a one-byte string, construct
6564 bytes object directly. */
6565 if (PyUnicode_KIND(unicode) == PyUnicode_1BYTE_KIND)
6566 return PyBytes_FromStringAndSize(PyUnicode_DATA(unicode),
6567 PyUnicode_GET_LENGTH(unicode));
6568 /* Non-Latin-1 characters present. Defer to above function to
6569 raise the exception. */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006570 return unicode_encode_ucs1(unicode, errors, 256);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006571}
6572
6573PyObject*
6574PyUnicode_AsLatin1String(PyObject *unicode)
6575{
6576 return _PyUnicode_AsLatin1String(unicode, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006577}
6578
6579/* --- 7-bit ASCII Codec -------------------------------------------------- */
6580
Alexander Belopolsky40018472011-02-26 01:02:56 +00006581PyObject *
6582PyUnicode_DecodeASCII(const char *s,
6583 Py_ssize_t size,
6584 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006585{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006586 const char *starts = s;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006587 PyObject *unicode;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006588 int kind;
6589 void *data;
Martin v. Löwis18e16552006-02-15 17:27:45 +00006590 Py_ssize_t startinpos;
6591 Py_ssize_t endinpos;
6592 Py_ssize_t outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006593 const char *e;
6594 PyObject *errorHandler = NULL;
6595 PyObject *exc = NULL;
Tim Petersced69f82003-09-16 20:30:58 +00006596
Guido van Rossumd57fd912000-03-10 22:53:23 +00006597 if (size == 0)
Serhiy Storchaka678db842013-01-26 12:16:36 +02006598 _Py_RETURN_UNICODE_EMPTY();
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01006599
Guido van Rossumd57fd912000-03-10 22:53:23 +00006600 /* ASCII is equivalent to the first 128 ordinals in Unicode. */
Victor Stinner702c7342011-10-05 13:50:52 +02006601 if (size == 1 && (unsigned char)s[0] < 128)
6602 return get_latin1_char((unsigned char)s[0]);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006603
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006604 unicode = PyUnicode_New(size, 127);
6605 if (unicode == NULL)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006606 goto onError;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006607
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006608 e = s + size;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006609 data = PyUnicode_1BYTE_DATA(unicode);
6610 outpos = ascii_decode(s, e, (Py_UCS1 *)data);
6611 if (outpos == size)
6612 return unicode;
6613
6614 s += outpos;
6615 kind = PyUnicode_1BYTE_KIND;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006616 while (s < e) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006617 register unsigned char c = (unsigned char)*s;
6618 if (c < 128) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006619 PyUnicode_WRITE(kind, data, outpos++, c);
Benjamin Peterson29060642009-01-31 22:14:21 +00006620 ++s;
6621 }
6622 else {
6623 startinpos = s-starts;
6624 endinpos = startinpos + 1;
Benjamin Peterson29060642009-01-31 22:14:21 +00006625 if (unicode_decode_call_errorhandler(
6626 errors, &errorHandler,
6627 "ascii", "ordinal not in range(128)",
6628 &starts, &e, &startinpos, &endinpos, &exc, &s,
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006629 &unicode, &outpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00006630 goto onError;
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006631 kind = PyUnicode_KIND(unicode);
6632 data = PyUnicode_DATA(unicode);
Benjamin Peterson29060642009-01-31 22:14:21 +00006633 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00006634 }
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006635 if (unicode_resize(&unicode, outpos) < 0)
Martin v. Löwise9b11c12011-11-08 17:35:34 +01006636 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006637 Py_XDECREF(errorHandler);
6638 Py_XDECREF(exc);
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006639 assert(_PyUnicode_CheckConsistency(unicode, 1));
6640 return unicode;
Tim Petersced69f82003-09-16 20:30:58 +00006641
Benjamin Peterson29060642009-01-31 22:14:21 +00006642 onError:
Antoine Pitrouca5f91b2012-05-10 16:36:02 +02006643 Py_XDECREF(unicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006644 Py_XDECREF(errorHandler);
6645 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006646 return NULL;
6647}
6648
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006649/* Deprecated */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006650PyObject *
6651PyUnicode_EncodeASCII(const Py_UNICODE *p,
6652 Py_ssize_t size,
6653 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006654{
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006655 PyObject *result;
6656 PyObject *unicode = PyUnicode_FromUnicode(p, size);
6657 if (unicode == NULL)
6658 return NULL;
6659 result = unicode_encode_ucs1(unicode, errors, 128);
6660 Py_DECREF(unicode);
6661 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006662}
6663
Alexander Belopolsky40018472011-02-26 01:02:56 +00006664PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006665_PyUnicode_AsASCIIString(PyObject *unicode, const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006666{
6667 if (!PyUnicode_Check(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006668 PyErr_BadArgument();
6669 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006670 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006671 if (PyUnicode_READY(unicode) == -1)
6672 return NULL;
6673 /* Fast path: if it is an ASCII-only string, construct bytes object
6674 directly. Else defer to above function to raise the exception. */
6675 if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128)
6676 return PyBytes_FromStringAndSize(PyUnicode_DATA(unicode),
6677 PyUnicode_GET_LENGTH(unicode));
Martin v. Löwis23e275b2011-11-02 18:02:51 +01006678 return unicode_encode_ucs1(unicode, errors, 128);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02006679}
6680
6681PyObject *
6682PyUnicode_AsASCIIString(PyObject *unicode)
6683{
6684 return _PyUnicode_AsASCIIString(unicode, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006685}
6686
Victor Stinner99b95382011-07-04 14:23:54 +02006687#ifdef HAVE_MBCS
Guido van Rossum2ea3e142000-03-31 17:24:09 +00006688
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00006689/* --- MBCS codecs for Windows -------------------------------------------- */
Guido van Rossum2ea3e142000-03-31 17:24:09 +00006690
Hirokazu Yamamoto35302462009-03-21 13:23:27 +00006691#if SIZEOF_INT < SIZEOF_SIZE_T
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006692#define NEED_RETRY
6693#endif
6694
Victor Stinner3a50e702011-10-18 21:21:00 +02006695#ifndef WC_ERR_INVALID_CHARS
6696# define WC_ERR_INVALID_CHARS 0x0080
6697#endif
6698
6699static char*
6700code_page_name(UINT code_page, PyObject **obj)
6701{
6702 *obj = NULL;
6703 if (code_page == CP_ACP)
6704 return "mbcs";
6705 if (code_page == CP_UTF7)
6706 return "CP_UTF7";
6707 if (code_page == CP_UTF8)
6708 return "CP_UTF8";
6709
6710 *obj = PyBytes_FromFormat("cp%u", code_page);
6711 if (*obj == NULL)
6712 return NULL;
6713 return PyBytes_AS_STRING(*obj);
6714}
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006715
Alexander Belopolsky40018472011-02-26 01:02:56 +00006716static int
Victor Stinner3a50e702011-10-18 21:21:00 +02006717is_dbcs_lead_byte(UINT code_page, const char *s, int offset)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006718{
6719 const char *curr = s + offset;
Victor Stinner3a50e702011-10-18 21:21:00 +02006720 const char *prev;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006721
Victor Stinner3a50e702011-10-18 21:21:00 +02006722 if (!IsDBCSLeadByteEx(code_page, *curr))
6723 return 0;
6724
6725 prev = CharPrevExA(code_page, s, curr, 0);
6726 if (prev == curr)
6727 return 1;
6728 /* FIXME: This code is limited to "true" double-byte encodings,
6729 as it assumes an incomplete character consists of a single
6730 byte. */
6731 if (curr - prev == 2)
6732 return 1;
6733 if (!IsDBCSLeadByteEx(code_page, *prev))
6734 return 1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006735 return 0;
6736}
6737
Victor Stinner3a50e702011-10-18 21:21:00 +02006738static DWORD
6739decode_code_page_flags(UINT code_page)
6740{
6741 if (code_page == CP_UTF7) {
6742 /* The CP_UTF7 decoder only supports flags=0 */
6743 return 0;
6744 }
6745 else
6746 return MB_ERR_INVALID_CHARS;
6747}
6748
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006749/*
Victor Stinner3a50e702011-10-18 21:21:00 +02006750 * Decode a byte string from a Windows code page into unicode object in strict
6751 * mode.
6752 *
6753 * Returns consumed size if succeed, returns -2 on decode error, or raise a
6754 * WindowsError and returns -1 on other error.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006755 */
Alexander Belopolsky40018472011-02-26 01:02:56 +00006756static int
Victor Stinner3a50e702011-10-18 21:21:00 +02006757decode_code_page_strict(UINT code_page,
Victor Stinner76a31a62011-11-04 00:05:13 +01006758 PyObject **v,
Victor Stinner3a50e702011-10-18 21:21:00 +02006759 const char *in,
6760 int insize)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006761{
Victor Stinner3a50e702011-10-18 21:21:00 +02006762 const DWORD flags = decode_code_page_flags(code_page);
Victor Stinner24729f32011-11-10 20:31:37 +01006763 wchar_t *out;
Victor Stinner3a50e702011-10-18 21:21:00 +02006764 DWORD outsize;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006765
6766 /* First get the size of the result */
Victor Stinner3a50e702011-10-18 21:21:00 +02006767 assert(insize > 0);
6768 outsize = MultiByteToWideChar(code_page, flags, in, insize, NULL, 0);
6769 if (outsize <= 0)
6770 goto error;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006771
6772 if (*v == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006773 /* Create unicode object */
Victor Stinnerab595942011-12-17 04:59:06 +01006774 /* FIXME: don't use _PyUnicode_New(), but allocate a wchar_t* buffer */
Victor Stinner76a31a62011-11-04 00:05:13 +01006775 *v = (PyObject*)_PyUnicode_New(outsize);
Benjamin Peterson29060642009-01-31 22:14:21 +00006776 if (*v == NULL)
6777 return -1;
Victor Stinner3a50e702011-10-18 21:21:00 +02006778 out = PyUnicode_AS_UNICODE(*v);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006779 }
6780 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00006781 /* Extend unicode object */
Victor Stinner3a50e702011-10-18 21:21:00 +02006782 Py_ssize_t n = PyUnicode_GET_SIZE(*v);
Victor Stinner16e6a802011-12-12 13:24:15 +01006783 if (unicode_resize(v, n + outsize) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00006784 return -1;
Victor Stinner3a50e702011-10-18 21:21:00 +02006785 out = PyUnicode_AS_UNICODE(*v) + n;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006786 }
6787
6788 /* Do the conversion */
Victor Stinner3a50e702011-10-18 21:21:00 +02006789 outsize = MultiByteToWideChar(code_page, flags, in, insize, out, outsize);
6790 if (outsize <= 0)
6791 goto error;
6792 return insize;
Victor Stinner554f3f02010-06-16 23:33:54 +00006793
Victor Stinner3a50e702011-10-18 21:21:00 +02006794error:
6795 if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION)
6796 return -2;
6797 PyErr_SetFromWindowsErr(0);
Victor Stinner554f3f02010-06-16 23:33:54 +00006798 return -1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006799}
6800
Victor Stinner3a50e702011-10-18 21:21:00 +02006801/*
6802 * Decode a byte string from a code page into unicode object with an error
6803 * handler.
6804 *
6805 * Returns consumed size if succeed, or raise a WindowsError or
6806 * UnicodeDecodeError exception and returns -1 on error.
6807 */
6808static int
6809decode_code_page_errors(UINT code_page,
Victor Stinner76a31a62011-11-04 00:05:13 +01006810 PyObject **v,
6811 const char *in, const int size,
Victor Stinner3a50e702011-10-18 21:21:00 +02006812 const char *errors)
6813{
6814 const char *startin = in;
6815 const char *endin = in + size;
6816 const DWORD flags = decode_code_page_flags(code_page);
6817 /* Ideally, we should get reason from FormatMessage. This is the Windows
6818 2000 English version of the message. */
6819 const char *reason = "No mapping for the Unicode character exists "
6820 "in the target code page.";
6821 /* each step cannot decode more than 1 character, but a character can be
6822 represented as a surrogate pair */
6823 wchar_t buffer[2], *startout, *out;
6824 int insize, outsize;
6825 PyObject *errorHandler = NULL;
6826 PyObject *exc = NULL;
6827 PyObject *encoding_obj = NULL;
6828 char *encoding;
6829 DWORD err;
6830 int ret = -1;
6831
6832 assert(size > 0);
6833
6834 encoding = code_page_name(code_page, &encoding_obj);
6835 if (encoding == NULL)
6836 return -1;
6837
6838 if (errors == NULL || strcmp(errors, "strict") == 0) {
6839 /* The last error was ERROR_NO_UNICODE_TRANSLATION, then we raise a
6840 UnicodeDecodeError. */
6841 make_decode_exception(&exc, encoding, in, size, 0, 0, reason);
6842 if (exc != NULL) {
6843 PyCodec_StrictErrors(exc);
6844 Py_CLEAR(exc);
6845 }
6846 goto error;
6847 }
6848
6849 if (*v == NULL) {
6850 /* Create unicode object */
6851 if (size > PY_SSIZE_T_MAX / (Py_ssize_t)Py_ARRAY_LENGTH(buffer)) {
6852 PyErr_NoMemory();
6853 goto error;
6854 }
Victor Stinnerab595942011-12-17 04:59:06 +01006855 /* FIXME: don't use _PyUnicode_New(), but allocate a wchar_t* buffer */
Victor Stinner76a31a62011-11-04 00:05:13 +01006856 *v = (PyObject*)_PyUnicode_New(size * Py_ARRAY_LENGTH(buffer));
Victor Stinner3a50e702011-10-18 21:21:00 +02006857 if (*v == NULL)
6858 goto error;
6859 startout = PyUnicode_AS_UNICODE(*v);
6860 }
6861 else {
6862 /* Extend unicode object */
6863 Py_ssize_t n = PyUnicode_GET_SIZE(*v);
6864 if (size > (PY_SSIZE_T_MAX - n) / (Py_ssize_t)Py_ARRAY_LENGTH(buffer)) {
6865 PyErr_NoMemory();
6866 goto error;
6867 }
Victor Stinner16e6a802011-12-12 13:24:15 +01006868 if (unicode_resize(v, n + size * Py_ARRAY_LENGTH(buffer)) < 0)
Victor Stinner3a50e702011-10-18 21:21:00 +02006869 goto error;
6870 startout = PyUnicode_AS_UNICODE(*v) + n;
6871 }
6872
6873 /* Decode the byte string character per character */
6874 out = startout;
6875 while (in < endin)
6876 {
6877 /* Decode a character */
6878 insize = 1;
6879 do
6880 {
6881 outsize = MultiByteToWideChar(code_page, flags,
6882 in, insize,
6883 buffer, Py_ARRAY_LENGTH(buffer));
6884 if (outsize > 0)
6885 break;
6886 err = GetLastError();
6887 if (err != ERROR_NO_UNICODE_TRANSLATION
6888 && err != ERROR_INSUFFICIENT_BUFFER)
6889 {
6890 PyErr_SetFromWindowsErr(0);
6891 goto error;
6892 }
6893 insize++;
6894 }
6895 /* 4=maximum length of a UTF-8 sequence */
6896 while (insize <= 4 && (in + insize) <= endin);
6897
6898 if (outsize <= 0) {
6899 Py_ssize_t startinpos, endinpos, outpos;
6900
6901 startinpos = in - startin;
6902 endinpos = startinpos + 1;
6903 outpos = out - PyUnicode_AS_UNICODE(*v);
6904 if (unicode_decode_call_errorhandler(
6905 errors, &errorHandler,
6906 encoding, reason,
6907 &startin, &endin, &startinpos, &endinpos, &exc, &in,
Victor Stinner596a6c42011-11-09 00:02:18 +01006908 v, &outpos))
Victor Stinner3a50e702011-10-18 21:21:00 +02006909 {
6910 goto error;
6911 }
Victor Stinner596a6c42011-11-09 00:02:18 +01006912 out = PyUnicode_AS_UNICODE(*v) + outpos;
Victor Stinner3a50e702011-10-18 21:21:00 +02006913 }
6914 else {
6915 in += insize;
6916 memcpy(out, buffer, outsize * sizeof(wchar_t));
6917 out += outsize;
6918 }
6919 }
6920
6921 /* write a NUL character at the end */
6922 *out = 0;
6923
6924 /* Extend unicode object */
6925 outsize = out - startout;
6926 assert(outsize <= PyUnicode_WSTR_LENGTH(*v));
Victor Stinner16e6a802011-12-12 13:24:15 +01006927 if (unicode_resize(v, outsize) < 0)
Victor Stinner3a50e702011-10-18 21:21:00 +02006928 goto error;
Victor Stinner76a31a62011-11-04 00:05:13 +01006929 ret = size;
Victor Stinner3a50e702011-10-18 21:21:00 +02006930
6931error:
6932 Py_XDECREF(encoding_obj);
6933 Py_XDECREF(errorHandler);
6934 Py_XDECREF(exc);
6935 return ret;
6936}
6937
Victor Stinner3a50e702011-10-18 21:21:00 +02006938static PyObject *
6939decode_code_page_stateful(int code_page,
Victor Stinner76a31a62011-11-04 00:05:13 +01006940 const char *s, Py_ssize_t size,
6941 const char *errors, Py_ssize_t *consumed)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006942{
Victor Stinner76a31a62011-11-04 00:05:13 +01006943 PyObject *v = NULL;
6944 int chunk_size, final, converted, done;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006945
Victor Stinner3a50e702011-10-18 21:21:00 +02006946 if (code_page < 0) {
6947 PyErr_SetString(PyExc_ValueError, "invalid code page number");
6948 return NULL;
6949 }
6950
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006951 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00006952 *consumed = 0;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006953
Victor Stinner76a31a62011-11-04 00:05:13 +01006954 do
6955 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006956#ifdef NEED_RETRY
Victor Stinner76a31a62011-11-04 00:05:13 +01006957 if (size > INT_MAX) {
6958 chunk_size = INT_MAX;
6959 final = 0;
6960 done = 0;
6961 }
6962 else
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006963#endif
Victor Stinner76a31a62011-11-04 00:05:13 +01006964 {
6965 chunk_size = (int)size;
6966 final = (consumed == NULL);
6967 done = 1;
6968 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006969
Victor Stinner76a31a62011-11-04 00:05:13 +01006970 /* Skip trailing lead-byte unless 'final' is set */
6971 if (!final && is_dbcs_lead_byte(code_page, s, chunk_size - 1))
6972 --chunk_size;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006973
Victor Stinner76a31a62011-11-04 00:05:13 +01006974 if (chunk_size == 0 && done) {
6975 if (v != NULL)
6976 break;
Serhiy Storchaka678db842013-01-26 12:16:36 +02006977 _Py_RETURN_UNICODE_EMPTY();
Victor Stinner76a31a62011-11-04 00:05:13 +01006978 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006979
Victor Stinner76a31a62011-11-04 00:05:13 +01006980
6981 converted = decode_code_page_strict(code_page, &v,
6982 s, chunk_size);
6983 if (converted == -2)
6984 converted = decode_code_page_errors(code_page, &v,
6985 s, chunk_size,
6986 errors);
6987 assert(converted != 0);
6988
6989 if (converted < 0) {
6990 Py_XDECREF(v);
6991 return NULL;
6992 }
6993
6994 if (consumed)
6995 *consumed += converted;
6996
6997 s += converted;
6998 size -= converted;
6999 } while (!done);
Victor Stinner3a50e702011-10-18 21:21:00 +02007000
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01007001 return unicode_result(v);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007002}
7003
Alexander Belopolsky40018472011-02-26 01:02:56 +00007004PyObject *
Victor Stinner3a50e702011-10-18 21:21:00 +02007005PyUnicode_DecodeCodePageStateful(int code_page,
7006 const char *s,
7007 Py_ssize_t size,
7008 const char *errors,
7009 Py_ssize_t *consumed)
7010{
7011 return decode_code_page_stateful(code_page, s, size, errors, consumed);
7012}
7013
7014PyObject *
7015PyUnicode_DecodeMBCSStateful(const char *s,
7016 Py_ssize_t size,
7017 const char *errors,
7018 Py_ssize_t *consumed)
7019{
7020 return decode_code_page_stateful(CP_ACP, s, size, errors, consumed);
7021}
7022
7023PyObject *
Alexander Belopolsky40018472011-02-26 01:02:56 +00007024PyUnicode_DecodeMBCS(const char *s,
7025 Py_ssize_t size,
7026 const char *errors)
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007027{
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007028 return PyUnicode_DecodeMBCSStateful(s, size, errors, NULL);
7029}
7030
Victor Stinner3a50e702011-10-18 21:21:00 +02007031static DWORD
7032encode_code_page_flags(UINT code_page, const char *errors)
7033{
7034 if (code_page == CP_UTF8) {
7035 if (winver.dwMajorVersion >= 6)
7036 /* CP_UTF8 supports WC_ERR_INVALID_CHARS on Windows Vista
7037 and later */
7038 return WC_ERR_INVALID_CHARS;
7039 else
7040 /* CP_UTF8 only supports flags=0 on Windows older than Vista */
7041 return 0;
7042 }
7043 else if (code_page == CP_UTF7) {
7044 /* CP_UTF7 only supports flags=0 */
7045 return 0;
7046 }
7047 else {
7048 if (errors != NULL && strcmp(errors, "replace") == 0)
7049 return 0;
7050 else
7051 return WC_NO_BEST_FIT_CHARS;
7052 }
7053}
7054
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007055/*
Victor Stinner3a50e702011-10-18 21:21:00 +02007056 * Encode a Unicode string to a Windows code page into a byte string in strict
7057 * mode.
7058 *
7059 * Returns consumed characters if succeed, returns -2 on encode error, or raise
7060 * a WindowsError and returns -1 on other error.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007061 */
Alexander Belopolsky40018472011-02-26 01:02:56 +00007062static int
Victor Stinner3a50e702011-10-18 21:21:00 +02007063encode_code_page_strict(UINT code_page, PyObject **outbytes,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007064 PyObject *unicode, Py_ssize_t offset, int len,
Victor Stinner3a50e702011-10-18 21:21:00 +02007065 const char* errors)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007066{
Victor Stinner554f3f02010-06-16 23:33:54 +00007067 BOOL usedDefaultChar = FALSE;
Victor Stinner3a50e702011-10-18 21:21:00 +02007068 BOOL *pusedDefaultChar = &usedDefaultChar;
7069 int outsize;
Victor Stinner554f3f02010-06-16 23:33:54 +00007070 PyObject *exc = NULL;
Victor Stinner24729f32011-11-10 20:31:37 +01007071 wchar_t *p;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007072 Py_ssize_t size;
Victor Stinner3a50e702011-10-18 21:21:00 +02007073 const DWORD flags = encode_code_page_flags(code_page, NULL);
7074 char *out;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007075 /* Create a substring so that we can get the UTF-16 representation
7076 of just the slice under consideration. */
7077 PyObject *substring;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007078
Martin v. Löwis3d325192011-11-04 18:23:06 +01007079 assert(len > 0);
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007080
Victor Stinner3a50e702011-10-18 21:21:00 +02007081 if (code_page != CP_UTF8 && code_page != CP_UTF7)
Victor Stinner554f3f02010-06-16 23:33:54 +00007082 pusedDefaultChar = &usedDefaultChar;
Victor Stinner3a50e702011-10-18 21:21:00 +02007083 else
Victor Stinner554f3f02010-06-16 23:33:54 +00007084 pusedDefaultChar = NULL;
Victor Stinner554f3f02010-06-16 23:33:54 +00007085
Victor Stinner2fc507f2011-11-04 20:06:39 +01007086 substring = PyUnicode_Substring(unicode, offset, offset+len);
7087 if (substring == NULL)
7088 return -1;
7089 p = PyUnicode_AsUnicodeAndSize(substring, &size);
7090 if (p == NULL) {
7091 Py_DECREF(substring);
7092 return -1;
7093 }
Martin v. Löwis3d325192011-11-04 18:23:06 +01007094
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007095 /* First get the size of the result */
Victor Stinner3a50e702011-10-18 21:21:00 +02007096 outsize = WideCharToMultiByte(code_page, flags,
7097 p, size,
7098 NULL, 0,
7099 NULL, pusedDefaultChar);
7100 if (outsize <= 0)
7101 goto error;
7102 /* If we used a default char, then we failed! */
Victor Stinner2fc507f2011-11-04 20:06:39 +01007103 if (pusedDefaultChar && *pusedDefaultChar) {
7104 Py_DECREF(substring);
Victor Stinner3a50e702011-10-18 21:21:00 +02007105 return -2;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007106 }
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007107
Victor Stinner3a50e702011-10-18 21:21:00 +02007108 if (*outbytes == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007109 /* Create string object */
Victor Stinner3a50e702011-10-18 21:21:00 +02007110 *outbytes = PyBytes_FromStringAndSize(NULL, outsize);
Victor Stinner2fc507f2011-11-04 20:06:39 +01007111 if (*outbytes == NULL) {
7112 Py_DECREF(substring);
Benjamin Peterson29060642009-01-31 22:14:21 +00007113 return -1;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007114 }
Victor Stinner3a50e702011-10-18 21:21:00 +02007115 out = PyBytes_AS_STRING(*outbytes);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007116 }
7117 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007118 /* Extend string object */
Victor Stinner3a50e702011-10-18 21:21:00 +02007119 const Py_ssize_t n = PyBytes_Size(*outbytes);
7120 if (outsize > PY_SSIZE_T_MAX - n) {
7121 PyErr_NoMemory();
Victor Stinner2fc507f2011-11-04 20:06:39 +01007122 Py_DECREF(substring);
Benjamin Peterson29060642009-01-31 22:14:21 +00007123 return -1;
Victor Stinner3a50e702011-10-18 21:21:00 +02007124 }
Victor Stinner2fc507f2011-11-04 20:06:39 +01007125 if (_PyBytes_Resize(outbytes, n + outsize) < 0) {
7126 Py_DECREF(substring);
Victor Stinner3a50e702011-10-18 21:21:00 +02007127 return -1;
Victor Stinner2fc507f2011-11-04 20:06:39 +01007128 }
Victor Stinner3a50e702011-10-18 21:21:00 +02007129 out = PyBytes_AS_STRING(*outbytes) + n;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007130 }
7131
7132 /* Do the conversion */
Victor Stinner3a50e702011-10-18 21:21:00 +02007133 outsize = WideCharToMultiByte(code_page, flags,
7134 p, size,
7135 out, outsize,
7136 NULL, pusedDefaultChar);
Victor Stinner2fc507f2011-11-04 20:06:39 +01007137 Py_CLEAR(substring);
Victor Stinner3a50e702011-10-18 21:21:00 +02007138 if (outsize <= 0)
7139 goto error;
7140 if (pusedDefaultChar && *pusedDefaultChar)
7141 return -2;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007142 return 0;
Victor Stinner554f3f02010-06-16 23:33:54 +00007143
Victor Stinner3a50e702011-10-18 21:21:00 +02007144error:
Victor Stinner2fc507f2011-11-04 20:06:39 +01007145 Py_XDECREF(substring);
Victor Stinner3a50e702011-10-18 21:21:00 +02007146 if (GetLastError() == ERROR_NO_UNICODE_TRANSLATION)
7147 return -2;
7148 PyErr_SetFromWindowsErr(0);
Victor Stinner554f3f02010-06-16 23:33:54 +00007149 return -1;
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007150}
7151
Victor Stinner3a50e702011-10-18 21:21:00 +02007152/*
7153 * Encode a Unicode string to a Windows code page into a byte string using a
7154 * error handler.
7155 *
7156 * Returns consumed characters if succeed, or raise a WindowsError and returns
7157 * -1 on other error.
7158 */
7159static int
7160encode_code_page_errors(UINT code_page, PyObject **outbytes,
Victor Stinner7581cef2011-11-03 22:32:33 +01007161 PyObject *unicode, Py_ssize_t unicode_offset,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007162 Py_ssize_t insize, const char* errors)
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007163{
Victor Stinner3a50e702011-10-18 21:21:00 +02007164 const DWORD flags = encode_code_page_flags(code_page, errors);
Victor Stinner2fc507f2011-11-04 20:06:39 +01007165 Py_ssize_t pos = unicode_offset;
7166 Py_ssize_t endin = unicode_offset + insize;
Victor Stinner3a50e702011-10-18 21:21:00 +02007167 /* Ideally, we should get reason from FormatMessage. This is the Windows
7168 2000 English version of the message. */
7169 const char *reason = "invalid character";
7170 /* 4=maximum length of a UTF-8 sequence */
7171 char buffer[4];
7172 BOOL usedDefaultChar = FALSE, *pusedDefaultChar;
7173 Py_ssize_t outsize;
7174 char *out;
Victor Stinner3a50e702011-10-18 21:21:00 +02007175 PyObject *errorHandler = NULL;
7176 PyObject *exc = NULL;
7177 PyObject *encoding_obj = NULL;
7178 char *encoding;
Martin v. Löwis3d325192011-11-04 18:23:06 +01007179 Py_ssize_t newpos, newoutsize;
Victor Stinner3a50e702011-10-18 21:21:00 +02007180 PyObject *rep;
7181 int ret = -1;
7182
7183 assert(insize > 0);
7184
7185 encoding = code_page_name(code_page, &encoding_obj);
7186 if (encoding == NULL)
7187 return -1;
7188
7189 if (errors == NULL || strcmp(errors, "strict") == 0) {
7190 /* The last error was ERROR_NO_UNICODE_TRANSLATION,
7191 then we raise a UnicodeEncodeError. */
Martin v. Löwis12be46c2011-11-04 19:04:15 +01007192 make_encode_exception(&exc, encoding, unicode, 0, 0, reason);
Victor Stinner3a50e702011-10-18 21:21:00 +02007193 if (exc != NULL) {
7194 PyCodec_StrictErrors(exc);
7195 Py_DECREF(exc);
7196 }
7197 Py_XDECREF(encoding_obj);
7198 return -1;
7199 }
7200
7201 if (code_page != CP_UTF8 && code_page != CP_UTF7)
7202 pusedDefaultChar = &usedDefaultChar;
7203 else
7204 pusedDefaultChar = NULL;
7205
7206 if (Py_ARRAY_LENGTH(buffer) > PY_SSIZE_T_MAX / insize) {
7207 PyErr_NoMemory();
7208 goto error;
7209 }
7210 outsize = insize * Py_ARRAY_LENGTH(buffer);
7211
7212 if (*outbytes == NULL) {
7213 /* Create string object */
7214 *outbytes = PyBytes_FromStringAndSize(NULL, outsize);
7215 if (*outbytes == NULL)
7216 goto error;
7217 out = PyBytes_AS_STRING(*outbytes);
7218 }
7219 else {
7220 /* Extend string object */
7221 Py_ssize_t n = PyBytes_Size(*outbytes);
7222 if (n > PY_SSIZE_T_MAX - outsize) {
7223 PyErr_NoMemory();
7224 goto error;
7225 }
7226 if (_PyBytes_Resize(outbytes, n + outsize) < 0)
7227 goto error;
7228 out = PyBytes_AS_STRING(*outbytes) + n;
7229 }
7230
7231 /* Encode the string character per character */
Martin v. Löwis3d325192011-11-04 18:23:06 +01007232 while (pos < endin)
Victor Stinner3a50e702011-10-18 21:21:00 +02007233 {
Victor Stinner2fc507f2011-11-04 20:06:39 +01007234 Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, pos);
7235 wchar_t chars[2];
7236 int charsize;
7237 if (ch < 0x10000) {
7238 chars[0] = (wchar_t)ch;
7239 charsize = 1;
7240 }
7241 else {
7242 ch -= 0x10000;
7243 chars[0] = 0xd800 + (ch >> 10);
7244 chars[1] = 0xdc00 + (ch & 0x3ff);
7245 charsize = 2;
7246 }
7247
Victor Stinner3a50e702011-10-18 21:21:00 +02007248 outsize = WideCharToMultiByte(code_page, flags,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007249 chars, charsize,
Victor Stinner3a50e702011-10-18 21:21:00 +02007250 buffer, Py_ARRAY_LENGTH(buffer),
7251 NULL, pusedDefaultChar);
7252 if (outsize > 0) {
7253 if (pusedDefaultChar == NULL || !(*pusedDefaultChar))
7254 {
Martin v. Löwis3d325192011-11-04 18:23:06 +01007255 pos++;
Victor Stinner3a50e702011-10-18 21:21:00 +02007256 memcpy(out, buffer, outsize);
7257 out += outsize;
7258 continue;
7259 }
7260 }
7261 else if (GetLastError() != ERROR_NO_UNICODE_TRANSLATION) {
7262 PyErr_SetFromWindowsErr(0);
7263 goto error;
7264 }
7265
Victor Stinner3a50e702011-10-18 21:21:00 +02007266 rep = unicode_encode_call_errorhandler(
7267 errors, &errorHandler, encoding, reason,
Victor Stinner7581cef2011-11-03 22:32:33 +01007268 unicode, &exc,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007269 pos, pos + 1, &newpos);
Victor Stinner3a50e702011-10-18 21:21:00 +02007270 if (rep == NULL)
7271 goto error;
Martin v. Löwis3d325192011-11-04 18:23:06 +01007272 pos = newpos;
Victor Stinner3a50e702011-10-18 21:21:00 +02007273
7274 if (PyBytes_Check(rep)) {
7275 outsize = PyBytes_GET_SIZE(rep);
7276 if (outsize != 1) {
7277 Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes);
7278 newoutsize = PyBytes_GET_SIZE(*outbytes) + (outsize - 1);
7279 if (_PyBytes_Resize(outbytes, newoutsize) < 0) {
7280 Py_DECREF(rep);
7281 goto error;
7282 }
7283 out = PyBytes_AS_STRING(*outbytes) + offset;
7284 }
7285 memcpy(out, PyBytes_AS_STRING(rep), outsize);
7286 out += outsize;
7287 }
7288 else {
7289 Py_ssize_t i;
7290 enum PyUnicode_Kind kind;
7291 void *data;
7292
Benjamin Petersonbac79492012-01-14 13:34:47 -05007293 if (PyUnicode_READY(rep) == -1) {
Victor Stinner3a50e702011-10-18 21:21:00 +02007294 Py_DECREF(rep);
7295 goto error;
7296 }
7297
7298 outsize = PyUnicode_GET_LENGTH(rep);
7299 if (outsize != 1) {
7300 Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes);
7301 newoutsize = PyBytes_GET_SIZE(*outbytes) + (outsize - 1);
7302 if (_PyBytes_Resize(outbytes, newoutsize) < 0) {
7303 Py_DECREF(rep);
7304 goto error;
7305 }
7306 out = PyBytes_AS_STRING(*outbytes) + offset;
7307 }
7308 kind = PyUnicode_KIND(rep);
7309 data = PyUnicode_DATA(rep);
7310 for (i=0; i < outsize; i++) {
7311 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
7312 if (ch > 127) {
Martin v. Löwis12be46c2011-11-04 19:04:15 +01007313 raise_encode_exception(&exc,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007314 encoding, unicode,
7315 pos, pos + 1,
Victor Stinner3a50e702011-10-18 21:21:00 +02007316 "unable to encode error handler result to ASCII");
7317 Py_DECREF(rep);
7318 goto error;
7319 }
7320 *out = (unsigned char)ch;
7321 out++;
7322 }
7323 }
7324 Py_DECREF(rep);
7325 }
7326 /* write a NUL byte */
7327 *out = 0;
7328 outsize = out - PyBytes_AS_STRING(*outbytes);
7329 assert(outsize <= PyBytes_GET_SIZE(*outbytes));
7330 if (_PyBytes_Resize(outbytes, outsize) < 0)
7331 goto error;
7332 ret = 0;
7333
7334error:
7335 Py_XDECREF(encoding_obj);
7336 Py_XDECREF(errorHandler);
7337 Py_XDECREF(exc);
7338 return ret;
7339}
7340
Victor Stinner3a50e702011-10-18 21:21:00 +02007341static PyObject *
7342encode_code_page(int code_page,
Victor Stinner7581cef2011-11-03 22:32:33 +01007343 PyObject *unicode,
Victor Stinner3a50e702011-10-18 21:21:00 +02007344 const char *errors)
7345{
Martin v. Löwis3d325192011-11-04 18:23:06 +01007346 Py_ssize_t len;
Victor Stinner3a50e702011-10-18 21:21:00 +02007347 PyObject *outbytes = NULL;
Victor Stinner7581cef2011-11-03 22:32:33 +01007348 Py_ssize_t offset;
Victor Stinner76a31a62011-11-04 00:05:13 +01007349 int chunk_len, ret, done;
Victor Stinner7581cef2011-11-03 22:32:33 +01007350
Benjamin Petersonbac79492012-01-14 13:34:47 -05007351 if (PyUnicode_READY(unicode) == -1)
Victor Stinner2fc507f2011-11-04 20:06:39 +01007352 return NULL;
7353 len = PyUnicode_GET_LENGTH(unicode);
Guido van Rossum03e29f12000-05-04 15:52:20 +00007354
Victor Stinner3a50e702011-10-18 21:21:00 +02007355 if (code_page < 0) {
7356 PyErr_SetString(PyExc_ValueError, "invalid code page number");
7357 return NULL;
7358 }
7359
Martin v. Löwis3d325192011-11-04 18:23:06 +01007360 if (len == 0)
Victor Stinner76a31a62011-11-04 00:05:13 +01007361 return PyBytes_FromStringAndSize(NULL, 0);
7362
Victor Stinner7581cef2011-11-03 22:32:33 +01007363 offset = 0;
7364 do
7365 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007366#ifdef NEED_RETRY
Victor Stinner2fc507f2011-11-04 20:06:39 +01007367 /* UTF-16 encoding may double the size, so use only INT_MAX/2
Martin v. Löwis3d325192011-11-04 18:23:06 +01007368 chunks. */
7369 if (len > INT_MAX/2) {
7370 chunk_len = INT_MAX/2;
Victor Stinner76a31a62011-11-04 00:05:13 +01007371 done = 0;
7372 }
Victor Stinner7581cef2011-11-03 22:32:33 +01007373 else
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007374#endif
Victor Stinner76a31a62011-11-04 00:05:13 +01007375 {
Martin v. Löwis3d325192011-11-04 18:23:06 +01007376 chunk_len = (int)len;
Victor Stinner76a31a62011-11-04 00:05:13 +01007377 done = 1;
7378 }
Victor Stinner2fc507f2011-11-04 20:06:39 +01007379
Victor Stinner76a31a62011-11-04 00:05:13 +01007380 ret = encode_code_page_strict(code_page, &outbytes,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007381 unicode, offset, chunk_len,
Victor Stinner76a31a62011-11-04 00:05:13 +01007382 errors);
7383 if (ret == -2)
7384 ret = encode_code_page_errors(code_page, &outbytes,
7385 unicode, offset,
Martin v. Löwis3d325192011-11-04 18:23:06 +01007386 chunk_len, errors);
Victor Stinner7581cef2011-11-03 22:32:33 +01007387 if (ret < 0) {
7388 Py_XDECREF(outbytes);
7389 return NULL;
7390 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007391
Victor Stinner7581cef2011-11-03 22:32:33 +01007392 offset += chunk_len;
Martin v. Löwis3d325192011-11-04 18:23:06 +01007393 len -= chunk_len;
Victor Stinner76a31a62011-11-04 00:05:13 +01007394 } while (!done);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007395
Victor Stinner3a50e702011-10-18 21:21:00 +02007396 return outbytes;
7397}
7398
7399PyObject *
7400PyUnicode_EncodeMBCS(const Py_UNICODE *p,
7401 Py_ssize_t size,
7402 const char *errors)
7403{
Victor Stinner7581cef2011-11-03 22:32:33 +01007404 PyObject *unicode, *res;
7405 unicode = PyUnicode_FromUnicode(p, size);
7406 if (unicode == NULL)
7407 return NULL;
7408 res = encode_code_page(CP_ACP, unicode, errors);
7409 Py_DECREF(unicode);
7410 return res;
Victor Stinner3a50e702011-10-18 21:21:00 +02007411}
7412
7413PyObject *
7414PyUnicode_EncodeCodePage(int code_page,
7415 PyObject *unicode,
7416 const char *errors)
7417{
Victor Stinner7581cef2011-11-03 22:32:33 +01007418 return encode_code_page(code_page, unicode, errors);
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007419}
Guido van Rossum2ea3e142000-03-31 17:24:09 +00007420
Alexander Belopolsky40018472011-02-26 01:02:56 +00007421PyObject *
7422PyUnicode_AsMBCSString(PyObject *unicode)
Mark Hammond0ccda1e2003-07-01 00:13:27 +00007423{
7424 if (!PyUnicode_Check(unicode)) {
7425 PyErr_BadArgument();
7426 return NULL;
7427 }
Victor Stinner7581cef2011-11-03 22:32:33 +01007428 return PyUnicode_EncodeCodePage(CP_ACP, unicode, NULL);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00007429}
7430
Thomas Wouters0e3f5912006-08-11 14:57:12 +00007431#undef NEED_RETRY
7432
Victor Stinner99b95382011-07-04 14:23:54 +02007433#endif /* HAVE_MBCS */
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00007434
Guido van Rossumd57fd912000-03-10 22:53:23 +00007435/* --- Character Mapping Codec -------------------------------------------- */
7436
Alexander Belopolsky40018472011-02-26 01:02:56 +00007437PyObject *
7438PyUnicode_DecodeCharmap(const char *s,
7439 Py_ssize_t size,
7440 PyObject *mapping,
7441 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007442{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007443 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007444 Py_ssize_t startinpos;
7445 Py_ssize_t endinpos;
7446 Py_ssize_t outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007447 const char *e;
Victor Stinner7931d9a2011-11-04 00:22:48 +01007448 PyObject *v;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007449 Py_ssize_t extrachars = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007450 PyObject *errorHandler = NULL;
7451 PyObject *exc = NULL;
Tim Petersced69f82003-09-16 20:30:58 +00007452
Guido van Rossumd57fd912000-03-10 22:53:23 +00007453 /* Default to Latin-1 */
7454 if (mapping == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007455 return PyUnicode_DecodeLatin1(s, size, errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007456
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007457 v = PyUnicode_New(size, 127);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007458 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007459 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007460 if (size == 0)
Victor Stinner7931d9a2011-11-04 00:22:48 +01007461 return v;
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007462 outpos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007463 e = s + size;
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00007464 if (PyUnicode_CheckExact(mapping)) {
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007465 Py_ssize_t maplen;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007466 enum PyUnicode_Kind mapkind;
7467 void *mapdata;
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007468 Py_UCS4 x;
7469
Benjamin Petersonbac79492012-01-14 13:34:47 -05007470 if (PyUnicode_READY(mapping) == -1)
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007471 return NULL;
7472
7473 maplen = PyUnicode_GET_LENGTH(mapping);
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007474 mapdata = PyUnicode_DATA(mapping);
7475 mapkind = PyUnicode_KIND(mapping);
Benjamin Peterson29060642009-01-31 22:14:21 +00007476 while (s < e) {
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007477 unsigned char ch;
7478 if (mapkind == PyUnicode_2BYTE_KIND && maplen >= 256) {
7479 enum PyUnicode_Kind outkind = PyUnicode_KIND(v);
7480 if (outkind == PyUnicode_1BYTE_KIND) {
7481 void *outdata = PyUnicode_DATA(v);
7482 Py_UCS4 maxchar = PyUnicode_MAX_CHAR_VALUE(v);
7483 while (s < e) {
7484 unsigned char ch = *s;
7485 x = PyUnicode_READ(PyUnicode_2BYTE_KIND, mapdata, ch);
7486 if (x > maxchar)
7487 goto Error;
7488 PyUnicode_WRITE(PyUnicode_1BYTE_KIND, outdata, outpos++, x);
7489 ++s;
7490 }
7491 break;
7492 }
7493 else if (outkind == PyUnicode_2BYTE_KIND) {
7494 void *outdata = PyUnicode_DATA(v);
7495 while (s < e) {
7496 unsigned char ch = *s;
7497 x = PyUnicode_READ(PyUnicode_2BYTE_KIND, mapdata, ch);
7498 if (x == 0xFFFE)
7499 goto Error;
7500 PyUnicode_WRITE(PyUnicode_2BYTE_KIND, outdata, outpos++, x);
7501 ++s;
7502 }
7503 break;
7504 }
7505 }
7506 ch = *s;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007507
Benjamin Peterson29060642009-01-31 22:14:21 +00007508 if (ch < maplen)
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007509 x = PyUnicode_READ(mapkind, mapdata, ch);
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007510 else
7511 x = 0xfffe; /* invalid value */
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007512Error:
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007513 if (x == 0xfffe)
7514 {
Benjamin Peterson29060642009-01-31 22:14:21 +00007515 /* undefined mapping */
Benjamin Peterson29060642009-01-31 22:14:21 +00007516 startinpos = s-starts;
7517 endinpos = startinpos+1;
7518 if (unicode_decode_call_errorhandler(
7519 errors, &errorHandler,
7520 "charmap", "character maps to <undefined>",
7521 &starts, &e, &startinpos, &endinpos, &exc, &s,
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007522 &v, &outpos)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007523 goto onError;
7524 }
7525 continue;
7526 }
Victor Stinnerebf3ba82011-11-10 20:30:22 +01007527
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007528 if (unicode_putchar(&v, &outpos, x) < 0)
7529 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00007530 ++s;
Benjamin Peterson14339b62009-01-31 16:36:08 +00007531 }
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00007532 }
7533 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007534 while (s < e) {
7535 unsigned char ch = *s;
7536 PyObject *w, *x;
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00007537
Benjamin Peterson29060642009-01-31 22:14:21 +00007538 /* Get mapping (char ordinal -> integer, Unicode char or None) */
7539 w = PyLong_FromLong((long)ch);
7540 if (w == NULL)
7541 goto onError;
7542 x = PyObject_GetItem(mapping, w);
7543 Py_DECREF(w);
7544 if (x == NULL) {
7545 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
7546 /* No mapping found means: mapping is undefined. */
7547 PyErr_Clear();
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02007548 goto Undefined;
Benjamin Peterson29060642009-01-31 22:14:21 +00007549 } else
7550 goto onError;
7551 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00007552
Benjamin Peterson29060642009-01-31 22:14:21 +00007553 /* Apply mapping */
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02007554 if (x == Py_None)
7555 goto Undefined;
Benjamin Peterson29060642009-01-31 22:14:21 +00007556 if (PyLong_Check(x)) {
7557 long value = PyLong_AS_LONG(x);
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02007558 if (value == 0xFFFE)
7559 goto Undefined;
Antoine Pitroua1f76552012-09-23 20:00:04 +02007560 if (value < 0 || value > MAX_UNICODE) {
7561 PyErr_Format(PyExc_TypeError,
7562 "character mapping must be in range(0x%lx)",
7563 (unsigned long)MAX_UNICODE + 1);
Benjamin Peterson29060642009-01-31 22:14:21 +00007564 Py_DECREF(x);
7565 goto onError;
7566 }
Serhiy Storchakaafb1cb52013-01-29 12:13:22 +02007567 if (unicode_putchar(&v, &outpos, value) < 0) {
7568 Py_DECREF(x);
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007569 goto onError;
Serhiy Storchakaafb1cb52013-01-29 12:13:22 +02007570 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007571 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007572 else if (PyUnicode_Check(x)) {
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007573 Py_ssize_t targetsize;
Benjamin Peterson14339b62009-01-31 16:36:08 +00007574
Serhiy Storchakaafb1cb52013-01-29 12:13:22 +02007575 if (PyUnicode_READY(x) == -1) {
7576 Py_DECREF(x);
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007577 goto onError;
Serhiy Storchakaafb1cb52013-01-29 12:13:22 +02007578 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007579 targetsize = PyUnicode_GET_LENGTH(x);
7580
7581 if (targetsize == 1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007582 /* 1-1 mapping */
Serhiy Storchaka45d16d92013-01-15 15:01:20 +02007583 Py_UCS4 value = PyUnicode_READ_CHAR(x, 0);
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02007584 if (value == 0xFFFE)
7585 goto Undefined;
Serhiy Storchakaafb1cb52013-01-29 12:13:22 +02007586 if (unicode_putchar(&v, &outpos, value) < 0) {
7587 Py_DECREF(x);
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007588 goto onError;
Serhiy Storchakaafb1cb52013-01-29 12:13:22 +02007589 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007590 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007591 else if (targetsize > 1) {
7592 /* 1-n mapping */
7593 if (targetsize > extrachars) {
7594 /* resize first */
Benjamin Peterson29060642009-01-31 22:14:21 +00007595 Py_ssize_t needed = (targetsize - extrachars) + \
7596 (targetsize << 2);
7597 extrachars += needed;
7598 /* XXX overflow detection missing */
Victor Stinner16e6a802011-12-12 13:24:15 +01007599 if (unicode_resize(&v,
7600 PyUnicode_GET_LENGTH(v) + needed) < 0)
7601 {
Benjamin Peterson29060642009-01-31 22:14:21 +00007602 Py_DECREF(x);
7603 goto onError;
7604 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007605 }
Serhiy Storchakaafb1cb52013-01-29 12:13:22 +02007606 if (unicode_widen(&v, outpos,
7607 PyUnicode_MAX_CHAR_VALUE(x)) < 0) {
7608 Py_DECREF(x);
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007609 goto onError;
Serhiy Storchakaafb1cb52013-01-29 12:13:22 +02007610 }
Martin v. Löwise9b11c12011-11-08 17:35:34 +01007611 PyUnicode_CopyCharacters(v, outpos, x, 0, targetsize);
7612 outpos += targetsize;
Benjamin Peterson29060642009-01-31 22:14:21 +00007613 extrachars -= targetsize;
7614 }
7615 /* 1-0 mapping: skip the character */
7616 }
7617 else {
7618 /* wrong return value */
7619 PyErr_SetString(PyExc_TypeError,
7620 "character mapping must return integer, None or str");
Benjamin Peterson14339b62009-01-31 16:36:08 +00007621 Py_DECREF(x);
7622 goto onError;
7623 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007624 Py_DECREF(x);
7625 ++s;
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02007626 continue;
7627Undefined:
7628 /* undefined mapping */
7629 Py_XDECREF(x);
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02007630 startinpos = s-starts;
7631 endinpos = startinpos+1;
7632 if (unicode_decode_call_errorhandler(
7633 errors, &errorHandler,
7634 "charmap", "character maps to <undefined>",
7635 &starts, &e, &startinpos, &endinpos, &exc, &s,
Serhiy Storchaka45d16d92013-01-15 15:01:20 +02007636 &v, &outpos)) {
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02007637 goto onError;
7638 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00007639 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007640 }
Victor Stinner16e6a802011-12-12 13:24:15 +01007641 if (unicode_resize(&v, outpos) < 0)
Antoine Pitroua8f63c02011-11-08 18:37:16 +01007642 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007643 Py_XDECREF(errorHandler);
7644 Py_XDECREF(exc);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01007645 return unicode_result(v);
Tim Petersced69f82003-09-16 20:30:58 +00007646
Benjamin Peterson29060642009-01-31 22:14:21 +00007647 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007648 Py_XDECREF(errorHandler);
7649 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007650 Py_XDECREF(v);
7651 return NULL;
7652}
7653
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007654/* Charmap encoding: the lookup table */
7655
Alexander Belopolsky40018472011-02-26 01:02:56 +00007656struct encoding_map {
Benjamin Peterson29060642009-01-31 22:14:21 +00007657 PyObject_HEAD
7658 unsigned char level1[32];
7659 int count2, count3;
7660 unsigned char level23[1];
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007661};
7662
7663static PyObject*
7664encoding_map_size(PyObject *obj, PyObject* args)
7665{
7666 struct encoding_map *map = (struct encoding_map*)obj;
Benjamin Peterson14339b62009-01-31 16:36:08 +00007667 return PyLong_FromLong(sizeof(*map) - 1 + 16*map->count2 +
Benjamin Peterson29060642009-01-31 22:14:21 +00007668 128*map->count3);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007669}
7670
7671static PyMethodDef encoding_map_methods[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00007672 {"size", encoding_map_size, METH_NOARGS,
Benjamin Peterson29060642009-01-31 22:14:21 +00007673 PyDoc_STR("Return the size (in bytes) of this object") },
7674 { 0 }
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007675};
7676
7677static void
7678encoding_map_dealloc(PyObject* o)
7679{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007680 PyObject_FREE(o);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007681}
7682
7683static PyTypeObject EncodingMapType = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00007684 PyVarObject_HEAD_INIT(NULL, 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007685 "EncodingMap", /*tp_name*/
7686 sizeof(struct encoding_map), /*tp_basicsize*/
7687 0, /*tp_itemsize*/
7688 /* methods */
7689 encoding_map_dealloc, /*tp_dealloc*/
7690 0, /*tp_print*/
7691 0, /*tp_getattr*/
7692 0, /*tp_setattr*/
Mark Dickinsone94c6792009-02-02 20:36:42 +00007693 0, /*tp_reserved*/
Benjamin Peterson29060642009-01-31 22:14:21 +00007694 0, /*tp_repr*/
7695 0, /*tp_as_number*/
7696 0, /*tp_as_sequence*/
7697 0, /*tp_as_mapping*/
7698 0, /*tp_hash*/
7699 0, /*tp_call*/
7700 0, /*tp_str*/
7701 0, /*tp_getattro*/
7702 0, /*tp_setattro*/
7703 0, /*tp_as_buffer*/
7704 Py_TPFLAGS_DEFAULT, /*tp_flags*/
7705 0, /*tp_doc*/
7706 0, /*tp_traverse*/
7707 0, /*tp_clear*/
7708 0, /*tp_richcompare*/
7709 0, /*tp_weaklistoffset*/
7710 0, /*tp_iter*/
7711 0, /*tp_iternext*/
7712 encoding_map_methods, /*tp_methods*/
7713 0, /*tp_members*/
7714 0, /*tp_getset*/
7715 0, /*tp_base*/
7716 0, /*tp_dict*/
7717 0, /*tp_descr_get*/
7718 0, /*tp_descr_set*/
7719 0, /*tp_dictoffset*/
7720 0, /*tp_init*/
7721 0, /*tp_alloc*/
7722 0, /*tp_new*/
7723 0, /*tp_free*/
7724 0, /*tp_is_gc*/
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007725};
7726
7727PyObject*
7728PyUnicode_BuildEncodingMap(PyObject* string)
7729{
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007730 PyObject *result;
7731 struct encoding_map *mresult;
7732 int i;
7733 int need_dict = 0;
7734 unsigned char level1[32];
7735 unsigned char level2[512];
7736 unsigned char *mlevel1, *mlevel2, *mlevel3;
7737 int count2 = 0, count3 = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007738 int kind;
7739 void *data;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007740 Py_ssize_t length;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007741 Py_UCS4 ch;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007742
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007743 if (!PyUnicode_Check(string) || !PyUnicode_GET_LENGTH(string)) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007744 PyErr_BadArgument();
7745 return NULL;
7746 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007747 kind = PyUnicode_KIND(string);
7748 data = PyUnicode_DATA(string);
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007749 length = PyUnicode_GET_LENGTH(string);
7750 length = Py_MIN(length, 256);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007751 memset(level1, 0xFF, sizeof level1);
7752 memset(level2, 0xFF, sizeof level2);
7753
7754 /* If there isn't a one-to-one mapping of NULL to \0,
7755 or if there are non-BMP characters, we need to use
7756 a mapping dictionary. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007757 if (PyUnicode_READ(kind, data, 0) != 0)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007758 need_dict = 1;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007759 for (i = 1; i < length; i++) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007760 int l1, l2;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007761 ch = PyUnicode_READ(kind, data, i);
7762 if (ch == 0 || ch > 0xFFFF) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007763 need_dict = 1;
7764 break;
7765 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007766 if (ch == 0xFFFE)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007767 /* unmapped character */
7768 continue;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007769 l1 = ch >> 11;
7770 l2 = ch >> 7;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007771 if (level1[l1] == 0xFF)
7772 level1[l1] = count2++;
7773 if (level2[l2] == 0xFF)
Benjamin Peterson14339b62009-01-31 16:36:08 +00007774 level2[l2] = count3++;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007775 }
7776
7777 if (count2 >= 0xFF || count3 >= 0xFF)
7778 need_dict = 1;
7779
7780 if (need_dict) {
7781 PyObject *result = PyDict_New();
7782 PyObject *key, *value;
7783 if (!result)
7784 return NULL;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007785 for (i = 0; i < length; i++) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02007786 key = PyLong_FromLong(PyUnicode_READ(kind, data, i));
Christian Heimes217cfd12007-12-02 14:31:20 +00007787 value = PyLong_FromLong(i);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007788 if (!key || !value)
7789 goto failed1;
7790 if (PyDict_SetItem(result, key, value) == -1)
7791 goto failed1;
7792 Py_DECREF(key);
7793 Py_DECREF(value);
7794 }
7795 return result;
7796 failed1:
7797 Py_XDECREF(key);
7798 Py_XDECREF(value);
7799 Py_DECREF(result);
7800 return NULL;
7801 }
7802
7803 /* Create a three-level trie */
7804 result = PyObject_MALLOC(sizeof(struct encoding_map) +
7805 16*count2 + 128*count3 - 1);
7806 if (!result)
7807 return PyErr_NoMemory();
7808 PyObject_Init(result, &EncodingMapType);
7809 mresult = (struct encoding_map*)result;
7810 mresult->count2 = count2;
7811 mresult->count3 = count3;
7812 mlevel1 = mresult->level1;
7813 mlevel2 = mresult->level23;
7814 mlevel3 = mresult->level23 + 16*count2;
7815 memcpy(mlevel1, level1, 32);
7816 memset(mlevel2, 0xFF, 16*count2);
7817 memset(mlevel3, 0, 128*count3);
7818 count3 = 0;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007819 for (i = 1; i < length; i++) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007820 int o1, o2, o3, i2, i3;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007821 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
7822 if (ch == 0xFFFE)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007823 /* unmapped character */
7824 continue;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007825 o1 = ch>>11;
7826 o2 = (ch>>7) & 0xF;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007827 i2 = 16*mlevel1[o1] + o2;
7828 if (mlevel2[i2] == 0xFF)
7829 mlevel2[i2] = count3++;
Antoine Pitrouaaefac72012-06-16 22:48:21 +02007830 o3 = ch & 0x7F;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007831 i3 = 128*mlevel2[i2] + o3;
7832 mlevel3[i3] = i;
7833 }
7834 return result;
7835}
7836
7837static int
Victor Stinner22168992011-11-20 17:09:18 +01007838encoding_map_lookup(Py_UCS4 c, PyObject *mapping)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007839{
7840 struct encoding_map *map = (struct encoding_map*)mapping;
7841 int l1 = c>>11;
7842 int l2 = (c>>7) & 0xF;
7843 int l3 = c & 0x7F;
7844 int i;
7845
Victor Stinner22168992011-11-20 17:09:18 +01007846 if (c > 0xFFFF)
Benjamin Peterson29060642009-01-31 22:14:21 +00007847 return -1;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007848 if (c == 0)
7849 return 0;
7850 /* level 1*/
7851 i = map->level1[l1];
7852 if (i == 0xFF) {
7853 return -1;
7854 }
7855 /* level 2*/
7856 i = map->level23[16*i+l2];
7857 if (i == 0xFF) {
7858 return -1;
7859 }
7860 /* level 3 */
7861 i = map->level23[16*map->count2 + 128*i + l3];
7862 if (i == 0) {
7863 return -1;
7864 }
7865 return i;
7866}
7867
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007868/* Lookup the character ch in the mapping. If the character
7869 can't be found, Py_None is returned (or NULL, if another
Fred Drakedb390c12005-10-28 14:39:47 +00007870 error occurred). */
Alexander Belopolsky40018472011-02-26 01:02:56 +00007871static PyObject *
Victor Stinner22168992011-11-20 17:09:18 +01007872charmapencode_lookup(Py_UCS4 c, PyObject *mapping)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007873{
Christian Heimes217cfd12007-12-02 14:31:20 +00007874 PyObject *w = PyLong_FromLong((long)c);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007875 PyObject *x;
7876
7877 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007878 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007879 x = PyObject_GetItem(mapping, w);
7880 Py_DECREF(w);
7881 if (x == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007882 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
7883 /* No mapping found means: mapping is undefined. */
7884 PyErr_Clear();
7885 x = Py_None;
7886 Py_INCREF(x);
7887 return x;
7888 } else
7889 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007890 }
Walter Dörwaldadc72742003-01-08 22:01:33 +00007891 else if (x == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00007892 return x;
Christian Heimes217cfd12007-12-02 14:31:20 +00007893 else if (PyLong_Check(x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007894 long value = PyLong_AS_LONG(x);
7895 if (value < 0 || value > 255) {
7896 PyErr_SetString(PyExc_TypeError,
7897 "character mapping must be in range(256)");
7898 Py_DECREF(x);
7899 return NULL;
7900 }
7901 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007902 }
Christian Heimes72b710a2008-05-26 13:28:38 +00007903 else if (PyBytes_Check(x))
Benjamin Peterson29060642009-01-31 22:14:21 +00007904 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007905 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007906 /* wrong return value */
7907 PyErr_Format(PyExc_TypeError,
7908 "character mapping must return integer, bytes or None, not %.400s",
7909 x->ob_type->tp_name);
7910 Py_DECREF(x);
7911 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007912 }
7913}
7914
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007915static int
Guido van Rossum98297ee2007-11-06 21:34:58 +00007916charmapencode_resize(PyObject **outobj, Py_ssize_t *outpos, Py_ssize_t requiredsize)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007917{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007918 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj);
7919 /* exponentially overallocate to minimize reallocations */
7920 if (requiredsize < 2*outsize)
7921 requiredsize = 2*outsize;
7922 if (_PyBytes_Resize(outobj, requiredsize))
7923 return -1;
7924 return 0;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007925}
7926
Benjamin Peterson14339b62009-01-31 16:36:08 +00007927typedef enum charmapencode_result {
Benjamin Peterson29060642009-01-31 22:14:21 +00007928 enc_SUCCESS, enc_FAILED, enc_EXCEPTION
Alexander Belopolsky40018472011-02-26 01:02:56 +00007929} charmapencode_result;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007930/* lookup the character, put the result in the output string and adjust
Walter Dörwald827b0552007-05-12 13:23:53 +00007931 various state variables. Resize the output bytes object if not enough
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007932 space is available. Return a new reference to the object that
7933 was put in the output buffer, or Py_None, if the mapping was undefined
7934 (in which case no character was written) or NULL, if a
Andrew M. Kuchling8294de52005-11-02 16:36:12 +00007935 reallocation error occurred. The caller must decref the result */
Alexander Belopolsky40018472011-02-26 01:02:56 +00007936static charmapencode_result
Victor Stinner22168992011-11-20 17:09:18 +01007937charmapencode_output(Py_UCS4 c, PyObject *mapping,
Alexander Belopolsky40018472011-02-26 01:02:56 +00007938 PyObject **outobj, Py_ssize_t *outpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007939{
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007940 PyObject *rep;
7941 char *outstart;
Christian Heimes72b710a2008-05-26 13:28:38 +00007942 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007943
Christian Heimes90aa7642007-12-19 02:45:37 +00007944 if (Py_TYPE(mapping) == &EncodingMapType) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007945 int res = encoding_map_lookup(c, mapping);
Benjamin Peterson29060642009-01-31 22:14:21 +00007946 Py_ssize_t requiredsize = *outpos+1;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007947 if (res == -1)
7948 return enc_FAILED;
Benjamin Peterson29060642009-01-31 22:14:21 +00007949 if (outsize<requiredsize)
7950 if (charmapencode_resize(outobj, outpos, requiredsize))
7951 return enc_EXCEPTION;
Christian Heimes72b710a2008-05-26 13:28:38 +00007952 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00007953 outstart[(*outpos)++] = (char)res;
7954 return enc_SUCCESS;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007955 }
7956
7957 rep = charmapencode_lookup(c, mapping);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007958 if (rep==NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007959 return enc_EXCEPTION;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007960 else if (rep==Py_None) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007961 Py_DECREF(rep);
7962 return enc_FAILED;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007963 } else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007964 if (PyLong_Check(rep)) {
7965 Py_ssize_t requiredsize = *outpos+1;
7966 if (outsize<requiredsize)
7967 if (charmapencode_resize(outobj, outpos, requiredsize)) {
7968 Py_DECREF(rep);
7969 return enc_EXCEPTION;
7970 }
Christian Heimes72b710a2008-05-26 13:28:38 +00007971 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00007972 outstart[(*outpos)++] = (char)PyLong_AS_LONG(rep);
Benjamin Peterson14339b62009-01-31 16:36:08 +00007973 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007974 else {
7975 const char *repchars = PyBytes_AS_STRING(rep);
7976 Py_ssize_t repsize = PyBytes_GET_SIZE(rep);
7977 Py_ssize_t requiredsize = *outpos+repsize;
7978 if (outsize<requiredsize)
7979 if (charmapencode_resize(outobj, outpos, requiredsize)) {
7980 Py_DECREF(rep);
7981 return enc_EXCEPTION;
7982 }
Christian Heimes72b710a2008-05-26 13:28:38 +00007983 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00007984 memcpy(outstart + *outpos, repchars, repsize);
7985 *outpos += repsize;
7986 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007987 }
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00007988 Py_DECREF(rep);
7989 return enc_SUCCESS;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007990}
7991
7992/* handle an error in PyUnicode_EncodeCharmap
7993 Return 0 on success, -1 on error */
Alexander Belopolsky40018472011-02-26 01:02:56 +00007994static int
7995charmap_encoding_error(
Martin v. Löwis23e275b2011-11-02 18:02:51 +01007996 PyObject *unicode, Py_ssize_t *inpos, PyObject *mapping,
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007997 PyObject **exceptionObject,
Walter Dörwalde5402fb2003-08-14 20:25:29 +00007998 int *known_errorHandler, PyObject **errorHandler, const char *errors,
Guido van Rossum98297ee2007-11-06 21:34:58 +00007999 PyObject **res, Py_ssize_t *respos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008000{
8001 PyObject *repunicode = NULL; /* initialize to prevent gcc warning */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008002 Py_ssize_t size, repsize;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008003 Py_ssize_t newpos;
Victor Stinnerae4f7c82011-11-20 18:28:55 +01008004 enum PyUnicode_Kind kind;
8005 void *data;
8006 Py_ssize_t index;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008007 /* startpos for collecting unencodable chars */
Martin v. Löwis18e16552006-02-15 17:27:45 +00008008 Py_ssize_t collstartpos = *inpos;
8009 Py_ssize_t collendpos = *inpos+1;
8010 Py_ssize_t collpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008011 char *encoding = "charmap";
8012 char *reason = "character maps to <undefined>";
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00008013 charmapencode_result x;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008014 Py_UCS4 ch;
Brian Curtin2787ea42011-11-02 15:09:37 -05008015 int val;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008016
Benjamin Petersonbac79492012-01-14 13:34:47 -05008017 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008018 return -1;
8019 size = PyUnicode_GET_LENGTH(unicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008020 /* find all unencodable characters */
8021 while (collendpos < size) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00008022 PyObject *rep;
Christian Heimes90aa7642007-12-19 02:45:37 +00008023 if (Py_TYPE(mapping) == &EncodingMapType) {
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008024 ch = PyUnicode_READ_CHAR(unicode, collendpos);
Brian Curtin2787ea42011-11-02 15:09:37 -05008025 val = encoding_map_lookup(ch, mapping);
8026 if (val != -1)
Benjamin Peterson29060642009-01-31 22:14:21 +00008027 break;
8028 ++collendpos;
8029 continue;
8030 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008031
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008032 ch = PyUnicode_READ_CHAR(unicode, collendpos);
8033 rep = charmapencode_lookup(ch, mapping);
Benjamin Peterson29060642009-01-31 22:14:21 +00008034 if (rep==NULL)
8035 return -1;
8036 else if (rep!=Py_None) {
8037 Py_DECREF(rep);
8038 break;
8039 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008040 Py_DECREF(rep);
Benjamin Peterson29060642009-01-31 22:14:21 +00008041 ++collendpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008042 }
8043 /* cache callback name lookup
8044 * (if not done yet, i.e. it's the first error) */
8045 if (*known_errorHandler==-1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008046 if ((errors==NULL) || (!strcmp(errors, "strict")))
8047 *known_errorHandler = 1;
8048 else if (!strcmp(errors, "replace"))
8049 *known_errorHandler = 2;
8050 else if (!strcmp(errors, "ignore"))
8051 *known_errorHandler = 3;
8052 else if (!strcmp(errors, "xmlcharrefreplace"))
8053 *known_errorHandler = 4;
8054 else
8055 *known_errorHandler = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008056 }
8057 switch (*known_errorHandler) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00008058 case 1: /* strict */
Martin v. Löwis12be46c2011-11-04 19:04:15 +01008059 raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason);
Benjamin Peterson14339b62009-01-31 16:36:08 +00008060 return -1;
8061 case 2: /* replace */
8062 for (collpos = collstartpos; collpos<collendpos; ++collpos) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008063 x = charmapencode_output('?', mapping, res, respos);
8064 if (x==enc_EXCEPTION) {
8065 return -1;
8066 }
8067 else if (x==enc_FAILED) {
Martin v. Löwis12be46c2011-11-04 19:04:15 +01008068 raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00008069 return -1;
8070 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008071 }
8072 /* fall through */
8073 case 3: /* ignore */
8074 *inpos = collendpos;
8075 break;
8076 case 4: /* xmlcharrefreplace */
8077 /* generate replacement (temporarily (mis)uses p) */
8078 for (collpos = collstartpos; collpos < collendpos; ++collpos) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008079 char buffer[2+29+1+1];
8080 char *cp;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008081 sprintf(buffer, "&#%d;", (int)PyUnicode_READ_CHAR(unicode, collpos));
Benjamin Peterson29060642009-01-31 22:14:21 +00008082 for (cp = buffer; *cp; ++cp) {
8083 x = charmapencode_output(*cp, mapping, res, respos);
8084 if (x==enc_EXCEPTION)
8085 return -1;
8086 else if (x==enc_FAILED) {
Martin v. Löwis12be46c2011-11-04 19:04:15 +01008087 raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00008088 return -1;
8089 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008090 }
8091 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008092 *inpos = collendpos;
8093 break;
8094 default:
8095 repunicode = unicode_encode_call_errorhandler(errors, errorHandler,
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008096 encoding, reason, unicode, exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00008097 collstartpos, collendpos, &newpos);
Benjamin Peterson14339b62009-01-31 16:36:08 +00008098 if (repunicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008099 return -1;
Martin v. Löwis011e8422009-05-05 04:43:17 +00008100 if (PyBytes_Check(repunicode)) {
8101 /* Directly copy bytes result to output. */
8102 Py_ssize_t outsize = PyBytes_Size(*res);
8103 Py_ssize_t requiredsize;
8104 repsize = PyBytes_Size(repunicode);
8105 requiredsize = *respos + repsize;
8106 if (requiredsize > outsize)
8107 /* Make room for all additional bytes. */
8108 if (charmapencode_resize(res, respos, requiredsize)) {
8109 Py_DECREF(repunicode);
8110 return -1;
8111 }
8112 memcpy(PyBytes_AsString(*res) + *respos,
8113 PyBytes_AsString(repunicode), repsize);
8114 *respos += repsize;
8115 *inpos = newpos;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00008116 Py_DECREF(repunicode);
Martin v. Löwis011e8422009-05-05 04:43:17 +00008117 break;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00008118 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008119 /* generate replacement */
Benjamin Petersonbac79492012-01-14 13:34:47 -05008120 if (PyUnicode_READY(repunicode) == -1) {
Victor Stinnerae4f7c82011-11-20 18:28:55 +01008121 Py_DECREF(repunicode);
8122 return -1;
8123 }
Victor Stinner9e30aa52011-11-21 02:49:52 +01008124 repsize = PyUnicode_GET_LENGTH(repunicode);
Victor Stinnerae4f7c82011-11-20 18:28:55 +01008125 data = PyUnicode_DATA(repunicode);
8126 kind = PyUnicode_KIND(repunicode);
8127 for (index = 0; index < repsize; index++) {
8128 Py_UCS4 repch = PyUnicode_READ(kind, data, index);
8129 x = charmapencode_output(repch, mapping, res, respos);
Benjamin Peterson29060642009-01-31 22:14:21 +00008130 if (x==enc_EXCEPTION) {
Victor Stinnerae4f7c82011-11-20 18:28:55 +01008131 Py_DECREF(repunicode);
Benjamin Peterson29060642009-01-31 22:14:21 +00008132 return -1;
8133 }
8134 else if (x==enc_FAILED) {
8135 Py_DECREF(repunicode);
Martin v. Löwis12be46c2011-11-04 19:04:15 +01008136 raise_encode_exception(exceptionObject, encoding, unicode, collstartpos, collendpos, reason);
Benjamin Peterson29060642009-01-31 22:14:21 +00008137 return -1;
8138 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008139 }
8140 *inpos = newpos;
8141 Py_DECREF(repunicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008142 }
8143 return 0;
8144}
8145
Alexander Belopolsky40018472011-02-26 01:02:56 +00008146PyObject *
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008147_PyUnicode_EncodeCharmap(PyObject *unicode,
8148 PyObject *mapping,
8149 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008150{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008151 /* output object */
8152 PyObject *res = NULL;
8153 /* current input position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00008154 Py_ssize_t inpos = 0;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008155 Py_ssize_t size;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008156 /* current output position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00008157 Py_ssize_t respos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008158 PyObject *errorHandler = NULL;
8159 PyObject *exc = NULL;
8160 /* the following variable is used for caching string comparisons
8161 * -1=not initialized, 0=unknown, 1=strict, 2=replace,
8162 * 3=ignore, 4=xmlcharrefreplace */
8163 int known_errorHandler = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008164
Benjamin Petersonbac79492012-01-14 13:34:47 -05008165 if (PyUnicode_READY(unicode) == -1)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008166 return NULL;
8167 size = PyUnicode_GET_LENGTH(unicode);
8168
Guido van Rossumd57fd912000-03-10 22:53:23 +00008169 /* Default to Latin-1 */
8170 if (mapping == NULL)
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008171 return unicode_encode_ucs1(unicode, errors, 256);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008172
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008173 /* allocate enough for a simple encoding without
8174 replacements, if we need more, we'll resize */
Christian Heimes72b710a2008-05-26 13:28:38 +00008175 res = PyBytes_FromStringAndSize(NULL, size);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008176 if (res == NULL)
8177 goto onError;
Marc-André Lemburgb7520772000-08-14 11:29:19 +00008178 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008179 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008180
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008181 while (inpos<size) {
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008182 Py_UCS4 ch = PyUnicode_READ_CHAR(unicode, inpos);
Benjamin Peterson29060642009-01-31 22:14:21 +00008183 /* try to encode it */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008184 charmapencode_result x = charmapencode_output(ch, mapping, &res, &respos);
Benjamin Peterson29060642009-01-31 22:14:21 +00008185 if (x==enc_EXCEPTION) /* error */
8186 goto onError;
8187 if (x==enc_FAILED) { /* unencodable character */
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008188 if (charmap_encoding_error(unicode, &inpos, mapping,
Benjamin Peterson29060642009-01-31 22:14:21 +00008189 &exc,
8190 &known_errorHandler, &errorHandler, errors,
8191 &res, &respos)) {
8192 goto onError;
8193 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008194 }
Benjamin Peterson29060642009-01-31 22:14:21 +00008195 else
8196 /* done with this character => adjust input position */
8197 ++inpos;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008198 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008199
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008200 /* Resize if we allocated to much */
Christian Heimes72b710a2008-05-26 13:28:38 +00008201 if (respos<PyBytes_GET_SIZE(res))
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00008202 if (_PyBytes_Resize(&res, respos) < 0)
8203 goto onError;
Guido van Rossum98297ee2007-11-06 21:34:58 +00008204
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008205 Py_XDECREF(exc);
8206 Py_XDECREF(errorHandler);
8207 return res;
8208
Benjamin Peterson29060642009-01-31 22:14:21 +00008209 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008210 Py_XDECREF(res);
8211 Py_XDECREF(exc);
8212 Py_XDECREF(errorHandler);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008213 return NULL;
8214}
8215
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008216/* Deprecated */
8217PyObject *
8218PyUnicode_EncodeCharmap(const Py_UNICODE *p,
8219 Py_ssize_t size,
8220 PyObject *mapping,
8221 const char *errors)
8222{
8223 PyObject *result;
8224 PyObject *unicode = PyUnicode_FromUnicode(p, size);
8225 if (unicode == NULL)
8226 return NULL;
8227 result = _PyUnicode_EncodeCharmap(unicode, mapping, errors);
8228 Py_DECREF(unicode);
Victor Stinnerfc026c92011-11-04 00:24:51 +01008229 return result;
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008230}
8231
Alexander Belopolsky40018472011-02-26 01:02:56 +00008232PyObject *
8233PyUnicode_AsCharmapString(PyObject *unicode,
8234 PyObject *mapping)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008235{
8236 if (!PyUnicode_Check(unicode) || mapping == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008237 PyErr_BadArgument();
8238 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008239 }
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008240 return _PyUnicode_EncodeCharmap(unicode, mapping, NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008241}
8242
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008243/* create or adjust a UnicodeTranslateError */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008244static void
8245make_translate_exception(PyObject **exceptionObject,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008246 PyObject *unicode,
Alexander Belopolsky40018472011-02-26 01:02:56 +00008247 Py_ssize_t startpos, Py_ssize_t endpos,
8248 const char *reason)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008249{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008250 if (*exceptionObject == NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008251 *exceptionObject = _PyUnicodeTranslateError_Create(
8252 unicode, startpos, endpos, reason);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008253 }
8254 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00008255 if (PyUnicodeTranslateError_SetStart(*exceptionObject, startpos))
8256 goto onError;
8257 if (PyUnicodeTranslateError_SetEnd(*exceptionObject, endpos))
8258 goto onError;
8259 if (PyUnicodeTranslateError_SetReason(*exceptionObject, reason))
8260 goto onError;
8261 return;
8262 onError:
Serhiy Storchaka505ff752014-02-09 13:33:53 +02008263 Py_CLEAR(*exceptionObject);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008264 }
8265}
8266
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008267/* raises a UnicodeTranslateError */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008268static void
8269raise_translate_exception(PyObject **exceptionObject,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008270 PyObject *unicode,
Alexander Belopolsky40018472011-02-26 01:02:56 +00008271 Py_ssize_t startpos, Py_ssize_t endpos,
8272 const char *reason)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008273{
8274 make_translate_exception(exceptionObject,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008275 unicode, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008276 if (*exceptionObject != NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008277 PyCodec_StrictErrors(*exceptionObject);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008278}
8279
8280/* error handling callback helper:
8281 build arguments, call the callback and check the arguments,
8282 put the result into newpos and return the replacement string, which
8283 has to be freed by the caller */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008284static PyObject *
8285unicode_translate_call_errorhandler(const char *errors,
8286 PyObject **errorHandler,
8287 const char *reason,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008288 PyObject *unicode, PyObject **exceptionObject,
Alexander Belopolsky40018472011-02-26 01:02:56 +00008289 Py_ssize_t startpos, Py_ssize_t endpos,
8290 Py_ssize_t *newpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008291{
Benjamin Peterson142957c2008-07-04 19:55:29 +00008292 static char *argparse = "O!n;translating error handler must return (str, int) tuple";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008293
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008294 Py_ssize_t i_newpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008295 PyObject *restuple;
8296 PyObject *resunicode;
8297
8298 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008299 *errorHandler = PyCodec_LookupError(errors);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008300 if (*errorHandler == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008301 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008302 }
8303
8304 make_translate_exception(exceptionObject,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008305 unicode, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008306 if (*exceptionObject == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008307 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008308
8309 restuple = PyObject_CallFunctionObjArgs(
Benjamin Peterson29060642009-01-31 22:14:21 +00008310 *errorHandler, *exceptionObject, NULL);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008311 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008312 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008313 if (!PyTuple_Check(restuple)) {
Benjamin Petersond75fcb42009-02-19 04:22:03 +00008314 PyErr_SetString(PyExc_TypeError, &argparse[4]);
Benjamin Peterson29060642009-01-31 22:14:21 +00008315 Py_DECREF(restuple);
8316 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008317 }
8318 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type,
Benjamin Peterson29060642009-01-31 22:14:21 +00008319 &resunicode, &i_newpos)) {
8320 Py_DECREF(restuple);
8321 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008322 }
Martin v. Löwis18e16552006-02-15 17:27:45 +00008323 if (i_newpos<0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008324 *newpos = PyUnicode_GET_LENGTH(unicode)+i_newpos;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008325 else
8326 *newpos = i_newpos;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008327 if (*newpos<0 || *newpos>PyUnicode_GET_LENGTH(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008328 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos);
8329 Py_DECREF(restuple);
8330 return NULL;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00008331 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008332 Py_INCREF(resunicode);
8333 Py_DECREF(restuple);
8334 return resunicode;
8335}
8336
8337/* Lookup the character ch in the mapping and put the result in result,
8338 which must be decrefed by the caller.
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_lookup(Py_UCS4 c, PyObject *mapping, PyObject **result)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008342{
Christian Heimes217cfd12007-12-02 14:31:20 +00008343 PyObject *w = PyLong_FromLong((long)c);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008344 PyObject *x;
8345
8346 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008347 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008348 x = PyObject_GetItem(mapping, w);
8349 Py_DECREF(w);
8350 if (x == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008351 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
8352 /* No mapping found means: use 1:1 mapping. */
8353 PyErr_Clear();
8354 *result = NULL;
8355 return 0;
8356 } else
8357 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008358 }
8359 else if (x == Py_None) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008360 *result = x;
8361 return 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008362 }
Christian Heimes217cfd12007-12-02 14:31:20 +00008363 else if (PyLong_Check(x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008364 long value = PyLong_AS_LONG(x);
8365 long max = PyUnicode_GetMax();
8366 if (value < 0 || value > max) {
8367 PyErr_Format(PyExc_TypeError,
Guido van Rossum5a2f7e602007-10-24 21:13:09 +00008368 "character mapping must be in range(0x%x)", max+1);
Benjamin Peterson29060642009-01-31 22:14:21 +00008369 Py_DECREF(x);
8370 return -1;
8371 }
8372 *result = x;
8373 return 0;
8374 }
8375 else if (PyUnicode_Check(x)) {
8376 *result = x;
8377 return 0;
8378 }
8379 else {
8380 /* wrong return value */
8381 PyErr_SetString(PyExc_TypeError,
8382 "character mapping must return integer, None or str");
Benjamin Peterson14339b62009-01-31 16:36:08 +00008383 Py_DECREF(x);
8384 return -1;
8385 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008386}
8387/* ensure that *outobj is at least requiredsize characters long,
Benjamin Peterson29060642009-01-31 22:14:21 +00008388 if not reallocate and adjust various state variables.
8389 Return 0 on success, -1 on error */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008390static int
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008391charmaptranslate_makespace(Py_UCS4 **outobj, Py_ssize_t *psize,
Benjamin Peterson29060642009-01-31 22:14:21 +00008392 Py_ssize_t requiredsize)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008393{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008394 Py_ssize_t oldsize = *psize;
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +00008395 Py_UCS4 *new_outobj;
Walter Dörwald4894c302003-10-24 14:25:28 +00008396 if (requiredsize > oldsize) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008397 /* exponentially overallocate to minimize reallocations */
8398 if (requiredsize < 2 * oldsize)
8399 requiredsize = 2 * oldsize;
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +00008400 new_outobj = PyMem_Realloc(*outobj, requiredsize * sizeof(Py_UCS4));
8401 if (new_outobj == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008402 return -1;
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +00008403 *outobj = new_outobj;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008404 *psize = requiredsize;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008405 }
8406 return 0;
8407}
8408/* lookup the character, put the result in the output string and adjust
8409 various state variables. Return a new reference to the object that
8410 was put in the output buffer in *result, or Py_None, if the mapping was
8411 undefined (in which case no character was written).
8412 The called must decref result.
8413 Return 0 on success, -1 on error. */
Alexander Belopolsky40018472011-02-26 01:02:56 +00008414static int
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008415charmaptranslate_output(PyObject *input, Py_ssize_t ipos,
8416 PyObject *mapping, Py_UCS4 **output,
8417 Py_ssize_t *osize, Py_ssize_t *opos,
Alexander Belopolsky40018472011-02-26 01:02:56 +00008418 PyObject **res)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008419{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008420 Py_UCS4 curinp = PyUnicode_READ_CHAR(input, ipos);
8421 if (charmaptranslate_lookup(curinp, mapping, res))
Benjamin Peterson29060642009-01-31 22:14:21 +00008422 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008423 if (*res==NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008424 /* not found => default to 1:1 mapping */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008425 (*output)[(*opos)++] = curinp;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008426 }
8427 else if (*res==Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00008428 ;
Christian Heimes217cfd12007-12-02 14:31:20 +00008429 else if (PyLong_Check(*res)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008430 /* no overflow check, because we know that the space is enough */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008431 (*output)[(*opos)++] = (Py_UCS4)PyLong_AS_LONG(*res);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008432 }
8433 else if (PyUnicode_Check(*res)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008434 Py_ssize_t repsize;
8435 if (PyUnicode_READY(*res) == -1)
8436 return -1;
8437 repsize = PyUnicode_GET_LENGTH(*res);
Benjamin Peterson29060642009-01-31 22:14:21 +00008438 if (repsize==1) {
8439 /* no overflow check, because we know that the space is enough */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008440 (*output)[(*opos)++] = PyUnicode_READ_CHAR(*res, 0);
Benjamin Peterson29060642009-01-31 22:14:21 +00008441 }
8442 else if (repsize!=0) {
8443 /* more than one character */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008444 Py_ssize_t requiredsize = *opos +
8445 (PyUnicode_GET_LENGTH(input) - ipos) +
Benjamin Peterson29060642009-01-31 22:14:21 +00008446 repsize - 1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008447 Py_ssize_t i;
8448 if (charmaptranslate_makespace(output, osize, requiredsize))
Benjamin Peterson29060642009-01-31 22:14:21 +00008449 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008450 for(i = 0; i < repsize; i++)
8451 (*output)[(*opos)++] = PyUnicode_READ_CHAR(*res, i);
Benjamin Peterson29060642009-01-31 22:14:21 +00008452 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008453 }
8454 else
Benjamin Peterson29060642009-01-31 22:14:21 +00008455 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008456 return 0;
8457}
8458
Alexander Belopolsky40018472011-02-26 01:02:56 +00008459PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008460_PyUnicode_TranslateCharmap(PyObject *input,
8461 PyObject *mapping,
8462 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008463{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008464 /* input object */
8465 char *idata;
8466 Py_ssize_t size, i;
8467 int kind;
8468 /* output buffer */
8469 Py_UCS4 *output = NULL;
8470 Py_ssize_t osize;
8471 PyObject *res;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008472 /* current output position */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008473 Py_ssize_t opos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008474 char *reason = "character maps to <undefined>";
8475 PyObject *errorHandler = NULL;
8476 PyObject *exc = NULL;
8477 /* the following variable is used for caching string comparisons
8478 * -1=not initialized, 0=unknown, 1=strict, 2=replace,
8479 * 3=ignore, 4=xmlcharrefreplace */
8480 int known_errorHandler = -1;
8481
Guido van Rossumd57fd912000-03-10 22:53:23 +00008482 if (mapping == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008483 PyErr_BadArgument();
8484 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008485 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008486
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008487 if (PyUnicode_READY(input) == -1)
8488 return NULL;
8489 idata = (char*)PyUnicode_DATA(input);
8490 kind = PyUnicode_KIND(input);
8491 size = PyUnicode_GET_LENGTH(input);
8492 i = 0;
8493
8494 if (size == 0) {
8495 Py_INCREF(input);
8496 return input;
8497 }
8498
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008499 /* allocate enough for a simple 1:1 translation without
8500 replacements, if we need more, we'll resize */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008501 osize = size;
8502 output = PyMem_Malloc(osize * sizeof(Py_UCS4));
8503 opos = 0;
8504 if (output == NULL) {
8505 PyErr_NoMemory();
Benjamin Peterson29060642009-01-31 22:14:21 +00008506 goto onError;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008507 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008508
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008509 while (i<size) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008510 /* try to encode it */
8511 PyObject *x = NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008512 if (charmaptranslate_output(input, i, mapping,
8513 &output, &osize, &opos, &x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008514 Py_XDECREF(x);
8515 goto onError;
8516 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008517 Py_XDECREF(x);
Benjamin Peterson29060642009-01-31 22:14:21 +00008518 if (x!=Py_None) /* it worked => adjust input pointer */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008519 ++i;
Benjamin Peterson29060642009-01-31 22:14:21 +00008520 else { /* untranslatable character */
8521 PyObject *repunicode = NULL; /* initialize to prevent gcc warning */
8522 Py_ssize_t repsize;
8523 Py_ssize_t newpos;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008524 Py_ssize_t uni2;
Benjamin Peterson29060642009-01-31 22:14:21 +00008525 /* startpos for collecting untranslatable chars */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008526 Py_ssize_t collstart = i;
8527 Py_ssize_t collend = i+1;
8528 Py_ssize_t coll;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008529
Benjamin Peterson29060642009-01-31 22:14:21 +00008530 /* find all untranslatable characters */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008531 while (collend < size) {
8532 if (charmaptranslate_lookup(PyUnicode_READ(kind,idata, collend), mapping, &x))
Benjamin Peterson29060642009-01-31 22:14:21 +00008533 goto onError;
8534 Py_XDECREF(x);
8535 if (x!=Py_None)
8536 break;
8537 ++collend;
8538 }
8539 /* cache callback name lookup
8540 * (if not done yet, i.e. it's the first error) */
8541 if (known_errorHandler==-1) {
8542 if ((errors==NULL) || (!strcmp(errors, "strict")))
8543 known_errorHandler = 1;
8544 else if (!strcmp(errors, "replace"))
8545 known_errorHandler = 2;
8546 else if (!strcmp(errors, "ignore"))
8547 known_errorHandler = 3;
8548 else if (!strcmp(errors, "xmlcharrefreplace"))
8549 known_errorHandler = 4;
8550 else
8551 known_errorHandler = 0;
8552 }
8553 switch (known_errorHandler) {
8554 case 1: /* strict */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008555 raise_translate_exception(&exc, input, collstart,
8556 collend, reason);
Benjamin Peterson14339b62009-01-31 16:36:08 +00008557 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00008558 case 2: /* replace */
8559 /* No need to check for space, this is a 1:1 replacement */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008560 for (coll = collstart; coll<collend; coll++)
8561 output[opos++] = '?';
Benjamin Peterson29060642009-01-31 22:14:21 +00008562 /* fall through */
8563 case 3: /* ignore */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008564 i = collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00008565 break;
8566 case 4: /* xmlcharrefreplace */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008567 /* generate replacement (temporarily (mis)uses i) */
8568 for (i = collstart; i < collend; ++i) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008569 char buffer[2+29+1+1];
8570 char *cp;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008571 sprintf(buffer, "&#%d;", PyUnicode_READ(kind, idata, i));
8572 if (charmaptranslate_makespace(&output, &osize,
8573 opos+strlen(buffer)+(size-collend)))
Benjamin Peterson29060642009-01-31 22:14:21 +00008574 goto onError;
8575 for (cp = buffer; *cp; ++cp)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008576 output[opos++] = *cp;
Benjamin Peterson29060642009-01-31 22:14:21 +00008577 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008578 i = collend;
Benjamin Peterson29060642009-01-31 22:14:21 +00008579 break;
8580 default:
8581 repunicode = unicode_translate_call_errorhandler(errors, &errorHandler,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008582 reason, input, &exc,
8583 collstart, collend, &newpos);
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01008584 if (repunicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008585 goto onError;
Benjamin Peterson9ca3ffa2012-01-01 16:04:29 -06008586 if (PyUnicode_READY(repunicode) == -1) {
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01008587 Py_DECREF(repunicode);
8588 goto onError;
8589 }
Benjamin Peterson29060642009-01-31 22:14:21 +00008590 /* generate replacement */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008591 repsize = PyUnicode_GET_LENGTH(repunicode);
8592 if (charmaptranslate_makespace(&output, &osize,
8593 opos+repsize+(size-collend))) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008594 Py_DECREF(repunicode);
8595 goto onError;
8596 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008597 for (uni2 = 0; repsize-->0; ++uni2)
8598 output[opos++] = PyUnicode_READ_CHAR(repunicode, uni2);
8599 i = newpos;
Benjamin Peterson29060642009-01-31 22:14:21 +00008600 Py_DECREF(repunicode);
Benjamin Peterson14339b62009-01-31 16:36:08 +00008601 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008602 }
8603 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008604 res = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, output, opos);
8605 if (!res)
8606 goto onError;
8607 PyMem_Free(output);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008608 Py_XDECREF(exc);
8609 Py_XDECREF(errorHandler);
8610 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008611
Benjamin Peterson29060642009-01-31 22:14:21 +00008612 onError:
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008613 PyMem_Free(output);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00008614 Py_XDECREF(exc);
8615 Py_XDECREF(errorHandler);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008616 return NULL;
8617}
8618
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008619/* Deprecated. Use PyUnicode_Translate instead. */
8620PyObject *
8621PyUnicode_TranslateCharmap(const Py_UNICODE *p,
8622 Py_ssize_t size,
8623 PyObject *mapping,
8624 const char *errors)
8625{
Christian Heimes5f520f42012-09-11 14:03:25 +02008626 PyObject *result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008627 PyObject *unicode = PyUnicode_FromUnicode(p, size);
8628 if (!unicode)
8629 return NULL;
Christian Heimes5f520f42012-09-11 14:03:25 +02008630 result = _PyUnicode_TranslateCharmap(unicode, mapping, errors);
8631 Py_DECREF(unicode);
8632 return result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008633}
8634
Alexander Belopolsky40018472011-02-26 01:02:56 +00008635PyObject *
8636PyUnicode_Translate(PyObject *str,
8637 PyObject *mapping,
8638 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008639{
8640 PyObject *result;
Tim Petersced69f82003-09-16 20:30:58 +00008641
Guido van Rossumd57fd912000-03-10 22:53:23 +00008642 str = PyUnicode_FromObject(str);
8643 if (str == NULL)
Christian Heimes5f520f42012-09-11 14:03:25 +02008644 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008645 result = _PyUnicode_TranslateCharmap(str, mapping, errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008646 Py_DECREF(str);
8647 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008648}
Tim Petersced69f82003-09-16 20:30:58 +00008649
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008650static Py_UCS4
Victor Stinner9310abb2011-10-05 00:59:23 +02008651fix_decimal_and_space_to_ascii(PyObject *self)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008652{
8653 /* No need to call PyUnicode_READY(self) because this function is only
8654 called as a callback from fixup() which does it already. */
8655 const Py_ssize_t len = PyUnicode_GET_LENGTH(self);
8656 const int kind = PyUnicode_KIND(self);
8657 void *data = PyUnicode_DATA(self);
Victor Stinnere6abb482012-05-02 01:15:40 +02008658 Py_UCS4 maxchar = 127, ch, fixed;
Benjamin Peterson821e4cf2012-01-12 15:40:18 -05008659 int modified = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008660 Py_ssize_t i;
8661
8662 for (i = 0; i < len; ++i) {
8663 ch = PyUnicode_READ(kind, data, i);
8664 fixed = 0;
8665 if (ch > 127) {
8666 if (Py_UNICODE_ISSPACE(ch))
8667 fixed = ' ';
8668 else {
8669 const int decimal = Py_UNICODE_TODECIMAL(ch);
8670 if (decimal >= 0)
8671 fixed = '0' + decimal;
8672 }
8673 if (fixed != 0) {
Benjamin Peterson821e4cf2012-01-12 15:40:18 -05008674 modified = 1;
Benjamin Peterson7e303732013-06-10 09:19:46 -07008675 maxchar = Py_MAX(maxchar, fixed);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008676 PyUnicode_WRITE(kind, data, i, fixed);
8677 }
Victor Stinnere6abb482012-05-02 01:15:40 +02008678 else
Benjamin Peterson7e303732013-06-10 09:19:46 -07008679 maxchar = Py_MAX(maxchar, ch);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008680 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008681 }
8682
Benjamin Peterson821e4cf2012-01-12 15:40:18 -05008683 return (modified) ? maxchar : 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008684}
8685
8686PyObject *
8687_PyUnicode_TransformDecimalAndSpaceToASCII(PyObject *unicode)
8688{
8689 if (!PyUnicode_Check(unicode)) {
8690 PyErr_BadInternalCall();
8691 return NULL;
8692 }
8693 if (PyUnicode_READY(unicode) == -1)
8694 return NULL;
8695 if (PyUnicode_MAX_CHAR_VALUE(unicode) <= 127) {
8696 /* If the string is already ASCII, just return the same string */
8697 Py_INCREF(unicode);
8698 return unicode;
8699 }
Victor Stinner9310abb2011-10-05 00:59:23 +02008700 return fixup(unicode, fix_decimal_and_space_to_ascii);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008701}
8702
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008703PyObject *
8704PyUnicode_TransformDecimalToASCII(Py_UNICODE *s,
8705 Py_ssize_t length)
8706{
Victor Stinnerf0124502011-11-21 23:12:56 +01008707 PyObject *decimal;
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008708 Py_ssize_t i;
Victor Stinnerf0124502011-11-21 23:12:56 +01008709 Py_UCS4 maxchar;
8710 enum PyUnicode_Kind kind;
8711 void *data;
8712
Victor Stinner99d7ad02012-02-22 13:37:39 +01008713 maxchar = 127;
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008714 for (i = 0; i < length; i++) {
Victor Stinnerf0124502011-11-21 23:12:56 +01008715 Py_UNICODE ch = s[i];
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008716 if (ch > 127) {
8717 int decimal = Py_UNICODE_TODECIMAL(ch);
8718 if (decimal >= 0)
Victor Stinnerf0124502011-11-21 23:12:56 +01008719 ch = '0' + decimal;
Benjamin Peterson7e303732013-06-10 09:19:46 -07008720 maxchar = Py_MAX(maxchar, ch);
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008721 }
8722 }
Victor Stinnerf0124502011-11-21 23:12:56 +01008723
8724 /* Copy to a new string */
8725 decimal = PyUnicode_New(length, maxchar);
8726 if (decimal == NULL)
8727 return decimal;
8728 kind = PyUnicode_KIND(decimal);
8729 data = PyUnicode_DATA(decimal);
8730 /* Iterate over code points */
8731 for (i = 0; i < length; i++) {
8732 Py_UNICODE ch = s[i];
8733 if (ch > 127) {
8734 int decimal = Py_UNICODE_TODECIMAL(ch);
8735 if (decimal >= 0)
8736 ch = '0' + decimal;
8737 }
8738 PyUnicode_WRITE(kind, data, i, ch);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008739 }
Victor Stinnerd3df8ab2011-11-22 01:22:34 +01008740 return unicode_result(decimal);
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00008741}
Guido van Rossum9e896b32000-04-05 20:11:21 +00008742/* --- Decimal Encoder ---------------------------------------------------- */
8743
Alexander Belopolsky40018472011-02-26 01:02:56 +00008744int
8745PyUnicode_EncodeDecimal(Py_UNICODE *s,
8746 Py_ssize_t length,
8747 char *output,
8748 const char *errors)
Guido van Rossum9e896b32000-04-05 20:11:21 +00008749{
Martin v. Löwis23e275b2011-11-02 18:02:51 +01008750 PyObject *unicode;
Victor Stinner6345be92011-11-25 20:09:01 +01008751 Py_ssize_t i;
Victor Stinner42bf7752011-11-21 22:52:58 +01008752 enum PyUnicode_Kind kind;
8753 void *data;
Guido van Rossum9e896b32000-04-05 20:11:21 +00008754
8755 if (output == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008756 PyErr_BadArgument();
8757 return -1;
Guido van Rossum9e896b32000-04-05 20:11:21 +00008758 }
8759
Victor Stinner42bf7752011-11-21 22:52:58 +01008760 unicode = PyUnicode_FromUnicode(s, length);
8761 if (unicode == NULL)
8762 return -1;
8763
Benjamin Petersonbac79492012-01-14 13:34:47 -05008764 if (PyUnicode_READY(unicode) == -1) {
Victor Stinner6345be92011-11-25 20:09:01 +01008765 Py_DECREF(unicode);
8766 return -1;
8767 }
Victor Stinner42bf7752011-11-21 22:52:58 +01008768 kind = PyUnicode_KIND(unicode);
8769 data = PyUnicode_DATA(unicode);
8770
Victor Stinnerb84d7232011-11-22 01:50:07 +01008771 for (i=0; i < length; ) {
Victor Stinner6345be92011-11-25 20:09:01 +01008772 PyObject *exc;
8773 Py_UCS4 ch;
Benjamin Peterson29060642009-01-31 22:14:21 +00008774 int decimal;
Victor Stinner6345be92011-11-25 20:09:01 +01008775 Py_ssize_t startpos;
8776
8777 ch = PyUnicode_READ(kind, data, i);
Tim Petersced69f82003-09-16 20:30:58 +00008778
Benjamin Peterson29060642009-01-31 22:14:21 +00008779 if (Py_UNICODE_ISSPACE(ch)) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00008780 *output++ = ' ';
Victor Stinnerb84d7232011-11-22 01:50:07 +01008781 i++;
Benjamin Peterson29060642009-01-31 22:14:21 +00008782 continue;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008783 }
Benjamin Peterson29060642009-01-31 22:14:21 +00008784 decimal = Py_UNICODE_TODECIMAL(ch);
8785 if (decimal >= 0) {
8786 *output++ = '0' + decimal;
Victor Stinnerb84d7232011-11-22 01:50:07 +01008787 i++;
Benjamin Peterson29060642009-01-31 22:14:21 +00008788 continue;
8789 }
8790 if (0 < ch && ch < 256) {
8791 *output++ = (char)ch;
Victor Stinnerb84d7232011-11-22 01:50:07 +01008792 i++;
Benjamin Peterson29060642009-01-31 22:14:21 +00008793 continue;
8794 }
Victor Stinner6345be92011-11-25 20:09:01 +01008795
Victor Stinner42bf7752011-11-21 22:52:58 +01008796 startpos = i;
Victor Stinner6345be92011-11-25 20:09:01 +01008797 exc = NULL;
8798 raise_encode_exception(&exc, "decimal", unicode,
8799 startpos, startpos+1,
8800 "invalid decimal Unicode string");
8801 Py_XDECREF(exc);
8802 Py_DECREF(unicode);
8803 return -1;
Guido van Rossum9e896b32000-04-05 20:11:21 +00008804 }
8805 /* 0-terminate the output string */
8806 *output++ = '\0';
Victor Stinner42bf7752011-11-21 22:52:58 +01008807 Py_DECREF(unicode);
Guido van Rossum9e896b32000-04-05 20:11:21 +00008808 return 0;
Guido van Rossum9e896b32000-04-05 20:11:21 +00008809}
8810
Guido van Rossumd57fd912000-03-10 22:53:23 +00008811/* --- Helpers ------------------------------------------------------------ */
8812
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008813static Py_ssize_t
Victor Stinner794d5672011-10-10 03:21:36 +02008814any_find_slice(int direction, PyObject* s1, PyObject* s2,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008815 Py_ssize_t start,
8816 Py_ssize_t end)
8817{
8818 int kind1, kind2, kind;
8819 void *buf1, *buf2;
8820 Py_ssize_t len1, len2, result;
8821
8822 kind1 = PyUnicode_KIND(s1);
8823 kind2 = PyUnicode_KIND(s2);
8824 kind = kind1 > kind2 ? kind1 : kind2;
8825 buf1 = PyUnicode_DATA(s1);
8826 buf2 = PyUnicode_DATA(s2);
8827 if (kind1 != kind)
8828 buf1 = _PyUnicode_AsKind(s1, kind);
8829 if (!buf1)
8830 return -2;
8831 if (kind2 != kind)
8832 buf2 = _PyUnicode_AsKind(s2, kind);
8833 if (!buf2) {
8834 if (kind1 != kind) PyMem_Free(buf1);
8835 return -2;
8836 }
8837 len1 = PyUnicode_GET_LENGTH(s1);
8838 len2 = PyUnicode_GET_LENGTH(s2);
8839
Victor Stinner794d5672011-10-10 03:21:36 +02008840 if (direction > 0) {
Benjamin Petersonead6b532011-12-20 17:23:42 -06008841 switch (kind) {
Victor Stinner794d5672011-10-10 03:21:36 +02008842 case PyUnicode_1BYTE_KIND:
8843 if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2))
8844 result = asciilib_find_slice(buf1, len1, buf2, len2, start, end);
8845 else
8846 result = ucs1lib_find_slice(buf1, len1, buf2, len2, start, end);
8847 break;
8848 case PyUnicode_2BYTE_KIND:
8849 result = ucs2lib_find_slice(buf1, len1, buf2, len2, start, end);
8850 break;
8851 case PyUnicode_4BYTE_KIND:
8852 result = ucs4lib_find_slice(buf1, len1, buf2, len2, start, end);
8853 break;
8854 default:
8855 assert(0); result = -2;
8856 }
8857 }
8858 else {
Benjamin Petersonead6b532011-12-20 17:23:42 -06008859 switch (kind) {
Victor Stinner794d5672011-10-10 03:21:36 +02008860 case PyUnicode_1BYTE_KIND:
8861 if (PyUnicode_IS_ASCII(s1) && PyUnicode_IS_ASCII(s2))
8862 result = asciilib_rfind_slice(buf1, len1, buf2, len2, start, end);
8863 else
8864 result = ucs1lib_rfind_slice(buf1, len1, buf2, len2, start, end);
8865 break;
8866 case PyUnicode_2BYTE_KIND:
8867 result = ucs2lib_rfind_slice(buf1, len1, buf2, len2, start, end);
8868 break;
8869 case PyUnicode_4BYTE_KIND:
8870 result = ucs4lib_rfind_slice(buf1, len1, buf2, len2, start, end);
8871 break;
8872 default:
8873 assert(0); result = -2;
8874 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008875 }
8876
8877 if (kind1 != kind)
8878 PyMem_Free(buf1);
8879 if (kind2 != kind)
8880 PyMem_Free(buf2);
8881
8882 return result;
8883}
8884
8885Py_ssize_t
Victor Stinner41a863c2012-02-24 00:37:51 +01008886_PyUnicode_InsertThousandsGrouping(
8887 PyObject *unicode, Py_ssize_t index,
8888 Py_ssize_t n_buffer,
8889 void *digits, Py_ssize_t n_digits,
8890 Py_ssize_t min_width,
8891 const char *grouping, PyObject *thousands_sep,
8892 Py_UCS4 *maxchar)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008893{
Victor Stinner41a863c2012-02-24 00:37:51 +01008894 unsigned int kind, thousands_sep_kind;
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008895 char *data, *thousands_sep_data;
Victor Stinner41a863c2012-02-24 00:37:51 +01008896 Py_ssize_t thousands_sep_len;
8897 Py_ssize_t len;
8898
8899 if (unicode != NULL) {
8900 kind = PyUnicode_KIND(unicode);
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008901 data = (char *) PyUnicode_DATA(unicode) + index * kind;
Victor Stinner41a863c2012-02-24 00:37:51 +01008902 }
8903 else {
8904 kind = PyUnicode_1BYTE_KIND;
8905 data = NULL;
8906 }
8907 thousands_sep_kind = PyUnicode_KIND(thousands_sep);
8908 thousands_sep_data = PyUnicode_DATA(thousands_sep);
8909 thousands_sep_len = PyUnicode_GET_LENGTH(thousands_sep);
8910 if (unicode != NULL && thousands_sep_kind != kind) {
Victor Stinner90f50d42012-02-24 01:44:47 +01008911 if (thousands_sep_kind < kind) {
8912 thousands_sep_data = _PyUnicode_AsKind(thousands_sep, kind);
8913 if (!thousands_sep_data)
8914 return -1;
8915 }
8916 else {
8917 data = _PyUnicode_AsKind(unicode, thousands_sep_kind);
8918 if (!data)
8919 return -1;
8920 }
Victor Stinner41a863c2012-02-24 00:37:51 +01008921 }
8922
Benjamin Petersonead6b532011-12-20 17:23:42 -06008923 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008924 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02008925 if (unicode != NULL && PyUnicode_IS_ASCII(unicode))
Victor Stinner41a863c2012-02-24 00:37:51 +01008926 len = asciilib_InsertThousandsGrouping(
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008927 (Py_UCS1 *) data, n_buffer, (Py_UCS1 *) digits, n_digits,
Victor Stinner41a863c2012-02-24 00:37:51 +01008928 min_width, grouping,
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008929 (Py_UCS1 *) thousands_sep_data, thousands_sep_len);
Victor Stinnerc3cec782011-10-05 21:24:08 +02008930 else
Victor Stinner41a863c2012-02-24 00:37:51 +01008931 len = ucs1lib_InsertThousandsGrouping(
Victor Stinnerc3cec782011-10-05 21:24:08 +02008932 (Py_UCS1*)data, n_buffer, (Py_UCS1*)digits, n_digits,
Victor Stinner41a863c2012-02-24 00:37:51 +01008933 min_width, grouping,
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008934 (Py_UCS1 *) thousands_sep_data, thousands_sep_len);
Victor Stinner41a863c2012-02-24 00:37:51 +01008935 break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008936 case PyUnicode_2BYTE_KIND:
Victor Stinner41a863c2012-02-24 00:37:51 +01008937 len = ucs2lib_InsertThousandsGrouping(
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008938 (Py_UCS2 *) data, n_buffer, (Py_UCS2 *) digits, n_digits,
Victor Stinner41a863c2012-02-24 00:37:51 +01008939 min_width, grouping,
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008940 (Py_UCS2 *) thousands_sep_data, thousands_sep_len);
Victor Stinner41a863c2012-02-24 00:37:51 +01008941 break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008942 case PyUnicode_4BYTE_KIND:
Victor Stinner41a863c2012-02-24 00:37:51 +01008943 len = ucs4lib_InsertThousandsGrouping(
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008944 (Py_UCS4 *) data, n_buffer, (Py_UCS4 *) digits, n_digits,
Victor Stinner41a863c2012-02-24 00:37:51 +01008945 min_width, grouping,
Antoine Pitrou842c0f12012-02-24 13:30:46 +01008946 (Py_UCS4 *) thousands_sep_data, thousands_sep_len);
Victor Stinner41a863c2012-02-24 00:37:51 +01008947 break;
8948 default:
8949 assert(0);
8950 return -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008951 }
Victor Stinner90f50d42012-02-24 01:44:47 +01008952 if (unicode != NULL && thousands_sep_kind != kind) {
8953 if (thousands_sep_kind < kind)
8954 PyMem_Free(thousands_sep_data);
8955 else
8956 PyMem_Free(data);
8957 }
Victor Stinner41a863c2012-02-24 00:37:51 +01008958 if (unicode == NULL) {
8959 *maxchar = 127;
8960 if (len != n_digits) {
Benjamin Peterson7e303732013-06-10 09:19:46 -07008961 *maxchar = Py_MAX(*maxchar,
Victor Stinnere6abb482012-05-02 01:15:40 +02008962 PyUnicode_MAX_CHAR_VALUE(thousands_sep));
Victor Stinner41a863c2012-02-24 00:37:51 +01008963 }
8964 }
8965 return len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008966}
8967
8968
Thomas Wouters477c8d52006-05-27 19:21:47 +00008969/* helper macro to fixup start/end slice values */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00008970#define ADJUST_INDICES(start, end, len) \
8971 if (end > len) \
8972 end = len; \
8973 else if (end < 0) { \
8974 end += len; \
8975 if (end < 0) \
8976 end = 0; \
8977 } \
8978 if (start < 0) { \
8979 start += len; \
8980 if (start < 0) \
8981 start = 0; \
8982 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00008983
Alexander Belopolsky40018472011-02-26 01:02:56 +00008984Py_ssize_t
8985PyUnicode_Count(PyObject *str,
8986 PyObject *substr,
8987 Py_ssize_t start,
8988 Py_ssize_t end)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008989{
Martin v. Löwis18e16552006-02-15 17:27:45 +00008990 Py_ssize_t result;
Victor Stinner9db1a8b2011-10-23 20:04:37 +02008991 PyObject* str_obj;
8992 PyObject* sub_obj;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02008993 int kind1, kind2, kind;
8994 void *buf1 = NULL, *buf2 = NULL;
8995 Py_ssize_t len1, len2;
Tim Petersced69f82003-09-16 20:30:58 +00008996
Victor Stinner9db1a8b2011-10-23 20:04:37 +02008997 str_obj = PyUnicode_FromObject(str);
Benjamin Peterson22a29702012-01-02 09:00:30 -06008998 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +00008999 return -1;
Victor Stinner9db1a8b2011-10-23 20:04:37 +02009000 sub_obj = PyUnicode_FromObject(substr);
Benjamin Peterson22a29702012-01-02 09:00:30 -06009001 if (!sub_obj) {
9002 Py_DECREF(str_obj);
9003 return -1;
9004 }
Benjamin Peterson4c13a4a2012-01-02 09:07:38 -06009005 if (PyUnicode_READY(sub_obj) == -1 || PyUnicode_READY(str_obj) == -1) {
Benjamin Peterson5e458f52012-01-02 10:12:13 -06009006 Py_DECREF(sub_obj);
Benjamin Peterson29060642009-01-31 22:14:21 +00009007 Py_DECREF(str_obj);
9008 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009009 }
Tim Petersced69f82003-09-16 20:30:58 +00009010
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009011 kind1 = PyUnicode_KIND(str_obj);
9012 kind2 = PyUnicode_KIND(sub_obj);
Antoine Pitroue45c0c52012-05-12 15:49:07 +02009013 kind = kind1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009014 buf1 = PyUnicode_DATA(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009015 buf2 = PyUnicode_DATA(sub_obj);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -05009016 if (kind2 != kind) {
Antoine Pitrou758153b2012-05-12 15:51:51 +02009017 if (kind2 > kind) {
9018 Py_DECREF(sub_obj);
9019 Py_DECREF(str_obj);
Antoine Pitroue45c0c52012-05-12 15:49:07 +02009020 return 0;
Antoine Pitrou758153b2012-05-12 15:51:51 +02009021 }
Victor Stinner7931d9a2011-11-04 00:22:48 +01009022 buf2 = _PyUnicode_AsKind(sub_obj, kind);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -05009023 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009024 if (!buf2)
9025 goto onError;
9026 len1 = PyUnicode_GET_LENGTH(str_obj);
9027 len2 = PyUnicode_GET_LENGTH(sub_obj);
9028
9029 ADJUST_INDICES(start, end, len1);
Benjamin Petersonead6b532011-12-20 17:23:42 -06009030 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009031 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009032 if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sub_obj))
9033 result = asciilib_count(
9034 ((Py_UCS1*)buf1) + start, end - start,
9035 buf2, len2, PY_SSIZE_T_MAX
9036 );
9037 else
9038 result = ucs1lib_count(
9039 ((Py_UCS1*)buf1) + start, end - start,
9040 buf2, len2, PY_SSIZE_T_MAX
9041 );
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009042 break;
9043 case PyUnicode_2BYTE_KIND:
9044 result = ucs2lib_count(
9045 ((Py_UCS2*)buf1) + start, end - start,
9046 buf2, len2, PY_SSIZE_T_MAX
9047 );
9048 break;
9049 case PyUnicode_4BYTE_KIND:
9050 result = ucs4lib_count(
9051 ((Py_UCS4*)buf1) + start, end - start,
9052 buf2, len2, PY_SSIZE_T_MAX
9053 );
9054 break;
9055 default:
9056 assert(0); result = 0;
9057 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00009058
9059 Py_DECREF(sub_obj);
9060 Py_DECREF(str_obj);
9061
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009062 if (kind2 != kind)
9063 PyMem_Free(buf2);
9064
Guido van Rossumd57fd912000-03-10 22:53:23 +00009065 return result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009066 onError:
9067 Py_DECREF(sub_obj);
9068 Py_DECREF(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009069 if (kind2 != kind && buf2)
9070 PyMem_Free(buf2);
9071 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009072}
9073
Alexander Belopolsky40018472011-02-26 01:02:56 +00009074Py_ssize_t
9075PyUnicode_Find(PyObject *str,
9076 PyObject *sub,
9077 Py_ssize_t start,
9078 Py_ssize_t end,
9079 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009080{
Martin v. Löwis18e16552006-02-15 17:27:45 +00009081 Py_ssize_t result;
Tim Petersced69f82003-09-16 20:30:58 +00009082
Guido van Rossumd57fd912000-03-10 22:53:23 +00009083 str = PyUnicode_FromObject(str);
Benjamin Peterson22a29702012-01-02 09:00:30 -06009084 if (!str)
Benjamin Peterson29060642009-01-31 22:14:21 +00009085 return -2;
Thomas Wouters477c8d52006-05-27 19:21:47 +00009086 sub = PyUnicode_FromObject(sub);
Benjamin Peterson22a29702012-01-02 09:00:30 -06009087 if (!sub) {
9088 Py_DECREF(str);
9089 return -2;
9090 }
9091 if (PyUnicode_READY(sub) == -1 || PyUnicode_READY(str) == -1) {
9092 Py_DECREF(sub);
Benjamin Peterson29060642009-01-31 22:14:21 +00009093 Py_DECREF(str);
9094 return -2;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009095 }
Tim Petersced69f82003-09-16 20:30:58 +00009096
Victor Stinner794d5672011-10-10 03:21:36 +02009097 result = any_find_slice(direction,
9098 str, sub, start, end
9099 );
Thomas Wouters477c8d52006-05-27 19:21:47 +00009100
Guido van Rossumd57fd912000-03-10 22:53:23 +00009101 Py_DECREF(str);
Thomas Wouters477c8d52006-05-27 19:21:47 +00009102 Py_DECREF(sub);
9103
Guido van Rossumd57fd912000-03-10 22:53:23 +00009104 return result;
9105}
9106
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009107Py_ssize_t
9108PyUnicode_FindChar(PyObject *str, Py_UCS4 ch,
9109 Py_ssize_t start, Py_ssize_t end,
9110 int direction)
9111{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009112 int kind;
Antoine Pitrouf0b934b2011-10-13 18:55:09 +02009113 Py_ssize_t result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009114 if (PyUnicode_READY(str) == -1)
9115 return -2;
Victor Stinner267aa242011-10-02 01:08:37 +02009116 if (start < 0 || end < 0) {
9117 PyErr_SetString(PyExc_IndexError, "string index out of range");
9118 return -2;
9119 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009120 if (end > PyUnicode_GET_LENGTH(str))
9121 end = PyUnicode_GET_LENGTH(str);
9122 kind = PyUnicode_KIND(str);
Antoine Pitrouf0b934b2011-10-13 18:55:09 +02009123 result = findchar(PyUnicode_1BYTE_DATA(str) + kind*start,
9124 kind, end-start, ch, direction);
9125 if (result == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009126 return -1;
Antoine Pitrouf0b934b2011-10-13 18:55:09 +02009127 else
9128 return start + result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009129}
9130
Alexander Belopolsky40018472011-02-26 01:02:56 +00009131static int
Victor Stinner9db1a8b2011-10-23 20:04:37 +02009132tailmatch(PyObject *self,
9133 PyObject *substring,
Alexander Belopolsky40018472011-02-26 01:02:56 +00009134 Py_ssize_t start,
9135 Py_ssize_t end,
9136 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009137{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009138 int kind_self;
9139 int kind_sub;
9140 void *data_self;
9141 void *data_sub;
9142 Py_ssize_t offset;
9143 Py_ssize_t i;
9144 Py_ssize_t end_sub;
9145
9146 if (PyUnicode_READY(self) == -1 ||
9147 PyUnicode_READY(substring) == -1)
9148 return 0;
9149
9150 if (PyUnicode_GET_LENGTH(substring) == 0)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009151 return 1;
9152
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009153 ADJUST_INDICES(start, end, PyUnicode_GET_LENGTH(self));
9154 end -= PyUnicode_GET_LENGTH(substring);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009155 if (end < start)
Benjamin Peterson29060642009-01-31 22:14:21 +00009156 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009157
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009158 kind_self = PyUnicode_KIND(self);
9159 data_self = PyUnicode_DATA(self);
9160 kind_sub = PyUnicode_KIND(substring);
9161 data_sub = PyUnicode_DATA(substring);
9162 end_sub = PyUnicode_GET_LENGTH(substring) - 1;
9163
9164 if (direction > 0)
9165 offset = end;
9166 else
9167 offset = start;
9168
9169 if (PyUnicode_READ(kind_self, data_self, offset) ==
9170 PyUnicode_READ(kind_sub, data_sub, 0) &&
9171 PyUnicode_READ(kind_self, data_self, offset + end_sub) ==
9172 PyUnicode_READ(kind_sub, data_sub, end_sub)) {
9173 /* If both are of the same kind, memcmp is sufficient */
9174 if (kind_self == kind_sub) {
9175 return ! memcmp((char *)data_self +
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009176 (offset * PyUnicode_KIND(substring)),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009177 data_sub,
9178 PyUnicode_GET_LENGTH(substring) *
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009179 PyUnicode_KIND(substring));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009180 }
9181 /* otherwise we have to compare each character by first accesing it */
9182 else {
9183 /* We do not need to compare 0 and len(substring)-1 because
9184 the if statement above ensured already that they are equal
9185 when we end up here. */
Antoine Pitrou057119b2012-09-02 17:56:33 +02009186 /* TODO: honor direction and do a forward or backwards search */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009187 for (i = 1; i < end_sub; ++i) {
9188 if (PyUnicode_READ(kind_self, data_self, offset + i) !=
9189 PyUnicode_READ(kind_sub, data_sub, i))
9190 return 0;
9191 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009192 return 1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009193 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00009194 }
9195
9196 return 0;
9197}
9198
Alexander Belopolsky40018472011-02-26 01:02:56 +00009199Py_ssize_t
9200PyUnicode_Tailmatch(PyObject *str,
9201 PyObject *substr,
9202 Py_ssize_t start,
9203 Py_ssize_t end,
9204 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009205{
Martin v. Löwis18e16552006-02-15 17:27:45 +00009206 Py_ssize_t result;
Tim Petersced69f82003-09-16 20:30:58 +00009207
Guido van Rossumd57fd912000-03-10 22:53:23 +00009208 str = PyUnicode_FromObject(str);
9209 if (str == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009210 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009211 substr = PyUnicode_FromObject(substr);
9212 if (substr == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009213 Py_DECREF(str);
9214 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009215 }
Tim Petersced69f82003-09-16 20:30:58 +00009216
Victor Stinner9db1a8b2011-10-23 20:04:37 +02009217 result = tailmatch(str, substr,
Benjamin Peterson29060642009-01-31 22:14:21 +00009218 start, end, direction);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009219 Py_DECREF(str);
9220 Py_DECREF(substr);
9221 return result;
9222}
9223
Guido van Rossumd57fd912000-03-10 22:53:23 +00009224/* Apply fixfct filter to the Unicode object self and return a
9225 reference to the modified object */
9226
Alexander Belopolsky40018472011-02-26 01:02:56 +00009227static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +02009228fixup(PyObject *self,
9229 Py_UCS4 (*fixfct)(PyObject *s))
Guido van Rossumd57fd912000-03-10 22:53:23 +00009230{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009231 PyObject *u;
9232 Py_UCS4 maxchar_old, maxchar_new = 0;
Victor Stinnereaab6042011-12-11 22:22:39 +01009233 PyObject *v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009234
Victor Stinnerbf6e5602011-12-12 01:53:47 +01009235 u = _PyUnicode_Copy(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009236 if (u == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009237 return NULL;
Victor Stinner87af4f22011-11-21 23:03:47 +01009238 maxchar_old = PyUnicode_MAX_CHAR_VALUE(u);
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00009239
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009240 /* fix functions return the new maximum character in a string,
9241 if the kind of the resulting unicode object does not change,
9242 everything is fine. Otherwise we need to change the string kind
9243 and re-run the fix function. */
Victor Stinner9310abb2011-10-05 00:59:23 +02009244 maxchar_new = fixfct(u);
Victor Stinnereaab6042011-12-11 22:22:39 +01009245
9246 if (maxchar_new == 0) {
9247 /* no changes */;
9248 if (PyUnicode_CheckExact(self)) {
9249 Py_DECREF(u);
9250 Py_INCREF(self);
9251 return self;
9252 }
9253 else
9254 return u;
9255 }
9256
Victor Stinnere6abb482012-05-02 01:15:40 +02009257 maxchar_new = align_maxchar(maxchar_new);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009258
Victor Stinnereaab6042011-12-11 22:22:39 +01009259 if (maxchar_new == maxchar_old)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009260 return u;
Victor Stinnereaab6042011-12-11 22:22:39 +01009261
9262 /* In case the maximum character changed, we need to
9263 convert the string to the new category. */
9264 v = PyUnicode_New(PyUnicode_GET_LENGTH(self), maxchar_new);
9265 if (v == NULL) {
9266 Py_DECREF(u);
9267 return NULL;
9268 }
9269 if (maxchar_new > maxchar_old) {
9270 /* If the maxchar increased so that the kind changed, not all
9271 characters are representable anymore and we need to fix the
9272 string again. This only happens in very few cases. */
Victor Stinnerd3f08822012-05-29 12:57:52 +02009273 _PyUnicode_FastCopyCharacters(v, 0,
9274 self, 0, PyUnicode_GET_LENGTH(self));
Victor Stinnereaab6042011-12-11 22:22:39 +01009275 maxchar_old = fixfct(v);
9276 assert(maxchar_old > 0 && maxchar_old <= maxchar_new);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009277 }
9278 else {
Victor Stinnerd3f08822012-05-29 12:57:52 +02009279 _PyUnicode_FastCopyCharacters(v, 0,
9280 u, 0, PyUnicode_GET_LENGTH(self));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009281 }
Victor Stinnereaab6042011-12-11 22:22:39 +01009282 Py_DECREF(u);
9283 assert(_PyUnicode_CheckConsistency(v, 1));
9284 return v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009285}
9286
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009287static PyObject *
9288ascii_upper_or_lower(PyObject *self, int lower)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009289{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009290 Py_ssize_t len = PyUnicode_GET_LENGTH(self);
9291 char *resdata, *data = PyUnicode_DATA(self);
9292 PyObject *res;
Tim Petersced69f82003-09-16 20:30:58 +00009293
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009294 res = PyUnicode_New(len, 127);
9295 if (res == NULL)
9296 return NULL;
9297 resdata = PyUnicode_DATA(res);
9298 if (lower)
9299 _Py_bytes_lower(resdata, data, len);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009300 else
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009301 _Py_bytes_upper(resdata, data, len);
9302 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009303}
9304
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009305static Py_UCS4
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009306handle_capital_sigma(int kind, void *data, Py_ssize_t length, Py_ssize_t i)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009307{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009308 Py_ssize_t j;
9309 int final_sigma;
9310 Py_UCS4 c;
9311 /* U+03A3 is in the Final_Sigma context when, it is found like this:
Tim Petersced69f82003-09-16 20:30:58 +00009312
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009313 \p{cased}\p{case-ignorable}*U+03A3!(\p{case-ignorable}*\p{cased})
9314
9315 where ! is a negation and \p{xxx} is a character with property xxx.
9316 */
9317 for (j = i - 1; j >= 0; j--) {
9318 c = PyUnicode_READ(kind, data, j);
9319 if (!_PyUnicode_IsCaseIgnorable(c))
9320 break;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009321 }
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009322 final_sigma = j >= 0 && _PyUnicode_IsCased(c);
9323 if (final_sigma) {
9324 for (j = i + 1; j < length; j++) {
9325 c = PyUnicode_READ(kind, data, j);
9326 if (!_PyUnicode_IsCaseIgnorable(c))
9327 break;
9328 }
9329 final_sigma = j == length || !_PyUnicode_IsCased(c);
9330 }
9331 return (final_sigma) ? 0x3C2 : 0x3C3;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009332}
9333
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009334static int
9335lower_ucs4(int kind, void *data, Py_ssize_t length, Py_ssize_t i,
9336 Py_UCS4 c, Py_UCS4 *mapped)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009337{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009338 /* Obscure special case. */
9339 if (c == 0x3A3) {
9340 mapped[0] = handle_capital_sigma(kind, data, length, i);
9341 return 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009342 }
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009343 return _PyUnicode_ToLowerFull(c, mapped);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009344}
9345
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009346static Py_ssize_t
9347do_capitalize(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009348{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009349 Py_ssize_t i, k = 0;
9350 int n_res, j;
9351 Py_UCS4 c, mapped[3];
Tim Petersced69f82003-09-16 20:30:58 +00009352
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009353 c = PyUnicode_READ(kind, data, 0);
9354 n_res = _PyUnicode_ToUpperFull(c, mapped);
9355 for (j = 0; j < n_res; j++) {
Benjamin Peterson7e303732013-06-10 09:19:46 -07009356 *maxchar = Py_MAX(*maxchar, mapped[j]);
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009357 res[k++] = mapped[j];
Guido van Rossumd57fd912000-03-10 22:53:23 +00009358 }
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009359 for (i = 1; i < length; i++) {
9360 c = PyUnicode_READ(kind, data, i);
9361 n_res = lower_ucs4(kind, data, length, i, c, mapped);
9362 for (j = 0; j < n_res; j++) {
Benjamin Peterson7e303732013-06-10 09:19:46 -07009363 *maxchar = Py_MAX(*maxchar, mapped[j]);
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009364 res[k++] = mapped[j];
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00009365 }
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00009366 }
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009367 return k;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009368}
9369
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009370static Py_ssize_t
9371do_swapcase(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar) {
9372 Py_ssize_t i, k = 0;
9373
9374 for (i = 0; i < length; i++) {
9375 Py_UCS4 c = PyUnicode_READ(kind, data, i), mapped[3];
9376 int n_res, j;
9377 if (Py_UNICODE_ISUPPER(c)) {
9378 n_res = lower_ucs4(kind, data, length, i, c, mapped);
9379 }
9380 else if (Py_UNICODE_ISLOWER(c)) {
9381 n_res = _PyUnicode_ToUpperFull(c, mapped);
9382 }
9383 else {
9384 n_res = 1;
9385 mapped[0] = c;
9386 }
9387 for (j = 0; j < n_res; j++) {
Benjamin Peterson7e303732013-06-10 09:19:46 -07009388 *maxchar = Py_MAX(*maxchar, mapped[j]);
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009389 res[k++] = mapped[j];
9390 }
9391 }
9392 return k;
9393}
9394
9395static Py_ssize_t
9396do_upper_or_lower(int kind, void *data, Py_ssize_t length, Py_UCS4 *res,
9397 Py_UCS4 *maxchar, int lower)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009398{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009399 Py_ssize_t i, k = 0;
9400
9401 for (i = 0; i < length; i++) {
9402 Py_UCS4 c = PyUnicode_READ(kind, data, i), mapped[3];
9403 int n_res, j;
9404 if (lower)
9405 n_res = lower_ucs4(kind, data, length, i, c, mapped);
9406 else
9407 n_res = _PyUnicode_ToUpperFull(c, mapped);
9408 for (j = 0; j < n_res; j++) {
Benjamin Peterson7e303732013-06-10 09:19:46 -07009409 *maxchar = Py_MAX(*maxchar, mapped[j]);
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009410 res[k++] = mapped[j];
9411 }
9412 }
9413 return k;
9414}
9415
9416static Py_ssize_t
9417do_upper(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
9418{
9419 return do_upper_or_lower(kind, data, length, res, maxchar, 0);
9420}
9421
9422static Py_ssize_t
9423do_lower(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
9424{
9425 return do_upper_or_lower(kind, data, length, res, maxchar, 1);
9426}
9427
Benjamin Petersone51757f2012-01-12 21:10:29 -05009428static Py_ssize_t
Benjamin Petersond5890c82012-01-14 13:23:30 -05009429do_casefold(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
9430{
9431 Py_ssize_t i, k = 0;
9432
9433 for (i = 0; i < length; i++) {
9434 Py_UCS4 c = PyUnicode_READ(kind, data, i);
9435 Py_UCS4 mapped[3];
9436 int j, n_res = _PyUnicode_ToFoldedFull(c, mapped);
9437 for (j = 0; j < n_res; j++) {
Benjamin Peterson7e303732013-06-10 09:19:46 -07009438 *maxchar = Py_MAX(*maxchar, mapped[j]);
Benjamin Petersond5890c82012-01-14 13:23:30 -05009439 res[k++] = mapped[j];
9440 }
9441 }
9442 return k;
9443}
9444
9445static Py_ssize_t
Benjamin Petersone51757f2012-01-12 21:10:29 -05009446do_title(int kind, void *data, Py_ssize_t length, Py_UCS4 *res, Py_UCS4 *maxchar)
9447{
9448 Py_ssize_t i, k = 0;
9449 int previous_is_cased;
9450
9451 previous_is_cased = 0;
9452 for (i = 0; i < length; i++) {
9453 const Py_UCS4 c = PyUnicode_READ(kind, data, i);
9454 Py_UCS4 mapped[3];
9455 int n_res, j;
9456
9457 if (previous_is_cased)
9458 n_res = lower_ucs4(kind, data, length, i, c, mapped);
9459 else
9460 n_res = _PyUnicode_ToTitleFull(c, mapped);
9461
9462 for (j = 0; j < n_res; j++) {
Benjamin Peterson7e303732013-06-10 09:19:46 -07009463 *maxchar = Py_MAX(*maxchar, mapped[j]);
Benjamin Petersone51757f2012-01-12 21:10:29 -05009464 res[k++] = mapped[j];
9465 }
9466
9467 previous_is_cased = _PyUnicode_IsCased(c);
9468 }
9469 return k;
9470}
9471
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009472static PyObject *
9473case_operation(PyObject *self,
9474 Py_ssize_t (*perform)(int, void *, Py_ssize_t, Py_UCS4 *, Py_UCS4 *))
9475{
9476 PyObject *res = NULL;
9477 Py_ssize_t length, newlength = 0;
9478 int kind, outkind;
9479 void *data, *outdata;
9480 Py_UCS4 maxchar = 0, *tmp, *tmpend;
9481
Benjamin Petersoneea48462012-01-16 14:28:50 -05009482 assert(PyUnicode_IS_READY(self));
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009483
9484 kind = PyUnicode_KIND(self);
9485 data = PyUnicode_DATA(self);
9486 length = PyUnicode_GET_LENGTH(self);
Benjamin Petersone1bd38c2014-10-15 11:47:36 -04009487 if (length > PY_SSIZE_T_MAX / 3 ||
9488 length > PY_SIZE_MAX / (3 * sizeof(Py_UCS4))) {
9489 PyErr_SetString(PyExc_OverflowError, "string is too long");
9490 return NULL;
9491 }
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -05009492 tmp = PyMem_MALLOC(sizeof(Py_UCS4) * 3 * length);
9493 if (tmp == NULL)
9494 return PyErr_NoMemory();
9495 newlength = perform(kind, data, length, tmp, &maxchar);
9496 res = PyUnicode_New(newlength, maxchar);
9497 if (res == NULL)
9498 goto leave;
9499 tmpend = tmp + newlength;
9500 outdata = PyUnicode_DATA(res);
9501 outkind = PyUnicode_KIND(res);
9502 switch (outkind) {
9503 case PyUnicode_1BYTE_KIND:
9504 _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS1, tmp, tmpend, outdata);
9505 break;
9506 case PyUnicode_2BYTE_KIND:
9507 _PyUnicode_CONVERT_BYTES(Py_UCS4, Py_UCS2, tmp, tmpend, outdata);
9508 break;
9509 case PyUnicode_4BYTE_KIND:
9510 memcpy(outdata, tmp, sizeof(Py_UCS4) * newlength);
9511 break;
9512 default:
9513 assert(0);
9514 break;
9515 }
9516 leave:
9517 PyMem_FREE(tmp);
9518 return res;
9519}
9520
Tim Peters8ce9f162004-08-27 01:49:32 +00009521PyObject *
9522PyUnicode_Join(PyObject *separator, PyObject *seq)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009523{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009524 PyObject *sep = NULL;
Victor Stinnerdd077322011-10-07 17:02:31 +02009525 Py_ssize_t seplen;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009526 PyObject *res = NULL; /* the result */
Tim Peters05eba1f2004-08-27 21:32:02 +00009527 PyObject *fseq; /* PySequence_Fast(seq) */
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009528 Py_ssize_t seqlen; /* len(fseq) -- number of items in sequence */
9529 PyObject **items;
Tim Peters8ce9f162004-08-27 01:49:32 +00009530 PyObject *item;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009531 Py_ssize_t sz, i, res_offset;
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009532 Py_UCS4 maxchar;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009533 Py_UCS4 item_maxchar;
Victor Stinnerdd077322011-10-07 17:02:31 +02009534 int use_memcpy;
9535 unsigned char *res_data = NULL, *sep_data = NULL;
9536 PyObject *last_obj;
9537 unsigned int kind = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009538
Benjamin Peterson9743b2c2014-02-15 13:02:52 -05009539 fseq = PySequence_Fast(seq, "can only join an iterable");
Tim Peters05eba1f2004-08-27 21:32:02 +00009540 if (fseq == NULL) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00009541 return NULL;
Tim Peters8ce9f162004-08-27 01:49:32 +00009542 }
9543
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009544 /* NOTE: the following code can't call back into Python code,
9545 * so we are sure that fseq won't be mutated.
Tim Peters91879ab2004-08-27 22:35:44 +00009546 */
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009547
Tim Peters05eba1f2004-08-27 21:32:02 +00009548 seqlen = PySequence_Fast_GET_SIZE(fseq);
9549 /* If empty sequence, return u"". */
9550 if (seqlen == 0) {
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009551 Py_DECREF(fseq);
Serhiy Storchaka678db842013-01-26 12:16:36 +02009552 _Py_RETURN_UNICODE_EMPTY();
Tim Peters05eba1f2004-08-27 21:32:02 +00009553 }
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009554
Tim Peters05eba1f2004-08-27 21:32:02 +00009555 /* If singleton sequence with an exact Unicode, return that. */
Victor Stinnerdd077322011-10-07 17:02:31 +02009556 last_obj = NULL;
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009557 items = PySequence_Fast_ITEMS(fseq);
Victor Stinneracf47b82011-10-06 12:32:37 +02009558 if (seqlen == 1) {
9559 if (PyUnicode_CheckExact(items[0])) {
9560 res = items[0];
9561 Py_INCREF(res);
9562 Py_DECREF(fseq);
9563 return res;
9564 }
Victor Stinnerdd077322011-10-07 17:02:31 +02009565 seplen = 0;
Victor Stinnerc6f0df72011-10-06 15:58:54 +02009566 maxchar = 0;
Tim Peters8ce9f162004-08-27 01:49:32 +00009567 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009568 else {
Victor Stinneracf47b82011-10-06 12:32:37 +02009569 /* Set up sep and seplen */
9570 if (separator == NULL) {
9571 /* fall back to a blank space separator */
9572 sep = PyUnicode_FromOrdinal(' ');
9573 if (!sep)
9574 goto onError;
Victor Stinnerdd077322011-10-07 17:02:31 +02009575 seplen = 1;
Victor Stinneracf47b82011-10-06 12:32:37 +02009576 maxchar = 32;
Tim Peters05eba1f2004-08-27 21:32:02 +00009577 }
Victor Stinneracf47b82011-10-06 12:32:37 +02009578 else {
9579 if (!PyUnicode_Check(separator)) {
9580 PyErr_Format(PyExc_TypeError,
9581 "separator: expected str instance,"
9582 " %.80s found",
9583 Py_TYPE(separator)->tp_name);
9584 goto onError;
9585 }
9586 if (PyUnicode_READY(separator))
9587 goto onError;
9588 sep = separator;
9589 seplen = PyUnicode_GET_LENGTH(separator);
9590 maxchar = PyUnicode_MAX_CHAR_VALUE(separator);
9591 /* inc refcount to keep this code path symmetric with the
9592 above case of a blank separator */
9593 Py_INCREF(sep);
9594 }
Victor Stinnerdd077322011-10-07 17:02:31 +02009595 last_obj = sep;
Tim Peters05eba1f2004-08-27 21:32:02 +00009596 }
9597
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009598 /* There are at least two things to join, or else we have a subclass
9599 * of str in the sequence.
9600 * Do a pre-pass to figure out the total amount of space we'll
9601 * need (sz), and see whether all argument are strings.
9602 */
9603 sz = 0;
Victor Stinnerdd077322011-10-07 17:02:31 +02009604#ifdef Py_DEBUG
9605 use_memcpy = 0;
9606#else
9607 use_memcpy = 1;
9608#endif
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009609 for (i = 0; i < seqlen; i++) {
9610 const Py_ssize_t old_sz = sz;
9611 item = items[i];
Benjamin Peterson29060642009-01-31 22:14:21 +00009612 if (!PyUnicode_Check(item)) {
9613 PyErr_Format(PyExc_TypeError,
9614 "sequence item %zd: expected str instance,"
9615 " %.80s found",
9616 i, Py_TYPE(item)->tp_name);
9617 goto onError;
9618 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009619 if (PyUnicode_READY(item) == -1)
9620 goto onError;
9621 sz += PyUnicode_GET_LENGTH(item);
9622 item_maxchar = PyUnicode_MAX_CHAR_VALUE(item);
Benjamin Peterson7e303732013-06-10 09:19:46 -07009623 maxchar = Py_MAX(maxchar, item_maxchar);
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009624 if (i != 0)
9625 sz += seplen;
9626 if (sz < old_sz || sz > PY_SSIZE_T_MAX) {
9627 PyErr_SetString(PyExc_OverflowError,
Benjamin Peterson29060642009-01-31 22:14:21 +00009628 "join() result is too long for a Python string");
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009629 goto onError;
9630 }
Victor Stinnerdd077322011-10-07 17:02:31 +02009631 if (use_memcpy && last_obj != NULL) {
9632 if (PyUnicode_KIND(last_obj) != PyUnicode_KIND(item))
9633 use_memcpy = 0;
9634 }
9635 last_obj = item;
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009636 }
Tim Petersced69f82003-09-16 20:30:58 +00009637
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009638 res = PyUnicode_New(sz, maxchar);
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009639 if (res == NULL)
9640 goto onError;
Tim Peters91879ab2004-08-27 22:35:44 +00009641
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009642 /* Catenate everything. */
Victor Stinnerdd077322011-10-07 17:02:31 +02009643#ifdef Py_DEBUG
9644 use_memcpy = 0;
9645#else
9646 if (use_memcpy) {
9647 res_data = PyUnicode_1BYTE_DATA(res);
9648 kind = PyUnicode_KIND(res);
9649 if (seplen != 0)
9650 sep_data = PyUnicode_1BYTE_DATA(sep);
9651 }
9652#endif
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009653 for (i = 0, res_offset = 0; i < seqlen; ++i) {
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +02009654 Py_ssize_t itemlen;
Antoine Pitrouaf14b792008-08-07 21:50:41 +00009655 item = items[i];
Benjamin Peterson29060642009-01-31 22:14:21 +00009656 /* Copy item, and maybe the separator. */
Victor Stinner9ce5a832011-10-03 23:36:02 +02009657 if (i && seplen != 0) {
Victor Stinnerdd077322011-10-07 17:02:31 +02009658 if (use_memcpy) {
9659 Py_MEMCPY(res_data,
9660 sep_data,
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009661 kind * seplen);
9662 res_data += kind * seplen;
Victor Stinnerdd077322011-10-07 17:02:31 +02009663 }
9664 else {
Victor Stinnerd3f08822012-05-29 12:57:52 +02009665 _PyUnicode_FastCopyCharacters(res, res_offset, sep, 0, seplen);
Victor Stinnerdd077322011-10-07 17:02:31 +02009666 res_offset += seplen;
9667 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009668 }
Victor Stinner9ce5a832011-10-03 23:36:02 +02009669 itemlen = PyUnicode_GET_LENGTH(item);
9670 if (itemlen != 0) {
Victor Stinnerdd077322011-10-07 17:02:31 +02009671 if (use_memcpy) {
9672 Py_MEMCPY(res_data,
9673 PyUnicode_DATA(item),
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009674 kind * itemlen);
9675 res_data += kind * itemlen;
Victor Stinnerdd077322011-10-07 17:02:31 +02009676 }
9677 else {
Victor Stinnerd3f08822012-05-29 12:57:52 +02009678 _PyUnicode_FastCopyCharacters(res, res_offset, item, 0, itemlen);
Victor Stinnerdd077322011-10-07 17:02:31 +02009679 res_offset += itemlen;
9680 }
Victor Stinner9ce5a832011-10-03 23:36:02 +02009681 }
Tim Peters05eba1f2004-08-27 21:32:02 +00009682 }
Victor Stinnerdd077322011-10-07 17:02:31 +02009683 if (use_memcpy)
9684 assert(res_data == PyUnicode_1BYTE_DATA(res)
Martin v. Löwisc47adb02011-10-07 20:55:35 +02009685 + kind * PyUnicode_GET_LENGTH(res));
Victor Stinnerdd077322011-10-07 17:02:31 +02009686 else
9687 assert(res_offset == PyUnicode_GET_LENGTH(res));
Tim Peters8ce9f162004-08-27 01:49:32 +00009688
Tim Peters05eba1f2004-08-27 21:32:02 +00009689 Py_DECREF(fseq);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009690 Py_XDECREF(sep);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02009691 assert(_PyUnicode_CheckConsistency(res, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009692 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009693
Benjamin Peterson29060642009-01-31 22:14:21 +00009694 onError:
Tim Peters05eba1f2004-08-27 21:32:02 +00009695 Py_DECREF(fseq);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009696 Py_XDECREF(sep);
Tim Peters8ce9f162004-08-27 01:49:32 +00009697 Py_XDECREF(res);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009698 return NULL;
9699}
9700
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009701#define FILL(kind, data, value, start, length) \
9702 do { \
9703 Py_ssize_t i_ = 0; \
9704 assert(kind != PyUnicode_WCHAR_KIND); \
9705 switch ((kind)) { \
9706 case PyUnicode_1BYTE_KIND: { \
9707 unsigned char * to_ = (unsigned char *)((data)) + (start); \
Victor Stinnerf2c76aa2012-05-03 13:10:40 +02009708 memset(to_, (unsigned char)value, (length)); \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009709 break; \
9710 } \
9711 case PyUnicode_2BYTE_KIND: { \
9712 Py_UCS2 * to_ = (Py_UCS2 *)((data)) + (start); \
9713 for (; i_ < (length); ++i_, ++to_) *to_ = (value); \
9714 break; \
9715 } \
Benjamin Petersone157cf12012-01-01 15:56:20 -06009716 case PyUnicode_4BYTE_KIND: { \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009717 Py_UCS4 * to_ = (Py_UCS4 *)((data)) + (start); \
9718 for (; i_ < (length); ++i_, ++to_) *to_ = (value); \
9719 break; \
Benjamin Petersone157cf12012-01-01 15:56:20 -06009720 default: assert(0); \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009721 } \
9722 } \
9723 } while (0)
9724
Victor Stinnerd3f08822012-05-29 12:57:52 +02009725void
9726_PyUnicode_FastFill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length,
9727 Py_UCS4 fill_char)
9728{
9729 const enum PyUnicode_Kind kind = PyUnicode_KIND(unicode);
9730 const void *data = PyUnicode_DATA(unicode);
9731 assert(PyUnicode_IS_READY(unicode));
9732 assert(unicode_modifiable(unicode));
9733 assert(fill_char <= PyUnicode_MAX_CHAR_VALUE(unicode));
9734 assert(start >= 0);
9735 assert(start + length <= PyUnicode_GET_LENGTH(unicode));
9736 FILL(kind, data, fill_char, start, length);
9737}
9738
Victor Stinner3fe55312012-01-04 00:33:50 +01009739Py_ssize_t
9740PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length,
9741 Py_UCS4 fill_char)
9742{
9743 Py_ssize_t maxlen;
Victor Stinner3fe55312012-01-04 00:33:50 +01009744
9745 if (!PyUnicode_Check(unicode)) {
9746 PyErr_BadInternalCall();
9747 return -1;
9748 }
9749 if (PyUnicode_READY(unicode) == -1)
9750 return -1;
9751 if (unicode_check_modifiable(unicode))
9752 return -1;
9753
Victor Stinnerd3f08822012-05-29 12:57:52 +02009754 if (start < 0) {
9755 PyErr_SetString(PyExc_IndexError, "string index out of range");
9756 return -1;
9757 }
Victor Stinner3fe55312012-01-04 00:33:50 +01009758 if (fill_char > PyUnicode_MAX_CHAR_VALUE(unicode)) {
9759 PyErr_SetString(PyExc_ValueError,
9760 "fill character is bigger than "
9761 "the string maximum character");
9762 return -1;
9763 }
9764
9765 maxlen = PyUnicode_GET_LENGTH(unicode) - start;
9766 length = Py_MIN(maxlen, length);
9767 if (length <= 0)
9768 return 0;
9769
Victor Stinnerd3f08822012-05-29 12:57:52 +02009770 _PyUnicode_FastFill(unicode, start, length, fill_char);
Victor Stinner3fe55312012-01-04 00:33:50 +01009771 return length;
9772}
9773
Victor Stinner9310abb2011-10-05 00:59:23 +02009774static PyObject *
9775pad(PyObject *self,
Alexander Belopolsky40018472011-02-26 01:02:56 +00009776 Py_ssize_t left,
9777 Py_ssize_t right,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009778 Py_UCS4 fill)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009779{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009780 PyObject *u;
9781 Py_UCS4 maxchar;
Victor Stinner6c7a52a2011-09-28 21:39:17 +02009782 int kind;
9783 void *data;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009784
9785 if (left < 0)
9786 left = 0;
9787 if (right < 0)
9788 right = 0;
9789
Victor Stinnerc4b49542011-12-11 22:44:26 +01009790 if (left == 0 && right == 0)
9791 return unicode_result_unchanged(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009792
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009793 if (left > PY_SSIZE_T_MAX - _PyUnicode_LENGTH(self) ||
9794 right > PY_SSIZE_T_MAX - (left + _PyUnicode_LENGTH(self))) {
Neal Norwitz3ce5d922008-08-24 07:08:55 +00009795 PyErr_SetString(PyExc_OverflowError, "padded string is too long");
9796 return NULL;
9797 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009798 maxchar = PyUnicode_MAX_CHAR_VALUE(self);
Benjamin Peterson7e303732013-06-10 09:19:46 -07009799 maxchar = Py_MAX(maxchar, fill);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009800 u = PyUnicode_New(left + _PyUnicode_LENGTH(self) + right, maxchar);
Victor Stinner6c7a52a2011-09-28 21:39:17 +02009801 if (!u)
9802 return NULL;
9803
9804 kind = PyUnicode_KIND(u);
9805 data = PyUnicode_DATA(u);
9806 if (left)
9807 FILL(kind, data, fill, 0, left);
9808 if (right)
9809 FILL(kind, data, fill, left + _PyUnicode_LENGTH(self), right);
Victor Stinnerd3f08822012-05-29 12:57:52 +02009810 _PyUnicode_FastCopyCharacters(u, left, self, 0, _PyUnicode_LENGTH(self));
Victor Stinnerbb10a1f2011-10-05 01:34:17 +02009811 assert(_PyUnicode_CheckConsistency(u, 1));
9812 return u;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009813}
9814
Alexander Belopolsky40018472011-02-26 01:02:56 +00009815PyObject *
9816PyUnicode_Splitlines(PyObject *string, int keepends)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009817{
Guido van Rossumd57fd912000-03-10 22:53:23 +00009818 PyObject *list;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009819
9820 string = PyUnicode_FromObject(string);
Benjamin Peterson22a29702012-01-02 09:00:30 -06009821 if (string == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009822 return NULL;
Benjamin Peterson22a29702012-01-02 09:00:30 -06009823 if (PyUnicode_READY(string) == -1) {
9824 Py_DECREF(string);
9825 return NULL;
9826 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00009827
Benjamin Petersonead6b532011-12-20 17:23:42 -06009828 switch (PyUnicode_KIND(string)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009829 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009830 if (PyUnicode_IS_ASCII(string))
9831 list = asciilib_splitlines(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009832 string, PyUnicode_1BYTE_DATA(string),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009833 PyUnicode_GET_LENGTH(string), keepends);
9834 else
9835 list = ucs1lib_splitlines(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009836 string, PyUnicode_1BYTE_DATA(string),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009837 PyUnicode_GET_LENGTH(string), keepends);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009838 break;
9839 case PyUnicode_2BYTE_KIND:
9840 list = ucs2lib_splitlines(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009841 string, PyUnicode_2BYTE_DATA(string),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009842 PyUnicode_GET_LENGTH(string), keepends);
9843 break;
9844 case PyUnicode_4BYTE_KIND:
9845 list = ucs4lib_splitlines(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009846 string, PyUnicode_4BYTE_DATA(string),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009847 PyUnicode_GET_LENGTH(string), keepends);
9848 break;
9849 default:
9850 assert(0);
9851 list = 0;
9852 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00009853 Py_DECREF(string);
9854 return list;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009855}
9856
Alexander Belopolsky40018472011-02-26 01:02:56 +00009857static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +02009858split(PyObject *self,
9859 PyObject *substring,
Alexander Belopolsky40018472011-02-26 01:02:56 +00009860 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009861{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009862 int kind1, kind2, kind;
9863 void *buf1, *buf2;
9864 Py_ssize_t len1, len2;
9865 PyObject* out;
9866
Guido van Rossumd57fd912000-03-10 22:53:23 +00009867 if (maxcount < 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009868 maxcount = PY_SSIZE_T_MAX;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009869
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009870 if (PyUnicode_READY(self) == -1)
9871 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009872
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009873 if (substring == NULL)
Benjamin Petersonead6b532011-12-20 17:23:42 -06009874 switch (PyUnicode_KIND(self)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009875 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009876 if (PyUnicode_IS_ASCII(self))
9877 return asciilib_split_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009878 self, PyUnicode_1BYTE_DATA(self),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009879 PyUnicode_GET_LENGTH(self), maxcount
9880 );
9881 else
9882 return ucs1lib_split_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009883 self, PyUnicode_1BYTE_DATA(self),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009884 PyUnicode_GET_LENGTH(self), maxcount
9885 );
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009886 case PyUnicode_2BYTE_KIND:
9887 return ucs2lib_split_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009888 self, PyUnicode_2BYTE_DATA(self),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009889 PyUnicode_GET_LENGTH(self), maxcount
9890 );
9891 case PyUnicode_4BYTE_KIND:
9892 return ucs4lib_split_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009893 self, PyUnicode_4BYTE_DATA(self),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009894 PyUnicode_GET_LENGTH(self), maxcount
9895 );
9896 default:
9897 assert(0);
9898 return NULL;
9899 }
9900
9901 if (PyUnicode_READY(substring) == -1)
9902 return NULL;
9903
9904 kind1 = PyUnicode_KIND(self);
9905 kind2 = PyUnicode_KIND(substring);
9906 kind = kind1 > kind2 ? kind1 : kind2;
9907 buf1 = PyUnicode_DATA(self);
9908 buf2 = PyUnicode_DATA(substring);
9909 if (kind1 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +01009910 buf1 = _PyUnicode_AsKind(self, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009911 if (!buf1)
9912 return NULL;
9913 if (kind2 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +01009914 buf2 = _PyUnicode_AsKind(substring, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009915 if (!buf2) {
9916 if (kind1 != kind) PyMem_Free(buf1);
9917 return NULL;
9918 }
9919 len1 = PyUnicode_GET_LENGTH(self);
9920 len2 = PyUnicode_GET_LENGTH(substring);
9921
Benjamin Petersonead6b532011-12-20 17:23:42 -06009922 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009923 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009924 if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring))
9925 out = asciilib_split(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009926 self, buf1, len1, buf2, len2, maxcount);
Victor Stinnerc3cec782011-10-05 21:24:08 +02009927 else
9928 out = ucs1lib_split(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009929 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009930 break;
9931 case PyUnicode_2BYTE_KIND:
9932 out = ucs2lib_split(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009933 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009934 break;
9935 case PyUnicode_4BYTE_KIND:
9936 out = ucs4lib_split(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009937 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009938 break;
9939 default:
9940 out = NULL;
9941 }
9942 if (kind1 != kind)
9943 PyMem_Free(buf1);
9944 if (kind2 != kind)
9945 PyMem_Free(buf2);
9946 return out;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009947}
9948
Alexander Belopolsky40018472011-02-26 01:02:56 +00009949static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +02009950rsplit(PyObject *self,
9951 PyObject *substring,
Alexander Belopolsky40018472011-02-26 01:02:56 +00009952 Py_ssize_t maxcount)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009953{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009954 int kind1, kind2, kind;
9955 void *buf1, *buf2;
9956 Py_ssize_t len1, len2;
9957 PyObject* out;
9958
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009959 if (maxcount < 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009960 maxcount = PY_SSIZE_T_MAX;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009961
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009962 if (PyUnicode_READY(self) == -1)
9963 return NULL;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009964
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009965 if (substring == NULL)
Benjamin Petersonead6b532011-12-20 17:23:42 -06009966 switch (PyUnicode_KIND(self)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009967 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +02009968 if (PyUnicode_IS_ASCII(self))
9969 return asciilib_rsplit_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009970 self, PyUnicode_1BYTE_DATA(self),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009971 PyUnicode_GET_LENGTH(self), maxcount
9972 );
9973 else
9974 return ucs1lib_rsplit_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009975 self, PyUnicode_1BYTE_DATA(self),
Victor Stinnerc3cec782011-10-05 21:24:08 +02009976 PyUnicode_GET_LENGTH(self), maxcount
9977 );
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009978 case PyUnicode_2BYTE_KIND:
9979 return ucs2lib_rsplit_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009980 self, PyUnicode_2BYTE_DATA(self),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009981 PyUnicode_GET_LENGTH(self), maxcount
9982 );
9983 case PyUnicode_4BYTE_KIND:
9984 return ucs4lib_rsplit_whitespace(
Victor Stinner7931d9a2011-11-04 00:22:48 +01009985 self, PyUnicode_4BYTE_DATA(self),
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02009986 PyUnicode_GET_LENGTH(self), maxcount
9987 );
9988 default:
9989 assert(0);
9990 return NULL;
9991 }
9992
9993 if (PyUnicode_READY(substring) == -1)
9994 return NULL;
9995
9996 kind1 = PyUnicode_KIND(self);
9997 kind2 = PyUnicode_KIND(substring);
9998 kind = kind1 > kind2 ? kind1 : kind2;
9999 buf1 = PyUnicode_DATA(self);
10000 buf2 = PyUnicode_DATA(substring);
10001 if (kind1 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +010010002 buf1 = _PyUnicode_AsKind(self, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010003 if (!buf1)
10004 return NULL;
10005 if (kind2 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +010010006 buf2 = _PyUnicode_AsKind(substring, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010007 if (!buf2) {
10008 if (kind1 != kind) PyMem_Free(buf1);
10009 return NULL;
10010 }
10011 len1 = PyUnicode_GET_LENGTH(self);
10012 len2 = PyUnicode_GET_LENGTH(substring);
10013
Benjamin Petersonead6b532011-12-20 17:23:42 -060010014 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010015 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +020010016 if (PyUnicode_IS_ASCII(self) && PyUnicode_IS_ASCII(substring))
10017 out = asciilib_rsplit(
Victor Stinner7931d9a2011-11-04 00:22:48 +010010018 self, buf1, len1, buf2, len2, maxcount);
Victor Stinnerc3cec782011-10-05 21:24:08 +020010019 else
10020 out = ucs1lib_rsplit(
Victor Stinner7931d9a2011-11-04 00:22:48 +010010021 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010022 break;
10023 case PyUnicode_2BYTE_KIND:
10024 out = ucs2lib_rsplit(
Victor Stinner7931d9a2011-11-04 00:22:48 +010010025 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010026 break;
10027 case PyUnicode_4BYTE_KIND:
10028 out = ucs4lib_rsplit(
Victor Stinner7931d9a2011-11-04 00:22:48 +010010029 self, buf1, len1, buf2, len2, maxcount);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010030 break;
10031 default:
10032 out = NULL;
10033 }
10034 if (kind1 != kind)
10035 PyMem_Free(buf1);
10036 if (kind2 != kind)
10037 PyMem_Free(buf2);
10038 return out;
10039}
10040
10041static Py_ssize_t
Victor Stinnerc3cec782011-10-05 21:24:08 +020010042anylib_find(int kind, PyObject *str1, void *buf1, Py_ssize_t len1,
10043 PyObject *str2, void *buf2, Py_ssize_t len2, Py_ssize_t offset)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010044{
Benjamin Petersonead6b532011-12-20 17:23:42 -060010045 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010046 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +020010047 if (PyUnicode_IS_ASCII(str1) && PyUnicode_IS_ASCII(str2))
10048 return asciilib_find(buf1, len1, buf2, len2, offset);
10049 else
10050 return ucs1lib_find(buf1, len1, buf2, len2, offset);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010051 case PyUnicode_2BYTE_KIND:
10052 return ucs2lib_find(buf1, len1, buf2, len2, offset);
10053 case PyUnicode_4BYTE_KIND:
10054 return ucs4lib_find(buf1, len1, buf2, len2, offset);
10055 }
10056 assert(0);
10057 return -1;
10058}
10059
10060static Py_ssize_t
Victor Stinnerc3cec782011-10-05 21:24:08 +020010061anylib_count(int kind, PyObject *sstr, void* sbuf, Py_ssize_t slen,
10062 PyObject *str1, void *buf1, Py_ssize_t len1, Py_ssize_t maxcount)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010063{
Benjamin Petersonc0b95d12011-12-20 17:24:05 -060010064 switch (kind) {
10065 case PyUnicode_1BYTE_KIND:
10066 if (PyUnicode_IS_ASCII(sstr) && PyUnicode_IS_ASCII(str1))
10067 return asciilib_count(sbuf, slen, buf1, len1, maxcount);
10068 else
10069 return ucs1lib_count(sbuf, slen, buf1, len1, maxcount);
10070 case PyUnicode_2BYTE_KIND:
10071 return ucs2lib_count(sbuf, slen, buf1, len1, maxcount);
10072 case PyUnicode_4BYTE_KIND:
10073 return ucs4lib_count(sbuf, slen, buf1, len1, maxcount);
10074 }
10075 assert(0);
10076 return 0;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000010077}
10078
Alexander Belopolsky40018472011-02-26 01:02:56 +000010079static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010080replace(PyObject *self, PyObject *str1,
10081 PyObject *str2, Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010082{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010083 PyObject *u;
10084 char *sbuf = PyUnicode_DATA(self);
10085 char *buf1 = PyUnicode_DATA(str1);
10086 char *buf2 = PyUnicode_DATA(str2);
10087 int srelease = 0, release1 = 0, release2 = 0;
10088 int skind = PyUnicode_KIND(self);
10089 int kind1 = PyUnicode_KIND(str1);
10090 int kind2 = PyUnicode_KIND(str2);
10091 Py_ssize_t slen = PyUnicode_GET_LENGTH(self);
10092 Py_ssize_t len1 = PyUnicode_GET_LENGTH(str1);
10093 Py_ssize_t len2 = PyUnicode_GET_LENGTH(str2);
Victor Stinner49a0a212011-10-12 23:46:10 +020010094 int mayshrink;
10095 Py_UCS4 maxchar, maxchar_str2;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010096
10097 if (maxcount < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000010098 maxcount = PY_SSIZE_T_MAX;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010099 else if (maxcount == 0 || slen == 0)
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010100 goto nothing;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010101
Victor Stinner59de0ee2011-10-07 10:01:28 +020010102 if (str1 == str2)
10103 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010104 if (skind < kind1)
10105 /* substring too wide to be present */
10106 goto nothing;
10107
Victor Stinner49a0a212011-10-12 23:46:10 +020010108 maxchar = PyUnicode_MAX_CHAR_VALUE(self);
10109 maxchar_str2 = PyUnicode_MAX_CHAR_VALUE(str2);
10110 /* Replacing str1 with str2 may cause a maxchar reduction in the
10111 result string. */
10112 mayshrink = (maxchar_str2 < maxchar);
Benjamin Peterson7e303732013-06-10 09:19:46 -070010113 maxchar = Py_MAX(maxchar, maxchar_str2);
Victor Stinner49a0a212011-10-12 23:46:10 +020010114
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010115 if (len1 == len2) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010116 /* same length */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010117 if (len1 == 0)
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010118 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010119 if (len1 == 1) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010120 /* replace characters */
Victor Stinner49a0a212011-10-12 23:46:10 +020010121 Py_UCS4 u1, u2;
10122 int rkind;
Victor Stinnerf6441102011-12-18 02:43:08 +010010123 Py_ssize_t index, pos;
10124 char *src;
10125
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010126 u1 = PyUnicode_READ_CHAR(str1, 0);
Victor Stinnerf6441102011-12-18 02:43:08 +010010127 pos = findchar(sbuf, PyUnicode_KIND(self), slen, u1, 1);
10128 if (pos < 0)
Thomas Wouters477c8d52006-05-27 19:21:47 +000010129 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010130 u2 = PyUnicode_READ_CHAR(str2, 0);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010131 u = PyUnicode_New(slen, maxchar);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010132 if (!u)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010133 goto error;
Victor Stinnerd3f08822012-05-29 12:57:52 +020010134 _PyUnicode_FastCopyCharacters(u, 0, self, 0, slen);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010135 rkind = PyUnicode_KIND(u);
Victor Stinnerf6441102011-12-18 02:43:08 +010010136
10137 PyUnicode_WRITE(rkind, PyUnicode_DATA(u), pos, u2);
10138 index = 0;
10139 src = sbuf;
10140 while (--maxcount)
10141 {
10142 pos++;
10143 src += pos * PyUnicode_KIND(self);
10144 slen -= pos;
10145 index += pos;
10146 pos = findchar(src, PyUnicode_KIND(self), slen, u1, 1);
10147 if (pos < 0)
10148 break;
10149 PyUnicode_WRITE(rkind, PyUnicode_DATA(u), index + pos, u2);
10150 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010151 }
10152 else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010153 int rkind = skind;
10154 char *res;
Victor Stinnerf6441102011-12-18 02:43:08 +010010155 Py_ssize_t i;
Victor Stinner25a4b292011-10-06 12:31:55 +020010156
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010157 if (kind1 < rkind) {
10158 /* widen substring */
10159 buf1 = _PyUnicode_AsKind(str1, rkind);
10160 if (!buf1) goto error;
10161 release1 = 1;
10162 }
Victor Stinnerc3cec782011-10-05 21:24:08 +020010163 i = anylib_find(rkind, self, sbuf, slen, str1, buf1, len1, 0);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010164 if (i < 0)
10165 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010166 if (rkind > kind2) {
10167 /* widen replacement */
10168 buf2 = _PyUnicode_AsKind(str2, rkind);
10169 if (!buf2) goto error;
10170 release2 = 1;
10171 }
10172 else if (rkind < kind2) {
10173 /* widen self and buf1 */
10174 rkind = kind2;
10175 if (release1) PyMem_Free(buf1);
Antoine Pitrou6d5ad222012-11-17 23:28:17 +010010176 release1 = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010177 sbuf = _PyUnicode_AsKind(self, rkind);
10178 if (!sbuf) goto error;
10179 srelease = 1;
10180 buf1 = _PyUnicode_AsKind(str1, rkind);
10181 if (!buf1) goto error;
10182 release1 = 1;
10183 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010184 u = PyUnicode_New(slen, maxchar);
10185 if (!u)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010186 goto error;
Victor Stinner49a0a212011-10-12 23:46:10 +020010187 assert(PyUnicode_KIND(u) == rkind);
10188 res = PyUnicode_DATA(u);
Victor Stinner25a4b292011-10-06 12:31:55 +020010189
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010190 memcpy(res, sbuf, rkind * slen);
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010191 /* change everything in-place, starting with this one */
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010192 memcpy(res + rkind * i,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010193 buf2,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010194 rkind * len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010195 i += len1;
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010196
10197 while ( --maxcount > 0) {
Victor Stinnerc3cec782011-10-05 21:24:08 +020010198 i = anylib_find(rkind, self,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010199 sbuf+rkind*i, slen-i,
Victor Stinnerc3cec782011-10-05 21:24:08 +020010200 str1, buf1, len1, i);
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010201 if (i == -1)
10202 break;
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010203 memcpy(res + rkind * i,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010204 buf2,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010205 rkind * len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010206 i += len1;
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010207 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000010208 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010209 }
10210 else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010211 Py_ssize_t n, i, j, ires;
Mark Dickinsonc04ddff2012-10-06 18:04:49 +010010212 Py_ssize_t new_size;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010213 int rkind = skind;
10214 char *res;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010215
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010216 if (kind1 < rkind) {
Victor Stinner49a0a212011-10-12 23:46:10 +020010217 /* widen substring */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010218 buf1 = _PyUnicode_AsKind(str1, rkind);
10219 if (!buf1) goto error;
10220 release1 = 1;
10221 }
Victor Stinnerc3cec782011-10-05 21:24:08 +020010222 n = anylib_count(rkind, self, sbuf, slen, str1, buf1, len1, maxcount);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010223 if (n == 0)
10224 goto nothing;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010225 if (kind2 < rkind) {
Victor Stinner49a0a212011-10-12 23:46:10 +020010226 /* widen replacement */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010227 buf2 = _PyUnicode_AsKind(str2, rkind);
10228 if (!buf2) goto error;
10229 release2 = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010230 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010231 else if (kind2 > rkind) {
Victor Stinner49a0a212011-10-12 23:46:10 +020010232 /* widen self and buf1 */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010233 rkind = kind2;
10234 sbuf = _PyUnicode_AsKind(self, rkind);
10235 if (!sbuf) goto error;
10236 srelease = 1;
10237 if (release1) PyMem_Free(buf1);
Antoine Pitrou6d5ad222012-11-17 23:28:17 +010010238 release1 = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010239 buf1 = _PyUnicode_AsKind(str1, rkind);
10240 if (!buf1) goto error;
10241 release1 = 1;
10242 }
10243 /* new_size = PyUnicode_GET_LENGTH(self) + n * (PyUnicode_GET_LENGTH(str2) -
10244 PyUnicode_GET_LENGTH(str1))); */
Mark Dickinsonc04ddff2012-10-06 18:04:49 +010010245 if (len2 > len1 && len2 - len1 > (PY_SSIZE_T_MAX - slen) / n) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010246 PyErr_SetString(PyExc_OverflowError,
10247 "replace string is too long");
10248 goto error;
10249 }
Mark Dickinsonc04ddff2012-10-06 18:04:49 +010010250 new_size = slen + n * (len2 - len1);
Victor Stinner49a0a212011-10-12 23:46:10 +020010251 if (new_size == 0) {
Serhiy Storchaka678db842013-01-26 12:16:36 +020010252 _Py_INCREF_UNICODE_EMPTY();
10253 if (!unicode_empty)
10254 goto error;
Victor Stinner49a0a212011-10-12 23:46:10 +020010255 u = unicode_empty;
10256 goto done;
10257 }
Mark Dickinsonc04ddff2012-10-06 18:04:49 +010010258 if (new_size > (PY_SSIZE_T_MAX >> (rkind-1))) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010259 PyErr_SetString(PyExc_OverflowError,
10260 "replace string is too long");
10261 goto error;
10262 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010263 u = PyUnicode_New(new_size, maxchar);
10264 if (!u)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010265 goto error;
Victor Stinner49a0a212011-10-12 23:46:10 +020010266 assert(PyUnicode_KIND(u) == rkind);
10267 res = PyUnicode_DATA(u);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010268 ires = i = 0;
10269 if (len1 > 0) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010270 while (n-- > 0) {
10271 /* look for next match */
Victor Stinnerc3cec782011-10-05 21:24:08 +020010272 j = anylib_find(rkind, self,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010273 sbuf + rkind * i, slen-i,
Victor Stinnerc3cec782011-10-05 21:24:08 +020010274 str1, buf1, len1, i);
Antoine Pitrouf2c54842010-01-13 08:07:53 +000010275 if (j == -1)
10276 break;
10277 else if (j > i) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010278 /* copy unchanged part [i:j] */
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010279 memcpy(res + rkind * ires,
10280 sbuf + rkind * i,
10281 rkind * (j-i));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010282 ires += j - i;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010283 }
10284 /* copy substitution string */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010285 if (len2 > 0) {
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010286 memcpy(res + rkind * ires,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010287 buf2,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010288 rkind * len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010289 ires += len2;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010290 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010291 i = j + len1;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010292 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010293 if (i < slen)
Thomas Wouters477c8d52006-05-27 19:21:47 +000010294 /* copy tail [i:] */
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010295 memcpy(res + rkind * ires,
10296 sbuf + rkind * i,
10297 rkind * (slen-i));
Victor Stinner49a0a212011-10-12 23:46:10 +020010298 }
10299 else {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010300 /* interleave */
10301 while (n > 0) {
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010302 memcpy(res + rkind * ires,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010303 buf2,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010304 rkind * len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010305 ires += len2;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010306 if (--n <= 0)
10307 break;
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010308 memcpy(res + rkind * ires,
10309 sbuf + rkind * i,
10310 rkind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010311 ires++;
10312 i++;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010313 }
Martin v. Löwisc47adb02011-10-07 20:55:35 +020010314 memcpy(res + rkind * ires,
10315 sbuf + rkind * i,
10316 rkind * (slen-i));
Thomas Wouters477c8d52006-05-27 19:21:47 +000010317 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010318 }
10319
10320 if (mayshrink) {
Victor Stinner25a4b292011-10-06 12:31:55 +020010321 unicode_adjust_maxchar(&u);
10322 if (u == NULL)
10323 goto error;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010324 }
Victor Stinner49a0a212011-10-12 23:46:10 +020010325
10326 done:
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010327 if (srelease)
10328 PyMem_FREE(sbuf);
10329 if (release1)
10330 PyMem_FREE(buf1);
10331 if (release2)
10332 PyMem_FREE(buf2);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020010333 assert(_PyUnicode_CheckConsistency(u, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010334 return u;
Thomas Wouters477c8d52006-05-27 19:21:47 +000010335
Benjamin Peterson29060642009-01-31 22:14:21 +000010336 nothing:
Thomas Wouters477c8d52006-05-27 19:21:47 +000010337 /* nothing to replace; return original string (when possible) */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010338 if (srelease)
10339 PyMem_FREE(sbuf);
10340 if (release1)
10341 PyMem_FREE(buf1);
10342 if (release2)
10343 PyMem_FREE(buf2);
Victor Stinnerc4b49542011-12-11 22:44:26 +010010344 return unicode_result_unchanged(self);
10345
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010346 error:
10347 if (srelease && sbuf)
10348 PyMem_FREE(sbuf);
10349 if (release1 && buf1)
10350 PyMem_FREE(buf1);
10351 if (release2 && buf2)
10352 PyMem_FREE(buf2);
10353 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010354}
10355
10356/* --- Unicode Object Methods --------------------------------------------- */
10357
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010358PyDoc_STRVAR(title__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010359 "S.title() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010360\n\
10361Return a titlecased version of S, i.e. words start with title case\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010362characters, all remaining cased characters have lower case.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010363
10364static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020010365unicode_title(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010366{
Benjamin Petersoneea48462012-01-16 14:28:50 -050010367 if (PyUnicode_READY(self) == -1)
10368 return NULL;
Victor Stinnerb0800dc2012-02-25 00:47:08 +010010369 return case_operation(self, do_title);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010370}
10371
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010372PyDoc_STRVAR(capitalize__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010373 "S.capitalize() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010374\n\
10375Return a capitalized version of S, i.e. make the first character\n\
Senthil Kumarane51ee8a2010-07-05 12:00:56 +000010376have upper case and the rest lower case.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010377
10378static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020010379unicode_capitalize(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010380{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -050010381 if (PyUnicode_READY(self) == -1)
10382 return NULL;
10383 if (PyUnicode_GET_LENGTH(self) == 0)
10384 return unicode_result_unchanged(self);
Victor Stinnerb0800dc2012-02-25 00:47:08 +010010385 return case_operation(self, do_capitalize);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010386}
10387
Benjamin Petersond5890c82012-01-14 13:23:30 -050010388PyDoc_STRVAR(casefold__doc__,
10389 "S.casefold() -> str\n\
10390\n\
10391Return a version of S suitable for caseless comparisons.");
10392
10393static PyObject *
10394unicode_casefold(PyObject *self)
10395{
10396 if (PyUnicode_READY(self) == -1)
10397 return NULL;
10398 if (PyUnicode_IS_ASCII(self))
10399 return ascii_upper_or_lower(self, 1);
Victor Stinnerb0800dc2012-02-25 00:47:08 +010010400 return case_operation(self, do_casefold);
Benjamin Petersond5890c82012-01-14 13:23:30 -050010401}
10402
10403
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000010404/* Argument converter. Coerces to a single unicode character */
10405
10406static int
10407convert_uc(PyObject *obj, void *addr)
10408{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010409 Py_UCS4 *fillcharloc = (Py_UCS4 *)addr;
Benjamin Peterson14339b62009-01-31 16:36:08 +000010410 PyObject *uniobj;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000010411
Benjamin Peterson14339b62009-01-31 16:36:08 +000010412 uniobj = PyUnicode_FromObject(obj);
10413 if (uniobj == NULL) {
10414 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000010415 "The fill character cannot be converted to Unicode");
Benjamin Peterson14339b62009-01-31 16:36:08 +000010416 return 0;
10417 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010418 if (PyUnicode_GET_LENGTH(uniobj) != 1) {
Benjamin Peterson14339b62009-01-31 16:36:08 +000010419 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000010420 "The fill character must be exactly one character long");
Benjamin Peterson14339b62009-01-31 16:36:08 +000010421 Py_DECREF(uniobj);
10422 return 0;
10423 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010424 *fillcharloc = PyUnicode_READ_CHAR(uniobj, 0);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010425 Py_DECREF(uniobj);
10426 return 1;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000010427}
10428
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010429PyDoc_STRVAR(center__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010430 "S.center(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010431\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000010432Return S centered in a string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000010433done using the specified fill character (default is a space)");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010434
10435static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +020010436unicode_center(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010437{
Martin v. Löwis18e16552006-02-15 17:27:45 +000010438 Py_ssize_t marg, left;
10439 Py_ssize_t width;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010440 Py_UCS4 fillchar = ' ';
10441
Victor Stinnere9a29352011-10-01 02:14:59 +020010442 if (!PyArg_ParseTuple(args, "n|O&:center", &width, convert_uc, &fillchar))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010443 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010444
Benjamin Petersonbac79492012-01-14 13:34:47 -050010445 if (PyUnicode_READY(self) == -1)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010446 return NULL;
10447
Victor Stinnerc4b49542011-12-11 22:44:26 +010010448 if (PyUnicode_GET_LENGTH(self) >= width)
10449 return unicode_result_unchanged(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010450
Victor Stinnerc4b49542011-12-11 22:44:26 +010010451 marg = width - PyUnicode_GET_LENGTH(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010452 left = marg / 2 + (marg & width & 1);
10453
Victor Stinner9310abb2011-10-05 00:59:23 +020010454 return pad(self, left, marg - left, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010455}
10456
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010457/* This function assumes that str1 and str2 are readied by the caller. */
10458
Marc-André Lemburge5034372000-08-08 08:04:29 +000010459static int
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010460unicode_compare(PyObject *str1, PyObject *str2)
Marc-André Lemburge5034372000-08-08 08:04:29 +000010461{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010462 int kind1, kind2;
10463 void *data1, *data2;
10464 Py_ssize_t len1, len2, i;
Marc-André Lemburge5034372000-08-08 08:04:29 +000010465
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010466 kind1 = PyUnicode_KIND(str1);
10467 kind2 = PyUnicode_KIND(str2);
10468 data1 = PyUnicode_DATA(str1);
10469 data2 = PyUnicode_DATA(str2);
10470 len1 = PyUnicode_GET_LENGTH(str1);
10471 len2 = PyUnicode_GET_LENGTH(str2);
Marc-André Lemburge5034372000-08-08 08:04:29 +000010472
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010473 for (i = 0; i < len1 && i < len2; ++i) {
10474 Py_UCS4 c1, c2;
10475 c1 = PyUnicode_READ(kind1, data1, i);
10476 c2 = PyUnicode_READ(kind2, data2, i);
Fredrik Lundh45714e92001-06-26 16:39:36 +000010477
10478 if (c1 != c2)
10479 return (c1 < c2) ? -1 : 1;
Marc-André Lemburge5034372000-08-08 08:04:29 +000010480 }
10481
10482 return (len1 < len2) ? -1 : (len1 != len2);
10483}
10484
Alexander Belopolsky40018472011-02-26 01:02:56 +000010485int
10486PyUnicode_Compare(PyObject *left, PyObject *right)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010487{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010488 if (PyUnicode_Check(left) && PyUnicode_Check(right)) {
10489 if (PyUnicode_READY(left) == -1 ||
10490 PyUnicode_READY(right) == -1)
10491 return -1;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010492 return unicode_compare(left, right);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010493 }
Guido van Rossum09dc34f2007-05-04 04:17:33 +000010494 PyErr_Format(PyExc_TypeError,
10495 "Can't compare %.100s and %.100s",
10496 left->ob_type->tp_name,
10497 right->ob_type->tp_name);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010498 return -1;
10499}
10500
Martin v. Löwis5b222132007-06-10 09:51:05 +000010501int
10502PyUnicode_CompareWithASCIIString(PyObject* uni, const char* str)
10503{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010504 Py_ssize_t i;
10505 int kind;
10506 void *data;
10507 Py_UCS4 chr;
10508
Victor Stinner910337b2011-10-03 03:20:16 +020010509 assert(_PyUnicode_CHECK(uni));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010510 if (PyUnicode_READY(uni) == -1)
10511 return -1;
10512 kind = PyUnicode_KIND(uni);
10513 data = PyUnicode_DATA(uni);
Martin v. Löwis5b222132007-06-10 09:51:05 +000010514 /* Compare Unicode string and source character set string */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010515 for (i = 0; (chr = PyUnicode_READ(kind, data, i)) && str[i]; i++)
10516 if (chr != str[i])
10517 return (chr < (unsigned char)(str[i])) ? -1 : 1;
Benjamin Peterson8667a9b2010-01-09 21:45:28 +000010518 /* This check keeps Python strings that end in '\0' from comparing equal
10519 to C strings identical up to that point. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010520 if (PyUnicode_GET_LENGTH(uni) != i || chr)
Benjamin Peterson29060642009-01-31 22:14:21 +000010521 return 1; /* uni is longer */
Martin v. Löwis5b222132007-06-10 09:51:05 +000010522 if (str[i])
Benjamin Peterson29060642009-01-31 22:14:21 +000010523 return -1; /* str is longer */
Martin v. Löwis5b222132007-06-10 09:51:05 +000010524 return 0;
10525}
10526
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010527
Benjamin Peterson29060642009-01-31 22:14:21 +000010528#define TEST_COND(cond) \
Benjamin Peterson14339b62009-01-31 16:36:08 +000010529 ((cond) ? Py_True : Py_False)
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010530
Alexander Belopolsky40018472011-02-26 01:02:56 +000010531PyObject *
10532PyUnicode_RichCompare(PyObject *left, PyObject *right, int op)
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000010533{
10534 int result;
Benjamin Peterson14339b62009-01-31 16:36:08 +000010535
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010536 if (PyUnicode_Check(left) && PyUnicode_Check(right)) {
10537 PyObject *v;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010538 if (PyUnicode_READY(left) == -1 ||
10539 PyUnicode_READY(right) == -1)
10540 return NULL;
10541 if (PyUnicode_GET_LENGTH(left) != PyUnicode_GET_LENGTH(right) ||
10542 PyUnicode_KIND(left) != PyUnicode_KIND(right)) {
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010543 if (op == Py_EQ) {
10544 Py_INCREF(Py_False);
10545 return Py_False;
10546 }
10547 if (op == Py_NE) {
10548 Py_INCREF(Py_True);
10549 return Py_True;
10550 }
10551 }
10552 if (left == right)
10553 result = 0;
10554 else
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010555 result = unicode_compare(left, right);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010556
Antoine Pitrou51f3ef92008-12-20 13:14:23 +000010557 /* Convert the return value to a Boolean */
10558 switch (op) {
10559 case Py_EQ:
10560 v = TEST_COND(result == 0);
10561 break;
10562 case Py_NE:
10563 v = TEST_COND(result != 0);
10564 break;
10565 case Py_LE:
10566 v = TEST_COND(result <= 0);
10567 break;
10568 case Py_GE:
10569 v = TEST_COND(result >= 0);
10570 break;
10571 case Py_LT:
10572 v = TEST_COND(result == -1);
10573 break;
10574 case Py_GT:
10575 v = TEST_COND(result == 1);
10576 break;
10577 default:
10578 PyErr_BadArgument();
10579 return NULL;
10580 }
10581 Py_INCREF(v);
10582 return v;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000010583 }
Benjamin Peterson14339b62009-01-31 16:36:08 +000010584
Brian Curtindfc80e32011-08-10 20:28:54 -050010585 Py_RETURN_NOTIMPLEMENTED;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000010586}
10587
Alexander Belopolsky40018472011-02-26 01:02:56 +000010588int
10589PyUnicode_Contains(PyObject *container, PyObject *element)
Guido van Rossum403d68b2000-03-13 15:55:09 +000010590{
Thomas Wouters477c8d52006-05-27 19:21:47 +000010591 PyObject *str, *sub;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010592 int kind1, kind2, kind;
10593 void *buf1, *buf2;
10594 Py_ssize_t len1, len2;
Martin v. Löwis18e16552006-02-15 17:27:45 +000010595 int result;
Guido van Rossum403d68b2000-03-13 15:55:09 +000010596
10597 /* Coerce the two arguments */
Thomas Wouters477c8d52006-05-27 19:21:47 +000010598 sub = PyUnicode_FromObject(element);
10599 if (!sub) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010600 PyErr_Format(PyExc_TypeError,
10601 "'in <string>' requires string as left operand, not %s",
10602 element->ob_type->tp_name);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010603 return -1;
Guido van Rossum403d68b2000-03-13 15:55:09 +000010604 }
10605
Thomas Wouters477c8d52006-05-27 19:21:47 +000010606 str = PyUnicode_FromObject(container);
Benjamin Peterson22a29702012-01-02 09:00:30 -060010607 if (!str) {
Thomas Wouters477c8d52006-05-27 19:21:47 +000010608 Py_DECREF(sub);
10609 return -1;
10610 }
Benjamin Peterson22a29702012-01-02 09:00:30 -060010611 if (PyUnicode_READY(sub) == -1 || PyUnicode_READY(str) == -1) {
10612 Py_DECREF(sub);
10613 Py_DECREF(str);
10614 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000010615
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010616 kind1 = PyUnicode_KIND(str);
10617 kind2 = PyUnicode_KIND(sub);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010618 kind = kind1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010619 buf1 = PyUnicode_DATA(str);
10620 buf2 = PyUnicode_DATA(sub);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010621 if (kind2 != kind) {
Antoine Pitrou758153b2012-05-12 15:51:51 +020010622 if (kind2 > kind) {
10623 Py_DECREF(sub);
10624 Py_DECREF(str);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010625 return 0;
Antoine Pitrou758153b2012-05-12 15:51:51 +020010626 }
Victor Stinner7931d9a2011-11-04 00:22:48 +010010627 buf2 = _PyUnicode_AsKind(sub, kind);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010628 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010629 if (!buf2) {
10630 Py_DECREF(sub);
Benjamin Peterson1ff2e352012-05-11 17:41:20 -050010631 Py_DECREF(str);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010632 return -1;
10633 }
10634 len1 = PyUnicode_GET_LENGTH(str);
10635 len2 = PyUnicode_GET_LENGTH(sub);
10636
Benjamin Petersonead6b532011-12-20 17:23:42 -060010637 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010638 case PyUnicode_1BYTE_KIND:
10639 result = ucs1lib_find(buf1, len1, buf2, len2, 0) != -1;
10640 break;
10641 case PyUnicode_2BYTE_KIND:
10642 result = ucs2lib_find(buf1, len1, buf2, len2, 0) != -1;
10643 break;
10644 case PyUnicode_4BYTE_KIND:
10645 result = ucs4lib_find(buf1, len1, buf2, len2, 0) != -1;
10646 break;
10647 default:
10648 result = -1;
10649 assert(0);
10650 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000010651
10652 Py_DECREF(str);
10653 Py_DECREF(sub);
10654
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010655 if (kind2 != kind)
10656 PyMem_Free(buf2);
10657
Guido van Rossum403d68b2000-03-13 15:55:09 +000010658 return result;
Guido van Rossum403d68b2000-03-13 15:55:09 +000010659}
10660
Guido van Rossumd57fd912000-03-10 22:53:23 +000010661/* Concat to string or Unicode object giving a new Unicode object. */
10662
Alexander Belopolsky40018472011-02-26 01:02:56 +000010663PyObject *
10664PyUnicode_Concat(PyObject *left, PyObject *right)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010665{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010666 PyObject *u = NULL, *v = NULL, *w;
Victor Stinner127226b2011-10-13 01:12:34 +020010667 Py_UCS4 maxchar, maxchar2;
Victor Stinner488fa492011-12-12 00:01:39 +010010668 Py_ssize_t u_len, v_len, new_len;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010669
10670 /* Coerce the two arguments */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010671 u = PyUnicode_FromObject(left);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010672 if (u == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000010673 goto onError;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010674 v = PyUnicode_FromObject(right);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010675 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000010676 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010677
10678 /* Shortcuts */
Victor Stinnera464fc12011-10-02 20:39:30 +020010679 if (v == unicode_empty) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010680 Py_DECREF(v);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010681 return u;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010682 }
Victor Stinnera464fc12011-10-02 20:39:30 +020010683 if (u == unicode_empty) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010684 Py_DECREF(u);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010685 return v;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010686 }
10687
Victor Stinner488fa492011-12-12 00:01:39 +010010688 u_len = PyUnicode_GET_LENGTH(u);
10689 v_len = PyUnicode_GET_LENGTH(v);
10690 if (u_len > PY_SSIZE_T_MAX - v_len) {
10691 PyErr_SetString(PyExc_OverflowError,
10692 "strings are too large to concat");
10693 goto onError;
10694 }
10695 new_len = u_len + v_len;
10696
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010697 maxchar = PyUnicode_MAX_CHAR_VALUE(u);
Victor Stinner127226b2011-10-13 01:12:34 +020010698 maxchar2 = PyUnicode_MAX_CHAR_VALUE(v);
Benjamin Peterson7e303732013-06-10 09:19:46 -070010699 maxchar = Py_MAX(maxchar, maxchar2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010700
Guido van Rossumd57fd912000-03-10 22:53:23 +000010701 /* Concat the two Unicode strings */
Victor Stinner488fa492011-12-12 00:01:39 +010010702 w = PyUnicode_New(new_len, maxchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010703 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000010704 goto onError;
Victor Stinnerd3f08822012-05-29 12:57:52 +020010705 _PyUnicode_FastCopyCharacters(w, 0, u, 0, u_len);
10706 _PyUnicode_FastCopyCharacters(w, u_len, v, 0, v_len);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010707 Py_DECREF(u);
10708 Py_DECREF(v);
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020010709 assert(_PyUnicode_CheckConsistency(w, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010710 return w;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010711
Benjamin Peterson29060642009-01-31 22:14:21 +000010712 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +000010713 Py_XDECREF(u);
10714 Py_XDECREF(v);
10715 return NULL;
10716}
10717
Walter Dörwald1ab83302007-05-18 17:15:44 +000010718void
Victor Stinner23e56682011-10-03 03:54:37 +020010719PyUnicode_Append(PyObject **p_left, PyObject *right)
Walter Dörwald1ab83302007-05-18 17:15:44 +000010720{
Victor Stinner23e56682011-10-03 03:54:37 +020010721 PyObject *left, *res;
Victor Stinner488fa492011-12-12 00:01:39 +010010722 Py_UCS4 maxchar, maxchar2;
10723 Py_ssize_t left_len, right_len, new_len;
Victor Stinner23e56682011-10-03 03:54:37 +020010724
10725 if (p_left == NULL) {
10726 if (!PyErr_Occurred())
10727 PyErr_BadInternalCall();
Benjamin Peterson14339b62009-01-31 16:36:08 +000010728 return;
10729 }
Victor Stinner23e56682011-10-03 03:54:37 +020010730 left = *p_left;
Serhiy Storchaka6c83e732013-01-04 12:39:34 +020010731 if (right == NULL || left == NULL || !PyUnicode_Check(left)) {
Victor Stinner23e56682011-10-03 03:54:37 +020010732 if (!PyErr_Occurred())
10733 PyErr_BadInternalCall();
10734 goto error;
10735 }
10736
Benjamin Petersonbac79492012-01-14 13:34:47 -050010737 if (PyUnicode_READY(left) == -1)
Victor Stinnere1335c72011-10-04 20:53:03 +020010738 goto error;
Benjamin Petersonbac79492012-01-14 13:34:47 -050010739 if (PyUnicode_READY(right) == -1)
Victor Stinnere1335c72011-10-04 20:53:03 +020010740 goto error;
10741
Victor Stinner488fa492011-12-12 00:01:39 +010010742 /* Shortcuts */
10743 if (left == unicode_empty) {
10744 Py_DECREF(left);
10745 Py_INCREF(right);
10746 *p_left = right;
10747 return;
10748 }
10749 if (right == unicode_empty)
10750 return;
10751
10752 left_len = PyUnicode_GET_LENGTH(left);
10753 right_len = PyUnicode_GET_LENGTH(right);
10754 if (left_len > PY_SSIZE_T_MAX - right_len) {
10755 PyErr_SetString(PyExc_OverflowError,
10756 "strings are too large to concat");
10757 goto error;
10758 }
10759 new_len = left_len + right_len;
10760
10761 if (unicode_modifiable(left)
10762 && PyUnicode_CheckExact(right)
10763 && PyUnicode_KIND(right) <= PyUnicode_KIND(left)
Victor Stinnerb0923652011-10-04 01:17:31 +020010764 /* Don't resize for ascii += latin1. Convert ascii to latin1 requires
10765 to change the structure size, but characters are stored just after
Georg Brandl7597add2011-10-05 16:36:47 +020010766 the structure, and so it requires to move all characters which is
Victor Stinnerb0923652011-10-04 01:17:31 +020010767 not so different than duplicating the string. */
Victor Stinner488fa492011-12-12 00:01:39 +010010768 && !(PyUnicode_IS_ASCII(left) && !PyUnicode_IS_ASCII(right)))
10769 {
10770 /* append inplace */
10771 if (unicode_resize(p_left, new_len) != 0) {
10772 /* XXX if _PyUnicode_Resize() fails, 'left' has been
10773 * deallocated so it cannot be put back into
10774 * 'variable'. The MemoryError is raised when there
10775 * is no value in 'variable', which might (very
10776 * remotely) be a cause of incompatibilities.
10777 */
10778 goto error;
Victor Stinner23e56682011-10-03 03:54:37 +020010779 }
Victor Stinner488fa492011-12-12 00:01:39 +010010780 /* copy 'right' into the newly allocated area of 'left' */
Victor Stinnerd3f08822012-05-29 12:57:52 +020010781 _PyUnicode_FastCopyCharacters(*p_left, left_len, right, 0, right_len);
Victor Stinner23e56682011-10-03 03:54:37 +020010782 }
Victor Stinner488fa492011-12-12 00:01:39 +010010783 else {
10784 maxchar = PyUnicode_MAX_CHAR_VALUE(left);
10785 maxchar2 = PyUnicode_MAX_CHAR_VALUE(right);
Benjamin Peterson7e303732013-06-10 09:19:46 -070010786 maxchar = Py_MAX(maxchar, maxchar2);
Victor Stinner23e56682011-10-03 03:54:37 +020010787
Victor Stinner488fa492011-12-12 00:01:39 +010010788 /* Concat the two Unicode strings */
10789 res = PyUnicode_New(new_len, maxchar);
10790 if (res == NULL)
10791 goto error;
Victor Stinnerd3f08822012-05-29 12:57:52 +020010792 _PyUnicode_FastCopyCharacters(res, 0, left, 0, left_len);
10793 _PyUnicode_FastCopyCharacters(res, left_len, right, 0, right_len);
Victor Stinner488fa492011-12-12 00:01:39 +010010794 Py_DECREF(left);
10795 *p_left = res;
10796 }
10797 assert(_PyUnicode_CheckConsistency(*p_left, 1));
Victor Stinner23e56682011-10-03 03:54:37 +020010798 return;
10799
10800error:
Victor Stinner488fa492011-12-12 00:01:39 +010010801 Py_CLEAR(*p_left);
Walter Dörwald1ab83302007-05-18 17:15:44 +000010802}
10803
10804void
10805PyUnicode_AppendAndDel(PyObject **pleft, PyObject *right)
10806{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010807 PyUnicode_Append(pleft, right);
10808 Py_XDECREF(right);
Walter Dörwald1ab83302007-05-18 17:15:44 +000010809}
10810
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010811PyDoc_STRVAR(count__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010812 "S.count(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010813\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000010814Return the number of non-overlapping occurrences of substring sub in\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000010815string S[start:end]. Optional arguments start and end are\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010816interpreted as in slice notation.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010817
10818static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010819unicode_count(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010820{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010821 PyObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +000010822 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000010823 Py_ssize_t end = PY_SSIZE_T_MAX;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010824 PyObject *result;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010825 int kind1, kind2, kind;
10826 void *buf1, *buf2;
10827 Py_ssize_t len1, len2, iresult;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010828
Jesus Ceaac451502011-04-20 17:09:23 +020010829 if (!stringlib_parse_args_finds_unicode("count", args, &substring,
10830 &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +000010831 return NULL;
Tim Petersced69f82003-09-16 20:30:58 +000010832
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010833 kind1 = PyUnicode_KIND(self);
10834 kind2 = PyUnicode_KIND(substring);
Benjamin Petersonb63f49f2012-05-03 18:31:07 -040010835 if (kind2 > kind1)
10836 return PyLong_FromLong(0);
10837 kind = kind1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010838 buf1 = PyUnicode_DATA(self);
10839 buf2 = PyUnicode_DATA(substring);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010840 if (kind2 != kind)
Victor Stinner7931d9a2011-11-04 00:22:48 +010010841 buf2 = _PyUnicode_AsKind(substring, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010842 if (!buf2) {
10843 Py_DECREF(substring);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010844 return NULL;
10845 }
10846 len1 = PyUnicode_GET_LENGTH(self);
10847 len2 = PyUnicode_GET_LENGTH(substring);
10848
10849 ADJUST_INDICES(start, end, len1);
Benjamin Petersonead6b532011-12-20 17:23:42 -060010850 switch (kind) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010851 case PyUnicode_1BYTE_KIND:
10852 iresult = ucs1lib_count(
10853 ((Py_UCS1*)buf1) + start, end - start,
10854 buf2, len2, PY_SSIZE_T_MAX
10855 );
10856 break;
10857 case PyUnicode_2BYTE_KIND:
10858 iresult = ucs2lib_count(
10859 ((Py_UCS2*)buf1) + start, end - start,
10860 buf2, len2, PY_SSIZE_T_MAX
10861 );
10862 break;
10863 case PyUnicode_4BYTE_KIND:
10864 iresult = ucs4lib_count(
10865 ((Py_UCS4*)buf1) + start, end - start,
10866 buf2, len2, PY_SSIZE_T_MAX
10867 );
10868 break;
10869 default:
10870 assert(0); iresult = 0;
10871 }
10872
10873 result = PyLong_FromSsize_t(iresult);
10874
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020010875 if (kind2 != kind)
10876 PyMem_Free(buf2);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010877
10878 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000010879
Guido van Rossumd57fd912000-03-10 22:53:23 +000010880 return result;
10881}
10882
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010883PyDoc_STRVAR(encode__doc__,
Victor Stinnerc911bbf2010-11-07 19:04:46 +000010884 "S.encode(encoding='utf-8', errors='strict') -> bytes\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010885\n\
Victor Stinnere14e2122010-11-07 18:41:46 +000010886Encode S using the codec registered for encoding. Default encoding\n\
10887is 'utf-8'. errors may be given to set a different error\n\
Fred Drakee4315f52000-05-09 19:53:39 +000010888handling scheme. Default is 'strict' meaning that encoding errors raise\n\
Walter Dörwald3aeb6322002-09-02 13:14:32 +000010889a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and\n\
10890'xmlcharrefreplace' as well as any other name registered with\n\
10891codecs.register_error that can handle UnicodeEncodeErrors.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010892
10893static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010894unicode_encode(PyObject *self, PyObject *args, PyObject *kwargs)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010895{
Benjamin Peterson308d6372009-09-18 21:42:35 +000010896 static char *kwlist[] = {"encoding", "errors", 0};
Guido van Rossumd57fd912000-03-10 22:53:23 +000010897 char *encoding = NULL;
10898 char *errors = NULL;
Guido van Rossum35d94282007-08-27 18:20:11 +000010899
Benjamin Peterson308d6372009-09-18 21:42:35 +000010900 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:encode",
10901 kwlist, &encoding, &errors))
Guido van Rossumd57fd912000-03-10 22:53:23 +000010902 return NULL;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010903 return PyUnicode_AsEncodedString(self, encoding, errors);
Marc-André Lemburgd2d45982004-07-08 17:57:32 +000010904}
10905
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010906PyDoc_STRVAR(expandtabs__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010907 "S.expandtabs([tabsize]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010908\n\
10909Return a copy of S where all tab characters are expanded using spaces.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010910If tabsize is not given, a tab size of 8 characters is assumed.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010911
10912static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020010913unicode_expandtabs(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010914{
Antoine Pitroue71d5742011-10-04 15:55:09 +020010915 Py_ssize_t i, j, line_pos, src_len, incr;
10916 Py_UCS4 ch;
10917 PyObject *u;
10918 void *src_data, *dest_data;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010919 int tabsize = 8;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010920 int kind;
Antoine Pitroue19aa382011-10-04 16:04:01 +020010921 int found;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010922
10923 if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize))
Benjamin Peterson29060642009-01-31 22:14:21 +000010924 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010925
Antoine Pitrou22425222011-10-04 19:10:51 +020010926 if (PyUnicode_READY(self) == -1)
10927 return NULL;
10928
Thomas Wouters7e474022000-07-16 12:04:32 +000010929 /* First pass: determine size of output string */
Antoine Pitroue71d5742011-10-04 15:55:09 +020010930 src_len = PyUnicode_GET_LENGTH(self);
10931 i = j = line_pos = 0;
10932 kind = PyUnicode_KIND(self);
10933 src_data = PyUnicode_DATA(self);
Antoine Pitroue19aa382011-10-04 16:04:01 +020010934 found = 0;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010935 for (; i < src_len; i++) {
10936 ch = PyUnicode_READ(kind, src_data, i);
10937 if (ch == '\t') {
Antoine Pitroue19aa382011-10-04 16:04:01 +020010938 found = 1;
Benjamin Peterson29060642009-01-31 22:14:21 +000010939 if (tabsize > 0) {
Antoine Pitroue71d5742011-10-04 15:55:09 +020010940 incr = tabsize - (line_pos % tabsize); /* cannot overflow */
Benjamin Peterson29060642009-01-31 22:14:21 +000010941 if (j > PY_SSIZE_T_MAX - incr)
Antoine Pitroue71d5742011-10-04 15:55:09 +020010942 goto overflow;
10943 line_pos += incr;
Benjamin Peterson29060642009-01-31 22:14:21 +000010944 j += incr;
Christian Heimesdd15f6c2008-03-16 00:07:10 +000010945 }
Benjamin Peterson29060642009-01-31 22:14:21 +000010946 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000010947 else {
Benjamin Peterson29060642009-01-31 22:14:21 +000010948 if (j > PY_SSIZE_T_MAX - 1)
Antoine Pitroue71d5742011-10-04 15:55:09 +020010949 goto overflow;
10950 line_pos++;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010951 j++;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010952 if (ch == '\n' || ch == '\r')
10953 line_pos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010954 }
Antoine Pitroue71d5742011-10-04 15:55:09 +020010955 }
Victor Stinnerc4b49542011-12-11 22:44:26 +010010956 if (!found)
10957 return unicode_result_unchanged(self);
Guido van Rossumcd16bf62007-06-13 18:07:49 +000010958
Guido van Rossumd57fd912000-03-10 22:53:23 +000010959 /* Second pass: create output string and fill it */
Antoine Pitroue71d5742011-10-04 15:55:09 +020010960 u = PyUnicode_New(j, PyUnicode_MAX_CHAR_VALUE(self));
Guido van Rossumd57fd912000-03-10 22:53:23 +000010961 if (!u)
10962 return NULL;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010963 dest_data = PyUnicode_DATA(u);
Guido van Rossumd57fd912000-03-10 22:53:23 +000010964
Antoine Pitroue71d5742011-10-04 15:55:09 +020010965 i = j = line_pos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010966
Antoine Pitroue71d5742011-10-04 15:55:09 +020010967 for (; i < src_len; i++) {
10968 ch = PyUnicode_READ(kind, src_data, i);
10969 if (ch == '\t') {
Benjamin Peterson29060642009-01-31 22:14:21 +000010970 if (tabsize > 0) {
Antoine Pitroue71d5742011-10-04 15:55:09 +020010971 incr = tabsize - (line_pos % tabsize);
10972 line_pos += incr;
Victor Stinnerda79e632012-02-22 13:37:04 +010010973 FILL(kind, dest_data, ' ', j, incr);
10974 j += incr;
Benjamin Peterson29060642009-01-31 22:14:21 +000010975 }
Benjamin Peterson14339b62009-01-31 16:36:08 +000010976 }
Benjamin Peterson29060642009-01-31 22:14:21 +000010977 else {
Antoine Pitroue71d5742011-10-04 15:55:09 +020010978 line_pos++;
10979 PyUnicode_WRITE(kind, dest_data, j, ch);
Christian Heimesdd15f6c2008-03-16 00:07:10 +000010980 j++;
Antoine Pitroue71d5742011-10-04 15:55:09 +020010981 if (ch == '\n' || ch == '\r')
10982 line_pos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010983 }
Antoine Pitroue71d5742011-10-04 15:55:09 +020010984 }
10985 assert (j == PyUnicode_GET_LENGTH(u));
Victor Stinnerd3df8ab2011-11-22 01:22:34 +010010986 return unicode_result(u);
Christian Heimesdd15f6c2008-03-16 00:07:10 +000010987
Antoine Pitroue71d5742011-10-04 15:55:09 +020010988 overflow:
Christian Heimesdd15f6c2008-03-16 00:07:10 +000010989 PyErr_SetString(PyExc_OverflowError, "new string is too long");
10990 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010991}
10992
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000010993PyDoc_STRVAR(find__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000010994 "S.find(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010995\n\
10996Return the lowest index in S where substring sub is found,\n\
Senthil Kumaran53516a82011-07-27 23:33:54 +080010997such that sub is contained within S[start:end]. Optional\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000010998arguments start and end are interpreted as in slice notation.\n\
10999\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011000Return -1 on failure.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011001
11002static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011003unicode_find(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011004{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011005 PyObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +000011006 Py_ssize_t start;
11007 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +000011008 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011009
Jesus Ceaac451502011-04-20 17:09:23 +020011010 if (!stringlib_parse_args_finds_unicode("find", args, &substring,
11011 &start, &end))
Guido van Rossumd57fd912000-03-10 22:53:23 +000011012 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011013
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011014 if (PyUnicode_READY(self) == -1)
11015 return NULL;
11016 if (PyUnicode_READY(substring) == -1)
11017 return NULL;
11018
Victor Stinner7931d9a2011-11-04 00:22:48 +010011019 result = any_find_slice(1, self, substring, start, end);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011020
11021 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000011022
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011023 if (result == -2)
11024 return NULL;
11025
Christian Heimes217cfd12007-12-02 14:31:20 +000011026 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011027}
11028
11029static PyObject *
Victor Stinner2fe5ced2011-10-02 00:25:40 +020011030unicode_getitem(PyObject *self, Py_ssize_t index)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011031{
Victor Stinnerb6cd0142012-05-03 02:17:04 +020011032 void *data;
11033 enum PyUnicode_Kind kind;
11034 Py_UCS4 ch;
11035 PyObject *res;
11036
11037 if (!PyUnicode_Check(self) || PyUnicode_READY(self) == -1) {
11038 PyErr_BadArgument();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011039 return NULL;
Victor Stinnerb6cd0142012-05-03 02:17:04 +020011040 }
11041 if (index < 0 || index >= PyUnicode_GET_LENGTH(self)) {
11042 PyErr_SetString(PyExc_IndexError, "string index out of range");
11043 return NULL;
11044 }
11045 kind = PyUnicode_KIND(self);
11046 data = PyUnicode_DATA(self);
11047 ch = PyUnicode_READ(kind, data, index);
11048 if (ch < 256)
11049 return get_latin1_char(ch);
11050
11051 res = PyUnicode_New(1, ch);
11052 if (res == NULL)
11053 return NULL;
11054 kind = PyUnicode_KIND(res);
11055 data = PyUnicode_DATA(res);
11056 PyUnicode_WRITE(kind, data, 0, ch);
11057 assert(_PyUnicode_CheckConsistency(res, 1));
11058 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011059}
11060
Guido van Rossumc2504932007-09-18 19:42:40 +000011061/* Believe it or not, this produces the same value for ASCII strings
Mark Dickinson57e683e2011-09-24 18:18:40 +010011062 as bytes_hash(). */
Benjamin Peterson8f67d082010-10-17 20:54:53 +000011063static Py_hash_t
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011064unicode_hash(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011065{
Guido van Rossumc2504932007-09-18 19:42:40 +000011066 Py_ssize_t len;
Gregory P. Smith27cbcd62012-12-10 18:15:46 -080011067 Py_uhash_t x; /* Unsigned for defined overflow behavior. */
Guido van Rossumc2504932007-09-18 19:42:40 +000011068
Benjamin Petersonf6622c82012-04-09 14:53:07 -040011069#ifdef Py_DEBUG
Benjamin Peterson69e97272012-02-21 11:08:50 -050011070 assert(_Py_HashSecret_Initialized);
Benjamin Petersonf6622c82012-04-09 14:53:07 -040011071#endif
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011072 if (_PyUnicode_HASH(self) != -1)
11073 return _PyUnicode_HASH(self);
11074 if (PyUnicode_READY(self) == -1)
11075 return -1;
11076 len = PyUnicode_GET_LENGTH(self);
Georg Brandl16fa2a12012-02-21 00:50:13 +010011077 /*
11078 We make the hash of the empty string be 0, rather than using
11079 (prefix ^ suffix), since this slightly obfuscates the hash secret
11080 */
11081 if (len == 0) {
11082 _PyUnicode_HASH(self) = 0;
11083 return 0;
11084 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011085
11086 /* The hash function as a macro, gets expanded three times below. */
Georg Brandl2fb477c2012-02-21 00:33:36 +010011087#define HASH(P) \
11088 x ^= (Py_uhash_t) *P << 7; \
11089 while (--len >= 0) \
11090 x = (_PyHASH_MULTIPLIER * x) ^ (Py_uhash_t) *P++; \
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011091
Georg Brandl2fb477c2012-02-21 00:33:36 +010011092 x = (Py_uhash_t) _Py_HashSecret.prefix;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011093 switch (PyUnicode_KIND(self)) {
11094 case PyUnicode_1BYTE_KIND: {
11095 const unsigned char *c = PyUnicode_1BYTE_DATA(self);
11096 HASH(c);
11097 break;
11098 }
11099 case PyUnicode_2BYTE_KIND: {
11100 const Py_UCS2 *s = PyUnicode_2BYTE_DATA(self);
11101 HASH(s);
11102 break;
11103 }
11104 default: {
11105 Py_UCS4 *l;
11106 assert(PyUnicode_KIND(self) == PyUnicode_4BYTE_KIND &&
11107 "Impossible switch case in unicode_hash");
11108 l = PyUnicode_4BYTE_DATA(self);
11109 HASH(l);
11110 break;
11111 }
11112 }
Georg Brandl2fb477c2012-02-21 00:33:36 +010011113 x ^= (Py_uhash_t) PyUnicode_GET_LENGTH(self);
11114 x ^= (Py_uhash_t) _Py_HashSecret.suffix;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011115
Guido van Rossumc2504932007-09-18 19:42:40 +000011116 if (x == -1)
11117 x = -2;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011118 _PyUnicode_HASH(self) = x;
Guido van Rossumc2504932007-09-18 19:42:40 +000011119 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011120}
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011121#undef HASH
Guido van Rossumd57fd912000-03-10 22:53:23 +000011122
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011123PyDoc_STRVAR(index__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011124 "S.index(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011125\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011126Like S.find() but raise ValueError when the substring is not found.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011127
11128static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011129unicode_index(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011130{
Martin v. Löwis18e16552006-02-15 17:27:45 +000011131 Py_ssize_t result;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011132 PyObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +000011133 Py_ssize_t start;
11134 Py_ssize_t end;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011135
Jesus Ceaac451502011-04-20 17:09:23 +020011136 if (!stringlib_parse_args_finds_unicode("index", args, &substring,
11137 &start, &end))
Guido van Rossumd57fd912000-03-10 22:53:23 +000011138 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011139
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011140 if (PyUnicode_READY(self) == -1)
11141 return NULL;
11142 if (PyUnicode_READY(substring) == -1)
11143 return NULL;
11144
Victor Stinner7931d9a2011-11-04 00:22:48 +010011145 result = any_find_slice(1, self, substring, start, end);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011146
11147 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000011148
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011149 if (result == -2)
11150 return NULL;
11151
Guido van Rossumd57fd912000-03-10 22:53:23 +000011152 if (result < 0) {
11153 PyErr_SetString(PyExc_ValueError, "substring not found");
11154 return NULL;
11155 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000011156
Christian Heimes217cfd12007-12-02 14:31:20 +000011157 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011158}
11159
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011160PyDoc_STRVAR(islower__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011161 "S.islower() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011162\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +000011163Return True if all cased characters in S are lowercase and there is\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011164at least one cased character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011165
11166static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011167unicode_islower(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011168{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011169 Py_ssize_t i, length;
11170 int kind;
11171 void *data;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011172 int cased;
11173
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011174 if (PyUnicode_READY(self) == -1)
11175 return NULL;
11176 length = PyUnicode_GET_LENGTH(self);
11177 kind = PyUnicode_KIND(self);
11178 data = PyUnicode_DATA(self);
11179
Guido van Rossumd57fd912000-03-10 22:53:23 +000011180 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011181 if (length == 1)
11182 return PyBool_FromLong(
11183 Py_UNICODE_ISLOWER(PyUnicode_READ(kind, data, 0)));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011184
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011185 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011186 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011187 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011188
Guido van Rossumd57fd912000-03-10 22:53:23 +000011189 cased = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011190 for (i = 0; i < length; i++) {
11191 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Tim Petersced69f82003-09-16 20:30:58 +000011192
Benjamin Peterson29060642009-01-31 22:14:21 +000011193 if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch))
11194 return PyBool_FromLong(0);
11195 else if (!cased && Py_UNICODE_ISLOWER(ch))
11196 cased = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011197 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011198 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011199}
11200
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011201PyDoc_STRVAR(isupper__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011202 "S.isupper() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011203\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011204Return True if all cased characters in S are uppercase and there is\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011205at least one cased character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011206
11207static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011208unicode_isupper(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011209{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011210 Py_ssize_t i, length;
11211 int kind;
11212 void *data;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011213 int cased;
11214
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011215 if (PyUnicode_READY(self) == -1)
11216 return NULL;
11217 length = PyUnicode_GET_LENGTH(self);
11218 kind = PyUnicode_KIND(self);
11219 data = PyUnicode_DATA(self);
11220
Guido van Rossumd57fd912000-03-10 22:53:23 +000011221 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011222 if (length == 1)
11223 return PyBool_FromLong(
11224 Py_UNICODE_ISUPPER(PyUnicode_READ(kind, data, 0)) != 0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011225
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011226 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011227 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011228 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011229
Guido van Rossumd57fd912000-03-10 22:53:23 +000011230 cased = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011231 for (i = 0; i < length; i++) {
11232 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Tim Petersced69f82003-09-16 20:30:58 +000011233
Benjamin Peterson29060642009-01-31 22:14:21 +000011234 if (Py_UNICODE_ISLOWER(ch) || Py_UNICODE_ISTITLE(ch))
11235 return PyBool_FromLong(0);
11236 else if (!cased && Py_UNICODE_ISUPPER(ch))
11237 cased = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011238 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011239 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011240}
11241
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011242PyDoc_STRVAR(istitle__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011243 "S.istitle() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011244\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011245Return True if S is a titlecased string and there is at least one\n\
11246character in S, i.e. upper- and titlecase characters may only\n\
11247follow uncased characters and lowercase characters only cased ones.\n\
11248Return False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011249
11250static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011251unicode_istitle(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011252{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011253 Py_ssize_t i, length;
11254 int kind;
11255 void *data;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011256 int cased, previous_is_cased;
11257
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011258 if (PyUnicode_READY(self) == -1)
11259 return NULL;
11260 length = PyUnicode_GET_LENGTH(self);
11261 kind = PyUnicode_KIND(self);
11262 data = PyUnicode_DATA(self);
11263
Guido van Rossumd57fd912000-03-10 22:53:23 +000011264 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011265 if (length == 1) {
11266 Py_UCS4 ch = PyUnicode_READ(kind, data, 0);
11267 return PyBool_FromLong((Py_UNICODE_ISTITLE(ch) != 0) ||
11268 (Py_UNICODE_ISUPPER(ch) != 0));
11269 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000011270
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011271 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011272 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011273 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011274
Guido van Rossumd57fd912000-03-10 22:53:23 +000011275 cased = 0;
11276 previous_is_cased = 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011277 for (i = 0; i < length; i++) {
11278 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Tim Petersced69f82003-09-16 20:30:58 +000011279
Benjamin Peterson29060642009-01-31 22:14:21 +000011280 if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) {
11281 if (previous_is_cased)
11282 return PyBool_FromLong(0);
11283 previous_is_cased = 1;
11284 cased = 1;
11285 }
11286 else if (Py_UNICODE_ISLOWER(ch)) {
11287 if (!previous_is_cased)
11288 return PyBool_FromLong(0);
11289 previous_is_cased = 1;
11290 cased = 1;
11291 }
11292 else
11293 previous_is_cased = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011294 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011295 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011296}
11297
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011298PyDoc_STRVAR(isspace__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011299 "S.isspace() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011300\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011301Return True if all characters in S are whitespace\n\
11302and there is at least one character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011303
11304static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011305unicode_isspace(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011306{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011307 Py_ssize_t i, length;
11308 int kind;
11309 void *data;
11310
11311 if (PyUnicode_READY(self) == -1)
11312 return NULL;
11313 length = PyUnicode_GET_LENGTH(self);
11314 kind = PyUnicode_KIND(self);
11315 data = PyUnicode_DATA(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011316
Guido van Rossumd57fd912000-03-10 22:53:23 +000011317 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011318 if (length == 1)
11319 return PyBool_FromLong(
11320 Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, 0)));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011321
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011322 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011323 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011324 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011325
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011326 for (i = 0; i < length; i++) {
11327 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Ezio Melotti93e7afc2011-08-22 14:08:38 +030011328 if (!Py_UNICODE_ISSPACE(ch))
Benjamin Peterson29060642009-01-31 22:14:21 +000011329 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011330 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011331 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011332}
11333
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011334PyDoc_STRVAR(isalpha__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011335 "S.isalpha() -> bool\n\
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011336\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011337Return True if all characters in S are alphabetic\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011338and there is at least one character in S, False otherwise.");
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011339
11340static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011341unicode_isalpha(PyObject *self)
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011342{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011343 Py_ssize_t i, length;
11344 int kind;
11345 void *data;
11346
11347 if (PyUnicode_READY(self) == -1)
11348 return NULL;
11349 length = PyUnicode_GET_LENGTH(self);
11350 kind = PyUnicode_KIND(self);
11351 data = PyUnicode_DATA(self);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011352
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011353 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011354 if (length == 1)
11355 return PyBool_FromLong(
11356 Py_UNICODE_ISALPHA(PyUnicode_READ(kind, data, 0)));
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011357
11358 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011359 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011360 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011361
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011362 for (i = 0; i < length; i++) {
11363 if (!Py_UNICODE_ISALPHA(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011364 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011365 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011366 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011367}
11368
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011369PyDoc_STRVAR(isalnum__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011370 "S.isalnum() -> bool\n\
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011371\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011372Return True if all characters in S are alphanumeric\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011373and there is at least one character in S, False otherwise.");
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011374
11375static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011376unicode_isalnum(PyObject *self)
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011377{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011378 int kind;
11379 void *data;
11380 Py_ssize_t len, i;
11381
11382 if (PyUnicode_READY(self) == -1)
11383 return NULL;
11384
11385 kind = PyUnicode_KIND(self);
11386 data = PyUnicode_DATA(self);
11387 len = PyUnicode_GET_LENGTH(self);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011388
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011389 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011390 if (len == 1) {
11391 const Py_UCS4 ch = PyUnicode_READ(kind, data, 0);
11392 return PyBool_FromLong(Py_UNICODE_ISALNUM(ch));
11393 }
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011394
11395 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011396 if (len == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011397 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011398
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011399 for (i = 0; i < len; i++) {
11400 const Py_UCS4 ch = PyUnicode_READ(kind, data, i);
Ezio Melotti93e7afc2011-08-22 14:08:38 +030011401 if (!Py_UNICODE_ISALNUM(ch))
Benjamin Peterson29060642009-01-31 22:14:21 +000011402 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011403 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011404 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +000011405}
11406
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011407PyDoc_STRVAR(isdecimal__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011408 "S.isdecimal() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011409\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +000011410Return True if there are only decimal characters in S,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011411False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011412
11413static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011414unicode_isdecimal(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011415{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011416 Py_ssize_t i, length;
11417 int kind;
11418 void *data;
11419
11420 if (PyUnicode_READY(self) == -1)
11421 return NULL;
11422 length = PyUnicode_GET_LENGTH(self);
11423 kind = PyUnicode_KIND(self);
11424 data = PyUnicode_DATA(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011425
Guido van Rossumd57fd912000-03-10 22:53:23 +000011426 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011427 if (length == 1)
11428 return PyBool_FromLong(
11429 Py_UNICODE_ISDECIMAL(PyUnicode_READ(kind, data, 0)));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011430
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011431 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011432 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011433 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011434
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011435 for (i = 0; i < length; i++) {
11436 if (!Py_UNICODE_ISDECIMAL(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011437 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011438 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011439 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011440}
11441
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011442PyDoc_STRVAR(isdigit__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011443 "S.isdigit() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011444\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +000011445Return True if all characters in S are digits\n\
11446and there is at least one character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011447
11448static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011449unicode_isdigit(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011450{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011451 Py_ssize_t i, length;
11452 int kind;
11453 void *data;
11454
11455 if (PyUnicode_READY(self) == -1)
11456 return NULL;
11457 length = PyUnicode_GET_LENGTH(self);
11458 kind = PyUnicode_KIND(self);
11459 data = PyUnicode_DATA(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011460
Guido van Rossumd57fd912000-03-10 22:53:23 +000011461 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011462 if (length == 1) {
11463 const Py_UCS4 ch = PyUnicode_READ(kind, data, 0);
11464 return PyBool_FromLong(Py_UNICODE_ISDIGIT(ch));
11465 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000011466
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011467 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011468 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011469 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011470
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011471 for (i = 0; i < length; i++) {
11472 if (!Py_UNICODE_ISDIGIT(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011473 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011474 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011475 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011476}
11477
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011478PyDoc_STRVAR(isnumeric__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011479 "S.isnumeric() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011480\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +000011481Return True if there are only numeric characters in S,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011482False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011483
11484static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011485unicode_isnumeric(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011486{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011487 Py_ssize_t i, length;
11488 int kind;
11489 void *data;
11490
11491 if (PyUnicode_READY(self) == -1)
11492 return NULL;
11493 length = PyUnicode_GET_LENGTH(self);
11494 kind = PyUnicode_KIND(self);
11495 data = PyUnicode_DATA(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011496
Guido van Rossumd57fd912000-03-10 22:53:23 +000011497 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011498 if (length == 1)
11499 return PyBool_FromLong(
11500 Py_UNICODE_ISNUMERIC(PyUnicode_READ(kind, data, 0)));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011501
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011502 /* Special case for empty strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011503 if (length == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000011504 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +000011505
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011506 for (i = 0; i < length; i++) {
11507 if (!Py_UNICODE_ISNUMERIC(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011508 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011509 }
Guido van Rossum77f6a652002-04-03 22:41:51 +000011510 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011511}
11512
Martin v. Löwis47383402007-08-15 07:32:56 +000011513int
11514PyUnicode_IsIdentifier(PyObject *self)
11515{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011516 int kind;
11517 void *data;
11518 Py_ssize_t i;
Ezio Melotti93e7afc2011-08-22 14:08:38 +030011519 Py_UCS4 first;
Martin v. Löwis47383402007-08-15 07:32:56 +000011520
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011521 if (PyUnicode_READY(self) == -1) {
11522 Py_FatalError("identifier not ready");
Benjamin Peterson29060642009-01-31 22:14:21 +000011523 return 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011524 }
11525
11526 /* Special case for empty strings */
11527 if (PyUnicode_GET_LENGTH(self) == 0)
11528 return 0;
11529 kind = PyUnicode_KIND(self);
11530 data = PyUnicode_DATA(self);
Martin v. Löwis47383402007-08-15 07:32:56 +000011531
11532 /* PEP 3131 says that the first character must be in
11533 XID_Start and subsequent characters in XID_Continue,
11534 and for the ASCII range, the 2.x rules apply (i.e
Benjamin Peterson14339b62009-01-31 16:36:08 +000011535 start with letters and underscore, continue with
Martin v. Löwis47383402007-08-15 07:32:56 +000011536 letters, digits, underscore). However, given the current
11537 definition of XID_Start and XID_Continue, it is sufficient
11538 to check just for these, except that _ must be allowed
11539 as starting an identifier. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011540 first = PyUnicode_READ(kind, data, 0);
Benjamin Petersonf413b802011-08-12 22:17:18 -050011541 if (!_PyUnicode_IsXidStart(first) && first != 0x5F /* LOW LINE */)
Martin v. Löwis47383402007-08-15 07:32:56 +000011542 return 0;
11543
Benjamin Peterson9c6e6a02011-09-28 08:09:05 -040011544 for (i = 1; i < PyUnicode_GET_LENGTH(self); i++)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011545 if (!_PyUnicode_IsXidContinue(PyUnicode_READ(kind, data, i)))
Benjamin Peterson29060642009-01-31 22:14:21 +000011546 return 0;
Martin v. Löwis47383402007-08-15 07:32:56 +000011547 return 1;
11548}
11549
11550PyDoc_STRVAR(isidentifier__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011551 "S.isidentifier() -> bool\n\
Martin v. Löwis47383402007-08-15 07:32:56 +000011552\n\
11553Return True if S is a valid identifier according\n\
Raymond Hettinger378170d2013-03-23 08:21:12 -070011554to the language definition.\n\
11555\n\
11556Use keyword.iskeyword() to test for reserved identifiers\n\
11557such as \"def\" and \"class\".\n");
Martin v. Löwis47383402007-08-15 07:32:56 +000011558
11559static PyObject*
11560unicode_isidentifier(PyObject *self)
11561{
11562 return PyBool_FromLong(PyUnicode_IsIdentifier(self));
11563}
11564
Georg Brandl559e5d72008-06-11 18:37:52 +000011565PyDoc_STRVAR(isprintable__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011566 "S.isprintable() -> bool\n\
Georg Brandl559e5d72008-06-11 18:37:52 +000011567\n\
11568Return True if all characters in S are considered\n\
11569printable in repr() or S is empty, False otherwise.");
11570
11571static PyObject*
11572unicode_isprintable(PyObject *self)
11573{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011574 Py_ssize_t i, length;
11575 int kind;
11576 void *data;
11577
11578 if (PyUnicode_READY(self) == -1)
11579 return NULL;
11580 length = PyUnicode_GET_LENGTH(self);
11581 kind = PyUnicode_KIND(self);
11582 data = PyUnicode_DATA(self);
Georg Brandl559e5d72008-06-11 18:37:52 +000011583
11584 /* Shortcut for single character strings */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011585 if (length == 1)
11586 return PyBool_FromLong(
11587 Py_UNICODE_ISPRINTABLE(PyUnicode_READ(kind, data, 0)));
Georg Brandl559e5d72008-06-11 18:37:52 +000011588
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011589 for (i = 0; i < length; i++) {
11590 if (!Py_UNICODE_ISPRINTABLE(PyUnicode_READ(kind, data, i))) {
Georg Brandl559e5d72008-06-11 18:37:52 +000011591 Py_RETURN_FALSE;
11592 }
11593 }
11594 Py_RETURN_TRUE;
11595}
11596
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011597PyDoc_STRVAR(join__doc__,
Georg Brandl495f7b52009-10-27 15:28:25 +000011598 "S.join(iterable) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011599\n\
11600Return a string which is the concatenation of the strings in the\n\
Georg Brandl495f7b52009-10-27 15:28:25 +000011601iterable. The separator between elements is S.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011602
11603static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000011604unicode_join(PyObject *self, PyObject *data)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011605{
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000011606 return PyUnicode_Join(self, data);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011607}
11608
Martin v. Löwis18e16552006-02-15 17:27:45 +000011609static Py_ssize_t
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011610unicode_length(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011611{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011612 if (PyUnicode_READY(self) == -1)
11613 return -1;
11614 return PyUnicode_GET_LENGTH(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011615}
11616
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011617PyDoc_STRVAR(ljust__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011618 "S.ljust(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011619\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +000011620Return S left-justified in a Unicode string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000011621done using the specified fill character (default is a space).");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011622
11623static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +020011624unicode_ljust(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011625{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000011626 Py_ssize_t width;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011627 Py_UCS4 fillchar = ' ';
11628
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000011629 if (!PyArg_ParseTuple(args, "n|O&:ljust", &width, convert_uc, &fillchar))
Guido van Rossumd57fd912000-03-10 22:53:23 +000011630 return NULL;
11631
Benjamin Petersonbac79492012-01-14 13:34:47 -050011632 if (PyUnicode_READY(self) == -1)
Victor Stinnerc4b49542011-12-11 22:44:26 +010011633 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011634
Victor Stinnerc4b49542011-12-11 22:44:26 +010011635 if (PyUnicode_GET_LENGTH(self) >= width)
11636 return unicode_result_unchanged(self);
11637
11638 return pad(self, 0, width - PyUnicode_GET_LENGTH(self), fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011639}
11640
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011641PyDoc_STRVAR(lower__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011642 "S.lower() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011643\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011644Return a copy of the string S converted to lowercase.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011645
11646static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020011647unicode_lower(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011648{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -050011649 if (PyUnicode_READY(self) == -1)
11650 return NULL;
11651 if (PyUnicode_IS_ASCII(self))
11652 return ascii_upper_or_lower(self, 1);
Victor Stinnerb0800dc2012-02-25 00:47:08 +010011653 return case_operation(self, do_lower);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011654}
11655
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011656#define LEFTSTRIP 0
11657#define RIGHTSTRIP 1
11658#define BOTHSTRIP 2
11659
11660/* Arrays indexed by above */
11661static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"};
11662
11663#define STRIPNAME(i) (stripformat[i]+3)
11664
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011665/* externally visible for str.strip(unicode) */
11666PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011667_PyUnicode_XStrip(PyObject *self, int striptype, PyObject *sepobj)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011668{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011669 void *data;
11670 int kind;
11671 Py_ssize_t i, j, len;
11672 BLOOM_MASK sepmask;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011673
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011674 if (PyUnicode_READY(self) == -1 || PyUnicode_READY(sepobj) == -1)
11675 return NULL;
11676
11677 kind = PyUnicode_KIND(self);
11678 data = PyUnicode_DATA(self);
11679 len = PyUnicode_GET_LENGTH(self);
11680 sepmask = make_bloom_mask(PyUnicode_KIND(sepobj),
11681 PyUnicode_DATA(sepobj),
11682 PyUnicode_GET_LENGTH(sepobj));
Thomas Wouters477c8d52006-05-27 19:21:47 +000011683
Benjamin Peterson14339b62009-01-31 16:36:08 +000011684 i = 0;
11685 if (striptype != RIGHTSTRIP) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011686 while (i < len &&
11687 BLOOM_MEMBER(sepmask, PyUnicode_READ(kind, data, i), sepobj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011688 i++;
11689 }
Benjamin Peterson14339b62009-01-31 16:36:08 +000011690 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011691
Benjamin Peterson14339b62009-01-31 16:36:08 +000011692 j = len;
11693 if (striptype != LEFTSTRIP) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011694 do {
11695 j--;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011696 } while (j >= i &&
11697 BLOOM_MEMBER(sepmask, PyUnicode_READ(kind, data, j), sepobj));
Benjamin Peterson29060642009-01-31 22:14:21 +000011698 j++;
Benjamin Peterson14339b62009-01-31 16:36:08 +000011699 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011700
Victor Stinner7931d9a2011-11-04 00:22:48 +010011701 return PyUnicode_Substring(self, i, j);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011702}
11703
11704PyObject*
11705PyUnicode_Substring(PyObject *self, Py_ssize_t start, Py_ssize_t end)
11706{
11707 unsigned char *data;
11708 int kind;
Victor Stinner12bab6d2011-10-01 01:53:49 +020011709 Py_ssize_t length;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011710
Victor Stinnerde636f32011-10-01 03:55:54 +020011711 if (PyUnicode_READY(self) == -1)
11712 return NULL;
11713
Victor Stinner684d5fd2012-05-03 02:32:34 +020011714 length = PyUnicode_GET_LENGTH(self);
11715 end = Py_MIN(end, length);
Victor Stinnerde636f32011-10-01 03:55:54 +020011716
Victor Stinner684d5fd2012-05-03 02:32:34 +020011717 if (start == 0 && end == length)
Victor Stinnerc4b49542011-12-11 22:44:26 +010011718 return unicode_result_unchanged(self);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011719
Victor Stinnerde636f32011-10-01 03:55:54 +020011720 if (start < 0 || end < 0) {
Victor Stinner12bab6d2011-10-01 01:53:49 +020011721 PyErr_SetString(PyExc_IndexError, "string index out of range");
11722 return NULL;
11723 }
Serhiy Storchaka678db842013-01-26 12:16:36 +020011724 if (start >= length || end < start)
11725 _Py_RETURN_UNICODE_EMPTY();
Victor Stinner12bab6d2011-10-01 01:53:49 +020011726
Victor Stinner684d5fd2012-05-03 02:32:34 +020011727 length = end - start;
Victor Stinnerb9275c12011-10-05 14:01:42 +020011728 if (PyUnicode_IS_ASCII(self)) {
Victor Stinnerb9275c12011-10-05 14:01:42 +020011729 data = PyUnicode_1BYTE_DATA(self);
Victor Stinnerd3f08822012-05-29 12:57:52 +020011730 return _PyUnicode_FromASCII((char*)(data + start), length);
Victor Stinnerb9275c12011-10-05 14:01:42 +020011731 }
11732 else {
11733 kind = PyUnicode_KIND(self);
11734 data = PyUnicode_1BYTE_DATA(self);
11735 return PyUnicode_FromKindAndData(kind,
Martin v. Löwisc47adb02011-10-07 20:55:35 +020011736 data + kind * start,
Victor Stinnerb9275c12011-10-05 14:01:42 +020011737 length);
11738 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011739}
Guido van Rossumd57fd912000-03-10 22:53:23 +000011740
11741static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011742do_strip(PyObject *self, int striptype)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011743{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011744 int kind;
11745 void *data;
11746 Py_ssize_t len, i, j;
11747
11748 if (PyUnicode_READY(self) == -1)
11749 return NULL;
11750
11751 kind = PyUnicode_KIND(self);
11752 data = PyUnicode_DATA(self);
11753 len = PyUnicode_GET_LENGTH(self);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011754
Benjamin Peterson14339b62009-01-31 16:36:08 +000011755 i = 0;
11756 if (striptype != RIGHTSTRIP) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011757 while (i < len && Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, i))) {
Benjamin Peterson14339b62009-01-31 16:36:08 +000011758 i++;
11759 }
11760 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011761
Benjamin Peterson14339b62009-01-31 16:36:08 +000011762 j = len;
11763 if (striptype != LEFTSTRIP) {
11764 do {
11765 j--;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011766 } while (j >= i && Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, j)));
Benjamin Peterson14339b62009-01-31 16:36:08 +000011767 j++;
11768 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011769
Victor Stinner7931d9a2011-11-04 00:22:48 +010011770 return PyUnicode_Substring(self, i, j);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011771}
11772
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011773
11774static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011775do_argstrip(PyObject *self, int striptype, PyObject *args)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011776{
Benjamin Peterson14339b62009-01-31 16:36:08 +000011777 PyObject *sep = NULL;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011778
Benjamin Peterson14339b62009-01-31 16:36:08 +000011779 if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep))
11780 return NULL;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011781
Benjamin Peterson14339b62009-01-31 16:36:08 +000011782 if (sep != NULL && sep != Py_None) {
11783 if (PyUnicode_Check(sep))
11784 return _PyUnicode_XStrip(self, striptype, sep);
11785 else {
11786 PyErr_Format(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000011787 "%s arg must be None or str",
11788 STRIPNAME(striptype));
Benjamin Peterson14339b62009-01-31 16:36:08 +000011789 return NULL;
11790 }
11791 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011792
Benjamin Peterson14339b62009-01-31 16:36:08 +000011793 return do_strip(self, striptype);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011794}
11795
11796
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011797PyDoc_STRVAR(strip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011798 "S.strip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011799\n\
11800Return a copy of the string S with leading and trailing\n\
11801whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000011802If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011803
11804static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011805unicode_strip(PyObject *self, PyObject *args)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011806{
Benjamin Peterson14339b62009-01-31 16:36:08 +000011807 if (PyTuple_GET_SIZE(args) == 0)
11808 return do_strip(self, BOTHSTRIP); /* Common case */
11809 else
11810 return do_argstrip(self, BOTHSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011811}
11812
11813
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011814PyDoc_STRVAR(lstrip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011815 "S.lstrip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011816\n\
11817Return a copy of the string S with leading whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000011818If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011819
11820static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011821unicode_lstrip(PyObject *self, PyObject *args)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011822{
Benjamin Peterson14339b62009-01-31 16:36:08 +000011823 if (PyTuple_GET_SIZE(args) == 0)
11824 return do_strip(self, LEFTSTRIP); /* Common case */
11825 else
11826 return do_argstrip(self, LEFTSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011827}
11828
11829
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011830PyDoc_STRVAR(rstrip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000011831 "S.rstrip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011832\n\
11833Return a copy of the string S with trailing whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000011834If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011835
11836static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011837unicode_rstrip(PyObject *self, PyObject *args)
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011838{
Benjamin Peterson14339b62009-01-31 16:36:08 +000011839 if (PyTuple_GET_SIZE(args) == 0)
11840 return do_strip(self, RIGHTSTRIP); /* Common case */
11841 else
11842 return do_argstrip(self, RIGHTSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000011843}
11844
11845
Guido van Rossumd57fd912000-03-10 22:53:23 +000011846static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011847unicode_repeat(PyObject *str, Py_ssize_t len)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011848{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011849 PyObject *u;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011850 Py_ssize_t nchars, n;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011851
Serhiy Storchaka05997252013-01-26 12:14:02 +020011852 if (len < 1)
11853 _Py_RETURN_UNICODE_EMPTY();
Guido van Rossumd57fd912000-03-10 22:53:23 +000011854
Victor Stinnerc4b49542011-12-11 22:44:26 +010011855 /* no repeat, return original string */
11856 if (len == 1)
11857 return unicode_result_unchanged(str);
Tim Peters8f422462000-09-09 06:13:41 +000011858
Benjamin Petersonbac79492012-01-14 13:34:47 -050011859 if (PyUnicode_READY(str) == -1)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011860 return NULL;
11861
Victor Stinnerc759f3e2011-10-01 03:09:58 +020011862 if (PyUnicode_GET_LENGTH(str) > PY_SSIZE_T_MAX / len) {
Victor Stinner67ca64c2011-10-01 02:47:29 +020011863 PyErr_SetString(PyExc_OverflowError,
11864 "repeated string is too long");
11865 return NULL;
11866 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011867 nchars = len * PyUnicode_GET_LENGTH(str);
Victor Stinner67ca64c2011-10-01 02:47:29 +020011868
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011869 u = PyUnicode_New(nchars, PyUnicode_MAX_CHAR_VALUE(str));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011870 if (!u)
11871 return NULL;
Victor Stinner67ca64c2011-10-01 02:47:29 +020011872 assert(PyUnicode_KIND(u) == PyUnicode_KIND(str));
Guido van Rossumd57fd912000-03-10 22:53:23 +000011873
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011874 if (PyUnicode_GET_LENGTH(str) == 1) {
11875 const int kind = PyUnicode_KIND(str);
11876 const Py_UCS4 fill_char = PyUnicode_READ(kind, PyUnicode_DATA(str), 0);
Victor Stinner73f53b52011-12-18 03:26:31 +010011877 if (kind == PyUnicode_1BYTE_KIND) {
11878 void *to = PyUnicode_DATA(u);
Victor Stinner67ca64c2011-10-01 02:47:29 +020011879 memset(to, (unsigned char)fill_char, len);
Victor Stinner73f53b52011-12-18 03:26:31 +010011880 }
11881 else if (kind == PyUnicode_2BYTE_KIND) {
11882 Py_UCS2 *ucs2 = PyUnicode_2BYTE_DATA(u);
Victor Stinner67ca64c2011-10-01 02:47:29 +020011883 for (n = 0; n < len; ++n)
Victor Stinner73f53b52011-12-18 03:26:31 +010011884 ucs2[n] = fill_char;
11885 } else {
11886 Py_UCS4 *ucs4 = PyUnicode_4BYTE_DATA(u);
11887 assert(kind == PyUnicode_4BYTE_KIND);
11888 for (n = 0; n < len; ++n)
11889 ucs4[n] = fill_char;
Victor Stinner67ca64c2011-10-01 02:47:29 +020011890 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011891 }
11892 else {
11893 /* number of characters copied this far */
11894 Py_ssize_t done = PyUnicode_GET_LENGTH(str);
Martin v. Löwisc47adb02011-10-07 20:55:35 +020011895 const Py_ssize_t char_size = PyUnicode_KIND(str);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011896 char *to = (char *) PyUnicode_DATA(u);
11897 Py_MEMCPY(to, PyUnicode_DATA(str),
11898 PyUnicode_GET_LENGTH(str) * char_size);
Benjamin Peterson29060642009-01-31 22:14:21 +000011899 while (done < nchars) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011900 n = (done <= nchars-done) ? done : nchars-done;
11901 Py_MEMCPY(to + (done * char_size), to, n * char_size);
Thomas Wouters477c8d52006-05-27 19:21:47 +000011902 done += n;
Benjamin Peterson29060642009-01-31 22:14:21 +000011903 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000011904 }
11905
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020011906 assert(_PyUnicode_CheckConsistency(u, 1));
Victor Stinner9db1a8b2011-10-23 20:04:37 +020011907 return u;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011908}
11909
Alexander Belopolsky40018472011-02-26 01:02:56 +000011910PyObject *
11911PyUnicode_Replace(PyObject *obj,
11912 PyObject *subobj,
11913 PyObject *replobj,
11914 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011915{
11916 PyObject *self;
11917 PyObject *str1;
11918 PyObject *str2;
11919 PyObject *result;
11920
11921 self = PyUnicode_FromObject(obj);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011922 if (self == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000011923 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011924 str1 = PyUnicode_FromObject(subobj);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011925 if (str1 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011926 Py_DECREF(self);
11927 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011928 }
11929 str2 = PyUnicode_FromObject(replobj);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011930 if (str2 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011931 Py_DECREF(self);
11932 Py_DECREF(str1);
11933 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011934 }
Benjamin Peterson22a29702012-01-02 09:00:30 -060011935 if (PyUnicode_READY(self) == -1 ||
11936 PyUnicode_READY(str1) == -1 ||
11937 PyUnicode_READY(str2) == -1)
11938 result = NULL;
11939 else
11940 result = replace(self, str1, str2, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011941 Py_DECREF(self);
11942 Py_DECREF(str1);
11943 Py_DECREF(str2);
11944 return result;
11945}
11946
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000011947PyDoc_STRVAR(replace__doc__,
Ezio Melottic1897e72010-06-26 18:50:39 +000011948 "S.replace(old, new[, count]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000011949\n\
11950Return a copy of S with all occurrences of substring\n\
Georg Brandlf08a9dd2008-06-10 16:57:31 +000011951old replaced by new. If the optional argument count is\n\
11952given, only the first count occurrences are replaced.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000011953
11954static PyObject*
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011955unicode_replace(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011956{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011957 PyObject *str1;
11958 PyObject *str2;
Martin v. Löwis18e16552006-02-15 17:27:45 +000011959 Py_ssize_t maxcount = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000011960 PyObject *result;
11961
Martin v. Löwis18e16552006-02-15 17:27:45 +000011962 if (!PyArg_ParseTuple(args, "OO|n:replace", &str1, &str2, &maxcount))
Guido van Rossumd57fd912000-03-10 22:53:23 +000011963 return NULL;
Benjamin Peterson22a29702012-01-02 09:00:30 -060011964 if (PyUnicode_READY(self) == -1)
Benjamin Peterson29060642009-01-31 22:14:21 +000011965 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011966 str1 = PyUnicode_FromObject(str1);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011967 if (str1 == NULL)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011968 return NULL;
11969 str2 = PyUnicode_FromObject(str2);
Benjamin Peterson22a29702012-01-02 09:00:30 -060011970 if (str2 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +000011971 Py_DECREF(str1);
11972 return NULL;
Walter Dörwaldf6b56ae2003-02-09 23:42:56 +000011973 }
Benjamin Peterson22a29702012-01-02 09:00:30 -060011974 if (PyUnicode_READY(str1) == -1 || PyUnicode_READY(str2) == -1)
11975 result = NULL;
11976 else
11977 result = replace(self, str1, str2, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000011978
11979 Py_DECREF(str1);
11980 Py_DECREF(str2);
11981 return result;
11982}
11983
Alexander Belopolsky40018472011-02-26 01:02:56 +000011984static PyObject *
11985unicode_repr(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +000011986{
Walter Dörwald79e913e2007-05-12 11:08:06 +000011987 PyObject *repr;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011988 Py_ssize_t isize;
11989 Py_ssize_t osize, squote, dquote, i, o;
11990 Py_UCS4 max, quote;
11991 int ikind, okind;
11992 void *idata, *odata;
Walter Dörwald79e913e2007-05-12 11:08:06 +000011993
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011994 if (PyUnicode_READY(unicode) == -1)
Walter Dörwald79e913e2007-05-12 11:08:06 +000011995 return NULL;
11996
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011997 isize = PyUnicode_GET_LENGTH(unicode);
11998 idata = PyUnicode_DATA(unicode);
Walter Dörwald79e913e2007-05-12 11:08:06 +000011999
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012000 /* Compute length of output, quote characters, and
12001 maximum character */
12002 osize = 2; /* quotes */
12003 max = 127;
12004 squote = dquote = 0;
12005 ikind = PyUnicode_KIND(unicode);
12006 for (i = 0; i < isize; i++) {
12007 Py_UCS4 ch = PyUnicode_READ(ikind, idata, i);
Benjamin Peterson736b8012014-09-29 23:02:15 -040012008 Py_ssize_t incr = 1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012009 switch (ch) {
Benjamin Peterson736b8012014-09-29 23:02:15 -040012010 case '\'': squote++; break;
12011 case '"': dquote++; break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012012 case '\\': case '\t': case '\r': case '\n':
Benjamin Peterson736b8012014-09-29 23:02:15 -040012013 incr = 2;
12014 break;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012015 default:
12016 /* Fast-path ASCII */
12017 if (ch < ' ' || ch == 0x7f)
Benjamin Peterson736b8012014-09-29 23:02:15 -040012018 incr = 4; /* \xHH */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012019 else if (ch < 0x7f)
Benjamin Peterson736b8012014-09-29 23:02:15 -040012020 ;
12021 else if (Py_UNICODE_ISPRINTABLE(ch))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012022 max = ch > max ? ch : max;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012023 else if (ch < 0x100)
Benjamin Peterson736b8012014-09-29 23:02:15 -040012024 incr = 4; /* \xHH */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012025 else if (ch < 0x10000)
Benjamin Peterson736b8012014-09-29 23:02:15 -040012026 incr = 6; /* \uHHHH */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012027 else
Benjamin Peterson736b8012014-09-29 23:02:15 -040012028 incr = 10; /* \uHHHHHHHH */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012029 }
Benjamin Peterson736b8012014-09-29 23:02:15 -040012030 if (osize > PY_SSIZE_T_MAX - incr) {
12031 PyErr_SetString(PyExc_OverflowError,
12032 "string is too long to generate repr");
12033 return NULL;
12034 }
12035 osize += incr;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012036 }
12037
12038 quote = '\'';
12039 if (squote) {
12040 if (dquote)
12041 /* Both squote and dquote present. Use squote,
12042 and escape them */
12043 osize += squote;
12044 else
12045 quote = '"';
12046 }
12047
12048 repr = PyUnicode_New(osize, max);
12049 if (repr == NULL)
12050 return NULL;
12051 okind = PyUnicode_KIND(repr);
12052 odata = PyUnicode_DATA(repr);
12053
12054 PyUnicode_WRITE(okind, odata, 0, quote);
12055 PyUnicode_WRITE(okind, odata, osize-1, quote);
12056
12057 for (i = 0, o = 1; i < isize; i++) {
12058 Py_UCS4 ch = PyUnicode_READ(ikind, idata, i);
Walter Dörwald79e913e2007-05-12 11:08:06 +000012059
12060 /* Escape quotes and backslashes */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012061 if ((ch == quote) || (ch == '\\')) {
12062 PyUnicode_WRITE(okind, odata, o++, '\\');
12063 PyUnicode_WRITE(okind, odata, o++, ch);
Walter Dörwald79e913e2007-05-12 11:08:06 +000012064 continue;
12065 }
12066
Benjamin Peterson29060642009-01-31 22:14:21 +000012067 /* Map special whitespace to '\t', \n', '\r' */
Georg Brandl559e5d72008-06-11 18:37:52 +000012068 if (ch == '\t') {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012069 PyUnicode_WRITE(okind, odata, o++, '\\');
12070 PyUnicode_WRITE(okind, odata, o++, 't');
Walter Dörwald79e913e2007-05-12 11:08:06 +000012071 }
12072 else if (ch == '\n') {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012073 PyUnicode_WRITE(okind, odata, o++, '\\');
12074 PyUnicode_WRITE(okind, odata, o++, 'n');
Walter Dörwald79e913e2007-05-12 11:08:06 +000012075 }
12076 else if (ch == '\r') {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012077 PyUnicode_WRITE(okind, odata, o++, '\\');
12078 PyUnicode_WRITE(okind, odata, o++, 'r');
Walter Dörwald79e913e2007-05-12 11:08:06 +000012079 }
12080
12081 /* Map non-printable US ASCII to '\xhh' */
Georg Brandl559e5d72008-06-11 18:37:52 +000012082 else if (ch < ' ' || ch == 0x7F) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012083 PyUnicode_WRITE(okind, odata, o++, '\\');
12084 PyUnicode_WRITE(okind, odata, o++, 'x');
Victor Stinnerf5cff562011-10-14 02:13:11 +020012085 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0x000F]);
12086 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0x000F]);
Walter Dörwald79e913e2007-05-12 11:08:06 +000012087 }
12088
Georg Brandl559e5d72008-06-11 18:37:52 +000012089 /* Copy ASCII characters as-is */
12090 else if (ch < 0x7F) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012091 PyUnicode_WRITE(okind, odata, o++, ch);
Georg Brandl559e5d72008-06-11 18:37:52 +000012092 }
12093
Benjamin Peterson29060642009-01-31 22:14:21 +000012094 /* Non-ASCII characters */
Georg Brandl559e5d72008-06-11 18:37:52 +000012095 else {
Benjamin Peterson14339b62009-01-31 16:36:08 +000012096 /* Map Unicode whitespace and control characters
Georg Brandl559e5d72008-06-11 18:37:52 +000012097 (categories Z* and C* except ASCII space)
12098 */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012099 if (!Py_UNICODE_ISPRINTABLE(ch)) {
Kristján Valur Jónsson55e5dc82012-06-06 21:58:08 +000012100 PyUnicode_WRITE(okind, odata, o++, '\\');
Georg Brandl559e5d72008-06-11 18:37:52 +000012101 /* Map 8-bit characters to '\xhh' */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012102 if (ch <= 0xff) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012103 PyUnicode_WRITE(okind, odata, o++, 'x');
Victor Stinnerf5cff562011-10-14 02:13:11 +020012104 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0x000F]);
12105 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0x000F]);
Georg Brandl559e5d72008-06-11 18:37:52 +000012106 }
Kristján Valur Jónsson55e5dc82012-06-06 21:58:08 +000012107 /* Map 16-bit characters to '\uxxxx' */
12108 else if (ch <= 0xffff) {
12109 PyUnicode_WRITE(okind, odata, o++, 'u');
Victor Stinnerf5cff562011-10-14 02:13:11 +020012110 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 12) & 0xF]);
12111 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 8) & 0xF]);
12112 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0xF]);
12113 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0xF]);
Georg Brandl559e5d72008-06-11 18:37:52 +000012114 }
Kristján Valur Jónsson55e5dc82012-06-06 21:58:08 +000012115 /* Map 21-bit characters to '\U00xxxxxx' */
Georg Brandl559e5d72008-06-11 18:37:52 +000012116 else {
Kristján Valur Jónsson55e5dc82012-06-06 21:58:08 +000012117 PyUnicode_WRITE(okind, odata, o++, 'U');
12118 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 28) & 0xF]);
12119 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 24) & 0xF]);
12120 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 20) & 0xF]);
12121 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 16) & 0xF]);
Victor Stinnerf5cff562011-10-14 02:13:11 +020012122 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 12) & 0xF]);
12123 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 8) & 0xF]);
12124 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[(ch >> 4) & 0xF]);
12125 PyUnicode_WRITE(okind, odata, o++, Py_hexdigits[ch & 0xF]);
Georg Brandl559e5d72008-06-11 18:37:52 +000012126 }
12127 }
12128 /* Copy characters as-is */
12129 else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012130 PyUnicode_WRITE(okind, odata, o++, ch);
Georg Brandl559e5d72008-06-11 18:37:52 +000012131 }
12132 }
Walter Dörwald79e913e2007-05-12 11:08:06 +000012133 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012134 /* Closing quote already added at the beginning */
Victor Stinner05d11892011-10-06 01:13:58 +020012135 assert(_PyUnicode_CheckConsistency(repr, 1));
Walter Dörwald79e913e2007-05-12 11:08:06 +000012136 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012137}
12138
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012139PyDoc_STRVAR(rfind__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012140 "S.rfind(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012141\n\
12142Return the highest index in S where substring sub is found,\n\
Senthil Kumaran53516a82011-07-27 23:33:54 +080012143such that sub is contained within S[start:end]. Optional\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012144arguments start and end are interpreted as in slice notation.\n\
12145\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012146Return -1 on failure.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012147
12148static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012149unicode_rfind(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012150{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012151 PyObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +000012152 Py_ssize_t start;
12153 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012154 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012155
Jesus Ceaac451502011-04-20 17:09:23 +020012156 if (!stringlib_parse_args_finds_unicode("rfind", args, &substring,
12157 &start, &end))
Benjamin Peterson14339b62009-01-31 16:36:08 +000012158 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012159
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012160 if (PyUnicode_READY(self) == -1)
12161 return NULL;
12162 if (PyUnicode_READY(substring) == -1)
12163 return NULL;
12164
Victor Stinner7931d9a2011-11-04 00:22:48 +010012165 result = any_find_slice(-1, self, substring, start, end);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012166
12167 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012168
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012169 if (result == -2)
12170 return NULL;
12171
Christian Heimes217cfd12007-12-02 14:31:20 +000012172 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012173}
12174
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012175PyDoc_STRVAR(rindex__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012176 "S.rindex(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012177\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012178Like S.rfind() but raise ValueError when the substring is not found.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012179
12180static PyObject *
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012181unicode_rindex(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012182{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012183 PyObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +000012184 Py_ssize_t start;
12185 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012186 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012187
Jesus Ceaac451502011-04-20 17:09:23 +020012188 if (!stringlib_parse_args_finds_unicode("rindex", args, &substring,
12189 &start, &end))
Benjamin Peterson14339b62009-01-31 16:36:08 +000012190 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012191
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012192 if (PyUnicode_READY(self) == -1)
12193 return NULL;
12194 if (PyUnicode_READY(substring) == -1)
12195 return NULL;
12196
Victor Stinner7931d9a2011-11-04 00:22:48 +010012197 result = any_find_slice(-1, self, substring, start, end);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012198
12199 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012200
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012201 if (result == -2)
12202 return NULL;
12203
Guido van Rossumd57fd912000-03-10 22:53:23 +000012204 if (result < 0) {
12205 PyErr_SetString(PyExc_ValueError, "substring not found");
12206 return NULL;
12207 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012208
Christian Heimes217cfd12007-12-02 14:31:20 +000012209 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012210}
12211
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012212PyDoc_STRVAR(rjust__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012213 "S.rjust(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012214\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +000012215Return S right-justified in a string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000012216done using the specified fill character (default is a space).");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012217
12218static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +020012219unicode_rjust(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012220{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000012221 Py_ssize_t width;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012222 Py_UCS4 fillchar = ' ';
12223
Victor Stinnere9a29352011-10-01 02:14:59 +020012224 if (!PyArg_ParseTuple(args, "n|O&:rjust", &width, convert_uc, &fillchar))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012225 return NULL;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +000012226
Benjamin Petersonbac79492012-01-14 13:34:47 -050012227 if (PyUnicode_READY(self) == -1)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012228 return NULL;
12229
Victor Stinnerc4b49542011-12-11 22:44:26 +010012230 if (PyUnicode_GET_LENGTH(self) >= width)
12231 return unicode_result_unchanged(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012232
Victor Stinnerc4b49542011-12-11 22:44:26 +010012233 return pad(self, width - PyUnicode_GET_LENGTH(self), 0, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012234}
12235
Alexander Belopolsky40018472011-02-26 01:02:56 +000012236PyObject *
12237PyUnicode_Split(PyObject *s, PyObject *sep, Py_ssize_t maxsplit)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012238{
12239 PyObject *result;
Tim Petersced69f82003-09-16 20:30:58 +000012240
Guido van Rossumd57fd912000-03-10 22:53:23 +000012241 s = PyUnicode_FromObject(s);
12242 if (s == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +000012243 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +000012244 if (sep != NULL) {
12245 sep = PyUnicode_FromObject(sep);
12246 if (sep == NULL) {
12247 Py_DECREF(s);
12248 return NULL;
12249 }
Guido van Rossumd57fd912000-03-10 22:53:23 +000012250 }
12251
Victor Stinner9310abb2011-10-05 00:59:23 +020012252 result = split(s, sep, maxsplit);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012253
12254 Py_DECREF(s);
12255 Py_XDECREF(sep);
12256 return result;
12257}
12258
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012259PyDoc_STRVAR(split__doc__,
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012260 "S.split(sep=None, maxsplit=-1) -> list of strings\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012261\n\
12262Return a list of the words in S, using sep as the\n\
12263delimiter string. If maxsplit is given, at most maxsplit\n\
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +000012264splits are done. If sep is not specified or is None, any\n\
Alexandre Vassalotti8ae3e052008-05-16 00:41:41 +000012265whitespace string is a separator and empty strings are\n\
12266removed from the result.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012267
12268static PyObject*
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012269unicode_split(PyObject *self, PyObject *args, PyObject *kwds)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012270{
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012271 static char *kwlist[] = {"sep", "maxsplit", 0};
Guido van Rossumd57fd912000-03-10 22:53:23 +000012272 PyObject *substring = Py_None;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012273 Py_ssize_t maxcount = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012274
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012275 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|On:split",
12276 kwlist, &substring, &maxcount))
Guido van Rossumd57fd912000-03-10 22:53:23 +000012277 return NULL;
12278
12279 if (substring == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +000012280 return split(self, NULL, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012281 else if (PyUnicode_Check(substring))
Victor Stinner9310abb2011-10-05 00:59:23 +020012282 return split(self, substring, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012283 else
Victor Stinner7931d9a2011-11-04 00:22:48 +010012284 return PyUnicode_Split(self, substring, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012285}
12286
Thomas Wouters477c8d52006-05-27 19:21:47 +000012287PyObject *
12288PyUnicode_Partition(PyObject *str_in, PyObject *sep_in)
12289{
12290 PyObject* str_obj;
12291 PyObject* sep_obj;
12292 PyObject* out;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012293 int kind1, kind2, kind;
12294 void *buf1 = NULL, *buf2 = NULL;
12295 Py_ssize_t len1, len2;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012296
12297 str_obj = PyUnicode_FromObject(str_in);
Benjamin Peterson22a29702012-01-02 09:00:30 -060012298 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +000012299 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012300 sep_obj = PyUnicode_FromObject(sep_in);
Benjamin Peterson22a29702012-01-02 09:00:30 -060012301 if (!sep_obj) {
12302 Py_DECREF(str_obj);
12303 return NULL;
12304 }
12305 if (PyUnicode_READY(sep_obj) == -1 || PyUnicode_READY(str_obj) == -1) {
12306 Py_DECREF(sep_obj);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012307 Py_DECREF(str_obj);
12308 return NULL;
12309 }
12310
Victor Stinner14f8f022011-10-05 20:58:25 +020012311 kind1 = PyUnicode_KIND(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012312 kind2 = PyUnicode_KIND(sep_obj);
Victor Stinner14f8f022011-10-05 20:58:25 +020012313 kind = Py_MAX(kind1, kind2);
12314 buf1 = PyUnicode_DATA(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012315 if (kind1 != kind)
Victor Stinner14f8f022011-10-05 20:58:25 +020012316 buf1 = _PyUnicode_AsKind(str_obj, kind);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012317 if (!buf1)
12318 goto onError;
12319 buf2 = PyUnicode_DATA(sep_obj);
12320 if (kind2 != kind)
12321 buf2 = _PyUnicode_AsKind(sep_obj, kind);
12322 if (!buf2)
12323 goto onError;
12324 len1 = PyUnicode_GET_LENGTH(str_obj);
12325 len2 = PyUnicode_GET_LENGTH(sep_obj);
12326
Benjamin Petersonead6b532011-12-20 17:23:42 -060012327 switch (PyUnicode_KIND(str_obj)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012328 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +020012329 if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj))
12330 out = asciilib_partition(str_obj, buf1, len1, sep_obj, buf2, len2);
12331 else
12332 out = ucs1lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012333 break;
12334 case PyUnicode_2BYTE_KIND:
12335 out = ucs2lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2);
12336 break;
12337 case PyUnicode_4BYTE_KIND:
12338 out = ucs4lib_partition(str_obj, buf1, len1, sep_obj, buf2, len2);
12339 break;
12340 default:
12341 assert(0);
12342 out = 0;
12343 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000012344
12345 Py_DECREF(sep_obj);
12346 Py_DECREF(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012347 if (kind1 != kind)
12348 PyMem_Free(buf1);
12349 if (kind2 != kind)
12350 PyMem_Free(buf2);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012351
12352 return out;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012353 onError:
12354 Py_DECREF(sep_obj);
12355 Py_DECREF(str_obj);
12356 if (kind1 != kind && buf1)
12357 PyMem_Free(buf1);
12358 if (kind2 != kind && buf2)
12359 PyMem_Free(buf2);
12360 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012361}
12362
12363
12364PyObject *
12365PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in)
12366{
12367 PyObject* str_obj;
12368 PyObject* sep_obj;
12369 PyObject* out;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012370 int kind1, kind2, kind;
12371 void *buf1 = NULL, *buf2 = NULL;
12372 Py_ssize_t len1, len2;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012373
12374 str_obj = PyUnicode_FromObject(str_in);
12375 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +000012376 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012377 sep_obj = PyUnicode_FromObject(sep_in);
12378 if (!sep_obj) {
12379 Py_DECREF(str_obj);
12380 return NULL;
12381 }
12382
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012383 kind1 = PyUnicode_KIND(str_in);
12384 kind2 = PyUnicode_KIND(sep_obj);
Georg Brandl4cb0de22011-09-28 21:49:49 +020012385 kind = Py_MAX(kind1, kind2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012386 buf1 = PyUnicode_DATA(str_in);
12387 if (kind1 != kind)
12388 buf1 = _PyUnicode_AsKind(str_in, kind);
12389 if (!buf1)
12390 goto onError;
12391 buf2 = PyUnicode_DATA(sep_obj);
12392 if (kind2 != kind)
12393 buf2 = _PyUnicode_AsKind(sep_obj, kind);
12394 if (!buf2)
12395 goto onError;
12396 len1 = PyUnicode_GET_LENGTH(str_obj);
12397 len2 = PyUnicode_GET_LENGTH(sep_obj);
12398
Benjamin Petersonead6b532011-12-20 17:23:42 -060012399 switch (PyUnicode_KIND(str_in)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012400 case PyUnicode_1BYTE_KIND:
Victor Stinnerc3cec782011-10-05 21:24:08 +020012401 if (PyUnicode_IS_ASCII(str_obj) && PyUnicode_IS_ASCII(sep_obj))
12402 out = asciilib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12403 else
12404 out = ucs1lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012405 break;
12406 case PyUnicode_2BYTE_KIND:
12407 out = ucs2lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12408 break;
12409 case PyUnicode_4BYTE_KIND:
12410 out = ucs4lib_rpartition(str_obj, buf1, len1, sep_obj, buf2, len2);
12411 break;
12412 default:
12413 assert(0);
12414 out = 0;
12415 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000012416
12417 Py_DECREF(sep_obj);
12418 Py_DECREF(str_obj);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012419 if (kind1 != kind)
12420 PyMem_Free(buf1);
12421 if (kind2 != kind)
12422 PyMem_Free(buf2);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012423
12424 return out;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012425 onError:
12426 Py_DECREF(sep_obj);
12427 Py_DECREF(str_obj);
12428 if (kind1 != kind && buf1)
12429 PyMem_Free(buf1);
12430 if (kind2 != kind && buf2)
12431 PyMem_Free(buf2);
12432 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +000012433}
12434
12435PyDoc_STRVAR(partition__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012436 "S.partition(sep) -> (head, sep, tail)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000012437\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +000012438Search for the separator sep in S, and return the part before it,\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000012439the separator itself, and the part after it. If the separator is not\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +000012440found, return S and two empty strings.");
Thomas Wouters477c8d52006-05-27 19:21:47 +000012441
12442static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020012443unicode_partition(PyObject *self, PyObject *separator)
Thomas Wouters477c8d52006-05-27 19:21:47 +000012444{
Victor Stinner9310abb2011-10-05 00:59:23 +020012445 return PyUnicode_Partition(self, separator);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012446}
12447
12448PyDoc_STRVAR(rpartition__doc__,
Ezio Melotti5b2b2422010-01-25 11:58:28 +000012449 "S.rpartition(sep) -> (head, sep, tail)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000012450\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +000012451Search for the separator sep in S, starting at the end of S, and return\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +000012452the part before it, the separator itself, and the part after it. If the\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +000012453separator is not found, return two empty strings and S.");
Thomas Wouters477c8d52006-05-27 19:21:47 +000012454
12455static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020012456unicode_rpartition(PyObject *self, PyObject *separator)
Thomas Wouters477c8d52006-05-27 19:21:47 +000012457{
Victor Stinner9310abb2011-10-05 00:59:23 +020012458 return PyUnicode_RPartition(self, separator);
Thomas Wouters477c8d52006-05-27 19:21:47 +000012459}
12460
Alexander Belopolsky40018472011-02-26 01:02:56 +000012461PyObject *
12462PyUnicode_RSplit(PyObject *s, PyObject *sep, Py_ssize_t maxsplit)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012463{
12464 PyObject *result;
Benjamin Peterson14339b62009-01-31 16:36:08 +000012465
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012466 s = PyUnicode_FromObject(s);
12467 if (s == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +000012468 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +000012469 if (sep != NULL) {
12470 sep = PyUnicode_FromObject(sep);
12471 if (sep == NULL) {
12472 Py_DECREF(s);
12473 return NULL;
12474 }
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012475 }
12476
Victor Stinner9310abb2011-10-05 00:59:23 +020012477 result = rsplit(s, sep, maxsplit);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012478
12479 Py_DECREF(s);
12480 Py_XDECREF(sep);
12481 return result;
12482}
12483
12484PyDoc_STRVAR(rsplit__doc__,
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012485 "S.rsplit(sep=None, maxsplit=-1) -> list of strings\n\
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012486\n\
12487Return a list of the words in S, using sep as the\n\
12488delimiter string, starting at the end of the string and\n\
12489working to the front. If maxsplit is given, at most maxsplit\n\
12490splits are done. If sep is not specified, any whitespace string\n\
12491is a separator.");
12492
12493static PyObject*
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012494unicode_rsplit(PyObject *self, PyObject *args, PyObject *kwds)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012495{
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012496 static char *kwlist[] = {"sep", "maxsplit", 0};
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012497 PyObject *substring = Py_None;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012498 Py_ssize_t maxcount = -1;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012499
Ezio Melotticda6b6d2012-02-26 09:39:55 +020012500 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|On:rsplit",
12501 kwlist, &substring, &maxcount))
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012502 return NULL;
12503
12504 if (substring == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +000012505 return rsplit(self, NULL, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012506 else if (PyUnicode_Check(substring))
Victor Stinner9310abb2011-10-05 00:59:23 +020012507 return rsplit(self, substring, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012508 else
Victor Stinner9310abb2011-10-05 00:59:23 +020012509 return PyUnicode_RSplit(self, substring, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +000012510}
12511
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012512PyDoc_STRVAR(splitlines__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012513 "S.splitlines([keepends]) -> list of strings\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012514\n\
12515Return a list of the lines in S, breaking at line boundaries.\n\
Guido van Rossum86662912000-04-11 15:38:46 +000012516Line breaks are not included in the resulting list unless keepends\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012517is given and true.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012518
12519static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012520unicode_splitlines(PyObject *self, PyObject *args, PyObject *kwds)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012521{
Mark Dickinson0d5f6ad2011-09-24 09:14:39 +010012522 static char *kwlist[] = {"keepends", 0};
Guido van Rossum86662912000-04-11 15:38:46 +000012523 int keepends = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012524
Mark Dickinson0d5f6ad2011-09-24 09:14:39 +010012525 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|i:splitlines",
12526 kwlist, &keepends))
Guido van Rossumd57fd912000-03-10 22:53:23 +000012527 return NULL;
12528
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012529 return PyUnicode_Splitlines(self, keepends);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012530}
12531
12532static
Guido van Rossumf15a29f2007-05-04 00:41:39 +000012533PyObject *unicode_str(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012534{
Victor Stinnerc4b49542011-12-11 22:44:26 +010012535 return unicode_result_unchanged(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012536}
12537
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012538PyDoc_STRVAR(swapcase__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012539 "S.swapcase() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012540\n\
12541Return a copy of S with uppercase characters converted to lowercase\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012542and vice versa.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012543
12544static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020012545unicode_swapcase(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012546{
Benjamin Petersoneea48462012-01-16 14:28:50 -050012547 if (PyUnicode_READY(self) == -1)
12548 return NULL;
Victor Stinnerb0800dc2012-02-25 00:47:08 +010012549 return case_operation(self, do_swapcase);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012550}
12551
Georg Brandlceee0772007-11-27 23:48:05 +000012552PyDoc_STRVAR(maketrans__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012553 "str.maketrans(x[, y[, z]]) -> dict (static method)\n\
Georg Brandlceee0772007-11-27 23:48:05 +000012554\n\
12555Return a translation table usable for str.translate().\n\
12556If there is only one argument, it must be a dictionary mapping Unicode\n\
12557ordinals (integers) or characters to Unicode ordinals, strings or None.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000012558Character keys will be then converted to ordinals.\n\
Georg Brandlceee0772007-11-27 23:48:05 +000012559If there are two arguments, they must be strings of equal length, and\n\
12560in the resulting dictionary, each character in x will be mapped to the\n\
12561character at the same position in y. If there is a third argument, it\n\
12562must be a string, whose characters will be mapped to None in the result.");
12563
12564static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012565unicode_maketrans(PyObject *null, PyObject *args)
Georg Brandlceee0772007-11-27 23:48:05 +000012566{
12567 PyObject *x, *y = NULL, *z = NULL;
12568 PyObject *new = NULL, *key, *value;
12569 Py_ssize_t i = 0;
12570 int res;
Benjamin Peterson14339b62009-01-31 16:36:08 +000012571
Georg Brandlceee0772007-11-27 23:48:05 +000012572 if (!PyArg_ParseTuple(args, "O|UU:maketrans", &x, &y, &z))
12573 return NULL;
12574 new = PyDict_New();
12575 if (!new)
12576 return NULL;
12577 if (y != NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012578 int x_kind, y_kind, z_kind;
12579 void *x_data, *y_data, *z_data;
12580
Georg Brandlceee0772007-11-27 23:48:05 +000012581 /* x must be a string too, of equal length */
Georg Brandlceee0772007-11-27 23:48:05 +000012582 if (!PyUnicode_Check(x)) {
12583 PyErr_SetString(PyExc_TypeError, "first maketrans argument must "
12584 "be a string if there is a second argument");
12585 goto err;
12586 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012587 if (PyUnicode_GET_LENGTH(x) != PyUnicode_GET_LENGTH(y)) {
Georg Brandlceee0772007-11-27 23:48:05 +000012588 PyErr_SetString(PyExc_ValueError, "the first two maketrans "
12589 "arguments must have equal length");
12590 goto err;
12591 }
12592 /* create entries for translating chars in x to those in y */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012593 x_kind = PyUnicode_KIND(x);
12594 y_kind = PyUnicode_KIND(y);
12595 x_data = PyUnicode_DATA(x);
12596 y_data = PyUnicode_DATA(y);
12597 for (i = 0; i < PyUnicode_GET_LENGTH(x); i++) {
12598 key = PyLong_FromLong(PyUnicode_READ(x_kind, x_data, i));
Benjamin Peterson53aa1d72011-12-20 13:29:45 -060012599 if (!key)
Georg Brandlceee0772007-11-27 23:48:05 +000012600 goto err;
Benjamin Peterson822c7902011-12-20 13:32:50 -060012601 value = PyLong_FromLong(PyUnicode_READ(y_kind, y_data, i));
Benjamin Peterson53aa1d72011-12-20 13:29:45 -060012602 if (!value) {
12603 Py_DECREF(key);
12604 goto err;
12605 }
Georg Brandlceee0772007-11-27 23:48:05 +000012606 res = PyDict_SetItem(new, key, value);
12607 Py_DECREF(key);
12608 Py_DECREF(value);
12609 if (res < 0)
12610 goto err;
12611 }
12612 /* create entries for deleting chars in z */
12613 if (z != NULL) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012614 z_kind = PyUnicode_KIND(z);
12615 z_data = PyUnicode_DATA(z);
Victor Stinnerc4f281e2011-10-11 22:11:42 +020012616 for (i = 0; i < PyUnicode_GET_LENGTH(z); i++) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012617 key = PyLong_FromLong(PyUnicode_READ(z_kind, z_data, i));
Georg Brandlceee0772007-11-27 23:48:05 +000012618 if (!key)
12619 goto err;
12620 res = PyDict_SetItem(new, key, Py_None);
12621 Py_DECREF(key);
12622 if (res < 0)
12623 goto err;
12624 }
12625 }
12626 } else {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012627 int kind;
12628 void *data;
12629
Georg Brandlceee0772007-11-27 23:48:05 +000012630 /* x must be a dict */
Raymond Hettinger3ad05762009-05-29 22:11:22 +000012631 if (!PyDict_CheckExact(x)) {
Georg Brandlceee0772007-11-27 23:48:05 +000012632 PyErr_SetString(PyExc_TypeError, "if you give only one argument "
12633 "to maketrans it must be a dict");
12634 goto err;
12635 }
12636 /* copy entries into the new dict, converting string keys to int keys */
12637 while (PyDict_Next(x, &i, &key, &value)) {
12638 if (PyUnicode_Check(key)) {
12639 /* convert string keys to integer keys */
12640 PyObject *newkey;
Victor Stinnerc4f281e2011-10-11 22:11:42 +020012641 if (PyUnicode_GET_LENGTH(key) != 1) {
Georg Brandlceee0772007-11-27 23:48:05 +000012642 PyErr_SetString(PyExc_ValueError, "string keys in translate "
12643 "table must be of length 1");
12644 goto err;
12645 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012646 kind = PyUnicode_KIND(key);
12647 data = PyUnicode_DATA(key);
12648 newkey = PyLong_FromLong(PyUnicode_READ(kind, data, 0));
Georg Brandlceee0772007-11-27 23:48:05 +000012649 if (!newkey)
12650 goto err;
12651 res = PyDict_SetItem(new, newkey, value);
12652 Py_DECREF(newkey);
12653 if (res < 0)
12654 goto err;
Christian Heimes217cfd12007-12-02 14:31:20 +000012655 } else if (PyLong_Check(key)) {
Georg Brandlceee0772007-11-27 23:48:05 +000012656 /* just keep integer keys */
12657 if (PyDict_SetItem(new, key, value) < 0)
12658 goto err;
12659 } else {
12660 PyErr_SetString(PyExc_TypeError, "keys in translate table must "
12661 "be strings or integers");
12662 goto err;
12663 }
12664 }
12665 }
12666 return new;
12667 err:
12668 Py_DECREF(new);
12669 return NULL;
12670}
12671
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012672PyDoc_STRVAR(translate__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012673 "S.translate(table) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012674\n\
12675Return a copy of the string S, where all characters have been mapped\n\
12676through the given translation table, which must be a mapping of\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +000012677Unicode ordinals to Unicode ordinals, strings, or None.\n\
Walter Dörwald5c1ee172002-09-04 20:31:32 +000012678Unmapped characters are left untouched. Characters mapped to None\n\
12679are deleted.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012680
12681static PyObject*
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012682unicode_translate(PyObject *self, PyObject *table)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012683{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012684 return _PyUnicode_TranslateCharmap(self, table, "ignore");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012685}
12686
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012687PyDoc_STRVAR(upper__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012688 "S.upper() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012689\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012690Return a copy of S converted to uppercase.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012691
12692static PyObject*
Victor Stinner9310abb2011-10-05 00:59:23 +020012693unicode_upper(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012694{
Benjamin Petersonb2bf01d2012-01-11 18:17:06 -050012695 if (PyUnicode_READY(self) == -1)
12696 return NULL;
12697 if (PyUnicode_IS_ASCII(self))
12698 return ascii_upper_or_lower(self, 0);
Victor Stinnerb0800dc2012-02-25 00:47:08 +010012699 return case_operation(self, do_upper);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012700}
12701
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012702PyDoc_STRVAR(zfill__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012703 "S.zfill(width) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012704\n\
Benjamin Peterson9aa42992008-09-10 21:57:34 +000012705Pad a numeric string S with zeros on the left, to fill a field\n\
12706of the specified width. The string S is never truncated.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012707
12708static PyObject *
Victor Stinner9310abb2011-10-05 00:59:23 +020012709unicode_zfill(PyObject *self, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012710{
Martin v. Löwis18e16552006-02-15 17:27:45 +000012711 Py_ssize_t fill;
Victor Stinner9310abb2011-10-05 00:59:23 +020012712 PyObject *u;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012713 Py_ssize_t width;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012714 int kind;
12715 void *data;
12716 Py_UCS4 chr;
12717
Martin v. Löwis18e16552006-02-15 17:27:45 +000012718 if (!PyArg_ParseTuple(args, "n:zfill", &width))
Guido van Rossumd57fd912000-03-10 22:53:23 +000012719 return NULL;
12720
Benjamin Petersonbac79492012-01-14 13:34:47 -050012721 if (PyUnicode_READY(self) == -1)
Victor Stinnerc4b49542011-12-11 22:44:26 +010012722 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012723
Victor Stinnerc4b49542011-12-11 22:44:26 +010012724 if (PyUnicode_GET_LENGTH(self) >= width)
12725 return unicode_result_unchanged(self);
12726
12727 fill = width - PyUnicode_GET_LENGTH(self);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012728
12729 u = pad(self, fill, 0, '0');
12730
Walter Dörwald068325e2002-04-15 13:36:47 +000012731 if (u == NULL)
12732 return NULL;
12733
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012734 kind = PyUnicode_KIND(u);
12735 data = PyUnicode_DATA(u);
12736 chr = PyUnicode_READ(kind, data, fill);
12737
12738 if (chr == '+' || chr == '-') {
Guido van Rossumd57fd912000-03-10 22:53:23 +000012739 /* move sign to beginning of string */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012740 PyUnicode_WRITE(kind, data, 0, chr);
12741 PyUnicode_WRITE(kind, data, fill, '0');
Guido van Rossumd57fd912000-03-10 22:53:23 +000012742 }
12743
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020012744 assert(_PyUnicode_CheckConsistency(u, 1));
Victor Stinner7931d9a2011-11-04 00:22:48 +010012745 return u;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012746}
Guido van Rossumd57fd912000-03-10 22:53:23 +000012747
12748#if 0
Alexander Belopolsky942af5a2010-12-04 03:38:46 +000012749static PyObject *
12750unicode__decimal2ascii(PyObject *self)
12751{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020012752 return PyUnicode_TransformDecimalAndSpaceToASCII(self);
Alexander Belopolsky942af5a2010-12-04 03:38:46 +000012753}
Guido van Rossumd57fd912000-03-10 22:53:23 +000012754#endif
12755
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012756PyDoc_STRVAR(startswith__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012757 "S.startswith(prefix[, start[, end]]) -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012758\n\
Guido van Rossuma7132182003-04-09 19:32:45 +000012759Return True if S starts with the specified prefix, False otherwise.\n\
12760With optional start, test S beginning at that position.\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012761With optional end, stop comparing S at that position.\n\
12762prefix can also be a tuple of strings to try.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012763
12764static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012765unicode_startswith(PyObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +000012766 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012767{
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012768 PyObject *subobj;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012769 PyObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012770 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000012771 Py_ssize_t end = PY_SSIZE_T_MAX;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012772 int result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012773
Jesus Ceaac451502011-04-20 17:09:23 +020012774 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +000012775 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012776 if (PyTuple_Check(subobj)) {
12777 Py_ssize_t i;
12778 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012779 substring = PyUnicode_FromObject(PyTuple_GET_ITEM(subobj, i));
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012780 if (substring == NULL)
12781 return NULL;
12782 result = tailmatch(self, substring, start, end, -1);
12783 Py_DECREF(substring);
12784 if (result) {
12785 Py_RETURN_TRUE;
12786 }
12787 }
12788 /* nothing matched */
12789 Py_RETURN_FALSE;
12790 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012791 substring = PyUnicode_FromObject(subobj);
Ezio Melottiba42fd52011-04-26 06:09:45 +030012792 if (substring == NULL) {
12793 if (PyErr_ExceptionMatches(PyExc_TypeError))
12794 PyErr_Format(PyExc_TypeError, "startswith first arg must be str or "
12795 "a tuple of str, not %s", Py_TYPE(subobj)->tp_name);
Benjamin Peterson29060642009-01-31 22:14:21 +000012796 return NULL;
Ezio Melottiba42fd52011-04-26 06:09:45 +030012797 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012798 result = tailmatch(self, substring, start, end, -1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012799 Py_DECREF(substring);
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012800 return PyBool_FromLong(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012801}
12802
12803
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000012804PyDoc_STRVAR(endswith__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000012805 "S.endswith(suffix[, start[, end]]) -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +000012806\n\
Guido van Rossuma7132182003-04-09 19:32:45 +000012807Return True if S ends with the specified suffix, False otherwise.\n\
12808With optional start, test S beginning at that position.\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012809With optional end, stop comparing S at that position.\n\
12810suffix can also be a tuple of strings to try.");
Guido van Rossumd57fd912000-03-10 22:53:23 +000012811
12812static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012813unicode_endswith(PyObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +000012814 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000012815{
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012816 PyObject *subobj;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012817 PyObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +000012818 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000012819 Py_ssize_t end = PY_SSIZE_T_MAX;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012820 int result;
Guido van Rossumd57fd912000-03-10 22:53:23 +000012821
Jesus Ceaac451502011-04-20 17:09:23 +020012822 if (!stringlib_parse_args_finds("endswith", args, &subobj, &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +000012823 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012824 if (PyTuple_Check(subobj)) {
12825 Py_ssize_t i;
12826 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012827 substring = PyUnicode_FromObject(
Benjamin Peterson29060642009-01-31 22:14:21 +000012828 PyTuple_GET_ITEM(subobj, i));
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012829 if (substring == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000012830 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012831 result = tailmatch(self, substring, start, end, +1);
12832 Py_DECREF(substring);
12833 if (result) {
12834 Py_RETURN_TRUE;
12835 }
12836 }
12837 Py_RETURN_FALSE;
12838 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +020012839 substring = PyUnicode_FromObject(subobj);
Ezio Melottiba42fd52011-04-26 06:09:45 +030012840 if (substring == NULL) {
12841 if (PyErr_ExceptionMatches(PyExc_TypeError))
12842 PyErr_Format(PyExc_TypeError, "endswith first arg must be str or "
12843 "a tuple of str, not %s", Py_TYPE(subobj)->tp_name);
Benjamin Peterson29060642009-01-31 22:14:21 +000012844 return NULL;
Ezio Melottiba42fd52011-04-26 06:09:45 +030012845 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012846 result = tailmatch(self, substring, start, end, +1);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012847 Py_DECREF(substring);
Thomas Wouters0e3f5912006-08-11 14:57:12 +000012848 return PyBool_FromLong(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +000012849}
12850
Victor Stinner202fdca2012-05-07 12:47:02 +020012851Py_LOCAL_INLINE(void)
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012852_PyUnicodeWriter_Update(_PyUnicodeWriter *writer)
Victor Stinner202fdca2012-05-07 12:47:02 +020012853{
Victor Stinnerd3f08822012-05-29 12:57:52 +020012854 writer->size = PyUnicode_GET_LENGTH(writer->buffer);
Victor Stinner202fdca2012-05-07 12:47:02 +020012855 writer->maxchar = PyUnicode_MAX_CHAR_VALUE(writer->buffer);
12856 writer->data = PyUnicode_DATA(writer->buffer);
12857 writer->kind = PyUnicode_KIND(writer->buffer);
12858}
12859
Victor Stinnerd3f08822012-05-29 12:57:52 +020012860void
12861_PyUnicodeWriter_Init(_PyUnicodeWriter *writer, Py_ssize_t min_length)
Victor Stinner202fdca2012-05-07 12:47:02 +020012862{
Victor Stinnerd3f08822012-05-29 12:57:52 +020012863 memset(writer, 0, sizeof(*writer));
12864#ifdef Py_DEBUG
12865 writer->kind = 5; /* invalid kind */
12866#endif
12867 writer->min_length = Py_MAX(min_length, 100);
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012868 writer->overallocate = (min_length > 0);
Victor Stinner202fdca2012-05-07 12:47:02 +020012869}
12870
Victor Stinnerd3f08822012-05-29 12:57:52 +020012871int
12872_PyUnicodeWriter_PrepareInternal(_PyUnicodeWriter *writer,
12873 Py_ssize_t length, Py_UCS4 maxchar)
Victor Stinner202fdca2012-05-07 12:47:02 +020012874{
12875 Py_ssize_t newlen;
12876 PyObject *newbuffer;
12877
Victor Stinnerd3f08822012-05-29 12:57:52 +020012878 assert(length > 0);
12879
Victor Stinner202fdca2012-05-07 12:47:02 +020012880 if (length > PY_SSIZE_T_MAX - writer->pos) {
12881 PyErr_NoMemory();
12882 return -1;
12883 }
12884 newlen = writer->pos + length;
12885
Victor Stinnerd3f08822012-05-29 12:57:52 +020012886 if (writer->buffer == NULL) {
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012887 if (writer->overallocate) {
Victor Stinnerd3f08822012-05-29 12:57:52 +020012888 /* overallocate 25% to limit the number of resize */
12889 if (newlen <= (PY_SSIZE_T_MAX - newlen / 4))
12890 newlen += newlen / 4;
12891 if (newlen < writer->min_length)
12892 newlen = writer->min_length;
12893 }
12894 writer->buffer = PyUnicode_New(newlen, maxchar);
12895 if (writer->buffer == NULL)
12896 return -1;
12897 _PyUnicodeWriter_Update(writer);
12898 return 0;
12899 }
Victor Stinner202fdca2012-05-07 12:47:02 +020012900
Victor Stinnerd3f08822012-05-29 12:57:52 +020012901 if (newlen > writer->size) {
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012902 if (writer->overallocate) {
Victor Stinnerd3f08822012-05-29 12:57:52 +020012903 /* overallocate 25% to limit the number of resize */
12904 if (newlen <= (PY_SSIZE_T_MAX - newlen / 4))
12905 newlen += newlen / 4;
12906 if (newlen < writer->min_length)
12907 newlen = writer->min_length;
12908 }
12909
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012910 if (maxchar > writer->maxchar || writer->readonly) {
Victor Stinner202fdca2012-05-07 12:47:02 +020012911 /* resize + widen */
12912 newbuffer = PyUnicode_New(newlen, maxchar);
12913 if (newbuffer == NULL)
12914 return -1;
Victor Stinnerd3f08822012-05-29 12:57:52 +020012915 _PyUnicode_FastCopyCharacters(newbuffer, 0,
12916 writer->buffer, 0, writer->pos);
Victor Stinner202fdca2012-05-07 12:47:02 +020012917 Py_DECREF(writer->buffer);
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012918 writer->readonly = 0;
Victor Stinner202fdca2012-05-07 12:47:02 +020012919 }
12920 else {
12921 newbuffer = resize_compact(writer->buffer, newlen);
12922 if (newbuffer == NULL)
12923 return -1;
12924 }
12925 writer->buffer = newbuffer;
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012926 _PyUnicodeWriter_Update(writer);
Victor Stinner202fdca2012-05-07 12:47:02 +020012927 }
12928 else if (maxchar > writer->maxchar) {
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012929 assert(!writer->readonly);
Victor Stinnerd3f08822012-05-29 12:57:52 +020012930 newbuffer = PyUnicode_New(writer->size, maxchar);
12931 if (newbuffer == NULL)
Victor Stinner202fdca2012-05-07 12:47:02 +020012932 return -1;
Victor Stinnerd3f08822012-05-29 12:57:52 +020012933 _PyUnicode_FastCopyCharacters(newbuffer, 0,
12934 writer->buffer, 0, writer->pos);
12935 Py_DECREF(writer->buffer);
12936 writer->buffer = newbuffer;
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012937 _PyUnicodeWriter_Update(writer);
Victor Stinner202fdca2012-05-07 12:47:02 +020012938 }
12939 return 0;
12940}
12941
Victor Stinnerd3f08822012-05-29 12:57:52 +020012942int
12943_PyUnicodeWriter_WriteStr(_PyUnicodeWriter *writer, PyObject *str)
12944{
12945 Py_UCS4 maxchar;
12946 Py_ssize_t len;
12947
12948 if (PyUnicode_READY(str) == -1)
12949 return -1;
12950 len = PyUnicode_GET_LENGTH(str);
12951 if (len == 0)
12952 return 0;
12953 maxchar = PyUnicode_MAX_CHAR_VALUE(str);
12954 if (maxchar > writer->maxchar || len > writer->size - writer->pos) {
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012955 if (writer->buffer == NULL && !writer->overallocate) {
Victor Stinnerd3f08822012-05-29 12:57:52 +020012956 Py_INCREF(str);
12957 writer->buffer = str;
12958 _PyUnicodeWriter_Update(writer);
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012959 writer->readonly = 1;
Victor Stinnerd3f08822012-05-29 12:57:52 +020012960 writer->size = 0;
12961 writer->pos += len;
12962 return 0;
12963 }
12964 if (_PyUnicodeWriter_PrepareInternal(writer, len, maxchar) == -1)
12965 return -1;
12966 }
12967 _PyUnicode_FastCopyCharacters(writer->buffer, writer->pos,
12968 str, 0, len);
12969 writer->pos += len;
12970 return 0;
12971}
12972
12973PyObject *
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012974_PyUnicodeWriter_Finish(_PyUnicodeWriter *writer)
Victor Stinner202fdca2012-05-07 12:47:02 +020012975{
Victor Stinnerd3f08822012-05-29 12:57:52 +020012976 if (writer->pos == 0) {
12977 Py_XDECREF(writer->buffer);
Serhiy Storchaka678db842013-01-26 12:16:36 +020012978 _Py_RETURN_UNICODE_EMPTY();
Victor Stinnerd3f08822012-05-29 12:57:52 +020012979 }
Victor Stinnerd7b7c742012-06-04 22:52:12 +020012980 if (writer->readonly) {
Victor Stinnerd3f08822012-05-29 12:57:52 +020012981 assert(PyUnicode_GET_LENGTH(writer->buffer) == writer->pos);
12982 return writer->buffer;
12983 }
12984 if (PyUnicode_GET_LENGTH(writer->buffer) != writer->pos) {
12985 PyObject *newbuffer;
12986 newbuffer = resize_compact(writer->buffer, writer->pos);
12987 if (newbuffer == NULL) {
12988 Py_DECREF(writer->buffer);
12989 return NULL;
12990 }
12991 writer->buffer = newbuffer;
Victor Stinner202fdca2012-05-07 12:47:02 +020012992 }
Victor Stinnerf59c28c2012-05-09 03:24:14 +020012993 assert(_PyUnicode_CheckConsistency(writer->buffer, 1));
Victor Stinner2cb16aa2013-03-06 19:28:37 +010012994 return unicode_result_ready(writer->buffer);
Victor Stinner202fdca2012-05-07 12:47:02 +020012995}
12996
Victor Stinnerd3f08822012-05-29 12:57:52 +020012997void
Victor Stinner3b1a74a2012-05-09 22:25:00 +020012998_PyUnicodeWriter_Dealloc(_PyUnicodeWriter *writer)
Victor Stinner202fdca2012-05-07 12:47:02 +020012999{
13000 Py_CLEAR(writer->buffer);
13001}
13002
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013003#include "stringlib/unicode_format.h"
Eric Smith8c663262007-08-25 02:26:07 +000013004
13005PyDoc_STRVAR(format__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000013006 "S.format(*args, **kwargs) -> str\n\
Eric Smith8c663262007-08-25 02:26:07 +000013007\n\
Eric Smith51d2fd92010-11-06 19:27:37 +000013008Return a formatted version of S, using substitutions from args and kwargs.\n\
13009The substitutions are identified by braces ('{' and '}').");
Eric Smith8c663262007-08-25 02:26:07 +000013010
Eric Smith27bbca62010-11-04 17:06:58 +000013011PyDoc_STRVAR(format_map__doc__,
13012 "S.format_map(mapping) -> str\n\
13013\n\
Eric Smith51d2fd92010-11-06 19:27:37 +000013014Return a formatted version of S, using substitutions from mapping.\n\
13015The substitutions are identified by braces ('{' and '}').");
Eric Smith27bbca62010-11-04 17:06:58 +000013016
Eric Smith4a7d76d2008-05-30 18:10:19 +000013017static PyObject *
13018unicode__format__(PyObject* self, PyObject* args)
13019{
Victor Stinnerd3f08822012-05-29 12:57:52 +020013020 PyObject *format_spec;
13021 _PyUnicodeWriter writer;
13022 int ret;
Eric Smith4a7d76d2008-05-30 18:10:19 +000013023
13024 if (!PyArg_ParseTuple(args, "U:__format__", &format_spec))
13025 return NULL;
13026
Victor Stinnerd3f08822012-05-29 12:57:52 +020013027 if (PyUnicode_READY(self) == -1)
13028 return NULL;
13029 _PyUnicodeWriter_Init(&writer, 0);
13030 ret = _PyUnicode_FormatAdvancedWriter(&writer,
13031 self, format_spec, 0,
13032 PyUnicode_GET_LENGTH(format_spec));
13033 if (ret == -1) {
13034 _PyUnicodeWriter_Dealloc(&writer);
13035 return NULL;
13036 }
13037 return _PyUnicodeWriter_Finish(&writer);
Eric Smith4a7d76d2008-05-30 18:10:19 +000013038}
13039
Eric Smith8c663262007-08-25 02:26:07 +000013040PyDoc_STRVAR(p_format__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000013041 "S.__format__(format_spec) -> str\n\
Eric Smith8c663262007-08-25 02:26:07 +000013042\n\
Eric Smith51d2fd92010-11-06 19:27:37 +000013043Return a formatted version of S as described by format_spec.");
Eric Smith8c663262007-08-25 02:26:07 +000013044
13045static PyObject *
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013046unicode__sizeof__(PyObject *v)
Georg Brandlc28e1fa2008-06-10 19:20:26 +000013047{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013048 Py_ssize_t size;
13049
13050 /* If it's a compact object, account for base structure +
13051 character data. */
13052 if (PyUnicode_IS_COMPACT_ASCII(v))
13053 size = sizeof(PyASCIIObject) + PyUnicode_GET_LENGTH(v) + 1;
13054 else if (PyUnicode_IS_COMPACT(v))
13055 size = sizeof(PyCompactUnicodeObject) +
Martin v. Löwisc47adb02011-10-07 20:55:35 +020013056 (PyUnicode_GET_LENGTH(v) + 1) * PyUnicode_KIND(v);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013057 else {
13058 /* If it is a two-block object, account for base object, and
13059 for character block if present. */
13060 size = sizeof(PyUnicodeObject);
Victor Stinnerc3c74152011-10-02 20:39:55 +020013061 if (_PyUnicode_DATA_ANY(v))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013062 size += (PyUnicode_GET_LENGTH(v) + 1) *
Martin v. Löwisc47adb02011-10-07 20:55:35 +020013063 PyUnicode_KIND(v);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013064 }
13065 /* If the wstr pointer is present, account for it unless it is shared
Victor Stinnera3be6132011-10-03 02:16:37 +020013066 with the data pointer. Check if the data is not shared. */
Victor Stinner03490912011-10-03 23:45:12 +020013067 if (_PyUnicode_HAS_WSTR_MEMORY(v))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013068 size += (PyUnicode_WSTR_LENGTH(v) + 1) * sizeof(wchar_t);
Victor Stinner829c0ad2011-10-03 01:08:02 +020013069 if (_PyUnicode_HAS_UTF8_MEMORY(v))
Victor Stinnere90fe6a2011-10-01 16:48:13 +020013070 size += PyUnicode_UTF8_LENGTH(v) + 1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013071
13072 return PyLong_FromSsize_t(size);
Georg Brandlc28e1fa2008-06-10 19:20:26 +000013073}
13074
13075PyDoc_STRVAR(sizeof__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +000013076 "S.__sizeof__() -> size of S in memory, in bytes");
Georg Brandlc28e1fa2008-06-10 19:20:26 +000013077
13078static PyObject *
Victor Stinner034f6cf2011-09-30 02:26:44 +020013079unicode_getnewargs(PyObject *v)
Guido van Rossum5d9113d2003-01-29 17:58:45 +000013080{
Victor Stinnerbf6e5602011-12-12 01:53:47 +010013081 PyObject *copy = _PyUnicode_Copy(v);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013082 if (!copy)
13083 return NULL;
13084 return Py_BuildValue("(N)", copy);
Guido van Rossum5d9113d2003-01-29 17:58:45 +000013085}
13086
Guido van Rossumd57fd912000-03-10 22:53:23 +000013087static PyMethodDef unicode_methods[] = {
Benjamin Peterson28a4dce2010-12-12 01:33:04 +000013088 {"encode", (PyCFunction) unicode_encode, METH_VARARGS | METH_KEYWORDS, encode__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013089 {"replace", (PyCFunction) unicode_replace, METH_VARARGS, replace__doc__},
Ezio Melotticda6b6d2012-02-26 09:39:55 +020013090 {"split", (PyCFunction) unicode_split, METH_VARARGS | METH_KEYWORDS, split__doc__},
13091 {"rsplit", (PyCFunction) unicode_rsplit, METH_VARARGS | METH_KEYWORDS, rsplit__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013092 {"join", (PyCFunction) unicode_join, METH_O, join__doc__},
13093 {"capitalize", (PyCFunction) unicode_capitalize, METH_NOARGS, capitalize__doc__},
Benjamin Petersond5890c82012-01-14 13:23:30 -050013094 {"casefold", (PyCFunction) unicode_casefold, METH_NOARGS, casefold__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013095 {"title", (PyCFunction) unicode_title, METH_NOARGS, title__doc__},
13096 {"center", (PyCFunction) unicode_center, METH_VARARGS, center__doc__},
13097 {"count", (PyCFunction) unicode_count, METH_VARARGS, count__doc__},
13098 {"expandtabs", (PyCFunction) unicode_expandtabs, METH_VARARGS, expandtabs__doc__},
13099 {"find", (PyCFunction) unicode_find, METH_VARARGS, find__doc__},
Thomas Wouters477c8d52006-05-27 19:21:47 +000013100 {"partition", (PyCFunction) unicode_partition, METH_O, partition__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013101 {"index", (PyCFunction) unicode_index, METH_VARARGS, index__doc__},
13102 {"ljust", (PyCFunction) unicode_ljust, METH_VARARGS, ljust__doc__},
13103 {"lower", (PyCFunction) unicode_lower, METH_NOARGS, lower__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000013104 {"lstrip", (PyCFunction) unicode_lstrip, METH_VARARGS, lstrip__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013105 {"rfind", (PyCFunction) unicode_rfind, METH_VARARGS, rfind__doc__},
13106 {"rindex", (PyCFunction) unicode_rindex, METH_VARARGS, rindex__doc__},
13107 {"rjust", (PyCFunction) unicode_rjust, METH_VARARGS, rjust__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000013108 {"rstrip", (PyCFunction) unicode_rstrip, METH_VARARGS, rstrip__doc__},
Thomas Wouters477c8d52006-05-27 19:21:47 +000013109 {"rpartition", (PyCFunction) unicode_rpartition, METH_O, rpartition__doc__},
Mark Dickinson0d5f6ad2011-09-24 09:14:39 +010013110 {"splitlines", (PyCFunction) unicode_splitlines, METH_VARARGS | METH_KEYWORDS, splitlines__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +000013111 {"strip", (PyCFunction) unicode_strip, METH_VARARGS, strip__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013112 {"swapcase", (PyCFunction) unicode_swapcase, METH_NOARGS, swapcase__doc__},
13113 {"translate", (PyCFunction) unicode_translate, METH_O, translate__doc__},
13114 {"upper", (PyCFunction) unicode_upper, METH_NOARGS, upper__doc__},
13115 {"startswith", (PyCFunction) unicode_startswith, METH_VARARGS, startswith__doc__},
13116 {"endswith", (PyCFunction) unicode_endswith, METH_VARARGS, endswith__doc__},
13117 {"islower", (PyCFunction) unicode_islower, METH_NOARGS, islower__doc__},
13118 {"isupper", (PyCFunction) unicode_isupper, METH_NOARGS, isupper__doc__},
13119 {"istitle", (PyCFunction) unicode_istitle, METH_NOARGS, istitle__doc__},
13120 {"isspace", (PyCFunction) unicode_isspace, METH_NOARGS, isspace__doc__},
13121 {"isdecimal", (PyCFunction) unicode_isdecimal, METH_NOARGS, isdecimal__doc__},
13122 {"isdigit", (PyCFunction) unicode_isdigit, METH_NOARGS, isdigit__doc__},
13123 {"isnumeric", (PyCFunction) unicode_isnumeric, METH_NOARGS, isnumeric__doc__},
13124 {"isalpha", (PyCFunction) unicode_isalpha, METH_NOARGS, isalpha__doc__},
13125 {"isalnum", (PyCFunction) unicode_isalnum, METH_NOARGS, isalnum__doc__},
Martin v. Löwis47383402007-08-15 07:32:56 +000013126 {"isidentifier", (PyCFunction) unicode_isidentifier, METH_NOARGS, isidentifier__doc__},
Georg Brandl559e5d72008-06-11 18:37:52 +000013127 {"isprintable", (PyCFunction) unicode_isprintable, METH_NOARGS, isprintable__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +000013128 {"zfill", (PyCFunction) unicode_zfill, METH_VARARGS, zfill__doc__},
Eric Smith9cd1e092007-08-31 18:39:38 +000013129 {"format", (PyCFunction) do_string_format, METH_VARARGS | METH_KEYWORDS, format__doc__},
Eric Smith27bbca62010-11-04 17:06:58 +000013130 {"format_map", (PyCFunction) do_string_format_map, METH_O, format_map__doc__},
Eric Smith4a7d76d2008-05-30 18:10:19 +000013131 {"__format__", (PyCFunction) unicode__format__, METH_VARARGS, p_format__doc__},
Georg Brandlceee0772007-11-27 23:48:05 +000013132 {"maketrans", (PyCFunction) unicode_maketrans,
13133 METH_VARARGS | METH_STATIC, maketrans__doc__},
Georg Brandlc28e1fa2008-06-10 19:20:26 +000013134 {"__sizeof__", (PyCFunction) unicode__sizeof__, METH_NOARGS, sizeof__doc__},
Walter Dörwald068325e2002-04-15 13:36:47 +000013135#if 0
Alexander Belopolsky942af5a2010-12-04 03:38:46 +000013136 /* These methods are just used for debugging the implementation. */
Alexander Belopolsky942af5a2010-12-04 03:38:46 +000013137 {"_decimal2ascii", (PyCFunction) unicode__decimal2ascii, METH_NOARGS},
Guido van Rossumd57fd912000-03-10 22:53:23 +000013138#endif
13139
Benjamin Peterson14339b62009-01-31 16:36:08 +000013140 {"__getnewargs__", (PyCFunction)unicode_getnewargs, METH_NOARGS},
Guido van Rossumd57fd912000-03-10 22:53:23 +000013141 {NULL, NULL}
13142};
13143
Neil Schemenauerce30bc92002-11-18 16:10:18 +000013144static PyObject *
13145unicode_mod(PyObject *v, PyObject *w)
13146{
Brian Curtindfc80e32011-08-10 20:28:54 -050013147 if (!PyUnicode_Check(v))
13148 Py_RETURN_NOTIMPLEMENTED;
Benjamin Peterson29060642009-01-31 22:14:21 +000013149 return PyUnicode_Format(v, w);
Neil Schemenauerce30bc92002-11-18 16:10:18 +000013150}
13151
13152static PyNumberMethods unicode_as_number = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000013153 0, /*nb_add*/
13154 0, /*nb_subtract*/
13155 0, /*nb_multiply*/
13156 unicode_mod, /*nb_remainder*/
Neil Schemenauerce30bc92002-11-18 16:10:18 +000013157};
13158
Guido van Rossumd57fd912000-03-10 22:53:23 +000013159static PySequenceMethods unicode_as_sequence = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000013160 (lenfunc) unicode_length, /* sq_length */
13161 PyUnicode_Concat, /* sq_concat */
13162 (ssizeargfunc) unicode_repeat, /* sq_repeat */
13163 (ssizeargfunc) unicode_getitem, /* sq_item */
13164 0, /* sq_slice */
13165 0, /* sq_ass_item */
13166 0, /* sq_ass_slice */
13167 PyUnicode_Contains, /* sq_contains */
Guido van Rossumd57fd912000-03-10 22:53:23 +000013168};
13169
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013170static PyObject*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013171unicode_subscript(PyObject* self, PyObject* item)
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013172{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013173 if (PyUnicode_READY(self) == -1)
13174 return NULL;
13175
Thomas Wouters00ee7ba2006-08-21 19:07:27 +000013176 if (PyIndex_Check(item)) {
13177 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013178 if (i == -1 && PyErr_Occurred())
13179 return NULL;
13180 if (i < 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013181 i += PyUnicode_GET_LENGTH(self);
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013182 return unicode_getitem(self, i);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013183 } else if (PySlice_Check(item)) {
Martin v. Löwis18e16552006-02-15 17:27:45 +000013184 Py_ssize_t start, stop, step, slicelength, cur, i;
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013185 PyObject *result;
13186 void *src_data, *dest_data;
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013187 int src_kind, dest_kind;
Victor Stinnerc80d6d22011-10-05 14:13:28 +020013188 Py_UCS4 ch, max_char, kind_limit;
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013189
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013190 if (PySlice_GetIndicesEx(item, PyUnicode_GET_LENGTH(self),
Benjamin Peterson29060642009-01-31 22:14:21 +000013191 &start, &stop, &step, &slicelength) < 0) {
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013192 return NULL;
13193 }
13194
13195 if (slicelength <= 0) {
Serhiy Storchaka678db842013-01-26 12:16:36 +020013196 _Py_RETURN_UNICODE_EMPTY();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013197 } else if (start == 0 && step == 1 &&
Victor Stinnerc4b49542011-12-11 22:44:26 +010013198 slicelength == PyUnicode_GET_LENGTH(self)) {
13199 return unicode_result_unchanged(self);
Thomas Woutersed03b412007-08-28 21:37:11 +000013200 } else if (step == 1) {
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013201 return PyUnicode_Substring(self,
Victor Stinner12bab6d2011-10-01 01:53:49 +020013202 start, start + slicelength);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013203 }
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013204 /* General case */
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013205 src_kind = PyUnicode_KIND(self);
13206 src_data = PyUnicode_DATA(self);
Victor Stinner55c99112011-10-13 01:17:06 +020013207 if (!PyUnicode_IS_ASCII(self)) {
13208 kind_limit = kind_maxchar_limit(src_kind);
13209 max_char = 0;
13210 for (cur = start, i = 0; i < slicelength; cur += step, i++) {
13211 ch = PyUnicode_READ(src_kind, src_data, cur);
13212 if (ch > max_char) {
13213 max_char = ch;
13214 if (max_char >= kind_limit)
13215 break;
13216 }
Victor Stinnerc80d6d22011-10-05 14:13:28 +020013217 }
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013218 }
Victor Stinner55c99112011-10-13 01:17:06 +020013219 else
13220 max_char = 127;
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013221 result = PyUnicode_New(slicelength, max_char);
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013222 if (result == NULL)
13223 return NULL;
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013224 dest_kind = PyUnicode_KIND(result);
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013225 dest_data = PyUnicode_DATA(result);
13226
13227 for (cur = start, i = 0; i < slicelength; cur += step, i++) {
Antoine Pitrou875f29b2011-10-04 20:00:49 +020013228 Py_UCS4 ch = PyUnicode_READ(src_kind, src_data, cur);
13229 PyUnicode_WRITE(dest_kind, dest_data, i, ch);
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013230 }
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020013231 assert(_PyUnicode_CheckConsistency(result, 1));
Antoine Pitrou7aec4012011-10-04 19:08:01 +020013232 return result;
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013233 } else {
13234 PyErr_SetString(PyExc_TypeError, "string indices must be integers");
13235 return NULL;
13236 }
13237}
13238
13239static PyMappingMethods unicode_as_mapping = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000013240 (lenfunc)unicode_length, /* mp_length */
13241 (binaryfunc)unicode_subscript, /* mp_subscript */
13242 (objobjargproc)0, /* mp_ass_subscript */
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +000013243};
13244
Guido van Rossumd57fd912000-03-10 22:53:23 +000013245
Guido van Rossumd57fd912000-03-10 22:53:23 +000013246/* Helpers for PyUnicode_Format() */
13247
13248static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +000013249getnextarg(PyObject *args, Py_ssize_t arglen, Py_ssize_t *p_argidx)
Guido van Rossumd57fd912000-03-10 22:53:23 +000013250{
Martin v. Löwis18e16552006-02-15 17:27:45 +000013251 Py_ssize_t argidx = *p_argidx;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013252 if (argidx < arglen) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013253 (*p_argidx)++;
13254 if (arglen < 0)
13255 return args;
13256 else
13257 return PyTuple_GetItem(args, argidx);
Guido van Rossumd57fd912000-03-10 22:53:23 +000013258 }
13259 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000013260 "not enough arguments for format string");
Guido van Rossumd57fd912000-03-10 22:53:23 +000013261 return NULL;
13262}
13263
Mark Dickinsonf489caf2009-05-01 11:42:00 +000013264/* Returns a new reference to a PyUnicode object, or NULL on failure. */
Guido van Rossumd57fd912000-03-10 22:53:23 +000013265
Victor Stinnerd3f08822012-05-29 12:57:52 +020013266static int
13267formatfloat(PyObject *v, int flags, int prec, int type,
13268 PyObject **p_output, _PyUnicodeWriter *writer)
Guido van Rossumd57fd912000-03-10 22:53:23 +000013269{
Mark Dickinsonf489caf2009-05-01 11:42:00 +000013270 char *p;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013271 double x;
Victor Stinnerd3f08822012-05-29 12:57:52 +020013272 Py_ssize_t len;
Tim Petersced69f82003-09-16 20:30:58 +000013273
Guido van Rossumd57fd912000-03-10 22:53:23 +000013274 x = PyFloat_AsDouble(v);
13275 if (x == -1.0 && PyErr_Occurred())
Victor Stinnerd3f08822012-05-29 12:57:52 +020013276 return -1;
Mark Dickinsonf489caf2009-05-01 11:42:00 +000013277
Guido van Rossumd57fd912000-03-10 22:53:23 +000013278 if (prec < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000013279 prec = 6;
Eric Smith0923d1d2009-04-16 20:16:10 +000013280
Eric Smith0923d1d2009-04-16 20:16:10 +000013281 p = PyOS_double_to_string(x, type, prec,
13282 (flags & F_ALT) ? Py_DTSF_ALT : 0, NULL);
Mark Dickinsonf489caf2009-05-01 11:42:00 +000013283 if (p == NULL)
Victor Stinnerd3f08822012-05-29 12:57:52 +020013284 return -1;
13285 len = strlen(p);
13286 if (writer) {
Christian Heimesf4f99392012-09-10 11:48:41 +020013287 if (_PyUnicodeWriter_Prepare(writer, len, 127) == -1) {
13288 PyMem_Free(p);
Victor Stinnerd3f08822012-05-29 12:57:52 +020013289 return -1;
Christian Heimesf4f99392012-09-10 11:48:41 +020013290 }
Victor Stinner184252a2012-06-16 02:57:41 +020013291 unicode_write_cstr(writer->buffer, writer->pos, p, len);
Victor Stinnerd3f08822012-05-29 12:57:52 +020013292 writer->pos += len;
13293 }
13294 else
13295 *p_output = _PyUnicode_FromASCII(p, len);
Eric Smith0923d1d2009-04-16 20:16:10 +000013296 PyMem_Free(p);
Victor Stinnerd3f08822012-05-29 12:57:52 +020013297 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013298}
13299
Victor Stinnerd0880d52012-04-27 23:40:13 +020013300/* formatlong() emulates the format codes d, u, o, x and X, and
13301 * the F_ALT flag, for Python's long (unbounded) ints. It's not used for
13302 * Python's regular ints.
13303 * Return value: a new PyUnicodeObject*, or NULL if error.
13304 * The output string is of the form
13305 * "-"? ("0x" | "0X")? digit+
13306 * "0x"/"0X" are present only for x and X conversions, with F_ALT
13307 * set in flags. The case of hex digits will be correct,
13308 * There will be at least prec digits, zero-filled on the left if
13309 * necessary to get that many.
13310 * val object to be converted
13311 * flags bitmask of format flags; only F_ALT is looked at
13312 * prec minimum number of digits; 0-fill on left if needed
13313 * type a character in [duoxX]; u acts the same as d
13314 *
13315 * CAUTION: o, x and X conversions on regular ints can never
13316 * produce a '-' sign, but can for Python's unbounded ints.
13317 */
Tim Peters38fd5b62000-09-21 05:43:11 +000013318static PyObject*
13319formatlong(PyObject *val, int flags, int prec, int type)
13320{
Victor Stinnerd0880d52012-04-27 23:40:13 +020013321 PyObject *result = NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013322 char *buf;
Victor Stinnerd0880d52012-04-27 23:40:13 +020013323 Py_ssize_t i;
13324 int sign; /* 1 if '-', else 0 */
13325 int len; /* number of characters */
13326 Py_ssize_t llen;
13327 int numdigits; /* len == numnondigits + numdigits */
13328 int numnondigits = 0;
Tim Peters38fd5b62000-09-21 05:43:11 +000013329
Victor Stinnerd0880d52012-04-27 23:40:13 +020013330 /* Avoid exceeding SSIZE_T_MAX */
13331 if (prec > INT_MAX-3) {
13332 PyErr_SetString(PyExc_OverflowError,
13333 "precision too large");
Benjamin Peterson14339b62009-01-31 16:36:08 +000013334 return NULL;
Victor Stinnerd0880d52012-04-27 23:40:13 +020013335 }
13336
13337 assert(PyLong_Check(val));
13338
13339 switch (type) {
13340 case 'd':
13341 case 'u':
13342 /* Special-case boolean: we want 0/1 */
Victor Stinnerb11d91d2012-04-28 00:25:34 +020013343 if (PyBool_Check(val))
13344 result = PyNumber_ToBase(val, 10);
13345 else
13346 result = Py_TYPE(val)->tp_str(val);
Victor Stinnerd0880d52012-04-27 23:40:13 +020013347 break;
13348 case 'o':
13349 numnondigits = 2;
13350 result = PyNumber_ToBase(val, 8);
13351 break;
13352 case 'x':
13353 case 'X':
13354 numnondigits = 2;
13355 result = PyNumber_ToBase(val, 16);
13356 break;
13357 default:
13358 assert(!"'type' not in [duoxX]");
13359 }
13360 if (!result)
13361 return NULL;
13362
13363 assert(unicode_modifiable(result));
13364 assert(PyUnicode_IS_READY(result));
13365 assert(PyUnicode_IS_ASCII(result));
13366
13367 /* To modify the string in-place, there can only be one reference. */
13368 if (Py_REFCNT(result) != 1) {
13369 PyErr_BadInternalCall();
13370 return NULL;
13371 }
13372 buf = PyUnicode_DATA(result);
13373 llen = PyUnicode_GET_LENGTH(result);
13374 if (llen > INT_MAX) {
13375 PyErr_SetString(PyExc_ValueError,
13376 "string too large in _PyBytes_FormatLong");
13377 return NULL;
13378 }
13379 len = (int)llen;
13380 sign = buf[0] == '-';
13381 numnondigits += sign;
13382 numdigits = len - numnondigits;
13383 assert(numdigits > 0);
13384
13385 /* Get rid of base marker unless F_ALT */
13386 if (((flags & F_ALT) == 0 &&
13387 (type == 'o' || type == 'x' || type == 'X'))) {
13388 assert(buf[sign] == '0');
13389 assert(buf[sign+1] == 'x' || buf[sign+1] == 'X' ||
13390 buf[sign+1] == 'o');
13391 numnondigits -= 2;
13392 buf += 2;
13393 len -= 2;
13394 if (sign)
13395 buf[0] = '-';
13396 assert(len == numnondigits + numdigits);
13397 assert(numdigits > 0);
13398 }
13399
13400 /* Fill with leading zeroes to meet minimum width. */
13401 if (prec > numdigits) {
13402 PyObject *r1 = PyBytes_FromStringAndSize(NULL,
13403 numnondigits + prec);
13404 char *b1;
13405 if (!r1) {
13406 Py_DECREF(result);
13407 return NULL;
13408 }
13409 b1 = PyBytes_AS_STRING(r1);
13410 for (i = 0; i < numnondigits; ++i)
13411 *b1++ = *buf++;
13412 for (i = 0; i < prec - numdigits; i++)
13413 *b1++ = '0';
13414 for (i = 0; i < numdigits; i++)
13415 *b1++ = *buf++;
13416 *b1 = '\0';
13417 Py_DECREF(result);
13418 result = r1;
13419 buf = PyBytes_AS_STRING(result);
13420 len = numnondigits + prec;
13421 }
13422
13423 /* Fix up case for hex conversions. */
13424 if (type == 'X') {
13425 /* Need to convert all lower case letters to upper case.
13426 and need to convert 0x to 0X (and -0x to -0X). */
13427 for (i = 0; i < len; i++)
13428 if (buf[i] >= 'a' && buf[i] <= 'x')
13429 buf[i] -= 'a'-'A';
13430 }
13431 if (!PyUnicode_Check(result) || len != PyUnicode_GET_LENGTH(result)) {
13432 PyObject *unicode;
Victor Stinnerd3f08822012-05-29 12:57:52 +020013433 unicode = _PyUnicode_FromASCII(buf, len);
Victor Stinnerd0880d52012-04-27 23:40:13 +020013434 Py_DECREF(result);
13435 result = unicode;
13436 }
Benjamin Peterson14339b62009-01-31 16:36:08 +000013437 return result;
Tim Peters38fd5b62000-09-21 05:43:11 +000013438}
13439
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013440static Py_UCS4
13441formatchar(PyObject *v)
Guido van Rossumd57fd912000-03-10 22:53:23 +000013442{
Amaury Forgeot d'Arca4db6862008-07-04 21:26:43 +000013443 /* presume that the buffer is at least 3 characters long */
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +000013444 if (PyUnicode_Check(v)) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013445 if (PyUnicode_GET_LENGTH(v) == 1) {
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013446 return PyUnicode_READ_CHAR(v, 0);
Benjamin Peterson29060642009-01-31 22:14:21 +000013447 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013448 goto onError;
13449 }
13450 else {
13451 /* Integer input truncated to a character */
13452 long x;
13453 x = PyLong_AsLong(v);
13454 if (x == -1 && PyErr_Occurred())
13455 goto onError;
13456
Victor Stinner8faf8212011-12-08 22:14:11 +010013457 if (x < 0 || x > MAX_UNICODE) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013458 PyErr_SetString(PyExc_OverflowError,
13459 "%c arg not in range(0x110000)");
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013460 return (Py_UCS4) -1;
Benjamin Peterson29060642009-01-31 22:14:21 +000013461 }
13462
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013463 return (Py_UCS4) x;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013464 }
Amaury Forgeot d'Arca4db6862008-07-04 21:26:43 +000013465
Benjamin Peterson29060642009-01-31 22:14:21 +000013466 onError:
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +000013467 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +000013468 "%c requires int or char");
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013469 return (Py_UCS4) -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013470}
13471
Alexander Belopolsky40018472011-02-26 01:02:56 +000013472PyObject *
13473PyUnicode_Format(PyObject *format, PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +000013474{
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013475 Py_ssize_t fmtcnt, fmtpos, arglen, argidx;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013476 int args_owned = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013477 PyObject *dict = NULL;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013478 PyObject *temp = NULL;
13479 PyObject *second = NULL;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013480 PyObject *uformat;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013481 void *fmt;
13482 enum PyUnicode_Kind kind, fmtkind;
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013483 _PyUnicodeWriter writer;
Victor Stinneree4544c2012-05-09 22:24:08 +020013484 Py_ssize_t sublen;
13485 Py_UCS4 maxchar;
Tim Petersced69f82003-09-16 20:30:58 +000013486
Guido van Rossumd57fd912000-03-10 22:53:23 +000013487 if (format == NULL || args == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013488 PyErr_BadInternalCall();
13489 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013490 }
Victor Stinner9db1a8b2011-10-23 20:04:37 +020013491 uformat = PyUnicode_FromObject(format);
Benjamin Peterson22a29702012-01-02 09:00:30 -060013492 if (uformat == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +000013493 return NULL;
Victor Stinner19294072012-10-05 00:09:33 +020013494 if (PyUnicode_READY(uformat) == -1) {
Benjamin Peterson22a29702012-01-02 09:00:30 -060013495 Py_DECREF(uformat);
Victor Stinner19294072012-10-05 00:09:33 +020013496 return NULL;
13497 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013498
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013499 fmt = PyUnicode_DATA(uformat);
13500 fmtkind = PyUnicode_KIND(uformat);
13501 fmtcnt = PyUnicode_GET_LENGTH(uformat);
13502 fmtpos = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013503
Victor Stinnerd3f08822012-05-29 12:57:52 +020013504 _PyUnicodeWriter_Init(&writer, fmtcnt + 100);
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013505
Guido van Rossumd57fd912000-03-10 22:53:23 +000013506 if (PyTuple_Check(args)) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013507 arglen = PyTuple_Size(args);
13508 argidx = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013509 }
13510 else {
Benjamin Peterson29060642009-01-31 22:14:21 +000013511 arglen = -1;
13512 argidx = -2;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013513 }
Benjamin Peterson28a6cfa2012-08-28 17:55:35 -040013514 if (PyMapping_Check(args) && !PyTuple_Check(args) && !PyUnicode_Check(args))
Benjamin Peterson29060642009-01-31 22:14:21 +000013515 dict = args;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013516
13517 while (--fmtcnt >= 0) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013518 if (PyUnicode_READ(fmtkind, fmt, fmtpos) != '%') {
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013519 Py_ssize_t nonfmtpos;
13520 nonfmtpos = fmtpos++;
13521 while (fmtcnt >= 0 &&
13522 PyUnicode_READ(fmtkind, fmt, fmtpos) != '%') {
13523 fmtpos++;
13524 fmtcnt--;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013525 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013526 if (fmtcnt < 0)
13527 fmtpos--;
Victor Stinneree4544c2012-05-09 22:24:08 +020013528 sublen = fmtpos - nonfmtpos;
13529 maxchar = _PyUnicode_FindMaxChar(uformat,
13530 nonfmtpos, nonfmtpos + sublen);
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013531 if (_PyUnicodeWriter_Prepare(&writer, sublen, maxchar) == -1)
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013532 goto onError;
Victor Stinneree4544c2012-05-09 22:24:08 +020013533
Victor Stinnerd3f08822012-05-29 12:57:52 +020013534 _PyUnicode_FastCopyCharacters(writer.buffer, writer.pos,
13535 uformat, nonfmtpos, sublen);
Victor Stinneree4544c2012-05-09 22:24:08 +020013536 writer.pos += sublen;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013537 }
13538 else {
Benjamin Peterson29060642009-01-31 22:14:21 +000013539 /* Got a format specifier */
13540 int flags = 0;
13541 Py_ssize_t width = -1;
13542 int prec = -1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013543 Py_UCS4 c = '\0';
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013544 Py_UCS4 fill;
13545 int sign;
13546 Py_UCS4 signchar;
Benjamin Peterson29060642009-01-31 22:14:21 +000013547 int isnumok;
13548 PyObject *v = NULL;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013549 void *pbuf = NULL;
13550 Py_ssize_t pindex, len;
Victor Stinneree4544c2012-05-09 22:24:08 +020013551 Py_UCS4 bufmaxchar;
13552 Py_ssize_t buflen;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013553
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013554 fmtpos++;
Victor Stinner438106b2012-05-02 00:41:57 +020013555 c = PyUnicode_READ(fmtkind, fmt, fmtpos);
13556 if (c == '(') {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013557 Py_ssize_t keystart;
Benjamin Peterson29060642009-01-31 22:14:21 +000013558 Py_ssize_t keylen;
13559 PyObject *key;
13560 int pcount = 1;
Christian Heimesa612dc02008-02-24 13:08:18 +000013561
Benjamin Peterson29060642009-01-31 22:14:21 +000013562 if (dict == NULL) {
13563 PyErr_SetString(PyExc_TypeError,
13564 "format requires a mapping");
13565 goto onError;
13566 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013567 ++fmtpos;
Benjamin Peterson29060642009-01-31 22:14:21 +000013568 --fmtcnt;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013569 keystart = fmtpos;
Benjamin Peterson29060642009-01-31 22:14:21 +000013570 /* Skip over balanced parentheses */
13571 while (pcount > 0 && --fmtcnt >= 0) {
Victor Stinnerbff7c962012-05-03 01:44:59 +020013572 c = PyUnicode_READ(fmtkind, fmt, fmtpos);
13573 if (c == ')')
Benjamin Peterson29060642009-01-31 22:14:21 +000013574 --pcount;
Victor Stinnerbff7c962012-05-03 01:44:59 +020013575 else if (c == '(')
Benjamin Peterson29060642009-01-31 22:14:21 +000013576 ++pcount;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013577 fmtpos++;
Benjamin Peterson29060642009-01-31 22:14:21 +000013578 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013579 keylen = fmtpos - keystart - 1;
Benjamin Peterson29060642009-01-31 22:14:21 +000013580 if (fmtcnt < 0 || pcount > 0) {
13581 PyErr_SetString(PyExc_ValueError,
13582 "incomplete format key");
13583 goto onError;
13584 }
Victor Stinner7931d9a2011-11-04 00:22:48 +010013585 key = PyUnicode_Substring(uformat,
Victor Stinner12bab6d2011-10-01 01:53:49 +020013586 keystart, keystart + keylen);
Benjamin Peterson29060642009-01-31 22:14:21 +000013587 if (key == NULL)
13588 goto onError;
13589 if (args_owned) {
13590 Py_DECREF(args);
13591 args_owned = 0;
13592 }
13593 args = PyObject_GetItem(dict, key);
13594 Py_DECREF(key);
13595 if (args == NULL) {
13596 goto onError;
13597 }
13598 args_owned = 1;
13599 arglen = -1;
13600 argidx = -2;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013601 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013602 while (--fmtcnt >= 0) {
Victor Stinner438106b2012-05-02 00:41:57 +020013603 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
13604 switch (c) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013605 case '-': flags |= F_LJUST; continue;
13606 case '+': flags |= F_SIGN; continue;
13607 case ' ': flags |= F_BLANK; continue;
13608 case '#': flags |= F_ALT; continue;
13609 case '0': flags |= F_ZERO; continue;
13610 }
13611 break;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013612 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013613 if (c == '*') {
13614 v = getnextarg(args, arglen, &argidx);
13615 if (v == NULL)
13616 goto onError;
13617 if (!PyLong_Check(v)) {
13618 PyErr_SetString(PyExc_TypeError,
13619 "* wants int");
13620 goto onError;
13621 }
Serhiy Storchaka441d30f2013-01-19 12:26:26 +020013622 width = PyLong_AsSsize_t(v);
Benjamin Peterson29060642009-01-31 22:14:21 +000013623 if (width == -1 && PyErr_Occurred())
13624 goto onError;
13625 if (width < 0) {
13626 flags |= F_LJUST;
13627 width = -width;
13628 }
13629 if (--fmtcnt >= 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013630 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013631 }
13632 else if (c >= '0' && c <= '9') {
13633 width = c - '0';
13634 while (--fmtcnt >= 0) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013635 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013636 if (c < '0' || c > '9')
13637 break;
Martin v. Löwisb05c0732012-05-15 13:45:49 +020013638 /* Since c is unsigned, the RHS would end up as unsigned,
13639 mixing signed and unsigned comparison. Since c is between
13640 '0' and '9', casting to int is safe. */
13641 if (width > (PY_SSIZE_T_MAX - ((int)c - '0')) / 10) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013642 PyErr_SetString(PyExc_ValueError,
13643 "width too big");
Benjamin Peterson14339b62009-01-31 16:36:08 +000013644 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +000013645 }
13646 width = width*10 + (c - '0');
13647 }
13648 }
13649 if (c == '.') {
13650 prec = 0;
13651 if (--fmtcnt >= 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013652 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013653 if (c == '*') {
13654 v = getnextarg(args, arglen, &argidx);
13655 if (v == NULL)
13656 goto onError;
13657 if (!PyLong_Check(v)) {
13658 PyErr_SetString(PyExc_TypeError,
13659 "* wants int");
13660 goto onError;
13661 }
Serhiy Storchaka441d30f2013-01-19 12:26:26 +020013662 prec = _PyLong_AsInt(v);
Benjamin Peterson29060642009-01-31 22:14:21 +000013663 if (prec == -1 && PyErr_Occurred())
13664 goto onError;
13665 if (prec < 0)
13666 prec = 0;
13667 if (--fmtcnt >= 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013668 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013669 }
13670 else if (c >= '0' && c <= '9') {
13671 prec = c - '0';
13672 while (--fmtcnt >= 0) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013673 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013674 if (c < '0' || c > '9')
13675 break;
Martin v. Löwisb05c0732012-05-15 13:45:49 +020013676 if (prec > (INT_MAX - ((int)c - '0')) / 10) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013677 PyErr_SetString(PyExc_ValueError,
13678 "prec too big");
13679 goto onError;
13680 }
13681 prec = prec*10 + (c - '0');
13682 }
13683 }
13684 } /* prec */
13685 if (fmtcnt >= 0) {
13686 if (c == 'h' || c == 'l' || c == 'L') {
13687 if (--fmtcnt >= 0)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013688 c = PyUnicode_READ(fmtkind, fmt, fmtpos++);
Benjamin Peterson29060642009-01-31 22:14:21 +000013689 }
13690 }
13691 if (fmtcnt < 0) {
13692 PyErr_SetString(PyExc_ValueError,
13693 "incomplete format");
13694 goto onError;
13695 }
Victor Stinnerd3f08822012-05-29 12:57:52 +020013696 if (fmtcnt == 0)
Victor Stinnerd7b7c742012-06-04 22:52:12 +020013697 writer.overallocate = 0;
Victor Stinneraff3cc62012-04-30 05:19:21 +020013698
13699 if (c == '%') {
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013700 if (_PyUnicodeWriter_Prepare(&writer, 1, '%') == -1)
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013701 goto onError;
Victor Stinneree4544c2012-05-09 22:24:08 +020013702 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, '%');
13703 writer.pos += 1;
Victor Stinneraff3cc62012-04-30 05:19:21 +020013704 continue;
Benjamin Peterson29060642009-01-31 22:14:21 +000013705 }
Victor Stinneraff3cc62012-04-30 05:19:21 +020013706
Victor Stinneraff3cc62012-04-30 05:19:21 +020013707 v = getnextarg(args, arglen, &argidx);
13708 if (v == NULL)
13709 goto onError;
13710
Benjamin Peterson29060642009-01-31 22:14:21 +000013711 sign = 0;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013712 signchar = '\0';
Benjamin Peterson29060642009-01-31 22:14:21 +000013713 fill = ' ';
13714 switch (c) {
13715
Benjamin Peterson29060642009-01-31 22:14:21 +000013716 case 's':
13717 case 'r':
13718 case 'a':
Victor Stinnerd3f08822012-05-29 12:57:52 +020013719 if (PyLong_CheckExact(v) && width == -1 && prec == -1) {
13720 /* Fast path */
13721 if (_PyLong_FormatWriter(&writer, v, 10, flags & F_ALT) == -1)
13722 goto onError;
13723 goto nextarg;
13724 }
13725
Victor Stinner808fc0a2010-03-22 12:50:40 +000013726 if (PyUnicode_CheckExact(v) && c == 's') {
Benjamin Peterson29060642009-01-31 22:14:21 +000013727 temp = v;
13728 Py_INCREF(temp);
Benjamin Peterson14339b62009-01-31 16:36:08 +000013729 }
13730 else {
Benjamin Peterson29060642009-01-31 22:14:21 +000013731 if (c == 's')
13732 temp = PyObject_Str(v);
13733 else if (c == 'r')
13734 temp = PyObject_Repr(v);
13735 else
13736 temp = PyObject_ASCII(v);
Benjamin Peterson29060642009-01-31 22:14:21 +000013737 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013738 break;
13739
13740 case 'i':
13741 case 'd':
13742 case 'u':
13743 case 'o':
13744 case 'x':
13745 case 'X':
Victor Stinnerd3f08822012-05-29 12:57:52 +020013746 if (PyLong_CheckExact(v)
13747 && width == -1 && prec == -1
13748 && !(flags & (F_SIGN | F_BLANK)))
13749 {
13750 /* Fast path */
13751 switch(c)
13752 {
13753 case 'd':
13754 case 'i':
13755 case 'u':
13756 if (_PyLong_FormatWriter(&writer, v, 10, flags & F_ALT) == -1)
13757 goto onError;
13758 goto nextarg;
13759 case 'x':
13760 if (_PyLong_FormatWriter(&writer, v, 16, flags & F_ALT) == -1)
13761 goto onError;
13762 goto nextarg;
13763 case 'o':
13764 if (_PyLong_FormatWriter(&writer, v, 8, flags & F_ALT) == -1)
13765 goto onError;
13766 goto nextarg;
13767 default:
13768 break;
13769 }
13770 }
13771
Benjamin Peterson29060642009-01-31 22:14:21 +000013772 isnumok = 0;
13773 if (PyNumber_Check(v)) {
13774 PyObject *iobj=NULL;
13775
13776 if (PyLong_Check(v)) {
13777 iobj = v;
13778 Py_INCREF(iobj);
13779 }
13780 else {
13781 iobj = PyNumber_Long(v);
13782 }
13783 if (iobj!=NULL) {
13784 if (PyLong_Check(iobj)) {
13785 isnumok = 1;
Victor Stinneraff3cc62012-04-30 05:19:21 +020013786 sign = 1;
Senthil Kumaran9ebe08d2011-07-03 21:03:16 -070013787 temp = formatlong(iobj, flags, prec, (c == 'i'? 'd': c));
Benjamin Peterson29060642009-01-31 22:14:21 +000013788 Py_DECREF(iobj);
Benjamin Peterson29060642009-01-31 22:14:21 +000013789 }
13790 else {
13791 Py_DECREF(iobj);
13792 }
13793 }
13794 }
13795 if (!isnumok) {
13796 PyErr_Format(PyExc_TypeError,
13797 "%%%c format: a number is required, "
13798 "not %.200s", (char)c, Py_TYPE(v)->tp_name);
13799 goto onError;
13800 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013801 if (flags & F_ZERO)
Benjamin Peterson29060642009-01-31 22:14:21 +000013802 fill = '0';
13803 break;
13804
13805 case 'e':
13806 case 'E':
13807 case 'f':
13808 case 'F':
13809 case 'g':
13810 case 'G':
Victor Stinnerd3f08822012-05-29 12:57:52 +020013811 if (width == -1 && prec == -1
13812 && !(flags & (F_SIGN | F_BLANK)))
13813 {
13814 /* Fast path */
13815 if (formatfloat(v, flags, prec, c, NULL, &writer) == -1)
13816 goto onError;
13817 goto nextarg;
13818 }
13819
Benjamin Peterson29060642009-01-31 22:14:21 +000013820 sign = 1;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013821 if (flags & F_ZERO)
Benjamin Peterson29060642009-01-31 22:14:21 +000013822 fill = '0';
Victor Stinnerd3f08822012-05-29 12:57:52 +020013823 if (formatfloat(v, flags, prec, c, &temp, NULL) == -1)
13824 temp = NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +000013825 break;
13826
13827 case 'c':
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013828 {
13829 Py_UCS4 ch = formatchar(v);
13830 if (ch == (Py_UCS4) -1)
Benjamin Peterson29060642009-01-31 22:14:21 +000013831 goto onError;
Victor Stinnerd3f08822012-05-29 12:57:52 +020013832 if (width == -1 && prec == -1) {
13833 /* Fast path */
13834 if (_PyUnicodeWriter_Prepare(&writer, 1, ch) == -1)
13835 goto onError;
13836 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, ch);
13837 writer.pos += 1;
13838 goto nextarg;
13839 }
Victor Stinnerb5c3ea32012-05-02 00:29:36 +020013840 temp = PyUnicode_FromOrdinal(ch);
Benjamin Peterson29060642009-01-31 22:14:21 +000013841 break;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013842 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013843
13844 default:
13845 PyErr_Format(PyExc_ValueError,
13846 "unsupported format character '%c' (0x%x) "
13847 "at index %zd",
13848 (31<=c && c<=126) ? (char)c : '?',
13849 (int)c,
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013850 fmtpos - 1);
Benjamin Peterson29060642009-01-31 22:14:21 +000013851 goto onError;
13852 }
Victor Stinneraff3cc62012-04-30 05:19:21 +020013853 if (temp == NULL)
13854 goto onError;
13855 assert (PyUnicode_Check(temp));
Victor Stinnerd3f08822012-05-29 12:57:52 +020013856
13857 if (width == -1 && prec == -1
13858 && !(flags & (F_SIGN | F_BLANK)))
13859 {
13860 /* Fast path */
13861 if (_PyUnicodeWriter_WriteStr(&writer, temp) == -1)
13862 goto onError;
13863 goto nextarg;
13864 }
13865
Victor Stinneraff3cc62012-04-30 05:19:21 +020013866 if (PyUnicode_READY(temp) == -1) {
13867 Py_CLEAR(temp);
13868 goto onError;
13869 }
13870 kind = PyUnicode_KIND(temp);
13871 pbuf = PyUnicode_DATA(temp);
13872 len = PyUnicode_GET_LENGTH(temp);
13873
13874 if (c == 's' || c == 'r' || c == 'a') {
13875 if (prec >= 0 && len > prec)
13876 len = prec;
13877 }
13878
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013879 /* pbuf is initialized here. */
13880 pindex = 0;
Benjamin Peterson29060642009-01-31 22:14:21 +000013881 if (sign) {
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013882 Py_UCS4 ch = PyUnicode_READ(kind, pbuf, pindex);
13883 if (ch == '-' || ch == '+') {
13884 signchar = ch;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013885 len--;
13886 pindex++;
Benjamin Peterson29060642009-01-31 22:14:21 +000013887 }
13888 else if (flags & F_SIGN)
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013889 signchar = '+';
Benjamin Peterson29060642009-01-31 22:14:21 +000013890 else if (flags & F_BLANK)
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013891 signchar = ' ';
Benjamin Peterson29060642009-01-31 22:14:21 +000013892 else
13893 sign = 0;
13894 }
13895 if (width < len)
13896 width = len;
Victor Stinneree4544c2012-05-09 22:24:08 +020013897
13898 /* Compute the length and maximum character of the
13899 written characters */
13900 bufmaxchar = 127;
13901 if (!(flags & F_LJUST)) {
13902 if (sign) {
13903 if ((width-1) > len)
Benjamin Peterson7e303732013-06-10 09:19:46 -070013904 bufmaxchar = Py_MAX(bufmaxchar, fill);
Victor Stinneree4544c2012-05-09 22:24:08 +020013905 }
13906 else {
13907 if (width > len)
Benjamin Peterson7e303732013-06-10 09:19:46 -070013908 bufmaxchar = Py_MAX(bufmaxchar, fill);
Victor Stinneree4544c2012-05-09 22:24:08 +020013909 }
13910 }
13911 maxchar = _PyUnicode_FindMaxChar(temp, 0, pindex+len);
Benjamin Peterson7e303732013-06-10 09:19:46 -070013912 bufmaxchar = Py_MAX(bufmaxchar, maxchar);
Victor Stinneree4544c2012-05-09 22:24:08 +020013913
13914 buflen = width;
13915 if (sign && len == width)
13916 buflen++;
13917
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013918 if (_PyUnicodeWriter_Prepare(&writer, buflen, bufmaxchar) == -1)
Victor Stinneree4544c2012-05-09 22:24:08 +020013919 goto onError;
13920
13921 /* Write characters */
Benjamin Peterson29060642009-01-31 22:14:21 +000013922 if (sign) {
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013923 if (fill != ' ') {
Victor Stinneree4544c2012-05-09 22:24:08 +020013924 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, signchar);
13925 writer.pos += 1;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013926 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013927 if (width > len)
13928 width--;
13929 }
13930 if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013931 assert(PyUnicode_READ(kind, pbuf, pindex) == '0');
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013932 assert(PyUnicode_READ(kind, pbuf, pindex + 1) == c);
Benjamin Peterson29060642009-01-31 22:14:21 +000013933 if (fill != ' ') {
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013934 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, '0');
13935 PyUnicode_WRITE(writer.kind, writer.data, writer.pos+1, c);
13936 writer.pos += 2;
13937 pindex += 2;
Benjamin Peterson29060642009-01-31 22:14:21 +000013938 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013939 width -= 2;
13940 if (width < 0)
13941 width = 0;
13942 len -= 2;
13943 }
13944 if (width > len && !(flags & F_LJUST)) {
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013945 sublen = width - len;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013946 FILL(writer.kind, writer.data, fill, writer.pos, sublen);
13947 writer.pos += sublen;
Antoine Pitrou978b9d22011-10-07 12:35:48 +020013948 width = len;
Benjamin Peterson29060642009-01-31 22:14:21 +000013949 }
13950 if (fill == ' ') {
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013951 if (sign) {
Victor Stinneree4544c2012-05-09 22:24:08 +020013952 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, signchar);
13953 writer.pos += 1;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013954 }
Benjamin Peterson29060642009-01-31 22:14:21 +000013955 if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020013956 assert(PyUnicode_READ(kind, pbuf, pindex) == '0');
13957 assert(PyUnicode_READ(kind, pbuf, pindex+1) == c);
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013958 PyUnicode_WRITE(writer.kind, writer.data, writer.pos, '0');
13959 PyUnicode_WRITE(writer.kind, writer.data, writer.pos+1, c);
13960 writer.pos += 2;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013961 pindex += 2;
Benjamin Peterson14339b62009-01-31 16:36:08 +000013962 }
13963 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013964
Victor Stinnerc9d369f2012-06-16 02:22:37 +020013965 if (len) {
13966 _PyUnicode_FastCopyCharacters(writer.buffer, writer.pos,
13967 temp, pindex, len);
13968 writer.pos += len;
13969 }
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013970 if (width > len) {
Victor Stinneree4544c2012-05-09 22:24:08 +020013971 sublen = width - len;
Victor Stinnerf2c76aa2012-05-03 13:10:40 +020013972 FILL(writer.kind, writer.data, ' ', writer.pos, sublen);
13973 writer.pos += sublen;
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013974 }
Victor Stinneree4544c2012-05-09 22:24:08 +020013975
Victor Stinnerd3f08822012-05-29 12:57:52 +020013976nextarg:
Benjamin Peterson29060642009-01-31 22:14:21 +000013977 if (dict && (argidx < arglen) && c != '%') {
13978 PyErr_SetString(PyExc_TypeError,
13979 "not all arguments converted during string formatting");
Benjamin Peterson29060642009-01-31 22:14:21 +000013980 goto onError;
13981 }
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013982 Py_CLEAR(temp);
Benjamin Peterson29060642009-01-31 22:14:21 +000013983 } /* '%' */
Guido van Rossumd57fd912000-03-10 22:53:23 +000013984 } /* until end */
13985 if (argidx < arglen && !dict) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013986 PyErr_SetString(PyExc_TypeError,
13987 "not all arguments converted during string formatting");
13988 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +000013989 }
13990
13991 if (args_owned) {
Benjamin Peterson29060642009-01-31 22:14:21 +000013992 Py_DECREF(args);
Guido van Rossumd57fd912000-03-10 22:53:23 +000013993 }
13994 Py_DECREF(uformat);
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020013995 Py_XDECREF(temp);
13996 Py_XDECREF(second);
Victor Stinner3b1a74a2012-05-09 22:25:00 +020013997 return _PyUnicodeWriter_Finish(&writer);
Guido van Rossumd57fd912000-03-10 22:53:23 +000013998
Benjamin Peterson29060642009-01-31 22:14:21 +000013999 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +000014000 Py_DECREF(uformat);
Antoine Pitrou5c0ba362011-10-07 01:54:09 +020014001 Py_XDECREF(temp);
14002 Py_XDECREF(second);
Victor Stinner3b1a74a2012-05-09 22:25:00 +020014003 _PyUnicodeWriter_Dealloc(&writer);
Guido van Rossumd57fd912000-03-10 22:53:23 +000014004 if (args_owned) {
Benjamin Peterson29060642009-01-31 22:14:21 +000014005 Py_DECREF(args);
Guido van Rossumd57fd912000-03-10 22:53:23 +000014006 }
14007 return NULL;
14008}
14009
Jeremy Hylton938ace62002-07-17 16:30:39 +000014010static PyObject *
Guido van Rossume023fe02001-08-30 03:12:59 +000014011unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
14012
Tim Peters6d6c1a32001-08-02 04:15:00 +000014013static PyObject *
14014unicode_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
14015{
Benjamin Peterson29060642009-01-31 22:14:21 +000014016 PyObject *x = NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014017 static char *kwlist[] = {"object", "encoding", "errors", 0};
14018 char *encoding = NULL;
14019 char *errors = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +000014020
Benjamin Peterson14339b62009-01-31 16:36:08 +000014021 if (type != &PyUnicode_Type)
14022 return unicode_subtype_new(type, args, kwds);
14023 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:str",
Benjamin Peterson29060642009-01-31 22:14:21 +000014024 kwlist, &x, &encoding, &errors))
Benjamin Peterson14339b62009-01-31 16:36:08 +000014025 return NULL;
14026 if (x == NULL)
Serhiy Storchaka678db842013-01-26 12:16:36 +020014027 _Py_RETURN_UNICODE_EMPTY();
Benjamin Peterson14339b62009-01-31 16:36:08 +000014028 if (encoding == NULL && errors == NULL)
14029 return PyObject_Str(x);
14030 else
Benjamin Peterson29060642009-01-31 22:14:21 +000014031 return PyUnicode_FromEncodedObject(x, encoding, errors);
Tim Peters6d6c1a32001-08-02 04:15:00 +000014032}
14033
Guido van Rossume023fe02001-08-30 03:12:59 +000014034static PyObject *
14035unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
14036{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014037 PyObject *unicode, *self;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014038 Py_ssize_t length, char_size;
14039 int share_wstr, share_utf8;
14040 unsigned int kind;
14041 void *data;
Guido van Rossume023fe02001-08-30 03:12:59 +000014042
Benjamin Peterson14339b62009-01-31 16:36:08 +000014043 assert(PyType_IsSubtype(type, &PyUnicode_Type));
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014044
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014045 unicode = unicode_new(&PyUnicode_Type, args, kwds);
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014046 if (unicode == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +000014047 return NULL;
Victor Stinner910337b2011-10-03 03:20:16 +020014048 assert(_PyUnicode_CHECK(unicode));
Benjamin Petersonbac79492012-01-14 13:34:47 -050014049 if (PyUnicode_READY(unicode) == -1) {
Benjamin Peterson22a29702012-01-02 09:00:30 -060014050 Py_DECREF(unicode);
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014051 return NULL;
Benjamin Peterson22a29702012-01-02 09:00:30 -060014052 }
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014053
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014054 self = type->tp_alloc(type, 0);
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014055 if (self == NULL) {
14056 Py_DECREF(unicode);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014057 return NULL;
14058 }
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014059 kind = PyUnicode_KIND(unicode);
14060 length = PyUnicode_GET_LENGTH(unicode);
14061
14062 _PyUnicode_LENGTH(self) = length;
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +020014063#ifdef Py_DEBUG
14064 _PyUnicode_HASH(self) = -1;
14065#else
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014066 _PyUnicode_HASH(self) = _PyUnicode_HASH(unicode);
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +020014067#endif
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014068 _PyUnicode_STATE(self).interned = 0;
14069 _PyUnicode_STATE(self).kind = kind;
14070 _PyUnicode_STATE(self).compact = 0;
Victor Stinner3cf46372011-10-03 14:42:15 +020014071 _PyUnicode_STATE(self).ascii = _PyUnicode_STATE(unicode).ascii;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014072 _PyUnicode_STATE(self).ready = 1;
14073 _PyUnicode_WSTR(self) = NULL;
14074 _PyUnicode_UTF8_LENGTH(self) = 0;
14075 _PyUnicode_UTF8(self) = NULL;
14076 _PyUnicode_WSTR_LENGTH(self) = 0;
Victor Stinnerc3c74152011-10-02 20:39:55 +020014077 _PyUnicode_DATA_ANY(self) = NULL;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014078
14079 share_utf8 = 0;
14080 share_wstr = 0;
14081 if (kind == PyUnicode_1BYTE_KIND) {
14082 char_size = 1;
14083 if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128)
14084 share_utf8 = 1;
14085 }
14086 else if (kind == PyUnicode_2BYTE_KIND) {
14087 char_size = 2;
14088 if (sizeof(wchar_t) == 2)
14089 share_wstr = 1;
14090 }
14091 else {
14092 assert(kind == PyUnicode_4BYTE_KIND);
14093 char_size = 4;
14094 if (sizeof(wchar_t) == 4)
14095 share_wstr = 1;
14096 }
14097
14098 /* Ensure we won't overflow the length. */
14099 if (length > (PY_SSIZE_T_MAX / char_size - 1)) {
14100 PyErr_NoMemory();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014101 goto onError;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014102 }
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014103 data = PyObject_MALLOC((length + 1) * char_size);
14104 if (data == NULL) {
14105 PyErr_NoMemory();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014106 goto onError;
14107 }
14108
Victor Stinnerc3c74152011-10-02 20:39:55 +020014109 _PyUnicode_DATA_ANY(self) = data;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014110 if (share_utf8) {
14111 _PyUnicode_UTF8_LENGTH(self) = length;
14112 _PyUnicode_UTF8(self) = data;
14113 }
14114 if (share_wstr) {
14115 _PyUnicode_WSTR_LENGTH(self) = length;
14116 _PyUnicode_WSTR(self) = (wchar_t *)data;
14117 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014118
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014119 Py_MEMCPY(data, PyUnicode_DATA(unicode),
Martin v. Löwisc47adb02011-10-07 20:55:35 +020014120 kind * (length + 1));
Victor Stinnerbb10a1f2011-10-05 01:34:17 +020014121 assert(_PyUnicode_CheckConsistency(self, 1));
Victor Stinnerfb9ea8c2011-10-06 01:45:57 +020014122#ifdef Py_DEBUG
14123 _PyUnicode_HASH(self) = _PyUnicode_HASH(unicode);
14124#endif
Victor Stinnerdd18d3a2011-10-22 11:08:10 +020014125 Py_DECREF(unicode);
Victor Stinner7931d9a2011-11-04 00:22:48 +010014126 return self;
Victor Stinner07ac3eb2011-10-01 16:16:43 +020014127
14128onError:
14129 Py_DECREF(unicode);
14130 Py_DECREF(self);
14131 return NULL;
Guido van Rossume023fe02001-08-30 03:12:59 +000014132}
14133
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000014134PyDoc_STRVAR(unicode_doc,
Chris Jerdonek83fe2e12012-10-07 14:48:36 -070014135"str(object='') -> str\n\
14136str(bytes_or_buffer[, encoding[, errors]]) -> str\n\
Tim Peters6d6c1a32001-08-02 04:15:00 +000014137\n\
Nick Coghlan573b1fd2012-08-16 14:13:07 +100014138Create a new string object from the given object. If encoding or\n\
14139errors is specified, then the object must expose a data buffer\n\
14140that will be decoded using the given encoding and error handler.\n\
14141Otherwise, returns the result of object.__str__() (if defined)\n\
14142or repr(object).\n\
14143encoding defaults to sys.getdefaultencoding().\n\
14144errors defaults to 'strict'.");
Tim Peters6d6c1a32001-08-02 04:15:00 +000014145
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014146static PyObject *unicode_iter(PyObject *seq);
14147
Guido van Rossumd57fd912000-03-10 22:53:23 +000014148PyTypeObject PyUnicode_Type = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +000014149 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Benjamin Peterson14339b62009-01-31 16:36:08 +000014150 "str", /* tp_name */
14151 sizeof(PyUnicodeObject), /* tp_size */
14152 0, /* tp_itemsize */
Guido van Rossumd57fd912000-03-10 22:53:23 +000014153 /* Slots */
Benjamin Peterson14339b62009-01-31 16:36:08 +000014154 (destructor)unicode_dealloc, /* tp_dealloc */
14155 0, /* tp_print */
14156 0, /* tp_getattr */
14157 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +000014158 0, /* tp_reserved */
Benjamin Peterson14339b62009-01-31 16:36:08 +000014159 unicode_repr, /* tp_repr */
14160 &unicode_as_number, /* tp_as_number */
14161 &unicode_as_sequence, /* tp_as_sequence */
14162 &unicode_as_mapping, /* tp_as_mapping */
14163 (hashfunc) unicode_hash, /* tp_hash*/
14164 0, /* tp_call*/
14165 (reprfunc) unicode_str, /* tp_str */
14166 PyObject_GenericGetAttr, /* tp_getattro */
14167 0, /* tp_setattro */
14168 0, /* tp_as_buffer */
14169 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE |
Benjamin Peterson29060642009-01-31 22:14:21 +000014170 Py_TPFLAGS_UNICODE_SUBCLASS, /* tp_flags */
Benjamin Peterson14339b62009-01-31 16:36:08 +000014171 unicode_doc, /* tp_doc */
14172 0, /* tp_traverse */
14173 0, /* tp_clear */
14174 PyUnicode_RichCompare, /* tp_richcompare */
14175 0, /* tp_weaklistoffset */
14176 unicode_iter, /* tp_iter */
14177 0, /* tp_iternext */
14178 unicode_methods, /* tp_methods */
14179 0, /* tp_members */
14180 0, /* tp_getset */
14181 &PyBaseObject_Type, /* tp_base */
14182 0, /* tp_dict */
14183 0, /* tp_descr_get */
14184 0, /* tp_descr_set */
14185 0, /* tp_dictoffset */
14186 0, /* tp_init */
14187 0, /* tp_alloc */
14188 unicode_new, /* tp_new */
14189 PyObject_Del, /* tp_free */
Guido van Rossumd57fd912000-03-10 22:53:23 +000014190};
14191
14192/* Initialize the Unicode implementation */
14193
Victor Stinner3a50e702011-10-18 21:21:00 +020014194int _PyUnicode_Init(void)
Guido van Rossumd57fd912000-03-10 22:53:23 +000014195{
Thomas Wouters477c8d52006-05-27 19:21:47 +000014196 /* XXX - move this array to unicodectype.c ? */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014197 Py_UCS2 linebreak[] = {
Thomas Wouters477c8d52006-05-27 19:21:47 +000014198 0x000A, /* LINE FEED */
14199 0x000D, /* CARRIAGE RETURN */
14200 0x001C, /* FILE SEPARATOR */
14201 0x001D, /* GROUP SEPARATOR */
14202 0x001E, /* RECORD SEPARATOR */
14203 0x0085, /* NEXT LINE */
14204 0x2028, /* LINE SEPARATOR */
14205 0x2029, /* PARAGRAPH SEPARATOR */
14206 };
14207
Fred Drakee4315f52000-05-09 19:53:39 +000014208 /* Init the implementation */
Serhiy Storchaka678db842013-01-26 12:16:36 +020014209 _Py_INCREF_UNICODE_EMPTY();
Thomas Wouters0e3f5912006-08-11 14:57:12 +000014210 if (!unicode_empty)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014211 Py_FatalError("Can't create empty string");
Serhiy Storchaka678db842013-01-26 12:16:36 +020014212 Py_DECREF(unicode_empty);
Thomas Wouters0e3f5912006-08-11 14:57:12 +000014213
Guido van Rossumcacfc072002-05-24 19:01:59 +000014214 if (PyType_Ready(&PyUnicode_Type) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000014215 Py_FatalError("Can't initialize 'unicode'");
Thomas Wouters477c8d52006-05-27 19:21:47 +000014216
14217 /* initialize the linebreak bloom filter */
14218 bloom_linebreak = make_bloom_mask(
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014219 PyUnicode_2BYTE_KIND, linebreak,
Victor Stinner63941882011-09-29 00:42:28 +020014220 Py_ARRAY_LENGTH(linebreak));
Thomas Wouters0e3f5912006-08-11 14:57:12 +000014221
Christian Heimes26532f72013-07-20 14:57:16 +020014222 if (PyType_Ready(&EncodingMapType) < 0)
14223 Py_FatalError("Can't initialize encoding map type");
Victor Stinner3a50e702011-10-18 21:21:00 +020014224
Benjamin Petersonc4311282012-10-30 23:21:10 -040014225 if (PyType_Ready(&PyFieldNameIter_Type) < 0)
14226 Py_FatalError("Can't initialize field name iterator type");
14227
14228 if (PyType_Ready(&PyFormatterIter_Type) < 0)
14229 Py_FatalError("Can't initialize formatter iter type");
Benjamin Petersone8ea97f2012-10-30 23:27:52 -040014230
Victor Stinner3a50e702011-10-18 21:21:00 +020014231#ifdef HAVE_MBCS
14232 winver.dwOSVersionInfoSize = sizeof(winver);
14233 if (!GetVersionEx((OSVERSIONINFO*)&winver)) {
14234 PyErr_SetFromWindowsErr(0);
14235 return -1;
14236 }
14237#endif
14238 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000014239}
14240
14241/* Finalize the Unicode implementation */
14242
Christian Heimesa156e092008-02-16 07:38:31 +000014243int
14244PyUnicode_ClearFreeList(void)
14245{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014246 return 0;
Christian Heimesa156e092008-02-16 07:38:31 +000014247}
14248
Guido van Rossumd57fd912000-03-10 22:53:23 +000014249void
Thomas Wouters78890102000-07-22 19:25:51 +000014250_PyUnicode_Fini(void)
Guido van Rossumd57fd912000-03-10 22:53:23 +000014251{
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000014252 int i;
Guido van Rossumd57fd912000-03-10 22:53:23 +000014253
Serhiy Storchaka05997252013-01-26 12:14:02 +020014254 Py_CLEAR(unicode_empty);
Barry Warsaw5b4c2282000-10-03 20:45:26 +000014255
Serhiy Storchaka05997252013-01-26 12:14:02 +020014256 for (i = 0; i < 256; i++)
14257 Py_CLEAR(unicode_latin1[i]);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +020014258 _PyUnicode_ClearStaticStrings();
Christian Heimesa156e092008-02-16 07:38:31 +000014259 (void)PyUnicode_ClearFreeList();
Guido van Rossumd57fd912000-03-10 22:53:23 +000014260}
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +000014261
Walter Dörwald16807132007-05-25 13:52:07 +000014262void
14263PyUnicode_InternInPlace(PyObject **p)
14264{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014265 register PyObject *s = *p;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014266 PyObject *t;
Victor Stinner4fae54c2011-10-03 02:01:52 +020014267#ifdef Py_DEBUG
14268 assert(s != NULL);
14269 assert(_PyUnicode_CHECK(s));
14270#else
Benjamin Peterson14339b62009-01-31 16:36:08 +000014271 if (s == NULL || !PyUnicode_Check(s))
Victor Stinner4fae54c2011-10-03 02:01:52 +020014272 return;
14273#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +000014274 /* If it's a subclass, we don't really know what putting
14275 it in the interned dict might do. */
14276 if (!PyUnicode_CheckExact(s))
14277 return;
14278 if (PyUnicode_CHECK_INTERNED(s))
14279 return;
14280 if (interned == NULL) {
14281 interned = PyDict_New();
14282 if (interned == NULL) {
14283 PyErr_Clear(); /* Don't leave an exception */
14284 return;
14285 }
14286 }
14287 /* It might be that the GetItem call fails even
14288 though the key is present in the dictionary,
14289 namely when this happens during a stack overflow. */
14290 Py_ALLOW_RECURSION
Victor Stinner7931d9a2011-11-04 00:22:48 +010014291 t = PyDict_GetItem(interned, s);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014292 Py_END_ALLOW_RECURSION
Martin v. Löwis5b222132007-06-10 09:51:05 +000014293
Benjamin Peterson29060642009-01-31 22:14:21 +000014294 if (t) {
14295 Py_INCREF(t);
14296 Py_DECREF(*p);
14297 *p = t;
14298 return;
14299 }
Walter Dörwald16807132007-05-25 13:52:07 +000014300
Benjamin Peterson14339b62009-01-31 16:36:08 +000014301 PyThreadState_GET()->recursion_critical = 1;
Victor Stinner7931d9a2011-11-04 00:22:48 +010014302 if (PyDict_SetItem(interned, s, s) < 0) {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014303 PyErr_Clear();
14304 PyThreadState_GET()->recursion_critical = 0;
14305 return;
14306 }
14307 PyThreadState_GET()->recursion_critical = 0;
14308 /* The two references in interned are not counted by refcnt.
14309 The deallocator will take care of this */
14310 Py_REFCNT(s) -= 2;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014311 _PyUnicode_STATE(s).interned = SSTATE_INTERNED_MORTAL;
Walter Dörwald16807132007-05-25 13:52:07 +000014312}
14313
14314void
14315PyUnicode_InternImmortal(PyObject **p)
14316{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014317 PyUnicode_InternInPlace(p);
14318 if (PyUnicode_CHECK_INTERNED(*p) != SSTATE_INTERNED_IMMORTAL) {
Victor Stinneraf9e4b82011-10-23 20:07:00 +020014319 _PyUnicode_STATE(*p).interned = SSTATE_INTERNED_IMMORTAL;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014320 Py_INCREF(*p);
14321 }
Walter Dörwald16807132007-05-25 13:52:07 +000014322}
14323
14324PyObject *
14325PyUnicode_InternFromString(const char *cp)
14326{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014327 PyObject *s = PyUnicode_FromString(cp);
14328 if (s == NULL)
14329 return NULL;
14330 PyUnicode_InternInPlace(&s);
14331 return s;
Walter Dörwald16807132007-05-25 13:52:07 +000014332}
14333
Alexander Belopolsky40018472011-02-26 01:02:56 +000014334void
14335_Py_ReleaseInternedUnicodeStrings(void)
Walter Dörwald16807132007-05-25 13:52:07 +000014336{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014337 PyObject *keys;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014338 PyObject *s;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014339 Py_ssize_t i, n;
14340 Py_ssize_t immortal_size = 0, mortal_size = 0;
Walter Dörwald16807132007-05-25 13:52:07 +000014341
Benjamin Peterson14339b62009-01-31 16:36:08 +000014342 if (interned == NULL || !PyDict_Check(interned))
14343 return;
14344 keys = PyDict_Keys(interned);
14345 if (keys == NULL || !PyList_Check(keys)) {
14346 PyErr_Clear();
14347 return;
14348 }
Walter Dörwald16807132007-05-25 13:52:07 +000014349
Benjamin Peterson14339b62009-01-31 16:36:08 +000014350 /* Since _Py_ReleaseInternedUnicodeStrings() is intended to help a leak
14351 detector, interned unicode strings are not forcibly deallocated;
14352 rather, we give them their stolen references back, and then clear
14353 and DECREF the interned dict. */
Walter Dörwald16807132007-05-25 13:52:07 +000014354
Benjamin Peterson14339b62009-01-31 16:36:08 +000014355 n = PyList_GET_SIZE(keys);
14356 fprintf(stderr, "releasing %" PY_FORMAT_SIZE_T "d interned strings\n",
Benjamin Peterson29060642009-01-31 22:14:21 +000014357 n);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014358 for (i = 0; i < n; i++) {
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014359 s = PyList_GET_ITEM(keys, i);
Victor Stinner6b56a7f2011-10-04 20:04:52 +020014360 if (PyUnicode_READY(s) == -1) {
14361 assert(0 && "could not ready string");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014362 fprintf(stderr, "could not ready string\n");
Victor Stinner6b56a7f2011-10-04 20:04:52 +020014363 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014364 switch (PyUnicode_CHECK_INTERNED(s)) {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014365 case SSTATE_NOT_INTERNED:
14366 /* XXX Shouldn't happen */
14367 break;
14368 case SSTATE_INTERNED_IMMORTAL:
14369 Py_REFCNT(s) += 1;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014370 immortal_size += PyUnicode_GET_LENGTH(s);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014371 break;
14372 case SSTATE_INTERNED_MORTAL:
14373 Py_REFCNT(s) += 2;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014374 mortal_size += PyUnicode_GET_LENGTH(s);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014375 break;
14376 default:
14377 Py_FatalError("Inconsistent interned string state.");
14378 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014379 _PyUnicode_STATE(s).interned = SSTATE_NOT_INTERNED;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014380 }
14381 fprintf(stderr, "total size of all interned strings: "
14382 "%" PY_FORMAT_SIZE_T "d/%" PY_FORMAT_SIZE_T "d "
14383 "mortal/immortal\n", mortal_size, immortal_size);
14384 Py_DECREF(keys);
14385 PyDict_Clear(interned);
Serhiy Storchaka05997252013-01-26 12:14:02 +020014386 Py_CLEAR(interned);
Walter Dörwald16807132007-05-25 13:52:07 +000014387}
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014388
14389
14390/********************* Unicode Iterator **************************/
14391
14392typedef struct {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014393 PyObject_HEAD
14394 Py_ssize_t it_index;
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014395 PyObject *it_seq; /* Set to NULL when iterator is exhausted */
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014396} unicodeiterobject;
14397
14398static void
14399unicodeiter_dealloc(unicodeiterobject *it)
14400{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014401 _PyObject_GC_UNTRACK(it);
14402 Py_XDECREF(it->it_seq);
14403 PyObject_GC_Del(it);
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014404}
14405
14406static int
14407unicodeiter_traverse(unicodeiterobject *it, visitproc visit, void *arg)
14408{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014409 Py_VISIT(it->it_seq);
14410 return 0;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014411}
14412
14413static PyObject *
14414unicodeiter_next(unicodeiterobject *it)
14415{
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014416 PyObject *seq, *item;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014417
Benjamin Peterson14339b62009-01-31 16:36:08 +000014418 assert(it != NULL);
14419 seq = it->it_seq;
14420 if (seq == NULL)
14421 return NULL;
Victor Stinner910337b2011-10-03 03:20:16 +020014422 assert(_PyUnicode_CHECK(seq));
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014423
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014424 if (it->it_index < PyUnicode_GET_LENGTH(seq)) {
14425 int kind = PyUnicode_KIND(seq);
14426 void *data = PyUnicode_DATA(seq);
14427 Py_UCS4 chr = PyUnicode_READ(kind, data, it->it_index);
14428 item = PyUnicode_FromOrdinal(chr);
Benjamin Peterson14339b62009-01-31 16:36:08 +000014429 if (item != NULL)
14430 ++it->it_index;
14431 return item;
14432 }
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014433
Benjamin Peterson14339b62009-01-31 16:36:08 +000014434 Py_DECREF(seq);
14435 it->it_seq = NULL;
14436 return NULL;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014437}
14438
14439static PyObject *
14440unicodeiter_len(unicodeiterobject *it)
14441{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014442 Py_ssize_t len = 0;
14443 if (it->it_seq)
Victor Stinnerc4f281e2011-10-11 22:11:42 +020014444 len = PyUnicode_GET_LENGTH(it->it_seq) - it->it_index;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014445 return PyLong_FromSsize_t(len);
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014446}
14447
14448PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
14449
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000014450static PyObject *
14451unicodeiter_reduce(unicodeiterobject *it)
14452{
14453 if (it->it_seq != NULL) {
Antoine Pitroua7013882012-04-05 00:04:20 +020014454 return Py_BuildValue("N(O)n", _PyObject_GetBuiltin("iter"),
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000014455 it->it_seq, it->it_index);
14456 } else {
14457 PyObject *u = PyUnicode_FromUnicode(NULL, 0);
14458 if (u == NULL)
14459 return NULL;
Antoine Pitroua7013882012-04-05 00:04:20 +020014460 return Py_BuildValue("N(N)", _PyObject_GetBuiltin("iter"), u);
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000014461 }
14462}
14463
14464PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
14465
14466static PyObject *
14467unicodeiter_setstate(unicodeiterobject *it, PyObject *state)
14468{
14469 Py_ssize_t index = PyLong_AsSsize_t(state);
14470 if (index == -1 && PyErr_Occurred())
14471 return NULL;
Kristján Valur Jónsson25dded02014-03-05 13:47:57 +000014472 if (it->it_seq != NULL) {
14473 if (index < 0)
14474 index = 0;
14475 else if (index > PyUnicode_GET_LENGTH(it->it_seq))
14476 index = PyUnicode_GET_LENGTH(it->it_seq); /* iterator truncated */
14477 it->it_index = index;
14478 }
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000014479 Py_RETURN_NONE;
14480}
14481
14482PyDoc_STRVAR(setstate_doc, "Set state information for unpickling.");
14483
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014484static PyMethodDef unicodeiter_methods[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014485 {"__length_hint__", (PyCFunction)unicodeiter_len, METH_NOARGS,
Benjamin Peterson29060642009-01-31 22:14:21 +000014486 length_hint_doc},
Kristján Valur Jónsson31668b82012-04-03 10:49:41 +000014487 {"__reduce__", (PyCFunction)unicodeiter_reduce, METH_NOARGS,
14488 reduce_doc},
14489 {"__setstate__", (PyCFunction)unicodeiter_setstate, METH_O,
14490 setstate_doc},
Benjamin Peterson14339b62009-01-31 16:36:08 +000014491 {NULL, NULL} /* sentinel */
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014492};
14493
14494PyTypeObject PyUnicodeIter_Type = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000014495 PyVarObject_HEAD_INIT(&PyType_Type, 0)
14496 "str_iterator", /* tp_name */
14497 sizeof(unicodeiterobject), /* tp_basicsize */
14498 0, /* tp_itemsize */
14499 /* methods */
14500 (destructor)unicodeiter_dealloc, /* tp_dealloc */
14501 0, /* tp_print */
14502 0, /* tp_getattr */
14503 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +000014504 0, /* tp_reserved */
Benjamin Peterson14339b62009-01-31 16:36:08 +000014505 0, /* tp_repr */
14506 0, /* tp_as_number */
14507 0, /* tp_as_sequence */
14508 0, /* tp_as_mapping */
14509 0, /* tp_hash */
14510 0, /* tp_call */
14511 0, /* tp_str */
14512 PyObject_GenericGetAttr, /* tp_getattro */
14513 0, /* tp_setattro */
14514 0, /* tp_as_buffer */
14515 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
14516 0, /* tp_doc */
14517 (traverseproc)unicodeiter_traverse, /* tp_traverse */
14518 0, /* tp_clear */
14519 0, /* tp_richcompare */
14520 0, /* tp_weaklistoffset */
14521 PyObject_SelfIter, /* tp_iter */
14522 (iternextfunc)unicodeiter_next, /* tp_iternext */
14523 unicodeiter_methods, /* tp_methods */
14524 0,
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014525};
14526
14527static PyObject *
14528unicode_iter(PyObject *seq)
14529{
Benjamin Peterson14339b62009-01-31 16:36:08 +000014530 unicodeiterobject *it;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014531
Benjamin Peterson14339b62009-01-31 16:36:08 +000014532 if (!PyUnicode_Check(seq)) {
14533 PyErr_BadInternalCall();
14534 return NULL;
14535 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014536 if (PyUnicode_READY(seq) == -1)
14537 return NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014538 it = PyObject_GC_New(unicodeiterobject, &PyUnicodeIter_Type);
14539 if (it == NULL)
14540 return NULL;
14541 it->it_index = 0;
14542 Py_INCREF(seq);
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014543 it->it_seq = seq;
Benjamin Peterson14339b62009-01-31 16:36:08 +000014544 _PyObject_GC_TRACK(it);
14545 return (PyObject *)it;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000014546}
14547
Martin v. Löwis0d3072e2011-10-31 08:40:56 +010014548
14549size_t
14550Py_UNICODE_strlen(const Py_UNICODE *u)
14551{
14552 int res = 0;
14553 while(*u++)
14554 res++;
14555 return res;
14556}
14557
14558Py_UNICODE*
14559Py_UNICODE_strcpy(Py_UNICODE *s1, const Py_UNICODE *s2)
14560{
14561 Py_UNICODE *u = s1;
14562 while ((*u++ = *s2++));
14563 return s1;
14564}
14565
14566Py_UNICODE*
14567Py_UNICODE_strncpy(Py_UNICODE *s1, const Py_UNICODE *s2, size_t n)
14568{
14569 Py_UNICODE *u = s1;
14570 while ((*u++ = *s2++))
14571 if (n-- == 0)
14572 break;
14573 return s1;
14574}
14575
14576Py_UNICODE*
14577Py_UNICODE_strcat(Py_UNICODE *s1, const Py_UNICODE *s2)
14578{
14579 Py_UNICODE *u1 = s1;
14580 u1 += Py_UNICODE_strlen(u1);
14581 Py_UNICODE_strcpy(u1, s2);
14582 return s1;
14583}
14584
14585int
14586Py_UNICODE_strcmp(const Py_UNICODE *s1, const Py_UNICODE *s2)
14587{
14588 while (*s1 && *s2 && *s1 == *s2)
14589 s1++, s2++;
14590 if (*s1 && *s2)
14591 return (*s1 < *s2) ? -1 : +1;
14592 if (*s1)
14593 return 1;
14594 if (*s2)
14595 return -1;
14596 return 0;
14597}
14598
14599int
14600Py_UNICODE_strncmp(const Py_UNICODE *s1, const Py_UNICODE *s2, size_t n)
14601{
14602 register Py_UNICODE u1, u2;
14603 for (; n != 0; n--) {
14604 u1 = *s1;
14605 u2 = *s2;
14606 if (u1 != u2)
14607 return (u1 < u2) ? -1 : +1;
14608 if (u1 == '\0')
14609 return 0;
14610 s1++;
14611 s2++;
14612 }
14613 return 0;
14614}
14615
14616Py_UNICODE*
14617Py_UNICODE_strchr(const Py_UNICODE *s, Py_UNICODE c)
14618{
14619 const Py_UNICODE *p;
14620 for (p = s; *p; p++)
14621 if (*p == c)
14622 return (Py_UNICODE*)p;
14623 return NULL;
14624}
14625
14626Py_UNICODE*
14627Py_UNICODE_strrchr(const Py_UNICODE *s, Py_UNICODE c)
14628{
14629 const Py_UNICODE *p;
14630 p = s + Py_UNICODE_strlen(s);
14631 while (p != s) {
14632 p--;
14633 if (*p == c)
14634 return (Py_UNICODE*)p;
14635 }
14636 return NULL;
14637}
Victor Stinner331ea922010-08-10 16:37:20 +000014638
Victor Stinner71133ff2010-09-01 23:43:53 +000014639Py_UNICODE*
Victor Stinner9db1a8b2011-10-23 20:04:37 +020014640PyUnicode_AsUnicodeCopy(PyObject *unicode)
Victor Stinner71133ff2010-09-01 23:43:53 +000014641{
Victor Stinner577db2c2011-10-11 22:12:48 +020014642 Py_UNICODE *u, *copy;
Victor Stinner57ffa9d2011-10-23 20:10:08 +020014643 Py_ssize_t len, size;
Victor Stinner71133ff2010-09-01 23:43:53 +000014644
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020014645 if (!PyUnicode_Check(unicode)) {
14646 PyErr_BadArgument();
14647 return NULL;
14648 }
Victor Stinner57ffa9d2011-10-23 20:10:08 +020014649 u = PyUnicode_AsUnicodeAndSize(unicode, &len);
Victor Stinner577db2c2011-10-11 22:12:48 +020014650 if (u == NULL)
14651 return NULL;
Victor Stinner71133ff2010-09-01 23:43:53 +000014652 /* Ensure we won't overflow the size. */
Victor Stinner57ffa9d2011-10-23 20:10:08 +020014653 if (len > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
Victor Stinner71133ff2010-09-01 23:43:53 +000014654 PyErr_NoMemory();
14655 return NULL;
14656 }
Victor Stinner57ffa9d2011-10-23 20:10:08 +020014657 size = len + 1; /* copy the null character */
Victor Stinner71133ff2010-09-01 23:43:53 +000014658 size *= sizeof(Py_UNICODE);
14659 copy = PyMem_Malloc(size);
14660 if (copy == NULL) {
14661 PyErr_NoMemory();
14662 return NULL;
14663 }
Victor Stinner577db2c2011-10-11 22:12:48 +020014664 memcpy(copy, u, size);
Victor Stinner71133ff2010-09-01 23:43:53 +000014665 return copy;
14666}
Martin v. Löwis5b222132007-06-10 09:51:05 +000014667
Georg Brandl66c221e2010-10-14 07:04:07 +000014668/* A _string module, to export formatter_parser and formatter_field_name_split
14669 to the string.Formatter class implemented in Python. */
14670
14671static PyMethodDef _string_methods[] = {
14672 {"formatter_field_name_split", (PyCFunction) formatter_field_name_split,
14673 METH_O, PyDoc_STR("split the argument as a field name")},
14674 {"formatter_parser", (PyCFunction) formatter_parser,
14675 METH_O, PyDoc_STR("parse the argument as a format string")},
14676 {NULL, NULL}
14677};
14678
14679static struct PyModuleDef _string_module = {
14680 PyModuleDef_HEAD_INIT,
14681 "_string",
14682 PyDoc_STR("string helper module"),
14683 0,
14684 _string_methods,
14685 NULL,
14686 NULL,
14687 NULL,
14688 NULL
14689};
14690
14691PyMODINIT_FUNC
14692PyInit__string(void)
14693{
14694 return PyModule_Create(&_string_module);
14695}
14696
14697
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000014698#ifdef __cplusplus
14699}
14700#endif