blob: 7f86bfd6df96a4c93a03c4619aae8cd22a4b5104 [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,
Fred Drake785d14f2000-05-09 19:54:43 +00004modified by Marc-Andre Lemburg <mal@lemburg.com> according to the
Guido van Rossumd57fd912000-03-10 22:53:23 +00005Unicode Integration Proposal (see file Misc/unicode.txt).
6
Thomas Wouters477c8d52006-05-27 19:21:47 +00007Major speed upgrades to the method implementations at the Reykjavik
8NeedForSpeed sprint, by Fredrik Lundh and Andrew Dalke.
9
Guido van Rossum16b1ad92000-08-03 16:24:25 +000010Copyright (c) Corporation for National Research Initiatives.
Guido van Rossumd57fd912000-03-10 22:53:23 +000011
Fredrik Lundh0fdb90c2001-01-19 09:45:02 +000012--------------------------------------------------------------------
13The original string type implementation is:
Guido van Rossumd57fd912000-03-10 22:53:23 +000014
Benjamin Peterson29060642009-01-31 22:14:21 +000015 Copyright (c) 1999 by Secret Labs AB
16 Copyright (c) 1999 by Fredrik Lundh
Guido van Rossumd57fd912000-03-10 22:53:23 +000017
Fredrik Lundh0fdb90c2001-01-19 09:45:02 +000018By obtaining, using, and/or copying this software and/or its
19associated documentation, you agree that you have read, understood,
20and will comply with the following terms and conditions:
21
22Permission to use, copy, modify, and distribute this software and its
23associated documentation for any purpose and without fee is hereby
24granted, provided that the above copyright notice appears in all
25copies, and that both that copyright notice and this permission notice
26appear in supporting documentation, and that the name of Secret Labs
27AB or the author not be used in advertising or publicity pertaining to
28distribution of the software without specific, written prior
29permission.
30
31SECRET LABS AB AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO
32THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
33FITNESS. IN NO EVENT SHALL SECRET LABS AB OR THE AUTHOR BE LIABLE FOR
34ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
35WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
36ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
37OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
38--------------------------------------------------------------------
39
40*/
Guido van Rossumd57fd912000-03-10 22:53:23 +000041
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000042#define PY_SSIZE_T_CLEAN
Guido van Rossumd57fd912000-03-10 22:53:23 +000043#include "Python.h"
Marc-André Lemburgd49e5b42000-06-30 14:58:20 +000044#include "ucnhash.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/* Limit for the Unicode object free list */
51
Christian Heimes2202f872008-02-06 14:31:34 +000052#define PyUnicode_MAXFREELIST 1024
Guido van Rossumd57fd912000-03-10 22:53:23 +000053
54/* Limit for the Unicode object free list stay alive optimization.
55
56 The implementation will keep allocated Unicode memory intact for
57 all objects on the free list having a size less than this
Tim Petersced69f82003-09-16 20:30:58 +000058 limit. This reduces malloc() overhead for small Unicode objects.
Guido van Rossumd57fd912000-03-10 22:53:23 +000059
Christian Heimes2202f872008-02-06 14:31:34 +000060 At worst this will result in PyUnicode_MAXFREELIST *
Guido van Rossumfd4b9572000-04-10 13:51:10 +000061 (sizeof(PyUnicodeObject) + KEEPALIVE_SIZE_LIMIT +
Guido van Rossumd57fd912000-03-10 22:53:23 +000062 malloc()-overhead) bytes of unused garbage.
63
64 Setting the limit to 0 effectively turns the feature off.
65
Guido van Rossumfd4b9572000-04-10 13:51:10 +000066 Note: This is an experimental feature ! If you get core dumps when
67 using Unicode objects, turn this feature off.
Guido van Rossumd57fd912000-03-10 22:53:23 +000068
69*/
70
Guido van Rossumfd4b9572000-04-10 13:51:10 +000071#define KEEPALIVE_SIZE_LIMIT 9
Guido van Rossumd57fd912000-03-10 22:53:23 +000072
73/* Endianness switches; defaults to little endian */
74
75#ifdef WORDS_BIGENDIAN
76# define BYTEORDER_IS_BIG_ENDIAN
77#else
78# define BYTEORDER_IS_LITTLE_ENDIAN
79#endif
80
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +000081/* --- Globals ------------------------------------------------------------
82
83 The globals are initialized by the _PyUnicode_Init() API and should
84 not be used before calling that API.
85
86*/
Guido van Rossumd57fd912000-03-10 22:53:23 +000087
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000088
89#ifdef __cplusplus
90extern "C" {
91#endif
92
Walter Dörwald16807132007-05-25 13:52:07 +000093/* This dictionary holds all interned unicode strings. Note that references
94 to strings in this dictionary are *not* counted in the string's ob_refcnt.
95 When the interned string reaches a refcnt of 0 the string deallocation
96 function will delete the reference from this dictionary.
97
98 Another way to look at this is that to say that the actual reference
Guido van Rossum98297ee2007-11-06 21:34:58 +000099 count of a string is: s->ob_refcnt + (s->state ? 2 : 0)
Walter Dörwald16807132007-05-25 13:52:07 +0000100*/
101static PyObject *interned;
102
Guido van Rossumd57fd912000-03-10 22:53:23 +0000103/* Free list for Unicode objects */
Christian Heimes2202f872008-02-06 14:31:34 +0000104static PyUnicodeObject *free_list;
105static int numfree;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000106
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000107/* The empty Unicode object is shared to improve performance. */
108static PyUnicodeObject *unicode_empty;
109
110/* Single character Unicode strings in the Latin-1 range are being
111 shared as well. */
112static PyUnicodeObject *unicode_latin1[256];
113
Christian Heimes190d79e2008-01-30 11:58:22 +0000114/* Fast detection of the most frequent whitespace characters */
115const unsigned char _Py_ascii_whitespace[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +0000116 0, 0, 0, 0, 0, 0, 0, 0,
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000117/* case 0x0009: * CHARACTER TABULATION */
Christian Heimes1a8501c2008-10-02 19:56:01 +0000118/* case 0x000A: * LINE FEED */
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000119/* case 0x000B: * LINE TABULATION */
Christian Heimes1a8501c2008-10-02 19:56:01 +0000120/* case 0x000C: * FORM FEED */
121/* case 0x000D: * CARRIAGE RETURN */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000122 0, 1, 1, 1, 1, 1, 0, 0,
123 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000124/* case 0x001C: * FILE SEPARATOR */
125/* case 0x001D: * GROUP SEPARATOR */
126/* case 0x001E: * RECORD SEPARATOR */
127/* case 0x001F: * UNIT SEPARATOR */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000128 0, 0, 0, 0, 1, 1, 1, 1,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000129/* case 0x0020: * SPACE */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000130 1, 0, 0, 0, 0, 0, 0, 0,
131 0, 0, 0, 0, 0, 0, 0, 0,
132 0, 0, 0, 0, 0, 0, 0, 0,
133 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes190d79e2008-01-30 11:58:22 +0000134
Benjamin Peterson14339b62009-01-31 16:36:08 +0000135 0, 0, 0, 0, 0, 0, 0, 0,
136 0, 0, 0, 0, 0, 0, 0, 0,
137 0, 0, 0, 0, 0, 0, 0, 0,
138 0, 0, 0, 0, 0, 0, 0, 0,
139 0, 0, 0, 0, 0, 0, 0, 0,
140 0, 0, 0, 0, 0, 0, 0, 0,
141 0, 0, 0, 0, 0, 0, 0, 0,
142 0, 0, 0, 0, 0, 0, 0, 0
Christian Heimes190d79e2008-01-30 11:58:22 +0000143};
144
Martin v. Löwisdb12d452009-05-02 18:52:14 +0000145static PyObject *unicode_encode_call_errorhandler(const char *errors,
146 PyObject **errorHandler,const char *encoding, const char *reason,
147 const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject,
148 Py_ssize_t startpos, Py_ssize_t endpos, Py_ssize_t *newpos);
149
Victor Stinner31be90b2010-04-22 19:38:16 +0000150static void raise_encode_exception(PyObject **exceptionObject,
151 const char *encoding,
152 const Py_UNICODE *unicode, Py_ssize_t size,
153 Py_ssize_t startpos, Py_ssize_t endpos,
154 const char *reason);
155
Christian Heimes190d79e2008-01-30 11:58:22 +0000156/* Same for linebreaks */
157static unsigned char ascii_linebreak[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +0000158 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000159/* 0x000A, * LINE FEED */
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000160/* 0x000B, * LINE TABULATION */
161/* 0x000C, * FORM FEED */
Christian Heimes1a8501c2008-10-02 19:56:01 +0000162/* 0x000D, * CARRIAGE RETURN */
Florent Xicluna806d8cf2010-03-30 19:34:18 +0000163 0, 0, 1, 1, 1, 1, 0, 0,
Benjamin Peterson14339b62009-01-31 16:36:08 +0000164 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes1a8501c2008-10-02 19:56:01 +0000165/* 0x001C, * FILE SEPARATOR */
166/* 0x001D, * GROUP SEPARATOR */
167/* 0x001E, * RECORD SEPARATOR */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000168 0, 0, 0, 0, 1, 1, 1, 0,
169 0, 0, 0, 0, 0, 0, 0, 0,
170 0, 0, 0, 0, 0, 0, 0, 0,
171 0, 0, 0, 0, 0, 0, 0, 0,
172 0, 0, 0, 0, 0, 0, 0, 0,
Christian Heimes190d79e2008-01-30 11:58:22 +0000173
Benjamin Peterson14339b62009-01-31 16:36:08 +0000174 0, 0, 0, 0, 0, 0, 0, 0,
175 0, 0, 0, 0, 0, 0, 0, 0,
176 0, 0, 0, 0, 0, 0, 0, 0,
177 0, 0, 0, 0, 0, 0, 0, 0,
178 0, 0, 0, 0, 0, 0, 0, 0,
179 0, 0, 0, 0, 0, 0, 0, 0,
180 0, 0, 0, 0, 0, 0, 0, 0,
181 0, 0, 0, 0, 0, 0, 0, 0
Christian Heimes190d79e2008-01-30 11:58:22 +0000182};
183
184
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000185Py_UNICODE
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +0000186PyUnicode_GetMax(void)
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000187{
Fredrik Lundh8f455852001-06-27 18:59:43 +0000188#ifdef Py_UNICODE_WIDE
Benjamin Peterson14339b62009-01-31 16:36:08 +0000189 return 0x10FFFF;
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000190#else
Benjamin Peterson14339b62009-01-31 16:36:08 +0000191 /* This is actually an illegal character, so it should
192 not be passed to unichr. */
193 return 0xFFFF;
Martin v. Löwisce9b5a52001-06-27 06:28:56 +0000194#endif
195}
196
Thomas Wouters477c8d52006-05-27 19:21:47 +0000197/* --- Bloom Filters ----------------------------------------------------- */
198
199/* stuff to implement simple "bloom filters" for Unicode characters.
200 to keep things simple, we use a single bitmask, using the least 5
201 bits from each unicode characters as the bit index. */
202
203/* the linebreak mask is set up by Unicode_Init below */
204
Antoine Pitrouf068f942010-01-13 14:19:12 +0000205#if LONG_BIT >= 128
206#define BLOOM_WIDTH 128
207#elif LONG_BIT >= 64
208#define BLOOM_WIDTH 64
209#elif LONG_BIT >= 32
210#define BLOOM_WIDTH 32
211#else
212#error "LONG_BIT is smaller than 32"
213#endif
214
Thomas Wouters477c8d52006-05-27 19:21:47 +0000215#define BLOOM_MASK unsigned long
216
217static BLOOM_MASK bloom_linebreak;
218
Antoine Pitrouf068f942010-01-13 14:19:12 +0000219#define BLOOM_ADD(mask, ch) ((mask |= (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
220#define BLOOM(mask, ch) ((mask & (1UL << ((ch) & (BLOOM_WIDTH - 1)))))
Thomas Wouters477c8d52006-05-27 19:21:47 +0000221
Benjamin Peterson29060642009-01-31 22:14:21 +0000222#define BLOOM_LINEBREAK(ch) \
223 ((ch) < 128U ? ascii_linebreak[(ch)] : \
224 (BLOOM(bloom_linebreak, (ch)) && Py_UNICODE_ISLINEBREAK(ch)))
Thomas Wouters477c8d52006-05-27 19:21:47 +0000225
226Py_LOCAL_INLINE(BLOOM_MASK) make_bloom_mask(Py_UNICODE* ptr, Py_ssize_t len)
227{
228 /* calculate simple bloom-style bitmask for a given unicode string */
229
Antoine Pitrouf068f942010-01-13 14:19:12 +0000230 BLOOM_MASK mask;
Thomas Wouters477c8d52006-05-27 19:21:47 +0000231 Py_ssize_t i;
232
233 mask = 0;
234 for (i = 0; i < len; i++)
Antoine Pitrouf2c54842010-01-13 08:07:53 +0000235 BLOOM_ADD(mask, ptr[i]);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000236
237 return mask;
238}
239
240Py_LOCAL_INLINE(int) unicode_member(Py_UNICODE chr, Py_UNICODE* set, Py_ssize_t setlen)
241{
242 Py_ssize_t i;
243
244 for (i = 0; i < setlen; i++)
245 if (set[i] == chr)
246 return 1;
247
248 return 0;
249}
250
Benjamin Peterson29060642009-01-31 22:14:21 +0000251#define BLOOM_MEMBER(mask, chr, set, setlen) \
Thomas Wouters477c8d52006-05-27 19:21:47 +0000252 BLOOM(mask, chr) && unicode_member(chr, set, setlen)
253
Guido van Rossumd57fd912000-03-10 22:53:23 +0000254/* --- Unicode Object ----------------------------------------------------- */
255
256static
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000257int unicode_resize(register PyUnicodeObject *unicode,
Benjamin Peterson29060642009-01-31 22:14:21 +0000258 Py_ssize_t length)
Guido van Rossumd57fd912000-03-10 22:53:23 +0000259{
260 void *oldstr;
Tim Petersced69f82003-09-16 20:30:58 +0000261
Guido van Rossumfd4b9572000-04-10 13:51:10 +0000262 /* Shortcut if there's nothing much to do. */
Guido van Rossumd57fd912000-03-10 22:53:23 +0000263 if (unicode->length == length)
Benjamin Peterson29060642009-01-31 22:14:21 +0000264 goto reset;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000265
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000266 /* Resizing shared object (unicode_empty or single character
267 objects) in-place is not allowed. Use PyUnicode_Resize()
268 instead ! */
Thomas Wouters477c8d52006-05-27 19:21:47 +0000269
Benjamin Peterson14339b62009-01-31 16:36:08 +0000270 if (unicode == unicode_empty ||
Benjamin Peterson29060642009-01-31 22:14:21 +0000271 (unicode->length == 1 &&
272 unicode->str[0] < 256U &&
273 unicode_latin1[unicode->str[0]] == unicode)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +0000274 PyErr_SetString(PyExc_SystemError,
Benjamin Peterson142957c2008-07-04 19:55:29 +0000275 "can't resize shared str objects");
Guido van Rossumd57fd912000-03-10 22:53:23 +0000276 return -1;
277 }
278
Thomas Wouters477c8d52006-05-27 19:21:47 +0000279 /* We allocate one more byte to make sure the string is Ux0000 terminated.
280 The overallocation is also used by fastsearch, which assumes that it's
281 safe to look at str[length] (without making any assumptions about what
282 it contains). */
283
Guido van Rossumd57fd912000-03-10 22:53:23 +0000284 oldstr = unicode->str;
Christian Heimesb186d002008-03-18 15:15:01 +0000285 unicode->str = PyObject_REALLOC(unicode->str,
Benjamin Peterson29060642009-01-31 22:14:21 +0000286 sizeof(Py_UNICODE) * (length + 1));
Guido van Rossumd57fd912000-03-10 22:53:23 +0000287 if (!unicode->str) {
Benjamin Peterson29060642009-01-31 22:14:21 +0000288 unicode->str = (Py_UNICODE *)oldstr;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000289 PyErr_NoMemory();
290 return -1;
291 }
292 unicode->str[length] = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000293 unicode->length = length;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000294
Benjamin Peterson29060642009-01-31 22:14:21 +0000295 reset:
Guido van Rossumd57fd912000-03-10 22:53:23 +0000296 /* Reset the object caches */
Marc-André Lemburgbff879c2000-08-03 18:46:08 +0000297 if (unicode->defenc) {
Georg Brandl8ee604b2010-07-29 14:23:06 +0000298 Py_CLEAR(unicode->defenc);
Guido van Rossumd57fd912000-03-10 22:53:23 +0000299 }
300 unicode->hash = -1;
Tim Petersced69f82003-09-16 20:30:58 +0000301
Guido van Rossumd57fd912000-03-10 22:53:23 +0000302 return 0;
303}
304
305/* We allocate one more byte to make sure the string is
Martin v. Löwis47383402007-08-15 07:32:56 +0000306 Ux0000 terminated; some code (e.g. new_identifier)
307 relies on that.
Guido van Rossumd57fd912000-03-10 22:53:23 +0000308
309 XXX This allocator could further be enhanced by assuring that the
Benjamin Peterson29060642009-01-31 22:14:21 +0000310 free list never reduces its size below 1.
Guido van Rossumd57fd912000-03-10 22:53:23 +0000311
312*/
313
314static
Martin v. Löwis18e16552006-02-15 17:27:45 +0000315PyUnicodeObject *_PyUnicode_New(Py_ssize_t length)
Guido van Rossumd57fd912000-03-10 22:53:23 +0000316{
317 register PyUnicodeObject *unicode;
318
Thomas Wouters477c8d52006-05-27 19:21:47 +0000319 /* Optimization for empty strings */
Guido van Rossumd57fd912000-03-10 22:53:23 +0000320 if (length == 0 && unicode_empty != NULL) {
321 Py_INCREF(unicode_empty);
322 return unicode_empty;
323 }
324
Neal Norwitz3ce5d922008-08-24 07:08:55 +0000325 /* Ensure we won't overflow the size. */
326 if (length > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
327 return (PyUnicodeObject *)PyErr_NoMemory();
328 }
329
Guido van Rossumd57fd912000-03-10 22:53:23 +0000330 /* Unicode freelist & memory allocation */
Christian Heimes2202f872008-02-06 14:31:34 +0000331 if (free_list) {
332 unicode = free_list;
333 free_list = *(PyUnicodeObject **)unicode;
334 numfree--;
Benjamin Peterson29060642009-01-31 22:14:21 +0000335 if (unicode->str) {
336 /* Keep-Alive optimization: we only upsize the buffer,
337 never downsize it. */
338 if ((unicode->length < length) &&
Jeremy Hyltondeb2dc62003-09-16 03:41:45 +0000339 unicode_resize(unicode, length) < 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +0000340 PyObject_DEL(unicode->str);
341 unicode->str = NULL;
342 }
Benjamin Peterson14339b62009-01-31 16:36:08 +0000343 }
Guido van Rossumad98db12001-06-14 17:52:02 +0000344 else {
Benjamin Peterson29060642009-01-31 22:14:21 +0000345 size_t new_size = sizeof(Py_UNICODE) * ((size_t)length + 1);
346 unicode->str = (Py_UNICODE*) PyObject_MALLOC(new_size);
Guido van Rossumad98db12001-06-14 17:52:02 +0000347 }
348 PyObject_INIT(unicode, &PyUnicode_Type);
Guido van Rossumd57fd912000-03-10 22:53:23 +0000349 }
350 else {
Benjamin Peterson29060642009-01-31 22:14:21 +0000351 size_t new_size;
Neil Schemenauer58aa8612002-04-12 03:07:20 +0000352 unicode = PyObject_New(PyUnicodeObject, &PyUnicode_Type);
Guido van Rossumd57fd912000-03-10 22:53:23 +0000353 if (unicode == NULL)
354 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +0000355 new_size = sizeof(Py_UNICODE) * ((size_t)length + 1);
356 unicode->str = (Py_UNICODE*) PyObject_MALLOC(new_size);
Guido van Rossumd57fd912000-03-10 22:53:23 +0000357 }
358
Guido van Rossum3c1bb802000-04-27 20:13:50 +0000359 if (!unicode->str) {
Benjamin Peterson29060642009-01-31 22:14:21 +0000360 PyErr_NoMemory();
361 goto onError;
Guido van Rossum3c1bb802000-04-27 20:13:50 +0000362 }
Jeremy Hyltond8082792003-09-16 19:41:39 +0000363 /* Initialize the first element to guard against cases where
Tim Petersced69f82003-09-16 20:30:58 +0000364 * the caller fails before initializing str -- unicode_resize()
365 * reads str[0], and the Keep-Alive optimization can keep memory
366 * allocated for str alive across a call to unicode_dealloc(unicode).
367 * We don't want unicode_resize to read uninitialized memory in
368 * that case.
369 */
Jeremy Hyltond8082792003-09-16 19:41:39 +0000370 unicode->str[0] = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000371 unicode->str[length] = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000372 unicode->length = length;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000373 unicode->hash = -1;
Walter Dörwald16807132007-05-25 13:52:07 +0000374 unicode->state = 0;
Marc-André Lemburgbff879c2000-08-03 18:46:08 +0000375 unicode->defenc = NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000376 return unicode;
Barry Warsaw51ac5802000-03-20 16:36:48 +0000377
Benjamin Peterson29060642009-01-31 22:14:21 +0000378 onError:
Amaury Forgeot d'Arc7888d082008-08-01 01:06:32 +0000379 /* XXX UNREF/NEWREF interface should be more symmetrical */
380 _Py_DEC_REFTOTAL;
Barry Warsaw51ac5802000-03-20 16:36:48 +0000381 _Py_ForgetReference((PyObject *)unicode);
Neil Schemenauer58aa8612002-04-12 03:07:20 +0000382 PyObject_Del(unicode);
Barry Warsaw51ac5802000-03-20 16:36:48 +0000383 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000384}
385
386static
Guido van Rossum9475a232001-10-05 20:51:39 +0000387void unicode_dealloc(register PyUnicodeObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +0000388{
Walter Dörwald16807132007-05-25 13:52:07 +0000389 switch (PyUnicode_CHECK_INTERNED(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +0000390 case SSTATE_NOT_INTERNED:
391 break;
Walter Dörwald16807132007-05-25 13:52:07 +0000392
Benjamin Peterson29060642009-01-31 22:14:21 +0000393 case SSTATE_INTERNED_MORTAL:
394 /* revive dead object temporarily for DelItem */
395 Py_REFCNT(unicode) = 3;
396 if (PyDict_DelItem(interned, (PyObject *)unicode) != 0)
397 Py_FatalError(
398 "deletion of interned string failed");
399 break;
Walter Dörwald16807132007-05-25 13:52:07 +0000400
Benjamin Peterson29060642009-01-31 22:14:21 +0000401 case SSTATE_INTERNED_IMMORTAL:
402 Py_FatalError("Immortal interned string died.");
Walter Dörwald16807132007-05-25 13:52:07 +0000403
Benjamin Peterson29060642009-01-31 22:14:21 +0000404 default:
405 Py_FatalError("Inconsistent interned string state.");
Walter Dörwald16807132007-05-25 13:52:07 +0000406 }
407
Guido van Rossum604ddf82001-12-06 20:03:56 +0000408 if (PyUnicode_CheckExact(unicode) &&
Benjamin Peterson29060642009-01-31 22:14:21 +0000409 numfree < PyUnicode_MAXFREELIST) {
Guido van Rossumfd4b9572000-04-10 13:51:10 +0000410 /* Keep-Alive optimization */
Benjamin Peterson29060642009-01-31 22:14:21 +0000411 if (unicode->length >= KEEPALIVE_SIZE_LIMIT) {
412 PyObject_DEL(unicode->str);
413 unicode->str = NULL;
414 unicode->length = 0;
415 }
416 if (unicode->defenc) {
Georg Brandl8ee604b2010-07-29 14:23:06 +0000417 Py_CLEAR(unicode->defenc);
Benjamin Peterson29060642009-01-31 22:14:21 +0000418 }
419 /* Add to free list */
Christian Heimes2202f872008-02-06 14:31:34 +0000420 *(PyUnicodeObject **)unicode = free_list;
421 free_list = unicode;
422 numfree++;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000423 }
424 else {
Benjamin Peterson29060642009-01-31 22:14:21 +0000425 PyObject_DEL(unicode->str);
426 Py_XDECREF(unicode->defenc);
427 Py_TYPE(unicode)->tp_free((PyObject *)unicode);
Guido van Rossumd57fd912000-03-10 22:53:23 +0000428 }
429}
430
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +0000431static
432int _PyUnicode_Resize(PyUnicodeObject **unicode, Py_ssize_t length)
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000433{
434 register PyUnicodeObject *v;
435
436 /* Argument checks */
437 if (unicode == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +0000438 PyErr_BadInternalCall();
439 return -1;
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000440 }
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +0000441 v = *unicode;
Christian Heimes90aa7642007-12-19 02:45:37 +0000442 if (v == NULL || !PyUnicode_Check(v) || Py_REFCNT(v) != 1 || length < 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +0000443 PyErr_BadInternalCall();
444 return -1;
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000445 }
446
447 /* Resizing unicode_empty and single character objects is not
448 possible since these are being shared. We simply return a fresh
449 copy with the same Unicode content. */
Tim Petersced69f82003-09-16 20:30:58 +0000450 if (v->length != length &&
Benjamin Peterson29060642009-01-31 22:14:21 +0000451 (v == unicode_empty || v->length == 1)) {
452 PyUnicodeObject *w = _PyUnicode_New(length);
453 if (w == NULL)
454 return -1;
455 Py_UNICODE_COPY(w->str, v->str,
456 length < v->length ? length : v->length);
457 Py_DECREF(*unicode);
458 *unicode = w;
459 return 0;
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000460 }
461
462 /* Note that we don't have to modify *unicode for unshared Unicode
463 objects, since we can modify them in-place. */
464 return unicode_resize(v, length);
465}
466
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +0000467int PyUnicode_Resize(PyObject **unicode, Py_ssize_t length)
468{
469 return _PyUnicode_Resize((PyUnicodeObject **)unicode, length);
470}
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000471
Guido van Rossumd57fd912000-03-10 22:53:23 +0000472PyObject *PyUnicode_FromUnicode(const Py_UNICODE *u,
Benjamin Peterson29060642009-01-31 22:14:21 +0000473 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +0000474{
475 PyUnicodeObject *unicode;
476
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000477 /* If the Unicode data is known at construction time, we can apply
478 some optimizations which share commonly used objects. */
479 if (u != NULL) {
480
Benjamin Peterson29060642009-01-31 22:14:21 +0000481 /* Optimization for empty strings */
482 if (size == 0 && unicode_empty != NULL) {
483 Py_INCREF(unicode_empty);
484 return (PyObject *)unicode_empty;
Benjamin Peterson14339b62009-01-31 16:36:08 +0000485 }
Benjamin Peterson29060642009-01-31 22:14:21 +0000486
487 /* Single character Unicode objects in the Latin-1 range are
488 shared when using this constructor */
489 if (size == 1 && *u < 256) {
490 unicode = unicode_latin1[*u];
491 if (!unicode) {
492 unicode = _PyUnicode_New(1);
493 if (!unicode)
494 return NULL;
495 unicode->str[0] = *u;
496 unicode_latin1[*u] = unicode;
497 }
498 Py_INCREF(unicode);
499 return (PyObject *)unicode;
500 }
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +0000501 }
Tim Petersced69f82003-09-16 20:30:58 +0000502
Guido van Rossumd57fd912000-03-10 22:53:23 +0000503 unicode = _PyUnicode_New(size);
504 if (!unicode)
505 return NULL;
506
507 /* Copy the Unicode data into the new object */
508 if (u != NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +0000509 Py_UNICODE_COPY(unicode->str, u, size);
Guido van Rossumd57fd912000-03-10 22:53:23 +0000510
511 return (PyObject *)unicode;
512}
513
Walter Dörwaldd2034312007-05-18 16:29:38 +0000514PyObject *PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size)
Walter Dörwaldacaa5a12007-05-05 12:00:46 +0000515{
516 PyUnicodeObject *unicode;
Christian Heimes33fe8092008-04-13 13:53:33 +0000517
Benjamin Peterson14339b62009-01-31 16:36:08 +0000518 if (size < 0) {
519 PyErr_SetString(PyExc_SystemError,
Benjamin Peterson29060642009-01-31 22:14:21 +0000520 "Negative size passed to PyUnicode_FromStringAndSize");
Benjamin Peterson14339b62009-01-31 16:36:08 +0000521 return NULL;
522 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000523
Walter Dörwaldacaa5a12007-05-05 12:00:46 +0000524 /* If the Unicode data is known at construction time, we can apply
Martin v. Löwis9c121062007-08-05 20:26:11 +0000525 some optimizations which share commonly used objects.
526 Also, this means the input must be UTF-8, so fall back to the
527 UTF-8 decoder at the end. */
Walter Dörwaldacaa5a12007-05-05 12:00:46 +0000528 if (u != NULL) {
529
Benjamin Peterson29060642009-01-31 22:14:21 +0000530 /* Optimization for empty strings */
531 if (size == 0 && unicode_empty != NULL) {
532 Py_INCREF(unicode_empty);
533 return (PyObject *)unicode_empty;
Benjamin Peterson14339b62009-01-31 16:36:08 +0000534 }
Benjamin Peterson29060642009-01-31 22:14:21 +0000535
536 /* Single characters are shared when using this constructor.
537 Restrict to ASCII, since the input must be UTF-8. */
538 if (size == 1 && Py_CHARMASK(*u) < 128) {
539 unicode = unicode_latin1[Py_CHARMASK(*u)];
540 if (!unicode) {
541 unicode = _PyUnicode_New(1);
542 if (!unicode)
543 return NULL;
544 unicode->str[0] = Py_CHARMASK(*u);
545 unicode_latin1[Py_CHARMASK(*u)] = unicode;
546 }
547 Py_INCREF(unicode);
548 return (PyObject *)unicode;
549 }
Martin v. Löwis9c121062007-08-05 20:26:11 +0000550
551 return PyUnicode_DecodeUTF8(u, size, NULL);
Walter Dörwaldacaa5a12007-05-05 12:00:46 +0000552 }
553
Walter Dörwald55507312007-05-18 13:12:10 +0000554 unicode = _PyUnicode_New(size);
Walter Dörwaldacaa5a12007-05-05 12:00:46 +0000555 if (!unicode)
556 return NULL;
557
Walter Dörwaldacaa5a12007-05-05 12:00:46 +0000558 return (PyObject *)unicode;
559}
560
Walter Dörwaldd2034312007-05-18 16:29:38 +0000561PyObject *PyUnicode_FromString(const char *u)
562{
563 size_t size = strlen(u);
564 if (size > PY_SSIZE_T_MAX) {
565 PyErr_SetString(PyExc_OverflowError, "input too long");
566 return NULL;
567 }
568
569 return PyUnicode_FromStringAndSize(u, size);
570}
571
Guido van Rossumd57fd912000-03-10 22:53:23 +0000572#ifdef HAVE_WCHAR_H
573
Mark Dickinson081dfee2009-03-18 14:47:41 +0000574#if (Py_UNICODE_SIZE == 2) && defined(SIZEOF_WCHAR_T) && (SIZEOF_WCHAR_T == 4)
575# define CONVERT_WCHAR_TO_SURROGATES
576#endif
577
578#ifdef CONVERT_WCHAR_TO_SURROGATES
579
580/* Here sizeof(wchar_t) is 4 but Py_UNICODE_SIZE == 2, so we need
581 to convert from UTF32 to UTF16. */
582
583PyObject *PyUnicode_FromWideChar(register const wchar_t *w,
584 Py_ssize_t size)
585{
586 PyUnicodeObject *unicode;
587 register Py_ssize_t i;
588 Py_ssize_t alloc;
589 const wchar_t *orig_w;
590
591 if (w == NULL) {
592 if (size == 0)
593 return PyUnicode_FromStringAndSize(NULL, 0);
594 PyErr_BadInternalCall();
595 return NULL;
596 }
597
598 if (size == -1) {
599 size = wcslen(w);
600 }
601
602 alloc = size;
603 orig_w = w;
604 for (i = size; i > 0; i--) {
605 if (*w > 0xFFFF)
606 alloc++;
607 w++;
608 }
609 w = orig_w;
610 unicode = _PyUnicode_New(alloc);
611 if (!unicode)
612 return NULL;
613
614 /* Copy the wchar_t data into the new object */
615 {
616 register Py_UNICODE *u;
617 u = PyUnicode_AS_UNICODE(unicode);
618 for (i = size; i > 0; i--) {
619 if (*w > 0xFFFF) {
620 wchar_t ordinal = *w++;
621 ordinal -= 0x10000;
622 *u++ = 0xD800 | (ordinal >> 10);
623 *u++ = 0xDC00 | (ordinal & 0x3FF);
624 }
625 else
626 *u++ = *w++;
627 }
628 }
629 return (PyObject *)unicode;
630}
631
632#else
633
Guido van Rossumd57fd912000-03-10 22:53:23 +0000634PyObject *PyUnicode_FromWideChar(register const wchar_t *w,
Benjamin Peterson29060642009-01-31 22:14:21 +0000635 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +0000636{
637 PyUnicodeObject *unicode;
638
639 if (w == NULL) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000640 if (size == 0)
641 return PyUnicode_FromStringAndSize(NULL, 0);
Benjamin Peterson29060642009-01-31 22:14:21 +0000642 PyErr_BadInternalCall();
643 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000644 }
645
Martin v. Löwis790465f2008-04-05 20:41:37 +0000646 if (size == -1) {
647 size = wcslen(w);
648 }
649
Guido van Rossumd57fd912000-03-10 22:53:23 +0000650 unicode = _PyUnicode_New(size);
651 if (!unicode)
652 return NULL;
653
654 /* Copy the wchar_t data into the new object */
Daniel Stutzbach8515eae2010-08-24 21:57:33 +0000655#if Py_UNICODE_SIZE == SIZEOF_WCHAR_T
Guido van Rossumd57fd912000-03-10 22:53:23 +0000656 memcpy(unicode->str, w, size * sizeof(wchar_t));
Tim Petersced69f82003-09-16 20:30:58 +0000657#else
Guido van Rossumd57fd912000-03-10 22:53:23 +0000658 {
Benjamin Peterson29060642009-01-31 22:14:21 +0000659 register Py_UNICODE *u;
660 register Py_ssize_t i;
661 u = PyUnicode_AS_UNICODE(unicode);
662 for (i = size; i > 0; i--)
663 *u++ = *w++;
Guido van Rossumd57fd912000-03-10 22:53:23 +0000664 }
665#endif
666
667 return (PyObject *)unicode;
668}
669
Mark Dickinson081dfee2009-03-18 14:47:41 +0000670#endif /* CONVERT_WCHAR_TO_SURROGATES */
671
672#undef CONVERT_WCHAR_TO_SURROGATES
673
Walter Dörwald346737f2007-05-31 10:44:43 +0000674static void
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000675makefmt(char *fmt, int longflag, int longlongflag, int size_tflag,
676 int zeropad, int width, int precision, char c)
Walter Dörwald346737f2007-05-31 10:44:43 +0000677{
Benjamin Peterson14339b62009-01-31 16:36:08 +0000678 *fmt++ = '%';
679 if (width) {
680 if (zeropad)
681 *fmt++ = '0';
682 fmt += sprintf(fmt, "%d", width);
683 }
684 if (precision)
685 fmt += sprintf(fmt, ".%d", precision);
686 if (longflag)
687 *fmt++ = 'l';
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000688 else if (longlongflag) {
689 /* longlongflag should only ever be nonzero on machines with
690 HAVE_LONG_LONG defined */
691#ifdef HAVE_LONG_LONG
692 char *f = PY_FORMAT_LONG_LONG;
693 while (*f)
694 *fmt++ = *f++;
695#else
696 /* we shouldn't ever get here */
697 assert(0);
698 *fmt++ = 'l';
699#endif
700 }
Benjamin Peterson14339b62009-01-31 16:36:08 +0000701 else if (size_tflag) {
702 char *f = PY_FORMAT_SIZE_T;
703 while (*f)
704 *fmt++ = *f++;
705 }
706 *fmt++ = c;
707 *fmt = '\0';
Walter Dörwald346737f2007-05-31 10:44:43 +0000708}
709
Walter Dörwaldd2034312007-05-18 16:29:38 +0000710#define appendstring(string) {for (copy = string;*copy;) *s++ = *copy++;}
711
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000712/* size of fixed-size buffer for formatting single arguments */
713#define ITEM_BUFFER_LEN 21
714/* maximum number of characters required for output of %ld. 21 characters
715 allows for 64-bit integers (in decimal) and an optional sign. */
716#define MAX_LONG_CHARS 21
717/* maximum number of characters required for output of %lld.
718 We need at most ceil(log10(256)*SIZEOF_LONG_LONG) digits,
719 plus 1 for the sign. 53/22 is an upper bound for log10(256). */
720#define MAX_LONG_LONG_CHARS (2 + (SIZEOF_LONG_LONG*53-1) / 22)
721
Walter Dörwaldd2034312007-05-18 16:29:38 +0000722PyObject *
723PyUnicode_FromFormatV(const char *format, va_list vargs)
724{
Benjamin Peterson14339b62009-01-31 16:36:08 +0000725 va_list count;
726 Py_ssize_t callcount = 0;
727 PyObject **callresults = NULL;
728 PyObject **callresult = NULL;
729 Py_ssize_t n = 0;
730 int width = 0;
731 int precision = 0;
732 int zeropad;
733 const char* f;
734 Py_UNICODE *s;
735 PyObject *string;
736 /* used by sprintf */
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000737 char buffer[ITEM_BUFFER_LEN+1];
Benjamin Peterson14339b62009-01-31 16:36:08 +0000738 /* use abuffer instead of buffer, if we need more space
739 * (which can happen if there's a format specifier with width). */
740 char *abuffer = NULL;
741 char *realbuffer;
742 Py_ssize_t abuffersize = 0;
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000743 char fmt[61]; /* should be enough for %0width.precisionlld */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000744 const char *copy;
Walter Dörwaldd2034312007-05-18 16:29:38 +0000745
Victor Stinner4a2b7a12010-08-13 14:03:48 +0000746 Py_VA_COPY(count, vargs);
Walter Dörwaldc1651a02009-05-03 22:55:55 +0000747 /* step 1: count the number of %S/%R/%A/%s format specifications
748 * (we call PyObject_Str()/PyObject_Repr()/PyObject_ASCII()/
749 * PyUnicode_DecodeUTF8() for these objects once during step 3 and put the
750 * result in an array) */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000751 for (f = format; *f; f++) {
Walter Dörwaldc1651a02009-05-03 22:55:55 +0000752 if (*f == '%') {
753 if (*(f+1)=='%')
754 continue;
Victor Stinner2b574a22011-03-01 22:48:49 +0000755 if (*(f+1)=='S' || *(f+1)=='R' || *(f+1)=='A' || *(f+1) == 'V')
Walter Dörwaldc1651a02009-05-03 22:55:55 +0000756 ++callcount;
David Malcolm96960882010-11-05 17:23:41 +0000757 while (Py_ISDIGIT((unsigned)*f))
Walter Dörwaldc1651a02009-05-03 22:55:55 +0000758 width = (width*10) + *f++ - '0';
David Malcolm96960882010-11-05 17:23:41 +0000759 while (*++f && *f != '%' && !Py_ISALPHA((unsigned)*f))
Walter Dörwaldc1651a02009-05-03 22:55:55 +0000760 ;
761 if (*f == 's')
762 ++callcount;
763 }
Benjamin Peterson9be0b2e2010-09-12 03:40:54 +0000764 else if (128 <= (unsigned char)*f) {
765 PyErr_Format(PyExc_ValueError,
766 "PyUnicode_FromFormatV() expects an ASCII-encoded format "
Victor Stinner4c7db312010-09-12 07:51:18 +0000767 "string, got a non-ASCII byte: 0x%02x",
Benjamin Peterson9be0b2e2010-09-12 03:40:54 +0000768 (unsigned char)*f);
Benjamin Petersond4ac96a2010-09-12 16:40:53 +0000769 return NULL;
Benjamin Peterson9be0b2e2010-09-12 03:40:54 +0000770 }
Benjamin Peterson14339b62009-01-31 16:36:08 +0000771 }
772 /* step 2: allocate memory for the results of
Walter Dörwaldc1651a02009-05-03 22:55:55 +0000773 * PyObject_Str()/PyObject_Repr()/PyUnicode_DecodeUTF8() calls */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000774 if (callcount) {
775 callresults = PyObject_Malloc(sizeof(PyObject *)*callcount);
776 if (!callresults) {
777 PyErr_NoMemory();
778 return NULL;
779 }
780 callresult = callresults;
781 }
782 /* step 3: figure out how large a buffer we need */
783 for (f = format; *f; f++) {
784 if (*f == '%') {
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000785#ifdef HAVE_LONG_LONG
786 int longlongflag = 0;
787#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +0000788 const char* p = f;
789 width = 0;
David Malcolm96960882010-11-05 17:23:41 +0000790 while (Py_ISDIGIT((unsigned)*f))
Benjamin Peterson14339b62009-01-31 16:36:08 +0000791 width = (width*10) + *f++ - '0';
David Malcolm96960882010-11-05 17:23:41 +0000792 while (*++f && *f != '%' && !Py_ISALPHA((unsigned)*f))
Benjamin Peterson14339b62009-01-31 16:36:08 +0000793 ;
Walter Dörwaldd2034312007-05-18 16:29:38 +0000794
Benjamin Peterson14339b62009-01-31 16:36:08 +0000795 /* skip the 'l' or 'z' in {%ld, %zd, %lu, %zu} since
796 * they don't affect the amount of space we reserve.
797 */
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000798 if (*f == 'l') {
799 if (f[1] == 'd' || f[1] == 'u') {
800 ++f;
801 }
802#ifdef HAVE_LONG_LONG
803 else if (f[1] == 'l' &&
804 (f[2] == 'd' || f[2] == 'u')) {
805 longlongflag = 1;
806 f += 2;
807 }
808#endif
809 }
810 else if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) {
Benjamin Peterson29060642009-01-31 22:14:21 +0000811 ++f;
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000812 }
Walter Dörwaldd2034312007-05-18 16:29:38 +0000813
Benjamin Peterson14339b62009-01-31 16:36:08 +0000814 switch (*f) {
815 case 'c':
Victor Stinner659eb842011-02-23 12:14:22 +0000816 {
817#ifndef Py_UNICODE_WIDE
818 int ordinal = va_arg(count, int);
819 if (ordinal > 0xffff)
820 n += 2;
821 else
822 n++;
823#else
Benjamin Peterson14339b62009-01-31 16:36:08 +0000824 (void)va_arg(count, int);
Victor Stinner659eb842011-02-23 12:14:22 +0000825 n++;
826#endif
827 break;
828 }
Benjamin Peterson14339b62009-01-31 16:36:08 +0000829 case '%':
830 n++;
831 break;
832 case 'd': case 'u': case 'i': case 'x':
833 (void) va_arg(count, int);
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000834#ifdef HAVE_LONG_LONG
835 if (longlongflag) {
836 if (width < MAX_LONG_LONG_CHARS)
837 width = MAX_LONG_LONG_CHARS;
838 }
839 else
840#endif
841 /* MAX_LONG_CHARS is enough to hold a 64-bit integer,
842 including sign. Decimal takes the most space. This
843 isn't enough for octal. If a width is specified we
844 need more (which we allocate later). */
845 if (width < MAX_LONG_CHARS)
846 width = MAX_LONG_CHARS;
Benjamin Peterson14339b62009-01-31 16:36:08 +0000847 n += width;
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000848 /* XXX should allow for large precision here too. */
Benjamin Peterson14339b62009-01-31 16:36:08 +0000849 if (abuffersize < width)
850 abuffersize = width;
851 break;
852 case 's':
853 {
854 /* UTF-8 */
Georg Brandl780b2a62009-05-05 09:19:59 +0000855 const char *s = va_arg(count, const char*);
Walter Dörwaldc1651a02009-05-03 22:55:55 +0000856 PyObject *str = PyUnicode_DecodeUTF8(s, strlen(s), "replace");
857 if (!str)
858 goto fail;
859 n += PyUnicode_GET_SIZE(str);
860 /* Remember the str and switch to the next slot */
861 *callresult++ = str;
Benjamin Peterson14339b62009-01-31 16:36:08 +0000862 break;
863 }
864 case 'U':
865 {
866 PyObject *obj = va_arg(count, PyObject *);
867 assert(obj && PyUnicode_Check(obj));
868 n += PyUnicode_GET_SIZE(obj);
869 break;
870 }
871 case 'V':
872 {
873 PyObject *obj = va_arg(count, PyObject *);
874 const char *str = va_arg(count, const char *);
Victor Stinner2b574a22011-03-01 22:48:49 +0000875 PyObject *str_obj;
Benjamin Peterson14339b62009-01-31 16:36:08 +0000876 assert(obj || str);
877 assert(!obj || PyUnicode_Check(obj));
Victor Stinner2b574a22011-03-01 22:48:49 +0000878 if (obj) {
Benjamin Peterson14339b62009-01-31 16:36:08 +0000879 n += PyUnicode_GET_SIZE(obj);
Victor Stinner2b574a22011-03-01 22:48:49 +0000880 *callresult++ = NULL;
881 }
882 else {
883 str_obj = PyUnicode_DecodeUTF8(str, strlen(str), "replace");
884 if (!str_obj)
885 goto fail;
886 n += PyUnicode_GET_SIZE(str_obj);
887 *callresult++ = str_obj;
888 }
Benjamin Peterson14339b62009-01-31 16:36:08 +0000889 break;
890 }
891 case 'S':
892 {
893 PyObject *obj = va_arg(count, PyObject *);
894 PyObject *str;
895 assert(obj);
896 str = PyObject_Str(obj);
897 if (!str)
898 goto fail;
899 n += PyUnicode_GET_SIZE(str);
900 /* Remember the str and switch to the next slot */
901 *callresult++ = str;
902 break;
903 }
904 case 'R':
905 {
906 PyObject *obj = va_arg(count, PyObject *);
907 PyObject *repr;
908 assert(obj);
909 repr = PyObject_Repr(obj);
910 if (!repr)
911 goto fail;
912 n += PyUnicode_GET_SIZE(repr);
913 /* Remember the repr and switch to the next slot */
914 *callresult++ = repr;
915 break;
916 }
917 case 'A':
918 {
919 PyObject *obj = va_arg(count, PyObject *);
920 PyObject *ascii;
921 assert(obj);
922 ascii = PyObject_ASCII(obj);
923 if (!ascii)
924 goto fail;
925 n += PyUnicode_GET_SIZE(ascii);
926 /* Remember the repr and switch to the next slot */
927 *callresult++ = ascii;
928 break;
929 }
930 case 'p':
931 (void) va_arg(count, int);
932 /* maximum 64-bit pointer representation:
933 * 0xffffffffffffffff
934 * so 19 characters is enough.
935 * XXX I count 18 -- what's the extra for?
936 */
937 n += 19;
938 break;
939 default:
940 /* if we stumble upon an unknown
941 formatting code, copy the rest of
942 the format string to the output
943 string. (we cannot just skip the
944 code, since there's no way to know
945 what's in the argument list) */
946 n += strlen(p);
947 goto expand;
948 }
949 } else
950 n++;
951 }
Benjamin Peterson29060642009-01-31 22:14:21 +0000952 expand:
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000953 if (abuffersize > ITEM_BUFFER_LEN) {
954 /* add 1 for sprintf's trailing null byte */
955 abuffer = PyObject_Malloc(abuffersize + 1);
Benjamin Peterson14339b62009-01-31 16:36:08 +0000956 if (!abuffer) {
957 PyErr_NoMemory();
958 goto fail;
959 }
960 realbuffer = abuffer;
961 }
962 else
963 realbuffer = buffer;
964 /* step 4: fill the buffer */
965 /* Since we've analyzed how much space we need for the worst case,
966 we don't have to resize the string.
967 There can be no errors beyond this point. */
968 string = PyUnicode_FromUnicode(NULL, n);
969 if (!string)
970 goto fail;
Walter Dörwaldd2034312007-05-18 16:29:38 +0000971
Benjamin Peterson14339b62009-01-31 16:36:08 +0000972 s = PyUnicode_AS_UNICODE(string);
973 callresult = callresults;
Walter Dörwaldd2034312007-05-18 16:29:38 +0000974
Benjamin Peterson14339b62009-01-31 16:36:08 +0000975 for (f = format; *f; f++) {
976 if (*f == '%') {
977 const char* p = f++;
978 int longflag = 0;
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000979 int longlongflag = 0;
Benjamin Peterson14339b62009-01-31 16:36:08 +0000980 int size_tflag = 0;
981 zeropad = (*f == '0');
982 /* parse the width.precision part */
983 width = 0;
David Malcolm96960882010-11-05 17:23:41 +0000984 while (Py_ISDIGIT((unsigned)*f))
Benjamin Peterson14339b62009-01-31 16:36:08 +0000985 width = (width*10) + *f++ - '0';
986 precision = 0;
987 if (*f == '.') {
988 f++;
David Malcolm96960882010-11-05 17:23:41 +0000989 while (Py_ISDIGIT((unsigned)*f))
Benjamin Peterson14339b62009-01-31 16:36:08 +0000990 precision = (precision*10) + *f++ - '0';
991 }
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +0000992 /* Handle %ld, %lu, %lld and %llu. */
993 if (*f == 'l') {
994 if (f[1] == 'd' || f[1] == 'u') {
995 longflag = 1;
996 ++f;
997 }
998#ifdef HAVE_LONG_LONG
999 else if (f[1] == 'l' &&
1000 (f[2] == 'd' || f[2] == 'u')) {
1001 longlongflag = 1;
1002 f += 2;
1003 }
1004#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +00001005 }
1006 /* handle the size_t flag. */
1007 if (*f == 'z' && (f[1] == 'd' || f[1] == 'u')) {
1008 size_tflag = 1;
1009 ++f;
1010 }
Walter Dörwaldd2034312007-05-18 16:29:38 +00001011
Benjamin Peterson14339b62009-01-31 16:36:08 +00001012 switch (*f) {
1013 case 'c':
Victor Stinner659eb842011-02-23 12:14:22 +00001014 {
1015 int ordinal = va_arg(vargs, int);
1016#ifndef Py_UNICODE_WIDE
1017 if (ordinal > 0xffff) {
1018 ordinal -= 0x10000;
1019 *s++ = 0xD800 | (ordinal >> 10);
1020 *s++ = 0xDC00 | (ordinal & 0x3FF);
1021 } else
1022#endif
1023 *s++ = ordinal;
Benjamin Peterson14339b62009-01-31 16:36:08 +00001024 break;
Victor Stinner659eb842011-02-23 12:14:22 +00001025 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00001026 case 'd':
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00001027 makefmt(fmt, longflag, longlongflag, size_tflag, zeropad,
1028 width, precision, 'd');
Benjamin Peterson14339b62009-01-31 16:36:08 +00001029 if (longflag)
1030 sprintf(realbuffer, fmt, va_arg(vargs, long));
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00001031#ifdef HAVE_LONG_LONG
1032 else if (longlongflag)
1033 sprintf(realbuffer, fmt, va_arg(vargs, PY_LONG_LONG));
1034#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +00001035 else if (size_tflag)
1036 sprintf(realbuffer, fmt, va_arg(vargs, Py_ssize_t));
1037 else
1038 sprintf(realbuffer, fmt, va_arg(vargs, int));
1039 appendstring(realbuffer);
1040 break;
1041 case 'u':
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00001042 makefmt(fmt, longflag, longlongflag, size_tflag, zeropad,
1043 width, precision, 'u');
Benjamin Peterson14339b62009-01-31 16:36:08 +00001044 if (longflag)
1045 sprintf(realbuffer, fmt, va_arg(vargs, unsigned long));
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00001046#ifdef HAVE_LONG_LONG
1047 else if (longlongflag)
1048 sprintf(realbuffer, fmt, va_arg(vargs,
1049 unsigned PY_LONG_LONG));
1050#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +00001051 else if (size_tflag)
1052 sprintf(realbuffer, fmt, va_arg(vargs, size_t));
1053 else
1054 sprintf(realbuffer, fmt, va_arg(vargs, unsigned int));
1055 appendstring(realbuffer);
1056 break;
1057 case 'i':
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00001058 makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'i');
Benjamin Peterson14339b62009-01-31 16:36:08 +00001059 sprintf(realbuffer, fmt, va_arg(vargs, int));
1060 appendstring(realbuffer);
1061 break;
1062 case 'x':
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00001063 makefmt(fmt, 0, 0, 0, zeropad, width, precision, 'x');
Benjamin Peterson14339b62009-01-31 16:36:08 +00001064 sprintf(realbuffer, fmt, va_arg(vargs, int));
1065 appendstring(realbuffer);
1066 break;
1067 case 's':
1068 {
Walter Dörwaldc1651a02009-05-03 22:55:55 +00001069 /* unused, since we already have the result */
1070 (void) va_arg(vargs, char *);
1071 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(*callresult),
1072 PyUnicode_GET_SIZE(*callresult));
1073 s += PyUnicode_GET_SIZE(*callresult);
1074 /* We're done with the unicode()/repr() => forget it */
1075 Py_DECREF(*callresult);
1076 /* switch to next unicode()/repr() result */
1077 ++callresult;
Benjamin Peterson14339b62009-01-31 16:36:08 +00001078 break;
1079 }
1080 case 'U':
1081 {
1082 PyObject *obj = va_arg(vargs, PyObject *);
1083 Py_ssize_t size = PyUnicode_GET_SIZE(obj);
1084 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(obj), size);
1085 s += size;
1086 break;
1087 }
1088 case 'V':
1089 {
1090 PyObject *obj = va_arg(vargs, PyObject *);
Victor Stinner2b574a22011-03-01 22:48:49 +00001091 va_arg(vargs, const char *);
Benjamin Peterson14339b62009-01-31 16:36:08 +00001092 if (obj) {
1093 Py_ssize_t size = PyUnicode_GET_SIZE(obj);
1094 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(obj), size);
1095 s += size;
1096 } else {
Victor Stinner2b574a22011-03-01 22:48:49 +00001097 Py_UNICODE_COPY(s, PyUnicode_AS_UNICODE(*callresult),
1098 PyUnicode_GET_SIZE(*callresult));
1099 s += PyUnicode_GET_SIZE(*callresult);
1100 Py_DECREF(*callresult);
Benjamin Peterson14339b62009-01-31 16:36:08 +00001101 }
Victor Stinner2b574a22011-03-01 22:48:49 +00001102 ++callresult;
Benjamin Peterson14339b62009-01-31 16:36:08 +00001103 break;
1104 }
1105 case 'S':
1106 case 'R':
Victor Stinner9a909002010-10-18 20:59:24 +00001107 case 'A':
Benjamin Peterson14339b62009-01-31 16:36:08 +00001108 {
1109 Py_UNICODE *ucopy;
1110 Py_ssize_t usize;
1111 Py_ssize_t upos;
1112 /* unused, since we already have the result */
1113 (void) va_arg(vargs, PyObject *);
1114 ucopy = PyUnicode_AS_UNICODE(*callresult);
1115 usize = PyUnicode_GET_SIZE(*callresult);
1116 for (upos = 0; upos<usize;)
1117 *s++ = ucopy[upos++];
1118 /* We're done with the unicode()/repr() => forget it */
1119 Py_DECREF(*callresult);
1120 /* switch to next unicode()/repr() result */
1121 ++callresult;
1122 break;
1123 }
1124 case 'p':
1125 sprintf(buffer, "%p", va_arg(vargs, void*));
1126 /* %p is ill-defined: ensure leading 0x. */
1127 if (buffer[1] == 'X')
1128 buffer[1] = 'x';
1129 else if (buffer[1] != 'x') {
1130 memmove(buffer+2, buffer, strlen(buffer)+1);
1131 buffer[0] = '0';
1132 buffer[1] = 'x';
1133 }
1134 appendstring(buffer);
1135 break;
1136 case '%':
1137 *s++ = '%';
1138 break;
1139 default:
1140 appendstring(p);
1141 goto end;
1142 }
Victor Stinner1205f272010-09-11 00:54:47 +00001143 }
Victor Stinner1205f272010-09-11 00:54:47 +00001144 else
Benjamin Peterson14339b62009-01-31 16:36:08 +00001145 *s++ = *f;
1146 }
Walter Dörwaldd2034312007-05-18 16:29:38 +00001147
Benjamin Peterson29060642009-01-31 22:14:21 +00001148 end:
Benjamin Peterson14339b62009-01-31 16:36:08 +00001149 if (callresults)
1150 PyObject_Free(callresults);
1151 if (abuffer)
1152 PyObject_Free(abuffer);
1153 PyUnicode_Resize(&string, s - PyUnicode_AS_UNICODE(string));
1154 return string;
Benjamin Peterson29060642009-01-31 22:14:21 +00001155 fail:
Benjamin Peterson14339b62009-01-31 16:36:08 +00001156 if (callresults) {
1157 PyObject **callresult2 = callresults;
1158 while (callresult2 < callresult) {
Victor Stinner2b574a22011-03-01 22:48:49 +00001159 Py_XDECREF(*callresult2);
Benjamin Peterson14339b62009-01-31 16:36:08 +00001160 ++callresult2;
1161 }
1162 PyObject_Free(callresults);
1163 }
1164 if (abuffer)
1165 PyObject_Free(abuffer);
1166 return NULL;
Walter Dörwaldd2034312007-05-18 16:29:38 +00001167}
1168
1169#undef appendstring
1170
1171PyObject *
1172PyUnicode_FromFormat(const char *format, ...)
1173{
Benjamin Peterson14339b62009-01-31 16:36:08 +00001174 PyObject* ret;
1175 va_list vargs;
Walter Dörwaldd2034312007-05-18 16:29:38 +00001176
1177#ifdef HAVE_STDARG_PROTOTYPES
Benjamin Peterson14339b62009-01-31 16:36:08 +00001178 va_start(vargs, format);
Walter Dörwaldd2034312007-05-18 16:29:38 +00001179#else
Benjamin Peterson14339b62009-01-31 16:36:08 +00001180 va_start(vargs);
Walter Dörwaldd2034312007-05-18 16:29:38 +00001181#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +00001182 ret = PyUnicode_FromFormatV(format, vargs);
1183 va_end(vargs);
1184 return ret;
Walter Dörwaldd2034312007-05-18 16:29:38 +00001185}
1186
Victor Stinner5593d8a2010-10-02 11:11:27 +00001187/* Helper function for PyUnicode_AsWideChar() and PyUnicode_AsWideCharString():
1188 convert a Unicode object to a wide character string.
1189
Victor Stinnerd88d9832011-09-06 02:00:05 +02001190 - If w is NULL: return the number of wide characters (including the null
Victor Stinner5593d8a2010-10-02 11:11:27 +00001191 character) required to convert the unicode object. Ignore size argument.
1192
Victor Stinnerd88d9832011-09-06 02:00:05 +02001193 - Otherwise: return the number of wide characters (excluding the null
Victor Stinner5593d8a2010-10-02 11:11:27 +00001194 character) written into w. Write at most size wide characters (including
Victor Stinnerd88d9832011-09-06 02:00:05 +02001195 the null character). */
Victor Stinner5593d8a2010-10-02 11:11:27 +00001196static Py_ssize_t
Victor Stinner137c34c2010-09-29 10:25:54 +00001197unicode_aswidechar(PyUnicodeObject *unicode,
1198 wchar_t *w,
1199 Py_ssize_t size)
1200{
1201#if Py_UNICODE_SIZE == SIZEOF_WCHAR_T
Victor Stinner5593d8a2010-10-02 11:11:27 +00001202 Py_ssize_t res;
1203 if (w != NULL) {
1204 res = PyUnicode_GET_SIZE(unicode);
1205 if (size > res)
1206 size = res + 1;
1207 else
1208 res = size;
1209 memcpy(w, unicode->str, size * sizeof(wchar_t));
1210 return res;
1211 }
1212 else
1213 return PyUnicode_GET_SIZE(unicode) + 1;
1214#elif Py_UNICODE_SIZE == 2 && SIZEOF_WCHAR_T == 4
1215 register const Py_UNICODE *u;
1216 const Py_UNICODE *uend;
1217 const wchar_t *worig, *wend;
1218 Py_ssize_t nchar;
1219
Victor Stinner137c34c2010-09-29 10:25:54 +00001220 u = PyUnicode_AS_UNICODE(unicode);
Victor Stinner5593d8a2010-10-02 11:11:27 +00001221 uend = u + PyUnicode_GET_SIZE(unicode);
1222 if (w != NULL) {
1223 worig = w;
1224 wend = w + size;
1225 while (u != uend && w != wend) {
1226 if (0xD800 <= u[0] && u[0] <= 0xDBFF
1227 && 0xDC00 <= u[1] && u[1] <= 0xDFFF)
1228 {
1229 *w = (((u[0] & 0x3FF) << 10) | (u[1] & 0x3FF)) + 0x10000;
1230 u += 2;
1231 }
1232 else {
1233 *w = *u;
1234 u++;
1235 }
1236 w++;
1237 }
1238 if (w != wend)
1239 *w = L'\0';
1240 return w - worig;
1241 }
1242 else {
Victor Stinnerd88d9832011-09-06 02:00:05 +02001243 nchar = 1; /* null character at the end */
Victor Stinner5593d8a2010-10-02 11:11:27 +00001244 while (u != uend) {
1245 if (0xD800 <= u[0] && u[0] <= 0xDBFF
1246 && 0xDC00 <= u[1] && u[1] <= 0xDFFF)
1247 u += 2;
1248 else
1249 u++;
1250 nchar++;
1251 }
1252 }
1253 return nchar;
1254#elif Py_UNICODE_SIZE == 4 && SIZEOF_WCHAR_T == 2
1255 register Py_UNICODE *u, *uend, ordinal;
1256 register Py_ssize_t i;
1257 wchar_t *worig, *wend;
1258 Py_ssize_t nchar;
1259
1260 u = PyUnicode_AS_UNICODE(unicode);
1261 uend = u + PyUnicode_GET_SIZE(u);
1262 if (w != NULL) {
1263 worig = w;
1264 wend = w + size;
1265 while (u != uend && w != wend) {
1266 ordinal = *u;
1267 if (ordinal > 0xffff) {
1268 ordinal -= 0x10000;
1269 *w++ = 0xD800 | (ordinal >> 10);
1270 *w++ = 0xDC00 | (ordinal & 0x3FF);
1271 }
1272 else
1273 *w++ = ordinal;
1274 u++;
1275 }
1276 if (w != wend)
1277 *w = 0;
1278 return w - worig;
1279 }
1280 else {
Victor Stinnerd88d9832011-09-06 02:00:05 +02001281 nchar = 1; /* null character */
Victor Stinner5593d8a2010-10-02 11:11:27 +00001282 while (u != uend) {
1283 if (*u > 0xffff)
1284 nchar += 2;
1285 else
1286 nchar++;
1287 u++;
1288 }
1289 return nchar;
1290 }
1291#else
1292# error "unsupported wchar_t and Py_UNICODE sizes, see issue #8670"
Victor Stinner137c34c2010-09-29 10:25:54 +00001293#endif
1294}
1295
1296Py_ssize_t
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00001297PyUnicode_AsWideChar(PyObject *unicode,
Victor Stinner137c34c2010-09-29 10:25:54 +00001298 wchar_t *w,
1299 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00001300{
1301 if (unicode == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00001302 PyErr_BadInternalCall();
1303 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00001304 }
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00001305 return unicode_aswidechar((PyUnicodeObject*)unicode, w, size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001306}
1307
Victor Stinner137c34c2010-09-29 10:25:54 +00001308wchar_t*
Victor Stinnerbeb4135b2010-10-07 01:02:42 +00001309PyUnicode_AsWideCharString(PyObject *unicode,
Victor Stinner137c34c2010-09-29 10:25:54 +00001310 Py_ssize_t *size)
1311{
1312 wchar_t* buffer;
1313 Py_ssize_t buflen;
1314
1315 if (unicode == NULL) {
1316 PyErr_BadInternalCall();
1317 return NULL;
1318 }
1319
Victor Stinnerbeb4135b2010-10-07 01:02:42 +00001320 buflen = unicode_aswidechar((PyUnicodeObject *)unicode, NULL, 0);
Victor Stinner5593d8a2010-10-02 11:11:27 +00001321 if (PY_SSIZE_T_MAX / sizeof(wchar_t) < buflen) {
Victor Stinner137c34c2010-09-29 10:25:54 +00001322 PyErr_NoMemory();
1323 return NULL;
1324 }
1325
Victor Stinner137c34c2010-09-29 10:25:54 +00001326 buffer = PyMem_MALLOC(buflen * sizeof(wchar_t));
1327 if (buffer == NULL) {
1328 PyErr_NoMemory();
1329 return NULL;
1330 }
Victor Stinnerbeb4135b2010-10-07 01:02:42 +00001331 buflen = unicode_aswidechar((PyUnicodeObject *)unicode, buffer, buflen);
Victor Stinner5593d8a2010-10-02 11:11:27 +00001332 if (size != NULL)
1333 *size = buflen;
Victor Stinner137c34c2010-09-29 10:25:54 +00001334 return buffer;
1335}
1336
Guido van Rossumd57fd912000-03-10 22:53:23 +00001337#endif
1338
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00001339PyObject *PyUnicode_FromOrdinal(int ordinal)
1340{
Guido van Rossum8ac004e2007-07-15 13:00:05 +00001341 Py_UNICODE s[2];
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00001342
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00001343 if (ordinal < 0 || ordinal > 0x10ffff) {
Benjamin Peterson29060642009-01-31 22:14:21 +00001344 PyErr_SetString(PyExc_ValueError,
1345 "chr() arg not in range(0x110000)");
1346 return NULL;
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00001347 }
Guido van Rossum8ac004e2007-07-15 13:00:05 +00001348
1349#ifndef Py_UNICODE_WIDE
1350 if (ordinal > 0xffff) {
1351 ordinal -= 0x10000;
1352 s[0] = 0xD800 | (ordinal >> 10);
1353 s[1] = 0xDC00 | (ordinal & 0x3FF);
1354 return PyUnicode_FromUnicode(s, 2);
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00001355 }
1356#endif
1357
Hye-Shik Chang40574832004-04-06 07:24:51 +00001358 s[0] = (Py_UNICODE)ordinal;
1359 return PyUnicode_FromUnicode(s, 1);
Marc-André Lemburgcc8764c2002-08-11 12:23:04 +00001360}
1361
Guido van Rossumd57fd912000-03-10 22:53:23 +00001362PyObject *PyUnicode_FromObject(register PyObject *obj)
1363{
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00001364 /* XXX Perhaps we should make this API an alias of
Benjamin Peterson29060642009-01-31 22:14:21 +00001365 PyObject_Str() instead ?! */
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00001366 if (PyUnicode_CheckExact(obj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00001367 Py_INCREF(obj);
1368 return obj;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00001369 }
1370 if (PyUnicode_Check(obj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00001371 /* For a Unicode subtype that's not a Unicode object,
1372 return a true Unicode object with the same data. */
1373 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(obj),
1374 PyUnicode_GET_SIZE(obj));
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00001375 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00001376 PyErr_Format(PyExc_TypeError,
1377 "Can't convert '%.100s' object to str implicitly",
Christian Heimes90aa7642007-12-19 02:45:37 +00001378 Py_TYPE(obj)->tp_name);
Guido van Rossum98297ee2007-11-06 21:34:58 +00001379 return NULL;
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00001380}
1381
1382PyObject *PyUnicode_FromEncodedObject(register PyObject *obj,
Benjamin Peterson29060642009-01-31 22:14:21 +00001383 const char *encoding,
1384 const char *errors)
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00001385{
Antoine Pitroub0fa8312010-09-01 15:10:12 +00001386 Py_buffer buffer;
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00001387 PyObject *v;
Tim Petersced69f82003-09-16 20:30:58 +00001388
Guido van Rossumd57fd912000-03-10 22:53:23 +00001389 if (obj == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00001390 PyErr_BadInternalCall();
1391 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00001392 }
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00001393
Antoine Pitroub0fa8312010-09-01 15:10:12 +00001394 /* Decoding bytes objects is the most common case and should be fast */
1395 if (PyBytes_Check(obj)) {
1396 if (PyBytes_GET_SIZE(obj) == 0) {
1397 Py_INCREF(unicode_empty);
1398 v = (PyObject *) unicode_empty;
1399 }
1400 else {
1401 v = PyUnicode_Decode(
1402 PyBytes_AS_STRING(obj), PyBytes_GET_SIZE(obj),
1403 encoding, errors);
1404 }
1405 return v;
1406 }
1407
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00001408 if (PyUnicode_Check(obj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00001409 PyErr_SetString(PyExc_TypeError,
1410 "decoding str is not supported");
1411 return NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +00001412 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +00001413
Antoine Pitroub0fa8312010-09-01 15:10:12 +00001414 /* Retrieve a bytes buffer view through the PEP 3118 buffer interface */
1415 if (PyObject_GetBuffer(obj, &buffer, PyBUF_SIMPLE) < 0) {
1416 PyErr_Format(PyExc_TypeError,
1417 "coercing to str: need bytes, bytearray "
1418 "or buffer-like object, %.80s found",
1419 Py_TYPE(obj)->tp_name);
1420 return NULL;
Marc-André Lemburg6871f6a2001-09-20 12:53:16 +00001421 }
Tim Petersced69f82003-09-16 20:30:58 +00001422
Antoine Pitroub0fa8312010-09-01 15:10:12 +00001423 if (buffer.len == 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00001424 Py_INCREF(unicode_empty);
Antoine Pitroub0fa8312010-09-01 15:10:12 +00001425 v = (PyObject *) unicode_empty;
Guido van Rossumd57fd912000-03-10 22:53:23 +00001426 }
Tim Petersced69f82003-09-16 20:30:58 +00001427 else
Antoine Pitroub0fa8312010-09-01 15:10:12 +00001428 v = PyUnicode_Decode((char*) buffer.buf, buffer.len, encoding, errors);
Marc-André Lemburgad7c98e2001-01-17 17:09:53 +00001429
Antoine Pitroub0fa8312010-09-01 15:10:12 +00001430 PyBuffer_Release(&buffer);
Marc-André Lemburg5a5c81a2000-07-07 13:46:42 +00001431 return v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00001432}
1433
Victor Stinner600d3be2010-06-10 12:00:55 +00001434/* Convert encoding to lower case and replace '_' with '-' in order to
Victor Stinner37296e82010-06-10 13:36:23 +00001435 catch e.g. UTF_8. Return 0 on error (encoding is longer than lower_len-1),
1436 1 on success. */
Victor Stinner20b654a2013-01-03 01:08:58 +01001437int
1438_Py_normalize_encoding(const char *encoding,
Victor Stinner37296e82010-06-10 13:36:23 +00001439 char *lower,
1440 size_t lower_len)
Guido van Rossumd57fd912000-03-10 22:53:23 +00001441{
Guido van Rossumdaa251c2007-10-25 23:47:33 +00001442 const char *e;
Victor Stinner600d3be2010-06-10 12:00:55 +00001443 char *l;
1444 char *l_end;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00001445
Guido van Rossumdaa251c2007-10-25 23:47:33 +00001446 e = encoding;
1447 l = lower;
Victor Stinner600d3be2010-06-10 12:00:55 +00001448 l_end = &lower[lower_len - 1];
Victor Stinner37296e82010-06-10 13:36:23 +00001449 while (*e) {
1450 if (l == l_end)
1451 return 0;
David Malcolm96960882010-11-05 17:23:41 +00001452 if (Py_ISUPPER(*e)) {
1453 *l++ = Py_TOLOWER(*e++);
Guido van Rossumdaa251c2007-10-25 23:47:33 +00001454 }
1455 else if (*e == '_') {
1456 *l++ = '-';
1457 e++;
1458 }
1459 else {
1460 *l++ = *e++;
1461 }
1462 }
1463 *l = '\0';
Victor Stinner37296e82010-06-10 13:36:23 +00001464 return 1;
Victor Stinner600d3be2010-06-10 12:00:55 +00001465}
1466
1467PyObject *PyUnicode_Decode(const char *s,
1468 Py_ssize_t size,
1469 const char *encoding,
1470 const char *errors)
1471{
1472 PyObject *buffer = NULL, *unicode;
1473 Py_buffer info;
1474 char lower[11]; /* Enough for any encoding shortcut */
1475
1476 if (encoding == NULL)
1477 encoding = PyUnicode_GetDefaultEncoding();
Fred Drakee4315f52000-05-09 19:53:39 +00001478
1479 /* Shortcuts for common default encodings */
Victor Stinner20b654a2013-01-03 01:08:58 +01001480 if (_Py_normalize_encoding(encoding, lower, sizeof(lower))) {
Victor Stinner37296e82010-06-10 13:36:23 +00001481 if (strcmp(lower, "utf-8") == 0)
1482 return PyUnicode_DecodeUTF8(s, size, errors);
1483 else if ((strcmp(lower, "latin-1") == 0) ||
1484 (strcmp(lower, "iso-8859-1") == 0))
1485 return PyUnicode_DecodeLatin1(s, size, errors);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00001486#if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)
Victor Stinner37296e82010-06-10 13:36:23 +00001487 else if (strcmp(lower, "mbcs") == 0)
1488 return PyUnicode_DecodeMBCS(s, size, errors);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00001489#endif
Victor Stinner37296e82010-06-10 13:36:23 +00001490 else if (strcmp(lower, "ascii") == 0)
1491 return PyUnicode_DecodeASCII(s, size, errors);
1492 else if (strcmp(lower, "utf-16") == 0)
1493 return PyUnicode_DecodeUTF16(s, size, errors, 0);
1494 else if (strcmp(lower, "utf-32") == 0)
1495 return PyUnicode_DecodeUTF32(s, size, errors, 0);
1496 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00001497
1498 /* Decode via the codec registry */
Guido van Rossumbe801ac2007-10-08 03:32:34 +00001499 buffer = NULL;
Antoine Pitrouc3b39242009-01-03 16:59:18 +00001500 if (PyBuffer_FillInfo(&info, NULL, (void *)s, size, 1, PyBUF_FULL_RO) < 0)
Guido van Rossumbe801ac2007-10-08 03:32:34 +00001501 goto onError;
Antoine Pitrouee58fa42008-08-19 18:22:14 +00001502 buffer = PyMemoryView_FromBuffer(&info);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001503 if (buffer == NULL)
1504 goto onError;
1505 unicode = PyCodec_Decode(buffer, encoding, errors);
1506 if (unicode == NULL)
1507 goto onError;
1508 if (!PyUnicode_Check(unicode)) {
1509 PyErr_Format(PyExc_TypeError,
Benjamin Peterson142957c2008-07-04 19:55:29 +00001510 "decoder did not return a str object (type=%.400s)",
Christian Heimes90aa7642007-12-19 02:45:37 +00001511 Py_TYPE(unicode)->tp_name);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001512 Py_DECREF(unicode);
1513 goto onError;
1514 }
1515 Py_DECREF(buffer);
1516 return unicode;
Tim Petersced69f82003-09-16 20:30:58 +00001517
Benjamin Peterson29060642009-01-31 22:14:21 +00001518 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00001519 Py_XDECREF(buffer);
1520 return NULL;
1521}
1522
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00001523PyObject *PyUnicode_AsDecodedObject(PyObject *unicode,
1524 const char *encoding,
1525 const char *errors)
1526{
1527 PyObject *v;
1528
1529 if (!PyUnicode_Check(unicode)) {
1530 PyErr_BadArgument();
1531 goto onError;
1532 }
1533
1534 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00001535 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00001536
1537 /* Decode via the codec registry */
1538 v = PyCodec_Decode(unicode, encoding, errors);
1539 if (v == NULL)
1540 goto onError;
1541 return v;
1542
Benjamin Peterson29060642009-01-31 22:14:21 +00001543 onError:
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00001544 return NULL;
1545}
1546
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001547PyObject *PyUnicode_AsDecodedUnicode(PyObject *unicode,
1548 const char *encoding,
1549 const char *errors)
1550{
1551 PyObject *v;
1552
1553 if (!PyUnicode_Check(unicode)) {
1554 PyErr_BadArgument();
1555 goto onError;
1556 }
1557
1558 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00001559 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001560
1561 /* Decode via the codec registry */
1562 v = PyCodec_Decode(unicode, encoding, errors);
1563 if (v == NULL)
1564 goto onError;
1565 if (!PyUnicode_Check(v)) {
1566 PyErr_Format(PyExc_TypeError,
Benjamin Peterson142957c2008-07-04 19:55:29 +00001567 "decoder did not return a str object (type=%.400s)",
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001568 Py_TYPE(v)->tp_name);
1569 Py_DECREF(v);
1570 goto onError;
1571 }
1572 return v;
1573
Benjamin Peterson29060642009-01-31 22:14:21 +00001574 onError:
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001575 return NULL;
1576}
1577
Guido van Rossumd57fd912000-03-10 22:53:23 +00001578PyObject *PyUnicode_Encode(const Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00001579 Py_ssize_t size,
1580 const char *encoding,
1581 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00001582{
1583 PyObject *v, *unicode;
Tim Petersced69f82003-09-16 20:30:58 +00001584
Guido van Rossumd57fd912000-03-10 22:53:23 +00001585 unicode = PyUnicode_FromUnicode(s, size);
1586 if (unicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00001587 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00001588 v = PyUnicode_AsEncodedString(unicode, encoding, errors);
1589 Py_DECREF(unicode);
1590 return v;
1591}
1592
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00001593PyObject *PyUnicode_AsEncodedObject(PyObject *unicode,
1594 const char *encoding,
1595 const char *errors)
1596{
1597 PyObject *v;
1598
1599 if (!PyUnicode_Check(unicode)) {
1600 PyErr_BadArgument();
1601 goto onError;
1602 }
1603
1604 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00001605 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00001606
1607 /* Encode via the codec registry */
1608 v = PyCodec_Encode(unicode, encoding, errors);
1609 if (v == NULL)
1610 goto onError;
1611 return v;
1612
Benjamin Peterson29060642009-01-31 22:14:21 +00001613 onError:
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00001614 return NULL;
1615}
1616
Victor Stinnerad158722010-10-27 00:25:46 +00001617PyObject *
1618PyUnicode_EncodeFSDefault(PyObject *unicode)
Victor Stinnerae6265f2010-05-15 16:27:27 +00001619{
Victor Stinner313a1202010-06-11 23:56:51 +00001620#if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)
Victor Stinnerad158722010-10-27 00:25:46 +00001621 return PyUnicode_EncodeMBCS(PyUnicode_AS_UNICODE(unicode),
1622 PyUnicode_GET_SIZE(unicode),
1623 NULL);
1624#elif defined(__APPLE__)
1625 return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode),
1626 PyUnicode_GET_SIZE(unicode),
1627 "surrogateescape");
1628#else
Victor Stinner3cbf14b2011-04-27 00:24:21 +02001629 PyInterpreterState *interp = PyThreadState_GET()->interp;
1630 /* Bootstrap check: if the filesystem codec is implemented in Python, we
1631 cannot use it to encode and decode filenames before it is loaded. Load
1632 the Python codec requires to encode at least its own filename. Use the C
1633 version of the locale codec until the codec registry is initialized and
1634 the Python codec is loaded.
1635
1636 Py_FileSystemDefaultEncoding is shared between all interpreters, we
1637 cannot only rely on it: check also interp->fscodec_initialized for
1638 subinterpreters. */
1639 if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) {
Victor Stinnerae6265f2010-05-15 16:27:27 +00001640 return PyUnicode_AsEncodedString(unicode,
1641 Py_FileSystemDefaultEncoding,
1642 "surrogateescape");
Victor Stinnerc39211f2010-09-29 16:35:47 +00001643 }
1644 else {
Victor Stinnerf3170cc2010-10-15 12:04:23 +00001645 /* locale encoding with surrogateescape */
1646 wchar_t *wchar;
1647 char *bytes;
1648 PyObject *bytes_obj;
Victor Stinner2f02a512010-11-08 22:43:46 +00001649 size_t error_pos;
Victor Stinnerf3170cc2010-10-15 12:04:23 +00001650
1651 wchar = PyUnicode_AsWideCharString(unicode, NULL);
1652 if (wchar == NULL)
1653 return NULL;
Victor Stinner2f02a512010-11-08 22:43:46 +00001654 bytes = _Py_wchar2char(wchar, &error_pos);
1655 if (bytes == NULL) {
1656 if (error_pos != (size_t)-1) {
1657 char *errmsg = strerror(errno);
1658 PyObject *exc = NULL;
1659 if (errmsg == NULL)
1660 errmsg = "Py_wchar2char() failed";
1661 raise_encode_exception(&exc,
1662 "filesystemencoding",
1663 PyUnicode_AS_UNICODE(unicode), PyUnicode_GET_SIZE(unicode),
1664 error_pos, error_pos+1,
1665 errmsg);
1666 Py_XDECREF(exc);
1667 }
1668 else
1669 PyErr_NoMemory();
1670 PyMem_Free(wchar);
Victor Stinnerf3170cc2010-10-15 12:04:23 +00001671 return NULL;
Victor Stinner2f02a512010-11-08 22:43:46 +00001672 }
1673 PyMem_Free(wchar);
Victor Stinnerf3170cc2010-10-15 12:04:23 +00001674
1675 bytes_obj = PyBytes_FromString(bytes);
1676 PyMem_Free(bytes);
1677 return bytes_obj;
Victor Stinnerc39211f2010-09-29 16:35:47 +00001678 }
Victor Stinnerad158722010-10-27 00:25:46 +00001679#endif
Victor Stinnerae6265f2010-05-15 16:27:27 +00001680}
1681
Guido van Rossumd57fd912000-03-10 22:53:23 +00001682PyObject *PyUnicode_AsEncodedString(PyObject *unicode,
1683 const char *encoding,
1684 const char *errors)
1685{
1686 PyObject *v;
Victor Stinner600d3be2010-06-10 12:00:55 +00001687 char lower[11]; /* Enough for any encoding shortcut */
Tim Petersced69f82003-09-16 20:30:58 +00001688
Guido van Rossumd57fd912000-03-10 22:53:23 +00001689 if (!PyUnicode_Check(unicode)) {
1690 PyErr_BadArgument();
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00001691 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00001692 }
Fred Drakee4315f52000-05-09 19:53:39 +00001693
Tim Petersced69f82003-09-16 20:30:58 +00001694 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00001695 encoding = PyUnicode_GetDefaultEncoding();
Fred Drakee4315f52000-05-09 19:53:39 +00001696
1697 /* Shortcuts for common default encodings */
Victor Stinner20b654a2013-01-03 01:08:58 +01001698 if (_Py_normalize_encoding(encoding, lower, sizeof(lower))) {
Victor Stinner37296e82010-06-10 13:36:23 +00001699 if (strcmp(lower, "utf-8") == 0)
1700 return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode),
1701 PyUnicode_GET_SIZE(unicode),
1702 errors);
1703 else if ((strcmp(lower, "latin-1") == 0) ||
1704 (strcmp(lower, "iso-8859-1") == 0))
1705 return PyUnicode_EncodeLatin1(PyUnicode_AS_UNICODE(unicode),
1706 PyUnicode_GET_SIZE(unicode),
1707 errors);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00001708#if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)
Victor Stinner37296e82010-06-10 13:36:23 +00001709 else if (strcmp(lower, "mbcs") == 0)
1710 return PyUnicode_EncodeMBCS(PyUnicode_AS_UNICODE(unicode),
1711 PyUnicode_GET_SIZE(unicode),
1712 errors);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00001713#endif
Victor Stinner37296e82010-06-10 13:36:23 +00001714 else if (strcmp(lower, "ascii") == 0)
1715 return PyUnicode_EncodeASCII(PyUnicode_AS_UNICODE(unicode),
1716 PyUnicode_GET_SIZE(unicode),
1717 errors);
1718 }
Victor Stinner59e62db2010-05-15 13:14:32 +00001719 /* During bootstrap, we may need to find the encodings
1720 package, to load the file system encoding, and require the
1721 file system encoding in order to load the encodings
1722 package.
Christian Heimes6a27efa2008-10-30 21:48:26 +00001723
Victor Stinner59e62db2010-05-15 13:14:32 +00001724 Break out of this dependency by assuming that the path to
1725 the encodings module is ASCII-only. XXX could try wcstombs
1726 instead, if the file system encoding is the locale's
1727 encoding. */
Victor Stinner37296e82010-06-10 13:36:23 +00001728 if (Py_FileSystemDefaultEncoding &&
Victor Stinner59e62db2010-05-15 13:14:32 +00001729 strcmp(encoding, Py_FileSystemDefaultEncoding) == 0 &&
1730 !PyThreadState_GET()->interp->codecs_initialized)
1731 return PyUnicode_EncodeASCII(PyUnicode_AS_UNICODE(unicode),
1732 PyUnicode_GET_SIZE(unicode),
1733 errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00001734
1735 /* Encode via the codec registry */
1736 v = PyCodec_Encode(unicode, encoding, errors);
1737 if (v == NULL)
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00001738 return NULL;
1739
1740 /* The normal path */
1741 if (PyBytes_Check(v))
1742 return v;
1743
1744 /* If the codec returns a buffer, raise a warning and convert to bytes */
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001745 if (PyByteArray_Check(v)) {
Victor Stinner4a2b7a12010-08-13 14:03:48 +00001746 int error;
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00001747 PyObject *b;
Victor Stinner4a2b7a12010-08-13 14:03:48 +00001748
1749 error = PyErr_WarnFormat(PyExc_RuntimeWarning, 1,
1750 "encoder %s returned bytearray instead of bytes",
1751 encoding);
1752 if (error) {
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00001753 Py_DECREF(v);
1754 return NULL;
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001755 }
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001756
Amaury Forgeot d'Arcf0481112008-09-05 20:48:47 +00001757 b = PyBytes_FromStringAndSize(PyByteArray_AS_STRING(v), Py_SIZE(v));
1758 Py_DECREF(v);
1759 return b;
1760 }
1761
1762 PyErr_Format(PyExc_TypeError,
1763 "encoder did not return a bytes object (type=%.400s)",
1764 Py_TYPE(v)->tp_name);
1765 Py_DECREF(v);
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001766 return NULL;
1767}
1768
1769PyObject *PyUnicode_AsEncodedUnicode(PyObject *unicode,
1770 const char *encoding,
1771 const char *errors)
1772{
1773 PyObject *v;
1774
1775 if (!PyUnicode_Check(unicode)) {
1776 PyErr_BadArgument();
1777 goto onError;
1778 }
1779
1780 if (encoding == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00001781 encoding = PyUnicode_GetDefaultEncoding();
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001782
1783 /* Encode via the codec registry */
1784 v = PyCodec_Encode(unicode, encoding, errors);
1785 if (v == NULL)
1786 goto onError;
1787 if (!PyUnicode_Check(v)) {
1788 PyErr_Format(PyExc_TypeError,
Benjamin Peterson142957c2008-07-04 19:55:29 +00001789 "encoder did not return an str object (type=%.400s)",
Marc-André Lemburgb2750b52008-06-06 12:18:17 +00001790 Py_TYPE(v)->tp_name);
1791 Py_DECREF(v);
1792 goto onError;
1793 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00001794 return v;
Tim Petersced69f82003-09-16 20:30:58 +00001795
Benjamin Peterson29060642009-01-31 22:14:21 +00001796 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00001797 return NULL;
1798}
1799
Marc-André Lemburgbff879c2000-08-03 18:46:08 +00001800PyObject *_PyUnicode_AsDefaultEncodedString(PyObject *unicode,
Benjamin Peterson29060642009-01-31 22:14:21 +00001801 const char *errors)
Marc-André Lemburgbff879c2000-08-03 18:46:08 +00001802{
1803 PyObject *v = ((PyUnicodeObject *)unicode)->defenc;
Marc-André Lemburgbff879c2000-08-03 18:46:08 +00001804 if (v)
1805 return v;
Guido van Rossumf15a29f2007-05-04 00:41:39 +00001806 if (errors != NULL)
1807 Py_FatalError("non-NULL encoding in _PyUnicode_AsDefaultEncodedString");
Guido van Rossum98297ee2007-11-06 21:34:58 +00001808 v = PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode),
Guido van Rossum06610092007-08-16 21:02:22 +00001809 PyUnicode_GET_SIZE(unicode),
1810 NULL);
Guido van Rossum98297ee2007-11-06 21:34:58 +00001811 if (!v)
Guido van Rossumf15a29f2007-05-04 00:41:39 +00001812 return NULL;
Guido van Rossume7a0d392007-07-12 07:53:00 +00001813 ((PyUnicodeObject *)unicode)->defenc = v;
Marc-André Lemburgbff879c2000-08-03 18:46:08 +00001814 return v;
1815}
1816
Guido van Rossum00bc0e02007-10-15 02:52:41 +00001817PyObject*
Christian Heimes5894ba72007-11-04 11:43:14 +00001818PyUnicode_DecodeFSDefault(const char *s) {
Guido van Rossum00bc0e02007-10-15 02:52:41 +00001819 Py_ssize_t size = (Py_ssize_t)strlen(s);
Christian Heimes5894ba72007-11-04 11:43:14 +00001820 return PyUnicode_DecodeFSDefaultAndSize(s, size);
1821}
Guido van Rossum00bc0e02007-10-15 02:52:41 +00001822
Christian Heimes5894ba72007-11-04 11:43:14 +00001823PyObject*
1824PyUnicode_DecodeFSDefaultAndSize(const char *s, Py_ssize_t size)
1825{
Victor Stinnerad158722010-10-27 00:25:46 +00001826#if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)
1827 return PyUnicode_DecodeMBCS(s, size, NULL);
1828#elif defined(__APPLE__)
1829 return PyUnicode_DecodeUTF8(s, size, "surrogateescape");
1830#else
Victor Stinner3cbf14b2011-04-27 00:24:21 +02001831 PyInterpreterState *interp = PyThreadState_GET()->interp;
1832 /* Bootstrap check: if the filesystem codec is implemented in Python, we
1833 cannot use it to encode and decode filenames before it is loaded. Load
1834 the Python codec requires to encode at least its own filename. Use the C
1835 version of the locale codec until the codec registry is initialized and
1836 the Python codec is loaded.
1837
1838 Py_FileSystemDefaultEncoding is shared between all interpreters, we
1839 cannot only rely on it: check also interp->fscodec_initialized for
1840 subinterpreters. */
1841 if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) {
Guido van Rossum00bc0e02007-10-15 02:52:41 +00001842 return PyUnicode_Decode(s, size,
1843 Py_FileSystemDefaultEncoding,
Victor Stinnerb9a20ad2010-04-30 16:37:52 +00001844 "surrogateescape");
Guido van Rossum00bc0e02007-10-15 02:52:41 +00001845 }
1846 else {
Victor Stinnerf3170cc2010-10-15 12:04:23 +00001847 /* locale encoding with surrogateescape */
1848 wchar_t *wchar;
1849 PyObject *unicode;
Victor Stinner168e1172010-10-16 23:16:16 +00001850 size_t len;
Victor Stinnerf3170cc2010-10-15 12:04:23 +00001851
1852 if (s[size] != '\0' || size != strlen(s)) {
1853 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
1854 return NULL;
1855 }
1856
Victor Stinner168e1172010-10-16 23:16:16 +00001857 wchar = _Py_char2wchar(s, &len);
Victor Stinnerf3170cc2010-10-15 12:04:23 +00001858 if (wchar == NULL)
Victor Stinnerd5af0a52010-11-08 23:34:29 +00001859 return PyErr_NoMemory();
Victor Stinnerf3170cc2010-10-15 12:04:23 +00001860
Victor Stinner168e1172010-10-16 23:16:16 +00001861 unicode = PyUnicode_FromWideChar(wchar, len);
Victor Stinnerf3170cc2010-10-15 12:04:23 +00001862 PyMem_Free(wchar);
1863 return unicode;
Guido van Rossum00bc0e02007-10-15 02:52:41 +00001864 }
Victor Stinnerad158722010-10-27 00:25:46 +00001865#endif
Guido van Rossum00bc0e02007-10-15 02:52:41 +00001866}
1867
Martin v. Löwis011e8422009-05-05 04:43:17 +00001868
1869int
Antoine Pitrou13348842012-01-29 18:36:34 +01001870_PyUnicode_HasNULChars(PyObject* s)
1871{
1872 static PyObject *nul = NULL;
1873
1874 if (nul == NULL)
1875 nul = PyUnicode_FromStringAndSize("\0", 1);
1876 if (nul == NULL)
1877 return -1;
1878 return PyUnicode_Contains(s, nul);
1879}
1880
1881
1882int
Martin v. Löwis011e8422009-05-05 04:43:17 +00001883PyUnicode_FSConverter(PyObject* arg, void* addr)
1884{
1885 PyObject *output = NULL;
1886 Py_ssize_t size;
1887 void *data;
Martin v. Löwisc15bdef2009-05-29 14:47:46 +00001888 if (arg == NULL) {
1889 Py_DECREF(*(PyObject**)addr);
1890 return 1;
1891 }
Victor Stinnerdcb24032010-04-22 12:08:36 +00001892 if (PyBytes_Check(arg)) {
Martin v. Löwis011e8422009-05-05 04:43:17 +00001893 output = arg;
1894 Py_INCREF(output);
1895 }
1896 else {
1897 arg = PyUnicode_FromObject(arg);
1898 if (!arg)
1899 return 0;
Victor Stinnerae6265f2010-05-15 16:27:27 +00001900 output = PyUnicode_EncodeFSDefault(arg);
Martin v. Löwis011e8422009-05-05 04:43:17 +00001901 Py_DECREF(arg);
1902 if (!output)
1903 return 0;
1904 if (!PyBytes_Check(output)) {
1905 Py_DECREF(output);
1906 PyErr_SetString(PyExc_TypeError, "encoder failed to return bytes");
1907 return 0;
1908 }
1909 }
Victor Stinner0ea2a462010-04-30 00:22:08 +00001910 size = PyBytes_GET_SIZE(output);
1911 data = PyBytes_AS_STRING(output);
Martin v. Löwis011e8422009-05-05 04:43:17 +00001912 if (size != strlen(data)) {
Benjamin Peterson7a6b44a2011-08-18 13:51:47 -05001913 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
Martin v. Löwis011e8422009-05-05 04:43:17 +00001914 Py_DECREF(output);
1915 return 0;
1916 }
1917 *(PyObject**)addr = output;
Martin v. Löwisc15bdef2009-05-29 14:47:46 +00001918 return Py_CLEANUP_SUPPORTED;
Martin v. Löwis011e8422009-05-05 04:43:17 +00001919}
1920
1921
Victor Stinner47fcb5b2010-08-13 23:59:58 +00001922int
1923PyUnicode_FSDecoder(PyObject* arg, void* addr)
1924{
1925 PyObject *output = NULL;
1926 Py_ssize_t size;
1927 void *data;
1928 if (arg == NULL) {
1929 Py_DECREF(*(PyObject**)addr);
1930 return 1;
1931 }
1932 if (PyUnicode_Check(arg)) {
1933 output = arg;
1934 Py_INCREF(output);
1935 }
1936 else {
1937 arg = PyBytes_FromObject(arg);
1938 if (!arg)
1939 return 0;
1940 output = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AS_STRING(arg),
1941 PyBytes_GET_SIZE(arg));
1942 Py_DECREF(arg);
1943 if (!output)
1944 return 0;
1945 if (!PyUnicode_Check(output)) {
1946 Py_DECREF(output);
1947 PyErr_SetString(PyExc_TypeError, "decoder failed to return unicode");
1948 return 0;
1949 }
1950 }
1951 size = PyUnicode_GET_SIZE(output);
1952 data = PyUnicode_AS_UNICODE(output);
1953 if (size != Py_UNICODE_strlen(data)) {
1954 PyErr_SetString(PyExc_TypeError, "embedded NUL character");
1955 Py_DECREF(output);
1956 return 0;
1957 }
1958 *(PyObject**)addr = output;
1959 return Py_CLEANUP_SUPPORTED;
1960}
1961
1962
Martin v. Löwis5b222132007-06-10 09:51:05 +00001963char*
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +00001964_PyUnicode_AsStringAndSize(PyObject *unicode, Py_ssize_t *psize)
Martin v. Löwis5b222132007-06-10 09:51:05 +00001965{
Christian Heimesf3863112007-11-22 07:46:41 +00001966 PyObject *bytes;
Neal Norwitze0a0a6e2007-08-25 01:04:21 +00001967 if (!PyUnicode_Check(unicode)) {
1968 PyErr_BadArgument();
1969 return NULL;
1970 }
Christian Heimesf3863112007-11-22 07:46:41 +00001971 bytes = _PyUnicode_AsDefaultEncodedString(unicode, NULL);
1972 if (bytes == NULL)
Martin v. Löwis5b222132007-06-10 09:51:05 +00001973 return NULL;
Guido van Rossum7d1df6c2007-08-29 13:53:23 +00001974 if (psize != NULL)
Christian Heimes72b710a2008-05-26 13:28:38 +00001975 *psize = PyBytes_GET_SIZE(bytes);
1976 return PyBytes_AS_STRING(bytes);
Guido van Rossum7d1df6c2007-08-29 13:53:23 +00001977}
1978
1979char*
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +00001980_PyUnicode_AsString(PyObject *unicode)
Guido van Rossum7d1df6c2007-08-29 13:53:23 +00001981{
Marc-André Lemburg4cc0f242008-08-07 18:54:33 +00001982 return _PyUnicode_AsStringAndSize(unicode, NULL);
Martin v. Löwis5b222132007-06-10 09:51:05 +00001983}
1984
Guido van Rossumd57fd912000-03-10 22:53:23 +00001985Py_UNICODE *PyUnicode_AsUnicode(PyObject *unicode)
1986{
1987 if (!PyUnicode_Check(unicode)) {
1988 PyErr_BadArgument();
1989 goto onError;
1990 }
1991 return PyUnicode_AS_UNICODE(unicode);
1992
Benjamin Peterson29060642009-01-31 22:14:21 +00001993 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00001994 return NULL;
1995}
1996
Martin v. Löwis18e16552006-02-15 17:27:45 +00001997Py_ssize_t PyUnicode_GetSize(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00001998{
1999 if (!PyUnicode_Check(unicode)) {
2000 PyErr_BadArgument();
2001 goto onError;
2002 }
2003 return PyUnicode_GET_SIZE(unicode);
2004
Benjamin Peterson29060642009-01-31 22:14:21 +00002005 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00002006 return -1;
2007}
2008
Thomas Wouters78890102000-07-22 19:25:51 +00002009const char *PyUnicode_GetDefaultEncoding(void)
Fred Drakee4315f52000-05-09 19:53:39 +00002010{
Victor Stinner42cb4622010-09-01 19:39:01 +00002011 return "utf-8";
Fred Drakee4315f52000-05-09 19:53:39 +00002012}
2013
Victor Stinner554f3f02010-06-16 23:33:54 +00002014/* create or adjust a UnicodeDecodeError */
2015static void
2016make_decode_exception(PyObject **exceptionObject,
2017 const char *encoding,
2018 const char *input, Py_ssize_t length,
2019 Py_ssize_t startpos, Py_ssize_t endpos,
2020 const char *reason)
2021{
2022 if (*exceptionObject == NULL) {
2023 *exceptionObject = PyUnicodeDecodeError_Create(
2024 encoding, input, length, startpos, endpos, reason);
2025 }
2026 else {
2027 if (PyUnicodeDecodeError_SetStart(*exceptionObject, startpos))
2028 goto onError;
2029 if (PyUnicodeDecodeError_SetEnd(*exceptionObject, endpos))
2030 goto onError;
2031 if (PyUnicodeDecodeError_SetReason(*exceptionObject, reason))
2032 goto onError;
2033 }
2034 return;
2035
2036onError:
2037 Py_DECREF(*exceptionObject);
2038 *exceptionObject = NULL;
2039}
2040
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002041/* error handling callback helper:
2042 build arguments, call the callback and check the arguments,
Fred Drakedb390c12005-10-28 14:39:47 +00002043 if no exception occurred, copy the replacement to the output
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002044 and adjust various state variables.
2045 return 0 on success, -1 on error
2046*/
2047
2048static
2049int unicode_decode_call_errorhandler(const char *errors, PyObject **errorHandler,
Benjamin Peterson29060642009-01-31 22:14:21 +00002050 const char *encoding, const char *reason,
2051 const char **input, const char **inend, Py_ssize_t *startinpos,
2052 Py_ssize_t *endinpos, PyObject **exceptionObject, const char **inptr,
2053 PyUnicodeObject **output, Py_ssize_t *outpos, Py_UNICODE **outptr)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002054{
Benjamin Peterson142957c2008-07-04 19:55:29 +00002055 static char *argparse = "O!n;decoding error handler must return (str, int) tuple";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002056
2057 PyObject *restuple = NULL;
2058 PyObject *repunicode = NULL;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002059 Py_ssize_t outsize = PyUnicode_GET_SIZE(*output);
Walter Dörwalde78178e2007-07-30 13:31:40 +00002060 Py_ssize_t insize;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002061 Py_ssize_t requiredsize;
2062 Py_ssize_t newpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002063 Py_UNICODE *repptr;
Walter Dörwalde78178e2007-07-30 13:31:40 +00002064 PyObject *inputobj = NULL;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002065 Py_ssize_t repsize;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002066 int res = -1;
2067
2068 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002069 *errorHandler = PyCodec_LookupError(errors);
2070 if (*errorHandler == NULL)
2071 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002072 }
2073
Victor Stinner554f3f02010-06-16 23:33:54 +00002074 make_decode_exception(exceptionObject,
2075 encoding,
2076 *input, *inend - *input,
2077 *startinpos, *endinpos,
2078 reason);
2079 if (*exceptionObject == NULL)
2080 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002081
2082 restuple = PyObject_CallFunctionObjArgs(*errorHandler, *exceptionObject, NULL);
2083 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00002084 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002085 if (!PyTuple_Check(restuple)) {
Benjamin Petersond75fcb42009-02-19 04:22:03 +00002086 PyErr_SetString(PyExc_TypeError, &argparse[4]);
Benjamin Peterson29060642009-01-31 22:14:21 +00002087 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002088 }
2089 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type, &repunicode, &newpos))
Benjamin Peterson29060642009-01-31 22:14:21 +00002090 goto onError;
Walter Dörwalde78178e2007-07-30 13:31:40 +00002091
2092 /* Copy back the bytes variables, which might have been modified by the
2093 callback */
2094 inputobj = PyUnicodeDecodeError_GetObject(*exceptionObject);
2095 if (!inputobj)
2096 goto onError;
Christian Heimes72b710a2008-05-26 13:28:38 +00002097 if (!PyBytes_Check(inputobj)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002098 PyErr_Format(PyExc_TypeError, "exception attribute object must be bytes");
Walter Dörwalde78178e2007-07-30 13:31:40 +00002099 }
Christian Heimes72b710a2008-05-26 13:28:38 +00002100 *input = PyBytes_AS_STRING(inputobj);
2101 insize = PyBytes_GET_SIZE(inputobj);
Walter Dörwalde78178e2007-07-30 13:31:40 +00002102 *inend = *input + insize;
Walter Dörwald36f938f2007-08-10 10:11:43 +00002103 /* we can DECREF safely, as the exception has another reference,
2104 so the object won't go away. */
2105 Py_DECREF(inputobj);
Walter Dörwalde78178e2007-07-30 13:31:40 +00002106
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002107 if (newpos<0)
Benjamin Peterson29060642009-01-31 22:14:21 +00002108 newpos = insize+newpos;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00002109 if (newpos<0 || newpos>insize) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002110 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", newpos);
2111 goto onError;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00002112 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002113
2114 /* need more space? (at least enough for what we
2115 have+the replacement+the rest of the string (starting
2116 at the new input position), so we won't have to check space
2117 when there are no errors in the rest of the string) */
2118 repptr = PyUnicode_AS_UNICODE(repunicode);
2119 repsize = PyUnicode_GET_SIZE(repunicode);
2120 requiredsize = *outpos + repsize + insize-newpos;
2121 if (requiredsize > outsize) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002122 if (requiredsize<2*outsize)
2123 requiredsize = 2*outsize;
2124 if (_PyUnicode_Resize(output, requiredsize) < 0)
2125 goto onError;
2126 *outptr = PyUnicode_AS_UNICODE(*output) + *outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002127 }
2128 *endinpos = newpos;
Walter Dörwalde78178e2007-07-30 13:31:40 +00002129 *inptr = *input + newpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002130 Py_UNICODE_COPY(*outptr, repptr, repsize);
2131 *outptr += repsize;
2132 *outpos += repsize;
Walter Dörwalde78178e2007-07-30 13:31:40 +00002133
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002134 /* we made it! */
2135 res = 0;
2136
Benjamin Peterson29060642009-01-31 22:14:21 +00002137 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002138 Py_XDECREF(restuple);
2139 return res;
2140}
2141
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002142/* --- UTF-7 Codec -------------------------------------------------------- */
2143
Antoine Pitrou244651a2009-05-04 18:56:13 +00002144/* See RFC2152 for details. We encode conservatively and decode liberally. */
2145
2146/* Three simple macros defining base-64. */
2147
2148/* Is c a base-64 character? */
2149
2150#define IS_BASE64(c) \
2151 (((c) >= 'A' && (c) <= 'Z') || \
2152 ((c) >= 'a' && (c) <= 'z') || \
2153 ((c) >= '0' && (c) <= '9') || \
2154 (c) == '+' || (c) == '/')
2155
2156/* given that c is a base-64 character, what is its base-64 value? */
2157
2158#define FROM_BASE64(c) \
2159 (((c) >= 'A' && (c) <= 'Z') ? (c) - 'A' : \
2160 ((c) >= 'a' && (c) <= 'z') ? (c) - 'a' + 26 : \
2161 ((c) >= '0' && (c) <= '9') ? (c) - '0' + 52 : \
2162 (c) == '+' ? 62 : 63)
2163
2164/* What is the base-64 character of the bottom 6 bits of n? */
2165
2166#define TO_BASE64(n) \
2167 ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[(n) & 0x3f])
2168
2169/* DECODE_DIRECT: this byte encountered in a UTF-7 string should be
2170 * decoded as itself. We are permissive on decoding; the only ASCII
2171 * byte not decoding to itself is the + which begins a base64
2172 * string. */
2173
2174#define DECODE_DIRECT(c) \
2175 ((c) <= 127 && (c) != '+')
2176
2177/* The UTF-7 encoder treats ASCII characters differently according to
2178 * whether they are Set D, Set O, Whitespace, or special (i.e. none of
2179 * the above). See RFC2152. This array identifies these different
2180 * sets:
2181 * 0 : "Set D"
2182 * alphanumeric and '(),-./:?
2183 * 1 : "Set O"
2184 * !"#$%&*;<=>@[]^_`{|}
2185 * 2 : "whitespace"
2186 * ht nl cr sp
2187 * 3 : special (must be base64 encoded)
2188 * everything else (i.e. +\~ and non-printing codes 0-8 11-12 14-31 127)
2189 */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002190
Tim Petersced69f82003-09-16 20:30:58 +00002191static
Antoine Pitrou244651a2009-05-04 18:56:13 +00002192char utf7_category[128] = {
2193/* nul soh stx etx eot enq ack bel bs ht nl vt np cr so si */
2194 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, 3, 2, 3, 3,
2195/* dle dc1 dc2 dc3 dc4 nak syn etb can em sub esc fs gs rs us */
2196 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
2197/* sp ! " # $ % & ' ( ) * + , - . / */
2198 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0,
2199/* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? */
2200 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0,
2201/* @ A B C D E F G H I J K L M N O */
2202 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2203/* P Q R S T U V W X Y Z [ \ ] ^ _ */
2204 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 1, 1,
2205/* ` a b c d e f g h i j k l m n o */
2206 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2207/* p q r s t u v w x y z { | } ~ del */
2208 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 3, 3,
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002209};
2210
Antoine Pitrou244651a2009-05-04 18:56:13 +00002211/* ENCODE_DIRECT: this character should be encoded as itself. The
2212 * answer depends on whether we are encoding set O as itself, and also
2213 * on whether we are encoding whitespace as itself. RFC2152 makes it
2214 * clear that the answers to these questions vary between
2215 * applications, so this code needs to be flexible. */
Marc-André Lemburge115ec82005-10-19 22:33:31 +00002216
Antoine Pitrou244651a2009-05-04 18:56:13 +00002217#define ENCODE_DIRECT(c, directO, directWS) \
2218 ((c) < 128 && (c) > 0 && \
2219 ((utf7_category[(c)] == 0) || \
2220 (directWS && (utf7_category[(c)] == 2)) || \
2221 (directO && (utf7_category[(c)] == 1))))
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002222
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002223PyObject *PyUnicode_DecodeUTF7(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00002224 Py_ssize_t size,
2225 const char *errors)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002226{
Christian Heimes5d14c2b2007-11-20 23:38:09 +00002227 return PyUnicode_DecodeUTF7Stateful(s, size, errors, NULL);
2228}
2229
Antoine Pitrou244651a2009-05-04 18:56:13 +00002230/* The decoder. The only state we preserve is our read position,
2231 * i.e. how many characters we have consumed. So if we end in the
2232 * middle of a shift sequence we have to back off the read position
2233 * and the output to the beginning of the sequence, otherwise we lose
2234 * all the shift state (seen bits, number of bits seen, high
2235 * surrogate). */
2236
Christian Heimes5d14c2b2007-11-20 23:38:09 +00002237PyObject *PyUnicode_DecodeUTF7Stateful(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00002238 Py_ssize_t size,
2239 const char *errors,
2240 Py_ssize_t *consumed)
Christian Heimes5d14c2b2007-11-20 23:38:09 +00002241{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002242 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002243 Py_ssize_t startinpos;
2244 Py_ssize_t endinpos;
2245 Py_ssize_t outpos;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002246 const char *e;
2247 PyUnicodeObject *unicode;
2248 Py_UNICODE *p;
2249 const char *errmsg = "";
2250 int inShift = 0;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002251 Py_UNICODE *shiftOutStart;
2252 unsigned int base64bits = 0;
2253 unsigned long base64buffer = 0;
2254 Py_UNICODE surrogate = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002255 PyObject *errorHandler = NULL;
2256 PyObject *exc = NULL;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002257
2258 unicode = _PyUnicode_New(size);
2259 if (!unicode)
2260 return NULL;
Christian Heimes5d14c2b2007-11-20 23:38:09 +00002261 if (size == 0) {
2262 if (consumed)
2263 *consumed = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002264 return (PyObject *)unicode;
Christian Heimes5d14c2b2007-11-20 23:38:09 +00002265 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002266
2267 p = unicode->str;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002268 shiftOutStart = p;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002269 e = s + size;
2270
2271 while (s < e) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002272 Py_UNICODE ch;
Benjamin Peterson29060642009-01-31 22:14:21 +00002273 restart:
Antoine Pitrou5ffd9e92008-07-25 18:05:24 +00002274 ch = (unsigned char) *s;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002275
Antoine Pitrou244651a2009-05-04 18:56:13 +00002276 if (inShift) { /* in a base-64 section */
2277 if (IS_BASE64(ch)) { /* consume a base-64 character */
2278 base64buffer = (base64buffer << 6) | FROM_BASE64(ch);
2279 base64bits += 6;
2280 s++;
2281 if (base64bits >= 16) {
2282 /* we have enough bits for a UTF-16 value */
2283 Py_UNICODE outCh = (Py_UNICODE)
2284 (base64buffer >> (base64bits-16));
2285 base64bits -= 16;
2286 base64buffer &= (1 << base64bits) - 1; /* clear high bits */
2287 if (surrogate) {
2288 /* expecting a second surrogate */
2289 if (outCh >= 0xDC00 && outCh <= 0xDFFF) {
2290#ifdef Py_UNICODE_WIDE
2291 *p++ = (((surrogate & 0x3FF)<<10)
2292 | (outCh & 0x3FF)) + 0x10000;
2293#else
2294 *p++ = surrogate;
2295 *p++ = outCh;
2296#endif
2297 surrogate = 0;
Antoine Pitrou5418ee02011-11-15 01:42:21 +01002298 continue;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002299 }
2300 else {
Antoine Pitrou5418ee02011-11-15 01:42:21 +01002301 *p++ = surrogate;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002302 surrogate = 0;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002303 }
2304 }
Antoine Pitrou5418ee02011-11-15 01:42:21 +01002305 if (outCh >= 0xD800 && outCh <= 0xDBFF) {
Antoine Pitrou244651a2009-05-04 18:56:13 +00002306 /* first surrogate */
2307 surrogate = outCh;
2308 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00002309 else {
2310 *p++ = outCh;
2311 }
2312 }
2313 }
2314 else { /* now leaving a base-64 section */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002315 inShift = 0;
2316 s++;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002317 if (surrogate) {
Antoine Pitrou5418ee02011-11-15 01:42:21 +01002318 *p++ = surrogate;
2319 surrogate = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002320 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00002321 if (base64bits > 0) { /* left-over bits */
2322 if (base64bits >= 6) {
2323 /* We've seen at least one base-64 character */
2324 errmsg = "partial character in shift sequence";
2325 goto utf7Error;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002326 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00002327 else {
2328 /* Some bits remain; they should be zero */
2329 if (base64buffer != 0) {
2330 errmsg = "non-zero padding bits in shift sequence";
2331 goto utf7Error;
2332 }
2333 }
2334 }
2335 if (ch != '-') {
2336 /* '-' is absorbed; other terminating
2337 characters are preserved */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002338 *p++ = ch;
2339 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002340 }
2341 }
2342 else if ( ch == '+' ) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002343 startinpos = s-starts;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002344 s++; /* consume '+' */
2345 if (s < e && *s == '-') { /* '+-' encodes '+' */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002346 s++;
2347 *p++ = '+';
Antoine Pitrou244651a2009-05-04 18:56:13 +00002348 }
2349 else { /* begin base64-encoded section */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002350 inShift = 1;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002351 shiftOutStart = p;
2352 base64bits = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002353 }
2354 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00002355 else if (DECODE_DIRECT(ch)) { /* character decodes as itself */
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002356 *p++ = ch;
2357 s++;
2358 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00002359 else {
2360 startinpos = s-starts;
2361 s++;
2362 errmsg = "unexpected special character";
2363 goto utf7Error;
2364 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002365 continue;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002366utf7Error:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002367 outpos = p-PyUnicode_AS_UNICODE(unicode);
2368 endinpos = s-starts;
2369 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00002370 errors, &errorHandler,
2371 "utf7", errmsg,
2372 &starts, &e, &startinpos, &endinpos, &exc, &s,
2373 &unicode, &outpos, &p))
2374 goto onError;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002375 }
2376
Antoine Pitrou244651a2009-05-04 18:56:13 +00002377 /* end of string */
2378
2379 if (inShift && !consumed) { /* in shift sequence, no more to follow */
2380 /* if we're in an inconsistent state, that's an error */
2381 if (surrogate ||
2382 (base64bits >= 6) ||
2383 (base64bits > 0 && base64buffer != 0)) {
2384 outpos = p-PyUnicode_AS_UNICODE(unicode);
2385 endinpos = size;
2386 if (unicode_decode_call_errorhandler(
2387 errors, &errorHandler,
2388 "utf7", "unterminated shift sequence",
2389 &starts, &e, &startinpos, &endinpos, &exc, &s,
2390 &unicode, &outpos, &p))
2391 goto onError;
2392 if (s < e)
2393 goto restart;
2394 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002395 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00002396
2397 /* return state */
Christian Heimes5d14c2b2007-11-20 23:38:09 +00002398 if (consumed) {
Antoine Pitrou244651a2009-05-04 18:56:13 +00002399 if (inShift) {
2400 p = shiftOutStart; /* back off output */
Christian Heimes5d14c2b2007-11-20 23:38:09 +00002401 *consumed = startinpos;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002402 }
2403 else {
Christian Heimes5d14c2b2007-11-20 23:38:09 +00002404 *consumed = s-starts;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002405 }
Christian Heimes5d14c2b2007-11-20 23:38:09 +00002406 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002407
Jeremy Hyltondeb2dc62003-09-16 03:41:45 +00002408 if (_PyUnicode_Resize(&unicode, p - PyUnicode_AS_UNICODE(unicode)) < 0)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002409 goto onError;
2410
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002411 Py_XDECREF(errorHandler);
2412 Py_XDECREF(exc);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002413 return (PyObject *)unicode;
2414
Benjamin Peterson29060642009-01-31 22:14:21 +00002415 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002416 Py_XDECREF(errorHandler);
2417 Py_XDECREF(exc);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002418 Py_DECREF(unicode);
2419 return NULL;
2420}
2421
2422
2423PyObject *PyUnicode_EncodeUTF7(const Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00002424 Py_ssize_t size,
Antoine Pitrou244651a2009-05-04 18:56:13 +00002425 int base64SetO,
2426 int base64WhiteSpace,
Benjamin Peterson29060642009-01-31 22:14:21 +00002427 const char *errors)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002428{
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00002429 PyObject *v;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002430 /* It might be possible to tighten this worst case */
Alexandre Vassalottie85bd982009-07-21 00:39:03 +00002431 Py_ssize_t allocated = 8 * size;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002432 int inShift = 0;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002433 Py_ssize_t i = 0;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002434 unsigned int base64bits = 0;
2435 unsigned long base64buffer = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002436 char * out;
2437 char * start;
2438
2439 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00002440 return PyBytes_FromStringAndSize(NULL, 0);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002441
Alexandre Vassalottie85bd982009-07-21 00:39:03 +00002442 if (allocated / 8 != size)
Neal Norwitz3ce5d922008-08-24 07:08:55 +00002443 return PyErr_NoMemory();
2444
Antoine Pitrou244651a2009-05-04 18:56:13 +00002445 v = PyBytes_FromStringAndSize(NULL, allocated);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002446 if (v == NULL)
2447 return NULL;
2448
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00002449 start = out = PyBytes_AS_STRING(v);
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002450 for (;i < size; ++i) {
2451 Py_UNICODE ch = s[i];
2452
Antoine Pitrou244651a2009-05-04 18:56:13 +00002453 if (inShift) {
2454 if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) {
2455 /* shifting out */
2456 if (base64bits) { /* output remaining bits */
2457 *out++ = TO_BASE64(base64buffer << (6-base64bits));
2458 base64buffer = 0;
2459 base64bits = 0;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002460 }
2461 inShift = 0;
Antoine Pitrou244651a2009-05-04 18:56:13 +00002462 /* Characters not in the BASE64 set implicitly unshift the sequence
2463 so no '-' is required, except if the character is itself a '-' */
2464 if (IS_BASE64(ch) || ch == '-') {
2465 *out++ = '-';
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002466 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00002467 *out++ = (char) ch;
2468 }
2469 else {
2470 goto encode_char;
Tim Petersced69f82003-09-16 20:30:58 +00002471 }
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002472 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00002473 else { /* not in a shift sequence */
2474 if (ch == '+') {
2475 *out++ = '+';
2476 *out++ = '-';
2477 }
2478 else if (ENCODE_DIRECT(ch, !base64SetO, !base64WhiteSpace)) {
2479 *out++ = (char) ch;
2480 }
2481 else {
2482 *out++ = '+';
2483 inShift = 1;
2484 goto encode_char;
2485 }
2486 }
2487 continue;
2488encode_char:
2489#ifdef Py_UNICODE_WIDE
2490 if (ch >= 0x10000) {
2491 /* code first surrogate */
2492 base64bits += 16;
2493 base64buffer = (base64buffer << 16) | 0xd800 | ((ch-0x10000) >> 10);
2494 while (base64bits >= 6) {
2495 *out++ = TO_BASE64(base64buffer >> (base64bits-6));
2496 base64bits -= 6;
2497 }
2498 /* prepare second surrogate */
2499 ch = 0xDC00 | ((ch-0x10000) & 0x3FF);
2500 }
2501#endif
2502 base64bits += 16;
2503 base64buffer = (base64buffer << 16) | ch;
2504 while (base64bits >= 6) {
2505 *out++ = TO_BASE64(base64buffer >> (base64bits-6));
2506 base64bits -= 6;
2507 }
Hye-Shik Chang1bc09b72004-01-03 19:35:43 +00002508 }
Antoine Pitrou244651a2009-05-04 18:56:13 +00002509 if (base64bits)
2510 *out++= TO_BASE64(base64buffer << (6-base64bits) );
2511 if (inShift)
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002512 *out++ = '-';
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00002513 if (_PyBytes_Resize(&v, out - start) < 0)
2514 return NULL;
2515 return v;
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002516}
2517
Antoine Pitrou244651a2009-05-04 18:56:13 +00002518#undef IS_BASE64
2519#undef FROM_BASE64
2520#undef TO_BASE64
2521#undef DECODE_DIRECT
2522#undef ENCODE_DIRECT
Marc-André Lemburgc60e6f72001-09-20 10:35:46 +00002523
Guido van Rossumd57fd912000-03-10 22:53:23 +00002524/* --- UTF-8 Codec -------------------------------------------------------- */
2525
Tim Petersced69f82003-09-16 20:30:58 +00002526static
Guido van Rossumd57fd912000-03-10 22:53:23 +00002527char utf8_code_length[256] = {
Ezio Melotti57221d02010-07-01 07:32:02 +00002528 /* Map UTF-8 encoded prefix byte to sequence length. Zero means
2529 illegal prefix. See RFC 3629 for details */
2530 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 00-0F */
2531 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
Victor Stinner4a2b7a12010-08-13 14:03:48 +00002532 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
Guido van Rossumd57fd912000-03-10 22:53:23 +00002533 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2534 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2535 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2536 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
Ezio Melotti57221d02010-07-01 07:32:02 +00002537 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 70-7F */
2538 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 80-8F */
Guido van Rossumd57fd912000-03-10 22:53:23 +00002539 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2540 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
Ezio Melotti57221d02010-07-01 07:32:02 +00002541 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* B0-BF */
2542 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* C0-C1 + C2-CF */
2543 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, /* D0-DF */
2544 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* E0-EF */
2545 4, 4, 4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* F0-F4 + F5-FF */
Guido van Rossumd57fd912000-03-10 22:53:23 +00002546};
2547
Guido van Rossumd57fd912000-03-10 22:53:23 +00002548PyObject *PyUnicode_DecodeUTF8(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00002549 Py_ssize_t size,
2550 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00002551{
Walter Dörwald69652032004-09-07 20:24:22 +00002552 return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL);
2553}
2554
Antoine Pitrouab868312009-01-10 15:40:25 +00002555/* Mask to check or force alignment of a pointer to C 'long' boundaries */
2556#define LONG_PTR_MASK (size_t) (SIZEOF_LONG - 1)
2557
2558/* Mask to quickly check whether a C 'long' contains a
2559 non-ASCII, UTF8-encoded char. */
2560#if (SIZEOF_LONG == 8)
2561# define ASCII_CHAR_MASK 0x8080808080808080L
2562#elif (SIZEOF_LONG == 4)
2563# define ASCII_CHAR_MASK 0x80808080L
2564#else
2565# error C 'long' size should be either 4 or 8!
2566#endif
2567
Walter Dörwald69652032004-09-07 20:24:22 +00002568PyObject *PyUnicode_DecodeUTF8Stateful(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00002569 Py_ssize_t size,
2570 const char *errors,
2571 Py_ssize_t *consumed)
Walter Dörwald69652032004-09-07 20:24:22 +00002572{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002573 const char *starts = s;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002574 int n;
Ezio Melotti57221d02010-07-01 07:32:02 +00002575 int k;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002576 Py_ssize_t startinpos;
2577 Py_ssize_t endinpos;
2578 Py_ssize_t outpos;
Antoine Pitrouab868312009-01-10 15:40:25 +00002579 const char *e, *aligned_end;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002580 PyUnicodeObject *unicode;
2581 Py_UNICODE *p;
Marc-André Lemburg9542f482000-07-17 18:23:13 +00002582 const char *errmsg = "";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002583 PyObject *errorHandler = NULL;
2584 PyObject *exc = NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002585
2586 /* Note: size will always be longer than the resulting Unicode
2587 character count */
2588 unicode = _PyUnicode_New(size);
2589 if (!unicode)
2590 return NULL;
Walter Dörwald69652032004-09-07 20:24:22 +00002591 if (size == 0) {
2592 if (consumed)
2593 *consumed = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002594 return (PyObject *)unicode;
Walter Dörwald69652032004-09-07 20:24:22 +00002595 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00002596
2597 /* Unpack UTF-8 encoded data */
2598 p = unicode->str;
2599 e = s + size;
Antoine Pitrouab868312009-01-10 15:40:25 +00002600 aligned_end = (const char *) ((size_t) e & ~LONG_PTR_MASK);
Guido van Rossumd57fd912000-03-10 22:53:23 +00002601
2602 while (s < e) {
Marc-André Lemburge12896e2000-07-07 17:51:08 +00002603 Py_UCS4 ch = (unsigned char)*s;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002604
2605 if (ch < 0x80) {
Antoine Pitrouab868312009-01-10 15:40:25 +00002606 /* Fast path for runs of ASCII characters. Given that common UTF-8
2607 input will consist of an overwhelming majority of ASCII
2608 characters, we try to optimize for this case by checking
2609 as many characters as a C 'long' can contain.
2610 First, check if we can do an aligned read, as most CPUs have
2611 a penalty for unaligned reads.
2612 */
2613 if (!((size_t) s & LONG_PTR_MASK)) {
2614 /* Help register allocation */
2615 register const char *_s = s;
2616 register Py_UNICODE *_p = p;
2617 while (_s < aligned_end) {
2618 /* Read a whole long at a time (either 4 or 8 bytes),
2619 and do a fast unrolled copy if it only contains ASCII
2620 characters. */
2621 unsigned long data = *(unsigned long *) _s;
2622 if (data & ASCII_CHAR_MASK)
2623 break;
2624 _p[0] = (unsigned char) _s[0];
2625 _p[1] = (unsigned char) _s[1];
2626 _p[2] = (unsigned char) _s[2];
2627 _p[3] = (unsigned char) _s[3];
2628#if (SIZEOF_LONG == 8)
2629 _p[4] = (unsigned char) _s[4];
2630 _p[5] = (unsigned char) _s[5];
2631 _p[6] = (unsigned char) _s[6];
2632 _p[7] = (unsigned char) _s[7];
2633#endif
2634 _s += SIZEOF_LONG;
2635 _p += SIZEOF_LONG;
2636 }
2637 s = _s;
2638 p = _p;
2639 if (s == e)
2640 break;
2641 ch = (unsigned char)*s;
2642 }
2643 }
2644
2645 if (ch < 0x80) {
Marc-André Lemburge12896e2000-07-07 17:51:08 +00002646 *p++ = (Py_UNICODE)ch;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002647 s++;
2648 continue;
2649 }
2650
2651 n = utf8_code_length[ch];
2652
Marc-André Lemburg9542f482000-07-17 18:23:13 +00002653 if (s + n > e) {
Benjamin Peterson29060642009-01-31 22:14:21 +00002654 if (consumed)
2655 break;
2656 else {
2657 errmsg = "unexpected end of data";
2658 startinpos = s-starts;
Ezio Melotti57221d02010-07-01 07:32:02 +00002659 endinpos = startinpos+1;
2660 for (k=1; (k < size-startinpos) && ((s[k]&0xC0) == 0x80); k++)
2661 endinpos++;
Benjamin Peterson29060642009-01-31 22:14:21 +00002662 goto utf8Error;
2663 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00002664 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00002665
2666 switch (n) {
2667
2668 case 0:
Ezio Melotti57221d02010-07-01 07:32:02 +00002669 errmsg = "invalid start byte";
Benjamin Peterson29060642009-01-31 22:14:21 +00002670 startinpos = s-starts;
2671 endinpos = startinpos+1;
2672 goto utf8Error;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002673
2674 case 1:
Marc-André Lemburg9542f482000-07-17 18:23:13 +00002675 errmsg = "internal error";
Benjamin Peterson29060642009-01-31 22:14:21 +00002676 startinpos = s-starts;
2677 endinpos = startinpos+1;
2678 goto utf8Error;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002679
2680 case 2:
Marc-André Lemburg9542f482000-07-17 18:23:13 +00002681 if ((s[1] & 0xc0) != 0x80) {
Ezio Melotti57221d02010-07-01 07:32:02 +00002682 errmsg = "invalid continuation byte";
Benjamin Peterson29060642009-01-31 22:14:21 +00002683 startinpos = s-starts;
Ezio Melotti57221d02010-07-01 07:32:02 +00002684 endinpos = startinpos + 1;
Benjamin Peterson29060642009-01-31 22:14:21 +00002685 goto utf8Error;
2686 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00002687 ch = ((s[0] & 0x1f) << 6) + (s[1] & 0x3f);
Ezio Melotti57221d02010-07-01 07:32:02 +00002688 assert ((ch > 0x007F) && (ch <= 0x07FF));
2689 *p++ = (Py_UNICODE)ch;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002690 break;
2691
2692 case 3:
Ezio Melotti9bf2b3a2010-07-03 04:52:19 +00002693 /* Decoding UTF-8 sequences in range \xed\xa0\x80-\xed\xbf\xbf
2694 will result in surrogates in range d800-dfff. Surrogates are
2695 not valid UTF-8 so they are rejected.
2696 See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf
2697 (table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.txt */
Tim Petersced69f82003-09-16 20:30:58 +00002698 if ((s[1] & 0xc0) != 0x80 ||
Ezio Melotti57221d02010-07-01 07:32:02 +00002699 (s[2] & 0xc0) != 0x80 ||
2700 ((unsigned char)s[0] == 0xE0 &&
2701 (unsigned char)s[1] < 0xA0) ||
2702 ((unsigned char)s[0] == 0xED &&
2703 (unsigned char)s[1] > 0x9F)) {
2704 errmsg = "invalid continuation byte";
Benjamin Peterson29060642009-01-31 22:14:21 +00002705 startinpos = s-starts;
Ezio Melotti57221d02010-07-01 07:32:02 +00002706 endinpos = startinpos + 1;
2707
2708 /* if s[1] first two bits are 1 and 0, then the invalid
2709 continuation byte is s[2], so increment endinpos by 1,
2710 if not, s[1] is invalid and endinpos doesn't need to
2711 be incremented. */
2712 if ((s[1] & 0xC0) == 0x80)
2713 endinpos++;
Benjamin Peterson29060642009-01-31 22:14:21 +00002714 goto utf8Error;
2715 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00002716 ch = ((s[0] & 0x0f) << 12) + ((s[1] & 0x3f) << 6) + (s[2] & 0x3f);
Ezio Melotti57221d02010-07-01 07:32:02 +00002717 assert ((ch > 0x07FF) && (ch <= 0xFFFF));
2718 *p++ = (Py_UNICODE)ch;
Marc-André Lemburge12896e2000-07-07 17:51:08 +00002719 break;
2720
2721 case 4:
2722 if ((s[1] & 0xc0) != 0x80 ||
2723 (s[2] & 0xc0) != 0x80 ||
Ezio Melotti57221d02010-07-01 07:32:02 +00002724 (s[3] & 0xc0) != 0x80 ||
2725 ((unsigned char)s[0] == 0xF0 &&
2726 (unsigned char)s[1] < 0x90) ||
2727 ((unsigned char)s[0] == 0xF4 &&
2728 (unsigned char)s[1] > 0x8F)) {
2729 errmsg = "invalid continuation byte";
Benjamin Peterson29060642009-01-31 22:14:21 +00002730 startinpos = s-starts;
Ezio Melotti57221d02010-07-01 07:32:02 +00002731 endinpos = startinpos + 1;
2732 if ((s[1] & 0xC0) == 0x80) {
2733 endinpos++;
2734 if ((s[2] & 0xC0) == 0x80)
2735 endinpos++;
2736 }
Benjamin Peterson29060642009-01-31 22:14:21 +00002737 goto utf8Error;
2738 }
Marc-André Lemburge12896e2000-07-07 17:51:08 +00002739 ch = ((s[0] & 0x7) << 18) + ((s[1] & 0x3f) << 12) +
Ezio Melotti57221d02010-07-01 07:32:02 +00002740 ((s[2] & 0x3f) << 6) + (s[3] & 0x3f);
2741 assert ((ch > 0xFFFF) && (ch <= 0x10ffff));
2742
Fredrik Lundh8f455852001-06-27 18:59:43 +00002743#ifdef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00002744 *p++ = (Py_UNICODE)ch;
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002745#else
Marc-André Lemburge12896e2000-07-07 17:51:08 +00002746 /* compute and append the two surrogates: */
Tim Petersced69f82003-09-16 20:30:58 +00002747
Marc-André Lemburge12896e2000-07-07 17:51:08 +00002748 /* translate from 10000..10FFFF to 0..FFFF */
2749 ch -= 0x10000;
Tim Petersced69f82003-09-16 20:30:58 +00002750
Marc-André Lemburge12896e2000-07-07 17:51:08 +00002751 /* high surrogate = top 10 bits added to D800 */
2752 *p++ = (Py_UNICODE)(0xD800 + (ch >> 10));
Tim Petersced69f82003-09-16 20:30:58 +00002753
Marc-André Lemburge12896e2000-07-07 17:51:08 +00002754 /* low surrogate = bottom 10 bits added to DC00 */
Fredrik Lundh45714e92001-06-26 16:39:36 +00002755 *p++ = (Py_UNICODE)(0xDC00 + (ch & 0x03FF));
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002756#endif
Guido van Rossumd57fd912000-03-10 22:53:23 +00002757 break;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002758 }
2759 s += n;
Benjamin Peterson29060642009-01-31 22:14:21 +00002760 continue;
Tim Petersced69f82003-09-16 20:30:58 +00002761
Benjamin Peterson29060642009-01-31 22:14:21 +00002762 utf8Error:
2763 outpos = p-PyUnicode_AS_UNICODE(unicode);
2764 if (unicode_decode_call_errorhandler(
2765 errors, &errorHandler,
Victor Stinnercbe01342012-02-14 01:17:45 +01002766 "utf-8", errmsg,
Benjamin Peterson29060642009-01-31 22:14:21 +00002767 &starts, &e, &startinpos, &endinpos, &exc, &s,
2768 &unicode, &outpos, &p))
2769 goto onError;
2770 aligned_end = (const char *) ((size_t) e & ~LONG_PTR_MASK);
Guido van Rossumd57fd912000-03-10 22:53:23 +00002771 }
Walter Dörwald69652032004-09-07 20:24:22 +00002772 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00002773 *consumed = s-starts;
Guido van Rossumd57fd912000-03-10 22:53:23 +00002774
2775 /* Adjust length */
Jeremy Hyltondeb2dc62003-09-16 03:41:45 +00002776 if (_PyUnicode_Resize(&unicode, p - unicode->str) < 0)
Guido van Rossumd57fd912000-03-10 22:53:23 +00002777 goto onError;
2778
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002779 Py_XDECREF(errorHandler);
2780 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00002781 return (PyObject *)unicode;
2782
Benjamin Peterson29060642009-01-31 22:14:21 +00002783 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00002784 Py_XDECREF(errorHandler);
2785 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00002786 Py_DECREF(unicode);
2787 return NULL;
2788}
2789
Antoine Pitrouab868312009-01-10 15:40:25 +00002790#undef ASCII_CHAR_MASK
2791
Victor Stinnerf933e1a2010-10-20 22:58:25 +00002792#ifdef __APPLE__
2793
2794/* Simplified UTF-8 decoder using surrogateescape error handler,
Victor Stinner27b1ca22012-12-03 12:47:59 +01002795 used to decode the command line arguments on Mac OS X.
2796
2797 Return a pointer to a newly allocated wide character string (use
2798 PyMem_Free() to free the memory), or NULL on memory allocation error. */
Victor Stinnerf933e1a2010-10-20 22:58:25 +00002799
2800wchar_t*
2801_Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size)
2802{
2803 int n;
2804 const char *e;
2805 wchar_t *unicode, *p;
2806
2807 /* Note: size will always be longer than the resulting Unicode
2808 character count */
Victor Stinner27b1ca22012-12-03 12:47:59 +01002809 if (PY_SSIZE_T_MAX / sizeof(wchar_t) < (size + 1))
Victor Stinnerf933e1a2010-10-20 22:58:25 +00002810 return NULL;
Victor Stinnerf933e1a2010-10-20 22:58:25 +00002811 unicode = PyMem_Malloc((size + 1) * sizeof(wchar_t));
2812 if (!unicode)
2813 return NULL;
2814
2815 /* Unpack UTF-8 encoded data */
2816 p = unicode;
2817 e = s + size;
2818 while (s < e) {
2819 Py_UCS4 ch = (unsigned char)*s;
2820
2821 if (ch < 0x80) {
2822 *p++ = (wchar_t)ch;
2823 s++;
2824 continue;
2825 }
2826
2827 n = utf8_code_length[ch];
2828 if (s + n > e) {
2829 goto surrogateescape;
2830 }
2831
2832 switch (n) {
2833 case 0:
2834 case 1:
2835 goto surrogateescape;
2836
2837 case 2:
2838 if ((s[1] & 0xc0) != 0x80)
2839 goto surrogateescape;
2840 ch = ((s[0] & 0x1f) << 6) + (s[1] & 0x3f);
2841 assert ((ch > 0x007F) && (ch <= 0x07FF));
2842 *p++ = (wchar_t)ch;
2843 break;
2844
2845 case 3:
2846 /* Decoding UTF-8 sequences in range \xed\xa0\x80-\xed\xbf\xbf
2847 will result in surrogates in range d800-dfff. Surrogates are
2848 not valid UTF-8 so they are rejected.
2849 See http://www.unicode.org/versions/Unicode5.2.0/ch03.pdf
2850 (table 3-7) and http://www.rfc-editor.org/rfc/rfc3629.txt */
2851 if ((s[1] & 0xc0) != 0x80 ||
2852 (s[2] & 0xc0) != 0x80 ||
2853 ((unsigned char)s[0] == 0xE0 &&
2854 (unsigned char)s[1] < 0xA0) ||
2855 ((unsigned char)s[0] == 0xED &&
2856 (unsigned char)s[1] > 0x9F)) {
2857
2858 goto surrogateescape;
2859 }
2860 ch = ((s[0] & 0x0f) << 12) + ((s[1] & 0x3f) << 6) + (s[2] & 0x3f);
2861 assert ((ch > 0x07FF) && (ch <= 0xFFFF));
2862 *p++ = (Py_UNICODE)ch;
2863 break;
2864
2865 case 4:
2866 if ((s[1] & 0xc0) != 0x80 ||
2867 (s[2] & 0xc0) != 0x80 ||
2868 (s[3] & 0xc0) != 0x80 ||
2869 ((unsigned char)s[0] == 0xF0 &&
2870 (unsigned char)s[1] < 0x90) ||
2871 ((unsigned char)s[0] == 0xF4 &&
2872 (unsigned char)s[1] > 0x8F)) {
2873 goto surrogateescape;
2874 }
2875 ch = ((s[0] & 0x7) << 18) + ((s[1] & 0x3f) << 12) +
2876 ((s[2] & 0x3f) << 6) + (s[3] & 0x3f);
2877 assert ((ch > 0xFFFF) && (ch <= 0x10ffff));
2878
2879#if SIZEOF_WCHAR_T == 4
2880 *p++ = (wchar_t)ch;
2881#else
2882 /* compute and append the two surrogates: */
2883
2884 /* translate from 10000..10FFFF to 0..FFFF */
2885 ch -= 0x10000;
2886
2887 /* high surrogate = top 10 bits added to D800 */
2888 *p++ = (wchar_t)(0xD800 + (ch >> 10));
2889
2890 /* low surrogate = bottom 10 bits added to DC00 */
2891 *p++ = (wchar_t)(0xDC00 + (ch & 0x03FF));
2892#endif
2893 break;
2894 }
2895 s += n;
2896 continue;
2897
2898 surrogateescape:
2899 *p++ = 0xDC00 + ch;
2900 s++;
2901 }
2902 *p = L'\0';
2903 return unicode;
2904}
2905
2906#endif /* __APPLE__ */
Antoine Pitrouab868312009-01-10 15:40:25 +00002907
Tim Peters602f7402002-04-27 18:03:26 +00002908/* Allocation strategy: if the string is short, convert into a stack buffer
2909 and allocate exactly as much space needed at the end. Else allocate the
2910 maximum possible needed (4 result bytes per Unicode character), and return
2911 the excess memory at the end.
Martin v. Löwis2a7ff352002-04-21 09:59:45 +00002912*/
Tim Peters7e3d9612002-04-21 03:26:37 +00002913PyObject *
2914PyUnicode_EncodeUTF8(const Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00002915 Py_ssize_t size,
2916 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00002917{
Tim Peters602f7402002-04-27 18:03:26 +00002918#define MAX_SHORT_UNICHARS 300 /* largest size we'll do on the stack */
Tim Peters0eca65c2002-04-21 17:28:06 +00002919
Guido van Rossum98297ee2007-11-06 21:34:58 +00002920 Py_ssize_t i; /* index into s of next input byte */
2921 PyObject *result; /* result string object */
2922 char *p; /* next free byte in output buffer */
2923 Py_ssize_t nallocated; /* number of result bytes allocated */
2924 Py_ssize_t nneeded; /* number of result bytes needed */
Tim Peters602f7402002-04-27 18:03:26 +00002925 char stackbuf[MAX_SHORT_UNICHARS * 4];
Martin v. Löwisdb12d452009-05-02 18:52:14 +00002926 PyObject *errorHandler = NULL;
2927 PyObject *exc = NULL;
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +00002928
Tim Peters602f7402002-04-27 18:03:26 +00002929 assert(s != NULL);
2930 assert(size >= 0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00002931
Tim Peters602f7402002-04-27 18:03:26 +00002932 if (size <= MAX_SHORT_UNICHARS) {
2933 /* Write into the stack buffer; nallocated can't overflow.
2934 * At the end, we'll allocate exactly as much heap space as it
2935 * turns out we need.
2936 */
2937 nallocated = Py_SAFE_DOWNCAST(sizeof(stackbuf), size_t, int);
Guido van Rossum98297ee2007-11-06 21:34:58 +00002938 result = NULL; /* will allocate after we're done */
Tim Peters602f7402002-04-27 18:03:26 +00002939 p = stackbuf;
2940 }
2941 else {
2942 /* Overallocate on the heap, and give the excess back at the end. */
2943 nallocated = size * 4;
2944 if (nallocated / 4 != size) /* overflow! */
2945 return PyErr_NoMemory();
Christian Heimes72b710a2008-05-26 13:28:38 +00002946 result = PyBytes_FromStringAndSize(NULL, nallocated);
Guido van Rossum98297ee2007-11-06 21:34:58 +00002947 if (result == NULL)
Tim Peters602f7402002-04-27 18:03:26 +00002948 return NULL;
Christian Heimes72b710a2008-05-26 13:28:38 +00002949 p = PyBytes_AS_STRING(result);
Tim Peters602f7402002-04-27 18:03:26 +00002950 }
Martin v. Löwis2a7ff352002-04-21 09:59:45 +00002951
Tim Peters602f7402002-04-27 18:03:26 +00002952 for (i = 0; i < size;) {
Marc-André Lemburge12896e2000-07-07 17:51:08 +00002953 Py_UCS4 ch = s[i++];
Marc-André Lemburg3688a882002-02-06 18:09:02 +00002954
Martin v. Löwis2a7ff352002-04-21 09:59:45 +00002955 if (ch < 0x80)
Tim Peters602f7402002-04-27 18:03:26 +00002956 /* Encode ASCII */
Guido van Rossumd57fd912000-03-10 22:53:23 +00002957 *p++ = (char) ch;
Marc-André Lemburg3688a882002-02-06 18:09:02 +00002958
Guido van Rossumd57fd912000-03-10 22:53:23 +00002959 else if (ch < 0x0800) {
Tim Peters602f7402002-04-27 18:03:26 +00002960 /* Encode Latin-1 */
Marc-André Lemburgdc724d62002-02-06 18:20:19 +00002961 *p++ = (char)(0xc0 | (ch >> 6));
2962 *p++ = (char)(0x80 | (ch & 0x3f));
Victor Stinner31be90b2010-04-22 19:38:16 +00002963 } else if (0xD800 <= ch && ch <= 0xDFFF) {
Martin v. Löwisdb12d452009-05-02 18:52:14 +00002964#ifndef Py_UNICODE_WIDE
Victor Stinner31be90b2010-04-22 19:38:16 +00002965 /* Special case: check for high and low surrogate */
2966 if (ch <= 0xDBFF && i != size && 0xDC00 <= s[i] && s[i] <= 0xDFFF) {
2967 Py_UCS4 ch2 = s[i];
2968 /* Combine the two surrogates to form a UCS4 value */
2969 ch = ((ch - 0xD800) << 10 | (ch2 - 0xDC00)) + 0x10000;
2970 i++;
2971
2972 /* Encode UCS4 Unicode ordinals */
2973 *p++ = (char)(0xf0 | (ch >> 18));
2974 *p++ = (char)(0x80 | ((ch >> 12) & 0x3f));
Tim Peters602f7402002-04-27 18:03:26 +00002975 *p++ = (char)(0x80 | ((ch >> 6) & 0x3f));
2976 *p++ = (char)(0x80 | (ch & 0x3f));
Victor Stinner31be90b2010-04-22 19:38:16 +00002977 } else {
Victor Stinner445a6232010-04-22 20:01:57 +00002978#endif
Victor Stinner31be90b2010-04-22 19:38:16 +00002979 Py_ssize_t newpos;
2980 PyObject *rep;
2981 Py_ssize_t repsize, k;
2982 rep = unicode_encode_call_errorhandler
2983 (errors, &errorHandler, "utf-8", "surrogates not allowed",
2984 s, size, &exc, i-1, i, &newpos);
2985 if (!rep)
2986 goto error;
2987
2988 if (PyBytes_Check(rep))
2989 repsize = PyBytes_GET_SIZE(rep);
2990 else
2991 repsize = PyUnicode_GET_SIZE(rep);
2992
2993 if (repsize > 4) {
2994 Py_ssize_t offset;
2995
2996 if (result == NULL)
2997 offset = p - stackbuf;
2998 else
2999 offset = p - PyBytes_AS_STRING(result);
3000
3001 if (nallocated > PY_SSIZE_T_MAX - repsize + 4) {
3002 /* integer overflow */
3003 PyErr_NoMemory();
3004 goto error;
3005 }
3006 nallocated += repsize - 4;
3007 if (result != NULL) {
3008 if (_PyBytes_Resize(&result, nallocated) < 0)
3009 goto error;
3010 } else {
3011 result = PyBytes_FromStringAndSize(NULL, nallocated);
3012 if (result == NULL)
3013 goto error;
3014 Py_MEMCPY(PyBytes_AS_STRING(result), stackbuf, offset);
3015 }
3016 p = PyBytes_AS_STRING(result) + offset;
3017 }
3018
3019 if (PyBytes_Check(rep)) {
3020 char *prep = PyBytes_AS_STRING(rep);
3021 for(k = repsize; k > 0; k--)
3022 *p++ = *prep++;
3023 } else /* rep is unicode */ {
3024 Py_UNICODE *prep = PyUnicode_AS_UNICODE(rep);
3025 Py_UNICODE c;
3026
3027 for(k=0; k<repsize; k++) {
3028 c = prep[k];
3029 if (0x80 <= c) {
3030 raise_encode_exception(&exc, "utf-8", s, size,
3031 i-1, i, "surrogates not allowed");
3032 goto error;
3033 }
3034 *p++ = (char)prep[k];
3035 }
3036 }
3037 Py_DECREF(rep);
Victor Stinner445a6232010-04-22 20:01:57 +00003038#ifndef Py_UNICODE_WIDE
Victor Stinner31be90b2010-04-22 19:38:16 +00003039 }
Victor Stinner445a6232010-04-22 20:01:57 +00003040#endif
Victor Stinner31be90b2010-04-22 19:38:16 +00003041 } else if (ch < 0x10000) {
3042 *p++ = (char)(0xe0 | (ch >> 12));
3043 *p++ = (char)(0x80 | ((ch >> 6) & 0x3f));
3044 *p++ = (char)(0x80 | (ch & 0x3f));
3045 } else /* ch >= 0x10000 */ {
Tim Peters602f7402002-04-27 18:03:26 +00003046 /* Encode UCS4 Unicode ordinals */
3047 *p++ = (char)(0xf0 | (ch >> 18));
3048 *p++ = (char)(0x80 | ((ch >> 12) & 0x3f));
3049 *p++ = (char)(0x80 | ((ch >> 6) & 0x3f));
3050 *p++ = (char)(0x80 | (ch & 0x3f));
3051 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00003052 }
Tim Peters0eca65c2002-04-21 17:28:06 +00003053
Guido van Rossum98297ee2007-11-06 21:34:58 +00003054 if (result == NULL) {
Tim Peters602f7402002-04-27 18:03:26 +00003055 /* This was stack allocated. */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003056 nneeded = p - stackbuf;
Tim Peters602f7402002-04-27 18:03:26 +00003057 assert(nneeded <= nallocated);
Christian Heimes72b710a2008-05-26 13:28:38 +00003058 result = PyBytes_FromStringAndSize(stackbuf, nneeded);
Tim Peters602f7402002-04-27 18:03:26 +00003059 }
3060 else {
Christian Heimesf3863112007-11-22 07:46:41 +00003061 /* Cut back to size actually needed. */
Christian Heimes72b710a2008-05-26 13:28:38 +00003062 nneeded = p - PyBytes_AS_STRING(result);
Tim Peters602f7402002-04-27 18:03:26 +00003063 assert(nneeded <= nallocated);
Christian Heimes72b710a2008-05-26 13:28:38 +00003064 _PyBytes_Resize(&result, nneeded);
Tim Peters602f7402002-04-27 18:03:26 +00003065 }
Martin v. Löwisdb12d452009-05-02 18:52:14 +00003066 Py_XDECREF(errorHandler);
3067 Py_XDECREF(exc);
Guido van Rossum98297ee2007-11-06 21:34:58 +00003068 return result;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00003069 error:
3070 Py_XDECREF(errorHandler);
3071 Py_XDECREF(exc);
3072 Py_XDECREF(result);
3073 return NULL;
Martin v. Löwis2a7ff352002-04-21 09:59:45 +00003074
Tim Peters602f7402002-04-27 18:03:26 +00003075#undef MAX_SHORT_UNICHARS
Guido van Rossumd57fd912000-03-10 22:53:23 +00003076}
3077
Guido van Rossumd57fd912000-03-10 22:53:23 +00003078PyObject *PyUnicode_AsUTF8String(PyObject *unicode)
3079{
Guido van Rossumd57fd912000-03-10 22:53:23 +00003080 if (!PyUnicode_Check(unicode)) {
3081 PyErr_BadArgument();
3082 return NULL;
3083 }
Barry Warsaw2dd4abf2000-08-18 06:58:15 +00003084 return PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(unicode),
Benjamin Peterson29060642009-01-31 22:14:21 +00003085 PyUnicode_GET_SIZE(unicode),
3086 NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003087}
3088
Walter Dörwald41980ca2007-08-16 21:55:45 +00003089/* --- UTF-32 Codec ------------------------------------------------------- */
3090
3091PyObject *
3092PyUnicode_DecodeUTF32(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00003093 Py_ssize_t size,
3094 const char *errors,
3095 int *byteorder)
Walter Dörwald41980ca2007-08-16 21:55:45 +00003096{
3097 return PyUnicode_DecodeUTF32Stateful(s, size, errors, byteorder, NULL);
3098}
3099
3100PyObject *
3101PyUnicode_DecodeUTF32Stateful(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00003102 Py_ssize_t size,
3103 const char *errors,
3104 int *byteorder,
3105 Py_ssize_t *consumed)
Walter Dörwald41980ca2007-08-16 21:55:45 +00003106{
3107 const char *starts = s;
3108 Py_ssize_t startinpos;
3109 Py_ssize_t endinpos;
3110 Py_ssize_t outpos;
3111 PyUnicodeObject *unicode;
3112 Py_UNICODE *p;
3113#ifndef Py_UNICODE_WIDE
Antoine Pitroucc0cfd32010-06-11 21:46:32 +00003114 int pairs = 0;
Mark Dickinson7db923c2010-06-12 09:10:14 +00003115 const unsigned char *qq;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003116#else
3117 const int pairs = 0;
3118#endif
Mark Dickinson7db923c2010-06-12 09:10:14 +00003119 const unsigned char *q, *e;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003120 int bo = 0; /* assume native ordering by default */
3121 const char *errmsg = "";
Walter Dörwald41980ca2007-08-16 21:55:45 +00003122 /* Offsets from q for retrieving bytes in the right order. */
3123#ifdef BYTEORDER_IS_LITTLE_ENDIAN
3124 int iorder[] = {0, 1, 2, 3};
3125#else
3126 int iorder[] = {3, 2, 1, 0};
3127#endif
3128 PyObject *errorHandler = NULL;
3129 PyObject *exc = NULL;
Victor Stinner313a1202010-06-11 23:56:51 +00003130
Walter Dörwald41980ca2007-08-16 21:55:45 +00003131 q = (unsigned char *)s;
3132 e = q + size;
3133
3134 if (byteorder)
3135 bo = *byteorder;
3136
3137 /* Check for BOM marks (U+FEFF) in the input and adjust current
3138 byte order setting accordingly. In native mode, the leading BOM
3139 mark is skipped, in all other modes, it is copied to the output
3140 stream as-is (giving a ZWNBSP character). */
3141 if (bo == 0) {
3142 if (size >= 4) {
3143 const Py_UCS4 bom = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) |
Benjamin Peterson29060642009-01-31 22:14:21 +00003144 (q[iorder[1]] << 8) | q[iorder[0]];
Walter Dörwald41980ca2007-08-16 21:55:45 +00003145#ifdef BYTEORDER_IS_LITTLE_ENDIAN
Benjamin Peterson29060642009-01-31 22:14:21 +00003146 if (bom == 0x0000FEFF) {
3147 q += 4;
3148 bo = -1;
3149 }
3150 else if (bom == 0xFFFE0000) {
3151 q += 4;
3152 bo = 1;
3153 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00003154#else
Benjamin Peterson29060642009-01-31 22:14:21 +00003155 if (bom == 0x0000FEFF) {
3156 q += 4;
3157 bo = 1;
3158 }
3159 else if (bom == 0xFFFE0000) {
3160 q += 4;
3161 bo = -1;
3162 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00003163#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00003164 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00003165 }
3166
3167 if (bo == -1) {
3168 /* force LE */
3169 iorder[0] = 0;
3170 iorder[1] = 1;
3171 iorder[2] = 2;
3172 iorder[3] = 3;
3173 }
3174 else if (bo == 1) {
3175 /* force BE */
3176 iorder[0] = 3;
3177 iorder[1] = 2;
3178 iorder[2] = 1;
3179 iorder[3] = 0;
3180 }
3181
Antoine Pitroucc0cfd32010-06-11 21:46:32 +00003182 /* On narrow builds we split characters outside the BMP into two
3183 codepoints => count how much extra space we need. */
3184#ifndef Py_UNICODE_WIDE
Serhiy Storchakadec798e2013-01-08 22:45:42 +02003185 for (qq = q; e - qq >= 4; qq += 4)
Antoine Pitroucc0cfd32010-06-11 21:46:32 +00003186 if (qq[iorder[2]] != 0 || qq[iorder[3]] != 0)
3187 pairs++;
3188#endif
3189
3190 /* This might be one to much, because of a BOM */
3191 unicode = _PyUnicode_New((size+3)/4+pairs);
3192 if (!unicode)
3193 return NULL;
3194 if (size == 0)
3195 return (PyObject *)unicode;
3196
3197 /* Unpack UTF-32 encoded data */
3198 p = unicode->str;
3199
Walter Dörwald41980ca2007-08-16 21:55:45 +00003200 while (q < e) {
Benjamin Peterson29060642009-01-31 22:14:21 +00003201 Py_UCS4 ch;
3202 /* remaining bytes at the end? (size should be divisible by 4) */
3203 if (e-q<4) {
3204 if (consumed)
3205 break;
3206 errmsg = "truncated data";
3207 startinpos = ((const char *)q)-starts;
3208 endinpos = ((const char *)e)-starts;
3209 goto utf32Error;
3210 /* The remaining input chars are ignored if the callback
3211 chooses to skip the input */
3212 }
3213 ch = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) |
3214 (q[iorder[1]] << 8) | q[iorder[0]];
Walter Dörwald41980ca2007-08-16 21:55:45 +00003215
Benjamin Peterson29060642009-01-31 22:14:21 +00003216 if (ch >= 0x110000)
3217 {
3218 errmsg = "codepoint not in range(0x110000)";
3219 startinpos = ((const char *)q)-starts;
3220 endinpos = startinpos+4;
3221 goto utf32Error;
3222 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00003223#ifndef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00003224 if (ch >= 0x10000)
3225 {
3226 *p++ = 0xD800 | ((ch-0x10000) >> 10);
3227 *p++ = 0xDC00 | ((ch-0x10000) & 0x3FF);
3228 }
3229 else
Walter Dörwald41980ca2007-08-16 21:55:45 +00003230#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00003231 *p++ = ch;
3232 q += 4;
3233 continue;
3234 utf32Error:
3235 outpos = p-PyUnicode_AS_UNICODE(unicode);
3236 if (unicode_decode_call_errorhandler(
3237 errors, &errorHandler,
3238 "utf32", errmsg,
3239 &starts, (const char **)&e, &startinpos, &endinpos, &exc, (const char **)&q,
3240 &unicode, &outpos, &p))
3241 goto onError;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003242 }
3243
3244 if (byteorder)
3245 *byteorder = bo;
3246
3247 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00003248 *consumed = (const char *)q-starts;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003249
3250 /* Adjust length */
3251 if (_PyUnicode_Resize(&unicode, p - unicode->str) < 0)
3252 goto onError;
3253
3254 Py_XDECREF(errorHandler);
3255 Py_XDECREF(exc);
3256 return (PyObject *)unicode;
3257
Benjamin Peterson29060642009-01-31 22:14:21 +00003258 onError:
Walter Dörwald41980ca2007-08-16 21:55:45 +00003259 Py_DECREF(unicode);
3260 Py_XDECREF(errorHandler);
3261 Py_XDECREF(exc);
3262 return NULL;
3263}
3264
3265PyObject *
3266PyUnicode_EncodeUTF32(const Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00003267 Py_ssize_t size,
3268 const char *errors,
3269 int byteorder)
Walter Dörwald41980ca2007-08-16 21:55:45 +00003270{
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00003271 PyObject *v;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003272 unsigned char *p;
Neal Norwitz3ce5d922008-08-24 07:08:55 +00003273 Py_ssize_t nsize, bytesize;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003274#ifndef Py_UNICODE_WIDE
Neal Norwitz3ce5d922008-08-24 07:08:55 +00003275 Py_ssize_t i, pairs;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003276#else
3277 const int pairs = 0;
3278#endif
3279 /* Offsets from p for storing byte pairs in the right order. */
3280#ifdef BYTEORDER_IS_LITTLE_ENDIAN
3281 int iorder[] = {0, 1, 2, 3};
3282#else
3283 int iorder[] = {3, 2, 1, 0};
3284#endif
3285
Benjamin Peterson29060642009-01-31 22:14:21 +00003286#define STORECHAR(CH) \
3287 do { \
3288 p[iorder[3]] = ((CH) >> 24) & 0xff; \
3289 p[iorder[2]] = ((CH) >> 16) & 0xff; \
3290 p[iorder[1]] = ((CH) >> 8) & 0xff; \
3291 p[iorder[0]] = (CH) & 0xff; \
3292 p += 4; \
Walter Dörwald41980ca2007-08-16 21:55:45 +00003293 } while(0)
3294
3295 /* In narrow builds we can output surrogate pairs as one codepoint,
3296 so we need less space. */
3297#ifndef Py_UNICODE_WIDE
3298 for (i = pairs = 0; i < size-1; i++)
Benjamin Peterson29060642009-01-31 22:14:21 +00003299 if (0xD800 <= s[i] && s[i] <= 0xDBFF &&
3300 0xDC00 <= s[i+1] && s[i+1] <= 0xDFFF)
3301 pairs++;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003302#endif
Neal Norwitz3ce5d922008-08-24 07:08:55 +00003303 nsize = (size - pairs + (byteorder == 0));
3304 bytesize = nsize * 4;
3305 if (bytesize / 4 != nsize)
Benjamin Peterson29060642009-01-31 22:14:21 +00003306 return PyErr_NoMemory();
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00003307 v = PyBytes_FromStringAndSize(NULL, bytesize);
Walter Dörwald41980ca2007-08-16 21:55:45 +00003308 if (v == NULL)
3309 return NULL;
3310
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00003311 p = (unsigned char *)PyBytes_AS_STRING(v);
Walter Dörwald41980ca2007-08-16 21:55:45 +00003312 if (byteorder == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00003313 STORECHAR(0xFEFF);
Walter Dörwald41980ca2007-08-16 21:55:45 +00003314 if (size == 0)
Guido van Rossum98297ee2007-11-06 21:34:58 +00003315 goto done;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003316
3317 if (byteorder == -1) {
3318 /* force LE */
3319 iorder[0] = 0;
3320 iorder[1] = 1;
3321 iorder[2] = 2;
3322 iorder[3] = 3;
3323 }
3324 else if (byteorder == 1) {
3325 /* force BE */
3326 iorder[0] = 3;
3327 iorder[1] = 2;
3328 iorder[2] = 1;
3329 iorder[3] = 0;
3330 }
3331
3332 while (size-- > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00003333 Py_UCS4 ch = *s++;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003334#ifndef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00003335 if (0xD800 <= ch && ch <= 0xDBFF && size > 0) {
3336 Py_UCS4 ch2 = *s;
3337 if (0xDC00 <= ch2 && ch2 <= 0xDFFF) {
3338 ch = (((ch & 0x3FF)<<10) | (ch2 & 0x3FF)) + 0x10000;
3339 s++;
3340 size--;
3341 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00003342 }
Walter Dörwald41980ca2007-08-16 21:55:45 +00003343#endif
3344 STORECHAR(ch);
3345 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00003346
3347 done:
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00003348 return v;
Walter Dörwald41980ca2007-08-16 21:55:45 +00003349#undef STORECHAR
3350}
3351
3352PyObject *PyUnicode_AsUTF32String(PyObject *unicode)
3353{
3354 if (!PyUnicode_Check(unicode)) {
3355 PyErr_BadArgument();
3356 return NULL;
3357 }
3358 return PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(unicode),
Benjamin Peterson29060642009-01-31 22:14:21 +00003359 PyUnicode_GET_SIZE(unicode),
3360 NULL,
3361 0);
Walter Dörwald41980ca2007-08-16 21:55:45 +00003362}
3363
Guido van Rossumd57fd912000-03-10 22:53:23 +00003364/* --- UTF-16 Codec ------------------------------------------------------- */
3365
Tim Peters772747b2001-08-09 22:21:55 +00003366PyObject *
3367PyUnicode_DecodeUTF16(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00003368 Py_ssize_t size,
3369 const char *errors,
3370 int *byteorder)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003371{
Walter Dörwald69652032004-09-07 20:24:22 +00003372 return PyUnicode_DecodeUTF16Stateful(s, size, errors, byteorder, NULL);
3373}
3374
Antoine Pitrouab868312009-01-10 15:40:25 +00003375/* Two masks for fast checking of whether a C 'long' may contain
3376 UTF16-encoded surrogate characters. This is an efficient heuristic,
3377 assuming that non-surrogate characters with a code point >= 0x8000 are
3378 rare in most input.
3379 FAST_CHAR_MASK is used when the input is in native byte ordering,
3380 SWAPPED_FAST_CHAR_MASK when the input is in byteswapped ordering.
Benjamin Peterson29060642009-01-31 22:14:21 +00003381*/
Antoine Pitrouab868312009-01-10 15:40:25 +00003382#if (SIZEOF_LONG == 8)
3383# define FAST_CHAR_MASK 0x8000800080008000L
3384# define SWAPPED_FAST_CHAR_MASK 0x0080008000800080L
3385#elif (SIZEOF_LONG == 4)
3386# define FAST_CHAR_MASK 0x80008000L
3387# define SWAPPED_FAST_CHAR_MASK 0x00800080L
3388#else
3389# error C 'long' size should be either 4 or 8!
3390#endif
3391
Walter Dörwald69652032004-09-07 20:24:22 +00003392PyObject *
3393PyUnicode_DecodeUTF16Stateful(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00003394 Py_ssize_t size,
3395 const char *errors,
3396 int *byteorder,
3397 Py_ssize_t *consumed)
Walter Dörwald69652032004-09-07 20:24:22 +00003398{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003399 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003400 Py_ssize_t startinpos;
3401 Py_ssize_t endinpos;
3402 Py_ssize_t outpos;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003403 PyUnicodeObject *unicode;
3404 Py_UNICODE *p;
Antoine Pitrouab868312009-01-10 15:40:25 +00003405 const unsigned char *q, *e, *aligned_end;
Tim Peters772747b2001-08-09 22:21:55 +00003406 int bo = 0; /* assume native ordering by default */
Antoine Pitrouab868312009-01-10 15:40:25 +00003407 int native_ordering = 0;
Marc-André Lemburg9542f482000-07-17 18:23:13 +00003408 const char *errmsg = "";
Tim Peters772747b2001-08-09 22:21:55 +00003409 /* Offsets from q for retrieving byte pairs in the right order. */
3410#ifdef BYTEORDER_IS_LITTLE_ENDIAN
3411 int ihi = 1, ilo = 0;
3412#else
3413 int ihi = 0, ilo = 1;
3414#endif
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003415 PyObject *errorHandler = NULL;
3416 PyObject *exc = NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003417
3418 /* Note: size will always be longer than the resulting Unicode
3419 character count */
3420 unicode = _PyUnicode_New(size);
3421 if (!unicode)
3422 return NULL;
3423 if (size == 0)
3424 return (PyObject *)unicode;
3425
3426 /* Unpack UTF-16 encoded data */
3427 p = unicode->str;
Tim Peters772747b2001-08-09 22:21:55 +00003428 q = (unsigned char *)s;
Antoine Pitroub4bbee22012-07-21 00:45:14 +02003429 e = q + size;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003430
3431 if (byteorder)
Tim Peters772747b2001-08-09 22:21:55 +00003432 bo = *byteorder;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003433
Marc-André Lemburg489b56e2001-05-21 20:30:15 +00003434 /* Check for BOM marks (U+FEFF) in the input and adjust current
3435 byte order setting accordingly. In native mode, the leading BOM
3436 mark is skipped, in all other modes, it is copied to the output
3437 stream as-is (giving a ZWNBSP character). */
3438 if (bo == 0) {
Walter Dörwald69652032004-09-07 20:24:22 +00003439 if (size >= 2) {
3440 const Py_UNICODE bom = (q[ihi] << 8) | q[ilo];
Marc-André Lemburg489b56e2001-05-21 20:30:15 +00003441#ifdef BYTEORDER_IS_LITTLE_ENDIAN
Benjamin Peterson29060642009-01-31 22:14:21 +00003442 if (bom == 0xFEFF) {
3443 q += 2;
3444 bo = -1;
3445 }
3446 else if (bom == 0xFFFE) {
3447 q += 2;
3448 bo = 1;
3449 }
Tim Petersced69f82003-09-16 20:30:58 +00003450#else
Benjamin Peterson29060642009-01-31 22:14:21 +00003451 if (bom == 0xFEFF) {
3452 q += 2;
3453 bo = 1;
3454 }
3455 else if (bom == 0xFFFE) {
3456 q += 2;
3457 bo = -1;
3458 }
Marc-André Lemburg489b56e2001-05-21 20:30:15 +00003459#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00003460 }
Marc-André Lemburg489b56e2001-05-21 20:30:15 +00003461 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00003462
Tim Peters772747b2001-08-09 22:21:55 +00003463 if (bo == -1) {
3464 /* force LE */
3465 ihi = 1;
3466 ilo = 0;
3467 }
3468 else if (bo == 1) {
3469 /* force BE */
3470 ihi = 0;
3471 ilo = 1;
3472 }
Antoine Pitrouab868312009-01-10 15:40:25 +00003473#ifdef BYTEORDER_IS_LITTLE_ENDIAN
3474 native_ordering = ilo < ihi;
3475#else
3476 native_ordering = ilo > ihi;
3477#endif
Tim Peters772747b2001-08-09 22:21:55 +00003478
Antoine Pitrouab868312009-01-10 15:40:25 +00003479 aligned_end = (const unsigned char *) ((size_t) e & ~LONG_PTR_MASK);
Antoine Pitroub4bbee22012-07-21 00:45:14 +02003480 while (1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00003481 Py_UNICODE ch;
Antoine Pitroub4bbee22012-07-21 00:45:14 +02003482 if (e - q < 2) {
3483 /* remaining byte at the end? (size should be even) */
3484 if (q == e || consumed)
3485 break;
3486 errmsg = "truncated data";
3487 startinpos = ((const char *)q) - starts;
3488 endinpos = ((const char *)e) - starts;
3489 outpos = p - PyUnicode_AS_UNICODE(unicode);
3490 goto utf16Error;
3491 /* The remaining input chars are ignored if the callback
3492 chooses to skip the input */
3493 }
Antoine Pitrouab868312009-01-10 15:40:25 +00003494 /* First check for possible aligned read of a C 'long'. Unaligned
3495 reads are more expensive, better to defer to another iteration. */
3496 if (!((size_t) q & LONG_PTR_MASK)) {
3497 /* Fast path for runs of non-surrogate chars. */
3498 register const unsigned char *_q = q;
3499 Py_UNICODE *_p = p;
3500 if (native_ordering) {
3501 /* Native ordering is simple: as long as the input cannot
3502 possibly contain a surrogate char, do an unrolled copy
3503 of several 16-bit code points to the target object.
3504 The non-surrogate check is done on several input bytes
3505 at a time (as many as a C 'long' can contain). */
3506 while (_q < aligned_end) {
3507 unsigned long data = * (unsigned long *) _q;
3508 if (data & FAST_CHAR_MASK)
3509 break;
3510 _p[0] = ((unsigned short *) _q)[0];
3511 _p[1] = ((unsigned short *) _q)[1];
3512#if (SIZEOF_LONG == 8)
3513 _p[2] = ((unsigned short *) _q)[2];
3514 _p[3] = ((unsigned short *) _q)[3];
3515#endif
3516 _q += SIZEOF_LONG;
3517 _p += SIZEOF_LONG / 2;
3518 }
3519 }
3520 else {
3521 /* Byteswapped ordering is similar, but we must decompose
3522 the copy bytewise, and take care of zero'ing out the
3523 upper bytes if the target object is in 32-bit units
3524 (that is, in UCS-4 builds). */
3525 while (_q < aligned_end) {
3526 unsigned long data = * (unsigned long *) _q;
3527 if (data & SWAPPED_FAST_CHAR_MASK)
3528 break;
3529 /* Zero upper bytes in UCS-4 builds */
3530#if (Py_UNICODE_SIZE > 2)
3531 _p[0] = 0;
3532 _p[1] = 0;
3533#if (SIZEOF_LONG == 8)
3534 _p[2] = 0;
3535 _p[3] = 0;
3536#endif
3537#endif
Antoine Pitroud6e8de12009-01-11 23:56:55 +00003538 /* Issue #4916; UCS-4 builds on big endian machines must
3539 fill the two last bytes of each 4-byte unit. */
3540#if (!defined(BYTEORDER_IS_LITTLE_ENDIAN) && Py_UNICODE_SIZE > 2)
3541# define OFF 2
3542#else
3543# define OFF 0
Antoine Pitrouab868312009-01-10 15:40:25 +00003544#endif
Antoine Pitroud6e8de12009-01-11 23:56:55 +00003545 ((unsigned char *) _p)[OFF + 1] = _q[0];
3546 ((unsigned char *) _p)[OFF + 0] = _q[1];
3547 ((unsigned char *) _p)[OFF + 1 + Py_UNICODE_SIZE] = _q[2];
3548 ((unsigned char *) _p)[OFF + 0 + Py_UNICODE_SIZE] = _q[3];
3549#if (SIZEOF_LONG == 8)
3550 ((unsigned char *) _p)[OFF + 1 + 2 * Py_UNICODE_SIZE] = _q[4];
3551 ((unsigned char *) _p)[OFF + 0 + 2 * Py_UNICODE_SIZE] = _q[5];
3552 ((unsigned char *) _p)[OFF + 1 + 3 * Py_UNICODE_SIZE] = _q[6];
3553 ((unsigned char *) _p)[OFF + 0 + 3 * Py_UNICODE_SIZE] = _q[7];
3554#endif
3555#undef OFF
Antoine Pitrouab868312009-01-10 15:40:25 +00003556 _q += SIZEOF_LONG;
3557 _p += SIZEOF_LONG / 2;
3558 }
3559 }
3560 p = _p;
3561 q = _q;
Antoine Pitroub4bbee22012-07-21 00:45:14 +02003562 if (e - q < 2)
3563 continue;
Antoine Pitrouab868312009-01-10 15:40:25 +00003564 }
Benjamin Peterson29060642009-01-31 22:14:21 +00003565 ch = (q[ihi] << 8) | q[ilo];
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003566
Benjamin Peterson14339b62009-01-31 16:36:08 +00003567 q += 2;
Benjamin Peterson29060642009-01-31 22:14:21 +00003568
3569 if (ch < 0xD800 || ch > 0xDFFF) {
3570 *p++ = ch;
3571 continue;
3572 }
3573
3574 /* UTF-16 code pair: */
Antoine Pitroub4bbee22012-07-21 00:45:14 +02003575 if (e - q < 2) {
Serhiy Storchaka48e188e2013-01-08 23:14:24 +02003576 q -= 2;
3577 if (consumed)
3578 break;
Benjamin Peterson29060642009-01-31 22:14:21 +00003579 errmsg = "unexpected end of data";
Serhiy Storchaka48e188e2013-01-08 23:14:24 +02003580 startinpos = ((const char *)q) - starts;
Antoine Pitroub4bbee22012-07-21 00:45:14 +02003581 endinpos = ((const char *)e) - starts;
Benjamin Peterson29060642009-01-31 22:14:21 +00003582 goto utf16Error;
3583 }
3584 if (0xD800 <= ch && ch <= 0xDBFF) {
3585 Py_UNICODE ch2 = (q[ihi] << 8) | q[ilo];
3586 q += 2;
3587 if (0xDC00 <= ch2 && ch2 <= 0xDFFF) {
Fredrik Lundh8f455852001-06-27 18:59:43 +00003588#ifndef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00003589 *p++ = ch;
3590 *p++ = ch2;
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00003591#else
Benjamin Peterson29060642009-01-31 22:14:21 +00003592 *p++ = (((ch & 0x3FF)<<10) | (ch2 & 0x3FF)) + 0x10000;
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00003593#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00003594 continue;
3595 }
3596 else {
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00003597 errmsg = "illegal UTF-16 surrogate";
Benjamin Peterson29060642009-01-31 22:14:21 +00003598 startinpos = (((const char *)q)-4)-starts;
3599 endinpos = startinpos+2;
3600 goto utf16Error;
3601 }
3602
Benjamin Peterson14339b62009-01-31 16:36:08 +00003603 }
Benjamin Peterson29060642009-01-31 22:14:21 +00003604 errmsg = "illegal encoding";
3605 startinpos = (((const char *)q)-2)-starts;
3606 endinpos = startinpos+2;
3607 /* Fall through to report the error */
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00003608
Benjamin Peterson29060642009-01-31 22:14:21 +00003609 utf16Error:
3610 outpos = p - PyUnicode_AS_UNICODE(unicode);
3611 if (unicode_decode_call_errorhandler(
Antoine Pitrouab868312009-01-10 15:40:25 +00003612 errors,
3613 &errorHandler,
3614 "utf16", errmsg,
3615 &starts,
3616 (const char **)&e,
3617 &startinpos,
3618 &endinpos,
3619 &exc,
3620 (const char **)&q,
3621 &unicode,
3622 &outpos,
3623 &p))
Benjamin Peterson29060642009-01-31 22:14:21 +00003624 goto onError;
Antoine Pitroub4bbee22012-07-21 00:45:14 +02003625 /* Update data because unicode_decode_call_errorhandler might have
3626 changed the input object. */
3627 aligned_end = (const unsigned char *) ((size_t) e & ~LONG_PTR_MASK);
Antoine Pitrouab868312009-01-10 15:40:25 +00003628 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00003629
3630 if (byteorder)
3631 *byteorder = bo;
3632
Walter Dörwald69652032004-09-07 20:24:22 +00003633 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00003634 *consumed = (const char *)q-starts;
Walter Dörwald69652032004-09-07 20:24:22 +00003635
Guido van Rossumd57fd912000-03-10 22:53:23 +00003636 /* Adjust length */
Jeremy Hyltondeb2dc62003-09-16 03:41:45 +00003637 if (_PyUnicode_Resize(&unicode, p - unicode->str) < 0)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003638 goto onError;
3639
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003640 Py_XDECREF(errorHandler);
3641 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003642 return (PyObject *)unicode;
3643
Benjamin Peterson29060642009-01-31 22:14:21 +00003644 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00003645 Py_DECREF(unicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003646 Py_XDECREF(errorHandler);
3647 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003648 return NULL;
3649}
3650
Antoine Pitrouab868312009-01-10 15:40:25 +00003651#undef FAST_CHAR_MASK
3652#undef SWAPPED_FAST_CHAR_MASK
3653
Tim Peters772747b2001-08-09 22:21:55 +00003654PyObject *
3655PyUnicode_EncodeUTF16(const Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00003656 Py_ssize_t size,
3657 const char *errors,
3658 int byteorder)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003659{
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00003660 PyObject *v;
Tim Peters772747b2001-08-09 22:21:55 +00003661 unsigned char *p;
Neal Norwitz3ce5d922008-08-24 07:08:55 +00003662 Py_ssize_t nsize, bytesize;
Hye-Shik Chang4a264fb2003-12-19 01:59:56 +00003663#ifdef Py_UNICODE_WIDE
Neal Norwitz3ce5d922008-08-24 07:08:55 +00003664 Py_ssize_t i, pairs;
Hye-Shik Chang4a264fb2003-12-19 01:59:56 +00003665#else
3666 const int pairs = 0;
3667#endif
Tim Peters772747b2001-08-09 22:21:55 +00003668 /* Offsets from p for storing byte pairs in the right order. */
3669#ifdef BYTEORDER_IS_LITTLE_ENDIAN
3670 int ihi = 1, ilo = 0;
3671#else
3672 int ihi = 0, ilo = 1;
3673#endif
3674
Benjamin Peterson29060642009-01-31 22:14:21 +00003675#define STORECHAR(CH) \
3676 do { \
3677 p[ihi] = ((CH) >> 8) & 0xff; \
3678 p[ilo] = (CH) & 0xff; \
3679 p += 2; \
Tim Peters772747b2001-08-09 22:21:55 +00003680 } while(0)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003681
Hye-Shik Chang4a264fb2003-12-19 01:59:56 +00003682#ifdef Py_UNICODE_WIDE
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00003683 for (i = pairs = 0; i < size; i++)
Benjamin Peterson29060642009-01-31 22:14:21 +00003684 if (s[i] >= 0x10000)
3685 pairs++;
Hye-Shik Chang4a264fb2003-12-19 01:59:56 +00003686#endif
Neal Norwitz3ce5d922008-08-24 07:08:55 +00003687 /* 2 * (size + pairs + (byteorder == 0)) */
3688 if (size > PY_SSIZE_T_MAX ||
3689 size > PY_SSIZE_T_MAX - pairs - (byteorder == 0))
Benjamin Peterson29060642009-01-31 22:14:21 +00003690 return PyErr_NoMemory();
Neal Norwitz3ce5d922008-08-24 07:08:55 +00003691 nsize = size + pairs + (byteorder == 0);
3692 bytesize = nsize * 2;
3693 if (bytesize / 2 != nsize)
Benjamin Peterson29060642009-01-31 22:14:21 +00003694 return PyErr_NoMemory();
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00003695 v = PyBytes_FromStringAndSize(NULL, bytesize);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003696 if (v == NULL)
3697 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003698
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00003699 p = (unsigned char *)PyBytes_AS_STRING(v);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003700 if (byteorder == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00003701 STORECHAR(0xFEFF);
Marc-André Lemburg063e0cb2000-07-07 11:27:45 +00003702 if (size == 0)
Guido van Rossum98297ee2007-11-06 21:34:58 +00003703 goto done;
Tim Peters772747b2001-08-09 22:21:55 +00003704
3705 if (byteorder == -1) {
3706 /* force LE */
3707 ihi = 1;
3708 ilo = 0;
3709 }
3710 else if (byteorder == 1) {
3711 /* force BE */
3712 ihi = 0;
3713 ilo = 1;
3714 }
3715
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00003716 while (size-- > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00003717 Py_UNICODE ch = *s++;
3718 Py_UNICODE ch2 = 0;
Hye-Shik Chang4a264fb2003-12-19 01:59:56 +00003719#ifdef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00003720 if (ch >= 0x10000) {
3721 ch2 = 0xDC00 | ((ch-0x10000) & 0x3FF);
3722 ch = 0xD800 | ((ch-0x10000) >> 10);
3723 }
Hye-Shik Chang4a264fb2003-12-19 01:59:56 +00003724#endif
Tim Peters772747b2001-08-09 22:21:55 +00003725 STORECHAR(ch);
3726 if (ch2)
3727 STORECHAR(ch2);
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00003728 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00003729
3730 done:
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00003731 return v;
Tim Peters772747b2001-08-09 22:21:55 +00003732#undef STORECHAR
Guido van Rossumd57fd912000-03-10 22:53:23 +00003733}
3734
3735PyObject *PyUnicode_AsUTF16String(PyObject *unicode)
3736{
3737 if (!PyUnicode_Check(unicode)) {
3738 PyErr_BadArgument();
3739 return NULL;
3740 }
3741 return PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(unicode),
Benjamin Peterson29060642009-01-31 22:14:21 +00003742 PyUnicode_GET_SIZE(unicode),
3743 NULL,
3744 0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003745}
3746
3747/* --- Unicode Escape Codec ----------------------------------------------- */
3748
Fredrik Lundh06d12682001-01-24 07:59:11 +00003749static _PyUnicode_Name_CAPI *ucnhash_CAPI = NULL;
Marc-André Lemburg0f774e32000-06-28 16:43:35 +00003750
Guido van Rossumd57fd912000-03-10 22:53:23 +00003751PyObject *PyUnicode_DecodeUnicodeEscape(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00003752 Py_ssize_t size,
3753 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00003754{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003755 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003756 Py_ssize_t startinpos;
3757 Py_ssize_t endinpos;
3758 Py_ssize_t outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003759 int i;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003760 PyUnicodeObject *v;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003761 Py_UNICODE *p;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003762 const char *end;
Fredrik Lundhccc74732001-02-18 22:13:49 +00003763 char* message;
3764 Py_UCS4 chr = 0xffffffff; /* in case 'getcode' messes up */
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003765 PyObject *errorHandler = NULL;
3766 PyObject *exc = NULL;
Fredrik Lundhccc74732001-02-18 22:13:49 +00003767
Guido van Rossumd57fd912000-03-10 22:53:23 +00003768 /* Escaped strings will always be longer than the resulting
3769 Unicode string, so we start with size here and then reduce the
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003770 length after conversion to the true value.
3771 (but if the error callback returns a long replacement string
3772 we'll have to allocate more space) */
Guido van Rossumd57fd912000-03-10 22:53:23 +00003773 v = _PyUnicode_New(size);
3774 if (v == NULL)
3775 goto onError;
3776 if (size == 0)
3777 return (PyObject *)v;
Fredrik Lundhccc74732001-02-18 22:13:49 +00003778
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003779 p = PyUnicode_AS_UNICODE(v);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003780 end = s + size;
Fredrik Lundhccc74732001-02-18 22:13:49 +00003781
Guido van Rossumd57fd912000-03-10 22:53:23 +00003782 while (s < end) {
3783 unsigned char c;
Marc-André Lemburg063e0cb2000-07-07 11:27:45 +00003784 Py_UNICODE x;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003785 int digits;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003786
3787 /* Non-escape characters are interpreted as Unicode ordinals */
3788 if (*s != '\\') {
Fredrik Lundhccc74732001-02-18 22:13:49 +00003789 *p++ = (unsigned char) *s++;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003790 continue;
3791 }
3792
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003793 startinpos = s-starts;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003794 /* \ - Escapes */
3795 s++;
Guido van Rossum8ce8a782007-11-01 19:42:39 +00003796 c = *s++;
3797 if (s > end)
3798 c = '\0'; /* Invalid after \ */
3799 switch (c) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00003800
Benjamin Peterson29060642009-01-31 22:14:21 +00003801 /* \x escapes */
Guido van Rossumd57fd912000-03-10 22:53:23 +00003802 case '\n': break;
3803 case '\\': *p++ = '\\'; break;
3804 case '\'': *p++ = '\''; break;
3805 case '\"': *p++ = '\"'; break;
3806 case 'b': *p++ = '\b'; break;
3807 case 'f': *p++ = '\014'; break; /* FF */
3808 case 't': *p++ = '\t'; break;
3809 case 'n': *p++ = '\n'; break;
3810 case 'r': *p++ = '\r'; break;
3811 case 'v': *p++ = '\013'; break; /* VT */
3812 case 'a': *p++ = '\007'; break; /* BEL, not classic C */
3813
Benjamin Peterson29060642009-01-31 22:14:21 +00003814 /* \OOO (octal) escapes */
Guido van Rossumd57fd912000-03-10 22:53:23 +00003815 case '0': case '1': case '2': case '3':
3816 case '4': case '5': case '6': case '7':
Guido van Rossum0e4f6572000-05-01 21:27:20 +00003817 x = s[-1] - '0';
Guido van Rossum8ce8a782007-11-01 19:42:39 +00003818 if (s < end && '0' <= *s && *s <= '7') {
Guido van Rossum0e4f6572000-05-01 21:27:20 +00003819 x = (x<<3) + *s++ - '0';
Guido van Rossum8ce8a782007-11-01 19:42:39 +00003820 if (s < end && '0' <= *s && *s <= '7')
Guido van Rossum0e4f6572000-05-01 21:27:20 +00003821 x = (x<<3) + *s++ - '0';
Guido van Rossumd57fd912000-03-10 22:53:23 +00003822 }
Guido van Rossum0e4f6572000-05-01 21:27:20 +00003823 *p++ = x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003824 break;
3825
Benjamin Peterson29060642009-01-31 22:14:21 +00003826 /* hex escapes */
3827 /* \xXX */
Guido van Rossumd57fd912000-03-10 22:53:23 +00003828 case 'x':
Fredrik Lundhccc74732001-02-18 22:13:49 +00003829 digits = 2;
3830 message = "truncated \\xXX escape";
3831 goto hexescape;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003832
Benjamin Peterson29060642009-01-31 22:14:21 +00003833 /* \uXXXX */
Guido van Rossumd57fd912000-03-10 22:53:23 +00003834 case 'u':
Fredrik Lundhccc74732001-02-18 22:13:49 +00003835 digits = 4;
3836 message = "truncated \\uXXXX escape";
3837 goto hexescape;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003838
Benjamin Peterson29060642009-01-31 22:14:21 +00003839 /* \UXXXXXXXX */
Fredrik Lundhdf846752000-09-03 11:29:49 +00003840 case 'U':
Fredrik Lundhccc74732001-02-18 22:13:49 +00003841 digits = 8;
3842 message = "truncated \\UXXXXXXXX escape";
3843 hexescape:
3844 chr = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003845 outpos = p-PyUnicode_AS_UNICODE(v);
3846 if (s+digits>end) {
3847 endinpos = size;
3848 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00003849 errors, &errorHandler,
3850 "unicodeescape", "end of string in escape sequence",
3851 &starts, &end, &startinpos, &endinpos, &exc, &s,
3852 &v, &outpos, &p))
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003853 goto onError;
3854 goto nextByte;
3855 }
3856 for (i = 0; i < digits; ++i) {
Fredrik Lundhccc74732001-02-18 22:13:49 +00003857 c = (unsigned char) s[i];
David Malcolm96960882010-11-05 17:23:41 +00003858 if (!Py_ISXDIGIT(c)) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003859 endinpos = (s+i+1)-starts;
3860 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00003861 errors, &errorHandler,
3862 "unicodeescape", message,
3863 &starts, &end, &startinpos, &endinpos, &exc, &s,
3864 &v, &outpos, &p))
Fredrik Lundhdf846752000-09-03 11:29:49 +00003865 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003866 goto nextByte;
Fredrik Lundhdf846752000-09-03 11:29:49 +00003867 }
3868 chr = (chr<<4) & ~0xF;
3869 if (c >= '0' && c <= '9')
3870 chr += c - '0';
3871 else if (c >= 'a' && c <= 'f')
3872 chr += 10 + c - 'a';
3873 else
3874 chr += 10 + c - 'A';
3875 }
3876 s += i;
Jeremy Hylton504de6b2003-10-06 05:08:26 +00003877 if (chr == 0xffffffff && PyErr_Occurred())
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003878 /* _decoding_error will have already written into the
3879 target buffer. */
3880 break;
Fredrik Lundhccc74732001-02-18 22:13:49 +00003881 store:
Fredrik Lundhdf846752000-09-03 11:29:49 +00003882 /* when we get here, chr is a 32-bit unicode character */
3883 if (chr <= 0xffff)
3884 /* UCS-2 character */
3885 *p++ = (Py_UNICODE) chr;
3886 else if (chr <= 0x10ffff) {
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +00003887 /* UCS-4 character. Either store directly, or as
Walter Dörwald8c077222002-03-25 11:16:18 +00003888 surrogate pair. */
Fredrik Lundh8f455852001-06-27 18:59:43 +00003889#ifdef Py_UNICODE_WIDE
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00003890 *p++ = chr;
3891#else
Fredrik Lundhdf846752000-09-03 11:29:49 +00003892 chr -= 0x10000L;
3893 *p++ = 0xD800 + (Py_UNICODE) (chr >> 10);
Fredrik Lundh45714e92001-06-26 16:39:36 +00003894 *p++ = 0xDC00 + (Py_UNICODE) (chr & 0x03FF);
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00003895#endif
Fredrik Lundhdf846752000-09-03 11:29:49 +00003896 } else {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003897 endinpos = s-starts;
3898 outpos = p-PyUnicode_AS_UNICODE(v);
3899 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00003900 errors, &errorHandler,
3901 "unicodeescape", "illegal Unicode character",
3902 &starts, &end, &startinpos, &endinpos, &exc, &s,
3903 &v, &outpos, &p))
Fredrik Lundhdf846752000-09-03 11:29:49 +00003904 goto onError;
3905 }
Fredrik Lundhccc74732001-02-18 22:13:49 +00003906 break;
3907
Benjamin Peterson29060642009-01-31 22:14:21 +00003908 /* \N{name} */
Fredrik Lundhccc74732001-02-18 22:13:49 +00003909 case 'N':
3910 message = "malformed \\N character escape";
3911 if (ucnhash_CAPI == NULL) {
3912 /* load the unicode data module */
Benjamin Petersonb173f782009-05-05 22:31:58 +00003913 ucnhash_CAPI = (_PyUnicode_Name_CAPI *)PyCapsule_Import(PyUnicodeData_CAPSULE_NAME, 1);
Fredrik Lundhccc74732001-02-18 22:13:49 +00003914 if (ucnhash_CAPI == NULL)
3915 goto ucnhashError;
3916 }
3917 if (*s == '{') {
3918 const char *start = s+1;
3919 /* look for the closing brace */
3920 while (*s != '}' && s < end)
3921 s++;
3922 if (s > start && s < end && *s == '}') {
3923 /* found a name. look it up in the unicode database */
3924 message = "unknown Unicode character name";
3925 s++;
Martin v. Löwis480f1bb2006-03-09 23:38:20 +00003926 if (ucnhash_CAPI->getcode(NULL, start, (int)(s-start-1), &chr))
Fredrik Lundhccc74732001-02-18 22:13:49 +00003927 goto store;
3928 }
3929 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003930 endinpos = s-starts;
3931 outpos = p-PyUnicode_AS_UNICODE(v);
3932 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00003933 errors, &errorHandler,
3934 "unicodeescape", message,
3935 &starts, &end, &startinpos, &endinpos, &exc, &s,
3936 &v, &outpos, &p))
Fredrik Lundhccc74732001-02-18 22:13:49 +00003937 goto onError;
Fredrik Lundhccc74732001-02-18 22:13:49 +00003938 break;
3939
3940 default:
Walter Dörwald8c077222002-03-25 11:16:18 +00003941 if (s > end) {
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003942 message = "\\ at end of string";
3943 s--;
3944 endinpos = s-starts;
3945 outpos = p-PyUnicode_AS_UNICODE(v);
3946 if (unicode_decode_call_errorhandler(
Benjamin Peterson29060642009-01-31 22:14:21 +00003947 errors, &errorHandler,
3948 "unicodeescape", message,
3949 &starts, &end, &startinpos, &endinpos, &exc, &s,
3950 &v, &outpos, &p))
Walter Dörwald8c077222002-03-25 11:16:18 +00003951 goto onError;
3952 }
3953 else {
3954 *p++ = '\\';
3955 *p++ = (unsigned char)s[-1];
3956 }
Fredrik Lundhccc74732001-02-18 22:13:49 +00003957 break;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003958 }
Benjamin Peterson29060642009-01-31 22:14:21 +00003959 nextByte:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003960 ;
Guido van Rossumd57fd912000-03-10 22:53:23 +00003961 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003962 if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003963 goto onError;
Walter Dörwaldd4ade082003-08-15 15:00:26 +00003964 Py_XDECREF(errorHandler);
3965 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003966 return (PyObject *)v;
Walter Dörwald8c077222002-03-25 11:16:18 +00003967
Benjamin Peterson29060642009-01-31 22:14:21 +00003968 ucnhashError:
Fredrik Lundh06d12682001-01-24 07:59:11 +00003969 PyErr_SetString(
3970 PyExc_UnicodeError,
3971 "\\N escapes not supported (can't load unicodedata module)"
3972 );
Hye-Shik Chang4af5c8c2006-03-07 15:39:21 +00003973 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003974 Py_XDECREF(errorHandler);
3975 Py_XDECREF(exc);
Fredrik Lundhf6056062001-01-20 11:15:25 +00003976 return NULL;
3977
Benjamin Peterson29060642009-01-31 22:14:21 +00003978 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00003979 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00003980 Py_XDECREF(errorHandler);
3981 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00003982 return NULL;
3983}
3984
3985/* Return a Unicode-Escape string version of the Unicode object.
3986
3987 If quotes is true, the string is enclosed in u"" or u'' quotes as
3988 appropriate.
3989
3990*/
3991
Thomas Wouters477c8d52006-05-27 19:21:47 +00003992Py_LOCAL_INLINE(const Py_UNICODE *) findchar(const Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00003993 Py_ssize_t size,
3994 Py_UNICODE ch)
Thomas Wouters477c8d52006-05-27 19:21:47 +00003995{
3996 /* like wcschr, but doesn't stop at NULL characters */
3997
3998 while (size-- > 0) {
3999 if (*s == ch)
4000 return s;
4001 s++;
4002 }
4003
4004 return NULL;
4005}
Barry Warsaw51ac5802000-03-20 16:36:48 +00004006
Walter Dörwald79e913e2007-05-12 11:08:06 +00004007static const char *hexdigits = "0123456789abcdef";
4008
4009PyObject *PyUnicode_EncodeUnicodeEscape(const Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004010 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004011{
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004012 PyObject *repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004013 char *p;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004014
Neal Norwitz3ce5d922008-08-24 07:08:55 +00004015#ifdef Py_UNICODE_WIDE
4016 const Py_ssize_t expandsize = 10;
4017#else
4018 const Py_ssize_t expandsize = 6;
4019#endif
4020
Thomas Wouters89f507f2006-12-13 04:49:30 +00004021 /* XXX(nnorwitz): rather than over-allocating, it would be
4022 better to choose a different scheme. Perhaps scan the
4023 first N-chars of the string and allocate based on that size.
4024 */
4025 /* Initial allocation is based on the longest-possible unichr
4026 escape.
4027
4028 In wide (UTF-32) builds '\U00xxxxxx' is 10 chars per source
4029 unichr, so in this case it's the longest unichr escape. In
4030 narrow (UTF-16) builds this is five chars per source unichr
4031 since there are two unichrs in the surrogate pair, so in narrow
4032 (UTF-16) builds it's not the longest unichr escape.
4033
4034 In wide or narrow builds '\uxxxx' is 6 chars per source unichr,
4035 so in the narrow (UTF-16) build case it's the longest unichr
4036 escape.
4037 */
4038
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004039 if (size == 0)
4040 return PyBytes_FromStringAndSize(NULL, 0);
4041
Neal Norwitz3ce5d922008-08-24 07:08:55 +00004042 if (size > (PY_SSIZE_T_MAX - 2 - 1) / expandsize)
Benjamin Peterson29060642009-01-31 22:14:21 +00004043 return PyErr_NoMemory();
Neal Norwitz3ce5d922008-08-24 07:08:55 +00004044
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004045 repr = PyBytes_FromStringAndSize(NULL,
Benjamin Peterson29060642009-01-31 22:14:21 +00004046 2
4047 + expandsize*size
4048 + 1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004049 if (repr == NULL)
4050 return NULL;
4051
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004052 p = PyBytes_AS_STRING(repr);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004053
Guido van Rossumd57fd912000-03-10 22:53:23 +00004054 while (size-- > 0) {
4055 Py_UNICODE ch = *s++;
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00004056
Walter Dörwald79e913e2007-05-12 11:08:06 +00004057 /* Escape backslashes */
4058 if (ch == '\\') {
Guido van Rossumd57fd912000-03-10 22:53:23 +00004059 *p++ = '\\';
4060 *p++ = (char) ch;
Walter Dörwald79e913e2007-05-12 11:08:06 +00004061 continue;
Tim Petersced69f82003-09-16 20:30:58 +00004062 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00004063
Guido van Rossum0d42e0c2001-07-20 16:36:21 +00004064#ifdef Py_UNICODE_WIDE
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004065 /* Map 21-bit characters to '\U00xxxxxx' */
4066 else if (ch >= 0x10000) {
4067 *p++ = '\\';
4068 *p++ = 'U';
Walter Dörwald79e913e2007-05-12 11:08:06 +00004069 *p++ = hexdigits[(ch >> 28) & 0x0000000F];
4070 *p++ = hexdigits[(ch >> 24) & 0x0000000F];
4071 *p++ = hexdigits[(ch >> 20) & 0x0000000F];
4072 *p++ = hexdigits[(ch >> 16) & 0x0000000F];
4073 *p++ = hexdigits[(ch >> 12) & 0x0000000F];
4074 *p++ = hexdigits[(ch >> 8) & 0x0000000F];
4075 *p++ = hexdigits[(ch >> 4) & 0x0000000F];
4076 *p++ = hexdigits[ch & 0x0000000F];
Benjamin Peterson29060642009-01-31 22:14:21 +00004077 continue;
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004078 }
Thomas Wouters89f507f2006-12-13 04:49:30 +00004079#else
Benjamin Peterson29060642009-01-31 22:14:21 +00004080 /* Map UTF-16 surrogate pairs to '\U00xxxxxx' */
4081 else if (ch >= 0xD800 && ch < 0xDC00) {
4082 Py_UNICODE ch2;
4083 Py_UCS4 ucs;
Tim Petersced69f82003-09-16 20:30:58 +00004084
Benjamin Peterson29060642009-01-31 22:14:21 +00004085 ch2 = *s++;
4086 size--;
Georg Brandl78eef3de2010-08-01 20:51:02 +00004087 if (ch2 >= 0xDC00 && ch2 <= 0xDFFF) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004088 ucs = (((ch & 0x03FF) << 10) | (ch2 & 0x03FF)) + 0x00010000;
4089 *p++ = '\\';
4090 *p++ = 'U';
4091 *p++ = hexdigits[(ucs >> 28) & 0x0000000F];
4092 *p++ = hexdigits[(ucs >> 24) & 0x0000000F];
4093 *p++ = hexdigits[(ucs >> 20) & 0x0000000F];
4094 *p++ = hexdigits[(ucs >> 16) & 0x0000000F];
4095 *p++ = hexdigits[(ucs >> 12) & 0x0000000F];
4096 *p++ = hexdigits[(ucs >> 8) & 0x0000000F];
4097 *p++ = hexdigits[(ucs >> 4) & 0x0000000F];
4098 *p++ = hexdigits[ucs & 0x0000000F];
4099 continue;
4100 }
4101 /* Fall through: isolated surrogates are copied as-is */
4102 s--;
4103 size++;
Benjamin Peterson14339b62009-01-31 16:36:08 +00004104 }
Thomas Wouters89f507f2006-12-13 04:49:30 +00004105#endif
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +00004106
Guido van Rossumd57fd912000-03-10 22:53:23 +00004107 /* Map 16-bit characters to '\uxxxx' */
Marc-André Lemburg6c6bfb72001-07-20 17:39:11 +00004108 if (ch >= 256) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00004109 *p++ = '\\';
4110 *p++ = 'u';
Walter Dörwald79e913e2007-05-12 11:08:06 +00004111 *p++ = hexdigits[(ch >> 12) & 0x000F];
4112 *p++ = hexdigits[(ch >> 8) & 0x000F];
4113 *p++ = hexdigits[(ch >> 4) & 0x000F];
4114 *p++ = hexdigits[ch & 0x000F];
Guido van Rossumd57fd912000-03-10 22:53:23 +00004115 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00004116
Ka-Ping Yeefa004ad2001-01-24 17:19:08 +00004117 /* Map special whitespace to '\t', \n', '\r' */
4118 else if (ch == '\t') {
4119 *p++ = '\\';
4120 *p++ = 't';
4121 }
4122 else if (ch == '\n') {
4123 *p++ = '\\';
4124 *p++ = 'n';
4125 }
4126 else if (ch == '\r') {
4127 *p++ = '\\';
4128 *p++ = 'r';
4129 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00004130
Ka-Ping Yeefa004ad2001-01-24 17:19:08 +00004131 /* Map non-printable US ASCII to '\xhh' */
Marc-André Lemburg11326de2001-11-28 12:56:20 +00004132 else if (ch < ' ' || ch >= 0x7F) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00004133 *p++ = '\\';
Ka-Ping Yeefa004ad2001-01-24 17:19:08 +00004134 *p++ = 'x';
Walter Dörwald79e913e2007-05-12 11:08:06 +00004135 *p++ = hexdigits[(ch >> 4) & 0x000F];
4136 *p++ = hexdigits[ch & 0x000F];
Tim Petersced69f82003-09-16 20:30:58 +00004137 }
Marc-André Lemburg80d1dd52001-07-25 16:05:59 +00004138
Guido van Rossumd57fd912000-03-10 22:53:23 +00004139 /* Copy everything else as-is */
4140 else
4141 *p++ = (char) ch;
4142 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00004143
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004144 assert(p - PyBytes_AS_STRING(repr) > 0);
4145 if (_PyBytes_Resize(&repr, p - PyBytes_AS_STRING(repr)) < 0)
4146 return NULL;
4147 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004148}
4149
Alexandre Vassalotti2056bed2008-12-27 19:46:35 +00004150PyObject *PyUnicode_AsUnicodeEscapeString(PyObject *unicode)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004151{
Alexandre Vassalotti9cb6f7f2008-12-27 09:09:15 +00004152 PyObject *s;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004153 if (!PyUnicode_Check(unicode)) {
4154 PyErr_BadArgument();
4155 return NULL;
4156 }
Walter Dörwald79e913e2007-05-12 11:08:06 +00004157 s = PyUnicode_EncodeUnicodeEscape(PyUnicode_AS_UNICODE(unicode),
4158 PyUnicode_GET_SIZE(unicode));
Alexandre Vassalotti9cb6f7f2008-12-27 09:09:15 +00004159 return s;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004160}
4161
4162/* --- Raw Unicode Escape Codec ------------------------------------------- */
4163
4164PyObject *PyUnicode_DecodeRawUnicodeEscape(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004165 Py_ssize_t size,
4166 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004167{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004168 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004169 Py_ssize_t startinpos;
4170 Py_ssize_t endinpos;
4171 Py_ssize_t outpos;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004172 PyUnicodeObject *v;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004173 Py_UNICODE *p;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004174 const char *end;
4175 const char *bs;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004176 PyObject *errorHandler = NULL;
4177 PyObject *exc = NULL;
Tim Petersced69f82003-09-16 20:30:58 +00004178
Guido van Rossumd57fd912000-03-10 22:53:23 +00004179 /* Escaped strings will always be longer than the resulting
4180 Unicode string, so we start with size here and then reduce the
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004181 length after conversion to the true value. (But decoding error
4182 handler might have to resize the string) */
Guido van Rossumd57fd912000-03-10 22:53:23 +00004183 v = _PyUnicode_New(size);
4184 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004185 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004186 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004187 return (PyObject *)v;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004188 p = PyUnicode_AS_UNICODE(v);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004189 end = s + size;
4190 while (s < end) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004191 unsigned char c;
4192 Py_UCS4 x;
4193 int i;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004194 int count;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004195
Benjamin Peterson29060642009-01-31 22:14:21 +00004196 /* Non-escape characters are interpreted as Unicode ordinals */
4197 if (*s != '\\') {
4198 *p++ = (unsigned char)*s++;
4199 continue;
Benjamin Peterson14339b62009-01-31 16:36:08 +00004200 }
Benjamin Peterson29060642009-01-31 22:14:21 +00004201 startinpos = s-starts;
4202
4203 /* \u-escapes are only interpreted iff the number of leading
4204 backslashes if odd */
4205 bs = s;
4206 for (;s < end;) {
4207 if (*s != '\\')
4208 break;
4209 *p++ = (unsigned char)*s++;
4210 }
4211 if (((s - bs) & 1) == 0 ||
4212 s >= end ||
4213 (*s != 'u' && *s != 'U')) {
4214 continue;
4215 }
4216 p--;
4217 count = *s=='u' ? 4 : 8;
4218 s++;
4219
4220 /* \uXXXX with 4 hex digits, \Uxxxxxxxx with 8 */
4221 outpos = p-PyUnicode_AS_UNICODE(v);
4222 for (x = 0, i = 0; i < count; ++i, ++s) {
4223 c = (unsigned char)*s;
David Malcolm96960882010-11-05 17:23:41 +00004224 if (!Py_ISXDIGIT(c)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004225 endinpos = s-starts;
4226 if (unicode_decode_call_errorhandler(
4227 errors, &errorHandler,
4228 "rawunicodeescape", "truncated \\uXXXX",
4229 &starts, &end, &startinpos, &endinpos, &exc, &s,
4230 &v, &outpos, &p))
4231 goto onError;
4232 goto nextByte;
4233 }
4234 x = (x<<4) & ~0xF;
4235 if (c >= '0' && c <= '9')
4236 x += c - '0';
4237 else if (c >= 'a' && c <= 'f')
4238 x += 10 + c - 'a';
4239 else
4240 x += 10 + c - 'A';
4241 }
Christian Heimesfe337bf2008-03-23 21:54:12 +00004242 if (x <= 0xffff)
Benjamin Peterson29060642009-01-31 22:14:21 +00004243 /* UCS-2 character */
4244 *p++ = (Py_UNICODE) x;
Christian Heimesfe337bf2008-03-23 21:54:12 +00004245 else if (x <= 0x10ffff) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004246 /* UCS-4 character. Either store directly, or as
4247 surrogate pair. */
Christian Heimesfe337bf2008-03-23 21:54:12 +00004248#ifdef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00004249 *p++ = (Py_UNICODE) x;
Christian Heimesfe337bf2008-03-23 21:54:12 +00004250#else
Benjamin Peterson29060642009-01-31 22:14:21 +00004251 x -= 0x10000L;
4252 *p++ = 0xD800 + (Py_UNICODE) (x >> 10);
4253 *p++ = 0xDC00 + (Py_UNICODE) (x & 0x03FF);
Christian Heimesfe337bf2008-03-23 21:54:12 +00004254#endif
4255 } else {
4256 endinpos = s-starts;
4257 outpos = p-PyUnicode_AS_UNICODE(v);
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004258 if (unicode_decode_call_errorhandler(
4259 errors, &errorHandler,
4260 "rawunicodeescape", "\\Uxxxxxxxx out of range",
Benjamin Peterson29060642009-01-31 22:14:21 +00004261 &starts, &end, &startinpos, &endinpos, &exc, &s,
4262 &v, &outpos, &p))
4263 goto onError;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004264 }
Benjamin Peterson29060642009-01-31 22:14:21 +00004265 nextByte:
4266 ;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004267 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004268 if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004269 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004270 Py_XDECREF(errorHandler);
4271 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004272 return (PyObject *)v;
Tim Petersced69f82003-09-16 20:30:58 +00004273
Benjamin Peterson29060642009-01-31 22:14:21 +00004274 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00004275 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004276 Py_XDECREF(errorHandler);
4277 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004278 return NULL;
4279}
4280
4281PyObject *PyUnicode_EncodeRawUnicodeEscape(const Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004282 Py_ssize_t size)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004283{
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004284 PyObject *repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004285 char *p;
4286 char *q;
4287
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004288#ifdef Py_UNICODE_WIDE
Neal Norwitz3ce5d922008-08-24 07:08:55 +00004289 const Py_ssize_t expandsize = 10;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004290#else
Neal Norwitz3ce5d922008-08-24 07:08:55 +00004291 const Py_ssize_t expandsize = 6;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004292#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +00004293
Neal Norwitz3ce5d922008-08-24 07:08:55 +00004294 if (size > PY_SSIZE_T_MAX / expandsize)
Benjamin Peterson29060642009-01-31 22:14:21 +00004295 return PyErr_NoMemory();
Benjamin Peterson14339b62009-01-31 16:36:08 +00004296
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004297 repr = PyBytes_FromStringAndSize(NULL, expandsize * size);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004298 if (repr == NULL)
4299 return NULL;
Marc-André Lemburgb7520772000-08-14 11:29:19 +00004300 if (size == 0)
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004301 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004302
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004303 p = q = PyBytes_AS_STRING(repr);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004304 while (size-- > 0) {
4305 Py_UNICODE ch = *s++;
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004306#ifdef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00004307 /* Map 32-bit characters to '\Uxxxxxxxx' */
4308 if (ch >= 0x10000) {
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004309 *p++ = '\\';
4310 *p++ = 'U';
Walter Dörwalddb5d33e2007-05-12 11:13:47 +00004311 *p++ = hexdigits[(ch >> 28) & 0xf];
4312 *p++ = hexdigits[(ch >> 24) & 0xf];
4313 *p++ = hexdigits[(ch >> 20) & 0xf];
4314 *p++ = hexdigits[(ch >> 16) & 0xf];
4315 *p++ = hexdigits[(ch >> 12) & 0xf];
4316 *p++ = hexdigits[(ch >> 8) & 0xf];
4317 *p++ = hexdigits[(ch >> 4) & 0xf];
4318 *p++ = hexdigits[ch & 15];
Tim Petersced69f82003-09-16 20:30:58 +00004319 }
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004320 else
Christian Heimesfe337bf2008-03-23 21:54:12 +00004321#else
Benjamin Peterson29060642009-01-31 22:14:21 +00004322 /* Map UTF-16 surrogate pairs to '\U00xxxxxx' */
4323 if (ch >= 0xD800 && ch < 0xDC00) {
4324 Py_UNICODE ch2;
4325 Py_UCS4 ucs;
Christian Heimesfe337bf2008-03-23 21:54:12 +00004326
Benjamin Peterson29060642009-01-31 22:14:21 +00004327 ch2 = *s++;
4328 size--;
Georg Brandl78eef3de2010-08-01 20:51:02 +00004329 if (ch2 >= 0xDC00 && ch2 <= 0xDFFF) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004330 ucs = (((ch & 0x03FF) << 10) | (ch2 & 0x03FF)) + 0x00010000;
4331 *p++ = '\\';
4332 *p++ = 'U';
4333 *p++ = hexdigits[(ucs >> 28) & 0xf];
4334 *p++ = hexdigits[(ucs >> 24) & 0xf];
4335 *p++ = hexdigits[(ucs >> 20) & 0xf];
4336 *p++ = hexdigits[(ucs >> 16) & 0xf];
4337 *p++ = hexdigits[(ucs >> 12) & 0xf];
4338 *p++ = hexdigits[(ucs >> 8) & 0xf];
4339 *p++ = hexdigits[(ucs >> 4) & 0xf];
4340 *p++ = hexdigits[ucs & 0xf];
4341 continue;
4342 }
4343 /* Fall through: isolated surrogates are copied as-is */
4344 s--;
4345 size++;
4346 }
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +00004347#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00004348 /* Map 16-bit characters to '\uxxxx' */
4349 if (ch >= 256) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00004350 *p++ = '\\';
4351 *p++ = 'u';
Walter Dörwalddb5d33e2007-05-12 11:13:47 +00004352 *p++ = hexdigits[(ch >> 12) & 0xf];
4353 *p++ = hexdigits[(ch >> 8) & 0xf];
4354 *p++ = hexdigits[(ch >> 4) & 0xf];
4355 *p++ = hexdigits[ch & 15];
Guido van Rossumd57fd912000-03-10 22:53:23 +00004356 }
Benjamin Peterson29060642009-01-31 22:14:21 +00004357 /* Copy everything else as-is */
4358 else
Guido van Rossumd57fd912000-03-10 22:53:23 +00004359 *p++ = (char) ch;
4360 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00004361 size = p - q;
4362
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004363 assert(size > 0);
4364 if (_PyBytes_Resize(&repr, size) < 0)
4365 return NULL;
4366 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004367}
4368
4369PyObject *PyUnicode_AsRawUnicodeEscapeString(PyObject *unicode)
4370{
Alexandre Vassalotti9cb6f7f2008-12-27 09:09:15 +00004371 PyObject *s;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004372 if (!PyUnicode_Check(unicode)) {
Walter Dörwald711005d2007-05-12 12:03:26 +00004373 PyErr_BadArgument();
4374 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004375 }
Walter Dörwald711005d2007-05-12 12:03:26 +00004376 s = PyUnicode_EncodeRawUnicodeEscape(PyUnicode_AS_UNICODE(unicode),
4377 PyUnicode_GET_SIZE(unicode));
4378
Alexandre Vassalotti9cb6f7f2008-12-27 09:09:15 +00004379 return s;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004380}
4381
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004382/* --- Unicode Internal Codec ------------------------------------------- */
4383
4384PyObject *_PyUnicode_DecodeUnicodeInternal(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004385 Py_ssize_t size,
4386 const char *errors)
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004387{
4388 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004389 Py_ssize_t startinpos;
4390 Py_ssize_t endinpos;
4391 Py_ssize_t outpos;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004392 PyUnicodeObject *v;
4393 Py_UNICODE *p;
4394 const char *end;
4395 const char *reason;
4396 PyObject *errorHandler = NULL;
4397 PyObject *exc = NULL;
4398
Neal Norwitzd43069c2006-01-08 01:12:10 +00004399#ifdef Py_UNICODE_WIDE
4400 Py_UNICODE unimax = PyUnicode_GetMax();
4401#endif
4402
Thomas Wouters89f507f2006-12-13 04:49:30 +00004403 /* XXX overflow detection missing */
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004404 v = _PyUnicode_New((size+Py_UNICODE_SIZE-1)/ Py_UNICODE_SIZE);
4405 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004406 goto onError;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004407 if (PyUnicode_GetSize((PyObject *)v) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004408 return (PyObject *)v;
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004409 p = PyUnicode_AS_UNICODE(v);
4410 end = s + size;
4411
4412 while (s < end) {
Thomas Wouters477c8d52006-05-27 19:21:47 +00004413 memcpy(p, s, sizeof(Py_UNICODE));
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004414 /* We have to sanity check the raw data, otherwise doom looms for
4415 some malformed UCS-4 data. */
4416 if (
Benjamin Peterson29060642009-01-31 22:14:21 +00004417#ifdef Py_UNICODE_WIDE
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004418 *p > unimax || *p < 0 ||
Benjamin Peterson29060642009-01-31 22:14:21 +00004419#endif
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004420 end-s < Py_UNICODE_SIZE
4421 )
Benjamin Peterson29060642009-01-31 22:14:21 +00004422 {
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004423 startinpos = s - starts;
4424 if (end-s < Py_UNICODE_SIZE) {
4425 endinpos = end-starts;
4426 reason = "truncated input";
4427 }
4428 else {
4429 endinpos = s - starts + Py_UNICODE_SIZE;
4430 reason = "illegal code point (> 0x10FFFF)";
4431 }
4432 outpos = p - PyUnicode_AS_UNICODE(v);
4433 if (unicode_decode_call_errorhandler(
4434 errors, &errorHandler,
4435 "unicode_internal", reason,
Walter Dörwalde78178e2007-07-30 13:31:40 +00004436 &starts, &end, &startinpos, &endinpos, &exc, &s,
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +00004437 &v, &outpos, &p)) {
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004438 goto onError;
4439 }
4440 }
4441 else {
4442 p++;
4443 s += Py_UNICODE_SIZE;
4444 }
4445 }
4446
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004447 if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0)
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004448 goto onError;
4449 Py_XDECREF(errorHandler);
4450 Py_XDECREF(exc);
4451 return (PyObject *)v;
4452
Benjamin Peterson29060642009-01-31 22:14:21 +00004453 onError:
Walter Dörwalda47d1c02005-08-30 10:23:14 +00004454 Py_XDECREF(v);
4455 Py_XDECREF(errorHandler);
4456 Py_XDECREF(exc);
4457 return NULL;
4458}
4459
Guido van Rossumd57fd912000-03-10 22:53:23 +00004460/* --- Latin-1 Codec ------------------------------------------------------ */
4461
4462PyObject *PyUnicode_DecodeLatin1(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004463 Py_ssize_t size,
4464 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004465{
4466 PyUnicodeObject *v;
4467 Py_UNICODE *p;
Antoine Pitrouab868312009-01-10 15:40:25 +00004468 const char *e, *unrolled_end;
Tim Petersced69f82003-09-16 20:30:58 +00004469
Guido van Rossumd57fd912000-03-10 22:53:23 +00004470 /* Latin-1 is equivalent to the first 256 ordinals in Unicode. */
Hye-Shik Chang4a264fb2003-12-19 01:59:56 +00004471 if (size == 1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004472 Py_UNICODE r = *(unsigned char*)s;
4473 return PyUnicode_FromUnicode(&r, 1);
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00004474 }
4475
Guido van Rossumd57fd912000-03-10 22:53:23 +00004476 v = _PyUnicode_New(size);
4477 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004478 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004479 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004480 return (PyObject *)v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004481 p = PyUnicode_AS_UNICODE(v);
Antoine Pitrouab868312009-01-10 15:40:25 +00004482 e = s + size;
4483 /* Unrolling the copy makes it much faster by reducing the looping
4484 overhead. This is similar to what many memcpy() implementations do. */
4485 unrolled_end = e - 4;
4486 while (s < unrolled_end) {
4487 p[0] = (unsigned char) s[0];
4488 p[1] = (unsigned char) s[1];
4489 p[2] = (unsigned char) s[2];
4490 p[3] = (unsigned char) s[3];
4491 s += 4;
4492 p += 4;
4493 }
4494 while (s < e)
4495 *p++ = (unsigned char) *s++;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004496 return (PyObject *)v;
Tim Petersced69f82003-09-16 20:30:58 +00004497
Benjamin Peterson29060642009-01-31 22:14:21 +00004498 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00004499 Py_XDECREF(v);
4500 return NULL;
4501}
4502
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004503/* create or adjust a UnicodeEncodeError */
4504static void make_encode_exception(PyObject **exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00004505 const char *encoding,
4506 const Py_UNICODE *unicode, Py_ssize_t size,
4507 Py_ssize_t startpos, Py_ssize_t endpos,
4508 const char *reason)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004509{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004510 if (*exceptionObject == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004511 *exceptionObject = PyUnicodeEncodeError_Create(
4512 encoding, unicode, size, startpos, endpos, reason);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004513 }
4514 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00004515 if (PyUnicodeEncodeError_SetStart(*exceptionObject, startpos))
4516 goto onError;
4517 if (PyUnicodeEncodeError_SetEnd(*exceptionObject, endpos))
4518 goto onError;
4519 if (PyUnicodeEncodeError_SetReason(*exceptionObject, reason))
4520 goto onError;
4521 return;
4522 onError:
4523 Py_DECREF(*exceptionObject);
4524 *exceptionObject = NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004525 }
4526}
4527
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004528/* raises a UnicodeEncodeError */
4529static void raise_encode_exception(PyObject **exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00004530 const char *encoding,
4531 const Py_UNICODE *unicode, Py_ssize_t size,
4532 Py_ssize_t startpos, Py_ssize_t endpos,
4533 const char *reason)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004534{
4535 make_encode_exception(exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00004536 encoding, unicode, size, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004537 if (*exceptionObject != NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004538 PyCodec_StrictErrors(*exceptionObject);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004539}
4540
4541/* error handling callback helper:
4542 build arguments, call the callback and check the arguments,
4543 put the result into newpos and return the replacement string, which
4544 has to be freed by the caller */
4545static PyObject *unicode_encode_call_errorhandler(const char *errors,
Benjamin Peterson29060642009-01-31 22:14:21 +00004546 PyObject **errorHandler,
4547 const char *encoding, const char *reason,
4548 const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject,
4549 Py_ssize_t startpos, Py_ssize_t endpos,
4550 Py_ssize_t *newpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004551{
Martin v. Löwisdb12d452009-05-02 18:52:14 +00004552 static char *argparse = "On;encoding error handler must return (str/bytes, int) tuple";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004553
4554 PyObject *restuple;
4555 PyObject *resunicode;
4556
4557 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004558 *errorHandler = PyCodec_LookupError(errors);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004559 if (*errorHandler == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004560 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004561 }
4562
4563 make_encode_exception(exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00004564 encoding, unicode, size, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004565 if (*exceptionObject == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004566 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004567
4568 restuple = PyObject_CallFunctionObjArgs(
Benjamin Peterson29060642009-01-31 22:14:21 +00004569 *errorHandler, *exceptionObject, NULL);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004570 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004571 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004572 if (!PyTuple_Check(restuple)) {
Martin v. Löwisdb12d452009-05-02 18:52:14 +00004573 PyErr_SetString(PyExc_TypeError, &argparse[3]);
Benjamin Peterson29060642009-01-31 22:14:21 +00004574 Py_DECREF(restuple);
4575 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004576 }
Martin v. Löwisdb12d452009-05-02 18:52:14 +00004577 if (!PyArg_ParseTuple(restuple, argparse,
Benjamin Peterson29060642009-01-31 22:14:21 +00004578 &resunicode, newpos)) {
4579 Py_DECREF(restuple);
4580 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004581 }
Martin v. Löwisdb12d452009-05-02 18:52:14 +00004582 if (!PyUnicode_Check(resunicode) && !PyBytes_Check(resunicode)) {
4583 PyErr_SetString(PyExc_TypeError, &argparse[3]);
4584 Py_DECREF(restuple);
4585 return NULL;
4586 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004587 if (*newpos<0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004588 *newpos = size+*newpos;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00004589 if (*newpos<0 || *newpos>size) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004590 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos);
4591 Py_DECREF(restuple);
4592 return NULL;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00004593 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004594 Py_INCREF(resunicode);
4595 Py_DECREF(restuple);
4596 return resunicode;
4597}
4598
4599static PyObject *unicode_encode_ucs1(const Py_UNICODE *p,
Benjamin Peterson29060642009-01-31 22:14:21 +00004600 Py_ssize_t size,
4601 const char *errors,
4602 int limit)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004603{
4604 /* output object */
4605 PyObject *res;
4606 /* pointers to the beginning and end+1 of input */
4607 const Py_UNICODE *startp = p;
4608 const Py_UNICODE *endp = p + size;
4609 /* pointer to the beginning of the unencodable characters */
4610 /* const Py_UNICODE *badp = NULL; */
4611 /* pointer into the output */
4612 char *str;
4613 /* current output position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00004614 Py_ssize_t ressize;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004615 const char *encoding = (limit == 256) ? "latin-1" : "ascii";
4616 const char *reason = (limit == 256) ? "ordinal not in range(256)" : "ordinal not in range(128)";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004617 PyObject *errorHandler = NULL;
4618 PyObject *exc = NULL;
4619 /* the following variable is used for caching string comparisons
4620 * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */
4621 int known_errorHandler = -1;
4622
4623 /* allocate enough for a simple encoding without
4624 replacements, if we need more, we'll resize */
Guido van Rossum98297ee2007-11-06 21:34:58 +00004625 if (size == 0)
Christian Heimes72b710a2008-05-26 13:28:38 +00004626 return PyBytes_FromStringAndSize(NULL, 0);
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004627 res = PyBytes_FromStringAndSize(NULL, size);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004628 if (res == NULL)
Guido van Rossum98297ee2007-11-06 21:34:58 +00004629 return NULL;
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004630 str = PyBytes_AS_STRING(res);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004631 ressize = size;
4632
4633 while (p<endp) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004634 Py_UNICODE c = *p;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004635
Benjamin Peterson29060642009-01-31 22:14:21 +00004636 /* can we encode this? */
4637 if (c<limit) {
4638 /* no overflow check, because we know that the space is enough */
4639 *str++ = (char)c;
4640 ++p;
Benjamin Peterson14339b62009-01-31 16:36:08 +00004641 }
Benjamin Peterson29060642009-01-31 22:14:21 +00004642 else {
4643 Py_ssize_t unicodepos = p-startp;
4644 Py_ssize_t requiredsize;
4645 PyObject *repunicode;
4646 Py_ssize_t repsize;
4647 Py_ssize_t newpos;
4648 Py_ssize_t respos;
4649 Py_UNICODE *uni2;
4650 /* startpos for collecting unencodable chars */
4651 const Py_UNICODE *collstart = p;
4652 const Py_UNICODE *collend = p;
4653 /* find all unecodable characters */
4654 while ((collend < endp) && ((*collend)>=limit))
4655 ++collend;
4656 /* cache callback name lookup (if not done yet, i.e. it's the first error) */
4657 if (known_errorHandler==-1) {
4658 if ((errors==NULL) || (!strcmp(errors, "strict")))
4659 known_errorHandler = 1;
4660 else if (!strcmp(errors, "replace"))
4661 known_errorHandler = 2;
4662 else if (!strcmp(errors, "ignore"))
4663 known_errorHandler = 3;
4664 else if (!strcmp(errors, "xmlcharrefreplace"))
4665 known_errorHandler = 4;
4666 else
4667 known_errorHandler = 0;
4668 }
4669 switch (known_errorHandler) {
4670 case 1: /* strict */
4671 raise_encode_exception(&exc, encoding, startp, size, collstart-startp, collend-startp, reason);
4672 goto onError;
4673 case 2: /* replace */
4674 while (collstart++<collend)
4675 *str++ = '?'; /* fall through */
4676 case 3: /* ignore */
4677 p = collend;
4678 break;
4679 case 4: /* xmlcharrefreplace */
4680 respos = str - PyBytes_AS_STRING(res);
4681 /* determine replacement size (temporarily (mis)uses p) */
4682 for (p = collstart, repsize = 0; p < collend; ++p) {
4683 if (*p<10)
4684 repsize += 2+1+1;
4685 else if (*p<100)
4686 repsize += 2+2+1;
4687 else if (*p<1000)
4688 repsize += 2+3+1;
4689 else if (*p<10000)
4690 repsize += 2+4+1;
Hye-Shik Chang40e95092003-12-22 01:31:13 +00004691#ifndef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00004692 else
4693 repsize += 2+5+1;
Hye-Shik Chang40e95092003-12-22 01:31:13 +00004694#else
Benjamin Peterson29060642009-01-31 22:14:21 +00004695 else if (*p<100000)
4696 repsize += 2+5+1;
4697 else if (*p<1000000)
4698 repsize += 2+6+1;
4699 else
4700 repsize += 2+7+1;
Hye-Shik Chang4a264fb2003-12-19 01:59:56 +00004701#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00004702 }
4703 requiredsize = respos+repsize+(endp-collend);
4704 if (requiredsize > ressize) {
4705 if (requiredsize<2*ressize)
4706 requiredsize = 2*ressize;
4707 if (_PyBytes_Resize(&res, requiredsize))
4708 goto onError;
4709 str = PyBytes_AS_STRING(res) + respos;
4710 ressize = requiredsize;
4711 }
4712 /* generate replacement (temporarily (mis)uses p) */
4713 for (p = collstart; p < collend; ++p) {
4714 str += sprintf(str, "&#%d;", (int)*p);
4715 }
4716 p = collend;
4717 break;
4718 default:
4719 repunicode = unicode_encode_call_errorhandler(errors, &errorHandler,
4720 encoding, reason, startp, size, &exc,
4721 collstart-startp, collend-startp, &newpos);
4722 if (repunicode == NULL)
4723 goto onError;
Martin v. Löwis011e8422009-05-05 04:43:17 +00004724 if (PyBytes_Check(repunicode)) {
4725 /* Directly copy bytes result to output. */
4726 repsize = PyBytes_Size(repunicode);
4727 if (repsize > 1) {
4728 /* Make room for all additional bytes. */
Amaury Forgeot d'Arc84ec8d92009-06-29 22:36:49 +00004729 respos = str - PyBytes_AS_STRING(res);
Martin v. Löwis011e8422009-05-05 04:43:17 +00004730 if (_PyBytes_Resize(&res, ressize+repsize-1)) {
4731 Py_DECREF(repunicode);
4732 goto onError;
4733 }
Amaury Forgeot d'Arc84ec8d92009-06-29 22:36:49 +00004734 str = PyBytes_AS_STRING(res) + respos;
Martin v. Löwis011e8422009-05-05 04:43:17 +00004735 ressize += repsize-1;
4736 }
4737 memcpy(str, PyBytes_AsString(repunicode), repsize);
4738 str += repsize;
4739 p = startp + newpos;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00004740 Py_DECREF(repunicode);
Martin v. Löwis011e8422009-05-05 04:43:17 +00004741 break;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00004742 }
Benjamin Peterson29060642009-01-31 22:14:21 +00004743 /* need more space? (at least enough for what we
4744 have+the replacement+the rest of the string, so
4745 we won't have to check space for encodable characters) */
4746 respos = str - PyBytes_AS_STRING(res);
4747 repsize = PyUnicode_GET_SIZE(repunicode);
4748 requiredsize = respos+repsize+(endp-collend);
4749 if (requiredsize > ressize) {
4750 if (requiredsize<2*ressize)
4751 requiredsize = 2*ressize;
4752 if (_PyBytes_Resize(&res, requiredsize)) {
4753 Py_DECREF(repunicode);
4754 goto onError;
4755 }
4756 str = PyBytes_AS_STRING(res) + respos;
4757 ressize = requiredsize;
4758 }
4759 /* check if there is anything unencodable in the replacement
4760 and copy it to the output */
4761 for (uni2 = PyUnicode_AS_UNICODE(repunicode);repsize-->0; ++uni2, ++str) {
4762 c = *uni2;
4763 if (c >= limit) {
4764 raise_encode_exception(&exc, encoding, startp, size,
4765 unicodepos, unicodepos+1, reason);
4766 Py_DECREF(repunicode);
4767 goto onError;
4768 }
4769 *str = (char)c;
4770 }
4771 p = startp + newpos;
Benjamin Peterson14339b62009-01-31 16:36:08 +00004772 Py_DECREF(repunicode);
Benjamin Peterson14339b62009-01-31 16:36:08 +00004773 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00004774 }
4775 }
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004776 /* Resize if we allocated to much */
4777 size = str - PyBytes_AS_STRING(res);
4778 if (size < ressize) { /* If this falls res will be NULL */
Alexandre Vassalottibad1b922008-12-27 09:49:09 +00004779 assert(size >= 0);
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004780 if (_PyBytes_Resize(&res, size) < 0)
4781 goto onError;
4782 }
4783
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004784 Py_XDECREF(errorHandler);
4785 Py_XDECREF(exc);
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00004786 return res;
4787
4788 onError:
4789 Py_XDECREF(res);
4790 Py_XDECREF(errorHandler);
4791 Py_XDECREF(exc);
4792 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004793}
4794
Guido van Rossumd57fd912000-03-10 22:53:23 +00004795PyObject *PyUnicode_EncodeLatin1(const Py_UNICODE *p,
Benjamin Peterson29060642009-01-31 22:14:21 +00004796 Py_ssize_t size,
4797 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004798{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004799 return unicode_encode_ucs1(p, size, errors, 256);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004800}
4801
4802PyObject *PyUnicode_AsLatin1String(PyObject *unicode)
4803{
4804 if (!PyUnicode_Check(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004805 PyErr_BadArgument();
4806 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004807 }
4808 return PyUnicode_EncodeLatin1(PyUnicode_AS_UNICODE(unicode),
Benjamin Peterson29060642009-01-31 22:14:21 +00004809 PyUnicode_GET_SIZE(unicode),
4810 NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004811}
4812
4813/* --- 7-bit ASCII Codec -------------------------------------------------- */
4814
Guido van Rossumd57fd912000-03-10 22:53:23 +00004815PyObject *PyUnicode_DecodeASCII(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00004816 Py_ssize_t size,
4817 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004818{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004819 const char *starts = s;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004820 PyUnicodeObject *v;
4821 Py_UNICODE *p;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004822 Py_ssize_t startinpos;
4823 Py_ssize_t endinpos;
4824 Py_ssize_t outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004825 const char *e;
4826 PyObject *errorHandler = NULL;
4827 PyObject *exc = NULL;
Tim Petersced69f82003-09-16 20:30:58 +00004828
Guido van Rossumd57fd912000-03-10 22:53:23 +00004829 /* ASCII is equivalent to the first 128 ordinals in Unicode. */
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00004830 if (size == 1 && *(unsigned char*)s < 128) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004831 Py_UNICODE r = *(unsigned char*)s;
4832 return PyUnicode_FromUnicode(&r, 1);
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00004833 }
Tim Petersced69f82003-09-16 20:30:58 +00004834
Guido van Rossumd57fd912000-03-10 22:53:23 +00004835 v = _PyUnicode_New(size);
4836 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00004837 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004838 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00004839 return (PyObject *)v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004840 p = PyUnicode_AS_UNICODE(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004841 e = s + size;
4842 while (s < e) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004843 register unsigned char c = (unsigned char)*s;
4844 if (c < 128) {
4845 *p++ = c;
4846 ++s;
4847 }
4848 else {
4849 startinpos = s-starts;
4850 endinpos = startinpos + 1;
4851 outpos = p - (Py_UNICODE *)PyUnicode_AS_UNICODE(v);
4852 if (unicode_decode_call_errorhandler(
4853 errors, &errorHandler,
4854 "ascii", "ordinal not in range(128)",
4855 &starts, &e, &startinpos, &endinpos, &exc, &s,
4856 &v, &outpos, &p))
4857 goto onError;
4858 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00004859 }
Martin v. Löwis5b222132007-06-10 09:51:05 +00004860 if (p - PyUnicode_AS_UNICODE(v) < PyUnicode_GET_SIZE(v))
Benjamin Peterson29060642009-01-31 22:14:21 +00004861 if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0)
4862 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004863 Py_XDECREF(errorHandler);
4864 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004865 return (PyObject *)v;
Tim Petersced69f82003-09-16 20:30:58 +00004866
Benjamin Peterson29060642009-01-31 22:14:21 +00004867 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00004868 Py_XDECREF(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004869 Py_XDECREF(errorHandler);
4870 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004871 return NULL;
4872}
4873
Guido van Rossumd57fd912000-03-10 22:53:23 +00004874PyObject *PyUnicode_EncodeASCII(const Py_UNICODE *p,
Benjamin Peterson29060642009-01-31 22:14:21 +00004875 Py_ssize_t size,
4876 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00004877{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00004878 return unicode_encode_ucs1(p, size, errors, 128);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004879}
4880
4881PyObject *PyUnicode_AsASCIIString(PyObject *unicode)
4882{
4883 if (!PyUnicode_Check(unicode)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004884 PyErr_BadArgument();
4885 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00004886 }
4887 return PyUnicode_EncodeASCII(PyUnicode_AS_UNICODE(unicode),
Benjamin Peterson29060642009-01-31 22:14:21 +00004888 PyUnicode_GET_SIZE(unicode),
4889 NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00004890}
4891
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00004892#if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)
Guido van Rossum2ea3e142000-03-31 17:24:09 +00004893
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00004894/* --- MBCS codecs for Windows -------------------------------------------- */
Guido van Rossum2ea3e142000-03-31 17:24:09 +00004895
Hirokazu Yamamoto35302462009-03-21 13:23:27 +00004896#if SIZEOF_INT < SIZEOF_SIZE_T
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004897#define NEED_RETRY
4898#endif
4899
4900/* XXX This code is limited to "true" double-byte encodings, as
4901 a) it assumes an incomplete character consists of a single byte, and
4902 b) IsDBCSLeadByte (probably) does not work for non-DBCS multi-byte
Benjamin Peterson29060642009-01-31 22:14:21 +00004903 encodings, see IsDBCSLeadByteEx documentation. */
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004904
4905static int is_dbcs_lead_byte(const char *s, int offset)
4906{
4907 const char *curr = s + offset;
4908
4909 if (IsDBCSLeadByte(*curr)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004910 const char *prev = CharPrev(s, curr);
4911 return (prev == curr) || !IsDBCSLeadByte(*prev) || (curr - prev == 2);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004912 }
4913 return 0;
4914}
4915
4916/*
4917 * Decode MBCS string into unicode object. If 'final' is set, converts
4918 * trailing lead-byte too. Returns consumed size if succeed, -1 otherwise.
4919 */
4920static int decode_mbcs(PyUnicodeObject **v,
Benjamin Peterson29060642009-01-31 22:14:21 +00004921 const char *s, /* MBCS string */
4922 int size, /* sizeof MBCS string */
Victor Stinner554f3f02010-06-16 23:33:54 +00004923 int final,
4924 const char *errors)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004925{
4926 Py_UNICODE *p;
Victor Stinner554f3f02010-06-16 23:33:54 +00004927 Py_ssize_t n;
4928 DWORD usize;
4929 DWORD flags;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004930
4931 assert(size >= 0);
4932
Victor Stinner554f3f02010-06-16 23:33:54 +00004933 /* check and handle 'errors' arg */
4934 if (errors==NULL || strcmp(errors, "strict")==0)
4935 flags = MB_ERR_INVALID_CHARS;
4936 else if (strcmp(errors, "ignore")==0)
4937 flags = 0;
4938 else {
4939 PyErr_Format(PyExc_ValueError,
4940 "mbcs encoding does not support errors='%s'",
4941 errors);
4942 return -1;
4943 }
4944
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004945 /* Skip trailing lead-byte unless 'final' is set */
4946 if (!final && size >= 1 && is_dbcs_lead_byte(s, size - 1))
Benjamin Peterson29060642009-01-31 22:14:21 +00004947 --size;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004948
4949 /* First get the size of the result */
4950 if (size > 0) {
Victor Stinner554f3f02010-06-16 23:33:54 +00004951 usize = MultiByteToWideChar(CP_ACP, flags, s, size, NULL, 0);
4952 if (usize==0)
4953 goto mbcs_decode_error;
4954 } else
4955 usize = 0;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004956
4957 if (*v == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004958 /* Create unicode object */
4959 *v = _PyUnicode_New(usize);
4960 if (*v == NULL)
4961 return -1;
Victor Stinner554f3f02010-06-16 23:33:54 +00004962 n = 0;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004963 }
4964 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00004965 /* Extend unicode object */
4966 n = PyUnicode_GET_SIZE(*v);
4967 if (_PyUnicode_Resize(v, n + usize) < 0)
4968 return -1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004969 }
4970
4971 /* Do the conversion */
Victor Stinner554f3f02010-06-16 23:33:54 +00004972 if (usize > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00004973 p = PyUnicode_AS_UNICODE(*v) + n;
Victor Stinner554f3f02010-06-16 23:33:54 +00004974 if (0 == MultiByteToWideChar(CP_ACP, flags, s, size, p, usize)) {
4975 goto mbcs_decode_error;
Benjamin Peterson29060642009-01-31 22:14:21 +00004976 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004977 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004978 return size;
Victor Stinner554f3f02010-06-16 23:33:54 +00004979
4980mbcs_decode_error:
4981 /* If the last error was ERROR_NO_UNICODE_TRANSLATION, then
4982 we raise a UnicodeDecodeError - else it is a 'generic'
4983 windows error
4984 */
4985 if (GetLastError()==ERROR_NO_UNICODE_TRANSLATION) {
4986 /* Ideally, we should get reason from FormatMessage - this
4987 is the Windows 2000 English version of the message
4988 */
4989 PyObject *exc = NULL;
4990 const char *reason = "No mapping for the Unicode character exists "
4991 "in the target multi-byte code page.";
4992 make_decode_exception(&exc, "mbcs", s, size, 0, 0, reason);
4993 if (exc != NULL) {
4994 PyCodec_StrictErrors(exc);
4995 Py_DECREF(exc);
4996 }
4997 } else {
4998 PyErr_SetFromWindowsErrWithFilename(0, NULL);
4999 }
5000 return -1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005001}
5002
5003PyObject *PyUnicode_DecodeMBCSStateful(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00005004 Py_ssize_t size,
5005 const char *errors,
5006 Py_ssize_t *consumed)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005007{
5008 PyUnicodeObject *v = NULL;
5009 int done;
5010
5011 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00005012 *consumed = 0;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005013
5014#ifdef NEED_RETRY
5015 retry:
5016 if (size > INT_MAX)
Victor Stinner554f3f02010-06-16 23:33:54 +00005017 done = decode_mbcs(&v, s, INT_MAX, 0, errors);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005018 else
5019#endif
Victor Stinner554f3f02010-06-16 23:33:54 +00005020 done = decode_mbcs(&v, s, (int)size, !consumed, errors);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005021
5022 if (done < 0) {
5023 Py_XDECREF(v);
Benjamin Peterson29060642009-01-31 22:14:21 +00005024 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005025 }
5026
5027 if (consumed)
Benjamin Peterson29060642009-01-31 22:14:21 +00005028 *consumed += done;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005029
5030#ifdef NEED_RETRY
5031 if (size > INT_MAX) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005032 s += done;
5033 size -= done;
5034 goto retry;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005035 }
5036#endif
5037
5038 return (PyObject *)v;
5039}
5040
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005041PyObject *PyUnicode_DecodeMBCS(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00005042 Py_ssize_t size,
5043 const char *errors)
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005044{
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005045 return PyUnicode_DecodeMBCSStateful(s, size, errors, NULL);
5046}
5047
5048/*
5049 * Convert unicode into string object (MBCS).
5050 * Returns 0 if succeed, -1 otherwise.
5051 */
5052static int encode_mbcs(PyObject **repr,
Benjamin Peterson29060642009-01-31 22:14:21 +00005053 const Py_UNICODE *p, /* unicode */
Victor Stinner554f3f02010-06-16 23:33:54 +00005054 int size, /* size of unicode */
5055 const char* errors)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005056{
Victor Stinner554f3f02010-06-16 23:33:54 +00005057 BOOL usedDefaultChar = FALSE;
5058 BOOL *pusedDefaultChar;
5059 int mbcssize;
5060 Py_ssize_t n;
5061 PyObject *exc = NULL;
5062 DWORD flags;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005063
5064 assert(size >= 0);
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005065
Victor Stinner554f3f02010-06-16 23:33:54 +00005066 /* check and handle 'errors' arg */
5067 if (errors==NULL || strcmp(errors, "strict")==0) {
5068 flags = WC_NO_BEST_FIT_CHARS;
5069 pusedDefaultChar = &usedDefaultChar;
5070 } else if (strcmp(errors, "replace")==0) {
5071 flags = 0;
5072 pusedDefaultChar = NULL;
5073 } else {
5074 PyErr_Format(PyExc_ValueError,
5075 "mbcs encoding does not support errors='%s'",
5076 errors);
5077 return -1;
5078 }
5079
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005080 /* First get the size of the result */
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005081 if (size > 0) {
Victor Stinner554f3f02010-06-16 23:33:54 +00005082 mbcssize = WideCharToMultiByte(CP_ACP, flags, p, size, NULL, 0,
5083 NULL, pusedDefaultChar);
Benjamin Peterson29060642009-01-31 22:14:21 +00005084 if (mbcssize == 0) {
5085 PyErr_SetFromWindowsErrWithFilename(0, NULL);
5086 return -1;
5087 }
Victor Stinner554f3f02010-06-16 23:33:54 +00005088 /* If we used a default char, then we failed! */
5089 if (pusedDefaultChar && *pusedDefaultChar)
5090 goto mbcs_encode_error;
5091 } else {
5092 mbcssize = 0;
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005093 }
5094
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005095 if (*repr == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005096 /* Create string object */
5097 *repr = PyBytes_FromStringAndSize(NULL, mbcssize);
5098 if (*repr == NULL)
5099 return -1;
Victor Stinner554f3f02010-06-16 23:33:54 +00005100 n = 0;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005101 }
5102 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00005103 /* Extend string object */
5104 n = PyBytes_Size(*repr);
5105 if (_PyBytes_Resize(repr, n + mbcssize) < 0)
5106 return -1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005107 }
5108
5109 /* Do the conversion */
5110 if (size > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005111 char *s = PyBytes_AS_STRING(*repr) + n;
Victor Stinner554f3f02010-06-16 23:33:54 +00005112 if (0 == WideCharToMultiByte(CP_ACP, flags, p, size, s, mbcssize,
5113 NULL, pusedDefaultChar)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005114 PyErr_SetFromWindowsErrWithFilename(0, NULL);
5115 return -1;
5116 }
Victor Stinner554f3f02010-06-16 23:33:54 +00005117 if (pusedDefaultChar && *pusedDefaultChar)
5118 goto mbcs_encode_error;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005119 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005120 return 0;
Victor Stinner554f3f02010-06-16 23:33:54 +00005121
5122mbcs_encode_error:
5123 raise_encode_exception(&exc, "mbcs", p, size, 0, 0, "invalid character");
5124 Py_XDECREF(exc);
5125 return -1;
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005126}
5127
5128PyObject *PyUnicode_EncodeMBCS(const Py_UNICODE *p,
Benjamin Peterson29060642009-01-31 22:14:21 +00005129 Py_ssize_t size,
5130 const char *errors)
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005131{
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005132 PyObject *repr = NULL;
5133 int ret;
Guido van Rossum03e29f12000-05-04 15:52:20 +00005134
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005135#ifdef NEED_RETRY
Benjamin Peterson29060642009-01-31 22:14:21 +00005136 retry:
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005137 if (size > INT_MAX)
Victor Stinner554f3f02010-06-16 23:33:54 +00005138 ret = encode_mbcs(&repr, p, INT_MAX, errors);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005139 else
5140#endif
Victor Stinner554f3f02010-06-16 23:33:54 +00005141 ret = encode_mbcs(&repr, p, (int)size, errors);
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005142
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005143 if (ret < 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005144 Py_XDECREF(repr);
5145 return NULL;
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005146 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005147
5148#ifdef NEED_RETRY
5149 if (size > INT_MAX) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005150 p += INT_MAX;
5151 size -= INT_MAX;
5152 goto retry;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005153 }
5154#endif
5155
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005156 return repr;
5157}
Guido van Rossum2ea3e142000-03-31 17:24:09 +00005158
Mark Hammond0ccda1e2003-07-01 00:13:27 +00005159PyObject *PyUnicode_AsMBCSString(PyObject *unicode)
5160{
5161 if (!PyUnicode_Check(unicode)) {
5162 PyErr_BadArgument();
5163 return NULL;
5164 }
5165 return PyUnicode_EncodeMBCS(PyUnicode_AS_UNICODE(unicode),
Benjamin Peterson29060642009-01-31 22:14:21 +00005166 PyUnicode_GET_SIZE(unicode),
5167 NULL);
Mark Hammond0ccda1e2003-07-01 00:13:27 +00005168}
5169
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005170#undef NEED_RETRY
5171
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00005172#endif /* MS_WINDOWS */
Guido van Rossumb7a40ba2000-03-28 02:01:52 +00005173
Guido van Rossumd57fd912000-03-10 22:53:23 +00005174/* --- Character Mapping Codec -------------------------------------------- */
5175
Guido van Rossumd57fd912000-03-10 22:53:23 +00005176PyObject *PyUnicode_DecodeCharmap(const char *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00005177 Py_ssize_t size,
5178 PyObject *mapping,
5179 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005180{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005181 const char *starts = s;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005182 Py_ssize_t startinpos;
5183 Py_ssize_t endinpos;
5184 Py_ssize_t outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005185 const char *e;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005186 PyUnicodeObject *v;
5187 Py_UNICODE *p;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005188 Py_ssize_t extrachars = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005189 PyObject *errorHandler = NULL;
5190 PyObject *exc = NULL;
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00005191 Py_UNICODE *mapstring = NULL;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005192 Py_ssize_t maplen = 0;
Tim Petersced69f82003-09-16 20:30:58 +00005193
Guido van Rossumd57fd912000-03-10 22:53:23 +00005194 /* Default to Latin-1 */
5195 if (mapping == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005196 return PyUnicode_DecodeLatin1(s, size, errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005197
5198 v = _PyUnicode_New(size);
5199 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005200 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005201 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005202 return (PyObject *)v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005203 p = PyUnicode_AS_UNICODE(v);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005204 e = s + size;
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00005205 if (PyUnicode_CheckExact(mapping)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005206 mapstring = PyUnicode_AS_UNICODE(mapping);
5207 maplen = PyUnicode_GET_SIZE(mapping);
5208 while (s < e) {
5209 unsigned char ch = *s;
5210 Py_UNICODE x = 0xfffe; /* illegal value */
Guido van Rossumd57fd912000-03-10 22:53:23 +00005211
Benjamin Peterson29060642009-01-31 22:14:21 +00005212 if (ch < maplen)
5213 x = mapstring[ch];
Guido van Rossumd57fd912000-03-10 22:53:23 +00005214
Benjamin Peterson29060642009-01-31 22:14:21 +00005215 if (x == 0xfffe) {
5216 /* undefined mapping */
5217 outpos = p-PyUnicode_AS_UNICODE(v);
5218 startinpos = s-starts;
5219 endinpos = startinpos+1;
5220 if (unicode_decode_call_errorhandler(
5221 errors, &errorHandler,
5222 "charmap", "character maps to <undefined>",
5223 &starts, &e, &startinpos, &endinpos, &exc, &s,
5224 &v, &outpos, &p)) {
5225 goto onError;
5226 }
5227 continue;
5228 }
5229 *p++ = x;
5230 ++s;
Benjamin Peterson14339b62009-01-31 16:36:08 +00005231 }
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00005232 }
5233 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00005234 while (s < e) {
5235 unsigned char ch = *s;
5236 PyObject *w, *x;
Walter Dörwaldd1c1e102005-10-06 20:29:57 +00005237
Benjamin Peterson29060642009-01-31 22:14:21 +00005238 /* Get mapping (char ordinal -> integer, Unicode char or None) */
5239 w = PyLong_FromLong((long)ch);
5240 if (w == NULL)
5241 goto onError;
5242 x = PyObject_GetItem(mapping, w);
5243 Py_DECREF(w);
5244 if (x == NULL) {
5245 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
5246 /* No mapping found means: mapping is undefined. */
5247 PyErr_Clear();
5248 x = Py_None;
5249 Py_INCREF(x);
5250 } else
5251 goto onError;
5252 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005253
Benjamin Peterson29060642009-01-31 22:14:21 +00005254 /* Apply mapping */
5255 if (PyLong_Check(x)) {
5256 long value = PyLong_AS_LONG(x);
Antoine Pitrou6f80f5d2012-09-23 19:55:21 +02005257 if (value < 0 || value > 0x10FFFF) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005258 PyErr_SetString(PyExc_TypeError,
Antoine Pitrou6f80f5d2012-09-23 19:55:21 +02005259 "character mapping must be in range(0x110000)");
Benjamin Peterson29060642009-01-31 22:14:21 +00005260 Py_DECREF(x);
5261 goto onError;
5262 }
Antoine Pitrou6f80f5d2012-09-23 19:55:21 +02005263
5264#ifndef Py_UNICODE_WIDE
5265 if (value > 0xFFFF) {
5266 /* see the code for 1-n mapping below */
5267 if (extrachars < 2) {
5268 /* resize first */
5269 Py_ssize_t oldpos = p - PyUnicode_AS_UNICODE(v);
5270 Py_ssize_t needed = 10 - extrachars;
5271 extrachars += needed;
5272 /* XXX overflow detection missing */
5273 if (_PyUnicode_Resize(&v,
5274 PyUnicode_GET_SIZE(v) + needed) < 0) {
5275 Py_DECREF(x);
5276 goto onError;
5277 }
5278 p = PyUnicode_AS_UNICODE(v) + oldpos;
5279 }
5280 value -= 0x10000;
5281 *p++ = 0xD800 | (value >> 10);
5282 *p++ = 0xDC00 | (value & 0x3FF);
5283 extrachars -= 2;
5284 }
5285 else
5286#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00005287 *p++ = (Py_UNICODE)value;
5288 }
5289 else if (x == Py_None) {
5290 /* undefined mapping */
5291 outpos = p-PyUnicode_AS_UNICODE(v);
5292 startinpos = s-starts;
5293 endinpos = startinpos+1;
5294 if (unicode_decode_call_errorhandler(
5295 errors, &errorHandler,
5296 "charmap", "character maps to <undefined>",
5297 &starts, &e, &startinpos, &endinpos, &exc, &s,
5298 &v, &outpos, &p)) {
5299 Py_DECREF(x);
5300 goto onError;
5301 }
5302 Py_DECREF(x);
5303 continue;
5304 }
5305 else if (PyUnicode_Check(x)) {
5306 Py_ssize_t targetsize = PyUnicode_GET_SIZE(x);
Benjamin Peterson14339b62009-01-31 16:36:08 +00005307
Benjamin Peterson29060642009-01-31 22:14:21 +00005308 if (targetsize == 1)
5309 /* 1-1 mapping */
5310 *p++ = *PyUnicode_AS_UNICODE(x);
Benjamin Peterson14339b62009-01-31 16:36:08 +00005311
Benjamin Peterson29060642009-01-31 22:14:21 +00005312 else if (targetsize > 1) {
5313 /* 1-n mapping */
5314 if (targetsize > extrachars) {
5315 /* resize first */
5316 Py_ssize_t oldpos = p - PyUnicode_AS_UNICODE(v);
5317 Py_ssize_t needed = (targetsize - extrachars) + \
5318 (targetsize << 2);
5319 extrachars += needed;
5320 /* XXX overflow detection missing */
5321 if (_PyUnicode_Resize(&v,
5322 PyUnicode_GET_SIZE(v) + needed) < 0) {
5323 Py_DECREF(x);
5324 goto onError;
5325 }
5326 p = PyUnicode_AS_UNICODE(v) + oldpos;
5327 }
5328 Py_UNICODE_COPY(p,
5329 PyUnicode_AS_UNICODE(x),
5330 targetsize);
5331 p += targetsize;
5332 extrachars -= targetsize;
5333 }
5334 /* 1-0 mapping: skip the character */
5335 }
5336 else {
5337 /* wrong return value */
5338 PyErr_SetString(PyExc_TypeError,
5339 "character mapping must return integer, None or str");
Benjamin Peterson14339b62009-01-31 16:36:08 +00005340 Py_DECREF(x);
5341 goto onError;
5342 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005343 Py_DECREF(x);
5344 ++s;
Benjamin Peterson14339b62009-01-31 16:36:08 +00005345 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00005346 }
5347 if (p - PyUnicode_AS_UNICODE(v) < PyUnicode_GET_SIZE(v))
Benjamin Peterson29060642009-01-31 22:14:21 +00005348 if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0)
5349 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005350 Py_XDECREF(errorHandler);
5351 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005352 return (PyObject *)v;
Tim Petersced69f82003-09-16 20:30:58 +00005353
Benjamin Peterson29060642009-01-31 22:14:21 +00005354 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005355 Py_XDECREF(errorHandler);
5356 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005357 Py_XDECREF(v);
5358 return NULL;
5359}
5360
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005361/* Charmap encoding: the lookup table */
5362
5363struct encoding_map{
Benjamin Peterson29060642009-01-31 22:14:21 +00005364 PyObject_HEAD
5365 unsigned char level1[32];
5366 int count2, count3;
5367 unsigned char level23[1];
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005368};
5369
5370static PyObject*
5371encoding_map_size(PyObject *obj, PyObject* args)
5372{
5373 struct encoding_map *map = (struct encoding_map*)obj;
Benjamin Peterson14339b62009-01-31 16:36:08 +00005374 return PyLong_FromLong(sizeof(*map) - 1 + 16*map->count2 +
Benjamin Peterson29060642009-01-31 22:14:21 +00005375 128*map->count3);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005376}
5377
5378static PyMethodDef encoding_map_methods[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00005379 {"size", encoding_map_size, METH_NOARGS,
Benjamin Peterson29060642009-01-31 22:14:21 +00005380 PyDoc_STR("Return the size (in bytes) of this object") },
5381 { 0 }
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005382};
5383
5384static void
5385encoding_map_dealloc(PyObject* o)
5386{
Benjamin Peterson14339b62009-01-31 16:36:08 +00005387 PyObject_FREE(o);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005388}
5389
5390static PyTypeObject EncodingMapType = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00005391 PyVarObject_HEAD_INIT(NULL, 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005392 "EncodingMap", /*tp_name*/
5393 sizeof(struct encoding_map), /*tp_basicsize*/
5394 0, /*tp_itemsize*/
5395 /* methods */
5396 encoding_map_dealloc, /*tp_dealloc*/
5397 0, /*tp_print*/
5398 0, /*tp_getattr*/
5399 0, /*tp_setattr*/
Mark Dickinsone94c6792009-02-02 20:36:42 +00005400 0, /*tp_reserved*/
Benjamin Peterson29060642009-01-31 22:14:21 +00005401 0, /*tp_repr*/
5402 0, /*tp_as_number*/
5403 0, /*tp_as_sequence*/
5404 0, /*tp_as_mapping*/
5405 0, /*tp_hash*/
5406 0, /*tp_call*/
5407 0, /*tp_str*/
5408 0, /*tp_getattro*/
5409 0, /*tp_setattro*/
5410 0, /*tp_as_buffer*/
5411 Py_TPFLAGS_DEFAULT, /*tp_flags*/
5412 0, /*tp_doc*/
5413 0, /*tp_traverse*/
5414 0, /*tp_clear*/
5415 0, /*tp_richcompare*/
5416 0, /*tp_weaklistoffset*/
5417 0, /*tp_iter*/
5418 0, /*tp_iternext*/
5419 encoding_map_methods, /*tp_methods*/
5420 0, /*tp_members*/
5421 0, /*tp_getset*/
5422 0, /*tp_base*/
5423 0, /*tp_dict*/
5424 0, /*tp_descr_get*/
5425 0, /*tp_descr_set*/
5426 0, /*tp_dictoffset*/
5427 0, /*tp_init*/
5428 0, /*tp_alloc*/
5429 0, /*tp_new*/
5430 0, /*tp_free*/
5431 0, /*tp_is_gc*/
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005432};
5433
5434PyObject*
5435PyUnicode_BuildEncodingMap(PyObject* string)
5436{
5437 Py_UNICODE *decode;
5438 PyObject *result;
5439 struct encoding_map *mresult;
5440 int i;
5441 int need_dict = 0;
5442 unsigned char level1[32];
5443 unsigned char level2[512];
5444 unsigned char *mlevel1, *mlevel2, *mlevel3;
5445 int count2 = 0, count3 = 0;
5446
5447 if (!PyUnicode_Check(string) || PyUnicode_GetSize(string) != 256) {
5448 PyErr_BadArgument();
5449 return NULL;
5450 }
5451 decode = PyUnicode_AS_UNICODE(string);
5452 memset(level1, 0xFF, sizeof level1);
5453 memset(level2, 0xFF, sizeof level2);
5454
5455 /* If there isn't a one-to-one mapping of NULL to \0,
5456 or if there are non-BMP characters, we need to use
5457 a mapping dictionary. */
5458 if (decode[0] != 0)
5459 need_dict = 1;
5460 for (i = 1; i < 256; i++) {
5461 int l1, l2;
5462 if (decode[i] == 0
Benjamin Peterson29060642009-01-31 22:14:21 +00005463#ifdef Py_UNICODE_WIDE
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005464 || decode[i] > 0xFFFF
Benjamin Peterson29060642009-01-31 22:14:21 +00005465#endif
5466 ) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005467 need_dict = 1;
5468 break;
5469 }
5470 if (decode[i] == 0xFFFE)
5471 /* unmapped character */
5472 continue;
5473 l1 = decode[i] >> 11;
5474 l2 = decode[i] >> 7;
5475 if (level1[l1] == 0xFF)
5476 level1[l1] = count2++;
5477 if (level2[l2] == 0xFF)
Benjamin Peterson14339b62009-01-31 16:36:08 +00005478 level2[l2] = count3++;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005479 }
5480
5481 if (count2 >= 0xFF || count3 >= 0xFF)
5482 need_dict = 1;
5483
5484 if (need_dict) {
5485 PyObject *result = PyDict_New();
5486 PyObject *key, *value;
5487 if (!result)
5488 return NULL;
5489 for (i = 0; i < 256; i++) {
5490 key = value = NULL;
Christian Heimes217cfd12007-12-02 14:31:20 +00005491 key = PyLong_FromLong(decode[i]);
5492 value = PyLong_FromLong(i);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005493 if (!key || !value)
5494 goto failed1;
5495 if (PyDict_SetItem(result, key, value) == -1)
5496 goto failed1;
5497 Py_DECREF(key);
5498 Py_DECREF(value);
5499 }
5500 return result;
5501 failed1:
5502 Py_XDECREF(key);
5503 Py_XDECREF(value);
5504 Py_DECREF(result);
5505 return NULL;
5506 }
5507
5508 /* Create a three-level trie */
5509 result = PyObject_MALLOC(sizeof(struct encoding_map) +
5510 16*count2 + 128*count3 - 1);
5511 if (!result)
5512 return PyErr_NoMemory();
5513 PyObject_Init(result, &EncodingMapType);
5514 mresult = (struct encoding_map*)result;
5515 mresult->count2 = count2;
5516 mresult->count3 = count3;
5517 mlevel1 = mresult->level1;
5518 mlevel2 = mresult->level23;
5519 mlevel3 = mresult->level23 + 16*count2;
5520 memcpy(mlevel1, level1, 32);
5521 memset(mlevel2, 0xFF, 16*count2);
5522 memset(mlevel3, 0, 128*count3);
5523 count3 = 0;
5524 for (i = 1; i < 256; i++) {
5525 int o1, o2, o3, i2, i3;
5526 if (decode[i] == 0xFFFE)
5527 /* unmapped character */
5528 continue;
5529 o1 = decode[i]>>11;
5530 o2 = (decode[i]>>7) & 0xF;
5531 i2 = 16*mlevel1[o1] + o2;
5532 if (mlevel2[i2] == 0xFF)
5533 mlevel2[i2] = count3++;
5534 o3 = decode[i] & 0x7F;
5535 i3 = 128*mlevel2[i2] + o3;
5536 mlevel3[i3] = i;
5537 }
5538 return result;
5539}
5540
5541static int
5542encoding_map_lookup(Py_UNICODE c, PyObject *mapping)
5543{
5544 struct encoding_map *map = (struct encoding_map*)mapping;
5545 int l1 = c>>11;
5546 int l2 = (c>>7) & 0xF;
5547 int l3 = c & 0x7F;
5548 int i;
5549
5550#ifdef Py_UNICODE_WIDE
5551 if (c > 0xFFFF) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005552 return -1;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005553 }
5554#endif
5555 if (c == 0)
5556 return 0;
5557 /* level 1*/
5558 i = map->level1[l1];
5559 if (i == 0xFF) {
5560 return -1;
5561 }
5562 /* level 2*/
5563 i = map->level23[16*i+l2];
5564 if (i == 0xFF) {
5565 return -1;
5566 }
5567 /* level 3 */
5568 i = map->level23[16*map->count2 + 128*i + l3];
5569 if (i == 0) {
5570 return -1;
5571 }
5572 return i;
5573}
5574
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005575/* Lookup the character ch in the mapping. If the character
5576 can't be found, Py_None is returned (or NULL, if another
Fred Drakedb390c12005-10-28 14:39:47 +00005577 error occurred). */
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005578static PyObject *charmapencode_lookup(Py_UNICODE c, PyObject *mapping)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005579{
Christian Heimes217cfd12007-12-02 14:31:20 +00005580 PyObject *w = PyLong_FromLong((long)c);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005581 PyObject *x;
5582
5583 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005584 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005585 x = PyObject_GetItem(mapping, w);
5586 Py_DECREF(w);
5587 if (x == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005588 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
5589 /* No mapping found means: mapping is undefined. */
5590 PyErr_Clear();
5591 x = Py_None;
5592 Py_INCREF(x);
5593 return x;
5594 } else
5595 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005596 }
Walter Dörwaldadc72742003-01-08 22:01:33 +00005597 else if (x == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00005598 return x;
Christian Heimes217cfd12007-12-02 14:31:20 +00005599 else if (PyLong_Check(x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005600 long value = PyLong_AS_LONG(x);
5601 if (value < 0 || value > 255) {
5602 PyErr_SetString(PyExc_TypeError,
5603 "character mapping must be in range(256)");
5604 Py_DECREF(x);
5605 return NULL;
5606 }
5607 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005608 }
Christian Heimes72b710a2008-05-26 13:28:38 +00005609 else if (PyBytes_Check(x))
Benjamin Peterson29060642009-01-31 22:14:21 +00005610 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005611 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00005612 /* wrong return value */
5613 PyErr_Format(PyExc_TypeError,
5614 "character mapping must return integer, bytes or None, not %.400s",
5615 x->ob_type->tp_name);
5616 Py_DECREF(x);
5617 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005618 }
5619}
5620
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005621static int
Guido van Rossum98297ee2007-11-06 21:34:58 +00005622charmapencode_resize(PyObject **outobj, Py_ssize_t *outpos, Py_ssize_t requiredsize)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005623{
Benjamin Peterson14339b62009-01-31 16:36:08 +00005624 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj);
5625 /* exponentially overallocate to minimize reallocations */
5626 if (requiredsize < 2*outsize)
5627 requiredsize = 2*outsize;
5628 if (_PyBytes_Resize(outobj, requiredsize))
5629 return -1;
5630 return 0;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005631}
5632
Benjamin Peterson14339b62009-01-31 16:36:08 +00005633typedef enum charmapencode_result {
Benjamin Peterson29060642009-01-31 22:14:21 +00005634 enc_SUCCESS, enc_FAILED, enc_EXCEPTION
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005635}charmapencode_result;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005636/* lookup the character, put the result in the output string and adjust
Walter Dörwald827b0552007-05-12 13:23:53 +00005637 various state variables. Resize the output bytes object if not enough
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005638 space is available. Return a new reference to the object that
5639 was put in the output buffer, or Py_None, if the mapping was undefined
5640 (in which case no character was written) or NULL, if a
Andrew M. Kuchling8294de52005-11-02 16:36:12 +00005641 reallocation error occurred. The caller must decref the result */
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005642static
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005643charmapencode_result charmapencode_output(Py_UNICODE c, PyObject *mapping,
Benjamin Peterson29060642009-01-31 22:14:21 +00005644 PyObject **outobj, Py_ssize_t *outpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005645{
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005646 PyObject *rep;
5647 char *outstart;
Christian Heimes72b710a2008-05-26 13:28:38 +00005648 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005649
Christian Heimes90aa7642007-12-19 02:45:37 +00005650 if (Py_TYPE(mapping) == &EncodingMapType) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005651 int res = encoding_map_lookup(c, mapping);
Benjamin Peterson29060642009-01-31 22:14:21 +00005652 Py_ssize_t requiredsize = *outpos+1;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005653 if (res == -1)
5654 return enc_FAILED;
Benjamin Peterson29060642009-01-31 22:14:21 +00005655 if (outsize<requiredsize)
5656 if (charmapencode_resize(outobj, outpos, requiredsize))
5657 return enc_EXCEPTION;
Christian Heimes72b710a2008-05-26 13:28:38 +00005658 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00005659 outstart[(*outpos)++] = (char)res;
5660 return enc_SUCCESS;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005661 }
5662
5663 rep = charmapencode_lookup(c, mapping);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005664 if (rep==NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005665 return enc_EXCEPTION;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005666 else if (rep==Py_None) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005667 Py_DECREF(rep);
5668 return enc_FAILED;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005669 } else {
Benjamin Peterson29060642009-01-31 22:14:21 +00005670 if (PyLong_Check(rep)) {
5671 Py_ssize_t requiredsize = *outpos+1;
5672 if (outsize<requiredsize)
5673 if (charmapencode_resize(outobj, outpos, requiredsize)) {
5674 Py_DECREF(rep);
5675 return enc_EXCEPTION;
5676 }
Christian Heimes72b710a2008-05-26 13:28:38 +00005677 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00005678 outstart[(*outpos)++] = (char)PyLong_AS_LONG(rep);
Benjamin Peterson14339b62009-01-31 16:36:08 +00005679 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005680 else {
5681 const char *repchars = PyBytes_AS_STRING(rep);
5682 Py_ssize_t repsize = PyBytes_GET_SIZE(rep);
5683 Py_ssize_t requiredsize = *outpos+repsize;
5684 if (outsize<requiredsize)
5685 if (charmapencode_resize(outobj, outpos, requiredsize)) {
5686 Py_DECREF(rep);
5687 return enc_EXCEPTION;
5688 }
Christian Heimes72b710a2008-05-26 13:28:38 +00005689 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00005690 memcpy(outstart + *outpos, repchars, repsize);
5691 *outpos += repsize;
5692 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005693 }
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005694 Py_DECREF(rep);
5695 return enc_SUCCESS;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005696}
5697
5698/* handle an error in PyUnicode_EncodeCharmap
5699 Return 0 on success, -1 on error */
5700static
5701int charmap_encoding_error(
Martin v. Löwis18e16552006-02-15 17:27:45 +00005702 const Py_UNICODE *p, Py_ssize_t size, Py_ssize_t *inpos, PyObject *mapping,
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005703 PyObject **exceptionObject,
Walter Dörwalde5402fb2003-08-14 20:25:29 +00005704 int *known_errorHandler, PyObject **errorHandler, const char *errors,
Guido van Rossum98297ee2007-11-06 21:34:58 +00005705 PyObject **res, Py_ssize_t *respos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005706{
5707 PyObject *repunicode = NULL; /* initialize to prevent gcc warning */
Martin v. Löwis18e16552006-02-15 17:27:45 +00005708 Py_ssize_t repsize;
5709 Py_ssize_t newpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005710 Py_UNICODE *uni2;
5711 /* startpos for collecting unencodable chars */
Martin v. Löwis18e16552006-02-15 17:27:45 +00005712 Py_ssize_t collstartpos = *inpos;
5713 Py_ssize_t collendpos = *inpos+1;
5714 Py_ssize_t collpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005715 char *encoding = "charmap";
5716 char *reason = "character maps to <undefined>";
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005717 charmapencode_result x;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005718
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005719 /* find all unencodable characters */
5720 while (collendpos < size) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005721 PyObject *rep;
Christian Heimes90aa7642007-12-19 02:45:37 +00005722 if (Py_TYPE(mapping) == &EncodingMapType) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005723 int res = encoding_map_lookup(p[collendpos], mapping);
5724 if (res != -1)
5725 break;
5726 ++collendpos;
5727 continue;
5728 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005729
Benjamin Peterson29060642009-01-31 22:14:21 +00005730 rep = charmapencode_lookup(p[collendpos], mapping);
5731 if (rep==NULL)
5732 return -1;
5733 else if (rep!=Py_None) {
5734 Py_DECREF(rep);
5735 break;
5736 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005737 Py_DECREF(rep);
Benjamin Peterson29060642009-01-31 22:14:21 +00005738 ++collendpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005739 }
5740 /* cache callback name lookup
5741 * (if not done yet, i.e. it's the first error) */
5742 if (*known_errorHandler==-1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005743 if ((errors==NULL) || (!strcmp(errors, "strict")))
5744 *known_errorHandler = 1;
5745 else if (!strcmp(errors, "replace"))
5746 *known_errorHandler = 2;
5747 else if (!strcmp(errors, "ignore"))
5748 *known_errorHandler = 3;
5749 else if (!strcmp(errors, "xmlcharrefreplace"))
5750 *known_errorHandler = 4;
5751 else
5752 *known_errorHandler = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005753 }
5754 switch (*known_errorHandler) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00005755 case 1: /* strict */
5756 raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason);
5757 return -1;
5758 case 2: /* replace */
5759 for (collpos = collstartpos; collpos<collendpos; ++collpos) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005760 x = charmapencode_output('?', mapping, res, respos);
5761 if (x==enc_EXCEPTION) {
5762 return -1;
5763 }
5764 else if (x==enc_FAILED) {
5765 raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason);
5766 return -1;
5767 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005768 }
5769 /* fall through */
5770 case 3: /* ignore */
5771 *inpos = collendpos;
5772 break;
5773 case 4: /* xmlcharrefreplace */
5774 /* generate replacement (temporarily (mis)uses p) */
5775 for (collpos = collstartpos; collpos < collendpos; ++collpos) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005776 char buffer[2+29+1+1];
5777 char *cp;
5778 sprintf(buffer, "&#%d;", (int)p[collpos]);
5779 for (cp = buffer; *cp; ++cp) {
5780 x = charmapencode_output(*cp, mapping, res, respos);
5781 if (x==enc_EXCEPTION)
5782 return -1;
5783 else if (x==enc_FAILED) {
5784 raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason);
5785 return -1;
5786 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005787 }
5788 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005789 *inpos = collendpos;
5790 break;
5791 default:
5792 repunicode = unicode_encode_call_errorhandler(errors, errorHandler,
Benjamin Peterson29060642009-01-31 22:14:21 +00005793 encoding, reason, p, size, exceptionObject,
5794 collstartpos, collendpos, &newpos);
Benjamin Peterson14339b62009-01-31 16:36:08 +00005795 if (repunicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005796 return -1;
Martin v. Löwis011e8422009-05-05 04:43:17 +00005797 if (PyBytes_Check(repunicode)) {
5798 /* Directly copy bytes result to output. */
5799 Py_ssize_t outsize = PyBytes_Size(*res);
5800 Py_ssize_t requiredsize;
5801 repsize = PyBytes_Size(repunicode);
5802 requiredsize = *respos + repsize;
5803 if (requiredsize > outsize)
5804 /* Make room for all additional bytes. */
5805 if (charmapencode_resize(res, respos, requiredsize)) {
5806 Py_DECREF(repunicode);
5807 return -1;
5808 }
5809 memcpy(PyBytes_AsString(*res) + *respos,
5810 PyBytes_AsString(repunicode), repsize);
5811 *respos += repsize;
5812 *inpos = newpos;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00005813 Py_DECREF(repunicode);
Martin v. Löwis011e8422009-05-05 04:43:17 +00005814 break;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00005815 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005816 /* generate replacement */
5817 repsize = PyUnicode_GET_SIZE(repunicode);
5818 for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005819 x = charmapencode_output(*uni2, mapping, res, respos);
5820 if (x==enc_EXCEPTION) {
5821 return -1;
5822 }
5823 else if (x==enc_FAILED) {
5824 Py_DECREF(repunicode);
5825 raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason);
5826 return -1;
5827 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005828 }
5829 *inpos = newpos;
5830 Py_DECREF(repunicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005831 }
5832 return 0;
5833}
5834
Guido van Rossumd57fd912000-03-10 22:53:23 +00005835PyObject *PyUnicode_EncodeCharmap(const Py_UNICODE *p,
Benjamin Peterson29060642009-01-31 22:14:21 +00005836 Py_ssize_t size,
5837 PyObject *mapping,
5838 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005839{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005840 /* output object */
5841 PyObject *res = NULL;
5842 /* current input position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00005843 Py_ssize_t inpos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005844 /* current output position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00005845 Py_ssize_t respos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005846 PyObject *errorHandler = NULL;
5847 PyObject *exc = NULL;
5848 /* the following variable is used for caching string comparisons
5849 * -1=not initialized, 0=unknown, 1=strict, 2=replace,
5850 * 3=ignore, 4=xmlcharrefreplace */
5851 int known_errorHandler = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005852
5853 /* Default to Latin-1 */
5854 if (mapping == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005855 return PyUnicode_EncodeLatin1(p, size, errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005856
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005857 /* allocate enough for a simple encoding without
5858 replacements, if we need more, we'll resize */
Christian Heimes72b710a2008-05-26 13:28:38 +00005859 res = PyBytes_FromStringAndSize(NULL, size);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005860 if (res == NULL)
5861 goto onError;
Marc-André Lemburgb7520772000-08-14 11:29:19 +00005862 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005863 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005864
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005865 while (inpos<size) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005866 /* try to encode it */
5867 charmapencode_result x = charmapencode_output(p[inpos], mapping, &res, &respos);
5868 if (x==enc_EXCEPTION) /* error */
5869 goto onError;
5870 if (x==enc_FAILED) { /* unencodable character */
5871 if (charmap_encoding_error(p, size, &inpos, mapping,
5872 &exc,
5873 &known_errorHandler, &errorHandler, errors,
5874 &res, &respos)) {
5875 goto onError;
5876 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005877 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005878 else
5879 /* done with this character => adjust input position */
5880 ++inpos;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005881 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00005882
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005883 /* Resize if we allocated to much */
Christian Heimes72b710a2008-05-26 13:28:38 +00005884 if (respos<PyBytes_GET_SIZE(res))
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005885 if (_PyBytes_Resize(&res, respos) < 0)
5886 goto onError;
Guido van Rossum98297ee2007-11-06 21:34:58 +00005887
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005888 Py_XDECREF(exc);
5889 Py_XDECREF(errorHandler);
5890 return res;
5891
Benjamin Peterson29060642009-01-31 22:14:21 +00005892 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005893 Py_XDECREF(res);
5894 Py_XDECREF(exc);
5895 Py_XDECREF(errorHandler);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005896 return NULL;
5897}
5898
5899PyObject *PyUnicode_AsCharmapString(PyObject *unicode,
Benjamin Peterson29060642009-01-31 22:14:21 +00005900 PyObject *mapping)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005901{
5902 if (!PyUnicode_Check(unicode) || mapping == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005903 PyErr_BadArgument();
5904 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005905 }
5906 return PyUnicode_EncodeCharmap(PyUnicode_AS_UNICODE(unicode),
Benjamin Peterson29060642009-01-31 22:14:21 +00005907 PyUnicode_GET_SIZE(unicode),
5908 mapping,
5909 NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005910}
5911
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005912/* create or adjust a UnicodeTranslateError */
5913static void make_translate_exception(PyObject **exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00005914 const Py_UNICODE *unicode, Py_ssize_t size,
5915 Py_ssize_t startpos, Py_ssize_t endpos,
5916 const char *reason)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005917{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005918 if (*exceptionObject == NULL) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00005919 *exceptionObject = PyUnicodeTranslateError_Create(
Benjamin Peterson29060642009-01-31 22:14:21 +00005920 unicode, size, startpos, endpos, reason);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005921 }
5922 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00005923 if (PyUnicodeTranslateError_SetStart(*exceptionObject, startpos))
5924 goto onError;
5925 if (PyUnicodeTranslateError_SetEnd(*exceptionObject, endpos))
5926 goto onError;
5927 if (PyUnicodeTranslateError_SetReason(*exceptionObject, reason))
5928 goto onError;
5929 return;
5930 onError:
5931 Py_DECREF(*exceptionObject);
5932 *exceptionObject = NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005933 }
5934}
5935
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005936/* raises a UnicodeTranslateError */
5937static void raise_translate_exception(PyObject **exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00005938 const Py_UNICODE *unicode, Py_ssize_t size,
5939 Py_ssize_t startpos, Py_ssize_t endpos,
5940 const char *reason)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005941{
5942 make_translate_exception(exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00005943 unicode, size, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005944 if (*exceptionObject != NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005945 PyCodec_StrictErrors(*exceptionObject);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005946}
5947
5948/* error handling callback helper:
5949 build arguments, call the callback and check the arguments,
5950 put the result into newpos and return the replacement string, which
5951 has to be freed by the caller */
5952static PyObject *unicode_translate_call_errorhandler(const char *errors,
Benjamin Peterson29060642009-01-31 22:14:21 +00005953 PyObject **errorHandler,
5954 const char *reason,
5955 const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject,
5956 Py_ssize_t startpos, Py_ssize_t endpos,
5957 Py_ssize_t *newpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005958{
Benjamin Peterson142957c2008-07-04 19:55:29 +00005959 static char *argparse = "O!n;translating error handler must return (str, int) tuple";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005960
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00005961 Py_ssize_t i_newpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005962 PyObject *restuple;
5963 PyObject *resunicode;
5964
5965 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005966 *errorHandler = PyCodec_LookupError(errors);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005967 if (*errorHandler == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005968 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005969 }
5970
5971 make_translate_exception(exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00005972 unicode, size, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005973 if (*exceptionObject == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005974 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005975
5976 restuple = PyObject_CallFunctionObjArgs(
Benjamin Peterson29060642009-01-31 22:14:21 +00005977 *errorHandler, *exceptionObject, NULL);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005978 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005979 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005980 if (!PyTuple_Check(restuple)) {
Benjamin Petersond75fcb42009-02-19 04:22:03 +00005981 PyErr_SetString(PyExc_TypeError, &argparse[4]);
Benjamin Peterson29060642009-01-31 22:14:21 +00005982 Py_DECREF(restuple);
5983 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005984 }
5985 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type,
Benjamin Peterson29060642009-01-31 22:14:21 +00005986 &resunicode, &i_newpos)) {
5987 Py_DECREF(restuple);
5988 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005989 }
Martin v. Löwis18e16552006-02-15 17:27:45 +00005990 if (i_newpos<0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005991 *newpos = size+i_newpos;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005992 else
5993 *newpos = i_newpos;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00005994 if (*newpos<0 || *newpos>size) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005995 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos);
5996 Py_DECREF(restuple);
5997 return NULL;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00005998 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005999 Py_INCREF(resunicode);
6000 Py_DECREF(restuple);
6001 return resunicode;
6002}
6003
6004/* Lookup the character ch in the mapping and put the result in result,
6005 which must be decrefed by the caller.
6006 Return 0 on success, -1 on error */
6007static
6008int charmaptranslate_lookup(Py_UNICODE c, PyObject *mapping, PyObject **result)
6009{
Christian Heimes217cfd12007-12-02 14:31:20 +00006010 PyObject *w = PyLong_FromLong((long)c);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006011 PyObject *x;
6012
6013 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006014 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006015 x = PyObject_GetItem(mapping, w);
6016 Py_DECREF(w);
6017 if (x == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006018 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
6019 /* No mapping found means: use 1:1 mapping. */
6020 PyErr_Clear();
6021 *result = NULL;
6022 return 0;
6023 } else
6024 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006025 }
6026 else if (x == Py_None) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006027 *result = x;
6028 return 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006029 }
Christian Heimes217cfd12007-12-02 14:31:20 +00006030 else if (PyLong_Check(x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006031 long value = PyLong_AS_LONG(x);
6032 long max = PyUnicode_GetMax();
6033 if (value < 0 || value > max) {
6034 PyErr_Format(PyExc_TypeError,
Guido van Rossum5a2f7e602007-10-24 21:13:09 +00006035 "character mapping must be in range(0x%x)", max+1);
Benjamin Peterson29060642009-01-31 22:14:21 +00006036 Py_DECREF(x);
6037 return -1;
6038 }
6039 *result = x;
6040 return 0;
6041 }
6042 else if (PyUnicode_Check(x)) {
6043 *result = x;
6044 return 0;
6045 }
6046 else {
6047 /* wrong return value */
6048 PyErr_SetString(PyExc_TypeError,
6049 "character mapping must return integer, None or str");
Benjamin Peterson14339b62009-01-31 16:36:08 +00006050 Py_DECREF(x);
6051 return -1;
6052 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006053}
6054/* ensure that *outobj is at least requiredsize characters long,
Benjamin Peterson29060642009-01-31 22:14:21 +00006055 if not reallocate and adjust various state variables.
6056 Return 0 on success, -1 on error */
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006057static
Walter Dörwald4894c302003-10-24 14:25:28 +00006058int charmaptranslate_makespace(PyObject **outobj, Py_UNICODE **outp,
Benjamin Peterson29060642009-01-31 22:14:21 +00006059 Py_ssize_t requiredsize)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006060{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006061 Py_ssize_t oldsize = PyUnicode_GET_SIZE(*outobj);
Walter Dörwald4894c302003-10-24 14:25:28 +00006062 if (requiredsize > oldsize) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006063 /* remember old output position */
6064 Py_ssize_t outpos = *outp-PyUnicode_AS_UNICODE(*outobj);
6065 /* exponentially overallocate to minimize reallocations */
6066 if (requiredsize < 2 * oldsize)
6067 requiredsize = 2 * oldsize;
6068 if (PyUnicode_Resize(outobj, requiredsize) < 0)
6069 return -1;
6070 *outp = PyUnicode_AS_UNICODE(*outobj) + outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006071 }
6072 return 0;
6073}
6074/* lookup the character, put the result in the output string and adjust
6075 various state variables. Return a new reference to the object that
6076 was put in the output buffer in *result, or Py_None, if the mapping was
6077 undefined (in which case no character was written).
6078 The called must decref result.
6079 Return 0 on success, -1 on error. */
6080static
Walter Dörwald4894c302003-10-24 14:25:28 +00006081int charmaptranslate_output(const Py_UNICODE *startinp, const Py_UNICODE *curinp,
Benjamin Peterson29060642009-01-31 22:14:21 +00006082 Py_ssize_t insize, PyObject *mapping, PyObject **outobj, Py_UNICODE **outp,
6083 PyObject **res)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006084{
Walter Dörwald4894c302003-10-24 14:25:28 +00006085 if (charmaptranslate_lookup(*curinp, mapping, res))
Benjamin Peterson29060642009-01-31 22:14:21 +00006086 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006087 if (*res==NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006088 /* not found => default to 1:1 mapping */
6089 *(*outp)++ = *curinp;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006090 }
6091 else if (*res==Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00006092 ;
Christian Heimes217cfd12007-12-02 14:31:20 +00006093 else if (PyLong_Check(*res)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006094 /* no overflow check, because we know that the space is enough */
6095 *(*outp)++ = (Py_UNICODE)PyLong_AS_LONG(*res);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006096 }
6097 else if (PyUnicode_Check(*res)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006098 Py_ssize_t repsize = PyUnicode_GET_SIZE(*res);
6099 if (repsize==1) {
6100 /* no overflow check, because we know that the space is enough */
6101 *(*outp)++ = *PyUnicode_AS_UNICODE(*res);
6102 }
6103 else if (repsize!=0) {
6104 /* more than one character */
6105 Py_ssize_t requiredsize = (*outp-PyUnicode_AS_UNICODE(*outobj)) +
6106 (insize - (curinp-startinp)) +
6107 repsize - 1;
6108 if (charmaptranslate_makespace(outobj, outp, requiredsize))
6109 return -1;
6110 memcpy(*outp, PyUnicode_AS_UNICODE(*res), sizeof(Py_UNICODE)*repsize);
6111 *outp += repsize;
6112 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006113 }
6114 else
Benjamin Peterson29060642009-01-31 22:14:21 +00006115 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006116 return 0;
6117}
6118
6119PyObject *PyUnicode_TranslateCharmap(const Py_UNICODE *p,
Benjamin Peterson29060642009-01-31 22:14:21 +00006120 Py_ssize_t size,
6121 PyObject *mapping,
6122 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006123{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006124 /* output object */
6125 PyObject *res = NULL;
6126 /* pointers to the beginning and end+1 of input */
6127 const Py_UNICODE *startp = p;
6128 const Py_UNICODE *endp = p + size;
6129 /* pointer into the output */
6130 Py_UNICODE *str;
6131 /* current output position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00006132 Py_ssize_t respos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006133 char *reason = "character maps to <undefined>";
6134 PyObject *errorHandler = NULL;
6135 PyObject *exc = NULL;
6136 /* the following variable is used for caching string comparisons
6137 * -1=not initialized, 0=unknown, 1=strict, 2=replace,
6138 * 3=ignore, 4=xmlcharrefreplace */
6139 int known_errorHandler = -1;
6140
Guido van Rossumd57fd912000-03-10 22:53:23 +00006141 if (mapping == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006142 PyErr_BadArgument();
6143 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006144 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006145
6146 /* allocate enough for a simple 1:1 translation without
6147 replacements, if we need more, we'll resize */
6148 res = PyUnicode_FromUnicode(NULL, size);
6149 if (res == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006150 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006151 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00006152 return res;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006153 str = PyUnicode_AS_UNICODE(res);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006154
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006155 while (p<endp) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006156 /* try to encode it */
6157 PyObject *x = NULL;
6158 if (charmaptranslate_output(startp, p, size, mapping, &res, &str, &x)) {
6159 Py_XDECREF(x);
6160 goto onError;
6161 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00006162 Py_XDECREF(x);
Benjamin Peterson29060642009-01-31 22:14:21 +00006163 if (x!=Py_None) /* it worked => adjust input pointer */
6164 ++p;
6165 else { /* untranslatable character */
6166 PyObject *repunicode = NULL; /* initialize to prevent gcc warning */
6167 Py_ssize_t repsize;
6168 Py_ssize_t newpos;
6169 Py_UNICODE *uni2;
6170 /* startpos for collecting untranslatable chars */
6171 const Py_UNICODE *collstart = p;
6172 const Py_UNICODE *collend = p+1;
6173 const Py_UNICODE *coll;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006174
Benjamin Peterson29060642009-01-31 22:14:21 +00006175 /* find all untranslatable characters */
6176 while (collend < endp) {
6177 if (charmaptranslate_lookup(*collend, mapping, &x))
6178 goto onError;
6179 Py_XDECREF(x);
6180 if (x!=Py_None)
6181 break;
6182 ++collend;
6183 }
6184 /* cache callback name lookup
6185 * (if not done yet, i.e. it's the first error) */
6186 if (known_errorHandler==-1) {
6187 if ((errors==NULL) || (!strcmp(errors, "strict")))
6188 known_errorHandler = 1;
6189 else if (!strcmp(errors, "replace"))
6190 known_errorHandler = 2;
6191 else if (!strcmp(errors, "ignore"))
6192 known_errorHandler = 3;
6193 else if (!strcmp(errors, "xmlcharrefreplace"))
6194 known_errorHandler = 4;
6195 else
6196 known_errorHandler = 0;
6197 }
6198 switch (known_errorHandler) {
6199 case 1: /* strict */
6200 raise_translate_exception(&exc, startp, size, collstart-startp, collend-startp, reason);
Benjamin Peterson14339b62009-01-31 16:36:08 +00006201 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00006202 case 2: /* replace */
6203 /* No need to check for space, this is a 1:1 replacement */
6204 for (coll = collstart; coll<collend; ++coll)
6205 *str++ = '?';
6206 /* fall through */
6207 case 3: /* ignore */
6208 p = collend;
6209 break;
6210 case 4: /* xmlcharrefreplace */
6211 /* generate replacement (temporarily (mis)uses p) */
6212 for (p = collstart; p < collend; ++p) {
6213 char buffer[2+29+1+1];
6214 char *cp;
6215 sprintf(buffer, "&#%d;", (int)*p);
6216 if (charmaptranslate_makespace(&res, &str,
6217 (str-PyUnicode_AS_UNICODE(res))+strlen(buffer)+(endp-collend)))
6218 goto onError;
6219 for (cp = buffer; *cp; ++cp)
6220 *str++ = *cp;
6221 }
6222 p = collend;
6223 break;
6224 default:
6225 repunicode = unicode_translate_call_errorhandler(errors, &errorHandler,
6226 reason, startp, size, &exc,
6227 collstart-startp, collend-startp, &newpos);
6228 if (repunicode == NULL)
6229 goto onError;
6230 /* generate replacement */
6231 repsize = PyUnicode_GET_SIZE(repunicode);
6232 if (charmaptranslate_makespace(&res, &str,
6233 (str-PyUnicode_AS_UNICODE(res))+repsize+(endp-collend))) {
6234 Py_DECREF(repunicode);
6235 goto onError;
6236 }
6237 for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2)
6238 *str++ = *uni2;
6239 p = startp + newpos;
6240 Py_DECREF(repunicode);
Benjamin Peterson14339b62009-01-31 16:36:08 +00006241 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00006242 }
6243 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006244 /* Resize if we allocated to much */
6245 respos = str-PyUnicode_AS_UNICODE(res);
Walter Dörwald4894c302003-10-24 14:25:28 +00006246 if (respos<PyUnicode_GET_SIZE(res)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006247 if (PyUnicode_Resize(&res, respos) < 0)
6248 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006249 }
6250 Py_XDECREF(exc);
6251 Py_XDECREF(errorHandler);
6252 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006253
Benjamin Peterson29060642009-01-31 22:14:21 +00006254 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006255 Py_XDECREF(res);
6256 Py_XDECREF(exc);
6257 Py_XDECREF(errorHandler);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006258 return NULL;
6259}
6260
6261PyObject *PyUnicode_Translate(PyObject *str,
Benjamin Peterson29060642009-01-31 22:14:21 +00006262 PyObject *mapping,
6263 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006264{
6265 PyObject *result;
Tim Petersced69f82003-09-16 20:30:58 +00006266
Guido van Rossumd57fd912000-03-10 22:53:23 +00006267 str = PyUnicode_FromObject(str);
6268 if (str == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006269 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006270 result = PyUnicode_TranslateCharmap(PyUnicode_AS_UNICODE(str),
Benjamin Peterson29060642009-01-31 22:14:21 +00006271 PyUnicode_GET_SIZE(str),
6272 mapping,
6273 errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006274 Py_DECREF(str);
6275 return result;
Tim Petersced69f82003-09-16 20:30:58 +00006276
Benjamin Peterson29060642009-01-31 22:14:21 +00006277 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00006278 Py_XDECREF(str);
6279 return NULL;
6280}
Tim Petersced69f82003-09-16 20:30:58 +00006281
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00006282PyObject *
6283PyUnicode_TransformDecimalToASCII(Py_UNICODE *s,
6284 Py_ssize_t length)
6285{
6286 PyObject *result;
6287 Py_UNICODE *p; /* write pointer into result */
6288 Py_ssize_t i;
6289 /* Copy to a new string */
6290 result = (PyObject *)_PyUnicode_New(length);
6291 Py_UNICODE_COPY(PyUnicode_AS_UNICODE(result), s, length);
6292 if (result == NULL)
6293 return result;
6294 p = PyUnicode_AS_UNICODE(result);
6295 /* Iterate over code points */
6296 for (i = 0; i < length; i++) {
6297 Py_UNICODE ch =s[i];
6298 if (ch > 127) {
6299 int decimal = Py_UNICODE_TODECIMAL(ch);
6300 if (decimal >= 0)
6301 p[i] = '0' + decimal;
6302 }
6303 }
6304 return result;
6305}
Guido van Rossum9e896b32000-04-05 20:11:21 +00006306/* --- Decimal Encoder ---------------------------------------------------- */
6307
6308int PyUnicode_EncodeDecimal(Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00006309 Py_ssize_t length,
6310 char *output,
6311 const char *errors)
Guido van Rossum9e896b32000-04-05 20:11:21 +00006312{
6313 Py_UNICODE *p, *end;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006314 PyObject *errorHandler = NULL;
6315 PyObject *exc = NULL;
6316 const char *encoding = "decimal";
6317 const char *reason = "invalid decimal Unicode string";
6318 /* the following variable is used for caching string comparisons
6319 * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */
6320 int known_errorHandler = -1;
Guido van Rossum9e896b32000-04-05 20:11:21 +00006321
6322 if (output == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006323 PyErr_BadArgument();
6324 return -1;
Guido van Rossum9e896b32000-04-05 20:11:21 +00006325 }
6326
6327 p = s;
6328 end = s + length;
6329 while (p < end) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006330 register Py_UNICODE ch = *p;
6331 int decimal;
6332 PyObject *repunicode;
6333 Py_ssize_t repsize;
6334 Py_ssize_t newpos;
6335 Py_UNICODE *uni2;
6336 Py_UNICODE *collstart;
6337 Py_UNICODE *collend;
Tim Petersced69f82003-09-16 20:30:58 +00006338
Benjamin Peterson29060642009-01-31 22:14:21 +00006339 if (Py_UNICODE_ISSPACE(ch)) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00006340 *output++ = ' ';
Benjamin Peterson29060642009-01-31 22:14:21 +00006341 ++p;
6342 continue;
Benjamin Peterson14339b62009-01-31 16:36:08 +00006343 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006344 decimal = Py_UNICODE_TODECIMAL(ch);
6345 if (decimal >= 0) {
6346 *output++ = '0' + decimal;
6347 ++p;
6348 continue;
6349 }
6350 if (0 < ch && ch < 256) {
6351 *output++ = (char)ch;
6352 ++p;
6353 continue;
6354 }
6355 /* All other characters are considered unencodable */
6356 collstart = p;
Victor Stinnerab1d16b2011-11-22 01:45:37 +01006357 for (collend = p+1; collend < end; collend++) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006358 if ((0 < *collend && *collend < 256) ||
Victor Stinnerab1d16b2011-11-22 01:45:37 +01006359 Py_UNICODE_ISSPACE(*collend) ||
6360 0 <= Py_UNICODE_TODECIMAL(*collend))
Benjamin Peterson29060642009-01-31 22:14:21 +00006361 break;
6362 }
6363 /* cache callback name lookup
6364 * (if not done yet, i.e. it's the first error) */
6365 if (known_errorHandler==-1) {
6366 if ((errors==NULL) || (!strcmp(errors, "strict")))
6367 known_errorHandler = 1;
6368 else if (!strcmp(errors, "replace"))
6369 known_errorHandler = 2;
6370 else if (!strcmp(errors, "ignore"))
6371 known_errorHandler = 3;
6372 else if (!strcmp(errors, "xmlcharrefreplace"))
6373 known_errorHandler = 4;
6374 else
6375 known_errorHandler = 0;
6376 }
6377 switch (known_errorHandler) {
6378 case 1: /* strict */
6379 raise_encode_exception(&exc, encoding, s, length, collstart-s, collend-s, reason);
6380 goto onError;
6381 case 2: /* replace */
6382 for (p = collstart; p < collend; ++p)
6383 *output++ = '?';
6384 /* fall through */
6385 case 3: /* ignore */
6386 p = collend;
6387 break;
6388 case 4: /* xmlcharrefreplace */
6389 /* generate replacement (temporarily (mis)uses p) */
6390 for (p = collstart; p < collend; ++p)
6391 output += sprintf(output, "&#%d;", (int)*p);
6392 p = collend;
6393 break;
6394 default:
6395 repunicode = unicode_encode_call_errorhandler(errors, &errorHandler,
6396 encoding, reason, s, length, &exc,
6397 collstart-s, collend-s, &newpos);
6398 if (repunicode == NULL)
6399 goto onError;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006400 if (!PyUnicode_Check(repunicode)) {
Martin v. Löwis011e8422009-05-05 04:43:17 +00006401 /* Byte results not supported, since they have no decimal property. */
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006402 PyErr_SetString(PyExc_TypeError, "error handler should return unicode");
6403 Py_DECREF(repunicode);
6404 goto onError;
6405 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006406 /* generate replacement */
6407 repsize = PyUnicode_GET_SIZE(repunicode);
6408 for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) {
6409 Py_UNICODE ch = *uni2;
6410 if (Py_UNICODE_ISSPACE(ch))
6411 *output++ = ' ';
6412 else {
6413 decimal = Py_UNICODE_TODECIMAL(ch);
6414 if (decimal >= 0)
6415 *output++ = '0' + decimal;
6416 else if (0 < ch && ch < 256)
6417 *output++ = (char)ch;
6418 else {
6419 Py_DECREF(repunicode);
6420 raise_encode_exception(&exc, encoding,
6421 s, length, collstart-s, collend-s, reason);
6422 goto onError;
6423 }
6424 }
6425 }
6426 p = s + newpos;
6427 Py_DECREF(repunicode);
6428 }
Guido van Rossum9e896b32000-04-05 20:11:21 +00006429 }
6430 /* 0-terminate the output string */
6431 *output++ = '\0';
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006432 Py_XDECREF(exc);
6433 Py_XDECREF(errorHandler);
Guido van Rossum9e896b32000-04-05 20:11:21 +00006434 return 0;
6435
Benjamin Peterson29060642009-01-31 22:14:21 +00006436 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006437 Py_XDECREF(exc);
6438 Py_XDECREF(errorHandler);
Guido van Rossum9e896b32000-04-05 20:11:21 +00006439 return -1;
6440}
6441
Guido van Rossumd57fd912000-03-10 22:53:23 +00006442/* --- Helpers ------------------------------------------------------------ */
6443
Eric Smith8c663262007-08-25 02:26:07 +00006444#include "stringlib/unicodedefs.h"
Thomas Wouters477c8d52006-05-27 19:21:47 +00006445#include "stringlib/fastsearch.h"
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006446
Thomas Wouters477c8d52006-05-27 19:21:47 +00006447#include "stringlib/count.h"
6448#include "stringlib/find.h"
6449#include "stringlib/partition.h"
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006450#include "stringlib/split.h"
Thomas Wouters477c8d52006-05-27 19:21:47 +00006451
Eric Smith5807c412008-05-11 21:00:57 +00006452#define _Py_InsertThousandsGrouping _PyUnicode_InsertThousandsGrouping
Eric Smitha3b1ac82009-04-03 14:45:06 +00006453#define _Py_InsertThousandsGroupingLocale _PyUnicode_InsertThousandsGroupingLocale
Eric Smith5807c412008-05-11 21:00:57 +00006454#include "stringlib/localeutil.h"
6455
Thomas Wouters477c8d52006-05-27 19:21:47 +00006456/* helper macro to fixup start/end slice values */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006457#define ADJUST_INDICES(start, end, len) \
6458 if (end > len) \
6459 end = len; \
6460 else if (end < 0) { \
6461 end += len; \
6462 if (end < 0) \
6463 end = 0; \
6464 } \
6465 if (start < 0) { \
6466 start += len; \
6467 if (start < 0) \
6468 start = 0; \
6469 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00006470
Ezio Melotti93e7afc2011-08-22 14:08:38 +03006471/* _Py_UNICODE_NEXT is a private macro used to retrieve the character pointed
6472 * by 'ptr', possibly combining surrogate pairs on narrow builds.
6473 * 'ptr' and 'end' must be Py_UNICODE*, with 'ptr' pointing at the character
6474 * that should be returned and 'end' pointing to the end of the buffer.
6475 * ('end' is used on narrow builds to detect a lone surrogate at the
6476 * end of the buffer that should be returned unchanged.)
6477 * The ptr and end arguments should be side-effect free and ptr must an lvalue.
6478 * The type of the returned char is always Py_UCS4.
6479 *
6480 * Note: the macro advances ptr to next char, so it might have side-effects
6481 * (especially if used with other macros).
6482 */
6483
6484/* helper macros used by _Py_UNICODE_NEXT */
6485#define _Py_UNICODE_IS_HIGH_SURROGATE(ch) (0xD800 <= ch && ch <= 0xDBFF)
6486#define _Py_UNICODE_IS_LOW_SURROGATE(ch) (0xDC00 <= ch && ch <= 0xDFFF)
6487/* Join two surrogate characters and return a single Py_UCS4 value. */
6488#define _Py_UNICODE_JOIN_SURROGATES(high, low) \
6489 (((((Py_UCS4)(high) & 0x03FF) << 10) | \
6490 ((Py_UCS4)(low) & 0x03FF)) + 0x10000)
6491
6492#ifdef Py_UNICODE_WIDE
6493#define _Py_UNICODE_NEXT(ptr, end) *(ptr)++
6494#else
6495#define _Py_UNICODE_NEXT(ptr, end) \
6496 (((_Py_UNICODE_IS_HIGH_SURROGATE(*(ptr)) && (ptr) < (end)) && \
6497 _Py_UNICODE_IS_LOW_SURROGATE((ptr)[1])) ? \
6498 ((ptr) += 2,_Py_UNICODE_JOIN_SURROGATES((ptr)[-2], (ptr)[-1])) : \
6499 (Py_UCS4)*(ptr)++)
6500#endif
6501
Martin v. Löwis18e16552006-02-15 17:27:45 +00006502Py_ssize_t PyUnicode_Count(PyObject *str,
Thomas Wouters477c8d52006-05-27 19:21:47 +00006503 PyObject *substr,
6504 Py_ssize_t start,
6505 Py_ssize_t end)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006506{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006507 Py_ssize_t result;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006508 PyUnicodeObject* str_obj;
6509 PyUnicodeObject* sub_obj;
Tim Petersced69f82003-09-16 20:30:58 +00006510
Thomas Wouters477c8d52006-05-27 19:21:47 +00006511 str_obj = (PyUnicodeObject*) PyUnicode_FromObject(str);
6512 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +00006513 return -1;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006514 sub_obj = (PyUnicodeObject*) PyUnicode_FromObject(substr);
6515 if (!sub_obj) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006516 Py_DECREF(str_obj);
6517 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006518 }
Tim Petersced69f82003-09-16 20:30:58 +00006519
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006520 ADJUST_INDICES(start, end, str_obj->length);
Thomas Wouters477c8d52006-05-27 19:21:47 +00006521 result = stringlib_count(
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006522 str_obj->str + start, end - start, sub_obj->str, sub_obj->length,
6523 PY_SSIZE_T_MAX
Thomas Wouters477c8d52006-05-27 19:21:47 +00006524 );
6525
6526 Py_DECREF(sub_obj);
6527 Py_DECREF(str_obj);
6528
Guido van Rossumd57fd912000-03-10 22:53:23 +00006529 return result;
6530}
6531
Martin v. Löwis18e16552006-02-15 17:27:45 +00006532Py_ssize_t PyUnicode_Find(PyObject *str,
Thomas Wouters477c8d52006-05-27 19:21:47 +00006533 PyObject *sub,
6534 Py_ssize_t start,
6535 Py_ssize_t end,
6536 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006537{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006538 Py_ssize_t result;
Tim Petersced69f82003-09-16 20:30:58 +00006539
Guido van Rossumd57fd912000-03-10 22:53:23 +00006540 str = PyUnicode_FromObject(str);
Thomas Wouters477c8d52006-05-27 19:21:47 +00006541 if (!str)
Benjamin Peterson29060642009-01-31 22:14:21 +00006542 return -2;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006543 sub = PyUnicode_FromObject(sub);
6544 if (!sub) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006545 Py_DECREF(str);
6546 return -2;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006547 }
Tim Petersced69f82003-09-16 20:30:58 +00006548
Thomas Wouters477c8d52006-05-27 19:21:47 +00006549 if (direction > 0)
6550 result = stringlib_find_slice(
6551 PyUnicode_AS_UNICODE(str), PyUnicode_GET_SIZE(str),
6552 PyUnicode_AS_UNICODE(sub), PyUnicode_GET_SIZE(sub),
6553 start, end
6554 );
6555 else
6556 result = stringlib_rfind_slice(
6557 PyUnicode_AS_UNICODE(str), PyUnicode_GET_SIZE(str),
6558 PyUnicode_AS_UNICODE(sub), PyUnicode_GET_SIZE(sub),
6559 start, end
6560 );
6561
Guido van Rossumd57fd912000-03-10 22:53:23 +00006562 Py_DECREF(str);
Thomas Wouters477c8d52006-05-27 19:21:47 +00006563 Py_DECREF(sub);
6564
Guido van Rossumd57fd912000-03-10 22:53:23 +00006565 return result;
6566}
6567
Tim Petersced69f82003-09-16 20:30:58 +00006568static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006569int tailmatch(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006570 PyUnicodeObject *substring,
6571 Py_ssize_t start,
6572 Py_ssize_t end,
6573 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006574{
Guido van Rossumd57fd912000-03-10 22:53:23 +00006575 if (substring->length == 0)
6576 return 1;
6577
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006578 ADJUST_INDICES(start, end, self->length);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006579 end -= substring->length;
6580 if (end < start)
Benjamin Peterson29060642009-01-31 22:14:21 +00006581 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006582
6583 if (direction > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006584 if (Py_UNICODE_MATCH(self, end, substring))
6585 return 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006586 } else {
6587 if (Py_UNICODE_MATCH(self, start, substring))
Benjamin Peterson29060642009-01-31 22:14:21 +00006588 return 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006589 }
6590
6591 return 0;
6592}
6593
Martin v. Löwis18e16552006-02-15 17:27:45 +00006594Py_ssize_t PyUnicode_Tailmatch(PyObject *str,
Benjamin Peterson29060642009-01-31 22:14:21 +00006595 PyObject *substr,
6596 Py_ssize_t start,
6597 Py_ssize_t end,
6598 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006599{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006600 Py_ssize_t result;
Tim Petersced69f82003-09-16 20:30:58 +00006601
Guido van Rossumd57fd912000-03-10 22:53:23 +00006602 str = PyUnicode_FromObject(str);
6603 if (str == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006604 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006605 substr = PyUnicode_FromObject(substr);
6606 if (substr == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006607 Py_DECREF(str);
6608 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006609 }
Tim Petersced69f82003-09-16 20:30:58 +00006610
Guido van Rossumd57fd912000-03-10 22:53:23 +00006611 result = tailmatch((PyUnicodeObject *)str,
Benjamin Peterson29060642009-01-31 22:14:21 +00006612 (PyUnicodeObject *)substr,
6613 start, end, direction);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006614 Py_DECREF(str);
6615 Py_DECREF(substr);
6616 return result;
6617}
6618
Guido van Rossumd57fd912000-03-10 22:53:23 +00006619/* Apply fixfct filter to the Unicode object self and return a
6620 reference to the modified object */
6621
Tim Petersced69f82003-09-16 20:30:58 +00006622static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006623PyObject *fixup(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006624 int (*fixfct)(PyUnicodeObject *s))
Guido van Rossumd57fd912000-03-10 22:53:23 +00006625{
6626
6627 PyUnicodeObject *u;
6628
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00006629 u = (PyUnicodeObject*) PyUnicode_FromUnicode(NULL, self->length);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006630 if (u == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006631 return NULL;
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00006632
6633 Py_UNICODE_COPY(u->str, self->str, self->length);
6634
Tim Peters7a29bd52001-09-12 03:03:31 +00006635 if (!fixfct(u) && PyUnicode_CheckExact(self)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006636 /* fixfct should return TRUE if it modified the buffer. If
6637 FALSE, return a reference to the original buffer instead
6638 (to save space, not time) */
6639 Py_INCREF(self);
6640 Py_DECREF(u);
6641 return (PyObject*) self;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006642 }
6643 return (PyObject*) u;
6644}
6645
Tim Petersced69f82003-09-16 20:30:58 +00006646static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006647int fixupper(PyUnicodeObject *self)
6648{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006649 Py_ssize_t len = self->length;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006650 Py_UNICODE *s = self->str;
6651 int status = 0;
Tim Petersced69f82003-09-16 20:30:58 +00006652
Guido van Rossumd57fd912000-03-10 22:53:23 +00006653 while (len-- > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006654 register Py_UNICODE ch;
Tim Petersced69f82003-09-16 20:30:58 +00006655
Benjamin Peterson29060642009-01-31 22:14:21 +00006656 ch = Py_UNICODE_TOUPPER(*s);
6657 if (ch != *s) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00006658 status = 1;
Benjamin Peterson29060642009-01-31 22:14:21 +00006659 *s = ch;
6660 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00006661 s++;
6662 }
6663
6664 return status;
6665}
6666
Tim Petersced69f82003-09-16 20:30:58 +00006667static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006668int fixlower(PyUnicodeObject *self)
6669{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006670 Py_ssize_t len = self->length;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006671 Py_UNICODE *s = self->str;
6672 int status = 0;
Tim Petersced69f82003-09-16 20:30:58 +00006673
Guido van Rossumd57fd912000-03-10 22:53:23 +00006674 while (len-- > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006675 register Py_UNICODE ch;
Tim Petersced69f82003-09-16 20:30:58 +00006676
Benjamin Peterson29060642009-01-31 22:14:21 +00006677 ch = Py_UNICODE_TOLOWER(*s);
6678 if (ch != *s) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00006679 status = 1;
Benjamin Peterson29060642009-01-31 22:14:21 +00006680 *s = ch;
6681 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00006682 s++;
6683 }
6684
6685 return status;
6686}
6687
Tim Petersced69f82003-09-16 20:30:58 +00006688static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006689int fixswapcase(PyUnicodeObject *self)
6690{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006691 Py_ssize_t len = self->length;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006692 Py_UNICODE *s = self->str;
6693 int status = 0;
Tim Petersced69f82003-09-16 20:30:58 +00006694
Guido van Rossumd57fd912000-03-10 22:53:23 +00006695 while (len-- > 0) {
6696 if (Py_UNICODE_ISUPPER(*s)) {
6697 *s = Py_UNICODE_TOLOWER(*s);
6698 status = 1;
6699 } else if (Py_UNICODE_ISLOWER(*s)) {
6700 *s = Py_UNICODE_TOUPPER(*s);
6701 status = 1;
6702 }
6703 s++;
6704 }
6705
6706 return status;
6707}
6708
Tim Petersced69f82003-09-16 20:30:58 +00006709static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006710int fixcapitalize(PyUnicodeObject *self)
6711{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006712 Py_ssize_t len = self->length;
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00006713 Py_UNICODE *s = self->str;
6714 int status = 0;
Tim Petersced69f82003-09-16 20:30:58 +00006715
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00006716 if (len == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00006717 return 0;
Ezio Melottiee8d9982011-08-15 09:09:57 +03006718 if (!Py_UNICODE_ISUPPER(*s)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006719 *s = Py_UNICODE_TOUPPER(*s);
6720 status = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006721 }
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00006722 s++;
6723 while (--len > 0) {
Ezio Melottiee8d9982011-08-15 09:09:57 +03006724 if (!Py_UNICODE_ISLOWER(*s)) {
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00006725 *s = Py_UNICODE_TOLOWER(*s);
6726 status = 1;
6727 }
6728 s++;
6729 }
6730 return status;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006731}
6732
6733static
6734int fixtitle(PyUnicodeObject *self)
6735{
6736 register Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
6737 register Py_UNICODE *e;
6738 int previous_is_cased;
6739
6740 /* Shortcut for single character strings */
6741 if (PyUnicode_GET_SIZE(self) == 1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006742 Py_UNICODE ch = Py_UNICODE_TOTITLE(*p);
6743 if (*p != ch) {
6744 *p = ch;
6745 return 1;
6746 }
6747 else
6748 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006749 }
Tim Petersced69f82003-09-16 20:30:58 +00006750
Guido van Rossumd57fd912000-03-10 22:53:23 +00006751 e = p + PyUnicode_GET_SIZE(self);
6752 previous_is_cased = 0;
6753 for (; p < e; p++) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006754 register const Py_UNICODE ch = *p;
Tim Petersced69f82003-09-16 20:30:58 +00006755
Benjamin Peterson29060642009-01-31 22:14:21 +00006756 if (previous_is_cased)
6757 *p = Py_UNICODE_TOLOWER(ch);
6758 else
6759 *p = Py_UNICODE_TOTITLE(ch);
Tim Petersced69f82003-09-16 20:30:58 +00006760
Benjamin Peterson29060642009-01-31 22:14:21 +00006761 if (Py_UNICODE_ISLOWER(ch) ||
6762 Py_UNICODE_ISUPPER(ch) ||
6763 Py_UNICODE_ISTITLE(ch))
6764 previous_is_cased = 1;
6765 else
6766 previous_is_cased = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006767 }
6768 return 1;
6769}
6770
Tim Peters8ce9f162004-08-27 01:49:32 +00006771PyObject *
6772PyUnicode_Join(PyObject *separator, PyObject *seq)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006773{
Skip Montanaro6543b452004-09-16 03:28:13 +00006774 const Py_UNICODE blank = ' ';
6775 const Py_UNICODE *sep = &blank;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006776 Py_ssize_t seplen = 1;
Tim Peters05eba1f2004-08-27 21:32:02 +00006777 PyUnicodeObject *res = NULL; /* the result */
Tim Peters05eba1f2004-08-27 21:32:02 +00006778 Py_UNICODE *res_p; /* pointer to free byte in res's string area */
6779 PyObject *fseq; /* PySequence_Fast(seq) */
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006780 Py_ssize_t seqlen; /* len(fseq) -- number of items in sequence */
6781 PyObject **items;
Tim Peters8ce9f162004-08-27 01:49:32 +00006782 PyObject *item;
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006783 Py_ssize_t sz, i;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006784
Tim Peters05eba1f2004-08-27 21:32:02 +00006785 fseq = PySequence_Fast(seq, "");
6786 if (fseq == NULL) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00006787 return NULL;
Tim Peters8ce9f162004-08-27 01:49:32 +00006788 }
6789
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006790 /* NOTE: the following code can't call back into Python code,
6791 * so we are sure that fseq won't be mutated.
Tim Peters91879ab2004-08-27 22:35:44 +00006792 */
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006793
Tim Peters05eba1f2004-08-27 21:32:02 +00006794 seqlen = PySequence_Fast_GET_SIZE(fseq);
6795 /* If empty sequence, return u"". */
6796 if (seqlen == 0) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00006797 res = _PyUnicode_New(0); /* empty sequence; return u"" */
6798 goto Done;
Tim Peters05eba1f2004-08-27 21:32:02 +00006799 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006800 items = PySequence_Fast_ITEMS(fseq);
Tim Peters05eba1f2004-08-27 21:32:02 +00006801 /* If singleton sequence with an exact Unicode, return that. */
6802 if (seqlen == 1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006803 item = items[0];
6804 if (PyUnicode_CheckExact(item)) {
6805 Py_INCREF(item);
6806 res = (PyUnicodeObject *)item;
6807 goto Done;
6808 }
Tim Peters8ce9f162004-08-27 01:49:32 +00006809 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006810 else {
6811 /* Set up sep and seplen */
6812 if (separator == NULL) {
6813 sep = &blank;
6814 seplen = 1;
Tim Peters05eba1f2004-08-27 21:32:02 +00006815 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006816 else {
6817 if (!PyUnicode_Check(separator)) {
6818 PyErr_Format(PyExc_TypeError,
6819 "separator: expected str instance,"
6820 " %.80s found",
6821 Py_TYPE(separator)->tp_name);
6822 goto onError;
6823 }
6824 sep = PyUnicode_AS_UNICODE(separator);
6825 seplen = PyUnicode_GET_SIZE(separator);
Tim Peters05eba1f2004-08-27 21:32:02 +00006826 }
6827 }
6828
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006829 /* There are at least two things to join, or else we have a subclass
6830 * of str in the sequence.
6831 * Do a pre-pass to figure out the total amount of space we'll
6832 * need (sz), and see whether all argument are strings.
6833 */
6834 sz = 0;
6835 for (i = 0; i < seqlen; i++) {
6836 const Py_ssize_t old_sz = sz;
6837 item = items[i];
Benjamin Peterson29060642009-01-31 22:14:21 +00006838 if (!PyUnicode_Check(item)) {
6839 PyErr_Format(PyExc_TypeError,
6840 "sequence item %zd: expected str instance,"
6841 " %.80s found",
6842 i, Py_TYPE(item)->tp_name);
6843 goto onError;
6844 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006845 sz += PyUnicode_GET_SIZE(item);
6846 if (i != 0)
6847 sz += seplen;
6848 if (sz < old_sz || sz > PY_SSIZE_T_MAX) {
6849 PyErr_SetString(PyExc_OverflowError,
Benjamin Peterson29060642009-01-31 22:14:21 +00006850 "join() result is too long for a Python string");
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006851 goto onError;
6852 }
6853 }
Tim Petersced69f82003-09-16 20:30:58 +00006854
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006855 res = _PyUnicode_New(sz);
6856 if (res == NULL)
6857 goto onError;
Tim Peters91879ab2004-08-27 22:35:44 +00006858
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006859 /* Catenate everything. */
6860 res_p = PyUnicode_AS_UNICODE(res);
6861 for (i = 0; i < seqlen; ++i) {
6862 Py_ssize_t itemlen;
6863 item = items[i];
6864 itemlen = PyUnicode_GET_SIZE(item);
Benjamin Peterson29060642009-01-31 22:14:21 +00006865 /* Copy item, and maybe the separator. */
6866 if (i) {
6867 Py_UNICODE_COPY(res_p, sep, seplen);
6868 res_p += seplen;
6869 }
6870 Py_UNICODE_COPY(res_p, PyUnicode_AS_UNICODE(item), itemlen);
6871 res_p += itemlen;
Tim Peters05eba1f2004-08-27 21:32:02 +00006872 }
Tim Peters8ce9f162004-08-27 01:49:32 +00006873
Benjamin Peterson29060642009-01-31 22:14:21 +00006874 Done:
Tim Peters05eba1f2004-08-27 21:32:02 +00006875 Py_DECREF(fseq);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006876 return (PyObject *)res;
6877
Benjamin Peterson29060642009-01-31 22:14:21 +00006878 onError:
Tim Peters05eba1f2004-08-27 21:32:02 +00006879 Py_DECREF(fseq);
Tim Peters8ce9f162004-08-27 01:49:32 +00006880 Py_XDECREF(res);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006881 return NULL;
6882}
6883
Tim Petersced69f82003-09-16 20:30:58 +00006884static
6885PyUnicodeObject *pad(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006886 Py_ssize_t left,
6887 Py_ssize_t right,
6888 Py_UNICODE fill)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006889{
6890 PyUnicodeObject *u;
6891
6892 if (left < 0)
6893 left = 0;
6894 if (right < 0)
6895 right = 0;
6896
Tim Peters7a29bd52001-09-12 03:03:31 +00006897 if (left == 0 && right == 0 && PyUnicode_CheckExact(self)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00006898 Py_INCREF(self);
6899 return self;
6900 }
6901
Neal Norwitz3ce5d922008-08-24 07:08:55 +00006902 if (left > PY_SSIZE_T_MAX - self->length ||
6903 right > PY_SSIZE_T_MAX - (left + self->length)) {
6904 PyErr_SetString(PyExc_OverflowError, "padded string is too long");
6905 return NULL;
6906 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00006907 u = _PyUnicode_New(left + self->length + right);
6908 if (u) {
6909 if (left)
6910 Py_UNICODE_FILL(u->str, fill, left);
6911 Py_UNICODE_COPY(u->str + left, self->str, self->length);
6912 if (right)
6913 Py_UNICODE_FILL(u->str + left + self->length, fill, right);
6914 }
6915
6916 return u;
6917}
6918
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006919PyObject *PyUnicode_Splitlines(PyObject *string, int keepends)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006920{
Guido van Rossumd57fd912000-03-10 22:53:23 +00006921 PyObject *list;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006922
6923 string = PyUnicode_FromObject(string);
6924 if (string == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006925 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006926
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006927 list = stringlib_splitlines(
6928 (PyObject*) string, PyUnicode_AS_UNICODE(string),
6929 PyUnicode_GET_SIZE(string), keepends);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006930
6931 Py_DECREF(string);
6932 return list;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006933}
6934
Tim Petersced69f82003-09-16 20:30:58 +00006935static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006936PyObject *split(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006937 PyUnicodeObject *substring,
6938 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006939{
Guido van Rossumd57fd912000-03-10 22:53:23 +00006940 if (maxcount < 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006941 maxcount = PY_SSIZE_T_MAX;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006942
Guido van Rossumd57fd912000-03-10 22:53:23 +00006943 if (substring == NULL)
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006944 return stringlib_split_whitespace(
6945 (PyObject*) self, self->str, self->length, maxcount
6946 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00006947
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006948 return stringlib_split(
6949 (PyObject*) self, self->str, self->length,
6950 substring->str, substring->length,
6951 maxcount
6952 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00006953}
6954
Tim Petersced69f82003-09-16 20:30:58 +00006955static
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006956PyObject *rsplit(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006957 PyUnicodeObject *substring,
6958 Py_ssize_t maxcount)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006959{
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006960 if (maxcount < 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006961 maxcount = PY_SSIZE_T_MAX;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006962
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006963 if (substring == NULL)
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006964 return stringlib_rsplit_whitespace(
6965 (PyObject*) self, self->str, self->length, maxcount
6966 );
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006967
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006968 return stringlib_rsplit(
6969 (PyObject*) self, self->str, self->length,
6970 substring->str, substring->length,
6971 maxcount
6972 );
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006973}
6974
6975static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006976PyObject *replace(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006977 PyUnicodeObject *str1,
6978 PyUnicodeObject *str2,
6979 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006980{
6981 PyUnicodeObject *u;
6982
6983 if (maxcount < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00006984 maxcount = PY_SSIZE_T_MAX;
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006985 else if (maxcount == 0 || self->length == 0)
6986 goto nothing;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006987
Thomas Wouters477c8d52006-05-27 19:21:47 +00006988 if (str1->length == str2->length) {
Antoine Pitroucbfdee32010-01-13 08:58:08 +00006989 Py_ssize_t i;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006990 /* same length */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006991 if (str1->length == 0)
6992 goto nothing;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006993 if (str1->length == 1) {
6994 /* replace characters */
6995 Py_UNICODE u1, u2;
6996 if (!findchar(self->str, self->length, str1->str[0]))
6997 goto nothing;
6998 u = (PyUnicodeObject*) PyUnicode_FromUnicode(NULL, self->length);
6999 if (!u)
7000 return NULL;
7001 Py_UNICODE_COPY(u->str, self->str, self->length);
7002 u1 = str1->str[0];
7003 u2 = str2->str[0];
7004 for (i = 0; i < u->length; i++)
7005 if (u->str[i] == u1) {
7006 if (--maxcount < 0)
7007 break;
7008 u->str[i] = u2;
7009 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007010 } else {
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007011 i = stringlib_find(
7012 self->str, self->length, str1->str, str1->length, 0
Guido van Rossumd57fd912000-03-10 22:53:23 +00007013 );
Thomas Wouters477c8d52006-05-27 19:21:47 +00007014 if (i < 0)
7015 goto nothing;
7016 u = (PyUnicodeObject*) PyUnicode_FromUnicode(NULL, self->length);
7017 if (!u)
7018 return NULL;
7019 Py_UNICODE_COPY(u->str, self->str, self->length);
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007020
7021 /* change everything in-place, starting with this one */
7022 Py_UNICODE_COPY(u->str+i, str2->str, str2->length);
7023 i += str1->length;
7024
7025 while ( --maxcount > 0) {
7026 i = stringlib_find(self->str+i, self->length-i,
7027 str1->str, str1->length,
7028 i);
7029 if (i == -1)
7030 break;
7031 Py_UNICODE_COPY(u->str+i, str2->str, str2->length);
7032 i += str1->length;
7033 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007034 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007035 } else {
Thomas Wouters477c8d52006-05-27 19:21:47 +00007036
Victor Stinnerab1d16b2011-11-22 01:45:37 +01007037 Py_ssize_t n, i, j;
Thomas Wouters477c8d52006-05-27 19:21:47 +00007038 Py_ssize_t product, new_size, delta;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007039 Py_UNICODE *p;
7040
7041 /* replace strings */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007042 n = stringlib_count(self->str, self->length, str1->str, str1->length,
7043 maxcount);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007044 if (n == 0)
7045 goto nothing;
7046 /* new_size = self->length + n * (str2->length - str1->length)); */
7047 delta = (str2->length - str1->length);
7048 if (delta == 0) {
7049 new_size = self->length;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007050 } else {
Thomas Wouters477c8d52006-05-27 19:21:47 +00007051 product = n * (str2->length - str1->length);
7052 if ((product / (str2->length - str1->length)) != n) {
7053 PyErr_SetString(PyExc_OverflowError,
7054 "replace string is too long");
7055 return NULL;
7056 }
7057 new_size = self->length + product;
7058 if (new_size < 0) {
7059 PyErr_SetString(PyExc_OverflowError,
7060 "replace string is too long");
7061 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007062 }
7063 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00007064 u = _PyUnicode_New(new_size);
7065 if (!u)
7066 return NULL;
7067 i = 0;
7068 p = u->str;
Thomas Wouters477c8d52006-05-27 19:21:47 +00007069 if (str1->length > 0) {
7070 while (n-- > 0) {
7071 /* look for next match */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007072 j = stringlib_find(self->str+i, self->length-i,
7073 str1->str, str1->length,
7074 i);
7075 if (j == -1)
7076 break;
7077 else if (j > i) {
Thomas Wouters477c8d52006-05-27 19:21:47 +00007078 /* copy unchanged part [i:j] */
7079 Py_UNICODE_COPY(p, self->str+i, j-i);
7080 p += j - i;
7081 }
7082 /* copy substitution string */
7083 if (str2->length > 0) {
7084 Py_UNICODE_COPY(p, str2->str, str2->length);
7085 p += str2->length;
7086 }
7087 i = j + str1->length;
7088 }
7089 if (i < self->length)
7090 /* copy tail [i:] */
7091 Py_UNICODE_COPY(p, self->str+i, self->length-i);
7092 } else {
7093 /* interleave */
7094 while (n > 0) {
7095 Py_UNICODE_COPY(p, str2->str, str2->length);
7096 p += str2->length;
7097 if (--n <= 0)
7098 break;
7099 *p++ = self->str[i++];
7100 }
7101 Py_UNICODE_COPY(p, self->str+i, self->length-i);
7102 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007103 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007104 return (PyObject *) u;
Thomas Wouters477c8d52006-05-27 19:21:47 +00007105
Benjamin Peterson29060642009-01-31 22:14:21 +00007106 nothing:
Thomas Wouters477c8d52006-05-27 19:21:47 +00007107 /* nothing to replace; return original string (when possible) */
7108 if (PyUnicode_CheckExact(self)) {
7109 Py_INCREF(self);
7110 return (PyObject *) self;
7111 }
7112 return PyUnicode_FromUnicode(self->str, self->length);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007113}
7114
7115/* --- Unicode Object Methods --------------------------------------------- */
7116
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007117PyDoc_STRVAR(title__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007118 "S.title() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007119\n\
7120Return a titlecased version of S, i.e. words start with title case\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007121characters, all remaining cased characters have lower case.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007122
7123static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007124unicode_title(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007125{
Guido van Rossumd57fd912000-03-10 22:53:23 +00007126 return fixup(self, fixtitle);
7127}
7128
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007129PyDoc_STRVAR(capitalize__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007130 "S.capitalize() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007131\n\
7132Return a capitalized version of S, i.e. make the first character\n\
Senthil Kumarane51ee8a2010-07-05 12:00:56 +00007133have upper case and the rest lower case.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007134
7135static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007136unicode_capitalize(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007137{
Guido van Rossumd57fd912000-03-10 22:53:23 +00007138 return fixup(self, fixcapitalize);
7139}
7140
7141#if 0
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007142PyDoc_STRVAR(capwords__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007143 "S.capwords() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007144\n\
7145Apply .capitalize() to all words in S and return the result with\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007146normalized whitespace (all whitespace strings are replaced by ' ').");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007147
7148static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007149unicode_capwords(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007150{
7151 PyObject *list;
7152 PyObject *item;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007153 Py_ssize_t i;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007154
Guido van Rossumd57fd912000-03-10 22:53:23 +00007155 /* Split into words */
7156 list = split(self, NULL, -1);
7157 if (!list)
7158 return NULL;
7159
7160 /* Capitalize each word */
7161 for (i = 0; i < PyList_GET_SIZE(list); i++) {
7162 item = fixup((PyUnicodeObject *)PyList_GET_ITEM(list, i),
Benjamin Peterson29060642009-01-31 22:14:21 +00007163 fixcapitalize);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007164 if (item == NULL)
7165 goto onError;
7166 Py_DECREF(PyList_GET_ITEM(list, i));
7167 PyList_SET_ITEM(list, i, item);
7168 }
7169
7170 /* Join the words to form a new string */
7171 item = PyUnicode_Join(NULL, list);
7172
Benjamin Peterson29060642009-01-31 22:14:21 +00007173 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00007174 Py_DECREF(list);
7175 return (PyObject *)item;
7176}
7177#endif
7178
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007179/* Argument converter. Coerces to a single unicode character */
7180
7181static int
7182convert_uc(PyObject *obj, void *addr)
7183{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007184 Py_UNICODE *fillcharloc = (Py_UNICODE *)addr;
7185 PyObject *uniobj;
7186 Py_UNICODE *unistr;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007187
Benjamin Peterson14339b62009-01-31 16:36:08 +00007188 uniobj = PyUnicode_FromObject(obj);
7189 if (uniobj == NULL) {
7190 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00007191 "The fill character cannot be converted to Unicode");
Benjamin Peterson14339b62009-01-31 16:36:08 +00007192 return 0;
7193 }
7194 if (PyUnicode_GET_SIZE(uniobj) != 1) {
7195 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00007196 "The fill character must be exactly one character long");
Benjamin Peterson14339b62009-01-31 16:36:08 +00007197 Py_DECREF(uniobj);
7198 return 0;
7199 }
7200 unistr = PyUnicode_AS_UNICODE(uniobj);
7201 *fillcharloc = unistr[0];
7202 Py_DECREF(uniobj);
7203 return 1;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007204}
7205
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007206PyDoc_STRVAR(center__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007207 "S.center(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007208\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00007209Return S centered in a string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007210done using the specified fill character (default is a space)");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007211
7212static PyObject *
7213unicode_center(PyUnicodeObject *self, PyObject *args)
7214{
Martin v. Löwis18e16552006-02-15 17:27:45 +00007215 Py_ssize_t marg, left;
7216 Py_ssize_t width;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007217 Py_UNICODE fillchar = ' ';
Guido van Rossumd57fd912000-03-10 22:53:23 +00007218
Thomas Woutersde017742006-02-16 19:34:37 +00007219 if (!PyArg_ParseTuple(args, "n|O&:center", &width, convert_uc, &fillchar))
Guido van Rossumd57fd912000-03-10 22:53:23 +00007220 return NULL;
7221
Tim Peters7a29bd52001-09-12 03:03:31 +00007222 if (self->length >= width && PyUnicode_CheckExact(self)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00007223 Py_INCREF(self);
7224 return (PyObject*) self;
7225 }
7226
7227 marg = width - self->length;
7228 left = marg / 2 + (marg & width & 1);
7229
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007230 return (PyObject*) pad(self, left, marg - left, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007231}
7232
Marc-André Lemburge5034372000-08-08 08:04:29 +00007233#if 0
7234
7235/* This code should go into some future Unicode collation support
7236 module. The basic comparison should compare ordinals on a naive
Georg Brandlc6c31782009-06-08 13:41:29 +00007237 basis (this is what Java does and thus Jython too). */
Marc-André Lemburge5034372000-08-08 08:04:29 +00007238
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007239/* speedy UTF-16 code point order comparison */
7240/* gleaned from: */
7241/* http://www-4.ibm.com/software/developer/library/utf16.html?dwzone=unicode */
7242
Marc-André Lemburge12896e2000-07-07 17:51:08 +00007243static short utf16Fixup[32] =
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007244{
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007245 0, 0, 0, 0, 0, 0, 0, 0,
Tim Petersced69f82003-09-16 20:30:58 +00007246 0, 0, 0, 0, 0, 0, 0, 0,
7247 0, 0, 0, 0, 0, 0, 0, 0,
Marc-André Lemburge12896e2000-07-07 17:51:08 +00007248 0, 0, 0, 0x2000, -0x800, -0x800, -0x800, -0x800
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007249};
7250
Guido van Rossumd57fd912000-03-10 22:53:23 +00007251static int
7252unicode_compare(PyUnicodeObject *str1, PyUnicodeObject *str2)
7253{
Martin v. Löwis18e16552006-02-15 17:27:45 +00007254 Py_ssize_t len1, len2;
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007255
Guido van Rossumd57fd912000-03-10 22:53:23 +00007256 Py_UNICODE *s1 = str1->str;
7257 Py_UNICODE *s2 = str2->str;
7258
7259 len1 = str1->length;
7260 len2 = str2->length;
Tim Petersced69f82003-09-16 20:30:58 +00007261
Guido van Rossumd57fd912000-03-10 22:53:23 +00007262 while (len1 > 0 && len2 > 0) {
Tim Petersced69f82003-09-16 20:30:58 +00007263 Py_UNICODE c1, c2;
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007264
7265 c1 = *s1++;
7266 c2 = *s2++;
Fredrik Lundh45714e92001-06-26 16:39:36 +00007267
Benjamin Peterson29060642009-01-31 22:14:21 +00007268 if (c1 > (1<<11) * 26)
7269 c1 += utf16Fixup[c1>>11];
7270 if (c2 > (1<<11) * 26)
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007271 c2 += utf16Fixup[c2>>11];
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007272 /* now c1 and c2 are in UTF-32-compatible order */
Fredrik Lundh45714e92001-06-26 16:39:36 +00007273
7274 if (c1 != c2)
7275 return (c1 < c2) ? -1 : 1;
Tim Petersced69f82003-09-16 20:30:58 +00007276
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007277 len1--; len2--;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007278 }
7279
7280 return (len1 < len2) ? -1 : (len1 != len2);
7281}
7282
Marc-André Lemburge5034372000-08-08 08:04:29 +00007283#else
7284
7285static int
7286unicode_compare(PyUnicodeObject *str1, PyUnicodeObject *str2)
7287{
Martin v. Löwis18e16552006-02-15 17:27:45 +00007288 register Py_ssize_t len1, len2;
Marc-André Lemburge5034372000-08-08 08:04:29 +00007289
7290 Py_UNICODE *s1 = str1->str;
7291 Py_UNICODE *s2 = str2->str;
7292
7293 len1 = str1->length;
7294 len2 = str2->length;
Tim Petersced69f82003-09-16 20:30:58 +00007295
Marc-André Lemburge5034372000-08-08 08:04:29 +00007296 while (len1 > 0 && len2 > 0) {
Tim Petersced69f82003-09-16 20:30:58 +00007297 Py_UNICODE c1, c2;
Marc-André Lemburge5034372000-08-08 08:04:29 +00007298
Fredrik Lundh45714e92001-06-26 16:39:36 +00007299 c1 = *s1++;
7300 c2 = *s2++;
7301
7302 if (c1 != c2)
7303 return (c1 < c2) ? -1 : 1;
7304
Marc-André Lemburge5034372000-08-08 08:04:29 +00007305 len1--; len2--;
7306 }
7307
7308 return (len1 < len2) ? -1 : (len1 != len2);
7309}
7310
7311#endif
7312
Guido van Rossumd57fd912000-03-10 22:53:23 +00007313int PyUnicode_Compare(PyObject *left,
Benjamin Peterson29060642009-01-31 22:14:21 +00007314 PyObject *right)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007315{
Guido van Rossum09dc34f2007-05-04 04:17:33 +00007316 if (PyUnicode_Check(left) && PyUnicode_Check(right))
7317 return unicode_compare((PyUnicodeObject *)left,
7318 (PyUnicodeObject *)right);
Guido van Rossum09dc34f2007-05-04 04:17:33 +00007319 PyErr_Format(PyExc_TypeError,
7320 "Can't compare %.100s and %.100s",
7321 left->ob_type->tp_name,
7322 right->ob_type->tp_name);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007323 return -1;
7324}
7325
Martin v. Löwis5b222132007-06-10 09:51:05 +00007326int
7327PyUnicode_CompareWithASCIIString(PyObject* uni, const char* str)
7328{
7329 int i;
7330 Py_UNICODE *id;
7331 assert(PyUnicode_Check(uni));
7332 id = PyUnicode_AS_UNICODE(uni);
7333 /* Compare Unicode string and source character set string */
7334 for (i = 0; id[i] && str[i]; i++)
Benjamin Peterson29060642009-01-31 22:14:21 +00007335 if (id[i] != str[i])
7336 return ((int)id[i] < (int)str[i]) ? -1 : 1;
Benjamin Peterson8667a9b2010-01-09 21:45:28 +00007337 /* This check keeps Python strings that end in '\0' from comparing equal
7338 to C strings identical up to that point. */
Benjamin Petersona23831f2010-04-25 21:54:00 +00007339 if (PyUnicode_GET_SIZE(uni) != i || id[i])
Benjamin Peterson29060642009-01-31 22:14:21 +00007340 return 1; /* uni is longer */
Martin v. Löwis5b222132007-06-10 09:51:05 +00007341 if (str[i])
Benjamin Peterson29060642009-01-31 22:14:21 +00007342 return -1; /* str is longer */
Martin v. Löwis5b222132007-06-10 09:51:05 +00007343 return 0;
7344}
7345
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007346
Benjamin Peterson29060642009-01-31 22:14:21 +00007347#define TEST_COND(cond) \
Benjamin Peterson14339b62009-01-31 16:36:08 +00007348 ((cond) ? Py_True : Py_False)
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007349
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00007350PyObject *PyUnicode_RichCompare(PyObject *left,
7351 PyObject *right,
7352 int op)
7353{
7354 int result;
Benjamin Peterson14339b62009-01-31 16:36:08 +00007355
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007356 if (PyUnicode_Check(left) && PyUnicode_Check(right)) {
7357 PyObject *v;
7358 if (((PyUnicodeObject *) left)->length !=
7359 ((PyUnicodeObject *) right)->length) {
7360 if (op == Py_EQ) {
7361 Py_INCREF(Py_False);
7362 return Py_False;
7363 }
7364 if (op == Py_NE) {
7365 Py_INCREF(Py_True);
7366 return Py_True;
7367 }
7368 }
7369 if (left == right)
7370 result = 0;
7371 else
7372 result = unicode_compare((PyUnicodeObject *)left,
7373 (PyUnicodeObject *)right);
Benjamin Peterson14339b62009-01-31 16:36:08 +00007374
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007375 /* Convert the return value to a Boolean */
7376 switch (op) {
7377 case Py_EQ:
7378 v = TEST_COND(result == 0);
7379 break;
7380 case Py_NE:
7381 v = TEST_COND(result != 0);
7382 break;
7383 case Py_LE:
7384 v = TEST_COND(result <= 0);
7385 break;
7386 case Py_GE:
7387 v = TEST_COND(result >= 0);
7388 break;
7389 case Py_LT:
7390 v = TEST_COND(result == -1);
7391 break;
7392 case Py_GT:
7393 v = TEST_COND(result == 1);
7394 break;
7395 default:
7396 PyErr_BadArgument();
7397 return NULL;
7398 }
7399 Py_INCREF(v);
7400 return v;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00007401 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00007402
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007403 Py_INCREF(Py_NotImplemented);
7404 return Py_NotImplemented;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00007405}
7406
Guido van Rossum403d68b2000-03-13 15:55:09 +00007407int PyUnicode_Contains(PyObject *container,
Benjamin Peterson29060642009-01-31 22:14:21 +00007408 PyObject *element)
Guido van Rossum403d68b2000-03-13 15:55:09 +00007409{
Thomas Wouters477c8d52006-05-27 19:21:47 +00007410 PyObject *str, *sub;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007411 int result;
Guido van Rossum403d68b2000-03-13 15:55:09 +00007412
7413 /* Coerce the two arguments */
Thomas Wouters477c8d52006-05-27 19:21:47 +00007414 sub = PyUnicode_FromObject(element);
7415 if (!sub) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007416 PyErr_Format(PyExc_TypeError,
7417 "'in <string>' requires string as left operand, not %s",
7418 element->ob_type->tp_name);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007419 return -1;
Guido van Rossum403d68b2000-03-13 15:55:09 +00007420 }
7421
Thomas Wouters477c8d52006-05-27 19:21:47 +00007422 str = PyUnicode_FromObject(container);
7423 if (!str) {
7424 Py_DECREF(sub);
7425 return -1;
7426 }
7427
7428 result = stringlib_contains_obj(str, sub);
7429
7430 Py_DECREF(str);
7431 Py_DECREF(sub);
7432
Guido van Rossum403d68b2000-03-13 15:55:09 +00007433 return result;
Guido van Rossum403d68b2000-03-13 15:55:09 +00007434}
7435
Guido van Rossumd57fd912000-03-10 22:53:23 +00007436/* Concat to string or Unicode object giving a new Unicode object. */
7437
7438PyObject *PyUnicode_Concat(PyObject *left,
Benjamin Peterson29060642009-01-31 22:14:21 +00007439 PyObject *right)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007440{
7441 PyUnicodeObject *u = NULL, *v = NULL, *w;
7442
7443 /* Coerce the two arguments */
7444 u = (PyUnicodeObject *)PyUnicode_FromObject(left);
7445 if (u == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007446 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007447 v = (PyUnicodeObject *)PyUnicode_FromObject(right);
7448 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007449 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007450
7451 /* Shortcuts */
7452 if (v == unicode_empty) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007453 Py_DECREF(v);
7454 return (PyObject *)u;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007455 }
7456 if (u == unicode_empty) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007457 Py_DECREF(u);
7458 return (PyObject *)v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007459 }
7460
7461 /* Concat the two Unicode strings */
7462 w = _PyUnicode_New(u->length + v->length);
7463 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007464 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007465 Py_UNICODE_COPY(w->str, u->str, u->length);
7466 Py_UNICODE_COPY(w->str + u->length, v->str, v->length);
7467
7468 Py_DECREF(u);
7469 Py_DECREF(v);
7470 return (PyObject *)w;
7471
Benjamin Peterson29060642009-01-31 22:14:21 +00007472 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00007473 Py_XDECREF(u);
7474 Py_XDECREF(v);
7475 return NULL;
7476}
7477
Walter Dörwald1ab83302007-05-18 17:15:44 +00007478void
7479PyUnicode_Append(PyObject **pleft, PyObject *right)
7480{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007481 PyObject *new;
7482 if (*pleft == NULL)
7483 return;
7484 if (right == NULL || !PyUnicode_Check(*pleft)) {
7485 Py_DECREF(*pleft);
7486 *pleft = NULL;
7487 return;
7488 }
7489 new = PyUnicode_Concat(*pleft, right);
7490 Py_DECREF(*pleft);
7491 *pleft = new;
Walter Dörwald1ab83302007-05-18 17:15:44 +00007492}
7493
7494void
7495PyUnicode_AppendAndDel(PyObject **pleft, PyObject *right)
7496{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007497 PyUnicode_Append(pleft, right);
7498 Py_XDECREF(right);
Walter Dörwald1ab83302007-05-18 17:15:44 +00007499}
7500
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007501PyDoc_STRVAR(count__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007502 "S.count(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007503\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00007504Return the number of non-overlapping occurrences of substring sub in\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00007505string S[start:end]. Optional arguments start and end are\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007506interpreted as in slice notation.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007507
7508static PyObject *
7509unicode_count(PyUnicodeObject *self, PyObject *args)
7510{
7511 PyUnicodeObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007512 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00007513 Py_ssize_t end = PY_SSIZE_T_MAX;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007514 PyObject *result;
7515
Jesus Ceaac451502011-04-20 17:09:23 +02007516 if (!stringlib_parse_args_finds_unicode("count", args, &substring,
7517 &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +00007518 return NULL;
Tim Petersced69f82003-09-16 20:30:58 +00007519
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007520 ADJUST_INDICES(start, end, self->length);
Christian Heimes217cfd12007-12-02 14:31:20 +00007521 result = PyLong_FromSsize_t(
Thomas Wouters477c8d52006-05-27 19:21:47 +00007522 stringlib_count(self->str + start, end - start,
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007523 substring->str, substring->length,
7524 PY_SSIZE_T_MAX)
Thomas Wouters477c8d52006-05-27 19:21:47 +00007525 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00007526
7527 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007528
Guido van Rossumd57fd912000-03-10 22:53:23 +00007529 return result;
7530}
7531
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007532PyDoc_STRVAR(encode__doc__,
Victor Stinnerc911bbf2010-11-07 19:04:46 +00007533 "S.encode(encoding='utf-8', errors='strict') -> bytes\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007534\n\
Victor Stinnere14e2122010-11-07 18:41:46 +00007535Encode S using the codec registered for encoding. Default encoding\n\
7536is 'utf-8'. errors may be given to set a different error\n\
Fred Drakee4315f52000-05-09 19:53:39 +00007537handling scheme. Default is 'strict' meaning that encoding errors raise\n\
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007538a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and\n\
7539'xmlcharrefreplace' as well as any other name registered with\n\
7540codecs.register_error that can handle UnicodeEncodeErrors.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007541
7542static PyObject *
Benjamin Peterson308d6372009-09-18 21:42:35 +00007543unicode_encode(PyUnicodeObject *self, PyObject *args, PyObject *kwargs)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007544{
Benjamin Peterson308d6372009-09-18 21:42:35 +00007545 static char *kwlist[] = {"encoding", "errors", 0};
Guido van Rossumd57fd912000-03-10 22:53:23 +00007546 char *encoding = NULL;
7547 char *errors = NULL;
Guido van Rossum35d94282007-08-27 18:20:11 +00007548
Benjamin Peterson308d6372009-09-18 21:42:35 +00007549 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:encode",
7550 kwlist, &encoding, &errors))
Guido van Rossumd57fd912000-03-10 22:53:23 +00007551 return NULL;
Georg Brandl3b9406b2010-12-03 07:54:09 +00007552 return PyUnicode_AsEncodedString((PyObject *)self, encoding, errors);
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00007553}
7554
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007555PyDoc_STRVAR(expandtabs__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007556 "S.expandtabs([tabsize]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007557\n\
7558Return a copy of S where all tab characters are expanded using spaces.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007559If tabsize is not given, a tab size of 8 characters is assumed.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007560
7561static PyObject*
7562unicode_expandtabs(PyUnicodeObject *self, PyObject *args)
7563{
7564 Py_UNICODE *e;
7565 Py_UNICODE *p;
7566 Py_UNICODE *q;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007567 Py_UNICODE *qe;
7568 Py_ssize_t i, j, incr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007569 PyUnicodeObject *u;
7570 int tabsize = 8;
7571
7572 if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize))
Benjamin Peterson29060642009-01-31 22:14:21 +00007573 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007574
Thomas Wouters7e474022000-07-16 12:04:32 +00007575 /* First pass: determine size of output string */
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007576 i = 0; /* chars up to and including most recent \n or \r */
7577 j = 0; /* chars since most recent \n or \r (use in tab calculations) */
7578 e = self->str + self->length; /* end of input */
Guido van Rossumd57fd912000-03-10 22:53:23 +00007579 for (p = self->str; p < e; p++)
7580 if (*p == '\t') {
Benjamin Peterson29060642009-01-31 22:14:21 +00007581 if (tabsize > 0) {
7582 incr = tabsize - (j % tabsize); /* cannot overflow */
7583 if (j > PY_SSIZE_T_MAX - incr)
7584 goto overflow1;
7585 j += incr;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007586 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007587 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007588 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007589 if (j > PY_SSIZE_T_MAX - 1)
7590 goto overflow1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007591 j++;
7592 if (*p == '\n' || *p == '\r') {
Benjamin Peterson29060642009-01-31 22:14:21 +00007593 if (i > PY_SSIZE_T_MAX - j)
7594 goto overflow1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007595 i += j;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007596 j = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007597 }
7598 }
7599
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007600 if (i > PY_SSIZE_T_MAX - j)
Benjamin Peterson29060642009-01-31 22:14:21 +00007601 goto overflow1;
Guido van Rossumcd16bf62007-06-13 18:07:49 +00007602
Guido van Rossumd57fd912000-03-10 22:53:23 +00007603 /* Second pass: create output string and fill it */
7604 u = _PyUnicode_New(i + j);
7605 if (!u)
7606 return NULL;
7607
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007608 j = 0; /* same as in first pass */
7609 q = u->str; /* next output char */
7610 qe = u->str + u->length; /* end of output */
Guido van Rossumd57fd912000-03-10 22:53:23 +00007611
7612 for (p = self->str; p < e; p++)
7613 if (*p == '\t') {
Benjamin Peterson29060642009-01-31 22:14:21 +00007614 if (tabsize > 0) {
7615 i = tabsize - (j % tabsize);
7616 j += i;
7617 while (i--) {
7618 if (q >= qe)
7619 goto overflow2;
7620 *q++ = ' ';
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007621 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007622 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00007623 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007624 else {
7625 if (q >= qe)
7626 goto overflow2;
7627 *q++ = *p;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007628 j++;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007629 if (*p == '\n' || *p == '\r')
7630 j = 0;
7631 }
7632
7633 return (PyObject*) u;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007634
7635 overflow2:
7636 Py_DECREF(u);
7637 overflow1:
7638 PyErr_SetString(PyExc_OverflowError, "new string is too long");
7639 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007640}
7641
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007642PyDoc_STRVAR(find__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007643 "S.find(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007644\n\
7645Return the lowest index in S where substring sub is found,\n\
Senthil Kumaran53516a82011-07-27 23:33:54 +08007646such that sub is contained within S[start:end]. Optional\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007647arguments start and end are interpreted as in slice notation.\n\
7648\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007649Return -1 on failure.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007650
7651static PyObject *
7652unicode_find(PyUnicodeObject *self, PyObject *args)
7653{
Jesus Ceaac451502011-04-20 17:09:23 +02007654 PyUnicodeObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +00007655 Py_ssize_t start;
7656 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +00007657 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007658
Jesus Ceaac451502011-04-20 17:09:23 +02007659 if (!stringlib_parse_args_finds_unicode("find", args, &substring,
7660 &start, &end))
Guido van Rossumd57fd912000-03-10 22:53:23 +00007661 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007662
Thomas Wouters477c8d52006-05-27 19:21:47 +00007663 result = stringlib_find_slice(
7664 PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self),
7665 PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring),
7666 start, end
7667 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00007668
7669 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007670
Christian Heimes217cfd12007-12-02 14:31:20 +00007671 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007672}
7673
7674static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00007675unicode_getitem(PyUnicodeObject *self, Py_ssize_t index)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007676{
7677 if (index < 0 || index >= self->length) {
7678 PyErr_SetString(PyExc_IndexError, "string index out of range");
7679 return NULL;
7680 }
7681
7682 return (PyObject*) PyUnicode_FromUnicode(&self->str[index], 1);
7683}
7684
Guido van Rossumc2504932007-09-18 19:42:40 +00007685/* Believe it or not, this produces the same value for ASCII strings
7686 as string_hash(). */
Benjamin Peterson8f67d082010-10-17 20:54:53 +00007687static Py_hash_t
Neil Schemenauerf8c37d12007-09-07 20:49:04 +00007688unicode_hash(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007689{
Guido van Rossumc2504932007-09-18 19:42:40 +00007690 Py_ssize_t len;
7691 Py_UNICODE *p;
Gregory P. Smith27cbcd62012-12-10 18:15:46 -08007692 Py_uhash_t x; /* Unsigned for defined overflow behavior. */
Guido van Rossumc2504932007-09-18 19:42:40 +00007693
Benjamin Petersonf6622c82012-04-09 14:53:07 -04007694#ifdef Py_DEBUG
Benjamin Peterson69e97272012-02-21 11:08:50 -05007695 assert(_Py_HashSecret_Initialized);
Benjamin Petersonf6622c82012-04-09 14:53:07 -04007696#endif
Guido van Rossumc2504932007-09-18 19:42:40 +00007697 if (self->hash != -1)
7698 return self->hash;
Christian Heimes90aa7642007-12-19 02:45:37 +00007699 len = Py_SIZE(self);
Georg Brandl2daf6ae2012-02-20 19:54:16 +01007700 /*
7701 We make the hash of the empty string be 0, rather than using
7702 (prefix ^ suffix), since this slightly obfuscates the hash secret
7703 */
7704 if (len == 0) {
7705 self->hash = 0;
7706 return 0;
7707 }
Guido van Rossumc2504932007-09-18 19:42:40 +00007708 p = self->str;
Georg Brandl2daf6ae2012-02-20 19:54:16 +01007709 x = _Py_HashSecret.prefix;
7710 x ^= *p << 7;
Guido van Rossumc2504932007-09-18 19:42:40 +00007711 while (--len >= 0)
Gregory P. Smith63e6c322012-01-14 15:31:34 -08007712 x = (_PyHASH_MULTIPLIER*x) ^ *p++;
Christian Heimes90aa7642007-12-19 02:45:37 +00007713 x ^= Py_SIZE(self);
Georg Brandl2daf6ae2012-02-20 19:54:16 +01007714 x ^= _Py_HashSecret.suffix;
Guido van Rossumc2504932007-09-18 19:42:40 +00007715 if (x == -1)
7716 x = -2;
7717 self->hash = x;
7718 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007719}
7720
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007721PyDoc_STRVAR(index__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007722 "S.index(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007723\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007724Like S.find() but raise ValueError when the substring is not found.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007725
7726static PyObject *
7727unicode_index(PyUnicodeObject *self, PyObject *args)
7728{
Martin v. Löwis18e16552006-02-15 17:27:45 +00007729 Py_ssize_t result;
Jesus Ceaac451502011-04-20 17:09:23 +02007730 PyUnicodeObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +00007731 Py_ssize_t start;
7732 Py_ssize_t end;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007733
Jesus Ceaac451502011-04-20 17:09:23 +02007734 if (!stringlib_parse_args_finds_unicode("index", args, &substring,
7735 &start, &end))
Guido van Rossumd57fd912000-03-10 22:53:23 +00007736 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007737
Thomas Wouters477c8d52006-05-27 19:21:47 +00007738 result = stringlib_find_slice(
7739 PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self),
7740 PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring),
7741 start, end
7742 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00007743
7744 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007745
Guido van Rossumd57fd912000-03-10 22:53:23 +00007746 if (result < 0) {
7747 PyErr_SetString(PyExc_ValueError, "substring not found");
7748 return NULL;
7749 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00007750
Christian Heimes217cfd12007-12-02 14:31:20 +00007751 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007752}
7753
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007754PyDoc_STRVAR(islower__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007755 "S.islower() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007756\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +00007757Return True if all cased characters in S are lowercase and there is\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007758at least one cased character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007759
7760static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007761unicode_islower(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007762{
7763 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7764 register const Py_UNICODE *e;
7765 int cased;
7766
Guido van Rossumd57fd912000-03-10 22:53:23 +00007767 /* Shortcut for single character strings */
7768 if (PyUnicode_GET_SIZE(self) == 1)
Benjamin Peterson29060642009-01-31 22:14:21 +00007769 return PyBool_FromLong(Py_UNICODE_ISLOWER(*p));
Guido van Rossumd57fd912000-03-10 22:53:23 +00007770
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007771 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007772 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007773 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007774
Guido van Rossumd57fd912000-03-10 22:53:23 +00007775 e = p + PyUnicode_GET_SIZE(self);
7776 cased = 0;
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007777 while (p < e) {
7778 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
Tim Petersced69f82003-09-16 20:30:58 +00007779
Benjamin Peterson29060642009-01-31 22:14:21 +00007780 if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch))
7781 return PyBool_FromLong(0);
7782 else if (!cased && Py_UNICODE_ISLOWER(ch))
7783 cased = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007784 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007785 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007786}
7787
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007788PyDoc_STRVAR(isupper__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007789 "S.isupper() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007790\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007791Return True if all cased characters in S are uppercase and there is\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007792at least one cased character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007793
7794static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007795unicode_isupper(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007796{
7797 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7798 register const Py_UNICODE *e;
7799 int cased;
7800
Guido van Rossumd57fd912000-03-10 22:53:23 +00007801 /* Shortcut for single character strings */
7802 if (PyUnicode_GET_SIZE(self) == 1)
Benjamin Peterson29060642009-01-31 22:14:21 +00007803 return PyBool_FromLong(Py_UNICODE_ISUPPER(*p) != 0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007804
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007805 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007806 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007807 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007808
Guido van Rossumd57fd912000-03-10 22:53:23 +00007809 e = p + PyUnicode_GET_SIZE(self);
7810 cased = 0;
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007811 while (p < e) {
7812 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
Tim Petersced69f82003-09-16 20:30:58 +00007813
Benjamin Peterson29060642009-01-31 22:14:21 +00007814 if (Py_UNICODE_ISLOWER(ch) || Py_UNICODE_ISTITLE(ch))
7815 return PyBool_FromLong(0);
7816 else if (!cased && Py_UNICODE_ISUPPER(ch))
7817 cased = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007818 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007819 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007820}
7821
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007822PyDoc_STRVAR(istitle__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007823 "S.istitle() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007824\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007825Return True if S is a titlecased string and there is at least one\n\
7826character in S, i.e. upper- and titlecase characters may only\n\
7827follow uncased characters and lowercase characters only cased ones.\n\
7828Return False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007829
7830static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007831unicode_istitle(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007832{
7833 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7834 register const Py_UNICODE *e;
7835 int cased, previous_is_cased;
7836
Guido van Rossumd57fd912000-03-10 22:53:23 +00007837 /* Shortcut for single character strings */
7838 if (PyUnicode_GET_SIZE(self) == 1)
Benjamin Peterson29060642009-01-31 22:14:21 +00007839 return PyBool_FromLong((Py_UNICODE_ISTITLE(*p) != 0) ||
7840 (Py_UNICODE_ISUPPER(*p) != 0));
Guido van Rossumd57fd912000-03-10 22:53:23 +00007841
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007842 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007843 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007844 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007845
Guido van Rossumd57fd912000-03-10 22:53:23 +00007846 e = p + PyUnicode_GET_SIZE(self);
7847 cased = 0;
7848 previous_is_cased = 0;
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007849 while (p < e) {
7850 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
Tim Petersced69f82003-09-16 20:30:58 +00007851
Benjamin Peterson29060642009-01-31 22:14:21 +00007852 if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) {
7853 if (previous_is_cased)
7854 return PyBool_FromLong(0);
7855 previous_is_cased = 1;
7856 cased = 1;
7857 }
7858 else if (Py_UNICODE_ISLOWER(ch)) {
7859 if (!previous_is_cased)
7860 return PyBool_FromLong(0);
7861 previous_is_cased = 1;
7862 cased = 1;
7863 }
7864 else
7865 previous_is_cased = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007866 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007867 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007868}
7869
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007870PyDoc_STRVAR(isspace__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007871 "S.isspace() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007872\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007873Return True if all characters in S are whitespace\n\
7874and there is at least one character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007875
7876static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007877unicode_isspace(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007878{
7879 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7880 register const Py_UNICODE *e;
7881
Guido van Rossumd57fd912000-03-10 22:53:23 +00007882 /* Shortcut for single character strings */
7883 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00007884 Py_UNICODE_ISSPACE(*p))
7885 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007886
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007887 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007888 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007889 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007890
Guido van Rossumd57fd912000-03-10 22:53:23 +00007891 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007892 while (p < e) {
7893 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
7894 if (!Py_UNICODE_ISSPACE(ch))
Benjamin Peterson29060642009-01-31 22:14:21 +00007895 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007896 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007897 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007898}
7899
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007900PyDoc_STRVAR(isalpha__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007901 "S.isalpha() -> bool\n\
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007902\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007903Return True if all characters in S are alphabetic\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007904and there is at least one character in S, False otherwise.");
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007905
7906static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007907unicode_isalpha(PyUnicodeObject *self)
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007908{
7909 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7910 register const Py_UNICODE *e;
7911
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007912 /* Shortcut for single character strings */
7913 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00007914 Py_UNICODE_ISALPHA(*p))
7915 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007916
7917 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007918 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007919 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007920
7921 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007922 while (p < e) {
7923 if (!Py_UNICODE_ISALPHA(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00007924 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007925 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007926 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007927}
7928
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007929PyDoc_STRVAR(isalnum__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007930 "S.isalnum() -> bool\n\
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007931\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007932Return True if all characters in S are alphanumeric\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007933and there is at least one character in S, False otherwise.");
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007934
7935static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007936unicode_isalnum(PyUnicodeObject *self)
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007937{
7938 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7939 register const Py_UNICODE *e;
7940
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007941 /* Shortcut for single character strings */
7942 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00007943 Py_UNICODE_ISALNUM(*p))
7944 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007945
7946 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007947 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007948 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007949
7950 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007951 while (p < e) {
7952 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
7953 if (!Py_UNICODE_ISALNUM(ch))
Benjamin Peterson29060642009-01-31 22:14:21 +00007954 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007955 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007956 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007957}
7958
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007959PyDoc_STRVAR(isdecimal__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007960 "S.isdecimal() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007961\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +00007962Return True if there are only decimal characters in S,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007963False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007964
7965static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007966unicode_isdecimal(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007967{
7968 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7969 register const Py_UNICODE *e;
7970
Guido van Rossumd57fd912000-03-10 22:53:23 +00007971 /* Shortcut for single character strings */
7972 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00007973 Py_UNICODE_ISDECIMAL(*p))
7974 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007975
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007976 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007977 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007978 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007979
Guido van Rossumd57fd912000-03-10 22:53:23 +00007980 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007981 while (p < e) {
7982 if (!Py_UNICODE_ISDECIMAL(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00007983 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007984 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007985 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007986}
7987
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007988PyDoc_STRVAR(isdigit__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007989 "S.isdigit() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007990\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007991Return True if all characters in S are digits\n\
7992and there is at least one character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007993
7994static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007995unicode_isdigit(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007996{
7997 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7998 register const Py_UNICODE *e;
7999
Guido van Rossumd57fd912000-03-10 22:53:23 +00008000 /* Shortcut for single character strings */
8001 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00008002 Py_UNICODE_ISDIGIT(*p))
8003 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008004
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00008005 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00008006 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008007 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00008008
Guido van Rossumd57fd912000-03-10 22:53:23 +00008009 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008010 while (p < e) {
8011 if (!Py_UNICODE_ISDIGIT(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00008012 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008013 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00008014 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008015}
8016
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008017PyDoc_STRVAR(isnumeric__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008018 "S.isnumeric() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008019\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +00008020Return True if there are only numeric characters in S,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008021False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008022
8023static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008024unicode_isnumeric(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008025{
8026 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
8027 register const Py_UNICODE *e;
8028
Guido van Rossumd57fd912000-03-10 22:53:23 +00008029 /* Shortcut for single character strings */
8030 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00008031 Py_UNICODE_ISNUMERIC(*p))
8032 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008033
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00008034 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00008035 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008036 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00008037
Guido van Rossumd57fd912000-03-10 22:53:23 +00008038 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008039 while (p < e) {
8040 if (!Py_UNICODE_ISNUMERIC(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00008041 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008042 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00008043 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008044}
8045
Martin v. Löwis47383402007-08-15 07:32:56 +00008046int
8047PyUnicode_IsIdentifier(PyObject *self)
8048{
Benjamin Petersonf413b802011-08-12 22:17:18 -05008049 const Py_UNICODE *p = PyUnicode_AS_UNICODE((PyUnicodeObject*)self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008050 const Py_UNICODE *e;
8051 Py_UCS4 first;
Martin v. Löwis47383402007-08-15 07:32:56 +00008052
8053 /* Special case for empty strings */
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008054 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008055 return 0;
Martin v. Löwis47383402007-08-15 07:32:56 +00008056
8057 /* PEP 3131 says that the first character must be in
8058 XID_Start and subsequent characters in XID_Continue,
8059 and for the ASCII range, the 2.x rules apply (i.e
Benjamin Peterson14339b62009-01-31 16:36:08 +00008060 start with letters and underscore, continue with
Martin v. Löwis47383402007-08-15 07:32:56 +00008061 letters, digits, underscore). However, given the current
8062 definition of XID_Start and XID_Continue, it is sufficient
8063 to check just for these, except that _ must be allowed
8064 as starting an identifier. */
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008065 e = p + PyUnicode_GET_SIZE(self);
8066 first = _Py_UNICODE_NEXT(p, e);
Benjamin Petersonf413b802011-08-12 22:17:18 -05008067 if (!_PyUnicode_IsXidStart(first) && first != 0x5F /* LOW LINE */)
Martin v. Löwis47383402007-08-15 07:32:56 +00008068 return 0;
8069
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008070 while (p < e)
8071 if (!_PyUnicode_IsXidContinue(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00008072 return 0;
Martin v. Löwis47383402007-08-15 07:32:56 +00008073 return 1;
8074}
8075
8076PyDoc_STRVAR(isidentifier__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008077 "S.isidentifier() -> bool\n\
Martin v. Löwis47383402007-08-15 07:32:56 +00008078\n\
8079Return True if S is a valid identifier according\n\
8080to the language definition.");
8081
8082static PyObject*
8083unicode_isidentifier(PyObject *self)
8084{
8085 return PyBool_FromLong(PyUnicode_IsIdentifier(self));
8086}
8087
Georg Brandl559e5d72008-06-11 18:37:52 +00008088PyDoc_STRVAR(isprintable__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008089 "S.isprintable() -> bool\n\
Georg Brandl559e5d72008-06-11 18:37:52 +00008090\n\
8091Return True if all characters in S are considered\n\
8092printable in repr() or S is empty, False otherwise.");
8093
8094static PyObject*
8095unicode_isprintable(PyObject *self)
8096{
8097 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
8098 register const Py_UNICODE *e;
8099
8100 /* Shortcut for single character strings */
8101 if (PyUnicode_GET_SIZE(self) == 1 && Py_UNICODE_ISPRINTABLE(*p)) {
8102 Py_RETURN_TRUE;
8103 }
8104
8105 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008106 while (p < e) {
8107 if (!Py_UNICODE_ISPRINTABLE(_Py_UNICODE_NEXT(p, e))) {
Georg Brandl559e5d72008-06-11 18:37:52 +00008108 Py_RETURN_FALSE;
8109 }
8110 }
8111 Py_RETURN_TRUE;
8112}
8113
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008114PyDoc_STRVAR(join__doc__,
Georg Brandl495f7b52009-10-27 15:28:25 +00008115 "S.join(iterable) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008116\n\
8117Return a string which is the concatenation of the strings in the\n\
Georg Brandl495f7b52009-10-27 15:28:25 +00008118iterable. The separator between elements is S.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008119
8120static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008121unicode_join(PyObject *self, PyObject *data)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008122{
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008123 return PyUnicode_Join(self, data);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008124}
8125
Martin v. Löwis18e16552006-02-15 17:27:45 +00008126static Py_ssize_t
Guido van Rossumd57fd912000-03-10 22:53:23 +00008127unicode_length(PyUnicodeObject *self)
8128{
8129 return self->length;
8130}
8131
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008132PyDoc_STRVAR(ljust__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008133 "S.ljust(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008134\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00008135Return S left-justified in a Unicode string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008136done using the specified fill character (default is a space).");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008137
8138static PyObject *
8139unicode_ljust(PyUnicodeObject *self, PyObject *args)
8140{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008141 Py_ssize_t width;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008142 Py_UNICODE fillchar = ' ';
8143
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008144 if (!PyArg_ParseTuple(args, "n|O&:ljust", &width, convert_uc, &fillchar))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008145 return NULL;
8146
Tim Peters7a29bd52001-09-12 03:03:31 +00008147 if (self->length >= width && PyUnicode_CheckExact(self)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00008148 Py_INCREF(self);
8149 return (PyObject*) self;
8150 }
8151
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008152 return (PyObject*) pad(self, 0, width - self->length, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008153}
8154
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008155PyDoc_STRVAR(lower__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008156 "S.lower() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008157\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008158Return a copy of the string S converted to lowercase.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008159
8160static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008161unicode_lower(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008162{
Guido van Rossumd57fd912000-03-10 22:53:23 +00008163 return fixup(self, fixlower);
8164}
8165
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008166#define LEFTSTRIP 0
8167#define RIGHTSTRIP 1
8168#define BOTHSTRIP 2
8169
8170/* Arrays indexed by above */
8171static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"};
8172
8173#define STRIPNAME(i) (stripformat[i]+3)
8174
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008175/* externally visible for str.strip(unicode) */
8176PyObject *
8177_PyUnicode_XStrip(PyUnicodeObject *self, int striptype, PyObject *sepobj)
8178{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008179 Py_UNICODE *s = PyUnicode_AS_UNICODE(self);
8180 Py_ssize_t len = PyUnicode_GET_SIZE(self);
8181 Py_UNICODE *sep = PyUnicode_AS_UNICODE(sepobj);
8182 Py_ssize_t seplen = PyUnicode_GET_SIZE(sepobj);
8183 Py_ssize_t i, j;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008184
Benjamin Peterson29060642009-01-31 22:14:21 +00008185 BLOOM_MASK sepmask = make_bloom_mask(sep, seplen);
Thomas Wouters477c8d52006-05-27 19:21:47 +00008186
Benjamin Peterson14339b62009-01-31 16:36:08 +00008187 i = 0;
8188 if (striptype != RIGHTSTRIP) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008189 while (i < len && BLOOM_MEMBER(sepmask, s[i], sep, seplen)) {
8190 i++;
8191 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008192 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008193
Benjamin Peterson14339b62009-01-31 16:36:08 +00008194 j = len;
8195 if (striptype != LEFTSTRIP) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008196 do {
8197 j--;
8198 } while (j >= i && BLOOM_MEMBER(sepmask, s[j], sep, seplen));
8199 j++;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008200 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008201
Benjamin Peterson14339b62009-01-31 16:36:08 +00008202 if (i == 0 && j == len && PyUnicode_CheckExact(self)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008203 Py_INCREF(self);
8204 return (PyObject*)self;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008205 }
8206 else
Benjamin Peterson29060642009-01-31 22:14:21 +00008207 return PyUnicode_FromUnicode(s+i, j-i);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008208}
8209
Guido van Rossumd57fd912000-03-10 22:53:23 +00008210
8211static PyObject *
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008212do_strip(PyUnicodeObject *self, int striptype)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008213{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008214 Py_UNICODE *s = PyUnicode_AS_UNICODE(self);
8215 Py_ssize_t len = PyUnicode_GET_SIZE(self), i, j;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008216
Benjamin Peterson14339b62009-01-31 16:36:08 +00008217 i = 0;
8218 if (striptype != RIGHTSTRIP) {
8219 while (i < len && Py_UNICODE_ISSPACE(s[i])) {
8220 i++;
8221 }
8222 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008223
Benjamin Peterson14339b62009-01-31 16:36:08 +00008224 j = len;
8225 if (striptype != LEFTSTRIP) {
8226 do {
8227 j--;
8228 } while (j >= i && Py_UNICODE_ISSPACE(s[j]));
8229 j++;
8230 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008231
Benjamin Peterson14339b62009-01-31 16:36:08 +00008232 if (i == 0 && j == len && PyUnicode_CheckExact(self)) {
8233 Py_INCREF(self);
8234 return (PyObject*)self;
8235 }
8236 else
8237 return PyUnicode_FromUnicode(s+i, j-i);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008238}
8239
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008240
8241static PyObject *
8242do_argstrip(PyUnicodeObject *self, int striptype, PyObject *args)
8243{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008244 PyObject *sep = NULL;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008245
Benjamin Peterson14339b62009-01-31 16:36:08 +00008246 if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep))
8247 return NULL;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008248
Benjamin Peterson14339b62009-01-31 16:36:08 +00008249 if (sep != NULL && sep != Py_None) {
8250 if (PyUnicode_Check(sep))
8251 return _PyUnicode_XStrip(self, striptype, sep);
8252 else {
8253 PyErr_Format(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00008254 "%s arg must be None or str",
8255 STRIPNAME(striptype));
Benjamin Peterson14339b62009-01-31 16:36:08 +00008256 return NULL;
8257 }
8258 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008259
Benjamin Peterson14339b62009-01-31 16:36:08 +00008260 return do_strip(self, striptype);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008261}
8262
8263
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008264PyDoc_STRVAR(strip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008265 "S.strip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008266\n\
8267Return a copy of the string S with leading and trailing\n\
8268whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00008269If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008270
8271static PyObject *
8272unicode_strip(PyUnicodeObject *self, PyObject *args)
8273{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008274 if (PyTuple_GET_SIZE(args) == 0)
8275 return do_strip(self, BOTHSTRIP); /* Common case */
8276 else
8277 return do_argstrip(self, BOTHSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008278}
8279
8280
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008281PyDoc_STRVAR(lstrip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008282 "S.lstrip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008283\n\
8284Return a copy of the string S with leading whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00008285If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008286
8287static PyObject *
8288unicode_lstrip(PyUnicodeObject *self, PyObject *args)
8289{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008290 if (PyTuple_GET_SIZE(args) == 0)
8291 return do_strip(self, LEFTSTRIP); /* Common case */
8292 else
8293 return do_argstrip(self, LEFTSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008294}
8295
8296
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008297PyDoc_STRVAR(rstrip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008298 "S.rstrip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008299\n\
8300Return a copy of the string S with trailing whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00008301If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008302
8303static PyObject *
8304unicode_rstrip(PyUnicodeObject *self, PyObject *args)
8305{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008306 if (PyTuple_GET_SIZE(args) == 0)
8307 return do_strip(self, RIGHTSTRIP); /* Common case */
8308 else
8309 return do_argstrip(self, RIGHTSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008310}
8311
8312
Guido van Rossumd57fd912000-03-10 22:53:23 +00008313static PyObject*
Martin v. Löwis18e16552006-02-15 17:27:45 +00008314unicode_repeat(PyUnicodeObject *str, Py_ssize_t len)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008315{
8316 PyUnicodeObject *u;
8317 Py_UNICODE *p;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008318 Py_ssize_t nchars;
Tim Peters8f422462000-09-09 06:13:41 +00008319 size_t nbytes;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008320
Georg Brandl222de0f2009-04-12 12:01:50 +00008321 if (len < 1) {
8322 Py_INCREF(unicode_empty);
8323 return (PyObject *)unicode_empty;
8324 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008325
Tim Peters7a29bd52001-09-12 03:03:31 +00008326 if (len == 1 && PyUnicode_CheckExact(str)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00008327 /* no repeat, return original string */
8328 Py_INCREF(str);
8329 return (PyObject*) str;
8330 }
Tim Peters8f422462000-09-09 06:13:41 +00008331
8332 /* ensure # of chars needed doesn't overflow int and # of bytes
8333 * needed doesn't overflow size_t
8334 */
8335 nchars = len * str->length;
Georg Brandl222de0f2009-04-12 12:01:50 +00008336 if (nchars / len != str->length) {
Tim Peters8f422462000-09-09 06:13:41 +00008337 PyErr_SetString(PyExc_OverflowError,
8338 "repeated string is too long");
8339 return NULL;
8340 }
8341 nbytes = (nchars + 1) * sizeof(Py_UNICODE);
8342 if (nbytes / sizeof(Py_UNICODE) != (size_t)(nchars + 1)) {
8343 PyErr_SetString(PyExc_OverflowError,
8344 "repeated string is too long");
8345 return NULL;
8346 }
8347 u = _PyUnicode_New(nchars);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008348 if (!u)
8349 return NULL;
8350
8351 p = u->str;
8352
Georg Brandl222de0f2009-04-12 12:01:50 +00008353 if (str->length == 1) {
Thomas Wouters477c8d52006-05-27 19:21:47 +00008354 Py_UNICODE_FILL(p, str->str[0], len);
8355 } else {
Georg Brandl222de0f2009-04-12 12:01:50 +00008356 Py_ssize_t done = str->length; /* number of characters copied this far */
8357 Py_UNICODE_COPY(p, str->str, str->length);
Benjamin Peterson29060642009-01-31 22:14:21 +00008358 while (done < nchars) {
Christian Heimescc47b052008-03-25 14:56:36 +00008359 Py_ssize_t n = (done <= nchars-done) ? done : nchars-done;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008360 Py_UNICODE_COPY(p+done, p, n);
8361 done += n;
Benjamin Peterson29060642009-01-31 22:14:21 +00008362 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008363 }
8364
8365 return (PyObject*) u;
8366}
8367
8368PyObject *PyUnicode_Replace(PyObject *obj,
Benjamin Peterson29060642009-01-31 22:14:21 +00008369 PyObject *subobj,
8370 PyObject *replobj,
8371 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008372{
8373 PyObject *self;
8374 PyObject *str1;
8375 PyObject *str2;
8376 PyObject *result;
8377
8378 self = PyUnicode_FromObject(obj);
8379 if (self == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008380 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008381 str1 = PyUnicode_FromObject(subobj);
8382 if (str1 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008383 Py_DECREF(self);
8384 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008385 }
8386 str2 = PyUnicode_FromObject(replobj);
8387 if (str2 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008388 Py_DECREF(self);
8389 Py_DECREF(str1);
8390 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008391 }
Tim Petersced69f82003-09-16 20:30:58 +00008392 result = replace((PyUnicodeObject *)self,
Benjamin Peterson29060642009-01-31 22:14:21 +00008393 (PyUnicodeObject *)str1,
8394 (PyUnicodeObject *)str2,
8395 maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008396 Py_DECREF(self);
8397 Py_DECREF(str1);
8398 Py_DECREF(str2);
8399 return result;
8400}
8401
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008402PyDoc_STRVAR(replace__doc__,
Ezio Melottic1897e72010-06-26 18:50:39 +00008403 "S.replace(old, new[, count]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008404\n\
8405Return a copy of S with all occurrences of substring\n\
Georg Brandlf08a9dd2008-06-10 16:57:31 +00008406old replaced by new. If the optional argument count is\n\
8407given, only the first count occurrences are replaced.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008408
8409static PyObject*
8410unicode_replace(PyUnicodeObject *self, PyObject *args)
8411{
8412 PyUnicodeObject *str1;
8413 PyUnicodeObject *str2;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008414 Py_ssize_t maxcount = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008415 PyObject *result;
8416
Martin v. Löwis18e16552006-02-15 17:27:45 +00008417 if (!PyArg_ParseTuple(args, "OO|n:replace", &str1, &str2, &maxcount))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008418 return NULL;
8419 str1 = (PyUnicodeObject *)PyUnicode_FromObject((PyObject *)str1);
8420 if (str1 == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008421 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008422 str2 = (PyUnicodeObject *)PyUnicode_FromObject((PyObject *)str2);
Walter Dörwaldf6b56ae2003-02-09 23:42:56 +00008423 if (str2 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008424 Py_DECREF(str1);
8425 return NULL;
Walter Dörwaldf6b56ae2003-02-09 23:42:56 +00008426 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008427
8428 result = replace(self, str1, str2, maxcount);
8429
8430 Py_DECREF(str1);
8431 Py_DECREF(str2);
8432 return result;
8433}
8434
8435static
8436PyObject *unicode_repr(PyObject *unicode)
8437{
Walter Dörwald79e913e2007-05-12 11:08:06 +00008438 PyObject *repr;
Walter Dörwald1ab83302007-05-18 17:15:44 +00008439 Py_UNICODE *p;
Walter Dörwald79e913e2007-05-12 11:08:06 +00008440 Py_UNICODE *s = PyUnicode_AS_UNICODE(unicode);
8441 Py_ssize_t size = PyUnicode_GET_SIZE(unicode);
8442
8443 /* XXX(nnorwitz): rather than over-allocating, it would be
8444 better to choose a different scheme. Perhaps scan the
8445 first N-chars of the string and allocate based on that size.
8446 */
8447 /* Initial allocation is based on the longest-possible unichr
8448 escape.
8449
8450 In wide (UTF-32) builds '\U00xxxxxx' is 10 chars per source
8451 unichr, so in this case it's the longest unichr escape. In
8452 narrow (UTF-16) builds this is five chars per source unichr
8453 since there are two unichrs in the surrogate pair, so in narrow
8454 (UTF-16) builds it's not the longest unichr escape.
8455
8456 In wide or narrow builds '\uxxxx' is 6 chars per source unichr,
8457 so in the narrow (UTF-16) build case it's the longest unichr
8458 escape.
8459 */
8460
Walter Dörwald1ab83302007-05-18 17:15:44 +00008461 repr = PyUnicode_FromUnicode(NULL,
Benjamin Peterson29060642009-01-31 22:14:21 +00008462 2 /* quotes */
Walter Dörwald79e913e2007-05-12 11:08:06 +00008463#ifdef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00008464 + 10*size
Walter Dörwald79e913e2007-05-12 11:08:06 +00008465#else
Benjamin Peterson29060642009-01-31 22:14:21 +00008466 + 6*size
Walter Dörwald79e913e2007-05-12 11:08:06 +00008467#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00008468 + 1);
Walter Dörwald79e913e2007-05-12 11:08:06 +00008469 if (repr == NULL)
8470 return NULL;
8471
Walter Dörwald1ab83302007-05-18 17:15:44 +00008472 p = PyUnicode_AS_UNICODE(repr);
Walter Dörwald79e913e2007-05-12 11:08:06 +00008473
8474 /* Add quote */
8475 *p++ = (findchar(s, size, '\'') &&
8476 !findchar(s, size, '"')) ? '"' : '\'';
8477 while (size-- > 0) {
8478 Py_UNICODE ch = *s++;
8479
8480 /* Escape quotes and backslashes */
Walter Dörwald1ab83302007-05-18 17:15:44 +00008481 if ((ch == PyUnicode_AS_UNICODE(repr)[0]) || (ch == '\\')) {
Walter Dörwald79e913e2007-05-12 11:08:06 +00008482 *p++ = '\\';
Walter Dörwald1ab83302007-05-18 17:15:44 +00008483 *p++ = ch;
Walter Dörwald79e913e2007-05-12 11:08:06 +00008484 continue;
8485 }
8486
Benjamin Peterson29060642009-01-31 22:14:21 +00008487 /* Map special whitespace to '\t', \n', '\r' */
Georg Brandl559e5d72008-06-11 18:37:52 +00008488 if (ch == '\t') {
Walter Dörwald79e913e2007-05-12 11:08:06 +00008489 *p++ = '\\';
8490 *p++ = 't';
8491 }
8492 else if (ch == '\n') {
8493 *p++ = '\\';
8494 *p++ = 'n';
8495 }
8496 else if (ch == '\r') {
8497 *p++ = '\\';
8498 *p++ = 'r';
8499 }
8500
8501 /* Map non-printable US ASCII to '\xhh' */
Georg Brandl559e5d72008-06-11 18:37:52 +00008502 else if (ch < ' ' || ch == 0x7F) {
Walter Dörwald79e913e2007-05-12 11:08:06 +00008503 *p++ = '\\';
8504 *p++ = 'x';
8505 *p++ = hexdigits[(ch >> 4) & 0x000F];
8506 *p++ = hexdigits[ch & 0x000F];
8507 }
8508
Georg Brandl559e5d72008-06-11 18:37:52 +00008509 /* Copy ASCII characters as-is */
8510 else if (ch < 0x7F) {
8511 *p++ = ch;
8512 }
8513
Benjamin Peterson29060642009-01-31 22:14:21 +00008514 /* Non-ASCII characters */
Georg Brandl559e5d72008-06-11 18:37:52 +00008515 else {
8516 Py_UCS4 ucs = ch;
8517
8518#ifndef Py_UNICODE_WIDE
8519 Py_UNICODE ch2 = 0;
8520 /* Get code point from surrogate pair */
8521 if (size > 0) {
8522 ch2 = *s;
8523 if (ch >= 0xD800 && ch < 0xDC00 && ch2 >= 0xDC00
Benjamin Peterson29060642009-01-31 22:14:21 +00008524 && ch2 <= 0xDFFF) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00008525 ucs = (((ch & 0x03FF) << 10) | (ch2 & 0x03FF))
Benjamin Peterson29060642009-01-31 22:14:21 +00008526 + 0x00010000;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008527 s++;
Georg Brandl559e5d72008-06-11 18:37:52 +00008528 size--;
8529 }
8530 }
8531#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +00008532 /* Map Unicode whitespace and control characters
Georg Brandl559e5d72008-06-11 18:37:52 +00008533 (categories Z* and C* except ASCII space)
8534 */
8535 if (!Py_UNICODE_ISPRINTABLE(ucs)) {
8536 /* Map 8-bit characters to '\xhh' */
8537 if (ucs <= 0xff) {
8538 *p++ = '\\';
8539 *p++ = 'x';
8540 *p++ = hexdigits[(ch >> 4) & 0x000F];
8541 *p++ = hexdigits[ch & 0x000F];
8542 }
8543 /* Map 21-bit characters to '\U00xxxxxx' */
8544 else if (ucs >= 0x10000) {
8545 *p++ = '\\';
8546 *p++ = 'U';
8547 *p++ = hexdigits[(ucs >> 28) & 0x0000000F];
8548 *p++ = hexdigits[(ucs >> 24) & 0x0000000F];
8549 *p++ = hexdigits[(ucs >> 20) & 0x0000000F];
8550 *p++ = hexdigits[(ucs >> 16) & 0x0000000F];
8551 *p++ = hexdigits[(ucs >> 12) & 0x0000000F];
8552 *p++ = hexdigits[(ucs >> 8) & 0x0000000F];
8553 *p++ = hexdigits[(ucs >> 4) & 0x0000000F];
8554 *p++ = hexdigits[ucs & 0x0000000F];
8555 }
8556 /* Map 16-bit characters to '\uxxxx' */
8557 else {
8558 *p++ = '\\';
8559 *p++ = 'u';
8560 *p++ = hexdigits[(ucs >> 12) & 0x000F];
8561 *p++ = hexdigits[(ucs >> 8) & 0x000F];
8562 *p++ = hexdigits[(ucs >> 4) & 0x000F];
8563 *p++ = hexdigits[ucs & 0x000F];
8564 }
8565 }
8566 /* Copy characters as-is */
8567 else {
8568 *p++ = ch;
8569#ifndef Py_UNICODE_WIDE
8570 if (ucs >= 0x10000)
8571 *p++ = ch2;
8572#endif
8573 }
8574 }
Walter Dörwald79e913e2007-05-12 11:08:06 +00008575 }
8576 /* Add quote */
Walter Dörwald1ab83302007-05-18 17:15:44 +00008577 *p++ = PyUnicode_AS_UNICODE(repr)[0];
Walter Dörwald79e913e2007-05-12 11:08:06 +00008578
8579 *p = '\0';
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +00008580 PyUnicode_Resize(&repr, p - PyUnicode_AS_UNICODE(repr));
Walter Dörwald79e913e2007-05-12 11:08:06 +00008581 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008582}
8583
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008584PyDoc_STRVAR(rfind__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008585 "S.rfind(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008586\n\
8587Return the highest index in S where substring sub is found,\n\
Senthil Kumaran53516a82011-07-27 23:33:54 +08008588such that sub is contained within S[start:end]. Optional\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008589arguments start and end are interpreted as in slice notation.\n\
8590\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008591Return -1 on failure.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008592
8593static PyObject *
8594unicode_rfind(PyUnicodeObject *self, PyObject *args)
8595{
Jesus Ceaac451502011-04-20 17:09:23 +02008596 PyUnicodeObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +00008597 Py_ssize_t start;
8598 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008599 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008600
Jesus Ceaac451502011-04-20 17:09:23 +02008601 if (!stringlib_parse_args_finds_unicode("rfind", args, &substring,
8602 &start, &end))
Benjamin Peterson14339b62009-01-31 16:36:08 +00008603 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008604
Thomas Wouters477c8d52006-05-27 19:21:47 +00008605 result = stringlib_rfind_slice(
8606 PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self),
8607 PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring),
8608 start, end
8609 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00008610
8611 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00008612
Christian Heimes217cfd12007-12-02 14:31:20 +00008613 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008614}
8615
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008616PyDoc_STRVAR(rindex__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008617 "S.rindex(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008618\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008619Like S.rfind() but raise ValueError when the substring is not found.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008620
8621static PyObject *
8622unicode_rindex(PyUnicodeObject *self, PyObject *args)
8623{
Jesus Ceaac451502011-04-20 17:09:23 +02008624 PyUnicodeObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +00008625 Py_ssize_t start;
8626 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008627 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008628
Jesus Ceaac451502011-04-20 17:09:23 +02008629 if (!stringlib_parse_args_finds_unicode("rindex", args, &substring,
8630 &start, &end))
Benjamin Peterson14339b62009-01-31 16:36:08 +00008631 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008632
Thomas Wouters477c8d52006-05-27 19:21:47 +00008633 result = stringlib_rfind_slice(
8634 PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self),
8635 PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring),
8636 start, end
8637 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00008638
8639 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00008640
Guido van Rossumd57fd912000-03-10 22:53:23 +00008641 if (result < 0) {
8642 PyErr_SetString(PyExc_ValueError, "substring not found");
8643 return NULL;
8644 }
Christian Heimes217cfd12007-12-02 14:31:20 +00008645 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008646}
8647
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008648PyDoc_STRVAR(rjust__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008649 "S.rjust(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008650\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00008651Return S right-justified in a string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008652done using the specified fill character (default is a space).");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008653
8654static PyObject *
8655unicode_rjust(PyUnicodeObject *self, PyObject *args)
8656{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008657 Py_ssize_t width;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008658 Py_UNICODE fillchar = ' ';
8659
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008660 if (!PyArg_ParseTuple(args, "n|O&:rjust", &width, convert_uc, &fillchar))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008661 return NULL;
8662
Tim Peters7a29bd52001-09-12 03:03:31 +00008663 if (self->length >= width && PyUnicode_CheckExact(self)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00008664 Py_INCREF(self);
8665 return (PyObject*) self;
8666 }
8667
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008668 return (PyObject*) pad(self, width - self->length, 0, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008669}
8670
Guido van Rossumd57fd912000-03-10 22:53:23 +00008671PyObject *PyUnicode_Split(PyObject *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00008672 PyObject *sep,
8673 Py_ssize_t maxsplit)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008674{
8675 PyObject *result;
Tim Petersced69f82003-09-16 20:30:58 +00008676
Guido van Rossumd57fd912000-03-10 22:53:23 +00008677 s = PyUnicode_FromObject(s);
8678 if (s == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +00008679 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +00008680 if (sep != NULL) {
8681 sep = PyUnicode_FromObject(sep);
8682 if (sep == NULL) {
8683 Py_DECREF(s);
8684 return NULL;
8685 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008686 }
8687
8688 result = split((PyUnicodeObject *)s, (PyUnicodeObject *)sep, maxsplit);
8689
8690 Py_DECREF(s);
8691 Py_XDECREF(sep);
8692 return result;
8693}
8694
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008695PyDoc_STRVAR(split__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008696 "S.split([sep[, maxsplit]]) -> list of strings\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008697\n\
8698Return a list of the words in S, using sep as the\n\
8699delimiter string. If maxsplit is given, at most maxsplit\n\
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +00008700splits are done. If sep is not specified or is None, any\n\
Alexandre Vassalotti8ae3e052008-05-16 00:41:41 +00008701whitespace string is a separator and empty strings are\n\
8702removed from the result.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008703
8704static PyObject*
8705unicode_split(PyUnicodeObject *self, PyObject *args)
8706{
8707 PyObject *substring = Py_None;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008708 Py_ssize_t maxcount = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008709
Martin v. Löwis18e16552006-02-15 17:27:45 +00008710 if (!PyArg_ParseTuple(args, "|On:split", &substring, &maxcount))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008711 return NULL;
8712
8713 if (substring == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00008714 return split(self, NULL, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008715 else if (PyUnicode_Check(substring))
Benjamin Peterson29060642009-01-31 22:14:21 +00008716 return split(self, (PyUnicodeObject *)substring, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008717 else
Benjamin Peterson29060642009-01-31 22:14:21 +00008718 return PyUnicode_Split((PyObject *)self, substring, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008719}
8720
Thomas Wouters477c8d52006-05-27 19:21:47 +00008721PyObject *
8722PyUnicode_Partition(PyObject *str_in, PyObject *sep_in)
8723{
8724 PyObject* str_obj;
8725 PyObject* sep_obj;
8726 PyObject* out;
8727
8728 str_obj = PyUnicode_FromObject(str_in);
8729 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +00008730 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008731 sep_obj = PyUnicode_FromObject(sep_in);
8732 if (!sep_obj) {
8733 Py_DECREF(str_obj);
8734 return NULL;
8735 }
8736
8737 out = stringlib_partition(
8738 str_obj, PyUnicode_AS_UNICODE(str_obj), PyUnicode_GET_SIZE(str_obj),
8739 sep_obj, PyUnicode_AS_UNICODE(sep_obj), PyUnicode_GET_SIZE(sep_obj)
8740 );
8741
8742 Py_DECREF(sep_obj);
8743 Py_DECREF(str_obj);
8744
8745 return out;
8746}
8747
8748
8749PyObject *
8750PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in)
8751{
8752 PyObject* str_obj;
8753 PyObject* sep_obj;
8754 PyObject* out;
8755
8756 str_obj = PyUnicode_FromObject(str_in);
8757 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +00008758 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008759 sep_obj = PyUnicode_FromObject(sep_in);
8760 if (!sep_obj) {
8761 Py_DECREF(str_obj);
8762 return NULL;
8763 }
8764
8765 out = stringlib_rpartition(
8766 str_obj, PyUnicode_AS_UNICODE(str_obj), PyUnicode_GET_SIZE(str_obj),
8767 sep_obj, PyUnicode_AS_UNICODE(sep_obj), PyUnicode_GET_SIZE(sep_obj)
8768 );
8769
8770 Py_DECREF(sep_obj);
8771 Py_DECREF(str_obj);
8772
8773 return out;
8774}
8775
8776PyDoc_STRVAR(partition__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008777 "S.partition(sep) -> (head, sep, tail)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00008778\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00008779Search for the separator sep in S, and return the part before it,\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00008780the separator itself, and the part after it. If the separator is not\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00008781found, return S and two empty strings.");
Thomas Wouters477c8d52006-05-27 19:21:47 +00008782
8783static PyObject*
8784unicode_partition(PyUnicodeObject *self, PyObject *separator)
8785{
8786 return PyUnicode_Partition((PyObject *)self, separator);
8787}
8788
8789PyDoc_STRVAR(rpartition__doc__,
Ezio Melotti5b2b2422010-01-25 11:58:28 +00008790 "S.rpartition(sep) -> (head, sep, tail)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00008791\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00008792Search for the separator sep in S, starting at the end of S, and return\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00008793the part before it, the separator itself, and the part after it. If the\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00008794separator is not found, return two empty strings and S.");
Thomas Wouters477c8d52006-05-27 19:21:47 +00008795
8796static PyObject*
8797unicode_rpartition(PyUnicodeObject *self, PyObject *separator)
8798{
8799 return PyUnicode_RPartition((PyObject *)self, separator);
8800}
8801
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008802PyObject *PyUnicode_RSplit(PyObject *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00008803 PyObject *sep,
8804 Py_ssize_t maxsplit)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008805{
8806 PyObject *result;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008807
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008808 s = PyUnicode_FromObject(s);
8809 if (s == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +00008810 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +00008811 if (sep != NULL) {
8812 sep = PyUnicode_FromObject(sep);
8813 if (sep == NULL) {
8814 Py_DECREF(s);
8815 return NULL;
8816 }
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008817 }
8818
8819 result = rsplit((PyUnicodeObject *)s, (PyUnicodeObject *)sep, maxsplit);
8820
8821 Py_DECREF(s);
8822 Py_XDECREF(sep);
8823 return result;
8824}
8825
8826PyDoc_STRVAR(rsplit__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008827 "S.rsplit([sep[, maxsplit]]) -> list of strings\n\
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008828\n\
8829Return a list of the words in S, using sep as the\n\
8830delimiter string, starting at the end of the string and\n\
8831working to the front. If maxsplit is given, at most maxsplit\n\
8832splits are done. If sep is not specified, any whitespace string\n\
8833is a separator.");
8834
8835static PyObject*
8836unicode_rsplit(PyUnicodeObject *self, PyObject *args)
8837{
8838 PyObject *substring = Py_None;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008839 Py_ssize_t maxcount = -1;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008840
Martin v. Löwis18e16552006-02-15 17:27:45 +00008841 if (!PyArg_ParseTuple(args, "|On:rsplit", &substring, &maxcount))
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008842 return NULL;
8843
8844 if (substring == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00008845 return rsplit(self, NULL, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008846 else if (PyUnicode_Check(substring))
Benjamin Peterson29060642009-01-31 22:14:21 +00008847 return rsplit(self, (PyUnicodeObject *)substring, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008848 else
Benjamin Peterson29060642009-01-31 22:14:21 +00008849 return PyUnicode_RSplit((PyObject *)self, substring, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008850}
8851
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008852PyDoc_STRVAR(splitlines__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008853 "S.splitlines([keepends]) -> list of strings\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008854\n\
8855Return a list of the lines in S, breaking at line boundaries.\n\
Guido van Rossum86662912000-04-11 15:38:46 +00008856Line breaks are not included in the resulting list unless keepends\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008857is given and true.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008858
8859static PyObject*
8860unicode_splitlines(PyUnicodeObject *self, PyObject *args)
8861{
Guido van Rossum86662912000-04-11 15:38:46 +00008862 int keepends = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008863
Guido van Rossum86662912000-04-11 15:38:46 +00008864 if (!PyArg_ParseTuple(args, "|i:splitlines", &keepends))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008865 return NULL;
8866
Guido van Rossum86662912000-04-11 15:38:46 +00008867 return PyUnicode_Splitlines((PyObject *)self, keepends);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008868}
8869
8870static
Guido van Rossumf15a29f2007-05-04 00:41:39 +00008871PyObject *unicode_str(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008872{
Walter Dörwald346737f2007-05-31 10:44:43 +00008873 if (PyUnicode_CheckExact(self)) {
8874 Py_INCREF(self);
8875 return self;
8876 } else
8877 /* Subtype -- return genuine unicode string with the same value. */
8878 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(self),
8879 PyUnicode_GET_SIZE(self));
Guido van Rossumd57fd912000-03-10 22:53:23 +00008880}
8881
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008882PyDoc_STRVAR(swapcase__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008883 "S.swapcase() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008884\n\
8885Return a copy of S with uppercase characters converted to lowercase\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008886and vice versa.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008887
8888static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008889unicode_swapcase(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008890{
Guido van Rossumd57fd912000-03-10 22:53:23 +00008891 return fixup(self, fixswapcase);
8892}
8893
Georg Brandlceee0772007-11-27 23:48:05 +00008894PyDoc_STRVAR(maketrans__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008895 "str.maketrans(x[, y[, z]]) -> dict (static method)\n\
Georg Brandlceee0772007-11-27 23:48:05 +00008896\n\
8897Return a translation table usable for str.translate().\n\
8898If there is only one argument, it must be a dictionary mapping Unicode\n\
8899ordinals (integers) or characters to Unicode ordinals, strings or None.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00008900Character keys will be then converted to ordinals.\n\
Georg Brandlceee0772007-11-27 23:48:05 +00008901If there are two arguments, they must be strings of equal length, and\n\
8902in the resulting dictionary, each character in x will be mapped to the\n\
8903character at the same position in y. If there is a third argument, it\n\
8904must be a string, whose characters will be mapped to None in the result.");
8905
8906static PyObject*
8907unicode_maketrans(PyUnicodeObject *null, PyObject *args)
8908{
8909 PyObject *x, *y = NULL, *z = NULL;
8910 PyObject *new = NULL, *key, *value;
8911 Py_ssize_t i = 0;
8912 int res;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008913
Georg Brandlceee0772007-11-27 23:48:05 +00008914 if (!PyArg_ParseTuple(args, "O|UU:maketrans", &x, &y, &z))
8915 return NULL;
8916 new = PyDict_New();
8917 if (!new)
8918 return NULL;
8919 if (y != NULL) {
8920 /* x must be a string too, of equal length */
8921 Py_ssize_t ylen = PyUnicode_GET_SIZE(y);
8922 if (!PyUnicode_Check(x)) {
8923 PyErr_SetString(PyExc_TypeError, "first maketrans argument must "
8924 "be a string if there is a second argument");
8925 goto err;
8926 }
8927 if (PyUnicode_GET_SIZE(x) != ylen) {
8928 PyErr_SetString(PyExc_ValueError, "the first two maketrans "
8929 "arguments must have equal length");
8930 goto err;
8931 }
8932 /* create entries for translating chars in x to those in y */
8933 for (i = 0; i < PyUnicode_GET_SIZE(x); i++) {
Christian Heimes217cfd12007-12-02 14:31:20 +00008934 key = PyLong_FromLong(PyUnicode_AS_UNICODE(x)[i]);
Benjamin Peterson53aa1d72011-12-20 13:29:45 -06008935 if (!key)
Georg Brandlceee0772007-11-27 23:48:05 +00008936 goto err;
Benjamin Peterson53aa1d72011-12-20 13:29:45 -06008937 value = PyLong_FromLong(PyUnicode_AS_UNICODE(y)[i]);
8938 if (!value) {
8939 Py_DECREF(key);
8940 goto err;
8941 }
Georg Brandlceee0772007-11-27 23:48:05 +00008942 res = PyDict_SetItem(new, key, value);
8943 Py_DECREF(key);
8944 Py_DECREF(value);
8945 if (res < 0)
8946 goto err;
8947 }
8948 /* create entries for deleting chars in z */
8949 if (z != NULL) {
8950 for (i = 0; i < PyUnicode_GET_SIZE(z); i++) {
Christian Heimes217cfd12007-12-02 14:31:20 +00008951 key = PyLong_FromLong(PyUnicode_AS_UNICODE(z)[i]);
Georg Brandlceee0772007-11-27 23:48:05 +00008952 if (!key)
8953 goto err;
8954 res = PyDict_SetItem(new, key, Py_None);
8955 Py_DECREF(key);
8956 if (res < 0)
8957 goto err;
8958 }
8959 }
8960 } else {
8961 /* x must be a dict */
Raymond Hettinger3ad05762009-05-29 22:11:22 +00008962 if (!PyDict_CheckExact(x)) {
Georg Brandlceee0772007-11-27 23:48:05 +00008963 PyErr_SetString(PyExc_TypeError, "if you give only one argument "
8964 "to maketrans it must be a dict");
8965 goto err;
8966 }
8967 /* copy entries into the new dict, converting string keys to int keys */
8968 while (PyDict_Next(x, &i, &key, &value)) {
8969 if (PyUnicode_Check(key)) {
8970 /* convert string keys to integer keys */
8971 PyObject *newkey;
8972 if (PyUnicode_GET_SIZE(key) != 1) {
8973 PyErr_SetString(PyExc_ValueError, "string keys in translate "
8974 "table must be of length 1");
8975 goto err;
8976 }
Christian Heimes217cfd12007-12-02 14:31:20 +00008977 newkey = PyLong_FromLong(PyUnicode_AS_UNICODE(key)[0]);
Georg Brandlceee0772007-11-27 23:48:05 +00008978 if (!newkey)
8979 goto err;
8980 res = PyDict_SetItem(new, newkey, value);
8981 Py_DECREF(newkey);
8982 if (res < 0)
8983 goto err;
Christian Heimes217cfd12007-12-02 14:31:20 +00008984 } else if (PyLong_Check(key)) {
Georg Brandlceee0772007-11-27 23:48:05 +00008985 /* just keep integer keys */
8986 if (PyDict_SetItem(new, key, value) < 0)
8987 goto err;
8988 } else {
8989 PyErr_SetString(PyExc_TypeError, "keys in translate table must "
8990 "be strings or integers");
8991 goto err;
8992 }
8993 }
8994 }
8995 return new;
8996 err:
8997 Py_DECREF(new);
8998 return NULL;
8999}
9000
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009001PyDoc_STRVAR(translate__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009002 "S.translate(table) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009003\n\
9004Return a copy of the string S, where all characters have been mapped\n\
9005through the given translation table, which must be a mapping of\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00009006Unicode ordinals to Unicode ordinals, strings, or None.\n\
Walter Dörwald5c1ee172002-09-04 20:31:32 +00009007Unmapped characters are left untouched. Characters mapped to None\n\
9008are deleted.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009009
9010static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009011unicode_translate(PyUnicodeObject *self, PyObject *table)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009012{
Georg Brandlceee0772007-11-27 23:48:05 +00009013 return PyUnicode_TranslateCharmap(self->str, self->length, table, "ignore");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009014}
9015
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009016PyDoc_STRVAR(upper__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009017 "S.upper() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009018\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009019Return a copy of S converted to uppercase.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009020
9021static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009022unicode_upper(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009023{
Guido van Rossumd57fd912000-03-10 22:53:23 +00009024 return fixup(self, fixupper);
9025}
9026
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009027PyDoc_STRVAR(zfill__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009028 "S.zfill(width) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009029\n\
Benjamin Peterson9aa42992008-09-10 21:57:34 +00009030Pad a numeric string S with zeros on the left, to fill a field\n\
9031of the specified width. The string S is never truncated.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009032
9033static PyObject *
9034unicode_zfill(PyUnicodeObject *self, PyObject *args)
9035{
Martin v. Löwis18e16552006-02-15 17:27:45 +00009036 Py_ssize_t fill;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009037 PyUnicodeObject *u;
9038
Martin v. Löwis18e16552006-02-15 17:27:45 +00009039 Py_ssize_t width;
9040 if (!PyArg_ParseTuple(args, "n:zfill", &width))
Guido van Rossumd57fd912000-03-10 22:53:23 +00009041 return NULL;
9042
9043 if (self->length >= width) {
Walter Dörwald0fe940c2002-04-15 18:42:15 +00009044 if (PyUnicode_CheckExact(self)) {
9045 Py_INCREF(self);
9046 return (PyObject*) self;
9047 }
9048 else
9049 return PyUnicode_FromUnicode(
9050 PyUnicode_AS_UNICODE(self),
9051 PyUnicode_GET_SIZE(self)
Benjamin Peterson29060642009-01-31 22:14:21 +00009052 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00009053 }
9054
9055 fill = width - self->length;
9056
9057 u = pad(self, fill, 0, '0');
9058
Walter Dörwald068325e2002-04-15 13:36:47 +00009059 if (u == NULL)
9060 return NULL;
9061
Guido van Rossumd57fd912000-03-10 22:53:23 +00009062 if (u->str[fill] == '+' || u->str[fill] == '-') {
9063 /* move sign to beginning of string */
9064 u->str[0] = u->str[fill];
9065 u->str[fill] = '0';
9066 }
9067
9068 return (PyObject*) u;
9069}
Guido van Rossumd57fd912000-03-10 22:53:23 +00009070
9071#if 0
9072static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009073unicode_freelistsize(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009074{
Christian Heimes2202f872008-02-06 14:31:34 +00009075 return PyLong_FromLong(numfree);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009076}
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00009077
9078static PyObject *
9079unicode__decimal2ascii(PyObject *self)
9080{
9081 return PyUnicode_TransformDecimalToASCII(PyUnicode_AS_UNICODE(self),
9082 PyUnicode_GET_SIZE(self));
9083}
Guido van Rossumd57fd912000-03-10 22:53:23 +00009084#endif
9085
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009086PyDoc_STRVAR(startswith__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009087 "S.startswith(prefix[, start[, end]]) -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009088\n\
Guido van Rossuma7132182003-04-09 19:32:45 +00009089Return True if S starts with the specified prefix, False otherwise.\n\
9090With optional start, test S beginning at that position.\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009091With optional end, stop comparing S at that position.\n\
9092prefix can also be a tuple of strings to try.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009093
9094static PyObject *
9095unicode_startswith(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00009096 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009097{
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009098 PyObject *subobj;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009099 PyUnicodeObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +00009100 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009101 Py_ssize_t end = PY_SSIZE_T_MAX;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009102 int result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009103
Jesus Ceaac451502011-04-20 17:09:23 +02009104 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +00009105 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009106 if (PyTuple_Check(subobj)) {
9107 Py_ssize_t i;
9108 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
9109 substring = (PyUnicodeObject *)PyUnicode_FromObject(
Benjamin Peterson29060642009-01-31 22:14:21 +00009110 PyTuple_GET_ITEM(subobj, i));
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009111 if (substring == NULL)
9112 return NULL;
9113 result = tailmatch(self, substring, start, end, -1);
9114 Py_DECREF(substring);
9115 if (result) {
9116 Py_RETURN_TRUE;
9117 }
9118 }
9119 /* nothing matched */
9120 Py_RETURN_FALSE;
9121 }
9122 substring = (PyUnicodeObject *)PyUnicode_FromObject(subobj);
Ezio Melottiba42fd52011-04-26 06:09:45 +03009123 if (substring == NULL) {
9124 if (PyErr_ExceptionMatches(PyExc_TypeError))
9125 PyErr_Format(PyExc_TypeError, "startswith first arg must be str or "
9126 "a tuple of str, not %s", Py_TYPE(subobj)->tp_name);
Benjamin Peterson29060642009-01-31 22:14:21 +00009127 return NULL;
Ezio Melottiba42fd52011-04-26 06:09:45 +03009128 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009129 result = tailmatch(self, substring, start, end, -1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009130 Py_DECREF(substring);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009131 return PyBool_FromLong(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009132}
9133
9134
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009135PyDoc_STRVAR(endswith__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009136 "S.endswith(suffix[, start[, end]]) -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009137\n\
Guido van Rossuma7132182003-04-09 19:32:45 +00009138Return True if S ends with the specified suffix, False otherwise.\n\
9139With optional start, test S beginning at that position.\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009140With optional end, stop comparing S at that position.\n\
9141suffix can also be a tuple of strings to try.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009142
9143static PyObject *
9144unicode_endswith(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00009145 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009146{
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009147 PyObject *subobj;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009148 PyUnicodeObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +00009149 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009150 Py_ssize_t end = PY_SSIZE_T_MAX;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009151 int result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009152
Jesus Ceaac451502011-04-20 17:09:23 +02009153 if (!stringlib_parse_args_finds("endswith", args, &subobj, &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +00009154 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009155 if (PyTuple_Check(subobj)) {
9156 Py_ssize_t i;
9157 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
9158 substring = (PyUnicodeObject *)PyUnicode_FromObject(
Benjamin Peterson29060642009-01-31 22:14:21 +00009159 PyTuple_GET_ITEM(subobj, i));
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009160 if (substring == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009161 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009162 result = tailmatch(self, substring, start, end, +1);
9163 Py_DECREF(substring);
9164 if (result) {
9165 Py_RETURN_TRUE;
9166 }
9167 }
9168 Py_RETURN_FALSE;
9169 }
9170 substring = (PyUnicodeObject *)PyUnicode_FromObject(subobj);
Ezio Melottiba42fd52011-04-26 06:09:45 +03009171 if (substring == NULL) {
9172 if (PyErr_ExceptionMatches(PyExc_TypeError))
9173 PyErr_Format(PyExc_TypeError, "endswith first arg must be str or "
9174 "a tuple of str, not %s", Py_TYPE(subobj)->tp_name);
Benjamin Peterson29060642009-01-31 22:14:21 +00009175 return NULL;
Ezio Melottiba42fd52011-04-26 06:09:45 +03009176 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009177 result = tailmatch(self, substring, start, end, +1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009178 Py_DECREF(substring);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009179 return PyBool_FromLong(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009180}
9181
Eric Smith8c663262007-08-25 02:26:07 +00009182#include "stringlib/string_format.h"
9183
9184PyDoc_STRVAR(format__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009185 "S.format(*args, **kwargs) -> str\n\
Eric Smith8c663262007-08-25 02:26:07 +00009186\n\
Eric Smith51d2fd92010-11-06 19:27:37 +00009187Return a formatted version of S, using substitutions from args and kwargs.\n\
9188The substitutions are identified by braces ('{' and '}').");
Eric Smith8c663262007-08-25 02:26:07 +00009189
Eric Smith27bbca62010-11-04 17:06:58 +00009190PyDoc_STRVAR(format_map__doc__,
9191 "S.format_map(mapping) -> str\n\
9192\n\
Eric Smith51d2fd92010-11-06 19:27:37 +00009193Return a formatted version of S, using substitutions from mapping.\n\
9194The substitutions are identified by braces ('{' and '}').");
Eric Smith27bbca62010-11-04 17:06:58 +00009195
Eric Smith4a7d76d2008-05-30 18:10:19 +00009196static PyObject *
9197unicode__format__(PyObject* self, PyObject* args)
9198{
9199 PyObject *format_spec;
9200
9201 if (!PyArg_ParseTuple(args, "U:__format__", &format_spec))
9202 return NULL;
9203
9204 return _PyUnicode_FormatAdvanced(self,
9205 PyUnicode_AS_UNICODE(format_spec),
9206 PyUnicode_GET_SIZE(format_spec));
9207}
9208
Eric Smith8c663262007-08-25 02:26:07 +00009209PyDoc_STRVAR(p_format__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009210 "S.__format__(format_spec) -> str\n\
Eric Smith8c663262007-08-25 02:26:07 +00009211\n\
Eric Smith51d2fd92010-11-06 19:27:37 +00009212Return a formatted version of S as described by format_spec.");
Eric Smith8c663262007-08-25 02:26:07 +00009213
9214static PyObject *
Georg Brandlc28e1fa2008-06-10 19:20:26 +00009215unicode__sizeof__(PyUnicodeObject *v)
9216{
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +00009217 return PyLong_FromSsize_t(sizeof(PyUnicodeObject) +
9218 sizeof(Py_UNICODE) * (v->length + 1));
Georg Brandlc28e1fa2008-06-10 19:20:26 +00009219}
9220
9221PyDoc_STRVAR(sizeof__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009222 "S.__sizeof__() -> size of S in memory, in bytes");
Georg Brandlc28e1fa2008-06-10 19:20:26 +00009223
9224static PyObject *
Guido van Rossum5d9113d2003-01-29 17:58:45 +00009225unicode_getnewargs(PyUnicodeObject *v)
9226{
Benjamin Peterson14339b62009-01-31 16:36:08 +00009227 return Py_BuildValue("(u#)", v->str, v->length);
Guido van Rossum5d9113d2003-01-29 17:58:45 +00009228}
9229
Guido van Rossumd57fd912000-03-10 22:53:23 +00009230static PyMethodDef unicode_methods[] = {
Benjamin Peterson28a4dce2010-12-12 01:33:04 +00009231 {"encode", (PyCFunction) unicode_encode, METH_VARARGS | METH_KEYWORDS, encode__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009232 {"replace", (PyCFunction) unicode_replace, METH_VARARGS, replace__doc__},
9233 {"split", (PyCFunction) unicode_split, METH_VARARGS, split__doc__},
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009234 {"rsplit", (PyCFunction) unicode_rsplit, METH_VARARGS, rsplit__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009235 {"join", (PyCFunction) unicode_join, METH_O, join__doc__},
9236 {"capitalize", (PyCFunction) unicode_capitalize, METH_NOARGS, capitalize__doc__},
9237 {"title", (PyCFunction) unicode_title, METH_NOARGS, title__doc__},
9238 {"center", (PyCFunction) unicode_center, METH_VARARGS, center__doc__},
9239 {"count", (PyCFunction) unicode_count, METH_VARARGS, count__doc__},
9240 {"expandtabs", (PyCFunction) unicode_expandtabs, METH_VARARGS, expandtabs__doc__},
9241 {"find", (PyCFunction) unicode_find, METH_VARARGS, find__doc__},
Thomas Wouters477c8d52006-05-27 19:21:47 +00009242 {"partition", (PyCFunction) unicode_partition, METH_O, partition__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009243 {"index", (PyCFunction) unicode_index, METH_VARARGS, index__doc__},
9244 {"ljust", (PyCFunction) unicode_ljust, METH_VARARGS, ljust__doc__},
9245 {"lower", (PyCFunction) unicode_lower, METH_NOARGS, lower__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00009246 {"lstrip", (PyCFunction) unicode_lstrip, METH_VARARGS, lstrip__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009247 {"rfind", (PyCFunction) unicode_rfind, METH_VARARGS, rfind__doc__},
9248 {"rindex", (PyCFunction) unicode_rindex, METH_VARARGS, rindex__doc__},
9249 {"rjust", (PyCFunction) unicode_rjust, METH_VARARGS, rjust__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00009250 {"rstrip", (PyCFunction) unicode_rstrip, METH_VARARGS, rstrip__doc__},
Thomas Wouters477c8d52006-05-27 19:21:47 +00009251 {"rpartition", (PyCFunction) unicode_rpartition, METH_O, rpartition__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009252 {"splitlines", (PyCFunction) unicode_splitlines, METH_VARARGS, splitlines__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00009253 {"strip", (PyCFunction) unicode_strip, METH_VARARGS, strip__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009254 {"swapcase", (PyCFunction) unicode_swapcase, METH_NOARGS, swapcase__doc__},
9255 {"translate", (PyCFunction) unicode_translate, METH_O, translate__doc__},
9256 {"upper", (PyCFunction) unicode_upper, METH_NOARGS, upper__doc__},
9257 {"startswith", (PyCFunction) unicode_startswith, METH_VARARGS, startswith__doc__},
9258 {"endswith", (PyCFunction) unicode_endswith, METH_VARARGS, endswith__doc__},
9259 {"islower", (PyCFunction) unicode_islower, METH_NOARGS, islower__doc__},
9260 {"isupper", (PyCFunction) unicode_isupper, METH_NOARGS, isupper__doc__},
9261 {"istitle", (PyCFunction) unicode_istitle, METH_NOARGS, istitle__doc__},
9262 {"isspace", (PyCFunction) unicode_isspace, METH_NOARGS, isspace__doc__},
9263 {"isdecimal", (PyCFunction) unicode_isdecimal, METH_NOARGS, isdecimal__doc__},
9264 {"isdigit", (PyCFunction) unicode_isdigit, METH_NOARGS, isdigit__doc__},
9265 {"isnumeric", (PyCFunction) unicode_isnumeric, METH_NOARGS, isnumeric__doc__},
9266 {"isalpha", (PyCFunction) unicode_isalpha, METH_NOARGS, isalpha__doc__},
9267 {"isalnum", (PyCFunction) unicode_isalnum, METH_NOARGS, isalnum__doc__},
Martin v. Löwis47383402007-08-15 07:32:56 +00009268 {"isidentifier", (PyCFunction) unicode_isidentifier, METH_NOARGS, isidentifier__doc__},
Georg Brandl559e5d72008-06-11 18:37:52 +00009269 {"isprintable", (PyCFunction) unicode_isprintable, METH_NOARGS, isprintable__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009270 {"zfill", (PyCFunction) unicode_zfill, METH_VARARGS, zfill__doc__},
Eric Smith9cd1e092007-08-31 18:39:38 +00009271 {"format", (PyCFunction) do_string_format, METH_VARARGS | METH_KEYWORDS, format__doc__},
Eric Smith27bbca62010-11-04 17:06:58 +00009272 {"format_map", (PyCFunction) do_string_format_map, METH_O, format_map__doc__},
Eric Smith4a7d76d2008-05-30 18:10:19 +00009273 {"__format__", (PyCFunction) unicode__format__, METH_VARARGS, p_format__doc__},
Georg Brandlceee0772007-11-27 23:48:05 +00009274 {"maketrans", (PyCFunction) unicode_maketrans,
9275 METH_VARARGS | METH_STATIC, maketrans__doc__},
Georg Brandlc28e1fa2008-06-10 19:20:26 +00009276 {"__sizeof__", (PyCFunction) unicode__sizeof__, METH_NOARGS, sizeof__doc__},
Walter Dörwald068325e2002-04-15 13:36:47 +00009277#if 0
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009278 {"capwords", (PyCFunction) unicode_capwords, METH_NOARGS, capwords__doc__},
Guido van Rossumd57fd912000-03-10 22:53:23 +00009279#endif
9280
9281#if 0
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00009282 /* These methods are just used for debugging the implementation. */
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009283 {"freelistsize", (PyCFunction) unicode_freelistsize, METH_NOARGS},
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00009284 {"_decimal2ascii", (PyCFunction) unicode__decimal2ascii, METH_NOARGS},
Guido van Rossumd57fd912000-03-10 22:53:23 +00009285#endif
9286
Benjamin Peterson14339b62009-01-31 16:36:08 +00009287 {"__getnewargs__", (PyCFunction)unicode_getnewargs, METH_NOARGS},
Guido van Rossumd57fd912000-03-10 22:53:23 +00009288 {NULL, NULL}
9289};
9290
Neil Schemenauerce30bc92002-11-18 16:10:18 +00009291static PyObject *
9292unicode_mod(PyObject *v, PyObject *w)
9293{
Benjamin Peterson29060642009-01-31 22:14:21 +00009294 if (!PyUnicode_Check(v)) {
9295 Py_INCREF(Py_NotImplemented);
9296 return Py_NotImplemented;
9297 }
9298 return PyUnicode_Format(v, w);
Neil Schemenauerce30bc92002-11-18 16:10:18 +00009299}
9300
9301static PyNumberMethods unicode_as_number = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00009302 0, /*nb_add*/
9303 0, /*nb_subtract*/
9304 0, /*nb_multiply*/
9305 unicode_mod, /*nb_remainder*/
Neil Schemenauerce30bc92002-11-18 16:10:18 +00009306};
9307
Guido van Rossumd57fd912000-03-10 22:53:23 +00009308static PySequenceMethods unicode_as_sequence = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00009309 (lenfunc) unicode_length, /* sq_length */
9310 PyUnicode_Concat, /* sq_concat */
9311 (ssizeargfunc) unicode_repeat, /* sq_repeat */
9312 (ssizeargfunc) unicode_getitem, /* sq_item */
9313 0, /* sq_slice */
9314 0, /* sq_ass_item */
9315 0, /* sq_ass_slice */
9316 PyUnicode_Contains, /* sq_contains */
Guido van Rossumd57fd912000-03-10 22:53:23 +00009317};
9318
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009319static PyObject*
9320unicode_subscript(PyUnicodeObject* self, PyObject* item)
9321{
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00009322 if (PyIndex_Check(item)) {
9323 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009324 if (i == -1 && PyErr_Occurred())
9325 return NULL;
9326 if (i < 0)
Martin v. Löwisdea59e52006-01-05 10:00:36 +00009327 i += PyUnicode_GET_SIZE(self);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009328 return unicode_getitem(self, i);
9329 } else if (PySlice_Check(item)) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00009330 Py_ssize_t start, stop, step, slicelength, cur, i;
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009331 Py_UNICODE* source_buf;
9332 Py_UNICODE* result_buf;
9333 PyObject* result;
9334
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00009335 if (PySlice_GetIndicesEx(item, PyUnicode_GET_SIZE(self),
Benjamin Peterson29060642009-01-31 22:14:21 +00009336 &start, &stop, &step, &slicelength) < 0) {
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009337 return NULL;
9338 }
9339
9340 if (slicelength <= 0) {
9341 return PyUnicode_FromUnicode(NULL, 0);
Thomas Woutersed03b412007-08-28 21:37:11 +00009342 } else if (start == 0 && step == 1 && slicelength == self->length &&
9343 PyUnicode_CheckExact(self)) {
9344 Py_INCREF(self);
9345 return (PyObject *)self;
9346 } else if (step == 1) {
9347 return PyUnicode_FromUnicode(self->str + start, slicelength);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009348 } else {
9349 source_buf = PyUnicode_AS_UNICODE((PyObject*)self);
Christian Heimesb186d002008-03-18 15:15:01 +00009350 result_buf = (Py_UNICODE *)PyObject_MALLOC(slicelength*
9351 sizeof(Py_UNICODE));
Benjamin Peterson14339b62009-01-31 16:36:08 +00009352
Benjamin Peterson29060642009-01-31 22:14:21 +00009353 if (result_buf == NULL)
9354 return PyErr_NoMemory();
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009355
9356 for (cur = start, i = 0; i < slicelength; cur += step, i++) {
9357 result_buf[i] = source_buf[cur];
9358 }
Tim Petersced69f82003-09-16 20:30:58 +00009359
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009360 result = PyUnicode_FromUnicode(result_buf, slicelength);
Christian Heimesb186d002008-03-18 15:15:01 +00009361 PyObject_FREE(result_buf);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009362 return result;
9363 }
9364 } else {
9365 PyErr_SetString(PyExc_TypeError, "string indices must be integers");
9366 return NULL;
9367 }
9368}
9369
9370static PyMappingMethods unicode_as_mapping = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00009371 (lenfunc)unicode_length, /* mp_length */
9372 (binaryfunc)unicode_subscript, /* mp_subscript */
9373 (objobjargproc)0, /* mp_ass_subscript */
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009374};
9375
Guido van Rossumd57fd912000-03-10 22:53:23 +00009376
Guido van Rossumd57fd912000-03-10 22:53:23 +00009377/* Helpers for PyUnicode_Format() */
9378
9379static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00009380getnextarg(PyObject *args, Py_ssize_t arglen, Py_ssize_t *p_argidx)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009381{
Martin v. Löwis18e16552006-02-15 17:27:45 +00009382 Py_ssize_t argidx = *p_argidx;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009383 if (argidx < arglen) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009384 (*p_argidx)++;
9385 if (arglen < 0)
9386 return args;
9387 else
9388 return PyTuple_GetItem(args, argidx);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009389 }
9390 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00009391 "not enough arguments for format string");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009392 return NULL;
9393}
9394
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009395/* Returns a new reference to a PyUnicode object, or NULL on failure. */
Guido van Rossumd57fd912000-03-10 22:53:23 +00009396
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009397static PyObject *
9398formatfloat(PyObject *v, int flags, int prec, int type)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009399{
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009400 char *p;
9401 PyObject *result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009402 double x;
Tim Petersced69f82003-09-16 20:30:58 +00009403
Guido van Rossumd57fd912000-03-10 22:53:23 +00009404 x = PyFloat_AsDouble(v);
9405 if (x == -1.0 && PyErr_Occurred())
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009406 return NULL;
9407
Guido van Rossumd57fd912000-03-10 22:53:23 +00009408 if (prec < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00009409 prec = 6;
Eric Smith0923d1d2009-04-16 20:16:10 +00009410
Eric Smith0923d1d2009-04-16 20:16:10 +00009411 p = PyOS_double_to_string(x, type, prec,
9412 (flags & F_ALT) ? Py_DTSF_ALT : 0, NULL);
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009413 if (p == NULL)
9414 return NULL;
9415 result = PyUnicode_FromStringAndSize(p, strlen(p));
Eric Smith0923d1d2009-04-16 20:16:10 +00009416 PyMem_Free(p);
9417 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009418}
9419
Tim Peters38fd5b62000-09-21 05:43:11 +00009420static PyObject*
9421formatlong(PyObject *val, int flags, int prec, int type)
9422{
Benjamin Peterson14339b62009-01-31 16:36:08 +00009423 char *buf;
9424 int len;
9425 PyObject *str; /* temporary string object. */
9426 PyObject *result;
Tim Peters38fd5b62000-09-21 05:43:11 +00009427
Benjamin Peterson14339b62009-01-31 16:36:08 +00009428 str = _PyBytes_FormatLong(val, flags, prec, type, &buf, &len);
9429 if (!str)
9430 return NULL;
9431 result = PyUnicode_FromStringAndSize(buf, len);
9432 Py_DECREF(str);
9433 return result;
Tim Peters38fd5b62000-09-21 05:43:11 +00009434}
9435
Guido van Rossumd57fd912000-03-10 22:53:23 +00009436static int
9437formatchar(Py_UNICODE *buf,
Marc-André Lemburgf28dd832000-06-30 10:29:57 +00009438 size_t buflen,
9439 PyObject *v)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009440{
Amaury Forgeot d'Arca4db6862008-07-04 21:26:43 +00009441 /* presume that the buffer is at least 3 characters long */
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +00009442 if (PyUnicode_Check(v)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009443 if (PyUnicode_GET_SIZE(v) == 1) {
9444 buf[0] = PyUnicode_AS_UNICODE(v)[0];
9445 buf[1] = '\0';
9446 return 1;
9447 }
9448#ifndef Py_UNICODE_WIDE
9449 if (PyUnicode_GET_SIZE(v) == 2) {
9450 /* Decode a valid surrogate pair */
9451 int c0 = PyUnicode_AS_UNICODE(v)[0];
9452 int c1 = PyUnicode_AS_UNICODE(v)[1];
9453 if (0xD800 <= c0 && c0 <= 0xDBFF &&
9454 0xDC00 <= c1 && c1 <= 0xDFFF) {
9455 buf[0] = c0;
9456 buf[1] = c1;
9457 buf[2] = '\0';
9458 return 2;
9459 }
9460 }
9461#endif
9462 goto onError;
9463 }
9464 else {
9465 /* Integer input truncated to a character */
9466 long x;
9467 x = PyLong_AsLong(v);
9468 if (x == -1 && PyErr_Occurred())
9469 goto onError;
9470
9471 if (x < 0 || x > 0x10ffff) {
9472 PyErr_SetString(PyExc_OverflowError,
9473 "%c arg not in range(0x110000)");
9474 return -1;
9475 }
9476
9477#ifndef Py_UNICODE_WIDE
9478 if (x > 0xffff) {
9479 x -= 0x10000;
9480 buf[0] = (Py_UNICODE)(0xD800 | (x >> 10));
9481 buf[1] = (Py_UNICODE)(0xDC00 | (x & 0x3FF));
9482 return 2;
9483 }
9484#endif
9485 buf[0] = (Py_UNICODE) x;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009486 buf[1] = '\0';
9487 return 1;
9488 }
Amaury Forgeot d'Arca4db6862008-07-04 21:26:43 +00009489
Benjamin Peterson29060642009-01-31 22:14:21 +00009490 onError:
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +00009491 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00009492 "%c requires int or char");
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +00009493 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009494}
9495
Marc-André Lemburgf28dd832000-06-30 10:29:57 +00009496/* fmt%(v1,v2,...) is roughly equivalent to sprintf(fmt, v1, v2, ...)
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009497 FORMATBUFLEN is the length of the buffer in which chars are formatted.
Marc-André Lemburgf28dd832000-06-30 10:29:57 +00009498*/
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009499#define FORMATBUFLEN (size_t)10
Marc-André Lemburgf28dd832000-06-30 10:29:57 +00009500
Guido van Rossumd57fd912000-03-10 22:53:23 +00009501PyObject *PyUnicode_Format(PyObject *format,
Benjamin Peterson29060642009-01-31 22:14:21 +00009502 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009503{
9504 Py_UNICODE *fmt, *res;
Martin v. Löwis18e16552006-02-15 17:27:45 +00009505 Py_ssize_t fmtcnt, rescnt, reslen, arglen, argidx;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009506 int args_owned = 0;
9507 PyUnicodeObject *result = NULL;
9508 PyObject *dict = NULL;
9509 PyObject *uformat;
Tim Petersced69f82003-09-16 20:30:58 +00009510
Guido van Rossumd57fd912000-03-10 22:53:23 +00009511 if (format == NULL || args == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009512 PyErr_BadInternalCall();
9513 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009514 }
9515 uformat = PyUnicode_FromObject(format);
Fred Drakee4315f52000-05-09 19:53:39 +00009516 if (uformat == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009517 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009518 fmt = PyUnicode_AS_UNICODE(uformat);
9519 fmtcnt = PyUnicode_GET_SIZE(uformat);
9520
9521 reslen = rescnt = fmtcnt + 100;
9522 result = _PyUnicode_New(reslen);
9523 if (result == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009524 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009525 res = PyUnicode_AS_UNICODE(result);
9526
9527 if (PyTuple_Check(args)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009528 arglen = PyTuple_Size(args);
9529 argidx = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009530 }
9531 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00009532 arglen = -1;
9533 argidx = -2;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009534 }
Benjamin Peterson28a6cfa2012-08-28 17:55:35 -04009535 if (PyMapping_Check(args) && !PyTuple_Check(args) && !PyUnicode_Check(args))
Benjamin Peterson29060642009-01-31 22:14:21 +00009536 dict = args;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009537
9538 while (--fmtcnt >= 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009539 if (*fmt != '%') {
9540 if (--rescnt < 0) {
9541 rescnt = fmtcnt + 100;
9542 reslen += rescnt;
9543 if (_PyUnicode_Resize(&result, reslen) < 0)
9544 goto onError;
9545 res = PyUnicode_AS_UNICODE(result) + reslen - rescnt;
9546 --rescnt;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009547 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009548 *res++ = *fmt++;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009549 }
9550 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00009551 /* Got a format specifier */
9552 int flags = 0;
9553 Py_ssize_t width = -1;
9554 int prec = -1;
9555 Py_UNICODE c = '\0';
9556 Py_UNICODE fill;
9557 int isnumok;
9558 PyObject *v = NULL;
9559 PyObject *temp = NULL;
9560 Py_UNICODE *pbuf;
9561 Py_UNICODE sign;
9562 Py_ssize_t len;
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009563 Py_UNICODE formatbuf[FORMATBUFLEN]; /* For formatchar() */
Guido van Rossumd57fd912000-03-10 22:53:23 +00009564
Benjamin Peterson29060642009-01-31 22:14:21 +00009565 fmt++;
9566 if (*fmt == '(') {
9567 Py_UNICODE *keystart;
9568 Py_ssize_t keylen;
9569 PyObject *key;
9570 int pcount = 1;
Christian Heimesa612dc02008-02-24 13:08:18 +00009571
Benjamin Peterson29060642009-01-31 22:14:21 +00009572 if (dict == NULL) {
9573 PyErr_SetString(PyExc_TypeError,
9574 "format requires a mapping");
9575 goto onError;
9576 }
9577 ++fmt;
9578 --fmtcnt;
9579 keystart = fmt;
9580 /* Skip over balanced parentheses */
9581 while (pcount > 0 && --fmtcnt >= 0) {
9582 if (*fmt == ')')
9583 --pcount;
9584 else if (*fmt == '(')
9585 ++pcount;
9586 fmt++;
9587 }
9588 keylen = fmt - keystart - 1;
9589 if (fmtcnt < 0 || pcount > 0) {
9590 PyErr_SetString(PyExc_ValueError,
9591 "incomplete format key");
9592 goto onError;
9593 }
9594#if 0
9595 /* keys are converted to strings using UTF-8 and
9596 then looked up since Python uses strings to hold
9597 variables names etc. in its namespaces and we
9598 wouldn't want to break common idioms. */
9599 key = PyUnicode_EncodeUTF8(keystart,
9600 keylen,
9601 NULL);
9602#else
9603 key = PyUnicode_FromUnicode(keystart, keylen);
9604#endif
9605 if (key == NULL)
9606 goto onError;
9607 if (args_owned) {
9608 Py_DECREF(args);
9609 args_owned = 0;
9610 }
9611 args = PyObject_GetItem(dict, key);
9612 Py_DECREF(key);
9613 if (args == NULL) {
9614 goto onError;
9615 }
9616 args_owned = 1;
9617 arglen = -1;
9618 argidx = -2;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009619 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009620 while (--fmtcnt >= 0) {
9621 switch (c = *fmt++) {
9622 case '-': flags |= F_LJUST; continue;
9623 case '+': flags |= F_SIGN; continue;
9624 case ' ': flags |= F_BLANK; continue;
9625 case '#': flags |= F_ALT; continue;
9626 case '0': flags |= F_ZERO; continue;
9627 }
9628 break;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009629 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009630 if (c == '*') {
9631 v = getnextarg(args, arglen, &argidx);
9632 if (v == NULL)
9633 goto onError;
9634 if (!PyLong_Check(v)) {
9635 PyErr_SetString(PyExc_TypeError,
9636 "* wants int");
9637 goto onError;
9638 }
9639 width = PyLong_AsLong(v);
9640 if (width == -1 && PyErr_Occurred())
9641 goto onError;
9642 if (width < 0) {
9643 flags |= F_LJUST;
9644 width = -width;
9645 }
9646 if (--fmtcnt >= 0)
9647 c = *fmt++;
9648 }
9649 else if (c >= '0' && c <= '9') {
9650 width = c - '0';
9651 while (--fmtcnt >= 0) {
9652 c = *fmt++;
9653 if (c < '0' || c > '9')
9654 break;
Mark Dickinsonfb90c092012-10-28 10:18:03 +00009655 if (width > (PY_SSIZE_T_MAX - ((int)c - '0')) / 10) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009656 PyErr_SetString(PyExc_ValueError,
9657 "width too big");
Benjamin Peterson14339b62009-01-31 16:36:08 +00009658 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00009659 }
9660 width = width*10 + (c - '0');
9661 }
9662 }
9663 if (c == '.') {
9664 prec = 0;
9665 if (--fmtcnt >= 0)
9666 c = *fmt++;
9667 if (c == '*') {
9668 v = getnextarg(args, arglen, &argidx);
9669 if (v == NULL)
9670 goto onError;
9671 if (!PyLong_Check(v)) {
9672 PyErr_SetString(PyExc_TypeError,
9673 "* wants int");
9674 goto onError;
9675 }
9676 prec = PyLong_AsLong(v);
9677 if (prec == -1 && PyErr_Occurred())
9678 goto onError;
9679 if (prec < 0)
9680 prec = 0;
9681 if (--fmtcnt >= 0)
9682 c = *fmt++;
9683 }
9684 else if (c >= '0' && c <= '9') {
9685 prec = c - '0';
9686 while (--fmtcnt >= 0) {
Stefan Krah99212f62010-07-19 17:58:26 +00009687 c = *fmt++;
Benjamin Peterson29060642009-01-31 22:14:21 +00009688 if (c < '0' || c > '9')
9689 break;
Mark Dickinsonfb90c092012-10-28 10:18:03 +00009690 if (prec > (INT_MAX - ((int)c - '0')) / 10) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009691 PyErr_SetString(PyExc_ValueError,
9692 "prec too big");
9693 goto onError;
9694 }
9695 prec = prec*10 + (c - '0');
9696 }
9697 }
9698 } /* prec */
9699 if (fmtcnt >= 0) {
9700 if (c == 'h' || c == 'l' || c == 'L') {
9701 if (--fmtcnt >= 0)
9702 c = *fmt++;
9703 }
9704 }
9705 if (fmtcnt < 0) {
9706 PyErr_SetString(PyExc_ValueError,
9707 "incomplete format");
9708 goto onError;
9709 }
9710 if (c != '%') {
9711 v = getnextarg(args, arglen, &argidx);
9712 if (v == NULL)
9713 goto onError;
9714 }
9715 sign = 0;
9716 fill = ' ';
9717 switch (c) {
9718
9719 case '%':
9720 pbuf = formatbuf;
9721 /* presume that buffer length is at least 1 */
9722 pbuf[0] = '%';
9723 len = 1;
9724 break;
9725
9726 case 's':
9727 case 'r':
9728 case 'a':
Victor Stinner808fc0a2010-03-22 12:50:40 +00009729 if (PyUnicode_CheckExact(v) && c == 's') {
Benjamin Peterson29060642009-01-31 22:14:21 +00009730 temp = v;
9731 Py_INCREF(temp);
Benjamin Peterson14339b62009-01-31 16:36:08 +00009732 }
9733 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00009734 if (c == 's')
9735 temp = PyObject_Str(v);
9736 else if (c == 'r')
9737 temp = PyObject_Repr(v);
9738 else
9739 temp = PyObject_ASCII(v);
9740 if (temp == NULL)
9741 goto onError;
9742 if (PyUnicode_Check(temp))
9743 /* nothing to do */;
9744 else {
9745 Py_DECREF(temp);
9746 PyErr_SetString(PyExc_TypeError,
9747 "%s argument has non-string str()");
9748 goto onError;
9749 }
9750 }
9751 pbuf = PyUnicode_AS_UNICODE(temp);
9752 len = PyUnicode_GET_SIZE(temp);
9753 if (prec >= 0 && len > prec)
9754 len = prec;
9755 break;
9756
9757 case 'i':
9758 case 'd':
9759 case 'u':
9760 case 'o':
9761 case 'x':
9762 case 'X':
Benjamin Peterson29060642009-01-31 22:14:21 +00009763 isnumok = 0;
9764 if (PyNumber_Check(v)) {
9765 PyObject *iobj=NULL;
9766
9767 if (PyLong_Check(v)) {
9768 iobj = v;
9769 Py_INCREF(iobj);
9770 }
9771 else {
9772 iobj = PyNumber_Long(v);
9773 }
9774 if (iobj!=NULL) {
9775 if (PyLong_Check(iobj)) {
9776 isnumok = 1;
Senthil Kumaran9ebe08d2011-07-03 21:03:16 -07009777 temp = formatlong(iobj, flags, prec, (c == 'i'? 'd': c));
Benjamin Peterson29060642009-01-31 22:14:21 +00009778 Py_DECREF(iobj);
9779 if (!temp)
9780 goto onError;
9781 pbuf = PyUnicode_AS_UNICODE(temp);
9782 len = PyUnicode_GET_SIZE(temp);
9783 sign = 1;
9784 }
9785 else {
9786 Py_DECREF(iobj);
9787 }
9788 }
9789 }
9790 if (!isnumok) {
9791 PyErr_Format(PyExc_TypeError,
9792 "%%%c format: a number is required, "
9793 "not %.200s", (char)c, Py_TYPE(v)->tp_name);
9794 goto onError;
9795 }
9796 if (flags & F_ZERO)
9797 fill = '0';
9798 break;
9799
9800 case 'e':
9801 case 'E':
9802 case 'f':
9803 case 'F':
9804 case 'g':
9805 case 'G':
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009806 temp = formatfloat(v, flags, prec, c);
9807 if (!temp)
Benjamin Peterson29060642009-01-31 22:14:21 +00009808 goto onError;
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009809 pbuf = PyUnicode_AS_UNICODE(temp);
9810 len = PyUnicode_GET_SIZE(temp);
Benjamin Peterson29060642009-01-31 22:14:21 +00009811 sign = 1;
9812 if (flags & F_ZERO)
9813 fill = '0';
9814 break;
9815
9816 case 'c':
9817 pbuf = formatbuf;
9818 len = formatchar(pbuf, sizeof(formatbuf)/sizeof(Py_UNICODE), v);
9819 if (len < 0)
9820 goto onError;
9821 break;
9822
9823 default:
9824 PyErr_Format(PyExc_ValueError,
9825 "unsupported format character '%c' (0x%x) "
9826 "at index %zd",
9827 (31<=c && c<=126) ? (char)c : '?',
9828 (int)c,
9829 (Py_ssize_t)(fmt - 1 -
9830 PyUnicode_AS_UNICODE(uformat)));
9831 goto onError;
9832 }
9833 if (sign) {
9834 if (*pbuf == '-' || *pbuf == '+') {
9835 sign = *pbuf++;
9836 len--;
9837 }
9838 else if (flags & F_SIGN)
9839 sign = '+';
9840 else if (flags & F_BLANK)
9841 sign = ' ';
9842 else
9843 sign = 0;
9844 }
9845 if (width < len)
9846 width = len;
9847 if (rescnt - (sign != 0) < width) {
9848 reslen -= rescnt;
9849 rescnt = width + fmtcnt + 100;
9850 reslen += rescnt;
9851 if (reslen < 0) {
9852 Py_XDECREF(temp);
9853 PyErr_NoMemory();
9854 goto onError;
9855 }
9856 if (_PyUnicode_Resize(&result, reslen) < 0) {
9857 Py_XDECREF(temp);
9858 goto onError;
9859 }
9860 res = PyUnicode_AS_UNICODE(result)
9861 + reslen - rescnt;
9862 }
9863 if (sign) {
9864 if (fill != ' ')
9865 *res++ = sign;
9866 rescnt--;
9867 if (width > len)
9868 width--;
9869 }
9870 if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) {
9871 assert(pbuf[0] == '0');
9872 assert(pbuf[1] == c);
9873 if (fill != ' ') {
9874 *res++ = *pbuf++;
9875 *res++ = *pbuf++;
9876 }
9877 rescnt -= 2;
9878 width -= 2;
9879 if (width < 0)
9880 width = 0;
9881 len -= 2;
9882 }
9883 if (width > len && !(flags & F_LJUST)) {
9884 do {
9885 --rescnt;
9886 *res++ = fill;
9887 } while (--width > len);
9888 }
9889 if (fill == ' ') {
9890 if (sign)
9891 *res++ = sign;
9892 if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) {
9893 assert(pbuf[0] == '0');
9894 assert(pbuf[1] == c);
9895 *res++ = *pbuf++;
9896 *res++ = *pbuf++;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009897 }
9898 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009899 Py_UNICODE_COPY(res, pbuf, len);
9900 res += len;
9901 rescnt -= len;
9902 while (--width >= len) {
9903 --rescnt;
9904 *res++ = ' ';
9905 }
9906 if (dict && (argidx < arglen) && c != '%') {
9907 PyErr_SetString(PyExc_TypeError,
9908 "not all arguments converted during string formatting");
Thomas Woutersa96affe2006-03-12 00:29:36 +00009909 Py_XDECREF(temp);
Benjamin Peterson29060642009-01-31 22:14:21 +00009910 goto onError;
9911 }
9912 Py_XDECREF(temp);
9913 } /* '%' */
Guido van Rossumd57fd912000-03-10 22:53:23 +00009914 } /* until end */
9915 if (argidx < arglen && !dict) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009916 PyErr_SetString(PyExc_TypeError,
9917 "not all arguments converted during string formatting");
9918 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009919 }
9920
Thomas Woutersa96affe2006-03-12 00:29:36 +00009921 if (_PyUnicode_Resize(&result, reslen - rescnt) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00009922 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009923 if (args_owned) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009924 Py_DECREF(args);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009925 }
9926 Py_DECREF(uformat);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009927 return (PyObject *)result;
9928
Benjamin Peterson29060642009-01-31 22:14:21 +00009929 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00009930 Py_XDECREF(result);
9931 Py_DECREF(uformat);
9932 if (args_owned) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009933 Py_DECREF(args);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009934 }
9935 return NULL;
9936}
9937
Jeremy Hylton938ace62002-07-17 16:30:39 +00009938static PyObject *
Guido van Rossume023fe02001-08-30 03:12:59 +00009939unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
9940
Tim Peters6d6c1a32001-08-02 04:15:00 +00009941static PyObject *
9942unicode_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
9943{
Benjamin Peterson29060642009-01-31 22:14:21 +00009944 PyObject *x = NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009945 static char *kwlist[] = {"object", "encoding", "errors", 0};
9946 char *encoding = NULL;
9947 char *errors = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00009948
Benjamin Peterson14339b62009-01-31 16:36:08 +00009949 if (type != &PyUnicode_Type)
9950 return unicode_subtype_new(type, args, kwds);
9951 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:str",
Benjamin Peterson29060642009-01-31 22:14:21 +00009952 kwlist, &x, &encoding, &errors))
Benjamin Peterson14339b62009-01-31 16:36:08 +00009953 return NULL;
9954 if (x == NULL)
9955 return (PyObject *)_PyUnicode_New(0);
9956 if (encoding == NULL && errors == NULL)
9957 return PyObject_Str(x);
9958 else
Benjamin Peterson29060642009-01-31 22:14:21 +00009959 return PyUnicode_FromEncodedObject(x, encoding, errors);
Tim Peters6d6c1a32001-08-02 04:15:00 +00009960}
9961
Guido van Rossume023fe02001-08-30 03:12:59 +00009962static PyObject *
9963unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
9964{
Benjamin Peterson14339b62009-01-31 16:36:08 +00009965 PyUnicodeObject *tmp, *pnew;
9966 Py_ssize_t n;
Guido van Rossume023fe02001-08-30 03:12:59 +00009967
Benjamin Peterson14339b62009-01-31 16:36:08 +00009968 assert(PyType_IsSubtype(type, &PyUnicode_Type));
9969 tmp = (PyUnicodeObject *)unicode_new(&PyUnicode_Type, args, kwds);
9970 if (tmp == NULL)
9971 return NULL;
9972 assert(PyUnicode_Check(tmp));
9973 pnew = (PyUnicodeObject *) type->tp_alloc(type, n = tmp->length);
9974 if (pnew == NULL) {
9975 Py_DECREF(tmp);
9976 return NULL;
9977 }
9978 pnew->str = (Py_UNICODE*) PyObject_MALLOC(sizeof(Py_UNICODE) * (n+1));
9979 if (pnew->str == NULL) {
9980 _Py_ForgetReference((PyObject *)pnew);
9981 PyObject_Del(pnew);
9982 Py_DECREF(tmp);
9983 return PyErr_NoMemory();
9984 }
9985 Py_UNICODE_COPY(pnew->str, tmp->str, n+1);
9986 pnew->length = n;
9987 pnew->hash = tmp->hash;
9988 Py_DECREF(tmp);
9989 return (PyObject *)pnew;
Guido van Rossume023fe02001-08-30 03:12:59 +00009990}
9991
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009992PyDoc_STRVAR(unicode_doc,
Chris Jerdonek83fe2e12012-10-07 14:48:36 -07009993"str(object='') -> str\n\
9994str(bytes_or_buffer[, encoding[, errors]]) -> str\n\
Tim Peters6d6c1a32001-08-02 04:15:00 +00009995\n\
Nick Coghlan573b1fd2012-08-16 14:13:07 +10009996Create a new string object from the given object. If encoding or\n\
9997errors is specified, then the object must expose a data buffer\n\
9998that will be decoded using the given encoding and error handler.\n\
9999Otherwise, returns the result of object.__str__() (if defined)\n\
10000or repr(object).\n\
10001encoding defaults to sys.getdefaultencoding().\n\
10002errors defaults to 'strict'.");
Tim Peters6d6c1a32001-08-02 04:15:00 +000010003
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010004static PyObject *unicode_iter(PyObject *seq);
10005
Guido van Rossumd57fd912000-03-10 22:53:23 +000010006PyTypeObject PyUnicode_Type = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +000010007 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Benjamin Peterson14339b62009-01-31 16:36:08 +000010008 "str", /* tp_name */
10009 sizeof(PyUnicodeObject), /* tp_size */
10010 0, /* tp_itemsize */
Guido van Rossumd57fd912000-03-10 22:53:23 +000010011 /* Slots */
Benjamin Peterson14339b62009-01-31 16:36:08 +000010012 (destructor)unicode_dealloc, /* tp_dealloc */
10013 0, /* tp_print */
10014 0, /* tp_getattr */
10015 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +000010016 0, /* tp_reserved */
Benjamin Peterson14339b62009-01-31 16:36:08 +000010017 unicode_repr, /* tp_repr */
10018 &unicode_as_number, /* tp_as_number */
10019 &unicode_as_sequence, /* tp_as_sequence */
10020 &unicode_as_mapping, /* tp_as_mapping */
10021 (hashfunc) unicode_hash, /* tp_hash*/
10022 0, /* tp_call*/
10023 (reprfunc) unicode_str, /* tp_str */
10024 PyObject_GenericGetAttr, /* tp_getattro */
10025 0, /* tp_setattro */
10026 0, /* tp_as_buffer */
10027 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE |
Benjamin Peterson29060642009-01-31 22:14:21 +000010028 Py_TPFLAGS_UNICODE_SUBCLASS, /* tp_flags */
Benjamin Peterson14339b62009-01-31 16:36:08 +000010029 unicode_doc, /* tp_doc */
10030 0, /* tp_traverse */
10031 0, /* tp_clear */
10032 PyUnicode_RichCompare, /* tp_richcompare */
10033 0, /* tp_weaklistoffset */
10034 unicode_iter, /* tp_iter */
10035 0, /* tp_iternext */
10036 unicode_methods, /* tp_methods */
10037 0, /* tp_members */
10038 0, /* tp_getset */
10039 &PyBaseObject_Type, /* tp_base */
10040 0, /* tp_dict */
10041 0, /* tp_descr_get */
10042 0, /* tp_descr_set */
10043 0, /* tp_dictoffset */
10044 0, /* tp_init */
10045 0, /* tp_alloc */
10046 unicode_new, /* tp_new */
10047 PyObject_Del, /* tp_free */
Guido van Rossumd57fd912000-03-10 22:53:23 +000010048};
10049
10050/* Initialize the Unicode implementation */
10051
Thomas Wouters78890102000-07-22 19:25:51 +000010052void _PyUnicode_Init(void)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010053{
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010054 int i;
10055
Thomas Wouters477c8d52006-05-27 19:21:47 +000010056 /* XXX - move this array to unicodectype.c ? */
10057 Py_UNICODE linebreak[] = {
10058 0x000A, /* LINE FEED */
10059 0x000D, /* CARRIAGE RETURN */
10060 0x001C, /* FILE SEPARATOR */
10061 0x001D, /* GROUP SEPARATOR */
10062 0x001E, /* RECORD SEPARATOR */
10063 0x0085, /* NEXT LINE */
10064 0x2028, /* LINE SEPARATOR */
10065 0x2029, /* PARAGRAPH SEPARATOR */
10066 };
10067
Fred Drakee4315f52000-05-09 19:53:39 +000010068 /* Init the implementation */
Christian Heimes2202f872008-02-06 14:31:34 +000010069 free_list = NULL;
10070 numfree = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010071 unicode_empty = _PyUnicode_New(0);
Thomas Wouters0e3f5912006-08-11 14:57:12 +000010072 if (!unicode_empty)
Benjamin Peterson29060642009-01-31 22:14:21 +000010073 return;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000010074
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010075 for (i = 0; i < 256; i++)
Benjamin Peterson29060642009-01-31 22:14:21 +000010076 unicode_latin1[i] = NULL;
Guido van Rossumcacfc072002-05-24 19:01:59 +000010077 if (PyType_Ready(&PyUnicode_Type) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000010078 Py_FatalError("Can't initialize 'unicode'");
Thomas Wouters477c8d52006-05-27 19:21:47 +000010079
10080 /* initialize the linebreak bloom filter */
10081 bloom_linebreak = make_bloom_mask(
10082 linebreak, sizeof(linebreak) / sizeof(linebreak[0])
10083 );
Thomas Wouters0e3f5912006-08-11 14:57:12 +000010084
10085 PyType_Ready(&EncodingMapType);
Benjamin Petersonc4311282012-10-30 23:21:10 -040010086
10087 if (PyType_Ready(&PyFieldNameIter_Type) < 0)
10088 Py_FatalError("Can't initialize field name iterator type");
10089
10090 if (PyType_Ready(&PyFormatterIter_Type) < 0)
10091 Py_FatalError("Can't initialize formatter iter type");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010092}
10093
10094/* Finalize the Unicode implementation */
10095
Christian Heimesa156e092008-02-16 07:38:31 +000010096int
10097PyUnicode_ClearFreeList(void)
10098{
10099 int freelist_size = numfree;
10100 PyUnicodeObject *u;
10101
10102 for (u = free_list; u != NULL;) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010103 PyUnicodeObject *v = u;
10104 u = *(PyUnicodeObject **)u;
10105 if (v->str)
10106 PyObject_DEL(v->str);
10107 Py_XDECREF(v->defenc);
10108 PyObject_Del(v);
10109 numfree--;
Christian Heimesa156e092008-02-16 07:38:31 +000010110 }
10111 free_list = NULL;
10112 assert(numfree == 0);
10113 return freelist_size;
10114}
10115
Guido van Rossumd57fd912000-03-10 22:53:23 +000010116void
Thomas Wouters78890102000-07-22 19:25:51 +000010117_PyUnicode_Fini(void)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010118{
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010119 int i;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010120
Guido van Rossum4ae8ef82000-10-03 18:09:04 +000010121 Py_XDECREF(unicode_empty);
10122 unicode_empty = NULL;
Barry Warsaw5b4c2282000-10-03 20:45:26 +000010123
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010124 for (i = 0; i < 256; i++) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010125 if (unicode_latin1[i]) {
10126 Py_DECREF(unicode_latin1[i]);
10127 unicode_latin1[i] = NULL;
10128 }
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010129 }
Christian Heimesa156e092008-02-16 07:38:31 +000010130 (void)PyUnicode_ClearFreeList();
Guido van Rossumd57fd912000-03-10 22:53:23 +000010131}
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +000010132
Walter Dörwald16807132007-05-25 13:52:07 +000010133void
10134PyUnicode_InternInPlace(PyObject **p)
10135{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010136 register PyUnicodeObject *s = (PyUnicodeObject *)(*p);
10137 PyObject *t;
10138 if (s == NULL || !PyUnicode_Check(s))
10139 Py_FatalError(
10140 "PyUnicode_InternInPlace: unicode strings only please!");
10141 /* If it's a subclass, we don't really know what putting
10142 it in the interned dict might do. */
10143 if (!PyUnicode_CheckExact(s))
10144 return;
10145 if (PyUnicode_CHECK_INTERNED(s))
10146 return;
10147 if (interned == NULL) {
10148 interned = PyDict_New();
10149 if (interned == NULL) {
10150 PyErr_Clear(); /* Don't leave an exception */
10151 return;
10152 }
10153 }
10154 /* It might be that the GetItem call fails even
10155 though the key is present in the dictionary,
10156 namely when this happens during a stack overflow. */
10157 Py_ALLOW_RECURSION
Benjamin Peterson29060642009-01-31 22:14:21 +000010158 t = PyDict_GetItem(interned, (PyObject *)s);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010159 Py_END_ALLOW_RECURSION
Martin v. Löwis5b222132007-06-10 09:51:05 +000010160
Benjamin Peterson29060642009-01-31 22:14:21 +000010161 if (t) {
10162 Py_INCREF(t);
10163 Py_DECREF(*p);
10164 *p = t;
10165 return;
10166 }
Walter Dörwald16807132007-05-25 13:52:07 +000010167
Benjamin Peterson14339b62009-01-31 16:36:08 +000010168 PyThreadState_GET()->recursion_critical = 1;
10169 if (PyDict_SetItem(interned, (PyObject *)s, (PyObject *)s) < 0) {
10170 PyErr_Clear();
10171 PyThreadState_GET()->recursion_critical = 0;
10172 return;
10173 }
10174 PyThreadState_GET()->recursion_critical = 0;
10175 /* The two references in interned are not counted by refcnt.
10176 The deallocator will take care of this */
10177 Py_REFCNT(s) -= 2;
10178 PyUnicode_CHECK_INTERNED(s) = SSTATE_INTERNED_MORTAL;
Walter Dörwald16807132007-05-25 13:52:07 +000010179}
10180
10181void
10182PyUnicode_InternImmortal(PyObject **p)
10183{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010184 PyUnicode_InternInPlace(p);
10185 if (PyUnicode_CHECK_INTERNED(*p) != SSTATE_INTERNED_IMMORTAL) {
10186 PyUnicode_CHECK_INTERNED(*p) = SSTATE_INTERNED_IMMORTAL;
10187 Py_INCREF(*p);
10188 }
Walter Dörwald16807132007-05-25 13:52:07 +000010189}
10190
10191PyObject *
10192PyUnicode_InternFromString(const char *cp)
10193{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010194 PyObject *s = PyUnicode_FromString(cp);
10195 if (s == NULL)
10196 return NULL;
10197 PyUnicode_InternInPlace(&s);
10198 return s;
Walter Dörwald16807132007-05-25 13:52:07 +000010199}
10200
10201void _Py_ReleaseInternedUnicodeStrings(void)
10202{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010203 PyObject *keys;
10204 PyUnicodeObject *s;
10205 Py_ssize_t i, n;
10206 Py_ssize_t immortal_size = 0, mortal_size = 0;
Walter Dörwald16807132007-05-25 13:52:07 +000010207
Benjamin Peterson14339b62009-01-31 16:36:08 +000010208 if (interned == NULL || !PyDict_Check(interned))
10209 return;
10210 keys = PyDict_Keys(interned);
10211 if (keys == NULL || !PyList_Check(keys)) {
10212 PyErr_Clear();
10213 return;
10214 }
Walter Dörwald16807132007-05-25 13:52:07 +000010215
Benjamin Peterson14339b62009-01-31 16:36:08 +000010216 /* Since _Py_ReleaseInternedUnicodeStrings() is intended to help a leak
10217 detector, interned unicode strings are not forcibly deallocated;
10218 rather, we give them their stolen references back, and then clear
10219 and DECREF the interned dict. */
Walter Dörwald16807132007-05-25 13:52:07 +000010220
Benjamin Peterson14339b62009-01-31 16:36:08 +000010221 n = PyList_GET_SIZE(keys);
10222 fprintf(stderr, "releasing %" PY_FORMAT_SIZE_T "d interned strings\n",
Benjamin Peterson29060642009-01-31 22:14:21 +000010223 n);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010224 for (i = 0; i < n; i++) {
10225 s = (PyUnicodeObject *) PyList_GET_ITEM(keys, i);
10226 switch (s->state) {
10227 case SSTATE_NOT_INTERNED:
10228 /* XXX Shouldn't happen */
10229 break;
10230 case SSTATE_INTERNED_IMMORTAL:
10231 Py_REFCNT(s) += 1;
10232 immortal_size += s->length;
10233 break;
10234 case SSTATE_INTERNED_MORTAL:
10235 Py_REFCNT(s) += 2;
10236 mortal_size += s->length;
10237 break;
10238 default:
10239 Py_FatalError("Inconsistent interned string state.");
10240 }
10241 s->state = SSTATE_NOT_INTERNED;
10242 }
10243 fprintf(stderr, "total size of all interned strings: "
10244 "%" PY_FORMAT_SIZE_T "d/%" PY_FORMAT_SIZE_T "d "
10245 "mortal/immortal\n", mortal_size, immortal_size);
10246 Py_DECREF(keys);
10247 PyDict_Clear(interned);
10248 Py_DECREF(interned);
10249 interned = NULL;
Walter Dörwald16807132007-05-25 13:52:07 +000010250}
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010251
10252
10253/********************* Unicode Iterator **************************/
10254
10255typedef struct {
Benjamin Peterson14339b62009-01-31 16:36:08 +000010256 PyObject_HEAD
10257 Py_ssize_t it_index;
10258 PyUnicodeObject *it_seq; /* Set to NULL when iterator is exhausted */
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010259} unicodeiterobject;
10260
10261static void
10262unicodeiter_dealloc(unicodeiterobject *it)
10263{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010264 _PyObject_GC_UNTRACK(it);
10265 Py_XDECREF(it->it_seq);
10266 PyObject_GC_Del(it);
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010267}
10268
10269static int
10270unicodeiter_traverse(unicodeiterobject *it, visitproc visit, void *arg)
10271{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010272 Py_VISIT(it->it_seq);
10273 return 0;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010274}
10275
10276static PyObject *
10277unicodeiter_next(unicodeiterobject *it)
10278{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010279 PyUnicodeObject *seq;
10280 PyObject *item;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010281
Benjamin Peterson14339b62009-01-31 16:36:08 +000010282 assert(it != NULL);
10283 seq = it->it_seq;
10284 if (seq == NULL)
10285 return NULL;
10286 assert(PyUnicode_Check(seq));
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010287
Benjamin Peterson14339b62009-01-31 16:36:08 +000010288 if (it->it_index < PyUnicode_GET_SIZE(seq)) {
10289 item = PyUnicode_FromUnicode(
Benjamin Peterson29060642009-01-31 22:14:21 +000010290 PyUnicode_AS_UNICODE(seq)+it->it_index, 1);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010291 if (item != NULL)
10292 ++it->it_index;
10293 return item;
10294 }
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010295
Benjamin Peterson14339b62009-01-31 16:36:08 +000010296 Py_DECREF(seq);
10297 it->it_seq = NULL;
10298 return NULL;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010299}
10300
10301static PyObject *
10302unicodeiter_len(unicodeiterobject *it)
10303{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010304 Py_ssize_t len = 0;
10305 if (it->it_seq)
10306 len = PyUnicode_GET_SIZE(it->it_seq) - it->it_index;
10307 return PyLong_FromSsize_t(len);
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010308}
10309
10310PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
10311
10312static PyMethodDef unicodeiter_methods[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000010313 {"__length_hint__", (PyCFunction)unicodeiter_len, METH_NOARGS,
Benjamin Peterson29060642009-01-31 22:14:21 +000010314 length_hint_doc},
Benjamin Peterson14339b62009-01-31 16:36:08 +000010315 {NULL, NULL} /* sentinel */
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010316};
10317
10318PyTypeObject PyUnicodeIter_Type = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000010319 PyVarObject_HEAD_INIT(&PyType_Type, 0)
10320 "str_iterator", /* tp_name */
10321 sizeof(unicodeiterobject), /* tp_basicsize */
10322 0, /* tp_itemsize */
10323 /* methods */
10324 (destructor)unicodeiter_dealloc, /* tp_dealloc */
10325 0, /* tp_print */
10326 0, /* tp_getattr */
10327 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +000010328 0, /* tp_reserved */
Benjamin Peterson14339b62009-01-31 16:36:08 +000010329 0, /* tp_repr */
10330 0, /* tp_as_number */
10331 0, /* tp_as_sequence */
10332 0, /* tp_as_mapping */
10333 0, /* tp_hash */
10334 0, /* tp_call */
10335 0, /* tp_str */
10336 PyObject_GenericGetAttr, /* tp_getattro */
10337 0, /* tp_setattro */
10338 0, /* tp_as_buffer */
10339 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
10340 0, /* tp_doc */
10341 (traverseproc)unicodeiter_traverse, /* tp_traverse */
10342 0, /* tp_clear */
10343 0, /* tp_richcompare */
10344 0, /* tp_weaklistoffset */
10345 PyObject_SelfIter, /* tp_iter */
10346 (iternextfunc)unicodeiter_next, /* tp_iternext */
10347 unicodeiter_methods, /* tp_methods */
10348 0,
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010349};
10350
10351static PyObject *
10352unicode_iter(PyObject *seq)
10353{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010354 unicodeiterobject *it;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010355
Benjamin Peterson14339b62009-01-31 16:36:08 +000010356 if (!PyUnicode_Check(seq)) {
10357 PyErr_BadInternalCall();
10358 return NULL;
10359 }
10360 it = PyObject_GC_New(unicodeiterobject, &PyUnicodeIter_Type);
10361 if (it == NULL)
10362 return NULL;
10363 it->it_index = 0;
10364 Py_INCREF(seq);
10365 it->it_seq = (PyUnicodeObject *)seq;
10366 _PyObject_GC_TRACK(it);
10367 return (PyObject *)it;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010368}
10369
Martin v. Löwis5b222132007-06-10 09:51:05 +000010370size_t
10371Py_UNICODE_strlen(const Py_UNICODE *u)
10372{
10373 int res = 0;
10374 while(*u++)
10375 res++;
10376 return res;
10377}
10378
10379Py_UNICODE*
10380Py_UNICODE_strcpy(Py_UNICODE *s1, const Py_UNICODE *s2)
10381{
10382 Py_UNICODE *u = s1;
10383 while ((*u++ = *s2++));
10384 return s1;
10385}
10386
10387Py_UNICODE*
10388Py_UNICODE_strncpy(Py_UNICODE *s1, const Py_UNICODE *s2, size_t n)
10389{
10390 Py_UNICODE *u = s1;
10391 while ((*u++ = *s2++))
10392 if (n-- == 0)
10393 break;
10394 return s1;
10395}
10396
Victor Stinnerc4eb7652010-09-01 23:43:50 +000010397Py_UNICODE*
10398Py_UNICODE_strcat(Py_UNICODE *s1, const Py_UNICODE *s2)
10399{
10400 Py_UNICODE *u1 = s1;
10401 u1 += Py_UNICODE_strlen(u1);
10402 Py_UNICODE_strcpy(u1, s2);
10403 return s1;
10404}
10405
Martin v. Löwis5b222132007-06-10 09:51:05 +000010406int
10407Py_UNICODE_strcmp(const Py_UNICODE *s1, const Py_UNICODE *s2)
10408{
10409 while (*s1 && *s2 && *s1 == *s2)
10410 s1++, s2++;
10411 if (*s1 && *s2)
10412 return (*s1 < *s2) ? -1 : +1;
10413 if (*s1)
10414 return 1;
10415 if (*s2)
10416 return -1;
10417 return 0;
10418}
10419
Victor Stinneref8d95c2010-08-16 22:03:11 +000010420int
10421Py_UNICODE_strncmp(const Py_UNICODE *s1, const Py_UNICODE *s2, size_t n)
10422{
10423 register Py_UNICODE u1, u2;
10424 for (; n != 0; n--) {
10425 u1 = *s1;
10426 u2 = *s2;
10427 if (u1 != u2)
10428 return (u1 < u2) ? -1 : +1;
10429 if (u1 == '\0')
10430 return 0;
10431 s1++;
10432 s2++;
10433 }
10434 return 0;
10435}
10436
Martin v. Löwis5b222132007-06-10 09:51:05 +000010437Py_UNICODE*
10438Py_UNICODE_strchr(const Py_UNICODE *s, Py_UNICODE c)
10439{
10440 const Py_UNICODE *p;
10441 for (p = s; *p; p++)
10442 if (*p == c)
10443 return (Py_UNICODE*)p;
10444 return NULL;
10445}
10446
Victor Stinner331ea922010-08-10 16:37:20 +000010447Py_UNICODE*
10448Py_UNICODE_strrchr(const Py_UNICODE *s, Py_UNICODE c)
10449{
10450 const Py_UNICODE *p;
10451 p = s + Py_UNICODE_strlen(s);
10452 while (p != s) {
10453 p--;
10454 if (*p == c)
10455 return (Py_UNICODE*)p;
10456 }
10457 return NULL;
10458}
10459
Victor Stinner71133ff2010-09-01 23:43:53 +000010460Py_UNICODE*
Victor Stinner46408602010-09-03 16:18:00 +000010461PyUnicode_AsUnicodeCopy(PyObject *object)
Victor Stinner71133ff2010-09-01 23:43:53 +000010462{
10463 PyUnicodeObject *unicode = (PyUnicodeObject *)object;
10464 Py_UNICODE *copy;
10465 Py_ssize_t size;
10466
10467 /* Ensure we won't overflow the size. */
10468 if (PyUnicode_GET_SIZE(unicode) > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
10469 PyErr_NoMemory();
10470 return NULL;
10471 }
10472 size = PyUnicode_GET_SIZE(unicode) + 1; /* copy the nul character */
10473 size *= sizeof(Py_UNICODE);
10474 copy = PyMem_Malloc(size);
10475 if (copy == NULL) {
10476 PyErr_NoMemory();
10477 return NULL;
10478 }
10479 memcpy(copy, PyUnicode_AS_UNICODE(unicode), size);
10480 return copy;
10481}
Martin v. Löwis5b222132007-06-10 09:51:05 +000010482
Georg Brandl66c221e2010-10-14 07:04:07 +000010483/* A _string module, to export formatter_parser and formatter_field_name_split
10484 to the string.Formatter class implemented in Python. */
10485
10486static PyMethodDef _string_methods[] = {
10487 {"formatter_field_name_split", (PyCFunction) formatter_field_name_split,
10488 METH_O, PyDoc_STR("split the argument as a field name")},
10489 {"formatter_parser", (PyCFunction) formatter_parser,
10490 METH_O, PyDoc_STR("parse the argument as a format string")},
10491 {NULL, NULL}
10492};
10493
10494static struct PyModuleDef _string_module = {
10495 PyModuleDef_HEAD_INIT,
10496 "_string",
10497 PyDoc_STR("string helper module"),
10498 0,
10499 _string_methods,
10500 NULL,
10501 NULL,
10502 NULL,
10503 NULL
10504};
10505
10506PyMODINIT_FUNC
10507PyInit__string(void)
10508{
10509 return PyModule_Create(&_string_module);
10510}
10511
10512
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000010513#ifdef __cplusplus
10514}
10515#endif