blob: e1df874c0b1eba0bb5922e278d64a5b4dcf9c742 [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();
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02005248 goto Undefined;
Benjamin Peterson29060642009-01-31 22:14:21 +00005249 } else
5250 goto onError;
5251 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005252
Benjamin Peterson29060642009-01-31 22:14:21 +00005253 /* Apply mapping */
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02005254 if (x == Py_None)
5255 goto Undefined;
Benjamin Peterson29060642009-01-31 22:14:21 +00005256 if (PyLong_Check(x)) {
5257 long value = PyLong_AS_LONG(x);
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02005258 if (value == 0xFFFE)
5259 goto Undefined;
Antoine Pitrou6f80f5d2012-09-23 19:55:21 +02005260 if (value < 0 || value > 0x10FFFF) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005261 PyErr_SetString(PyExc_TypeError,
Antoine Pitrou6f80f5d2012-09-23 19:55:21 +02005262 "character mapping must be in range(0x110000)");
Benjamin Peterson29060642009-01-31 22:14:21 +00005263 Py_DECREF(x);
5264 goto onError;
5265 }
Antoine Pitrou6f80f5d2012-09-23 19:55:21 +02005266
5267#ifndef Py_UNICODE_WIDE
5268 if (value > 0xFFFF) {
5269 /* see the code for 1-n mapping below */
5270 if (extrachars < 2) {
5271 /* resize first */
5272 Py_ssize_t oldpos = p - PyUnicode_AS_UNICODE(v);
5273 Py_ssize_t needed = 10 - extrachars;
5274 extrachars += needed;
5275 /* XXX overflow detection missing */
5276 if (_PyUnicode_Resize(&v,
5277 PyUnicode_GET_SIZE(v) + needed) < 0) {
5278 Py_DECREF(x);
5279 goto onError;
5280 }
5281 p = PyUnicode_AS_UNICODE(v) + oldpos;
5282 }
5283 value -= 0x10000;
5284 *p++ = 0xD800 | (value >> 10);
5285 *p++ = 0xDC00 | (value & 0x3FF);
5286 extrachars -= 2;
5287 }
5288 else
5289#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00005290 *p++ = (Py_UNICODE)value;
5291 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005292 else if (PyUnicode_Check(x)) {
5293 Py_ssize_t targetsize = PyUnicode_GET_SIZE(x);
Benjamin Peterson14339b62009-01-31 16:36:08 +00005294
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02005295 if (targetsize == 1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005296 /* 1-1 mapping */
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02005297 Py_UNICODE value = *PyUnicode_AS_UNICODE(x);
5298 if (value == 0xFFFE)
5299 goto Undefined;
5300 *p++ = value;
5301 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005302 else if (targetsize > 1) {
5303 /* 1-n mapping */
5304 if (targetsize > extrachars) {
5305 /* resize first */
5306 Py_ssize_t oldpos = p - PyUnicode_AS_UNICODE(v);
5307 Py_ssize_t needed = (targetsize - extrachars) + \
5308 (targetsize << 2);
5309 extrachars += needed;
5310 /* XXX overflow detection missing */
5311 if (_PyUnicode_Resize(&v,
5312 PyUnicode_GET_SIZE(v) + needed) < 0) {
5313 Py_DECREF(x);
5314 goto onError;
5315 }
5316 p = PyUnicode_AS_UNICODE(v) + oldpos;
5317 }
5318 Py_UNICODE_COPY(p,
5319 PyUnicode_AS_UNICODE(x),
5320 targetsize);
5321 p += targetsize;
5322 extrachars -= targetsize;
5323 }
5324 /* 1-0 mapping: skip the character */
5325 }
5326 else {
5327 /* wrong return value */
5328 PyErr_SetString(PyExc_TypeError,
5329 "character mapping must return integer, None or str");
Benjamin Peterson14339b62009-01-31 16:36:08 +00005330 Py_DECREF(x);
5331 goto onError;
5332 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005333 Py_DECREF(x);
5334 ++s;
Serhiy Storchaka4fb8cae2013-01-15 14:43:21 +02005335 continue;
5336Undefined:
5337 /* undefined mapping */
5338 Py_XDECREF(x);
5339 outpos = p-PyUnicode_AS_UNICODE(v);
5340 startinpos = s-starts;
5341 endinpos = startinpos+1;
5342 if (unicode_decode_call_errorhandler(
5343 errors, &errorHandler,
5344 "charmap", "character maps to <undefined>",
5345 &starts, &e, &startinpos, &endinpos, &exc, &s,
5346 &v, &outpos, &p)) {
5347 goto onError;
5348 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005349 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00005350 }
5351 if (p - PyUnicode_AS_UNICODE(v) < PyUnicode_GET_SIZE(v))
Benjamin Peterson29060642009-01-31 22:14:21 +00005352 if (_PyUnicode_Resize(&v, p - PyUnicode_AS_UNICODE(v)) < 0)
5353 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005354 Py_XDECREF(errorHandler);
5355 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005356 return (PyObject *)v;
Tim Petersced69f82003-09-16 20:30:58 +00005357
Benjamin Peterson29060642009-01-31 22:14:21 +00005358 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005359 Py_XDECREF(errorHandler);
5360 Py_XDECREF(exc);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005361 Py_XDECREF(v);
5362 return NULL;
5363}
5364
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005365/* Charmap encoding: the lookup table */
5366
5367struct encoding_map{
Benjamin Peterson29060642009-01-31 22:14:21 +00005368 PyObject_HEAD
5369 unsigned char level1[32];
5370 int count2, count3;
5371 unsigned char level23[1];
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005372};
5373
5374static PyObject*
5375encoding_map_size(PyObject *obj, PyObject* args)
5376{
5377 struct encoding_map *map = (struct encoding_map*)obj;
Benjamin Peterson14339b62009-01-31 16:36:08 +00005378 return PyLong_FromLong(sizeof(*map) - 1 + 16*map->count2 +
Benjamin Peterson29060642009-01-31 22:14:21 +00005379 128*map->count3);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005380}
5381
5382static PyMethodDef encoding_map_methods[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00005383 {"size", encoding_map_size, METH_NOARGS,
Benjamin Peterson29060642009-01-31 22:14:21 +00005384 PyDoc_STR("Return the size (in bytes) of this object") },
5385 { 0 }
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005386};
5387
5388static void
5389encoding_map_dealloc(PyObject* o)
5390{
Benjamin Peterson14339b62009-01-31 16:36:08 +00005391 PyObject_FREE(o);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005392}
5393
5394static PyTypeObject EncodingMapType = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00005395 PyVarObject_HEAD_INIT(NULL, 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005396 "EncodingMap", /*tp_name*/
5397 sizeof(struct encoding_map), /*tp_basicsize*/
5398 0, /*tp_itemsize*/
5399 /* methods */
5400 encoding_map_dealloc, /*tp_dealloc*/
5401 0, /*tp_print*/
5402 0, /*tp_getattr*/
5403 0, /*tp_setattr*/
Mark Dickinsone94c6792009-02-02 20:36:42 +00005404 0, /*tp_reserved*/
Benjamin Peterson29060642009-01-31 22:14:21 +00005405 0, /*tp_repr*/
5406 0, /*tp_as_number*/
5407 0, /*tp_as_sequence*/
5408 0, /*tp_as_mapping*/
5409 0, /*tp_hash*/
5410 0, /*tp_call*/
5411 0, /*tp_str*/
5412 0, /*tp_getattro*/
5413 0, /*tp_setattro*/
5414 0, /*tp_as_buffer*/
5415 Py_TPFLAGS_DEFAULT, /*tp_flags*/
5416 0, /*tp_doc*/
5417 0, /*tp_traverse*/
5418 0, /*tp_clear*/
5419 0, /*tp_richcompare*/
5420 0, /*tp_weaklistoffset*/
5421 0, /*tp_iter*/
5422 0, /*tp_iternext*/
5423 encoding_map_methods, /*tp_methods*/
5424 0, /*tp_members*/
5425 0, /*tp_getset*/
5426 0, /*tp_base*/
5427 0, /*tp_dict*/
5428 0, /*tp_descr_get*/
5429 0, /*tp_descr_set*/
5430 0, /*tp_dictoffset*/
5431 0, /*tp_init*/
5432 0, /*tp_alloc*/
5433 0, /*tp_new*/
5434 0, /*tp_free*/
5435 0, /*tp_is_gc*/
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005436};
5437
5438PyObject*
5439PyUnicode_BuildEncodingMap(PyObject* string)
5440{
5441 Py_UNICODE *decode;
5442 PyObject *result;
5443 struct encoding_map *mresult;
5444 int i;
5445 int need_dict = 0;
5446 unsigned char level1[32];
5447 unsigned char level2[512];
5448 unsigned char *mlevel1, *mlevel2, *mlevel3;
5449 int count2 = 0, count3 = 0;
5450
5451 if (!PyUnicode_Check(string) || PyUnicode_GetSize(string) != 256) {
5452 PyErr_BadArgument();
5453 return NULL;
5454 }
5455 decode = PyUnicode_AS_UNICODE(string);
5456 memset(level1, 0xFF, sizeof level1);
5457 memset(level2, 0xFF, sizeof level2);
5458
5459 /* If there isn't a one-to-one mapping of NULL to \0,
5460 or if there are non-BMP characters, we need to use
5461 a mapping dictionary. */
5462 if (decode[0] != 0)
5463 need_dict = 1;
5464 for (i = 1; i < 256; i++) {
5465 int l1, l2;
5466 if (decode[i] == 0
Benjamin Peterson29060642009-01-31 22:14:21 +00005467#ifdef Py_UNICODE_WIDE
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005468 || decode[i] > 0xFFFF
Benjamin Peterson29060642009-01-31 22:14:21 +00005469#endif
5470 ) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005471 need_dict = 1;
5472 break;
5473 }
5474 if (decode[i] == 0xFFFE)
5475 /* unmapped character */
5476 continue;
5477 l1 = decode[i] >> 11;
5478 l2 = decode[i] >> 7;
5479 if (level1[l1] == 0xFF)
5480 level1[l1] = count2++;
5481 if (level2[l2] == 0xFF)
Benjamin Peterson14339b62009-01-31 16:36:08 +00005482 level2[l2] = count3++;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005483 }
5484
5485 if (count2 >= 0xFF || count3 >= 0xFF)
5486 need_dict = 1;
5487
5488 if (need_dict) {
5489 PyObject *result = PyDict_New();
5490 PyObject *key, *value;
5491 if (!result)
5492 return NULL;
5493 for (i = 0; i < 256; i++) {
5494 key = value = NULL;
Christian Heimes217cfd12007-12-02 14:31:20 +00005495 key = PyLong_FromLong(decode[i]);
5496 value = PyLong_FromLong(i);
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005497 if (!key || !value)
5498 goto failed1;
5499 if (PyDict_SetItem(result, key, value) == -1)
5500 goto failed1;
5501 Py_DECREF(key);
5502 Py_DECREF(value);
5503 }
5504 return result;
5505 failed1:
5506 Py_XDECREF(key);
5507 Py_XDECREF(value);
5508 Py_DECREF(result);
5509 return NULL;
5510 }
5511
5512 /* Create a three-level trie */
5513 result = PyObject_MALLOC(sizeof(struct encoding_map) +
5514 16*count2 + 128*count3 - 1);
5515 if (!result)
5516 return PyErr_NoMemory();
5517 PyObject_Init(result, &EncodingMapType);
5518 mresult = (struct encoding_map*)result;
5519 mresult->count2 = count2;
5520 mresult->count3 = count3;
5521 mlevel1 = mresult->level1;
5522 mlevel2 = mresult->level23;
5523 mlevel3 = mresult->level23 + 16*count2;
5524 memcpy(mlevel1, level1, 32);
5525 memset(mlevel2, 0xFF, 16*count2);
5526 memset(mlevel3, 0, 128*count3);
5527 count3 = 0;
5528 for (i = 1; i < 256; i++) {
5529 int o1, o2, o3, i2, i3;
5530 if (decode[i] == 0xFFFE)
5531 /* unmapped character */
5532 continue;
5533 o1 = decode[i]>>11;
5534 o2 = (decode[i]>>7) & 0xF;
5535 i2 = 16*mlevel1[o1] + o2;
5536 if (mlevel2[i2] == 0xFF)
5537 mlevel2[i2] = count3++;
5538 o3 = decode[i] & 0x7F;
5539 i3 = 128*mlevel2[i2] + o3;
5540 mlevel3[i3] = i;
5541 }
5542 return result;
5543}
5544
5545static int
5546encoding_map_lookup(Py_UNICODE c, PyObject *mapping)
5547{
5548 struct encoding_map *map = (struct encoding_map*)mapping;
5549 int l1 = c>>11;
5550 int l2 = (c>>7) & 0xF;
5551 int l3 = c & 0x7F;
5552 int i;
5553
5554#ifdef Py_UNICODE_WIDE
5555 if (c > 0xFFFF) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005556 return -1;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005557 }
5558#endif
5559 if (c == 0)
5560 return 0;
5561 /* level 1*/
5562 i = map->level1[l1];
5563 if (i == 0xFF) {
5564 return -1;
5565 }
5566 /* level 2*/
5567 i = map->level23[16*i+l2];
5568 if (i == 0xFF) {
5569 return -1;
5570 }
5571 /* level 3 */
5572 i = map->level23[16*map->count2 + 128*i + l3];
5573 if (i == 0) {
5574 return -1;
5575 }
5576 return i;
5577}
5578
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005579/* Lookup the character ch in the mapping. If the character
5580 can't be found, Py_None is returned (or NULL, if another
Fred Drakedb390c12005-10-28 14:39:47 +00005581 error occurred). */
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005582static PyObject *charmapencode_lookup(Py_UNICODE c, PyObject *mapping)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005583{
Christian Heimes217cfd12007-12-02 14:31:20 +00005584 PyObject *w = PyLong_FromLong((long)c);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005585 PyObject *x;
5586
5587 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005588 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005589 x = PyObject_GetItem(mapping, w);
5590 Py_DECREF(w);
5591 if (x == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005592 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
5593 /* No mapping found means: mapping is undefined. */
5594 PyErr_Clear();
5595 x = Py_None;
5596 Py_INCREF(x);
5597 return x;
5598 } else
5599 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005600 }
Walter Dörwaldadc72742003-01-08 22:01:33 +00005601 else if (x == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00005602 return x;
Christian Heimes217cfd12007-12-02 14:31:20 +00005603 else if (PyLong_Check(x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005604 long value = PyLong_AS_LONG(x);
5605 if (value < 0 || value > 255) {
5606 PyErr_SetString(PyExc_TypeError,
5607 "character mapping must be in range(256)");
5608 Py_DECREF(x);
5609 return NULL;
5610 }
5611 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005612 }
Christian Heimes72b710a2008-05-26 13:28:38 +00005613 else if (PyBytes_Check(x))
Benjamin Peterson29060642009-01-31 22:14:21 +00005614 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005615 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00005616 /* wrong return value */
5617 PyErr_Format(PyExc_TypeError,
5618 "character mapping must return integer, bytes or None, not %.400s",
5619 x->ob_type->tp_name);
5620 Py_DECREF(x);
5621 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005622 }
5623}
5624
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005625static int
Guido van Rossum98297ee2007-11-06 21:34:58 +00005626charmapencode_resize(PyObject **outobj, Py_ssize_t *outpos, Py_ssize_t requiredsize)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005627{
Benjamin Peterson14339b62009-01-31 16:36:08 +00005628 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj);
5629 /* exponentially overallocate to minimize reallocations */
5630 if (requiredsize < 2*outsize)
5631 requiredsize = 2*outsize;
5632 if (_PyBytes_Resize(outobj, requiredsize))
5633 return -1;
5634 return 0;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005635}
5636
Benjamin Peterson14339b62009-01-31 16:36:08 +00005637typedef enum charmapencode_result {
Benjamin Peterson29060642009-01-31 22:14:21 +00005638 enc_SUCCESS, enc_FAILED, enc_EXCEPTION
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005639}charmapencode_result;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005640/* lookup the character, put the result in the output string and adjust
Walter Dörwald827b0552007-05-12 13:23:53 +00005641 various state variables. Resize the output bytes object if not enough
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005642 space is available. Return a new reference to the object that
5643 was put in the output buffer, or Py_None, if the mapping was undefined
5644 (in which case no character was written) or NULL, if a
Andrew M. Kuchling8294de52005-11-02 16:36:12 +00005645 reallocation error occurred. The caller must decref the result */
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005646static
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005647charmapencode_result charmapencode_output(Py_UNICODE c, PyObject *mapping,
Benjamin Peterson29060642009-01-31 22:14:21 +00005648 PyObject **outobj, Py_ssize_t *outpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005649{
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005650 PyObject *rep;
5651 char *outstart;
Christian Heimes72b710a2008-05-26 13:28:38 +00005652 Py_ssize_t outsize = PyBytes_GET_SIZE(*outobj);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005653
Christian Heimes90aa7642007-12-19 02:45:37 +00005654 if (Py_TYPE(mapping) == &EncodingMapType) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005655 int res = encoding_map_lookup(c, mapping);
Benjamin Peterson29060642009-01-31 22:14:21 +00005656 Py_ssize_t requiredsize = *outpos+1;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005657 if (res == -1)
5658 return enc_FAILED;
Benjamin Peterson29060642009-01-31 22:14:21 +00005659 if (outsize<requiredsize)
5660 if (charmapencode_resize(outobj, outpos, requiredsize))
5661 return enc_EXCEPTION;
Christian Heimes72b710a2008-05-26 13:28:38 +00005662 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00005663 outstart[(*outpos)++] = (char)res;
5664 return enc_SUCCESS;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005665 }
5666
5667 rep = charmapencode_lookup(c, mapping);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005668 if (rep==NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005669 return enc_EXCEPTION;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005670 else if (rep==Py_None) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005671 Py_DECREF(rep);
5672 return enc_FAILED;
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005673 } else {
Benjamin Peterson29060642009-01-31 22:14:21 +00005674 if (PyLong_Check(rep)) {
5675 Py_ssize_t requiredsize = *outpos+1;
5676 if (outsize<requiredsize)
5677 if (charmapencode_resize(outobj, outpos, requiredsize)) {
5678 Py_DECREF(rep);
5679 return enc_EXCEPTION;
5680 }
Christian Heimes72b710a2008-05-26 13:28:38 +00005681 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00005682 outstart[(*outpos)++] = (char)PyLong_AS_LONG(rep);
Benjamin Peterson14339b62009-01-31 16:36:08 +00005683 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005684 else {
5685 const char *repchars = PyBytes_AS_STRING(rep);
5686 Py_ssize_t repsize = PyBytes_GET_SIZE(rep);
5687 Py_ssize_t requiredsize = *outpos+repsize;
5688 if (outsize<requiredsize)
5689 if (charmapencode_resize(outobj, outpos, requiredsize)) {
5690 Py_DECREF(rep);
5691 return enc_EXCEPTION;
5692 }
Christian Heimes72b710a2008-05-26 13:28:38 +00005693 outstart = PyBytes_AS_STRING(*outobj);
Benjamin Peterson29060642009-01-31 22:14:21 +00005694 memcpy(outstart + *outpos, repchars, repsize);
5695 *outpos += repsize;
5696 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005697 }
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005698 Py_DECREF(rep);
5699 return enc_SUCCESS;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005700}
5701
5702/* handle an error in PyUnicode_EncodeCharmap
5703 Return 0 on success, -1 on error */
5704static
5705int charmap_encoding_error(
Martin v. Löwis18e16552006-02-15 17:27:45 +00005706 const Py_UNICODE *p, Py_ssize_t size, Py_ssize_t *inpos, PyObject *mapping,
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005707 PyObject **exceptionObject,
Walter Dörwalde5402fb2003-08-14 20:25:29 +00005708 int *known_errorHandler, PyObject **errorHandler, const char *errors,
Guido van Rossum98297ee2007-11-06 21:34:58 +00005709 PyObject **res, Py_ssize_t *respos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005710{
5711 PyObject *repunicode = NULL; /* initialize to prevent gcc warning */
Martin v. Löwis18e16552006-02-15 17:27:45 +00005712 Py_ssize_t repsize;
5713 Py_ssize_t newpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005714 Py_UNICODE *uni2;
5715 /* startpos for collecting unencodable chars */
Martin v. Löwis18e16552006-02-15 17:27:45 +00005716 Py_ssize_t collstartpos = *inpos;
5717 Py_ssize_t collendpos = *inpos+1;
5718 Py_ssize_t collpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005719 char *encoding = "charmap";
5720 char *reason = "character maps to <undefined>";
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005721 charmapencode_result x;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005722
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005723 /* find all unencodable characters */
5724 while (collendpos < size) {
Thomas Wouters73e5a5b2006-06-08 15:35:45 +00005725 PyObject *rep;
Christian Heimes90aa7642007-12-19 02:45:37 +00005726 if (Py_TYPE(mapping) == &EncodingMapType) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005727 int res = encoding_map_lookup(p[collendpos], mapping);
5728 if (res != -1)
5729 break;
5730 ++collendpos;
5731 continue;
5732 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005733
Benjamin Peterson29060642009-01-31 22:14:21 +00005734 rep = charmapencode_lookup(p[collendpos], mapping);
5735 if (rep==NULL)
5736 return -1;
5737 else if (rep!=Py_None) {
5738 Py_DECREF(rep);
5739 break;
5740 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005741 Py_DECREF(rep);
Benjamin Peterson29060642009-01-31 22:14:21 +00005742 ++collendpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005743 }
5744 /* cache callback name lookup
5745 * (if not done yet, i.e. it's the first error) */
5746 if (*known_errorHandler==-1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005747 if ((errors==NULL) || (!strcmp(errors, "strict")))
5748 *known_errorHandler = 1;
5749 else if (!strcmp(errors, "replace"))
5750 *known_errorHandler = 2;
5751 else if (!strcmp(errors, "ignore"))
5752 *known_errorHandler = 3;
5753 else if (!strcmp(errors, "xmlcharrefreplace"))
5754 *known_errorHandler = 4;
5755 else
5756 *known_errorHandler = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005757 }
5758 switch (*known_errorHandler) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00005759 case 1: /* strict */
5760 raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason);
5761 return -1;
5762 case 2: /* replace */
5763 for (collpos = collstartpos; collpos<collendpos; ++collpos) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005764 x = charmapencode_output('?', mapping, res, respos);
5765 if (x==enc_EXCEPTION) {
5766 return -1;
5767 }
5768 else if (x==enc_FAILED) {
5769 raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason);
5770 return -1;
5771 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005772 }
5773 /* fall through */
5774 case 3: /* ignore */
5775 *inpos = collendpos;
5776 break;
5777 case 4: /* xmlcharrefreplace */
5778 /* generate replacement (temporarily (mis)uses p) */
5779 for (collpos = collstartpos; collpos < collendpos; ++collpos) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005780 char buffer[2+29+1+1];
5781 char *cp;
5782 sprintf(buffer, "&#%d;", (int)p[collpos]);
5783 for (cp = buffer; *cp; ++cp) {
5784 x = charmapencode_output(*cp, mapping, res, respos);
5785 if (x==enc_EXCEPTION)
5786 return -1;
5787 else if (x==enc_FAILED) {
5788 raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason);
5789 return -1;
5790 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005791 }
5792 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005793 *inpos = collendpos;
5794 break;
5795 default:
5796 repunicode = unicode_encode_call_errorhandler(errors, errorHandler,
Benjamin Peterson29060642009-01-31 22:14:21 +00005797 encoding, reason, p, size, exceptionObject,
5798 collstartpos, collendpos, &newpos);
Benjamin Peterson14339b62009-01-31 16:36:08 +00005799 if (repunicode == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005800 return -1;
Martin v. Löwis011e8422009-05-05 04:43:17 +00005801 if (PyBytes_Check(repunicode)) {
5802 /* Directly copy bytes result to output. */
5803 Py_ssize_t outsize = PyBytes_Size(*res);
5804 Py_ssize_t requiredsize;
5805 repsize = PyBytes_Size(repunicode);
5806 requiredsize = *respos + repsize;
5807 if (requiredsize > outsize)
5808 /* Make room for all additional bytes. */
5809 if (charmapencode_resize(res, respos, requiredsize)) {
5810 Py_DECREF(repunicode);
5811 return -1;
5812 }
5813 memcpy(PyBytes_AsString(*res) + *respos,
5814 PyBytes_AsString(repunicode), repsize);
5815 *respos += repsize;
5816 *inpos = newpos;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00005817 Py_DECREF(repunicode);
Martin v. Löwis011e8422009-05-05 04:43:17 +00005818 break;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00005819 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005820 /* generate replacement */
5821 repsize = PyUnicode_GET_SIZE(repunicode);
5822 for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005823 x = charmapencode_output(*uni2, mapping, res, respos);
5824 if (x==enc_EXCEPTION) {
5825 return -1;
5826 }
5827 else if (x==enc_FAILED) {
5828 Py_DECREF(repunicode);
5829 raise_encode_exception(exceptionObject, encoding, p, size, collstartpos, collendpos, reason);
5830 return -1;
5831 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005832 }
5833 *inpos = newpos;
5834 Py_DECREF(repunicode);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005835 }
5836 return 0;
5837}
5838
Guido van Rossumd57fd912000-03-10 22:53:23 +00005839PyObject *PyUnicode_EncodeCharmap(const Py_UNICODE *p,
Benjamin Peterson29060642009-01-31 22:14:21 +00005840 Py_ssize_t size,
5841 PyObject *mapping,
5842 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005843{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005844 /* output object */
5845 PyObject *res = NULL;
5846 /* current input position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00005847 Py_ssize_t inpos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005848 /* current output position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00005849 Py_ssize_t respos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005850 PyObject *errorHandler = NULL;
5851 PyObject *exc = NULL;
5852 /* the following variable is used for caching string comparisons
5853 * -1=not initialized, 0=unknown, 1=strict, 2=replace,
5854 * 3=ignore, 4=xmlcharrefreplace */
5855 int known_errorHandler = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005856
5857 /* Default to Latin-1 */
5858 if (mapping == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005859 return PyUnicode_EncodeLatin1(p, size, errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005860
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005861 /* allocate enough for a simple encoding without
5862 replacements, if we need more, we'll resize */
Christian Heimes72b710a2008-05-26 13:28:38 +00005863 res = PyBytes_FromStringAndSize(NULL, size);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005864 if (res == NULL)
5865 goto onError;
Marc-André Lemburgb7520772000-08-14 11:29:19 +00005866 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005867 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005868
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005869 while (inpos<size) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005870 /* try to encode it */
5871 charmapencode_result x = charmapencode_output(p[inpos], mapping, &res, &respos);
5872 if (x==enc_EXCEPTION) /* error */
5873 goto onError;
5874 if (x==enc_FAILED) { /* unencodable character */
5875 if (charmap_encoding_error(p, size, &inpos, mapping,
5876 &exc,
5877 &known_errorHandler, &errorHandler, errors,
5878 &res, &respos)) {
5879 goto onError;
5880 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00005881 }
Benjamin Peterson29060642009-01-31 22:14:21 +00005882 else
5883 /* done with this character => adjust input position */
5884 ++inpos;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005885 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00005886
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005887 /* Resize if we allocated to much */
Christian Heimes72b710a2008-05-26 13:28:38 +00005888 if (respos<PyBytes_GET_SIZE(res))
Alexandre Vassalotti44531cb2008-12-27 09:16:49 +00005889 if (_PyBytes_Resize(&res, respos) < 0)
5890 goto onError;
Guido van Rossum98297ee2007-11-06 21:34:58 +00005891
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005892 Py_XDECREF(exc);
5893 Py_XDECREF(errorHandler);
5894 return res;
5895
Benjamin Peterson29060642009-01-31 22:14:21 +00005896 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005897 Py_XDECREF(res);
5898 Py_XDECREF(exc);
5899 Py_XDECREF(errorHandler);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005900 return NULL;
5901}
5902
5903PyObject *PyUnicode_AsCharmapString(PyObject *unicode,
Benjamin Peterson29060642009-01-31 22:14:21 +00005904 PyObject *mapping)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005905{
5906 if (!PyUnicode_Check(unicode) || mapping == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005907 PyErr_BadArgument();
5908 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005909 }
5910 return PyUnicode_EncodeCharmap(PyUnicode_AS_UNICODE(unicode),
Benjamin Peterson29060642009-01-31 22:14:21 +00005911 PyUnicode_GET_SIZE(unicode),
5912 mapping,
5913 NULL);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005914}
5915
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005916/* create or adjust a UnicodeTranslateError */
5917static void make_translate_exception(PyObject **exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00005918 const Py_UNICODE *unicode, Py_ssize_t size,
5919 Py_ssize_t startpos, Py_ssize_t endpos,
5920 const char *reason)
Guido van Rossumd57fd912000-03-10 22:53:23 +00005921{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005922 if (*exceptionObject == NULL) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00005923 *exceptionObject = PyUnicodeTranslateError_Create(
Benjamin Peterson29060642009-01-31 22:14:21 +00005924 unicode, size, startpos, endpos, reason);
Guido van Rossumd57fd912000-03-10 22:53:23 +00005925 }
5926 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00005927 if (PyUnicodeTranslateError_SetStart(*exceptionObject, startpos))
5928 goto onError;
5929 if (PyUnicodeTranslateError_SetEnd(*exceptionObject, endpos))
5930 goto onError;
5931 if (PyUnicodeTranslateError_SetReason(*exceptionObject, reason))
5932 goto onError;
5933 return;
5934 onError:
5935 Py_DECREF(*exceptionObject);
5936 *exceptionObject = NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00005937 }
5938}
5939
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005940/* raises a UnicodeTranslateError */
5941static void raise_translate_exception(PyObject **exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00005942 const Py_UNICODE *unicode, Py_ssize_t size,
5943 Py_ssize_t startpos, Py_ssize_t endpos,
5944 const char *reason)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005945{
5946 make_translate_exception(exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00005947 unicode, size, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005948 if (*exceptionObject != NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005949 PyCodec_StrictErrors(*exceptionObject);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005950}
5951
5952/* error handling callback helper:
5953 build arguments, call the callback and check the arguments,
5954 put the result into newpos and return the replacement string, which
5955 has to be freed by the caller */
5956static PyObject *unicode_translate_call_errorhandler(const char *errors,
Benjamin Peterson29060642009-01-31 22:14:21 +00005957 PyObject **errorHandler,
5958 const char *reason,
5959 const Py_UNICODE *unicode, Py_ssize_t size, PyObject **exceptionObject,
5960 Py_ssize_t startpos, Py_ssize_t endpos,
5961 Py_ssize_t *newpos)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005962{
Benjamin Peterson142957c2008-07-04 19:55:29 +00005963 static char *argparse = "O!n;translating error handler must return (str, int) tuple";
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005964
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00005965 Py_ssize_t i_newpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005966 PyObject *restuple;
5967 PyObject *resunicode;
5968
5969 if (*errorHandler == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005970 *errorHandler = PyCodec_LookupError(errors);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005971 if (*errorHandler == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005972 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005973 }
5974
5975 make_translate_exception(exceptionObject,
Benjamin Peterson29060642009-01-31 22:14:21 +00005976 unicode, size, startpos, endpos, reason);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005977 if (*exceptionObject == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005978 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005979
5980 restuple = PyObject_CallFunctionObjArgs(
Benjamin Peterson29060642009-01-31 22:14:21 +00005981 *errorHandler, *exceptionObject, NULL);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005982 if (restuple == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00005983 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005984 if (!PyTuple_Check(restuple)) {
Benjamin Petersond75fcb42009-02-19 04:22:03 +00005985 PyErr_SetString(PyExc_TypeError, &argparse[4]);
Benjamin Peterson29060642009-01-31 22:14:21 +00005986 Py_DECREF(restuple);
5987 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005988 }
5989 if (!PyArg_ParseTuple(restuple, argparse, &PyUnicode_Type,
Benjamin Peterson29060642009-01-31 22:14:21 +00005990 &resunicode, &i_newpos)) {
5991 Py_DECREF(restuple);
5992 return NULL;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00005993 }
Martin v. Löwis18e16552006-02-15 17:27:45 +00005994 if (i_newpos<0)
Benjamin Peterson29060642009-01-31 22:14:21 +00005995 *newpos = size+i_newpos;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005996 else
5997 *newpos = i_newpos;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00005998 if (*newpos<0 || *newpos>size) {
Benjamin Peterson29060642009-01-31 22:14:21 +00005999 PyErr_Format(PyExc_IndexError, "position %zd from error handler out of bounds", *newpos);
6000 Py_DECREF(restuple);
6001 return NULL;
Walter Dörwald2e0b18a2003-01-31 17:19:08 +00006002 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006003 Py_INCREF(resunicode);
6004 Py_DECREF(restuple);
6005 return resunicode;
6006}
6007
6008/* Lookup the character ch in the mapping and put the result in result,
6009 which must be decrefed by the caller.
6010 Return 0 on success, -1 on error */
6011static
6012int charmaptranslate_lookup(Py_UNICODE c, PyObject *mapping, PyObject **result)
6013{
Christian Heimes217cfd12007-12-02 14:31:20 +00006014 PyObject *w = PyLong_FromLong((long)c);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006015 PyObject *x;
6016
6017 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006018 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006019 x = PyObject_GetItem(mapping, w);
6020 Py_DECREF(w);
6021 if (x == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006022 if (PyErr_ExceptionMatches(PyExc_LookupError)) {
6023 /* No mapping found means: use 1:1 mapping. */
6024 PyErr_Clear();
6025 *result = NULL;
6026 return 0;
6027 } else
6028 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006029 }
6030 else if (x == Py_None) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006031 *result = x;
6032 return 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006033 }
Christian Heimes217cfd12007-12-02 14:31:20 +00006034 else if (PyLong_Check(x)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006035 long value = PyLong_AS_LONG(x);
6036 long max = PyUnicode_GetMax();
6037 if (value < 0 || value > max) {
6038 PyErr_Format(PyExc_TypeError,
Guido van Rossum5a2f7e602007-10-24 21:13:09 +00006039 "character mapping must be in range(0x%x)", max+1);
Benjamin Peterson29060642009-01-31 22:14:21 +00006040 Py_DECREF(x);
6041 return -1;
6042 }
6043 *result = x;
6044 return 0;
6045 }
6046 else if (PyUnicode_Check(x)) {
6047 *result = x;
6048 return 0;
6049 }
6050 else {
6051 /* wrong return value */
6052 PyErr_SetString(PyExc_TypeError,
6053 "character mapping must return integer, None or str");
Benjamin Peterson14339b62009-01-31 16:36:08 +00006054 Py_DECREF(x);
6055 return -1;
6056 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006057}
6058/* ensure that *outobj is at least requiredsize characters long,
Benjamin Peterson29060642009-01-31 22:14:21 +00006059 if not reallocate and adjust various state variables.
6060 Return 0 on success, -1 on error */
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006061static
Walter Dörwald4894c302003-10-24 14:25:28 +00006062int charmaptranslate_makespace(PyObject **outobj, Py_UNICODE **outp,
Benjamin Peterson29060642009-01-31 22:14:21 +00006063 Py_ssize_t requiredsize)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006064{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006065 Py_ssize_t oldsize = PyUnicode_GET_SIZE(*outobj);
Walter Dörwald4894c302003-10-24 14:25:28 +00006066 if (requiredsize > oldsize) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006067 /* remember old output position */
6068 Py_ssize_t outpos = *outp-PyUnicode_AS_UNICODE(*outobj);
6069 /* exponentially overallocate to minimize reallocations */
6070 if (requiredsize < 2 * oldsize)
6071 requiredsize = 2 * oldsize;
6072 if (PyUnicode_Resize(outobj, requiredsize) < 0)
6073 return -1;
6074 *outp = PyUnicode_AS_UNICODE(*outobj) + outpos;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006075 }
6076 return 0;
6077}
6078/* lookup the character, put the result in the output string and adjust
6079 various state variables. Return a new reference to the object that
6080 was put in the output buffer in *result, or Py_None, if the mapping was
6081 undefined (in which case no character was written).
6082 The called must decref result.
6083 Return 0 on success, -1 on error. */
6084static
Walter Dörwald4894c302003-10-24 14:25:28 +00006085int charmaptranslate_output(const Py_UNICODE *startinp, const Py_UNICODE *curinp,
Benjamin Peterson29060642009-01-31 22:14:21 +00006086 Py_ssize_t insize, PyObject *mapping, PyObject **outobj, Py_UNICODE **outp,
6087 PyObject **res)
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006088{
Walter Dörwald4894c302003-10-24 14:25:28 +00006089 if (charmaptranslate_lookup(*curinp, mapping, res))
Benjamin Peterson29060642009-01-31 22:14:21 +00006090 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006091 if (*res==NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006092 /* not found => default to 1:1 mapping */
6093 *(*outp)++ = *curinp;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006094 }
6095 else if (*res==Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00006096 ;
Christian Heimes217cfd12007-12-02 14:31:20 +00006097 else if (PyLong_Check(*res)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006098 /* no overflow check, because we know that the space is enough */
6099 *(*outp)++ = (Py_UNICODE)PyLong_AS_LONG(*res);
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006100 }
6101 else if (PyUnicode_Check(*res)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006102 Py_ssize_t repsize = PyUnicode_GET_SIZE(*res);
6103 if (repsize==1) {
6104 /* no overflow check, because we know that the space is enough */
6105 *(*outp)++ = *PyUnicode_AS_UNICODE(*res);
6106 }
6107 else if (repsize!=0) {
6108 /* more than one character */
6109 Py_ssize_t requiredsize = (*outp-PyUnicode_AS_UNICODE(*outobj)) +
6110 (insize - (curinp-startinp)) +
6111 repsize - 1;
6112 if (charmaptranslate_makespace(outobj, outp, requiredsize))
6113 return -1;
6114 memcpy(*outp, PyUnicode_AS_UNICODE(*res), sizeof(Py_UNICODE)*repsize);
6115 *outp += repsize;
6116 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006117 }
6118 else
Benjamin Peterson29060642009-01-31 22:14:21 +00006119 return -1;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006120 return 0;
6121}
6122
6123PyObject *PyUnicode_TranslateCharmap(const Py_UNICODE *p,
Benjamin Peterson29060642009-01-31 22:14:21 +00006124 Py_ssize_t size,
6125 PyObject *mapping,
6126 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006127{
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006128 /* output object */
6129 PyObject *res = NULL;
6130 /* pointers to the beginning and end+1 of input */
6131 const Py_UNICODE *startp = p;
6132 const Py_UNICODE *endp = p + size;
6133 /* pointer into the output */
6134 Py_UNICODE *str;
6135 /* current output position */
Martin v. Löwis18e16552006-02-15 17:27:45 +00006136 Py_ssize_t respos = 0;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006137 char *reason = "character maps to <undefined>";
6138 PyObject *errorHandler = NULL;
6139 PyObject *exc = NULL;
6140 /* the following variable is used for caching string comparisons
6141 * -1=not initialized, 0=unknown, 1=strict, 2=replace,
6142 * 3=ignore, 4=xmlcharrefreplace */
6143 int known_errorHandler = -1;
6144
Guido van Rossumd57fd912000-03-10 22:53:23 +00006145 if (mapping == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006146 PyErr_BadArgument();
6147 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006148 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006149
6150 /* allocate enough for a simple 1:1 translation without
6151 replacements, if we need more, we'll resize */
6152 res = PyUnicode_FromUnicode(NULL, size);
6153 if (res == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006154 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006155 if (size == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00006156 return res;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006157 str = PyUnicode_AS_UNICODE(res);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006158
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006159 while (p<endp) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006160 /* try to encode it */
6161 PyObject *x = NULL;
6162 if (charmaptranslate_output(startp, p, size, mapping, &res, &str, &x)) {
6163 Py_XDECREF(x);
6164 goto onError;
6165 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00006166 Py_XDECREF(x);
Benjamin Peterson29060642009-01-31 22:14:21 +00006167 if (x!=Py_None) /* it worked => adjust input pointer */
6168 ++p;
6169 else { /* untranslatable character */
6170 PyObject *repunicode = NULL; /* initialize to prevent gcc warning */
6171 Py_ssize_t repsize;
6172 Py_ssize_t newpos;
6173 Py_UNICODE *uni2;
6174 /* startpos for collecting untranslatable chars */
6175 const Py_UNICODE *collstart = p;
6176 const Py_UNICODE *collend = p+1;
6177 const Py_UNICODE *coll;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006178
Benjamin Peterson29060642009-01-31 22:14:21 +00006179 /* find all untranslatable characters */
6180 while (collend < endp) {
6181 if (charmaptranslate_lookup(*collend, mapping, &x))
6182 goto onError;
6183 Py_XDECREF(x);
6184 if (x!=Py_None)
6185 break;
6186 ++collend;
6187 }
6188 /* cache callback name lookup
6189 * (if not done yet, i.e. it's the first error) */
6190 if (known_errorHandler==-1) {
6191 if ((errors==NULL) || (!strcmp(errors, "strict")))
6192 known_errorHandler = 1;
6193 else if (!strcmp(errors, "replace"))
6194 known_errorHandler = 2;
6195 else if (!strcmp(errors, "ignore"))
6196 known_errorHandler = 3;
6197 else if (!strcmp(errors, "xmlcharrefreplace"))
6198 known_errorHandler = 4;
6199 else
6200 known_errorHandler = 0;
6201 }
6202 switch (known_errorHandler) {
6203 case 1: /* strict */
6204 raise_translate_exception(&exc, startp, size, collstart-startp, collend-startp, reason);
Benjamin Peterson14339b62009-01-31 16:36:08 +00006205 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00006206 case 2: /* replace */
6207 /* No need to check for space, this is a 1:1 replacement */
6208 for (coll = collstart; coll<collend; ++coll)
6209 *str++ = '?';
6210 /* fall through */
6211 case 3: /* ignore */
6212 p = collend;
6213 break;
6214 case 4: /* xmlcharrefreplace */
6215 /* generate replacement (temporarily (mis)uses p) */
6216 for (p = collstart; p < collend; ++p) {
6217 char buffer[2+29+1+1];
6218 char *cp;
6219 sprintf(buffer, "&#%d;", (int)*p);
6220 if (charmaptranslate_makespace(&res, &str,
6221 (str-PyUnicode_AS_UNICODE(res))+strlen(buffer)+(endp-collend)))
6222 goto onError;
6223 for (cp = buffer; *cp; ++cp)
6224 *str++ = *cp;
6225 }
6226 p = collend;
6227 break;
6228 default:
6229 repunicode = unicode_translate_call_errorhandler(errors, &errorHandler,
6230 reason, startp, size, &exc,
6231 collstart-startp, collend-startp, &newpos);
6232 if (repunicode == NULL)
6233 goto onError;
6234 /* generate replacement */
6235 repsize = PyUnicode_GET_SIZE(repunicode);
6236 if (charmaptranslate_makespace(&res, &str,
6237 (str-PyUnicode_AS_UNICODE(res))+repsize+(endp-collend))) {
6238 Py_DECREF(repunicode);
6239 goto onError;
6240 }
6241 for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2)
6242 *str++ = *uni2;
6243 p = startp + newpos;
6244 Py_DECREF(repunicode);
Benjamin Peterson14339b62009-01-31 16:36:08 +00006245 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00006246 }
6247 }
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006248 /* Resize if we allocated to much */
6249 respos = str-PyUnicode_AS_UNICODE(res);
Walter Dörwald4894c302003-10-24 14:25:28 +00006250 if (respos<PyUnicode_GET_SIZE(res)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006251 if (PyUnicode_Resize(&res, respos) < 0)
6252 goto onError;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006253 }
6254 Py_XDECREF(exc);
6255 Py_XDECREF(errorHandler);
6256 return res;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006257
Benjamin Peterson29060642009-01-31 22:14:21 +00006258 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006259 Py_XDECREF(res);
6260 Py_XDECREF(exc);
6261 Py_XDECREF(errorHandler);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006262 return NULL;
6263}
6264
6265PyObject *PyUnicode_Translate(PyObject *str,
Benjamin Peterson29060642009-01-31 22:14:21 +00006266 PyObject *mapping,
6267 const char *errors)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006268{
6269 PyObject *result;
Tim Petersced69f82003-09-16 20:30:58 +00006270
Guido van Rossumd57fd912000-03-10 22:53:23 +00006271 str = PyUnicode_FromObject(str);
6272 if (str == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006273 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006274 result = PyUnicode_TranslateCharmap(PyUnicode_AS_UNICODE(str),
Benjamin Peterson29060642009-01-31 22:14:21 +00006275 PyUnicode_GET_SIZE(str),
6276 mapping,
6277 errors);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006278 Py_DECREF(str);
6279 return result;
Tim Petersced69f82003-09-16 20:30:58 +00006280
Benjamin Peterson29060642009-01-31 22:14:21 +00006281 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00006282 Py_XDECREF(str);
6283 return NULL;
6284}
Tim Petersced69f82003-09-16 20:30:58 +00006285
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00006286PyObject *
6287PyUnicode_TransformDecimalToASCII(Py_UNICODE *s,
6288 Py_ssize_t length)
6289{
6290 PyObject *result;
6291 Py_UNICODE *p; /* write pointer into result */
6292 Py_ssize_t i;
6293 /* Copy to a new string */
6294 result = (PyObject *)_PyUnicode_New(length);
6295 Py_UNICODE_COPY(PyUnicode_AS_UNICODE(result), s, length);
6296 if (result == NULL)
6297 return result;
6298 p = PyUnicode_AS_UNICODE(result);
6299 /* Iterate over code points */
6300 for (i = 0; i < length; i++) {
6301 Py_UNICODE ch =s[i];
6302 if (ch > 127) {
6303 int decimal = Py_UNICODE_TODECIMAL(ch);
6304 if (decimal >= 0)
6305 p[i] = '0' + decimal;
6306 }
6307 }
6308 return result;
6309}
Guido van Rossum9e896b32000-04-05 20:11:21 +00006310/* --- Decimal Encoder ---------------------------------------------------- */
6311
6312int PyUnicode_EncodeDecimal(Py_UNICODE *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00006313 Py_ssize_t length,
6314 char *output,
6315 const char *errors)
Guido van Rossum9e896b32000-04-05 20:11:21 +00006316{
6317 Py_UNICODE *p, *end;
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006318 PyObject *errorHandler = NULL;
6319 PyObject *exc = NULL;
6320 const char *encoding = "decimal";
6321 const char *reason = "invalid decimal Unicode string";
6322 /* the following variable is used for caching string comparisons
6323 * -1=not initialized, 0=unknown, 1=strict, 2=replace, 3=ignore, 4=xmlcharrefreplace */
6324 int known_errorHandler = -1;
Guido van Rossum9e896b32000-04-05 20:11:21 +00006325
6326 if (output == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006327 PyErr_BadArgument();
6328 return -1;
Guido van Rossum9e896b32000-04-05 20:11:21 +00006329 }
6330
6331 p = s;
6332 end = s + length;
6333 while (p < end) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006334 register Py_UNICODE ch = *p;
6335 int decimal;
6336 PyObject *repunicode;
6337 Py_ssize_t repsize;
6338 Py_ssize_t newpos;
6339 Py_UNICODE *uni2;
6340 Py_UNICODE *collstart;
6341 Py_UNICODE *collend;
Tim Petersced69f82003-09-16 20:30:58 +00006342
Benjamin Peterson29060642009-01-31 22:14:21 +00006343 if (Py_UNICODE_ISSPACE(ch)) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00006344 *output++ = ' ';
Benjamin Peterson29060642009-01-31 22:14:21 +00006345 ++p;
6346 continue;
Benjamin Peterson14339b62009-01-31 16:36:08 +00006347 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006348 decimal = Py_UNICODE_TODECIMAL(ch);
6349 if (decimal >= 0) {
6350 *output++ = '0' + decimal;
6351 ++p;
6352 continue;
6353 }
6354 if (0 < ch && ch < 256) {
6355 *output++ = (char)ch;
6356 ++p;
6357 continue;
6358 }
6359 /* All other characters are considered unencodable */
6360 collstart = p;
Victor Stinnerab1d16b2011-11-22 01:45:37 +01006361 for (collend = p+1; collend < end; collend++) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006362 if ((0 < *collend && *collend < 256) ||
Victor Stinnerab1d16b2011-11-22 01:45:37 +01006363 Py_UNICODE_ISSPACE(*collend) ||
6364 0 <= Py_UNICODE_TODECIMAL(*collend))
Benjamin Peterson29060642009-01-31 22:14:21 +00006365 break;
6366 }
6367 /* cache callback name lookup
6368 * (if not done yet, i.e. it's the first error) */
6369 if (known_errorHandler==-1) {
6370 if ((errors==NULL) || (!strcmp(errors, "strict")))
6371 known_errorHandler = 1;
6372 else if (!strcmp(errors, "replace"))
6373 known_errorHandler = 2;
6374 else if (!strcmp(errors, "ignore"))
6375 known_errorHandler = 3;
6376 else if (!strcmp(errors, "xmlcharrefreplace"))
6377 known_errorHandler = 4;
6378 else
6379 known_errorHandler = 0;
6380 }
6381 switch (known_errorHandler) {
6382 case 1: /* strict */
6383 raise_encode_exception(&exc, encoding, s, length, collstart-s, collend-s, reason);
6384 goto onError;
6385 case 2: /* replace */
6386 for (p = collstart; p < collend; ++p)
6387 *output++ = '?';
6388 /* fall through */
6389 case 3: /* ignore */
6390 p = collend;
6391 break;
6392 case 4: /* xmlcharrefreplace */
6393 /* generate replacement (temporarily (mis)uses p) */
6394 for (p = collstart; p < collend; ++p)
6395 output += sprintf(output, "&#%d;", (int)*p);
6396 p = collend;
6397 break;
6398 default:
6399 repunicode = unicode_encode_call_errorhandler(errors, &errorHandler,
6400 encoding, reason, s, length, &exc,
6401 collstart-s, collend-s, &newpos);
6402 if (repunicode == NULL)
6403 goto onError;
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006404 if (!PyUnicode_Check(repunicode)) {
Martin v. Löwis011e8422009-05-05 04:43:17 +00006405 /* Byte results not supported, since they have no decimal property. */
Martin v. Löwisdb12d452009-05-02 18:52:14 +00006406 PyErr_SetString(PyExc_TypeError, "error handler should return unicode");
6407 Py_DECREF(repunicode);
6408 goto onError;
6409 }
Benjamin Peterson29060642009-01-31 22:14:21 +00006410 /* generate replacement */
6411 repsize = PyUnicode_GET_SIZE(repunicode);
6412 for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) {
6413 Py_UNICODE ch = *uni2;
6414 if (Py_UNICODE_ISSPACE(ch))
6415 *output++ = ' ';
6416 else {
6417 decimal = Py_UNICODE_TODECIMAL(ch);
6418 if (decimal >= 0)
6419 *output++ = '0' + decimal;
6420 else if (0 < ch && ch < 256)
6421 *output++ = (char)ch;
6422 else {
6423 Py_DECREF(repunicode);
6424 raise_encode_exception(&exc, encoding,
6425 s, length, collstart-s, collend-s, reason);
6426 goto onError;
6427 }
6428 }
6429 }
6430 p = s + newpos;
6431 Py_DECREF(repunicode);
6432 }
Guido van Rossum9e896b32000-04-05 20:11:21 +00006433 }
6434 /* 0-terminate the output string */
6435 *output++ = '\0';
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006436 Py_XDECREF(exc);
6437 Py_XDECREF(errorHandler);
Guido van Rossum9e896b32000-04-05 20:11:21 +00006438 return 0;
6439
Benjamin Peterson29060642009-01-31 22:14:21 +00006440 onError:
Walter Dörwald3aeb6322002-09-02 13:14:32 +00006441 Py_XDECREF(exc);
6442 Py_XDECREF(errorHandler);
Guido van Rossum9e896b32000-04-05 20:11:21 +00006443 return -1;
6444}
6445
Guido van Rossumd57fd912000-03-10 22:53:23 +00006446/* --- Helpers ------------------------------------------------------------ */
6447
Eric Smith8c663262007-08-25 02:26:07 +00006448#include "stringlib/unicodedefs.h"
Thomas Wouters477c8d52006-05-27 19:21:47 +00006449#include "stringlib/fastsearch.h"
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006450
Thomas Wouters477c8d52006-05-27 19:21:47 +00006451#include "stringlib/count.h"
6452#include "stringlib/find.h"
6453#include "stringlib/partition.h"
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006454#include "stringlib/split.h"
Thomas Wouters477c8d52006-05-27 19:21:47 +00006455
Eric Smith5807c412008-05-11 21:00:57 +00006456#define _Py_InsertThousandsGrouping _PyUnicode_InsertThousandsGrouping
Eric Smitha3b1ac82009-04-03 14:45:06 +00006457#define _Py_InsertThousandsGroupingLocale _PyUnicode_InsertThousandsGroupingLocale
Eric Smith5807c412008-05-11 21:00:57 +00006458#include "stringlib/localeutil.h"
6459
Thomas Wouters477c8d52006-05-27 19:21:47 +00006460/* helper macro to fixup start/end slice values */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006461#define ADJUST_INDICES(start, end, len) \
6462 if (end > len) \
6463 end = len; \
6464 else if (end < 0) { \
6465 end += len; \
6466 if (end < 0) \
6467 end = 0; \
6468 } \
6469 if (start < 0) { \
6470 start += len; \
6471 if (start < 0) \
6472 start = 0; \
6473 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00006474
Ezio Melotti93e7afc2011-08-22 14:08:38 +03006475/* _Py_UNICODE_NEXT is a private macro used to retrieve the character pointed
6476 * by 'ptr', possibly combining surrogate pairs on narrow builds.
6477 * 'ptr' and 'end' must be Py_UNICODE*, with 'ptr' pointing at the character
6478 * that should be returned and 'end' pointing to the end of the buffer.
6479 * ('end' is used on narrow builds to detect a lone surrogate at the
6480 * end of the buffer that should be returned unchanged.)
6481 * The ptr and end arguments should be side-effect free and ptr must an lvalue.
6482 * The type of the returned char is always Py_UCS4.
6483 *
6484 * Note: the macro advances ptr to next char, so it might have side-effects
6485 * (especially if used with other macros).
6486 */
6487
6488/* helper macros used by _Py_UNICODE_NEXT */
6489#define _Py_UNICODE_IS_HIGH_SURROGATE(ch) (0xD800 <= ch && ch <= 0xDBFF)
6490#define _Py_UNICODE_IS_LOW_SURROGATE(ch) (0xDC00 <= ch && ch <= 0xDFFF)
6491/* Join two surrogate characters and return a single Py_UCS4 value. */
6492#define _Py_UNICODE_JOIN_SURROGATES(high, low) \
6493 (((((Py_UCS4)(high) & 0x03FF) << 10) | \
6494 ((Py_UCS4)(low) & 0x03FF)) + 0x10000)
6495
6496#ifdef Py_UNICODE_WIDE
6497#define _Py_UNICODE_NEXT(ptr, end) *(ptr)++
6498#else
6499#define _Py_UNICODE_NEXT(ptr, end) \
6500 (((_Py_UNICODE_IS_HIGH_SURROGATE(*(ptr)) && (ptr) < (end)) && \
6501 _Py_UNICODE_IS_LOW_SURROGATE((ptr)[1])) ? \
6502 ((ptr) += 2,_Py_UNICODE_JOIN_SURROGATES((ptr)[-2], (ptr)[-1])) : \
6503 (Py_UCS4)*(ptr)++)
6504#endif
6505
Martin v. Löwis18e16552006-02-15 17:27:45 +00006506Py_ssize_t PyUnicode_Count(PyObject *str,
Thomas Wouters477c8d52006-05-27 19:21:47 +00006507 PyObject *substr,
6508 Py_ssize_t start,
6509 Py_ssize_t end)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006510{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006511 Py_ssize_t result;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006512 PyUnicodeObject* str_obj;
6513 PyUnicodeObject* sub_obj;
Tim Petersced69f82003-09-16 20:30:58 +00006514
Thomas Wouters477c8d52006-05-27 19:21:47 +00006515 str_obj = (PyUnicodeObject*) PyUnicode_FromObject(str);
6516 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +00006517 return -1;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006518 sub_obj = (PyUnicodeObject*) PyUnicode_FromObject(substr);
6519 if (!sub_obj) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006520 Py_DECREF(str_obj);
6521 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006522 }
Tim Petersced69f82003-09-16 20:30:58 +00006523
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006524 ADJUST_INDICES(start, end, str_obj->length);
Thomas Wouters477c8d52006-05-27 19:21:47 +00006525 result = stringlib_count(
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006526 str_obj->str + start, end - start, sub_obj->str, sub_obj->length,
6527 PY_SSIZE_T_MAX
Thomas Wouters477c8d52006-05-27 19:21:47 +00006528 );
6529
6530 Py_DECREF(sub_obj);
6531 Py_DECREF(str_obj);
6532
Guido van Rossumd57fd912000-03-10 22:53:23 +00006533 return result;
6534}
6535
Martin v. Löwis18e16552006-02-15 17:27:45 +00006536Py_ssize_t PyUnicode_Find(PyObject *str,
Thomas Wouters477c8d52006-05-27 19:21:47 +00006537 PyObject *sub,
6538 Py_ssize_t start,
6539 Py_ssize_t end,
6540 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006541{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006542 Py_ssize_t result;
Tim Petersced69f82003-09-16 20:30:58 +00006543
Guido van Rossumd57fd912000-03-10 22:53:23 +00006544 str = PyUnicode_FromObject(str);
Thomas Wouters477c8d52006-05-27 19:21:47 +00006545 if (!str)
Benjamin Peterson29060642009-01-31 22:14:21 +00006546 return -2;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006547 sub = PyUnicode_FromObject(sub);
6548 if (!sub) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006549 Py_DECREF(str);
6550 return -2;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006551 }
Tim Petersced69f82003-09-16 20:30:58 +00006552
Thomas Wouters477c8d52006-05-27 19:21:47 +00006553 if (direction > 0)
6554 result = stringlib_find_slice(
6555 PyUnicode_AS_UNICODE(str), PyUnicode_GET_SIZE(str),
6556 PyUnicode_AS_UNICODE(sub), PyUnicode_GET_SIZE(sub),
6557 start, end
6558 );
6559 else
6560 result = stringlib_rfind_slice(
6561 PyUnicode_AS_UNICODE(str), PyUnicode_GET_SIZE(str),
6562 PyUnicode_AS_UNICODE(sub), PyUnicode_GET_SIZE(sub),
6563 start, end
6564 );
6565
Guido van Rossumd57fd912000-03-10 22:53:23 +00006566 Py_DECREF(str);
Thomas Wouters477c8d52006-05-27 19:21:47 +00006567 Py_DECREF(sub);
6568
Guido van Rossumd57fd912000-03-10 22:53:23 +00006569 return result;
6570}
6571
Tim Petersced69f82003-09-16 20:30:58 +00006572static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006573int tailmatch(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006574 PyUnicodeObject *substring,
6575 Py_ssize_t start,
6576 Py_ssize_t end,
6577 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006578{
Guido van Rossumd57fd912000-03-10 22:53:23 +00006579 if (substring->length == 0)
6580 return 1;
6581
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006582 ADJUST_INDICES(start, end, self->length);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006583 end -= substring->length;
6584 if (end < start)
Benjamin Peterson29060642009-01-31 22:14:21 +00006585 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006586
6587 if (direction > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006588 if (Py_UNICODE_MATCH(self, end, substring))
6589 return 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006590 } else {
6591 if (Py_UNICODE_MATCH(self, start, substring))
Benjamin Peterson29060642009-01-31 22:14:21 +00006592 return 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006593 }
6594
6595 return 0;
6596}
6597
Martin v. Löwis18e16552006-02-15 17:27:45 +00006598Py_ssize_t PyUnicode_Tailmatch(PyObject *str,
Benjamin Peterson29060642009-01-31 22:14:21 +00006599 PyObject *substr,
6600 Py_ssize_t start,
6601 Py_ssize_t end,
6602 int direction)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006603{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006604 Py_ssize_t result;
Tim Petersced69f82003-09-16 20:30:58 +00006605
Guido van Rossumd57fd912000-03-10 22:53:23 +00006606 str = PyUnicode_FromObject(str);
6607 if (str == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006608 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006609 substr = PyUnicode_FromObject(substr);
6610 if (substr == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006611 Py_DECREF(str);
6612 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006613 }
Tim Petersced69f82003-09-16 20:30:58 +00006614
Guido van Rossumd57fd912000-03-10 22:53:23 +00006615 result = tailmatch((PyUnicodeObject *)str,
Benjamin Peterson29060642009-01-31 22:14:21 +00006616 (PyUnicodeObject *)substr,
6617 start, end, direction);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006618 Py_DECREF(str);
6619 Py_DECREF(substr);
6620 return result;
6621}
6622
Guido van Rossumd57fd912000-03-10 22:53:23 +00006623/* Apply fixfct filter to the Unicode object self and return a
6624 reference to the modified object */
6625
Tim Petersced69f82003-09-16 20:30:58 +00006626static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006627PyObject *fixup(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006628 int (*fixfct)(PyUnicodeObject *s))
Guido van Rossumd57fd912000-03-10 22:53:23 +00006629{
6630
6631 PyUnicodeObject *u;
6632
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00006633 u = (PyUnicodeObject*) PyUnicode_FromUnicode(NULL, self->length);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006634 if (u == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006635 return NULL;
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +00006636
6637 Py_UNICODE_COPY(u->str, self->str, self->length);
6638
Tim Peters7a29bd52001-09-12 03:03:31 +00006639 if (!fixfct(u) && PyUnicode_CheckExact(self)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006640 /* fixfct should return TRUE if it modified the buffer. If
6641 FALSE, return a reference to the original buffer instead
6642 (to save space, not time) */
6643 Py_INCREF(self);
6644 Py_DECREF(u);
6645 return (PyObject*) self;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006646 }
6647 return (PyObject*) u;
6648}
6649
Tim Petersced69f82003-09-16 20:30:58 +00006650static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006651int fixupper(PyUnicodeObject *self)
6652{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006653 Py_ssize_t len = self->length;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006654 Py_UNICODE *s = self->str;
6655 int status = 0;
Tim Petersced69f82003-09-16 20:30:58 +00006656
Guido van Rossumd57fd912000-03-10 22:53:23 +00006657 while (len-- > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006658 register Py_UNICODE ch;
Tim Petersced69f82003-09-16 20:30:58 +00006659
Benjamin Peterson29060642009-01-31 22:14:21 +00006660 ch = Py_UNICODE_TOUPPER(*s);
6661 if (ch != *s) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00006662 status = 1;
Benjamin Peterson29060642009-01-31 22:14:21 +00006663 *s = ch;
6664 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00006665 s++;
6666 }
6667
6668 return status;
6669}
6670
Tim Petersced69f82003-09-16 20:30:58 +00006671static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006672int fixlower(PyUnicodeObject *self)
6673{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006674 Py_ssize_t len = self->length;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006675 Py_UNICODE *s = self->str;
6676 int status = 0;
Tim Petersced69f82003-09-16 20:30:58 +00006677
Guido van Rossumd57fd912000-03-10 22:53:23 +00006678 while (len-- > 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006679 register Py_UNICODE ch;
Tim Petersced69f82003-09-16 20:30:58 +00006680
Benjamin Peterson29060642009-01-31 22:14:21 +00006681 ch = Py_UNICODE_TOLOWER(*s);
6682 if (ch != *s) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00006683 status = 1;
Benjamin Peterson29060642009-01-31 22:14:21 +00006684 *s = ch;
6685 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00006686 s++;
6687 }
6688
6689 return status;
6690}
6691
Tim Petersced69f82003-09-16 20:30:58 +00006692static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006693int fixswapcase(PyUnicodeObject *self)
6694{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006695 Py_ssize_t len = self->length;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006696 Py_UNICODE *s = self->str;
6697 int status = 0;
Tim Petersced69f82003-09-16 20:30:58 +00006698
Guido van Rossumd57fd912000-03-10 22:53:23 +00006699 while (len-- > 0) {
6700 if (Py_UNICODE_ISUPPER(*s)) {
6701 *s = Py_UNICODE_TOLOWER(*s);
6702 status = 1;
6703 } else if (Py_UNICODE_ISLOWER(*s)) {
6704 *s = Py_UNICODE_TOUPPER(*s);
6705 status = 1;
6706 }
6707 s++;
6708 }
6709
6710 return status;
6711}
6712
Tim Petersced69f82003-09-16 20:30:58 +00006713static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006714int fixcapitalize(PyUnicodeObject *self)
6715{
Martin v. Löwis18e16552006-02-15 17:27:45 +00006716 Py_ssize_t len = self->length;
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00006717 Py_UNICODE *s = self->str;
6718 int status = 0;
Tim Petersced69f82003-09-16 20:30:58 +00006719
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00006720 if (len == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00006721 return 0;
Ezio Melottiee8d9982011-08-15 09:09:57 +03006722 if (!Py_UNICODE_ISUPPER(*s)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006723 *s = Py_UNICODE_TOUPPER(*s);
6724 status = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006725 }
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00006726 s++;
6727 while (--len > 0) {
Ezio Melottiee8d9982011-08-15 09:09:57 +03006728 if (!Py_UNICODE_ISLOWER(*s)) {
Marc-André Lemburgfde66e12001-01-29 11:14:16 +00006729 *s = Py_UNICODE_TOLOWER(*s);
6730 status = 1;
6731 }
6732 s++;
6733 }
6734 return status;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006735}
6736
6737static
6738int fixtitle(PyUnicodeObject *self)
6739{
6740 register Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
6741 register Py_UNICODE *e;
6742 int previous_is_cased;
6743
6744 /* Shortcut for single character strings */
6745 if (PyUnicode_GET_SIZE(self) == 1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006746 Py_UNICODE ch = Py_UNICODE_TOTITLE(*p);
6747 if (*p != ch) {
6748 *p = ch;
6749 return 1;
6750 }
6751 else
6752 return 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006753 }
Tim Petersced69f82003-09-16 20:30:58 +00006754
Guido van Rossumd57fd912000-03-10 22:53:23 +00006755 e = p + PyUnicode_GET_SIZE(self);
6756 previous_is_cased = 0;
6757 for (; p < e; p++) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006758 register const Py_UNICODE ch = *p;
Tim Petersced69f82003-09-16 20:30:58 +00006759
Benjamin Peterson29060642009-01-31 22:14:21 +00006760 if (previous_is_cased)
6761 *p = Py_UNICODE_TOLOWER(ch);
6762 else
6763 *p = Py_UNICODE_TOTITLE(ch);
Tim Petersced69f82003-09-16 20:30:58 +00006764
Benjamin Peterson29060642009-01-31 22:14:21 +00006765 if (Py_UNICODE_ISLOWER(ch) ||
6766 Py_UNICODE_ISUPPER(ch) ||
6767 Py_UNICODE_ISTITLE(ch))
6768 previous_is_cased = 1;
6769 else
6770 previous_is_cased = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006771 }
6772 return 1;
6773}
6774
Tim Peters8ce9f162004-08-27 01:49:32 +00006775PyObject *
6776PyUnicode_Join(PyObject *separator, PyObject *seq)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006777{
Skip Montanaro6543b452004-09-16 03:28:13 +00006778 const Py_UNICODE blank = ' ';
6779 const Py_UNICODE *sep = &blank;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006780 Py_ssize_t seplen = 1;
Tim Peters05eba1f2004-08-27 21:32:02 +00006781 PyUnicodeObject *res = NULL; /* the result */
Tim Peters05eba1f2004-08-27 21:32:02 +00006782 Py_UNICODE *res_p; /* pointer to free byte in res's string area */
6783 PyObject *fseq; /* PySequence_Fast(seq) */
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006784 Py_ssize_t seqlen; /* len(fseq) -- number of items in sequence */
6785 PyObject **items;
Tim Peters8ce9f162004-08-27 01:49:32 +00006786 PyObject *item;
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006787 Py_ssize_t sz, i;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006788
Tim Peters05eba1f2004-08-27 21:32:02 +00006789 fseq = PySequence_Fast(seq, "");
6790 if (fseq == NULL) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00006791 return NULL;
Tim Peters8ce9f162004-08-27 01:49:32 +00006792 }
6793
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006794 /* NOTE: the following code can't call back into Python code,
6795 * so we are sure that fseq won't be mutated.
Tim Peters91879ab2004-08-27 22:35:44 +00006796 */
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006797
Tim Peters05eba1f2004-08-27 21:32:02 +00006798 seqlen = PySequence_Fast_GET_SIZE(fseq);
6799 /* If empty sequence, return u"". */
6800 if (seqlen == 0) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00006801 res = _PyUnicode_New(0); /* empty sequence; return u"" */
6802 goto Done;
Tim Peters05eba1f2004-08-27 21:32:02 +00006803 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006804 items = PySequence_Fast_ITEMS(fseq);
Tim Peters05eba1f2004-08-27 21:32:02 +00006805 /* If singleton sequence with an exact Unicode, return that. */
6806 if (seqlen == 1) {
Benjamin Peterson29060642009-01-31 22:14:21 +00006807 item = items[0];
6808 if (PyUnicode_CheckExact(item)) {
6809 Py_INCREF(item);
6810 res = (PyUnicodeObject *)item;
6811 goto Done;
6812 }
Tim Peters8ce9f162004-08-27 01:49:32 +00006813 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006814 else {
6815 /* Set up sep and seplen */
6816 if (separator == NULL) {
6817 sep = &blank;
6818 seplen = 1;
Tim Peters05eba1f2004-08-27 21:32:02 +00006819 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006820 else {
6821 if (!PyUnicode_Check(separator)) {
6822 PyErr_Format(PyExc_TypeError,
6823 "separator: expected str instance,"
6824 " %.80s found",
6825 Py_TYPE(separator)->tp_name);
6826 goto onError;
6827 }
6828 sep = PyUnicode_AS_UNICODE(separator);
6829 seplen = PyUnicode_GET_SIZE(separator);
Tim Peters05eba1f2004-08-27 21:32:02 +00006830 }
6831 }
6832
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006833 /* There are at least two things to join, or else we have a subclass
6834 * of str in the sequence.
6835 * Do a pre-pass to figure out the total amount of space we'll
6836 * need (sz), and see whether all argument are strings.
6837 */
6838 sz = 0;
6839 for (i = 0; i < seqlen; i++) {
6840 const Py_ssize_t old_sz = sz;
6841 item = items[i];
Benjamin Peterson29060642009-01-31 22:14:21 +00006842 if (!PyUnicode_Check(item)) {
6843 PyErr_Format(PyExc_TypeError,
6844 "sequence item %zd: expected str instance,"
6845 " %.80s found",
6846 i, Py_TYPE(item)->tp_name);
6847 goto onError;
6848 }
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006849 sz += PyUnicode_GET_SIZE(item);
6850 if (i != 0)
6851 sz += seplen;
6852 if (sz < old_sz || sz > PY_SSIZE_T_MAX) {
6853 PyErr_SetString(PyExc_OverflowError,
Benjamin Peterson29060642009-01-31 22:14:21 +00006854 "join() result is too long for a Python string");
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006855 goto onError;
6856 }
6857 }
Tim Petersced69f82003-09-16 20:30:58 +00006858
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006859 res = _PyUnicode_New(sz);
6860 if (res == NULL)
6861 goto onError;
Tim Peters91879ab2004-08-27 22:35:44 +00006862
Antoine Pitrouaf14b792008-08-07 21:50:41 +00006863 /* Catenate everything. */
6864 res_p = PyUnicode_AS_UNICODE(res);
6865 for (i = 0; i < seqlen; ++i) {
6866 Py_ssize_t itemlen;
6867 item = items[i];
6868 itemlen = PyUnicode_GET_SIZE(item);
Benjamin Peterson29060642009-01-31 22:14:21 +00006869 /* Copy item, and maybe the separator. */
6870 if (i) {
6871 Py_UNICODE_COPY(res_p, sep, seplen);
6872 res_p += seplen;
6873 }
6874 Py_UNICODE_COPY(res_p, PyUnicode_AS_UNICODE(item), itemlen);
6875 res_p += itemlen;
Tim Peters05eba1f2004-08-27 21:32:02 +00006876 }
Tim Peters8ce9f162004-08-27 01:49:32 +00006877
Benjamin Peterson29060642009-01-31 22:14:21 +00006878 Done:
Tim Peters05eba1f2004-08-27 21:32:02 +00006879 Py_DECREF(fseq);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006880 return (PyObject *)res;
6881
Benjamin Peterson29060642009-01-31 22:14:21 +00006882 onError:
Tim Peters05eba1f2004-08-27 21:32:02 +00006883 Py_DECREF(fseq);
Tim Peters8ce9f162004-08-27 01:49:32 +00006884 Py_XDECREF(res);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006885 return NULL;
6886}
6887
Tim Petersced69f82003-09-16 20:30:58 +00006888static
6889PyUnicodeObject *pad(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006890 Py_ssize_t left,
6891 Py_ssize_t right,
6892 Py_UNICODE fill)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006893{
6894 PyUnicodeObject *u;
6895
6896 if (left < 0)
6897 left = 0;
6898 if (right < 0)
6899 right = 0;
6900
Tim Peters7a29bd52001-09-12 03:03:31 +00006901 if (left == 0 && right == 0 && PyUnicode_CheckExact(self)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00006902 Py_INCREF(self);
6903 return self;
6904 }
6905
Neal Norwitz3ce5d922008-08-24 07:08:55 +00006906 if (left > PY_SSIZE_T_MAX - self->length ||
6907 right > PY_SSIZE_T_MAX - (left + self->length)) {
6908 PyErr_SetString(PyExc_OverflowError, "padded string is too long");
6909 return NULL;
6910 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00006911 u = _PyUnicode_New(left + self->length + right);
6912 if (u) {
6913 if (left)
6914 Py_UNICODE_FILL(u->str, fill, left);
6915 Py_UNICODE_COPY(u->str + left, self->str, self->length);
6916 if (right)
6917 Py_UNICODE_FILL(u->str + left + self->length, fill, right);
6918 }
6919
6920 return u;
6921}
6922
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006923PyObject *PyUnicode_Splitlines(PyObject *string, int keepends)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006924{
Guido van Rossumd57fd912000-03-10 22:53:23 +00006925 PyObject *list;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006926
6927 string = PyUnicode_FromObject(string);
6928 if (string == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00006929 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006930
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006931 list = stringlib_splitlines(
6932 (PyObject*) string, PyUnicode_AS_UNICODE(string),
6933 PyUnicode_GET_SIZE(string), keepends);
Guido van Rossumd57fd912000-03-10 22:53:23 +00006934
6935 Py_DECREF(string);
6936 return list;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006937}
6938
Tim Petersced69f82003-09-16 20:30:58 +00006939static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006940PyObject *split(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006941 PyUnicodeObject *substring,
6942 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006943{
Guido van Rossumd57fd912000-03-10 22:53:23 +00006944 if (maxcount < 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006945 maxcount = PY_SSIZE_T_MAX;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006946
Guido van Rossumd57fd912000-03-10 22:53:23 +00006947 if (substring == NULL)
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006948 return stringlib_split_whitespace(
6949 (PyObject*) self, self->str, self->length, maxcount
6950 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00006951
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006952 return stringlib_split(
6953 (PyObject*) self, self->str, self->length,
6954 substring->str, substring->length,
6955 maxcount
6956 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00006957}
6958
Tim Petersced69f82003-09-16 20:30:58 +00006959static
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006960PyObject *rsplit(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006961 PyUnicodeObject *substring,
6962 Py_ssize_t maxcount)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006963{
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006964 if (maxcount < 0)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006965 maxcount = PY_SSIZE_T_MAX;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006966
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006967 if (substring == NULL)
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006968 return stringlib_rsplit_whitespace(
6969 (PyObject*) self, self->str, self->length, maxcount
6970 );
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006971
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006972 return stringlib_rsplit(
6973 (PyObject*) self, self->str, self->length,
6974 substring->str, substring->length,
6975 maxcount
6976 );
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00006977}
6978
6979static
Guido van Rossumd57fd912000-03-10 22:53:23 +00006980PyObject *replace(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00006981 PyUnicodeObject *str1,
6982 PyUnicodeObject *str2,
6983 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +00006984{
6985 PyUnicodeObject *u;
6986
6987 if (maxcount < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00006988 maxcount = PY_SSIZE_T_MAX;
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006989 else if (maxcount == 0 || self->length == 0)
6990 goto nothing;
Guido van Rossumd57fd912000-03-10 22:53:23 +00006991
Thomas Wouters477c8d52006-05-27 19:21:47 +00006992 if (str1->length == str2->length) {
Antoine Pitroucbfdee32010-01-13 08:58:08 +00006993 Py_ssize_t i;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006994 /* same length */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00006995 if (str1->length == 0)
6996 goto nothing;
Thomas Wouters477c8d52006-05-27 19:21:47 +00006997 if (str1->length == 1) {
6998 /* replace characters */
6999 Py_UNICODE u1, u2;
7000 if (!findchar(self->str, self->length, str1->str[0]))
7001 goto nothing;
7002 u = (PyUnicodeObject*) PyUnicode_FromUnicode(NULL, self->length);
7003 if (!u)
7004 return NULL;
7005 Py_UNICODE_COPY(u->str, self->str, self->length);
7006 u1 = str1->str[0];
7007 u2 = str2->str[0];
7008 for (i = 0; i < u->length; i++)
7009 if (u->str[i] == u1) {
7010 if (--maxcount < 0)
7011 break;
7012 u->str[i] = u2;
7013 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007014 } else {
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007015 i = stringlib_find(
7016 self->str, self->length, str1->str, str1->length, 0
Guido van Rossumd57fd912000-03-10 22:53:23 +00007017 );
Thomas Wouters477c8d52006-05-27 19:21:47 +00007018 if (i < 0)
7019 goto nothing;
7020 u = (PyUnicodeObject*) PyUnicode_FromUnicode(NULL, self->length);
7021 if (!u)
7022 return NULL;
7023 Py_UNICODE_COPY(u->str, self->str, self->length);
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007024
7025 /* change everything in-place, starting with this one */
7026 Py_UNICODE_COPY(u->str+i, str2->str, str2->length);
7027 i += str1->length;
7028
7029 while ( --maxcount > 0) {
7030 i = stringlib_find(self->str+i, self->length-i,
7031 str1->str, str1->length,
7032 i);
7033 if (i == -1)
7034 break;
7035 Py_UNICODE_COPY(u->str+i, str2->str, str2->length);
7036 i += str1->length;
7037 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007038 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007039 } else {
Thomas Wouters477c8d52006-05-27 19:21:47 +00007040
Victor Stinnerab1d16b2011-11-22 01:45:37 +01007041 Py_ssize_t n, i, j;
Thomas Wouters477c8d52006-05-27 19:21:47 +00007042 Py_ssize_t product, new_size, delta;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007043 Py_UNICODE *p;
7044
7045 /* replace strings */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007046 n = stringlib_count(self->str, self->length, str1->str, str1->length,
7047 maxcount);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007048 if (n == 0)
7049 goto nothing;
7050 /* new_size = self->length + n * (str2->length - str1->length)); */
7051 delta = (str2->length - str1->length);
7052 if (delta == 0) {
7053 new_size = self->length;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007054 } else {
Thomas Wouters477c8d52006-05-27 19:21:47 +00007055 product = n * (str2->length - str1->length);
7056 if ((product / (str2->length - str1->length)) != n) {
7057 PyErr_SetString(PyExc_OverflowError,
7058 "replace string is too long");
7059 return NULL;
7060 }
7061 new_size = self->length + product;
7062 if (new_size < 0) {
7063 PyErr_SetString(PyExc_OverflowError,
7064 "replace string is too long");
7065 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007066 }
7067 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00007068 u = _PyUnicode_New(new_size);
7069 if (!u)
7070 return NULL;
7071 i = 0;
7072 p = u->str;
Thomas Wouters477c8d52006-05-27 19:21:47 +00007073 if (str1->length > 0) {
7074 while (n-- > 0) {
7075 /* look for next match */
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007076 j = stringlib_find(self->str+i, self->length-i,
7077 str1->str, str1->length,
7078 i);
7079 if (j == -1)
7080 break;
7081 else if (j > i) {
Thomas Wouters477c8d52006-05-27 19:21:47 +00007082 /* copy unchanged part [i:j] */
7083 Py_UNICODE_COPY(p, self->str+i, j-i);
7084 p += j - i;
7085 }
7086 /* copy substitution string */
7087 if (str2->length > 0) {
7088 Py_UNICODE_COPY(p, str2->str, str2->length);
7089 p += str2->length;
7090 }
7091 i = j + str1->length;
7092 }
7093 if (i < self->length)
7094 /* copy tail [i:] */
7095 Py_UNICODE_COPY(p, self->str+i, self->length-i);
7096 } else {
7097 /* interleave */
7098 while (n > 0) {
7099 Py_UNICODE_COPY(p, str2->str, str2->length);
7100 p += str2->length;
7101 if (--n <= 0)
7102 break;
7103 *p++ = self->str[i++];
7104 }
7105 Py_UNICODE_COPY(p, self->str+i, self->length-i);
7106 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007107 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007108 return (PyObject *) u;
Thomas Wouters477c8d52006-05-27 19:21:47 +00007109
Benjamin Peterson29060642009-01-31 22:14:21 +00007110 nothing:
Thomas Wouters477c8d52006-05-27 19:21:47 +00007111 /* nothing to replace; return original string (when possible) */
7112 if (PyUnicode_CheckExact(self)) {
7113 Py_INCREF(self);
7114 return (PyObject *) self;
7115 }
7116 return PyUnicode_FromUnicode(self->str, self->length);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007117}
7118
7119/* --- Unicode Object Methods --------------------------------------------- */
7120
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007121PyDoc_STRVAR(title__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007122 "S.title() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007123\n\
7124Return a titlecased version of S, i.e. words start with title case\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007125characters, all remaining cased characters have lower case.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007126
7127static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007128unicode_title(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007129{
Guido van Rossumd57fd912000-03-10 22:53:23 +00007130 return fixup(self, fixtitle);
7131}
7132
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007133PyDoc_STRVAR(capitalize__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007134 "S.capitalize() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007135\n\
7136Return a capitalized version of S, i.e. make the first character\n\
Senthil Kumarane51ee8a2010-07-05 12:00:56 +00007137have upper case and the rest lower case.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007138
7139static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007140unicode_capitalize(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007141{
Guido van Rossumd57fd912000-03-10 22:53:23 +00007142 return fixup(self, fixcapitalize);
7143}
7144
7145#if 0
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007146PyDoc_STRVAR(capwords__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007147 "S.capwords() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007148\n\
7149Apply .capitalize() to all words in S and return the result with\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007150normalized whitespace (all whitespace strings are replaced by ' ').");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007151
7152static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007153unicode_capwords(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007154{
7155 PyObject *list;
7156 PyObject *item;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007157 Py_ssize_t i;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007158
Guido van Rossumd57fd912000-03-10 22:53:23 +00007159 /* Split into words */
7160 list = split(self, NULL, -1);
7161 if (!list)
7162 return NULL;
7163
7164 /* Capitalize each word */
7165 for (i = 0; i < PyList_GET_SIZE(list); i++) {
7166 item = fixup((PyUnicodeObject *)PyList_GET_ITEM(list, i),
Benjamin Peterson29060642009-01-31 22:14:21 +00007167 fixcapitalize);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007168 if (item == NULL)
7169 goto onError;
7170 Py_DECREF(PyList_GET_ITEM(list, i));
7171 PyList_SET_ITEM(list, i, item);
7172 }
7173
7174 /* Join the words to form a new string */
7175 item = PyUnicode_Join(NULL, list);
7176
Benjamin Peterson29060642009-01-31 22:14:21 +00007177 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00007178 Py_DECREF(list);
7179 return (PyObject *)item;
7180}
7181#endif
7182
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007183/* Argument converter. Coerces to a single unicode character */
7184
7185static int
7186convert_uc(PyObject *obj, void *addr)
7187{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007188 Py_UNICODE *fillcharloc = (Py_UNICODE *)addr;
7189 PyObject *uniobj;
7190 Py_UNICODE *unistr;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007191
Benjamin Peterson14339b62009-01-31 16:36:08 +00007192 uniobj = PyUnicode_FromObject(obj);
7193 if (uniobj == NULL) {
7194 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00007195 "The fill character cannot be converted to Unicode");
Benjamin Peterson14339b62009-01-31 16:36:08 +00007196 return 0;
7197 }
7198 if (PyUnicode_GET_SIZE(uniobj) != 1) {
7199 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00007200 "The fill character must be exactly one character long");
Benjamin Peterson14339b62009-01-31 16:36:08 +00007201 Py_DECREF(uniobj);
7202 return 0;
7203 }
7204 unistr = PyUnicode_AS_UNICODE(uniobj);
7205 *fillcharloc = unistr[0];
7206 Py_DECREF(uniobj);
7207 return 1;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007208}
7209
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007210PyDoc_STRVAR(center__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007211 "S.center(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007212\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00007213Return S centered in a string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007214done using the specified fill character (default is a space)");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007215
7216static PyObject *
7217unicode_center(PyUnicodeObject *self, PyObject *args)
7218{
Martin v. Löwis18e16552006-02-15 17:27:45 +00007219 Py_ssize_t marg, left;
7220 Py_ssize_t width;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007221 Py_UNICODE fillchar = ' ';
Guido van Rossumd57fd912000-03-10 22:53:23 +00007222
Thomas Woutersde017742006-02-16 19:34:37 +00007223 if (!PyArg_ParseTuple(args, "n|O&:center", &width, convert_uc, &fillchar))
Guido van Rossumd57fd912000-03-10 22:53:23 +00007224 return NULL;
7225
Tim Peters7a29bd52001-09-12 03:03:31 +00007226 if (self->length >= width && PyUnicode_CheckExact(self)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00007227 Py_INCREF(self);
7228 return (PyObject*) self;
7229 }
7230
7231 marg = width - self->length;
7232 left = marg / 2 + (marg & width & 1);
7233
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00007234 return (PyObject*) pad(self, left, marg - left, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007235}
7236
Marc-André Lemburge5034372000-08-08 08:04:29 +00007237#if 0
7238
7239/* This code should go into some future Unicode collation support
7240 module. The basic comparison should compare ordinals on a naive
Georg Brandlc6c31782009-06-08 13:41:29 +00007241 basis (this is what Java does and thus Jython too). */
Marc-André Lemburge5034372000-08-08 08:04:29 +00007242
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007243/* speedy UTF-16 code point order comparison */
7244/* gleaned from: */
7245/* http://www-4.ibm.com/software/developer/library/utf16.html?dwzone=unicode */
7246
Marc-André Lemburge12896e2000-07-07 17:51:08 +00007247static short utf16Fixup[32] =
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007248{
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007249 0, 0, 0, 0, 0, 0, 0, 0,
Tim Petersced69f82003-09-16 20:30:58 +00007250 0, 0, 0, 0, 0, 0, 0, 0,
7251 0, 0, 0, 0, 0, 0, 0, 0,
Marc-André Lemburge12896e2000-07-07 17:51:08 +00007252 0, 0, 0, 0x2000, -0x800, -0x800, -0x800, -0x800
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007253};
7254
Guido van Rossumd57fd912000-03-10 22:53:23 +00007255static int
7256unicode_compare(PyUnicodeObject *str1, PyUnicodeObject *str2)
7257{
Martin v. Löwis18e16552006-02-15 17:27:45 +00007258 Py_ssize_t len1, len2;
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007259
Guido van Rossumd57fd912000-03-10 22:53:23 +00007260 Py_UNICODE *s1 = str1->str;
7261 Py_UNICODE *s2 = str2->str;
7262
7263 len1 = str1->length;
7264 len2 = str2->length;
Tim Petersced69f82003-09-16 20:30:58 +00007265
Guido van Rossumd57fd912000-03-10 22:53:23 +00007266 while (len1 > 0 && len2 > 0) {
Tim Petersced69f82003-09-16 20:30:58 +00007267 Py_UNICODE c1, c2;
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007268
7269 c1 = *s1++;
7270 c2 = *s2++;
Fredrik Lundh45714e92001-06-26 16:39:36 +00007271
Benjamin Peterson29060642009-01-31 22:14:21 +00007272 if (c1 > (1<<11) * 26)
7273 c1 += utf16Fixup[c1>>11];
7274 if (c2 > (1<<11) * 26)
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007275 c2 += utf16Fixup[c2>>11];
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007276 /* now c1 and c2 are in UTF-32-compatible order */
Fredrik Lundh45714e92001-06-26 16:39:36 +00007277
7278 if (c1 != c2)
7279 return (c1 < c2) ? -1 : 1;
Tim Petersced69f82003-09-16 20:30:58 +00007280
Marc-André Lemburg1e7205a2000-07-04 09:51:07 +00007281 len1--; len2--;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007282 }
7283
7284 return (len1 < len2) ? -1 : (len1 != len2);
7285}
7286
Marc-André Lemburge5034372000-08-08 08:04:29 +00007287#else
7288
7289static int
7290unicode_compare(PyUnicodeObject *str1, PyUnicodeObject *str2)
7291{
Martin v. Löwis18e16552006-02-15 17:27:45 +00007292 register Py_ssize_t len1, len2;
Marc-André Lemburge5034372000-08-08 08:04:29 +00007293
7294 Py_UNICODE *s1 = str1->str;
7295 Py_UNICODE *s2 = str2->str;
7296
7297 len1 = str1->length;
7298 len2 = str2->length;
Tim Petersced69f82003-09-16 20:30:58 +00007299
Marc-André Lemburge5034372000-08-08 08:04:29 +00007300 while (len1 > 0 && len2 > 0) {
Tim Petersced69f82003-09-16 20:30:58 +00007301 Py_UNICODE c1, c2;
Marc-André Lemburge5034372000-08-08 08:04:29 +00007302
Fredrik Lundh45714e92001-06-26 16:39:36 +00007303 c1 = *s1++;
7304 c2 = *s2++;
7305
7306 if (c1 != c2)
7307 return (c1 < c2) ? -1 : 1;
7308
Marc-André Lemburge5034372000-08-08 08:04:29 +00007309 len1--; len2--;
7310 }
7311
7312 return (len1 < len2) ? -1 : (len1 != len2);
7313}
7314
7315#endif
7316
Guido van Rossumd57fd912000-03-10 22:53:23 +00007317int PyUnicode_Compare(PyObject *left,
Benjamin Peterson29060642009-01-31 22:14:21 +00007318 PyObject *right)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007319{
Guido van Rossum09dc34f2007-05-04 04:17:33 +00007320 if (PyUnicode_Check(left) && PyUnicode_Check(right))
7321 return unicode_compare((PyUnicodeObject *)left,
7322 (PyUnicodeObject *)right);
Guido van Rossum09dc34f2007-05-04 04:17:33 +00007323 PyErr_Format(PyExc_TypeError,
7324 "Can't compare %.100s and %.100s",
7325 left->ob_type->tp_name,
7326 right->ob_type->tp_name);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007327 return -1;
7328}
7329
Martin v. Löwis5b222132007-06-10 09:51:05 +00007330int
7331PyUnicode_CompareWithASCIIString(PyObject* uni, const char* str)
7332{
7333 int i;
7334 Py_UNICODE *id;
7335 assert(PyUnicode_Check(uni));
7336 id = PyUnicode_AS_UNICODE(uni);
7337 /* Compare Unicode string and source character set string */
7338 for (i = 0; id[i] && str[i]; i++)
Benjamin Peterson29060642009-01-31 22:14:21 +00007339 if (id[i] != str[i])
7340 return ((int)id[i] < (int)str[i]) ? -1 : 1;
Benjamin Peterson8667a9b2010-01-09 21:45:28 +00007341 /* This check keeps Python strings that end in '\0' from comparing equal
7342 to C strings identical up to that point. */
Benjamin Petersona23831f2010-04-25 21:54:00 +00007343 if (PyUnicode_GET_SIZE(uni) != i || id[i])
Benjamin Peterson29060642009-01-31 22:14:21 +00007344 return 1; /* uni is longer */
Martin v. Löwis5b222132007-06-10 09:51:05 +00007345 if (str[i])
Benjamin Peterson29060642009-01-31 22:14:21 +00007346 return -1; /* str is longer */
Martin v. Löwis5b222132007-06-10 09:51:05 +00007347 return 0;
7348}
7349
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007350
Benjamin Peterson29060642009-01-31 22:14:21 +00007351#define TEST_COND(cond) \
Benjamin Peterson14339b62009-01-31 16:36:08 +00007352 ((cond) ? Py_True : Py_False)
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007353
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00007354PyObject *PyUnicode_RichCompare(PyObject *left,
7355 PyObject *right,
7356 int op)
7357{
7358 int result;
Benjamin Peterson14339b62009-01-31 16:36:08 +00007359
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007360 if (PyUnicode_Check(left) && PyUnicode_Check(right)) {
7361 PyObject *v;
7362 if (((PyUnicodeObject *) left)->length !=
7363 ((PyUnicodeObject *) right)->length) {
7364 if (op == Py_EQ) {
7365 Py_INCREF(Py_False);
7366 return Py_False;
7367 }
7368 if (op == Py_NE) {
7369 Py_INCREF(Py_True);
7370 return Py_True;
7371 }
7372 }
7373 if (left == right)
7374 result = 0;
7375 else
7376 result = unicode_compare((PyUnicodeObject *)left,
7377 (PyUnicodeObject *)right);
Benjamin Peterson14339b62009-01-31 16:36:08 +00007378
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007379 /* Convert the return value to a Boolean */
7380 switch (op) {
7381 case Py_EQ:
7382 v = TEST_COND(result == 0);
7383 break;
7384 case Py_NE:
7385 v = TEST_COND(result != 0);
7386 break;
7387 case Py_LE:
7388 v = TEST_COND(result <= 0);
7389 break;
7390 case Py_GE:
7391 v = TEST_COND(result >= 0);
7392 break;
7393 case Py_LT:
7394 v = TEST_COND(result == -1);
7395 break;
7396 case Py_GT:
7397 v = TEST_COND(result == 1);
7398 break;
7399 default:
7400 PyErr_BadArgument();
7401 return NULL;
7402 }
7403 Py_INCREF(v);
7404 return v;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00007405 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00007406
Antoine Pitrou51f3ef92008-12-20 13:14:23 +00007407 Py_INCREF(Py_NotImplemented);
7408 return Py_NotImplemented;
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00007409}
7410
Guido van Rossum403d68b2000-03-13 15:55:09 +00007411int PyUnicode_Contains(PyObject *container,
Benjamin Peterson29060642009-01-31 22:14:21 +00007412 PyObject *element)
Guido van Rossum403d68b2000-03-13 15:55:09 +00007413{
Thomas Wouters477c8d52006-05-27 19:21:47 +00007414 PyObject *str, *sub;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007415 int result;
Guido van Rossum403d68b2000-03-13 15:55:09 +00007416
7417 /* Coerce the two arguments */
Thomas Wouters477c8d52006-05-27 19:21:47 +00007418 sub = PyUnicode_FromObject(element);
7419 if (!sub) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007420 PyErr_Format(PyExc_TypeError,
7421 "'in <string>' requires string as left operand, not %s",
7422 element->ob_type->tp_name);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007423 return -1;
Guido van Rossum403d68b2000-03-13 15:55:09 +00007424 }
7425
Thomas Wouters477c8d52006-05-27 19:21:47 +00007426 str = PyUnicode_FromObject(container);
7427 if (!str) {
7428 Py_DECREF(sub);
7429 return -1;
7430 }
7431
7432 result = stringlib_contains_obj(str, sub);
7433
7434 Py_DECREF(str);
7435 Py_DECREF(sub);
7436
Guido van Rossum403d68b2000-03-13 15:55:09 +00007437 return result;
Guido van Rossum403d68b2000-03-13 15:55:09 +00007438}
7439
Guido van Rossumd57fd912000-03-10 22:53:23 +00007440/* Concat to string or Unicode object giving a new Unicode object. */
7441
7442PyObject *PyUnicode_Concat(PyObject *left,
Benjamin Peterson29060642009-01-31 22:14:21 +00007443 PyObject *right)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007444{
7445 PyUnicodeObject *u = NULL, *v = NULL, *w;
7446
7447 /* Coerce the two arguments */
7448 u = (PyUnicodeObject *)PyUnicode_FromObject(left);
7449 if (u == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007450 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007451 v = (PyUnicodeObject *)PyUnicode_FromObject(right);
7452 if (v == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007453 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007454
7455 /* Shortcuts */
7456 if (v == unicode_empty) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007457 Py_DECREF(v);
7458 return (PyObject *)u;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007459 }
7460 if (u == unicode_empty) {
Benjamin Peterson29060642009-01-31 22:14:21 +00007461 Py_DECREF(u);
7462 return (PyObject *)v;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007463 }
7464
7465 /* Concat the two Unicode strings */
7466 w = _PyUnicode_New(u->length + v->length);
7467 if (w == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00007468 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007469 Py_UNICODE_COPY(w->str, u->str, u->length);
7470 Py_UNICODE_COPY(w->str + u->length, v->str, v->length);
7471
7472 Py_DECREF(u);
7473 Py_DECREF(v);
7474 return (PyObject *)w;
7475
Benjamin Peterson29060642009-01-31 22:14:21 +00007476 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00007477 Py_XDECREF(u);
7478 Py_XDECREF(v);
7479 return NULL;
7480}
7481
Walter Dörwald1ab83302007-05-18 17:15:44 +00007482void
7483PyUnicode_Append(PyObject **pleft, PyObject *right)
7484{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007485 PyObject *new;
7486 if (*pleft == NULL)
7487 return;
7488 if (right == NULL || !PyUnicode_Check(*pleft)) {
7489 Py_DECREF(*pleft);
7490 *pleft = NULL;
7491 return;
7492 }
7493 new = PyUnicode_Concat(*pleft, right);
7494 Py_DECREF(*pleft);
7495 *pleft = new;
Walter Dörwald1ab83302007-05-18 17:15:44 +00007496}
7497
7498void
7499PyUnicode_AppendAndDel(PyObject **pleft, PyObject *right)
7500{
Benjamin Peterson14339b62009-01-31 16:36:08 +00007501 PyUnicode_Append(pleft, right);
7502 Py_XDECREF(right);
Walter Dörwald1ab83302007-05-18 17:15:44 +00007503}
7504
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007505PyDoc_STRVAR(count__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007506 "S.count(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007507\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00007508Return the number of non-overlapping occurrences of substring sub in\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00007509string S[start:end]. Optional arguments start and end are\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007510interpreted as in slice notation.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007511
7512static PyObject *
7513unicode_count(PyUnicodeObject *self, PyObject *args)
7514{
7515 PyUnicodeObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +00007516 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00007517 Py_ssize_t end = PY_SSIZE_T_MAX;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007518 PyObject *result;
7519
Jesus Ceaac451502011-04-20 17:09:23 +02007520 if (!stringlib_parse_args_finds_unicode("count", args, &substring,
7521 &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +00007522 return NULL;
Tim Petersced69f82003-09-16 20:30:58 +00007523
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007524 ADJUST_INDICES(start, end, self->length);
Christian Heimes217cfd12007-12-02 14:31:20 +00007525 result = PyLong_FromSsize_t(
Thomas Wouters477c8d52006-05-27 19:21:47 +00007526 stringlib_count(self->str + start, end - start,
Antoine Pitrouf2c54842010-01-13 08:07:53 +00007527 substring->str, substring->length,
7528 PY_SSIZE_T_MAX)
Thomas Wouters477c8d52006-05-27 19:21:47 +00007529 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00007530
7531 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007532
Guido van Rossumd57fd912000-03-10 22:53:23 +00007533 return result;
7534}
7535
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007536PyDoc_STRVAR(encode__doc__,
Victor Stinnerc911bbf2010-11-07 19:04:46 +00007537 "S.encode(encoding='utf-8', errors='strict') -> bytes\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007538\n\
Victor Stinnere14e2122010-11-07 18:41:46 +00007539Encode S using the codec registered for encoding. Default encoding\n\
7540is 'utf-8'. errors may be given to set a different error\n\
Fred Drakee4315f52000-05-09 19:53:39 +00007541handling scheme. Default is 'strict' meaning that encoding errors raise\n\
Walter Dörwald3aeb6322002-09-02 13:14:32 +00007542a UnicodeEncodeError. Other possible values are 'ignore', 'replace' and\n\
7543'xmlcharrefreplace' as well as any other name registered with\n\
7544codecs.register_error that can handle UnicodeEncodeErrors.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007545
7546static PyObject *
Benjamin Peterson308d6372009-09-18 21:42:35 +00007547unicode_encode(PyUnicodeObject *self, PyObject *args, PyObject *kwargs)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007548{
Benjamin Peterson308d6372009-09-18 21:42:35 +00007549 static char *kwlist[] = {"encoding", "errors", 0};
Guido van Rossumd57fd912000-03-10 22:53:23 +00007550 char *encoding = NULL;
7551 char *errors = NULL;
Guido van Rossum35d94282007-08-27 18:20:11 +00007552
Benjamin Peterson308d6372009-09-18 21:42:35 +00007553 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss:encode",
7554 kwlist, &encoding, &errors))
Guido van Rossumd57fd912000-03-10 22:53:23 +00007555 return NULL;
Georg Brandl3b9406b2010-12-03 07:54:09 +00007556 return PyUnicode_AsEncodedString((PyObject *)self, encoding, errors);
Marc-André Lemburgd2d45982004-07-08 17:57:32 +00007557}
7558
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007559PyDoc_STRVAR(expandtabs__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007560 "S.expandtabs([tabsize]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007561\n\
7562Return a copy of S where all tab characters are expanded using spaces.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007563If tabsize is not given, a tab size of 8 characters is assumed.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007564
7565static PyObject*
7566unicode_expandtabs(PyUnicodeObject *self, PyObject *args)
7567{
7568 Py_UNICODE *e;
7569 Py_UNICODE *p;
7570 Py_UNICODE *q;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007571 Py_UNICODE *qe;
7572 Py_ssize_t i, j, incr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007573 PyUnicodeObject *u;
7574 int tabsize = 8;
7575
7576 if (!PyArg_ParseTuple(args, "|i:expandtabs", &tabsize))
Benjamin Peterson29060642009-01-31 22:14:21 +00007577 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007578
Thomas Wouters7e474022000-07-16 12:04:32 +00007579 /* First pass: determine size of output string */
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007580 i = 0; /* chars up to and including most recent \n or \r */
7581 j = 0; /* chars since most recent \n or \r (use in tab calculations) */
7582 e = self->str + self->length; /* end of input */
Guido van Rossumd57fd912000-03-10 22:53:23 +00007583 for (p = self->str; p < e; p++)
7584 if (*p == '\t') {
Benjamin Peterson29060642009-01-31 22:14:21 +00007585 if (tabsize > 0) {
7586 incr = tabsize - (j % tabsize); /* cannot overflow */
7587 if (j > PY_SSIZE_T_MAX - incr)
7588 goto overflow1;
7589 j += incr;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007590 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007591 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00007592 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00007593 if (j > PY_SSIZE_T_MAX - 1)
7594 goto overflow1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007595 j++;
7596 if (*p == '\n' || *p == '\r') {
Benjamin Peterson29060642009-01-31 22:14:21 +00007597 if (i > PY_SSIZE_T_MAX - j)
7598 goto overflow1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007599 i += j;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007600 j = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007601 }
7602 }
7603
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007604 if (i > PY_SSIZE_T_MAX - j)
Benjamin Peterson29060642009-01-31 22:14:21 +00007605 goto overflow1;
Guido van Rossumcd16bf62007-06-13 18:07:49 +00007606
Guido van Rossumd57fd912000-03-10 22:53:23 +00007607 /* Second pass: create output string and fill it */
7608 u = _PyUnicode_New(i + j);
7609 if (!u)
7610 return NULL;
7611
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007612 j = 0; /* same as in first pass */
7613 q = u->str; /* next output char */
7614 qe = u->str + u->length; /* end of output */
Guido van Rossumd57fd912000-03-10 22:53:23 +00007615
7616 for (p = self->str; p < e; p++)
7617 if (*p == '\t') {
Benjamin Peterson29060642009-01-31 22:14:21 +00007618 if (tabsize > 0) {
7619 i = tabsize - (j % tabsize);
7620 j += i;
7621 while (i--) {
7622 if (q >= qe)
7623 goto overflow2;
7624 *q++ = ' ';
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007625 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007626 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00007627 }
Benjamin Peterson29060642009-01-31 22:14:21 +00007628 else {
7629 if (q >= qe)
7630 goto overflow2;
7631 *q++ = *p;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007632 j++;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007633 if (*p == '\n' || *p == '\r')
7634 j = 0;
7635 }
7636
7637 return (PyObject*) u;
Christian Heimesdd15f6c2008-03-16 00:07:10 +00007638
7639 overflow2:
7640 Py_DECREF(u);
7641 overflow1:
7642 PyErr_SetString(PyExc_OverflowError, "new string is too long");
7643 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007644}
7645
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007646PyDoc_STRVAR(find__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007647 "S.find(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007648\n\
7649Return the lowest index in S where substring sub is found,\n\
Senthil Kumaran53516a82011-07-27 23:33:54 +08007650such that sub is contained within S[start:end]. Optional\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007651arguments start and end are interpreted as in slice notation.\n\
7652\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007653Return -1 on failure.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007654
7655static PyObject *
7656unicode_find(PyUnicodeObject *self, PyObject *args)
7657{
Jesus Ceaac451502011-04-20 17:09:23 +02007658 PyUnicodeObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +00007659 Py_ssize_t start;
7660 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +00007661 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007662
Jesus Ceaac451502011-04-20 17:09:23 +02007663 if (!stringlib_parse_args_finds_unicode("find", args, &substring,
7664 &start, &end))
Guido van Rossumd57fd912000-03-10 22:53:23 +00007665 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007666
Thomas Wouters477c8d52006-05-27 19:21:47 +00007667 result = stringlib_find_slice(
7668 PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self),
7669 PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring),
7670 start, end
7671 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00007672
7673 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007674
Christian Heimes217cfd12007-12-02 14:31:20 +00007675 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007676}
7677
7678static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00007679unicode_getitem(PyUnicodeObject *self, Py_ssize_t index)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007680{
7681 if (index < 0 || index >= self->length) {
7682 PyErr_SetString(PyExc_IndexError, "string index out of range");
7683 return NULL;
7684 }
7685
7686 return (PyObject*) PyUnicode_FromUnicode(&self->str[index], 1);
7687}
7688
Guido van Rossumc2504932007-09-18 19:42:40 +00007689/* Believe it or not, this produces the same value for ASCII strings
7690 as string_hash(). */
Benjamin Peterson8f67d082010-10-17 20:54:53 +00007691static Py_hash_t
Neil Schemenauerf8c37d12007-09-07 20:49:04 +00007692unicode_hash(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007693{
Guido van Rossumc2504932007-09-18 19:42:40 +00007694 Py_ssize_t len;
7695 Py_UNICODE *p;
Gregory P. Smith27cbcd62012-12-10 18:15:46 -08007696 Py_uhash_t x; /* Unsigned for defined overflow behavior. */
Guido van Rossumc2504932007-09-18 19:42:40 +00007697
Benjamin Petersonf6622c82012-04-09 14:53:07 -04007698#ifdef Py_DEBUG
Benjamin Peterson69e97272012-02-21 11:08:50 -05007699 assert(_Py_HashSecret_Initialized);
Benjamin Petersonf6622c82012-04-09 14:53:07 -04007700#endif
Guido van Rossumc2504932007-09-18 19:42:40 +00007701 if (self->hash != -1)
7702 return self->hash;
Christian Heimes90aa7642007-12-19 02:45:37 +00007703 len = Py_SIZE(self);
Georg Brandl2daf6ae2012-02-20 19:54:16 +01007704 /*
7705 We make the hash of the empty string be 0, rather than using
7706 (prefix ^ suffix), since this slightly obfuscates the hash secret
7707 */
7708 if (len == 0) {
7709 self->hash = 0;
7710 return 0;
7711 }
Guido van Rossumc2504932007-09-18 19:42:40 +00007712 p = self->str;
Georg Brandl2daf6ae2012-02-20 19:54:16 +01007713 x = _Py_HashSecret.prefix;
7714 x ^= *p << 7;
Guido van Rossumc2504932007-09-18 19:42:40 +00007715 while (--len >= 0)
Gregory P. Smith63e6c322012-01-14 15:31:34 -08007716 x = (_PyHASH_MULTIPLIER*x) ^ *p++;
Christian Heimes90aa7642007-12-19 02:45:37 +00007717 x ^= Py_SIZE(self);
Georg Brandl2daf6ae2012-02-20 19:54:16 +01007718 x ^= _Py_HashSecret.suffix;
Guido van Rossumc2504932007-09-18 19:42:40 +00007719 if (x == -1)
7720 x = -2;
7721 self->hash = x;
7722 return x;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007723}
7724
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007725PyDoc_STRVAR(index__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007726 "S.index(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007727\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007728Like S.find() but raise ValueError when the substring is not found.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007729
7730static PyObject *
7731unicode_index(PyUnicodeObject *self, PyObject *args)
7732{
Martin v. Löwis18e16552006-02-15 17:27:45 +00007733 Py_ssize_t result;
Jesus Ceaac451502011-04-20 17:09:23 +02007734 PyUnicodeObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +00007735 Py_ssize_t start;
7736 Py_ssize_t end;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007737
Jesus Ceaac451502011-04-20 17:09:23 +02007738 if (!stringlib_parse_args_finds_unicode("index", args, &substring,
7739 &start, &end))
Guido van Rossumd57fd912000-03-10 22:53:23 +00007740 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007741
Thomas Wouters477c8d52006-05-27 19:21:47 +00007742 result = stringlib_find_slice(
7743 PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self),
7744 PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring),
7745 start, end
7746 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00007747
7748 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00007749
Guido van Rossumd57fd912000-03-10 22:53:23 +00007750 if (result < 0) {
7751 PyErr_SetString(PyExc_ValueError, "substring not found");
7752 return NULL;
7753 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00007754
Christian Heimes217cfd12007-12-02 14:31:20 +00007755 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007756}
7757
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007758PyDoc_STRVAR(islower__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007759 "S.islower() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007760\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +00007761Return True if all cased characters in S are lowercase and there is\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007762at least one cased character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007763
7764static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007765unicode_islower(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007766{
7767 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7768 register const Py_UNICODE *e;
7769 int cased;
7770
Guido van Rossumd57fd912000-03-10 22:53:23 +00007771 /* Shortcut for single character strings */
7772 if (PyUnicode_GET_SIZE(self) == 1)
Benjamin Peterson29060642009-01-31 22:14:21 +00007773 return PyBool_FromLong(Py_UNICODE_ISLOWER(*p));
Guido van Rossumd57fd912000-03-10 22:53:23 +00007774
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007775 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007776 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007777 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007778
Guido van Rossumd57fd912000-03-10 22:53:23 +00007779 e = p + PyUnicode_GET_SIZE(self);
7780 cased = 0;
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007781 while (p < e) {
7782 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
Tim Petersced69f82003-09-16 20:30:58 +00007783
Benjamin Peterson29060642009-01-31 22:14:21 +00007784 if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch))
7785 return PyBool_FromLong(0);
7786 else if (!cased && Py_UNICODE_ISLOWER(ch))
7787 cased = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007788 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007789 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007790}
7791
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007792PyDoc_STRVAR(isupper__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007793 "S.isupper() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007794\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007795Return True if all cased characters in S are uppercase and there is\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007796at least one cased character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007797
7798static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007799unicode_isupper(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007800{
7801 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7802 register const Py_UNICODE *e;
7803 int cased;
7804
Guido van Rossumd57fd912000-03-10 22:53:23 +00007805 /* Shortcut for single character strings */
7806 if (PyUnicode_GET_SIZE(self) == 1)
Benjamin Peterson29060642009-01-31 22:14:21 +00007807 return PyBool_FromLong(Py_UNICODE_ISUPPER(*p) != 0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007808
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007809 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007810 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007811 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007812
Guido van Rossumd57fd912000-03-10 22:53:23 +00007813 e = p + PyUnicode_GET_SIZE(self);
7814 cased = 0;
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007815 while (p < e) {
7816 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
Tim Petersced69f82003-09-16 20:30:58 +00007817
Benjamin Peterson29060642009-01-31 22:14:21 +00007818 if (Py_UNICODE_ISLOWER(ch) || Py_UNICODE_ISTITLE(ch))
7819 return PyBool_FromLong(0);
7820 else if (!cased && Py_UNICODE_ISUPPER(ch))
7821 cased = 1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007822 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007823 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007824}
7825
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007826PyDoc_STRVAR(istitle__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007827 "S.istitle() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007828\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007829Return True if S is a titlecased string and there is at least one\n\
7830character in S, i.e. upper- and titlecase characters may only\n\
7831follow uncased characters and lowercase characters only cased ones.\n\
7832Return False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007833
7834static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007835unicode_istitle(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007836{
7837 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7838 register const Py_UNICODE *e;
7839 int cased, previous_is_cased;
7840
Guido van Rossumd57fd912000-03-10 22:53:23 +00007841 /* Shortcut for single character strings */
7842 if (PyUnicode_GET_SIZE(self) == 1)
Benjamin Peterson29060642009-01-31 22:14:21 +00007843 return PyBool_FromLong((Py_UNICODE_ISTITLE(*p) != 0) ||
7844 (Py_UNICODE_ISUPPER(*p) != 0));
Guido van Rossumd57fd912000-03-10 22:53:23 +00007845
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007846 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007847 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007848 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007849
Guido van Rossumd57fd912000-03-10 22:53:23 +00007850 e = p + PyUnicode_GET_SIZE(self);
7851 cased = 0;
7852 previous_is_cased = 0;
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007853 while (p < e) {
7854 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
Tim Petersced69f82003-09-16 20:30:58 +00007855
Benjamin Peterson29060642009-01-31 22:14:21 +00007856 if (Py_UNICODE_ISUPPER(ch) || Py_UNICODE_ISTITLE(ch)) {
7857 if (previous_is_cased)
7858 return PyBool_FromLong(0);
7859 previous_is_cased = 1;
7860 cased = 1;
7861 }
7862 else if (Py_UNICODE_ISLOWER(ch)) {
7863 if (!previous_is_cased)
7864 return PyBool_FromLong(0);
7865 previous_is_cased = 1;
7866 cased = 1;
7867 }
7868 else
7869 previous_is_cased = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00007870 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007871 return PyBool_FromLong(cased);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007872}
7873
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007874PyDoc_STRVAR(isspace__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007875 "S.isspace() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007876\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007877Return True if all characters in S are whitespace\n\
7878and there is at least one character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007879
7880static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007881unicode_isspace(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007882{
7883 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7884 register const Py_UNICODE *e;
7885
Guido van Rossumd57fd912000-03-10 22:53:23 +00007886 /* Shortcut for single character strings */
7887 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00007888 Py_UNICODE_ISSPACE(*p))
7889 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007890
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007891 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007892 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007893 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007894
Guido van Rossumd57fd912000-03-10 22:53:23 +00007895 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007896 while (p < e) {
7897 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
7898 if (!Py_UNICODE_ISSPACE(ch))
Benjamin Peterson29060642009-01-31 22:14:21 +00007899 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007900 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007901 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007902}
7903
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007904PyDoc_STRVAR(isalpha__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007905 "S.isalpha() -> bool\n\
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007906\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007907Return True if all characters in S are alphabetic\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007908and there is at least one character in S, False otherwise.");
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007909
7910static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007911unicode_isalpha(PyUnicodeObject *self)
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007912{
7913 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7914 register const Py_UNICODE *e;
7915
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007916 /* Shortcut for single character strings */
7917 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00007918 Py_UNICODE_ISALPHA(*p))
7919 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007920
7921 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007922 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007923 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007924
7925 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007926 while (p < e) {
7927 if (!Py_UNICODE_ISALPHA(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00007928 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007929 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007930 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007931}
7932
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007933PyDoc_STRVAR(isalnum__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007934 "S.isalnum() -> bool\n\
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007935\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007936Return True if all characters in S are alphanumeric\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007937and there is at least one character in S, False otherwise.");
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007938
7939static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007940unicode_isalnum(PyUnicodeObject *self)
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007941{
7942 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7943 register const Py_UNICODE *e;
7944
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007945 /* Shortcut for single character strings */
7946 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00007947 Py_UNICODE_ISALNUM(*p))
7948 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007949
7950 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007951 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007952 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007953
7954 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007955 while (p < e) {
7956 const Py_UCS4 ch = _Py_UNICODE_NEXT(p, e);
7957 if (!Py_UNICODE_ISALNUM(ch))
Benjamin Peterson29060642009-01-31 22:14:21 +00007958 return PyBool_FromLong(0);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007959 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007960 return PyBool_FromLong(1);
Marc-André Lemburga7acf422000-07-05 09:49:44 +00007961}
7962
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007963PyDoc_STRVAR(isdecimal__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007964 "S.isdecimal() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007965\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +00007966Return True if there are only decimal characters in S,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007967False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007968
7969static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007970unicode_isdecimal(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00007971{
7972 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
7973 register const Py_UNICODE *e;
7974
Guido van Rossumd57fd912000-03-10 22:53:23 +00007975 /* Shortcut for single character strings */
7976 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00007977 Py_UNICODE_ISDECIMAL(*p))
7978 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007979
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007980 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00007981 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00007982 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00007983
Guido van Rossumd57fd912000-03-10 22:53:23 +00007984 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03007985 while (p < e) {
7986 if (!Py_UNICODE_ISDECIMAL(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00007987 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007988 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00007989 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00007990}
7991
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007992PyDoc_STRVAR(isdigit__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00007993 "S.isdigit() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00007994\n\
Martin v. Löwis6828e182003-10-18 09:55:08 +00007995Return True if all characters in S are digits\n\
7996and there is at least one character in S, False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00007997
7998static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00007999unicode_isdigit(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008000{
8001 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
8002 register const Py_UNICODE *e;
8003
Guido van Rossumd57fd912000-03-10 22:53:23 +00008004 /* Shortcut for single character strings */
8005 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00008006 Py_UNICODE_ISDIGIT(*p))
8007 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008008
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00008009 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00008010 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008011 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00008012
Guido van Rossumd57fd912000-03-10 22:53:23 +00008013 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008014 while (p < e) {
8015 if (!Py_UNICODE_ISDIGIT(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00008016 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008017 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00008018 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008019}
8020
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008021PyDoc_STRVAR(isnumeric__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008022 "S.isnumeric() -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008023\n\
Guido van Rossum77f6a652002-04-03 22:41:51 +00008024Return True if there are only numeric characters in S,\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008025False otherwise.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008026
8027static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008028unicode_isnumeric(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008029{
8030 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
8031 register const Py_UNICODE *e;
8032
Guido van Rossumd57fd912000-03-10 22:53:23 +00008033 /* Shortcut for single character strings */
8034 if (PyUnicode_GET_SIZE(self) == 1 &&
Benjamin Peterson29060642009-01-31 22:14:21 +00008035 Py_UNICODE_ISNUMERIC(*p))
8036 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008037
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00008038 /* Special case for empty strings */
Martin v. Löwisdea59e52006-01-05 10:00:36 +00008039 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008040 return PyBool_FromLong(0);
Marc-André Lemburg60bc8092000-06-14 09:18:32 +00008041
Guido van Rossumd57fd912000-03-10 22:53:23 +00008042 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008043 while (p < e) {
8044 if (!Py_UNICODE_ISNUMERIC(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00008045 return PyBool_FromLong(0);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008046 }
Guido van Rossum77f6a652002-04-03 22:41:51 +00008047 return PyBool_FromLong(1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008048}
8049
Martin v. Löwis47383402007-08-15 07:32:56 +00008050int
8051PyUnicode_IsIdentifier(PyObject *self)
8052{
Benjamin Petersonf413b802011-08-12 22:17:18 -05008053 const Py_UNICODE *p = PyUnicode_AS_UNICODE((PyUnicodeObject*)self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008054 const Py_UNICODE *e;
8055 Py_UCS4 first;
Martin v. Löwis47383402007-08-15 07:32:56 +00008056
8057 /* Special case for empty strings */
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008058 if (PyUnicode_GET_SIZE(self) == 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00008059 return 0;
Martin v. Löwis47383402007-08-15 07:32:56 +00008060
8061 /* PEP 3131 says that the first character must be in
8062 XID_Start and subsequent characters in XID_Continue,
8063 and for the ASCII range, the 2.x rules apply (i.e
Benjamin Peterson14339b62009-01-31 16:36:08 +00008064 start with letters and underscore, continue with
Martin v. Löwis47383402007-08-15 07:32:56 +00008065 letters, digits, underscore). However, given the current
8066 definition of XID_Start and XID_Continue, it is sufficient
8067 to check just for these, except that _ must be allowed
8068 as starting an identifier. */
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008069 e = p + PyUnicode_GET_SIZE(self);
8070 first = _Py_UNICODE_NEXT(p, e);
Benjamin Petersonf413b802011-08-12 22:17:18 -05008071 if (!_PyUnicode_IsXidStart(first) && first != 0x5F /* LOW LINE */)
Martin v. Löwis47383402007-08-15 07:32:56 +00008072 return 0;
8073
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008074 while (p < e)
8075 if (!_PyUnicode_IsXidContinue(_Py_UNICODE_NEXT(p, e)))
Benjamin Peterson29060642009-01-31 22:14:21 +00008076 return 0;
Martin v. Löwis47383402007-08-15 07:32:56 +00008077 return 1;
8078}
8079
8080PyDoc_STRVAR(isidentifier__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008081 "S.isidentifier() -> bool\n\
Martin v. Löwis47383402007-08-15 07:32:56 +00008082\n\
8083Return True if S is a valid identifier according\n\
8084to the language definition.");
8085
8086static PyObject*
8087unicode_isidentifier(PyObject *self)
8088{
8089 return PyBool_FromLong(PyUnicode_IsIdentifier(self));
8090}
8091
Georg Brandl559e5d72008-06-11 18:37:52 +00008092PyDoc_STRVAR(isprintable__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008093 "S.isprintable() -> bool\n\
Georg Brandl559e5d72008-06-11 18:37:52 +00008094\n\
8095Return True if all characters in S are considered\n\
8096printable in repr() or S is empty, False otherwise.");
8097
8098static PyObject*
8099unicode_isprintable(PyObject *self)
8100{
8101 register const Py_UNICODE *p = PyUnicode_AS_UNICODE(self);
8102 register const Py_UNICODE *e;
8103
8104 /* Shortcut for single character strings */
8105 if (PyUnicode_GET_SIZE(self) == 1 && Py_UNICODE_ISPRINTABLE(*p)) {
8106 Py_RETURN_TRUE;
8107 }
8108
8109 e = p + PyUnicode_GET_SIZE(self);
Ezio Melotti93e7afc2011-08-22 14:08:38 +03008110 while (p < e) {
8111 if (!Py_UNICODE_ISPRINTABLE(_Py_UNICODE_NEXT(p, e))) {
Georg Brandl559e5d72008-06-11 18:37:52 +00008112 Py_RETURN_FALSE;
8113 }
8114 }
8115 Py_RETURN_TRUE;
8116}
8117
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008118PyDoc_STRVAR(join__doc__,
Georg Brandl495f7b52009-10-27 15:28:25 +00008119 "S.join(iterable) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008120\n\
8121Return a string which is the concatenation of the strings in the\n\
Georg Brandl495f7b52009-10-27 15:28:25 +00008122iterable. The separator between elements is S.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008123
8124static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008125unicode_join(PyObject *self, PyObject *data)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008126{
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008127 return PyUnicode_Join(self, data);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008128}
8129
Martin v. Löwis18e16552006-02-15 17:27:45 +00008130static Py_ssize_t
Guido van Rossumd57fd912000-03-10 22:53:23 +00008131unicode_length(PyUnicodeObject *self)
8132{
8133 return self->length;
8134}
8135
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008136PyDoc_STRVAR(ljust__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008137 "S.ljust(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008138\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00008139Return S left-justified in a Unicode string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008140done using the specified fill character (default is a space).");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008141
8142static PyObject *
8143unicode_ljust(PyUnicodeObject *self, PyObject *args)
8144{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008145 Py_ssize_t width;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008146 Py_UNICODE fillchar = ' ';
8147
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008148 if (!PyArg_ParseTuple(args, "n|O&:ljust", &width, convert_uc, &fillchar))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008149 return NULL;
8150
Tim Peters7a29bd52001-09-12 03:03:31 +00008151 if (self->length >= width && PyUnicode_CheckExact(self)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00008152 Py_INCREF(self);
8153 return (PyObject*) self;
8154 }
8155
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008156 return (PyObject*) pad(self, 0, width - self->length, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008157}
8158
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008159PyDoc_STRVAR(lower__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008160 "S.lower() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008161\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008162Return a copy of the string S converted to lowercase.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008163
8164static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008165unicode_lower(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008166{
Guido van Rossumd57fd912000-03-10 22:53:23 +00008167 return fixup(self, fixlower);
8168}
8169
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008170#define LEFTSTRIP 0
8171#define RIGHTSTRIP 1
8172#define BOTHSTRIP 2
8173
8174/* Arrays indexed by above */
8175static const char *stripformat[] = {"|O:lstrip", "|O:rstrip", "|O:strip"};
8176
8177#define STRIPNAME(i) (stripformat[i]+3)
8178
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008179/* externally visible for str.strip(unicode) */
8180PyObject *
8181_PyUnicode_XStrip(PyUnicodeObject *self, int striptype, PyObject *sepobj)
8182{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008183 Py_UNICODE *s = PyUnicode_AS_UNICODE(self);
8184 Py_ssize_t len = PyUnicode_GET_SIZE(self);
8185 Py_UNICODE *sep = PyUnicode_AS_UNICODE(sepobj);
8186 Py_ssize_t seplen = PyUnicode_GET_SIZE(sepobj);
8187 Py_ssize_t i, j;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008188
Benjamin Peterson29060642009-01-31 22:14:21 +00008189 BLOOM_MASK sepmask = make_bloom_mask(sep, seplen);
Thomas Wouters477c8d52006-05-27 19:21:47 +00008190
Benjamin Peterson14339b62009-01-31 16:36:08 +00008191 i = 0;
8192 if (striptype != RIGHTSTRIP) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008193 while (i < len && BLOOM_MEMBER(sepmask, s[i], sep, seplen)) {
8194 i++;
8195 }
Benjamin Peterson14339b62009-01-31 16:36:08 +00008196 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008197
Benjamin Peterson14339b62009-01-31 16:36:08 +00008198 j = len;
8199 if (striptype != LEFTSTRIP) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008200 do {
8201 j--;
8202 } while (j >= i && BLOOM_MEMBER(sepmask, s[j], sep, seplen));
8203 j++;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008204 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008205
Benjamin Peterson14339b62009-01-31 16:36:08 +00008206 if (i == 0 && j == len && PyUnicode_CheckExact(self)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008207 Py_INCREF(self);
8208 return (PyObject*)self;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008209 }
8210 else
Benjamin Peterson29060642009-01-31 22:14:21 +00008211 return PyUnicode_FromUnicode(s+i, j-i);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008212}
8213
Guido van Rossumd57fd912000-03-10 22:53:23 +00008214
8215static PyObject *
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008216do_strip(PyUnicodeObject *self, int striptype)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008217{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008218 Py_UNICODE *s = PyUnicode_AS_UNICODE(self);
8219 Py_ssize_t len = PyUnicode_GET_SIZE(self), i, j;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008220
Benjamin Peterson14339b62009-01-31 16:36:08 +00008221 i = 0;
8222 if (striptype != RIGHTSTRIP) {
8223 while (i < len && Py_UNICODE_ISSPACE(s[i])) {
8224 i++;
8225 }
8226 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008227
Benjamin Peterson14339b62009-01-31 16:36:08 +00008228 j = len;
8229 if (striptype != LEFTSTRIP) {
8230 do {
8231 j--;
8232 } while (j >= i && Py_UNICODE_ISSPACE(s[j]));
8233 j++;
8234 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008235
Benjamin Peterson14339b62009-01-31 16:36:08 +00008236 if (i == 0 && j == len && PyUnicode_CheckExact(self)) {
8237 Py_INCREF(self);
8238 return (PyObject*)self;
8239 }
8240 else
8241 return PyUnicode_FromUnicode(s+i, j-i);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008242}
8243
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008244
8245static PyObject *
8246do_argstrip(PyUnicodeObject *self, int striptype, PyObject *args)
8247{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008248 PyObject *sep = NULL;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008249
Benjamin Peterson14339b62009-01-31 16:36:08 +00008250 if (!PyArg_ParseTuple(args, (char *)stripformat[striptype], &sep))
8251 return NULL;
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008252
Benjamin Peterson14339b62009-01-31 16:36:08 +00008253 if (sep != NULL && sep != Py_None) {
8254 if (PyUnicode_Check(sep))
8255 return _PyUnicode_XStrip(self, striptype, sep);
8256 else {
8257 PyErr_Format(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00008258 "%s arg must be None or str",
8259 STRIPNAME(striptype));
Benjamin Peterson14339b62009-01-31 16:36:08 +00008260 return NULL;
8261 }
8262 }
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008263
Benjamin Peterson14339b62009-01-31 16:36:08 +00008264 return do_strip(self, striptype);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008265}
8266
8267
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008268PyDoc_STRVAR(strip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008269 "S.strip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008270\n\
8271Return a copy of the string S with leading and trailing\n\
8272whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00008273If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008274
8275static PyObject *
8276unicode_strip(PyUnicodeObject *self, PyObject *args)
8277{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008278 if (PyTuple_GET_SIZE(args) == 0)
8279 return do_strip(self, BOTHSTRIP); /* Common case */
8280 else
8281 return do_argstrip(self, BOTHSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008282}
8283
8284
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008285PyDoc_STRVAR(lstrip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008286 "S.lstrip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008287\n\
8288Return a copy of the string S with leading whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00008289If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008290
8291static PyObject *
8292unicode_lstrip(PyUnicodeObject *self, PyObject *args)
8293{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008294 if (PyTuple_GET_SIZE(args) == 0)
8295 return do_strip(self, LEFTSTRIP); /* Common case */
8296 else
8297 return do_argstrip(self, LEFTSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008298}
8299
8300
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008301PyDoc_STRVAR(rstrip__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008302 "S.rstrip([chars]) -> str\n\
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008303\n\
8304Return a copy of the string S with trailing whitespace removed.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00008305If chars is given and not None, remove characters in chars instead.");
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008306
8307static PyObject *
8308unicode_rstrip(PyUnicodeObject *self, PyObject *args)
8309{
Benjamin Peterson14339b62009-01-31 16:36:08 +00008310 if (PyTuple_GET_SIZE(args) == 0)
8311 return do_strip(self, RIGHTSTRIP); /* Common case */
8312 else
8313 return do_argstrip(self, RIGHTSTRIP, args);
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00008314}
8315
8316
Guido van Rossumd57fd912000-03-10 22:53:23 +00008317static PyObject*
Martin v. Löwis18e16552006-02-15 17:27:45 +00008318unicode_repeat(PyUnicodeObject *str, Py_ssize_t len)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008319{
8320 PyUnicodeObject *u;
8321 Py_UNICODE *p;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008322 Py_ssize_t nchars;
Tim Peters8f422462000-09-09 06:13:41 +00008323 size_t nbytes;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008324
Georg Brandl222de0f2009-04-12 12:01:50 +00008325 if (len < 1) {
8326 Py_INCREF(unicode_empty);
8327 return (PyObject *)unicode_empty;
8328 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008329
Tim Peters7a29bd52001-09-12 03:03:31 +00008330 if (len == 1 && PyUnicode_CheckExact(str)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00008331 /* no repeat, return original string */
8332 Py_INCREF(str);
8333 return (PyObject*) str;
8334 }
Tim Peters8f422462000-09-09 06:13:41 +00008335
8336 /* ensure # of chars needed doesn't overflow int and # of bytes
8337 * needed doesn't overflow size_t
8338 */
8339 nchars = len * str->length;
Georg Brandl222de0f2009-04-12 12:01:50 +00008340 if (nchars / len != str->length) {
Tim Peters8f422462000-09-09 06:13:41 +00008341 PyErr_SetString(PyExc_OverflowError,
8342 "repeated string is too long");
8343 return NULL;
8344 }
8345 nbytes = (nchars + 1) * sizeof(Py_UNICODE);
8346 if (nbytes / sizeof(Py_UNICODE) != (size_t)(nchars + 1)) {
8347 PyErr_SetString(PyExc_OverflowError,
8348 "repeated string is too long");
8349 return NULL;
8350 }
8351 u = _PyUnicode_New(nchars);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008352 if (!u)
8353 return NULL;
8354
8355 p = u->str;
8356
Georg Brandl222de0f2009-04-12 12:01:50 +00008357 if (str->length == 1) {
Thomas Wouters477c8d52006-05-27 19:21:47 +00008358 Py_UNICODE_FILL(p, str->str[0], len);
8359 } else {
Georg Brandl222de0f2009-04-12 12:01:50 +00008360 Py_ssize_t done = str->length; /* number of characters copied this far */
8361 Py_UNICODE_COPY(p, str->str, str->length);
Benjamin Peterson29060642009-01-31 22:14:21 +00008362 while (done < nchars) {
Christian Heimescc47b052008-03-25 14:56:36 +00008363 Py_ssize_t n = (done <= nchars-done) ? done : nchars-done;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008364 Py_UNICODE_COPY(p+done, p, n);
8365 done += n;
Benjamin Peterson29060642009-01-31 22:14:21 +00008366 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008367 }
8368
8369 return (PyObject*) u;
8370}
8371
8372PyObject *PyUnicode_Replace(PyObject *obj,
Benjamin Peterson29060642009-01-31 22:14:21 +00008373 PyObject *subobj,
8374 PyObject *replobj,
8375 Py_ssize_t maxcount)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008376{
8377 PyObject *self;
8378 PyObject *str1;
8379 PyObject *str2;
8380 PyObject *result;
8381
8382 self = PyUnicode_FromObject(obj);
8383 if (self == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008384 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008385 str1 = PyUnicode_FromObject(subobj);
8386 if (str1 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008387 Py_DECREF(self);
8388 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008389 }
8390 str2 = PyUnicode_FromObject(replobj);
8391 if (str2 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008392 Py_DECREF(self);
8393 Py_DECREF(str1);
8394 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008395 }
Tim Petersced69f82003-09-16 20:30:58 +00008396 result = replace((PyUnicodeObject *)self,
Benjamin Peterson29060642009-01-31 22:14:21 +00008397 (PyUnicodeObject *)str1,
8398 (PyUnicodeObject *)str2,
8399 maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008400 Py_DECREF(self);
8401 Py_DECREF(str1);
8402 Py_DECREF(str2);
8403 return result;
8404}
8405
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008406PyDoc_STRVAR(replace__doc__,
Ezio Melottic1897e72010-06-26 18:50:39 +00008407 "S.replace(old, new[, count]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008408\n\
8409Return a copy of S with all occurrences of substring\n\
Georg Brandlf08a9dd2008-06-10 16:57:31 +00008410old replaced by new. If the optional argument count is\n\
8411given, only the first count occurrences are replaced.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008412
8413static PyObject*
8414unicode_replace(PyUnicodeObject *self, PyObject *args)
8415{
8416 PyUnicodeObject *str1;
8417 PyUnicodeObject *str2;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008418 Py_ssize_t maxcount = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008419 PyObject *result;
8420
Martin v. Löwis18e16552006-02-15 17:27:45 +00008421 if (!PyArg_ParseTuple(args, "OO|n:replace", &str1, &str2, &maxcount))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008422 return NULL;
8423 str1 = (PyUnicodeObject *)PyUnicode_FromObject((PyObject *)str1);
8424 if (str1 == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00008425 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008426 str2 = (PyUnicodeObject *)PyUnicode_FromObject((PyObject *)str2);
Walter Dörwaldf6b56ae2003-02-09 23:42:56 +00008427 if (str2 == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00008428 Py_DECREF(str1);
8429 return NULL;
Walter Dörwaldf6b56ae2003-02-09 23:42:56 +00008430 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008431
8432 result = replace(self, str1, str2, maxcount);
8433
8434 Py_DECREF(str1);
8435 Py_DECREF(str2);
8436 return result;
8437}
8438
8439static
8440PyObject *unicode_repr(PyObject *unicode)
8441{
Walter Dörwald79e913e2007-05-12 11:08:06 +00008442 PyObject *repr;
Walter Dörwald1ab83302007-05-18 17:15:44 +00008443 Py_UNICODE *p;
Walter Dörwald79e913e2007-05-12 11:08:06 +00008444 Py_UNICODE *s = PyUnicode_AS_UNICODE(unicode);
8445 Py_ssize_t size = PyUnicode_GET_SIZE(unicode);
8446
8447 /* XXX(nnorwitz): rather than over-allocating, it would be
8448 better to choose a different scheme. Perhaps scan the
8449 first N-chars of the string and allocate based on that size.
8450 */
8451 /* Initial allocation is based on the longest-possible unichr
8452 escape.
8453
8454 In wide (UTF-32) builds '\U00xxxxxx' is 10 chars per source
8455 unichr, so in this case it's the longest unichr escape. In
8456 narrow (UTF-16) builds this is five chars per source unichr
8457 since there are two unichrs in the surrogate pair, so in narrow
8458 (UTF-16) builds it's not the longest unichr escape.
8459
8460 In wide or narrow builds '\uxxxx' is 6 chars per source unichr,
8461 so in the narrow (UTF-16) build case it's the longest unichr
8462 escape.
8463 */
8464
Walter Dörwald1ab83302007-05-18 17:15:44 +00008465 repr = PyUnicode_FromUnicode(NULL,
Benjamin Peterson29060642009-01-31 22:14:21 +00008466 2 /* quotes */
Walter Dörwald79e913e2007-05-12 11:08:06 +00008467#ifdef Py_UNICODE_WIDE
Benjamin Peterson29060642009-01-31 22:14:21 +00008468 + 10*size
Walter Dörwald79e913e2007-05-12 11:08:06 +00008469#else
Benjamin Peterson29060642009-01-31 22:14:21 +00008470 + 6*size
Walter Dörwald79e913e2007-05-12 11:08:06 +00008471#endif
Benjamin Peterson29060642009-01-31 22:14:21 +00008472 + 1);
Walter Dörwald79e913e2007-05-12 11:08:06 +00008473 if (repr == NULL)
8474 return NULL;
8475
Walter Dörwald1ab83302007-05-18 17:15:44 +00008476 p = PyUnicode_AS_UNICODE(repr);
Walter Dörwald79e913e2007-05-12 11:08:06 +00008477
8478 /* Add quote */
8479 *p++ = (findchar(s, size, '\'') &&
8480 !findchar(s, size, '"')) ? '"' : '\'';
8481 while (size-- > 0) {
8482 Py_UNICODE ch = *s++;
8483
8484 /* Escape quotes and backslashes */
Walter Dörwald1ab83302007-05-18 17:15:44 +00008485 if ((ch == PyUnicode_AS_UNICODE(repr)[0]) || (ch == '\\')) {
Walter Dörwald79e913e2007-05-12 11:08:06 +00008486 *p++ = '\\';
Walter Dörwald1ab83302007-05-18 17:15:44 +00008487 *p++ = ch;
Walter Dörwald79e913e2007-05-12 11:08:06 +00008488 continue;
8489 }
8490
Benjamin Peterson29060642009-01-31 22:14:21 +00008491 /* Map special whitespace to '\t', \n', '\r' */
Georg Brandl559e5d72008-06-11 18:37:52 +00008492 if (ch == '\t') {
Walter Dörwald79e913e2007-05-12 11:08:06 +00008493 *p++ = '\\';
8494 *p++ = 't';
8495 }
8496 else if (ch == '\n') {
8497 *p++ = '\\';
8498 *p++ = 'n';
8499 }
8500 else if (ch == '\r') {
8501 *p++ = '\\';
8502 *p++ = 'r';
8503 }
8504
8505 /* Map non-printable US ASCII to '\xhh' */
Georg Brandl559e5d72008-06-11 18:37:52 +00008506 else if (ch < ' ' || ch == 0x7F) {
Walter Dörwald79e913e2007-05-12 11:08:06 +00008507 *p++ = '\\';
8508 *p++ = 'x';
8509 *p++ = hexdigits[(ch >> 4) & 0x000F];
8510 *p++ = hexdigits[ch & 0x000F];
8511 }
8512
Georg Brandl559e5d72008-06-11 18:37:52 +00008513 /* Copy ASCII characters as-is */
8514 else if (ch < 0x7F) {
8515 *p++ = ch;
8516 }
8517
Benjamin Peterson29060642009-01-31 22:14:21 +00008518 /* Non-ASCII characters */
Georg Brandl559e5d72008-06-11 18:37:52 +00008519 else {
8520 Py_UCS4 ucs = ch;
8521
8522#ifndef Py_UNICODE_WIDE
8523 Py_UNICODE ch2 = 0;
8524 /* Get code point from surrogate pair */
8525 if (size > 0) {
8526 ch2 = *s;
8527 if (ch >= 0xD800 && ch < 0xDC00 && ch2 >= 0xDC00
Benjamin Peterson29060642009-01-31 22:14:21 +00008528 && ch2 <= 0xDFFF) {
Benjamin Peterson14339b62009-01-31 16:36:08 +00008529 ucs = (((ch & 0x03FF) << 10) | (ch2 & 0x03FF))
Benjamin Peterson29060642009-01-31 22:14:21 +00008530 + 0x00010000;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008531 s++;
Georg Brandl559e5d72008-06-11 18:37:52 +00008532 size--;
8533 }
8534 }
8535#endif
Benjamin Peterson14339b62009-01-31 16:36:08 +00008536 /* Map Unicode whitespace and control characters
Georg Brandl559e5d72008-06-11 18:37:52 +00008537 (categories Z* and C* except ASCII space)
8538 */
8539 if (!Py_UNICODE_ISPRINTABLE(ucs)) {
8540 /* Map 8-bit characters to '\xhh' */
8541 if (ucs <= 0xff) {
8542 *p++ = '\\';
8543 *p++ = 'x';
8544 *p++ = hexdigits[(ch >> 4) & 0x000F];
8545 *p++ = hexdigits[ch & 0x000F];
8546 }
8547 /* Map 21-bit characters to '\U00xxxxxx' */
8548 else if (ucs >= 0x10000) {
8549 *p++ = '\\';
8550 *p++ = 'U';
8551 *p++ = hexdigits[(ucs >> 28) & 0x0000000F];
8552 *p++ = hexdigits[(ucs >> 24) & 0x0000000F];
8553 *p++ = hexdigits[(ucs >> 20) & 0x0000000F];
8554 *p++ = hexdigits[(ucs >> 16) & 0x0000000F];
8555 *p++ = hexdigits[(ucs >> 12) & 0x0000000F];
8556 *p++ = hexdigits[(ucs >> 8) & 0x0000000F];
8557 *p++ = hexdigits[(ucs >> 4) & 0x0000000F];
8558 *p++ = hexdigits[ucs & 0x0000000F];
8559 }
8560 /* Map 16-bit characters to '\uxxxx' */
8561 else {
8562 *p++ = '\\';
8563 *p++ = 'u';
8564 *p++ = hexdigits[(ucs >> 12) & 0x000F];
8565 *p++ = hexdigits[(ucs >> 8) & 0x000F];
8566 *p++ = hexdigits[(ucs >> 4) & 0x000F];
8567 *p++ = hexdigits[ucs & 0x000F];
8568 }
8569 }
8570 /* Copy characters as-is */
8571 else {
8572 *p++ = ch;
8573#ifndef Py_UNICODE_WIDE
8574 if (ucs >= 0x10000)
8575 *p++ = ch2;
8576#endif
8577 }
8578 }
Walter Dörwald79e913e2007-05-12 11:08:06 +00008579 }
8580 /* Add quote */
Walter Dörwald1ab83302007-05-18 17:15:44 +00008581 *p++ = PyUnicode_AS_UNICODE(repr)[0];
Walter Dörwald79e913e2007-05-12 11:08:06 +00008582
8583 *p = '\0';
Alexandre Vassalottiaa0e5312008-12-27 06:43:58 +00008584 PyUnicode_Resize(&repr, p - PyUnicode_AS_UNICODE(repr));
Walter Dörwald79e913e2007-05-12 11:08:06 +00008585 return repr;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008586}
8587
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008588PyDoc_STRVAR(rfind__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008589 "S.rfind(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008590\n\
8591Return the highest index in S where substring sub is found,\n\
Senthil Kumaran53516a82011-07-27 23:33:54 +08008592such that sub is contained within S[start:end]. Optional\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008593arguments start and end are interpreted as in slice notation.\n\
8594\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008595Return -1 on failure.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008596
8597static PyObject *
8598unicode_rfind(PyUnicodeObject *self, PyObject *args)
8599{
Jesus Ceaac451502011-04-20 17:09:23 +02008600 PyUnicodeObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +00008601 Py_ssize_t start;
8602 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008603 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008604
Jesus Ceaac451502011-04-20 17:09:23 +02008605 if (!stringlib_parse_args_finds_unicode("rfind", args, &substring,
8606 &start, &end))
Benjamin Peterson14339b62009-01-31 16:36:08 +00008607 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008608
Thomas Wouters477c8d52006-05-27 19:21:47 +00008609 result = stringlib_rfind_slice(
8610 PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self),
8611 PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring),
8612 start, end
8613 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00008614
8615 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00008616
Christian Heimes217cfd12007-12-02 14:31:20 +00008617 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008618}
8619
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008620PyDoc_STRVAR(rindex__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008621 "S.rindex(sub[, start[, end]]) -> int\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008622\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008623Like S.rfind() but raise ValueError when the substring is not found.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008624
8625static PyObject *
8626unicode_rindex(PyUnicodeObject *self, PyObject *args)
8627{
Jesus Ceaac451502011-04-20 17:09:23 +02008628 PyUnicodeObject *substring;
Christian Heimes9cd17752007-11-18 19:35:23 +00008629 Py_ssize_t start;
8630 Py_ssize_t end;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008631 Py_ssize_t result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008632
Jesus Ceaac451502011-04-20 17:09:23 +02008633 if (!stringlib_parse_args_finds_unicode("rindex", args, &substring,
8634 &start, &end))
Benjamin Peterson14339b62009-01-31 16:36:08 +00008635 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008636
Thomas Wouters477c8d52006-05-27 19:21:47 +00008637 result = stringlib_rfind_slice(
8638 PyUnicode_AS_UNICODE(self), PyUnicode_GET_SIZE(self),
8639 PyUnicode_AS_UNICODE(substring), PyUnicode_GET_SIZE(substring),
8640 start, end
8641 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00008642
8643 Py_DECREF(substring);
Thomas Wouters477c8d52006-05-27 19:21:47 +00008644
Guido van Rossumd57fd912000-03-10 22:53:23 +00008645 if (result < 0) {
8646 PyErr_SetString(PyExc_ValueError, "substring not found");
8647 return NULL;
8648 }
Christian Heimes217cfd12007-12-02 14:31:20 +00008649 return PyLong_FromSsize_t(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008650}
8651
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008652PyDoc_STRVAR(rjust__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008653 "S.rjust(width[, fillchar]) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008654\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00008655Return S right-justified in a string of length width. Padding is\n\
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008656done using the specified fill character (default is a space).");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008657
8658static PyObject *
8659unicode_rjust(PyUnicodeObject *self, PyObject *args)
8660{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008661 Py_ssize_t width;
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008662 Py_UNICODE fillchar = ' ';
8663
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008664 if (!PyArg_ParseTuple(args, "n|O&:rjust", &width, convert_uc, &fillchar))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008665 return NULL;
8666
Tim Peters7a29bd52001-09-12 03:03:31 +00008667 if (self->length >= width && PyUnicode_CheckExact(self)) {
Guido van Rossumd57fd912000-03-10 22:53:23 +00008668 Py_INCREF(self);
8669 return (PyObject*) self;
8670 }
8671
Raymond Hettinger4f8f9762003-11-26 08:21:35 +00008672 return (PyObject*) pad(self, width - self->length, 0, fillchar);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008673}
8674
Guido van Rossumd57fd912000-03-10 22:53:23 +00008675PyObject *PyUnicode_Split(PyObject *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00008676 PyObject *sep,
8677 Py_ssize_t maxsplit)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008678{
8679 PyObject *result;
Tim Petersced69f82003-09-16 20:30:58 +00008680
Guido van Rossumd57fd912000-03-10 22:53:23 +00008681 s = PyUnicode_FromObject(s);
8682 if (s == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +00008683 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +00008684 if (sep != NULL) {
8685 sep = PyUnicode_FromObject(sep);
8686 if (sep == NULL) {
8687 Py_DECREF(s);
8688 return NULL;
8689 }
Guido van Rossumd57fd912000-03-10 22:53:23 +00008690 }
8691
8692 result = split((PyUnicodeObject *)s, (PyUnicodeObject *)sep, maxsplit);
8693
8694 Py_DECREF(s);
8695 Py_XDECREF(sep);
8696 return result;
8697}
8698
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008699PyDoc_STRVAR(split__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008700 "S.split([sep[, maxsplit]]) -> list of strings\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008701\n\
8702Return a list of the words in S, using sep as the\n\
8703delimiter string. If maxsplit is given, at most maxsplit\n\
Alexandre Vassalotti5f8ced22008-05-16 00:03:33 +00008704splits are done. If sep is not specified or is None, any\n\
Alexandre Vassalotti8ae3e052008-05-16 00:41:41 +00008705whitespace string is a separator and empty strings are\n\
8706removed from the result.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008707
8708static PyObject*
8709unicode_split(PyUnicodeObject *self, PyObject *args)
8710{
8711 PyObject *substring = Py_None;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008712 Py_ssize_t maxcount = -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008713
Martin v. Löwis18e16552006-02-15 17:27:45 +00008714 if (!PyArg_ParseTuple(args, "|On:split", &substring, &maxcount))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008715 return NULL;
8716
8717 if (substring == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00008718 return split(self, NULL, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008719 else if (PyUnicode_Check(substring))
Benjamin Peterson29060642009-01-31 22:14:21 +00008720 return split(self, (PyUnicodeObject *)substring, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008721 else
Benjamin Peterson29060642009-01-31 22:14:21 +00008722 return PyUnicode_Split((PyObject *)self, substring, maxcount);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008723}
8724
Thomas Wouters477c8d52006-05-27 19:21:47 +00008725PyObject *
8726PyUnicode_Partition(PyObject *str_in, PyObject *sep_in)
8727{
8728 PyObject* str_obj;
8729 PyObject* sep_obj;
8730 PyObject* out;
8731
8732 str_obj = PyUnicode_FromObject(str_in);
8733 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +00008734 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008735 sep_obj = PyUnicode_FromObject(sep_in);
8736 if (!sep_obj) {
8737 Py_DECREF(str_obj);
8738 return NULL;
8739 }
8740
8741 out = stringlib_partition(
8742 str_obj, PyUnicode_AS_UNICODE(str_obj), PyUnicode_GET_SIZE(str_obj),
8743 sep_obj, PyUnicode_AS_UNICODE(sep_obj), PyUnicode_GET_SIZE(sep_obj)
8744 );
8745
8746 Py_DECREF(sep_obj);
8747 Py_DECREF(str_obj);
8748
8749 return out;
8750}
8751
8752
8753PyObject *
8754PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in)
8755{
8756 PyObject* str_obj;
8757 PyObject* sep_obj;
8758 PyObject* out;
8759
8760 str_obj = PyUnicode_FromObject(str_in);
8761 if (!str_obj)
Benjamin Peterson29060642009-01-31 22:14:21 +00008762 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00008763 sep_obj = PyUnicode_FromObject(sep_in);
8764 if (!sep_obj) {
8765 Py_DECREF(str_obj);
8766 return NULL;
8767 }
8768
8769 out = stringlib_rpartition(
8770 str_obj, PyUnicode_AS_UNICODE(str_obj), PyUnicode_GET_SIZE(str_obj),
8771 sep_obj, PyUnicode_AS_UNICODE(sep_obj), PyUnicode_GET_SIZE(sep_obj)
8772 );
8773
8774 Py_DECREF(sep_obj);
8775 Py_DECREF(str_obj);
8776
8777 return out;
8778}
8779
8780PyDoc_STRVAR(partition__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008781 "S.partition(sep) -> (head, sep, tail)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00008782\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00008783Search for the separator sep in S, and return the part before it,\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00008784the separator itself, and the part after it. If the separator is not\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00008785found, return S and two empty strings.");
Thomas Wouters477c8d52006-05-27 19:21:47 +00008786
8787static PyObject*
8788unicode_partition(PyUnicodeObject *self, PyObject *separator)
8789{
8790 return PyUnicode_Partition((PyObject *)self, separator);
8791}
8792
8793PyDoc_STRVAR(rpartition__doc__,
Ezio Melotti5b2b2422010-01-25 11:58:28 +00008794 "S.rpartition(sep) -> (head, sep, tail)\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00008795\n\
Georg Brandl17cb8a82008-05-30 08:20:09 +00008796Search for the separator sep in S, starting at the end of S, and return\n\
Thomas Wouters477c8d52006-05-27 19:21:47 +00008797the part before it, the separator itself, and the part after it. If the\n\
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00008798separator is not found, return two empty strings and S.");
Thomas Wouters477c8d52006-05-27 19:21:47 +00008799
8800static PyObject*
8801unicode_rpartition(PyUnicodeObject *self, PyObject *separator)
8802{
8803 return PyUnicode_RPartition((PyObject *)self, separator);
8804}
8805
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008806PyObject *PyUnicode_RSplit(PyObject *s,
Benjamin Peterson29060642009-01-31 22:14:21 +00008807 PyObject *sep,
8808 Py_ssize_t maxsplit)
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008809{
8810 PyObject *result;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008811
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008812 s = PyUnicode_FromObject(s);
8813 if (s == NULL)
Benjamin Peterson14339b62009-01-31 16:36:08 +00008814 return NULL;
Benjamin Peterson29060642009-01-31 22:14:21 +00008815 if (sep != NULL) {
8816 sep = PyUnicode_FromObject(sep);
8817 if (sep == NULL) {
8818 Py_DECREF(s);
8819 return NULL;
8820 }
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008821 }
8822
8823 result = rsplit((PyUnicodeObject *)s, (PyUnicodeObject *)sep, maxsplit);
8824
8825 Py_DECREF(s);
8826 Py_XDECREF(sep);
8827 return result;
8828}
8829
8830PyDoc_STRVAR(rsplit__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008831 "S.rsplit([sep[, maxsplit]]) -> list of strings\n\
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008832\n\
8833Return a list of the words in S, using sep as the\n\
8834delimiter string, starting at the end of the string and\n\
8835working to the front. If maxsplit is given, at most maxsplit\n\
8836splits are done. If sep is not specified, any whitespace string\n\
8837is a separator.");
8838
8839static PyObject*
8840unicode_rsplit(PyUnicodeObject *self, PyObject *args)
8841{
8842 PyObject *substring = Py_None;
Martin v. Löwis18e16552006-02-15 17:27:45 +00008843 Py_ssize_t maxcount = -1;
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008844
Martin v. Löwis18e16552006-02-15 17:27:45 +00008845 if (!PyArg_ParseTuple(args, "|On:rsplit", &substring, &maxcount))
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008846 return NULL;
8847
8848 if (substring == Py_None)
Benjamin Peterson29060642009-01-31 22:14:21 +00008849 return rsplit(self, NULL, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008850 else if (PyUnicode_Check(substring))
Benjamin Peterson29060642009-01-31 22:14:21 +00008851 return rsplit(self, (PyUnicodeObject *)substring, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008852 else
Benjamin Peterson29060642009-01-31 22:14:21 +00008853 return PyUnicode_RSplit((PyObject *)self, substring, maxcount);
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00008854}
8855
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008856PyDoc_STRVAR(splitlines__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008857 "S.splitlines([keepends]) -> list of strings\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008858\n\
8859Return a list of the lines in S, breaking at line boundaries.\n\
Guido van Rossum86662912000-04-11 15:38:46 +00008860Line breaks are not included in the resulting list unless keepends\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008861is given and true.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008862
8863static PyObject*
8864unicode_splitlines(PyUnicodeObject *self, PyObject *args)
8865{
Guido van Rossum86662912000-04-11 15:38:46 +00008866 int keepends = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00008867
Guido van Rossum86662912000-04-11 15:38:46 +00008868 if (!PyArg_ParseTuple(args, "|i:splitlines", &keepends))
Guido van Rossumd57fd912000-03-10 22:53:23 +00008869 return NULL;
8870
Guido van Rossum86662912000-04-11 15:38:46 +00008871 return PyUnicode_Splitlines((PyObject *)self, keepends);
Guido van Rossumd57fd912000-03-10 22:53:23 +00008872}
8873
8874static
Guido van Rossumf15a29f2007-05-04 00:41:39 +00008875PyObject *unicode_str(PyObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008876{
Walter Dörwald346737f2007-05-31 10:44:43 +00008877 if (PyUnicode_CheckExact(self)) {
8878 Py_INCREF(self);
8879 return self;
8880 } else
8881 /* Subtype -- return genuine unicode string with the same value. */
8882 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(self),
8883 PyUnicode_GET_SIZE(self));
Guido van Rossumd57fd912000-03-10 22:53:23 +00008884}
8885
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008886PyDoc_STRVAR(swapcase__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008887 "S.swapcase() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00008888\n\
8889Return a copy of S with uppercase characters converted to lowercase\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008890and vice versa.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00008891
8892static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00008893unicode_swapcase(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00008894{
Guido van Rossumd57fd912000-03-10 22:53:23 +00008895 return fixup(self, fixswapcase);
8896}
8897
Georg Brandlceee0772007-11-27 23:48:05 +00008898PyDoc_STRVAR(maketrans__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00008899 "str.maketrans(x[, y[, z]]) -> dict (static method)\n\
Georg Brandlceee0772007-11-27 23:48:05 +00008900\n\
8901Return a translation table usable for str.translate().\n\
8902If there is only one argument, it must be a dictionary mapping Unicode\n\
8903ordinals (integers) or characters to Unicode ordinals, strings or None.\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00008904Character keys will be then converted to ordinals.\n\
Georg Brandlceee0772007-11-27 23:48:05 +00008905If there are two arguments, they must be strings of equal length, and\n\
8906in the resulting dictionary, each character in x will be mapped to the\n\
8907character at the same position in y. If there is a third argument, it\n\
8908must be a string, whose characters will be mapped to None in the result.");
8909
8910static PyObject*
8911unicode_maketrans(PyUnicodeObject *null, PyObject *args)
8912{
8913 PyObject *x, *y = NULL, *z = NULL;
8914 PyObject *new = NULL, *key, *value;
8915 Py_ssize_t i = 0;
8916 int res;
Benjamin Peterson14339b62009-01-31 16:36:08 +00008917
Georg Brandlceee0772007-11-27 23:48:05 +00008918 if (!PyArg_ParseTuple(args, "O|UU:maketrans", &x, &y, &z))
8919 return NULL;
8920 new = PyDict_New();
8921 if (!new)
8922 return NULL;
8923 if (y != NULL) {
8924 /* x must be a string too, of equal length */
8925 Py_ssize_t ylen = PyUnicode_GET_SIZE(y);
8926 if (!PyUnicode_Check(x)) {
8927 PyErr_SetString(PyExc_TypeError, "first maketrans argument must "
8928 "be a string if there is a second argument");
8929 goto err;
8930 }
8931 if (PyUnicode_GET_SIZE(x) != ylen) {
8932 PyErr_SetString(PyExc_ValueError, "the first two maketrans "
8933 "arguments must have equal length");
8934 goto err;
8935 }
8936 /* create entries for translating chars in x to those in y */
8937 for (i = 0; i < PyUnicode_GET_SIZE(x); i++) {
Christian Heimes217cfd12007-12-02 14:31:20 +00008938 key = PyLong_FromLong(PyUnicode_AS_UNICODE(x)[i]);
Benjamin Peterson53aa1d72011-12-20 13:29:45 -06008939 if (!key)
Georg Brandlceee0772007-11-27 23:48:05 +00008940 goto err;
Benjamin Peterson53aa1d72011-12-20 13:29:45 -06008941 value = PyLong_FromLong(PyUnicode_AS_UNICODE(y)[i]);
8942 if (!value) {
8943 Py_DECREF(key);
8944 goto err;
8945 }
Georg Brandlceee0772007-11-27 23:48:05 +00008946 res = PyDict_SetItem(new, key, value);
8947 Py_DECREF(key);
8948 Py_DECREF(value);
8949 if (res < 0)
8950 goto err;
8951 }
8952 /* create entries for deleting chars in z */
8953 if (z != NULL) {
8954 for (i = 0; i < PyUnicode_GET_SIZE(z); i++) {
Christian Heimes217cfd12007-12-02 14:31:20 +00008955 key = PyLong_FromLong(PyUnicode_AS_UNICODE(z)[i]);
Georg Brandlceee0772007-11-27 23:48:05 +00008956 if (!key)
8957 goto err;
8958 res = PyDict_SetItem(new, key, Py_None);
8959 Py_DECREF(key);
8960 if (res < 0)
8961 goto err;
8962 }
8963 }
8964 } else {
8965 /* x must be a dict */
Raymond Hettinger3ad05762009-05-29 22:11:22 +00008966 if (!PyDict_CheckExact(x)) {
Georg Brandlceee0772007-11-27 23:48:05 +00008967 PyErr_SetString(PyExc_TypeError, "if you give only one argument "
8968 "to maketrans it must be a dict");
8969 goto err;
8970 }
8971 /* copy entries into the new dict, converting string keys to int keys */
8972 while (PyDict_Next(x, &i, &key, &value)) {
8973 if (PyUnicode_Check(key)) {
8974 /* convert string keys to integer keys */
8975 PyObject *newkey;
8976 if (PyUnicode_GET_SIZE(key) != 1) {
8977 PyErr_SetString(PyExc_ValueError, "string keys in translate "
8978 "table must be of length 1");
8979 goto err;
8980 }
Christian Heimes217cfd12007-12-02 14:31:20 +00008981 newkey = PyLong_FromLong(PyUnicode_AS_UNICODE(key)[0]);
Georg Brandlceee0772007-11-27 23:48:05 +00008982 if (!newkey)
8983 goto err;
8984 res = PyDict_SetItem(new, newkey, value);
8985 Py_DECREF(newkey);
8986 if (res < 0)
8987 goto err;
Christian Heimes217cfd12007-12-02 14:31:20 +00008988 } else if (PyLong_Check(key)) {
Georg Brandlceee0772007-11-27 23:48:05 +00008989 /* just keep integer keys */
8990 if (PyDict_SetItem(new, key, value) < 0)
8991 goto err;
8992 } else {
8993 PyErr_SetString(PyExc_TypeError, "keys in translate table must "
8994 "be strings or integers");
8995 goto err;
8996 }
8997 }
8998 }
8999 return new;
9000 err:
9001 Py_DECREF(new);
9002 return NULL;
9003}
9004
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009005PyDoc_STRVAR(translate__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009006 "S.translate(table) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009007\n\
9008Return a copy of the string S, where all characters have been mapped\n\
9009through the given translation table, which must be a mapping of\n\
Benjamin Peterson142957c2008-07-04 19:55:29 +00009010Unicode ordinals to Unicode ordinals, strings, or None.\n\
Walter Dörwald5c1ee172002-09-04 20:31:32 +00009011Unmapped characters are left untouched. Characters mapped to None\n\
9012are deleted.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009013
9014static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009015unicode_translate(PyUnicodeObject *self, PyObject *table)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009016{
Georg Brandlceee0772007-11-27 23:48:05 +00009017 return PyUnicode_TranslateCharmap(self->str, self->length, table, "ignore");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009018}
9019
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009020PyDoc_STRVAR(upper__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009021 "S.upper() -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009022\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009023Return a copy of S converted to uppercase.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009024
9025static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009026unicode_upper(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009027{
Guido van Rossumd57fd912000-03-10 22:53:23 +00009028 return fixup(self, fixupper);
9029}
9030
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009031PyDoc_STRVAR(zfill__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009032 "S.zfill(width) -> str\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009033\n\
Benjamin Peterson9aa42992008-09-10 21:57:34 +00009034Pad a numeric string S with zeros on the left, to fill a field\n\
9035of the specified width. The string S is never truncated.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009036
9037static PyObject *
9038unicode_zfill(PyUnicodeObject *self, PyObject *args)
9039{
Martin v. Löwis18e16552006-02-15 17:27:45 +00009040 Py_ssize_t fill;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009041 PyUnicodeObject *u;
9042
Martin v. Löwis18e16552006-02-15 17:27:45 +00009043 Py_ssize_t width;
9044 if (!PyArg_ParseTuple(args, "n:zfill", &width))
Guido van Rossumd57fd912000-03-10 22:53:23 +00009045 return NULL;
9046
9047 if (self->length >= width) {
Walter Dörwald0fe940c2002-04-15 18:42:15 +00009048 if (PyUnicode_CheckExact(self)) {
9049 Py_INCREF(self);
9050 return (PyObject*) self;
9051 }
9052 else
9053 return PyUnicode_FromUnicode(
9054 PyUnicode_AS_UNICODE(self),
9055 PyUnicode_GET_SIZE(self)
Benjamin Peterson29060642009-01-31 22:14:21 +00009056 );
Guido van Rossumd57fd912000-03-10 22:53:23 +00009057 }
9058
9059 fill = width - self->length;
9060
9061 u = pad(self, fill, 0, '0');
9062
Walter Dörwald068325e2002-04-15 13:36:47 +00009063 if (u == NULL)
9064 return NULL;
9065
Guido van Rossumd57fd912000-03-10 22:53:23 +00009066 if (u->str[fill] == '+' || u->str[fill] == '-') {
9067 /* move sign to beginning of string */
9068 u->str[0] = u->str[fill];
9069 u->str[fill] = '0';
9070 }
9071
9072 return (PyObject*) u;
9073}
Guido van Rossumd57fd912000-03-10 22:53:23 +00009074
9075#if 0
9076static PyObject*
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009077unicode_freelistsize(PyUnicodeObject *self)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009078{
Christian Heimes2202f872008-02-06 14:31:34 +00009079 return PyLong_FromLong(numfree);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009080}
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00009081
9082static PyObject *
9083unicode__decimal2ascii(PyObject *self)
9084{
9085 return PyUnicode_TransformDecimalToASCII(PyUnicode_AS_UNICODE(self),
9086 PyUnicode_GET_SIZE(self));
9087}
Guido van Rossumd57fd912000-03-10 22:53:23 +00009088#endif
9089
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009090PyDoc_STRVAR(startswith__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009091 "S.startswith(prefix[, start[, end]]) -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009092\n\
Guido van Rossuma7132182003-04-09 19:32:45 +00009093Return True if S starts with the specified prefix, False otherwise.\n\
9094With optional start, test S beginning at that position.\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009095With optional end, stop comparing S at that position.\n\
9096prefix can also be a tuple of strings to try.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009097
9098static PyObject *
9099unicode_startswith(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00009100 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009101{
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009102 PyObject *subobj;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009103 PyUnicodeObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +00009104 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009105 Py_ssize_t end = PY_SSIZE_T_MAX;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009106 int result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009107
Jesus Ceaac451502011-04-20 17:09:23 +02009108 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +00009109 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009110 if (PyTuple_Check(subobj)) {
9111 Py_ssize_t i;
9112 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
9113 substring = (PyUnicodeObject *)PyUnicode_FromObject(
Benjamin Peterson29060642009-01-31 22:14:21 +00009114 PyTuple_GET_ITEM(subobj, i));
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009115 if (substring == NULL)
9116 return NULL;
9117 result = tailmatch(self, substring, start, end, -1);
9118 Py_DECREF(substring);
9119 if (result) {
9120 Py_RETURN_TRUE;
9121 }
9122 }
9123 /* nothing matched */
9124 Py_RETURN_FALSE;
9125 }
9126 substring = (PyUnicodeObject *)PyUnicode_FromObject(subobj);
Ezio Melottiba42fd52011-04-26 06:09:45 +03009127 if (substring == NULL) {
9128 if (PyErr_ExceptionMatches(PyExc_TypeError))
9129 PyErr_Format(PyExc_TypeError, "startswith first arg must be str or "
9130 "a tuple of str, not %s", Py_TYPE(subobj)->tp_name);
Benjamin Peterson29060642009-01-31 22:14:21 +00009131 return NULL;
Ezio Melottiba42fd52011-04-26 06:09:45 +03009132 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009133 result = tailmatch(self, substring, start, end, -1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009134 Py_DECREF(substring);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009135 return PyBool_FromLong(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009136}
9137
9138
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009139PyDoc_STRVAR(endswith__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009140 "S.endswith(suffix[, start[, end]]) -> bool\n\
Guido van Rossumd57fd912000-03-10 22:53:23 +00009141\n\
Guido van Rossuma7132182003-04-09 19:32:45 +00009142Return True if S ends with the specified suffix, False otherwise.\n\
9143With optional start, test S beginning at that position.\n\
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009144With optional end, stop comparing S at that position.\n\
9145suffix can also be a tuple of strings to try.");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009146
9147static PyObject *
9148unicode_endswith(PyUnicodeObject *self,
Benjamin Peterson29060642009-01-31 22:14:21 +00009149 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009150{
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009151 PyObject *subobj;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009152 PyUnicodeObject *substring;
Martin v. Löwis18e16552006-02-15 17:27:45 +00009153 Py_ssize_t start = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009154 Py_ssize_t end = PY_SSIZE_T_MAX;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009155 int result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009156
Jesus Ceaac451502011-04-20 17:09:23 +02009157 if (!stringlib_parse_args_finds("endswith", args, &subobj, &start, &end))
Benjamin Peterson29060642009-01-31 22:14:21 +00009158 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009159 if (PyTuple_Check(subobj)) {
9160 Py_ssize_t i;
9161 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
9162 substring = (PyUnicodeObject *)PyUnicode_FromObject(
Benjamin Peterson29060642009-01-31 22:14:21 +00009163 PyTuple_GET_ITEM(subobj, i));
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009164 if (substring == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009165 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009166 result = tailmatch(self, substring, start, end, +1);
9167 Py_DECREF(substring);
9168 if (result) {
9169 Py_RETURN_TRUE;
9170 }
9171 }
9172 Py_RETURN_FALSE;
9173 }
9174 substring = (PyUnicodeObject *)PyUnicode_FromObject(subobj);
Ezio Melottiba42fd52011-04-26 06:09:45 +03009175 if (substring == NULL) {
9176 if (PyErr_ExceptionMatches(PyExc_TypeError))
9177 PyErr_Format(PyExc_TypeError, "endswith first arg must be str or "
9178 "a tuple of str, not %s", Py_TYPE(subobj)->tp_name);
Benjamin Peterson29060642009-01-31 22:14:21 +00009179 return NULL;
Ezio Melottiba42fd52011-04-26 06:09:45 +03009180 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009181 result = tailmatch(self, substring, start, end, +1);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009182 Py_DECREF(substring);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009183 return PyBool_FromLong(result);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009184}
9185
Eric Smith8c663262007-08-25 02:26:07 +00009186#include "stringlib/string_format.h"
9187
9188PyDoc_STRVAR(format__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009189 "S.format(*args, **kwargs) -> str\n\
Eric Smith8c663262007-08-25 02:26:07 +00009190\n\
Eric Smith51d2fd92010-11-06 19:27:37 +00009191Return a formatted version of S, using substitutions from args and kwargs.\n\
9192The substitutions are identified by braces ('{' and '}').");
Eric Smith8c663262007-08-25 02:26:07 +00009193
Eric Smith27bbca62010-11-04 17:06:58 +00009194PyDoc_STRVAR(format_map__doc__,
9195 "S.format_map(mapping) -> str\n\
9196\n\
Eric Smith51d2fd92010-11-06 19:27:37 +00009197Return a formatted version of S, using substitutions from mapping.\n\
9198The substitutions are identified by braces ('{' and '}').");
Eric Smith27bbca62010-11-04 17:06:58 +00009199
Eric Smith4a7d76d2008-05-30 18:10:19 +00009200static PyObject *
9201unicode__format__(PyObject* self, PyObject* args)
9202{
9203 PyObject *format_spec;
9204
9205 if (!PyArg_ParseTuple(args, "U:__format__", &format_spec))
9206 return NULL;
9207
9208 return _PyUnicode_FormatAdvanced(self,
9209 PyUnicode_AS_UNICODE(format_spec),
9210 PyUnicode_GET_SIZE(format_spec));
9211}
9212
Eric Smith8c663262007-08-25 02:26:07 +00009213PyDoc_STRVAR(p_format__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009214 "S.__format__(format_spec) -> str\n\
Eric Smith8c663262007-08-25 02:26:07 +00009215\n\
Eric Smith51d2fd92010-11-06 19:27:37 +00009216Return a formatted version of S as described by format_spec.");
Eric Smith8c663262007-08-25 02:26:07 +00009217
9218static PyObject *
Georg Brandlc28e1fa2008-06-10 19:20:26 +00009219unicode__sizeof__(PyUnicodeObject *v)
9220{
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +00009221 return PyLong_FromSsize_t(sizeof(PyUnicodeObject) +
9222 sizeof(Py_UNICODE) * (v->length + 1));
Georg Brandlc28e1fa2008-06-10 19:20:26 +00009223}
9224
9225PyDoc_STRVAR(sizeof__doc__,
Benjamin Peterson29060642009-01-31 22:14:21 +00009226 "S.__sizeof__() -> size of S in memory, in bytes");
Georg Brandlc28e1fa2008-06-10 19:20:26 +00009227
9228static PyObject *
Guido van Rossum5d9113d2003-01-29 17:58:45 +00009229unicode_getnewargs(PyUnicodeObject *v)
9230{
Benjamin Peterson14339b62009-01-31 16:36:08 +00009231 return Py_BuildValue("(u#)", v->str, v->length);
Guido van Rossum5d9113d2003-01-29 17:58:45 +00009232}
9233
Guido van Rossumd57fd912000-03-10 22:53:23 +00009234static PyMethodDef unicode_methods[] = {
Benjamin Peterson28a4dce2010-12-12 01:33:04 +00009235 {"encode", (PyCFunction) unicode_encode, METH_VARARGS | METH_KEYWORDS, encode__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009236 {"replace", (PyCFunction) unicode_replace, METH_VARARGS, replace__doc__},
9237 {"split", (PyCFunction) unicode_split, METH_VARARGS, split__doc__},
Hye-Shik Chang3ae811b2003-12-15 18:49:53 +00009238 {"rsplit", (PyCFunction) unicode_rsplit, METH_VARARGS, rsplit__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009239 {"join", (PyCFunction) unicode_join, METH_O, join__doc__},
9240 {"capitalize", (PyCFunction) unicode_capitalize, METH_NOARGS, capitalize__doc__},
9241 {"title", (PyCFunction) unicode_title, METH_NOARGS, title__doc__},
9242 {"center", (PyCFunction) unicode_center, METH_VARARGS, center__doc__},
9243 {"count", (PyCFunction) unicode_count, METH_VARARGS, count__doc__},
9244 {"expandtabs", (PyCFunction) unicode_expandtabs, METH_VARARGS, expandtabs__doc__},
9245 {"find", (PyCFunction) unicode_find, METH_VARARGS, find__doc__},
Thomas Wouters477c8d52006-05-27 19:21:47 +00009246 {"partition", (PyCFunction) unicode_partition, METH_O, partition__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009247 {"index", (PyCFunction) unicode_index, METH_VARARGS, index__doc__},
9248 {"ljust", (PyCFunction) unicode_ljust, METH_VARARGS, ljust__doc__},
9249 {"lower", (PyCFunction) unicode_lower, METH_NOARGS, lower__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00009250 {"lstrip", (PyCFunction) unicode_lstrip, METH_VARARGS, lstrip__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009251 {"rfind", (PyCFunction) unicode_rfind, METH_VARARGS, rfind__doc__},
9252 {"rindex", (PyCFunction) unicode_rindex, METH_VARARGS, rindex__doc__},
9253 {"rjust", (PyCFunction) unicode_rjust, METH_VARARGS, rjust__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00009254 {"rstrip", (PyCFunction) unicode_rstrip, METH_VARARGS, rstrip__doc__},
Thomas Wouters477c8d52006-05-27 19:21:47 +00009255 {"rpartition", (PyCFunction) unicode_rpartition, METH_O, rpartition__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009256 {"splitlines", (PyCFunction) unicode_splitlines, METH_VARARGS, splitlines__doc__},
Walter Dörwaldde02bcb2002-04-22 17:42:37 +00009257 {"strip", (PyCFunction) unicode_strip, METH_VARARGS, strip__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009258 {"swapcase", (PyCFunction) unicode_swapcase, METH_NOARGS, swapcase__doc__},
9259 {"translate", (PyCFunction) unicode_translate, METH_O, translate__doc__},
9260 {"upper", (PyCFunction) unicode_upper, METH_NOARGS, upper__doc__},
9261 {"startswith", (PyCFunction) unicode_startswith, METH_VARARGS, startswith__doc__},
9262 {"endswith", (PyCFunction) unicode_endswith, METH_VARARGS, endswith__doc__},
9263 {"islower", (PyCFunction) unicode_islower, METH_NOARGS, islower__doc__},
9264 {"isupper", (PyCFunction) unicode_isupper, METH_NOARGS, isupper__doc__},
9265 {"istitle", (PyCFunction) unicode_istitle, METH_NOARGS, istitle__doc__},
9266 {"isspace", (PyCFunction) unicode_isspace, METH_NOARGS, isspace__doc__},
9267 {"isdecimal", (PyCFunction) unicode_isdecimal, METH_NOARGS, isdecimal__doc__},
9268 {"isdigit", (PyCFunction) unicode_isdigit, METH_NOARGS, isdigit__doc__},
9269 {"isnumeric", (PyCFunction) unicode_isnumeric, METH_NOARGS, isnumeric__doc__},
9270 {"isalpha", (PyCFunction) unicode_isalpha, METH_NOARGS, isalpha__doc__},
9271 {"isalnum", (PyCFunction) unicode_isalnum, METH_NOARGS, isalnum__doc__},
Martin v. Löwis47383402007-08-15 07:32:56 +00009272 {"isidentifier", (PyCFunction) unicode_isidentifier, METH_NOARGS, isidentifier__doc__},
Georg Brandl559e5d72008-06-11 18:37:52 +00009273 {"isprintable", (PyCFunction) unicode_isprintable, METH_NOARGS, isprintable__doc__},
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009274 {"zfill", (PyCFunction) unicode_zfill, METH_VARARGS, zfill__doc__},
Eric Smith9cd1e092007-08-31 18:39:38 +00009275 {"format", (PyCFunction) do_string_format, METH_VARARGS | METH_KEYWORDS, format__doc__},
Eric Smith27bbca62010-11-04 17:06:58 +00009276 {"format_map", (PyCFunction) do_string_format_map, METH_O, format_map__doc__},
Eric Smith4a7d76d2008-05-30 18:10:19 +00009277 {"__format__", (PyCFunction) unicode__format__, METH_VARARGS, p_format__doc__},
Georg Brandlceee0772007-11-27 23:48:05 +00009278 {"maketrans", (PyCFunction) unicode_maketrans,
9279 METH_VARARGS | METH_STATIC, maketrans__doc__},
Georg Brandlc28e1fa2008-06-10 19:20:26 +00009280 {"__sizeof__", (PyCFunction) unicode__sizeof__, METH_NOARGS, sizeof__doc__},
Walter Dörwald068325e2002-04-15 13:36:47 +00009281#if 0
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009282 {"capwords", (PyCFunction) unicode_capwords, METH_NOARGS, capwords__doc__},
Guido van Rossumd57fd912000-03-10 22:53:23 +00009283#endif
9284
9285#if 0
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00009286 /* These methods are just used for debugging the implementation. */
Martin v. Löwise3eb1f22001-08-16 13:15:00 +00009287 {"freelistsize", (PyCFunction) unicode_freelistsize, METH_NOARGS},
Alexander Belopolsky942af5a2010-12-04 03:38:46 +00009288 {"_decimal2ascii", (PyCFunction) unicode__decimal2ascii, METH_NOARGS},
Guido van Rossumd57fd912000-03-10 22:53:23 +00009289#endif
9290
Benjamin Peterson14339b62009-01-31 16:36:08 +00009291 {"__getnewargs__", (PyCFunction)unicode_getnewargs, METH_NOARGS},
Guido van Rossumd57fd912000-03-10 22:53:23 +00009292 {NULL, NULL}
9293};
9294
Neil Schemenauerce30bc92002-11-18 16:10:18 +00009295static PyObject *
9296unicode_mod(PyObject *v, PyObject *w)
9297{
Benjamin Peterson29060642009-01-31 22:14:21 +00009298 if (!PyUnicode_Check(v)) {
9299 Py_INCREF(Py_NotImplemented);
9300 return Py_NotImplemented;
9301 }
9302 return PyUnicode_Format(v, w);
Neil Schemenauerce30bc92002-11-18 16:10:18 +00009303}
9304
9305static PyNumberMethods unicode_as_number = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00009306 0, /*nb_add*/
9307 0, /*nb_subtract*/
9308 0, /*nb_multiply*/
9309 unicode_mod, /*nb_remainder*/
Neil Schemenauerce30bc92002-11-18 16:10:18 +00009310};
9311
Guido van Rossumd57fd912000-03-10 22:53:23 +00009312static PySequenceMethods unicode_as_sequence = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00009313 (lenfunc) unicode_length, /* sq_length */
9314 PyUnicode_Concat, /* sq_concat */
9315 (ssizeargfunc) unicode_repeat, /* sq_repeat */
9316 (ssizeargfunc) unicode_getitem, /* sq_item */
9317 0, /* sq_slice */
9318 0, /* sq_ass_item */
9319 0, /* sq_ass_slice */
9320 PyUnicode_Contains, /* sq_contains */
Guido van Rossumd57fd912000-03-10 22:53:23 +00009321};
9322
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009323static PyObject*
9324unicode_subscript(PyUnicodeObject* self, PyObject* item)
9325{
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00009326 if (PyIndex_Check(item)) {
9327 Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009328 if (i == -1 && PyErr_Occurred())
9329 return NULL;
9330 if (i < 0)
Martin v. Löwisdea59e52006-01-05 10:00:36 +00009331 i += PyUnicode_GET_SIZE(self);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009332 return unicode_getitem(self, i);
9333 } else if (PySlice_Check(item)) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00009334 Py_ssize_t start, stop, step, slicelength, cur, i;
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009335 Py_UNICODE* source_buf;
9336 Py_UNICODE* result_buf;
9337 PyObject* result;
9338
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00009339 if (PySlice_GetIndicesEx(item, PyUnicode_GET_SIZE(self),
Benjamin Peterson29060642009-01-31 22:14:21 +00009340 &start, &stop, &step, &slicelength) < 0) {
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009341 return NULL;
9342 }
9343
9344 if (slicelength <= 0) {
9345 return PyUnicode_FromUnicode(NULL, 0);
Thomas Woutersed03b412007-08-28 21:37:11 +00009346 } else if (start == 0 && step == 1 && slicelength == self->length &&
9347 PyUnicode_CheckExact(self)) {
9348 Py_INCREF(self);
9349 return (PyObject *)self;
9350 } else if (step == 1) {
9351 return PyUnicode_FromUnicode(self->str + start, slicelength);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009352 } else {
9353 source_buf = PyUnicode_AS_UNICODE((PyObject*)self);
Christian Heimesb186d002008-03-18 15:15:01 +00009354 result_buf = (Py_UNICODE *)PyObject_MALLOC(slicelength*
9355 sizeof(Py_UNICODE));
Benjamin Peterson14339b62009-01-31 16:36:08 +00009356
Benjamin Peterson29060642009-01-31 22:14:21 +00009357 if (result_buf == NULL)
9358 return PyErr_NoMemory();
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009359
9360 for (cur = start, i = 0; i < slicelength; cur += step, i++) {
9361 result_buf[i] = source_buf[cur];
9362 }
Tim Petersced69f82003-09-16 20:30:58 +00009363
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009364 result = PyUnicode_FromUnicode(result_buf, slicelength);
Christian Heimesb186d002008-03-18 15:15:01 +00009365 PyObject_FREE(result_buf);
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009366 return result;
9367 }
9368 } else {
9369 PyErr_SetString(PyExc_TypeError, "string indices must be integers");
9370 return NULL;
9371 }
9372}
9373
9374static PyMappingMethods unicode_as_mapping = {
Benjamin Peterson14339b62009-01-31 16:36:08 +00009375 (lenfunc)unicode_length, /* mp_length */
9376 (binaryfunc)unicode_subscript, /* mp_subscript */
9377 (objobjargproc)0, /* mp_ass_subscript */
Michael W. Hudson5efaf7e2002-06-11 10:55:12 +00009378};
9379
Guido van Rossumd57fd912000-03-10 22:53:23 +00009380
Guido van Rossumd57fd912000-03-10 22:53:23 +00009381/* Helpers for PyUnicode_Format() */
9382
9383static PyObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00009384getnextarg(PyObject *args, Py_ssize_t arglen, Py_ssize_t *p_argidx)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009385{
Martin v. Löwis18e16552006-02-15 17:27:45 +00009386 Py_ssize_t argidx = *p_argidx;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009387 if (argidx < arglen) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009388 (*p_argidx)++;
9389 if (arglen < 0)
9390 return args;
9391 else
9392 return PyTuple_GetItem(args, argidx);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009393 }
9394 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00009395 "not enough arguments for format string");
Guido van Rossumd57fd912000-03-10 22:53:23 +00009396 return NULL;
9397}
9398
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009399/* Returns a new reference to a PyUnicode object, or NULL on failure. */
Guido van Rossumd57fd912000-03-10 22:53:23 +00009400
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009401static PyObject *
9402formatfloat(PyObject *v, int flags, int prec, int type)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009403{
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009404 char *p;
9405 PyObject *result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009406 double x;
Tim Petersced69f82003-09-16 20:30:58 +00009407
Guido van Rossumd57fd912000-03-10 22:53:23 +00009408 x = PyFloat_AsDouble(v);
9409 if (x == -1.0 && PyErr_Occurred())
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009410 return NULL;
9411
Guido van Rossumd57fd912000-03-10 22:53:23 +00009412 if (prec < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00009413 prec = 6;
Eric Smith0923d1d2009-04-16 20:16:10 +00009414
Eric Smith0923d1d2009-04-16 20:16:10 +00009415 p = PyOS_double_to_string(x, type, prec,
9416 (flags & F_ALT) ? Py_DTSF_ALT : 0, NULL);
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009417 if (p == NULL)
9418 return NULL;
9419 result = PyUnicode_FromStringAndSize(p, strlen(p));
Eric Smith0923d1d2009-04-16 20:16:10 +00009420 PyMem_Free(p);
9421 return result;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009422}
9423
Tim Peters38fd5b62000-09-21 05:43:11 +00009424static PyObject*
9425formatlong(PyObject *val, int flags, int prec, int type)
9426{
Benjamin Peterson14339b62009-01-31 16:36:08 +00009427 char *buf;
9428 int len;
9429 PyObject *str; /* temporary string object. */
9430 PyObject *result;
Tim Peters38fd5b62000-09-21 05:43:11 +00009431
Benjamin Peterson14339b62009-01-31 16:36:08 +00009432 str = _PyBytes_FormatLong(val, flags, prec, type, &buf, &len);
9433 if (!str)
9434 return NULL;
9435 result = PyUnicode_FromStringAndSize(buf, len);
9436 Py_DECREF(str);
9437 return result;
Tim Peters38fd5b62000-09-21 05:43:11 +00009438}
9439
Guido van Rossumd57fd912000-03-10 22:53:23 +00009440static int
9441formatchar(Py_UNICODE *buf,
Marc-André Lemburgf28dd832000-06-30 10:29:57 +00009442 size_t buflen,
9443 PyObject *v)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009444{
Amaury Forgeot d'Arca4db6862008-07-04 21:26:43 +00009445 /* presume that the buffer is at least 3 characters long */
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +00009446 if (PyUnicode_Check(v)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009447 if (PyUnicode_GET_SIZE(v) == 1) {
9448 buf[0] = PyUnicode_AS_UNICODE(v)[0];
9449 buf[1] = '\0';
9450 return 1;
9451 }
9452#ifndef Py_UNICODE_WIDE
9453 if (PyUnicode_GET_SIZE(v) == 2) {
9454 /* Decode a valid surrogate pair */
9455 int c0 = PyUnicode_AS_UNICODE(v)[0];
9456 int c1 = PyUnicode_AS_UNICODE(v)[1];
9457 if (0xD800 <= c0 && c0 <= 0xDBFF &&
9458 0xDC00 <= c1 && c1 <= 0xDFFF) {
9459 buf[0] = c0;
9460 buf[1] = c1;
9461 buf[2] = '\0';
9462 return 2;
9463 }
9464 }
9465#endif
9466 goto onError;
9467 }
9468 else {
9469 /* Integer input truncated to a character */
9470 long x;
9471 x = PyLong_AsLong(v);
9472 if (x == -1 && PyErr_Occurred())
9473 goto onError;
9474
9475 if (x < 0 || x > 0x10ffff) {
9476 PyErr_SetString(PyExc_OverflowError,
9477 "%c arg not in range(0x110000)");
9478 return -1;
9479 }
9480
9481#ifndef Py_UNICODE_WIDE
9482 if (x > 0xffff) {
9483 x -= 0x10000;
9484 buf[0] = (Py_UNICODE)(0xD800 | (x >> 10));
9485 buf[1] = (Py_UNICODE)(0xDC00 | (x & 0x3FF));
9486 return 2;
9487 }
9488#endif
9489 buf[0] = (Py_UNICODE) x;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009490 buf[1] = '\0';
9491 return 1;
9492 }
Amaury Forgeot d'Arca4db6862008-07-04 21:26:43 +00009493
Benjamin Peterson29060642009-01-31 22:14:21 +00009494 onError:
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +00009495 PyErr_SetString(PyExc_TypeError,
Benjamin Peterson29060642009-01-31 22:14:21 +00009496 "%c requires int or char");
Marc-André Lemburgd4ab4a52000-06-08 17:54:00 +00009497 return -1;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009498}
9499
Marc-André Lemburgf28dd832000-06-30 10:29:57 +00009500/* fmt%(v1,v2,...) is roughly equivalent to sprintf(fmt, v1, v2, ...)
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009501 FORMATBUFLEN is the length of the buffer in which chars are formatted.
Marc-André Lemburgf28dd832000-06-30 10:29:57 +00009502*/
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009503#define FORMATBUFLEN (size_t)10
Marc-André Lemburgf28dd832000-06-30 10:29:57 +00009504
Guido van Rossumd57fd912000-03-10 22:53:23 +00009505PyObject *PyUnicode_Format(PyObject *format,
Benjamin Peterson29060642009-01-31 22:14:21 +00009506 PyObject *args)
Guido van Rossumd57fd912000-03-10 22:53:23 +00009507{
9508 Py_UNICODE *fmt, *res;
Martin v. Löwis18e16552006-02-15 17:27:45 +00009509 Py_ssize_t fmtcnt, rescnt, reslen, arglen, argidx;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009510 int args_owned = 0;
9511 PyUnicodeObject *result = NULL;
9512 PyObject *dict = NULL;
9513 PyObject *uformat;
Tim Petersced69f82003-09-16 20:30:58 +00009514
Guido van Rossumd57fd912000-03-10 22:53:23 +00009515 if (format == NULL || args == NULL) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009516 PyErr_BadInternalCall();
9517 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009518 }
9519 uformat = PyUnicode_FromObject(format);
Fred Drakee4315f52000-05-09 19:53:39 +00009520 if (uformat == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009521 return NULL;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009522 fmt = PyUnicode_AS_UNICODE(uformat);
9523 fmtcnt = PyUnicode_GET_SIZE(uformat);
9524
9525 reslen = rescnt = fmtcnt + 100;
9526 result = _PyUnicode_New(reslen);
9527 if (result == NULL)
Benjamin Peterson29060642009-01-31 22:14:21 +00009528 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009529 res = PyUnicode_AS_UNICODE(result);
9530
9531 if (PyTuple_Check(args)) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009532 arglen = PyTuple_Size(args);
9533 argidx = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009534 }
9535 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00009536 arglen = -1;
9537 argidx = -2;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009538 }
Benjamin Peterson28a6cfa2012-08-28 17:55:35 -04009539 if (PyMapping_Check(args) && !PyTuple_Check(args) && !PyUnicode_Check(args))
Benjamin Peterson29060642009-01-31 22:14:21 +00009540 dict = args;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009541
9542 while (--fmtcnt >= 0) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009543 if (*fmt != '%') {
9544 if (--rescnt < 0) {
9545 rescnt = fmtcnt + 100;
9546 reslen += rescnt;
9547 if (_PyUnicode_Resize(&result, reslen) < 0)
9548 goto onError;
9549 res = PyUnicode_AS_UNICODE(result) + reslen - rescnt;
9550 --rescnt;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009551 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009552 *res++ = *fmt++;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009553 }
9554 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00009555 /* Got a format specifier */
9556 int flags = 0;
9557 Py_ssize_t width = -1;
9558 int prec = -1;
9559 Py_UNICODE c = '\0';
9560 Py_UNICODE fill;
9561 int isnumok;
9562 PyObject *v = NULL;
9563 PyObject *temp = NULL;
9564 Py_UNICODE *pbuf;
9565 Py_UNICODE sign;
9566 Py_ssize_t len;
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009567 Py_UNICODE formatbuf[FORMATBUFLEN]; /* For formatchar() */
Guido van Rossumd57fd912000-03-10 22:53:23 +00009568
Benjamin Peterson29060642009-01-31 22:14:21 +00009569 fmt++;
9570 if (*fmt == '(') {
9571 Py_UNICODE *keystart;
9572 Py_ssize_t keylen;
9573 PyObject *key;
9574 int pcount = 1;
Christian Heimesa612dc02008-02-24 13:08:18 +00009575
Benjamin Peterson29060642009-01-31 22:14:21 +00009576 if (dict == NULL) {
9577 PyErr_SetString(PyExc_TypeError,
9578 "format requires a mapping");
9579 goto onError;
9580 }
9581 ++fmt;
9582 --fmtcnt;
9583 keystart = fmt;
9584 /* Skip over balanced parentheses */
9585 while (pcount > 0 && --fmtcnt >= 0) {
9586 if (*fmt == ')')
9587 --pcount;
9588 else if (*fmt == '(')
9589 ++pcount;
9590 fmt++;
9591 }
9592 keylen = fmt - keystart - 1;
9593 if (fmtcnt < 0 || pcount > 0) {
9594 PyErr_SetString(PyExc_ValueError,
9595 "incomplete format key");
9596 goto onError;
9597 }
9598#if 0
9599 /* keys are converted to strings using UTF-8 and
9600 then looked up since Python uses strings to hold
9601 variables names etc. in its namespaces and we
9602 wouldn't want to break common idioms. */
9603 key = PyUnicode_EncodeUTF8(keystart,
9604 keylen,
9605 NULL);
9606#else
9607 key = PyUnicode_FromUnicode(keystart, keylen);
9608#endif
9609 if (key == NULL)
9610 goto onError;
9611 if (args_owned) {
9612 Py_DECREF(args);
9613 args_owned = 0;
9614 }
9615 args = PyObject_GetItem(dict, key);
9616 Py_DECREF(key);
9617 if (args == NULL) {
9618 goto onError;
9619 }
9620 args_owned = 1;
9621 arglen = -1;
9622 argidx = -2;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009623 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009624 while (--fmtcnt >= 0) {
9625 switch (c = *fmt++) {
9626 case '-': flags |= F_LJUST; continue;
9627 case '+': flags |= F_SIGN; continue;
9628 case ' ': flags |= F_BLANK; continue;
9629 case '#': flags |= F_ALT; continue;
9630 case '0': flags |= F_ZERO; continue;
9631 }
9632 break;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009633 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009634 if (c == '*') {
9635 v = getnextarg(args, arglen, &argidx);
9636 if (v == NULL)
9637 goto onError;
9638 if (!PyLong_Check(v)) {
9639 PyErr_SetString(PyExc_TypeError,
9640 "* wants int");
9641 goto onError;
9642 }
9643 width = PyLong_AsLong(v);
9644 if (width == -1 && PyErr_Occurred())
9645 goto onError;
9646 if (width < 0) {
9647 flags |= F_LJUST;
9648 width = -width;
9649 }
9650 if (--fmtcnt >= 0)
9651 c = *fmt++;
9652 }
9653 else if (c >= '0' && c <= '9') {
9654 width = c - '0';
9655 while (--fmtcnt >= 0) {
9656 c = *fmt++;
9657 if (c < '0' || c > '9')
9658 break;
Mark Dickinsonfb90c092012-10-28 10:18:03 +00009659 if (width > (PY_SSIZE_T_MAX - ((int)c - '0')) / 10) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009660 PyErr_SetString(PyExc_ValueError,
9661 "width too big");
Benjamin Peterson14339b62009-01-31 16:36:08 +00009662 goto onError;
Benjamin Peterson29060642009-01-31 22:14:21 +00009663 }
9664 width = width*10 + (c - '0');
9665 }
9666 }
9667 if (c == '.') {
9668 prec = 0;
9669 if (--fmtcnt >= 0)
9670 c = *fmt++;
9671 if (c == '*') {
9672 v = getnextarg(args, arglen, &argidx);
9673 if (v == NULL)
9674 goto onError;
9675 if (!PyLong_Check(v)) {
9676 PyErr_SetString(PyExc_TypeError,
9677 "* wants int");
9678 goto onError;
9679 }
9680 prec = PyLong_AsLong(v);
9681 if (prec == -1 && PyErr_Occurred())
9682 goto onError;
9683 if (prec < 0)
9684 prec = 0;
9685 if (--fmtcnt >= 0)
9686 c = *fmt++;
9687 }
9688 else if (c >= '0' && c <= '9') {
9689 prec = c - '0';
9690 while (--fmtcnt >= 0) {
Stefan Krah99212f62010-07-19 17:58:26 +00009691 c = *fmt++;
Benjamin Peterson29060642009-01-31 22:14:21 +00009692 if (c < '0' || c > '9')
9693 break;
Mark Dickinsonfb90c092012-10-28 10:18:03 +00009694 if (prec > (INT_MAX - ((int)c - '0')) / 10) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009695 PyErr_SetString(PyExc_ValueError,
9696 "prec too big");
9697 goto onError;
9698 }
9699 prec = prec*10 + (c - '0');
9700 }
9701 }
9702 } /* prec */
9703 if (fmtcnt >= 0) {
9704 if (c == 'h' || c == 'l' || c == 'L') {
9705 if (--fmtcnt >= 0)
9706 c = *fmt++;
9707 }
9708 }
9709 if (fmtcnt < 0) {
9710 PyErr_SetString(PyExc_ValueError,
9711 "incomplete format");
9712 goto onError;
9713 }
9714 if (c != '%') {
9715 v = getnextarg(args, arglen, &argidx);
9716 if (v == NULL)
9717 goto onError;
9718 }
9719 sign = 0;
9720 fill = ' ';
9721 switch (c) {
9722
9723 case '%':
9724 pbuf = formatbuf;
9725 /* presume that buffer length is at least 1 */
9726 pbuf[0] = '%';
9727 len = 1;
9728 break;
9729
9730 case 's':
9731 case 'r':
9732 case 'a':
Victor Stinner808fc0a2010-03-22 12:50:40 +00009733 if (PyUnicode_CheckExact(v) && c == 's') {
Benjamin Peterson29060642009-01-31 22:14:21 +00009734 temp = v;
9735 Py_INCREF(temp);
Benjamin Peterson14339b62009-01-31 16:36:08 +00009736 }
9737 else {
Benjamin Peterson29060642009-01-31 22:14:21 +00009738 if (c == 's')
9739 temp = PyObject_Str(v);
9740 else if (c == 'r')
9741 temp = PyObject_Repr(v);
9742 else
9743 temp = PyObject_ASCII(v);
9744 if (temp == NULL)
9745 goto onError;
9746 if (PyUnicode_Check(temp))
9747 /* nothing to do */;
9748 else {
9749 Py_DECREF(temp);
9750 PyErr_SetString(PyExc_TypeError,
9751 "%s argument has non-string str()");
9752 goto onError;
9753 }
9754 }
9755 pbuf = PyUnicode_AS_UNICODE(temp);
9756 len = PyUnicode_GET_SIZE(temp);
9757 if (prec >= 0 && len > prec)
9758 len = prec;
9759 break;
9760
9761 case 'i':
9762 case 'd':
9763 case 'u':
9764 case 'o':
9765 case 'x':
9766 case 'X':
Benjamin Peterson29060642009-01-31 22:14:21 +00009767 isnumok = 0;
9768 if (PyNumber_Check(v)) {
9769 PyObject *iobj=NULL;
9770
9771 if (PyLong_Check(v)) {
9772 iobj = v;
9773 Py_INCREF(iobj);
9774 }
9775 else {
9776 iobj = PyNumber_Long(v);
9777 }
9778 if (iobj!=NULL) {
9779 if (PyLong_Check(iobj)) {
9780 isnumok = 1;
Senthil Kumaran9ebe08d2011-07-03 21:03:16 -07009781 temp = formatlong(iobj, flags, prec, (c == 'i'? 'd': c));
Benjamin Peterson29060642009-01-31 22:14:21 +00009782 Py_DECREF(iobj);
9783 if (!temp)
9784 goto onError;
9785 pbuf = PyUnicode_AS_UNICODE(temp);
9786 len = PyUnicode_GET_SIZE(temp);
9787 sign = 1;
9788 }
9789 else {
9790 Py_DECREF(iobj);
9791 }
9792 }
9793 }
9794 if (!isnumok) {
9795 PyErr_Format(PyExc_TypeError,
9796 "%%%c format: a number is required, "
9797 "not %.200s", (char)c, Py_TYPE(v)->tp_name);
9798 goto onError;
9799 }
9800 if (flags & F_ZERO)
9801 fill = '0';
9802 break;
9803
9804 case 'e':
9805 case 'E':
9806 case 'f':
9807 case 'F':
9808 case 'g':
9809 case 'G':
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009810 temp = formatfloat(v, flags, prec, c);
9811 if (!temp)
Benjamin Peterson29060642009-01-31 22:14:21 +00009812 goto onError;
Mark Dickinsonf489caf2009-05-01 11:42:00 +00009813 pbuf = PyUnicode_AS_UNICODE(temp);
9814 len = PyUnicode_GET_SIZE(temp);
Benjamin Peterson29060642009-01-31 22:14:21 +00009815 sign = 1;
9816 if (flags & F_ZERO)
9817 fill = '0';
9818 break;
9819
9820 case 'c':
9821 pbuf = formatbuf;
9822 len = formatchar(pbuf, sizeof(formatbuf)/sizeof(Py_UNICODE), v);
9823 if (len < 0)
9824 goto onError;
9825 break;
9826
9827 default:
9828 PyErr_Format(PyExc_ValueError,
9829 "unsupported format character '%c' (0x%x) "
9830 "at index %zd",
9831 (31<=c && c<=126) ? (char)c : '?',
9832 (int)c,
9833 (Py_ssize_t)(fmt - 1 -
9834 PyUnicode_AS_UNICODE(uformat)));
9835 goto onError;
9836 }
9837 if (sign) {
9838 if (*pbuf == '-' || *pbuf == '+') {
9839 sign = *pbuf++;
9840 len--;
9841 }
9842 else if (flags & F_SIGN)
9843 sign = '+';
9844 else if (flags & F_BLANK)
9845 sign = ' ';
9846 else
9847 sign = 0;
9848 }
9849 if (width < len)
9850 width = len;
9851 if (rescnt - (sign != 0) < width) {
9852 reslen -= rescnt;
9853 rescnt = width + fmtcnt + 100;
9854 reslen += rescnt;
9855 if (reslen < 0) {
9856 Py_XDECREF(temp);
9857 PyErr_NoMemory();
9858 goto onError;
9859 }
9860 if (_PyUnicode_Resize(&result, reslen) < 0) {
9861 Py_XDECREF(temp);
9862 goto onError;
9863 }
9864 res = PyUnicode_AS_UNICODE(result)
9865 + reslen - rescnt;
9866 }
9867 if (sign) {
9868 if (fill != ' ')
9869 *res++ = sign;
9870 rescnt--;
9871 if (width > len)
9872 width--;
9873 }
9874 if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) {
9875 assert(pbuf[0] == '0');
9876 assert(pbuf[1] == c);
9877 if (fill != ' ') {
9878 *res++ = *pbuf++;
9879 *res++ = *pbuf++;
9880 }
9881 rescnt -= 2;
9882 width -= 2;
9883 if (width < 0)
9884 width = 0;
9885 len -= 2;
9886 }
9887 if (width > len && !(flags & F_LJUST)) {
9888 do {
9889 --rescnt;
9890 *res++ = fill;
9891 } while (--width > len);
9892 }
9893 if (fill == ' ') {
9894 if (sign)
9895 *res++ = sign;
9896 if ((flags & F_ALT) && (c == 'x' || c == 'X' || c == 'o')) {
9897 assert(pbuf[0] == '0');
9898 assert(pbuf[1] == c);
9899 *res++ = *pbuf++;
9900 *res++ = *pbuf++;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009901 }
9902 }
Benjamin Peterson29060642009-01-31 22:14:21 +00009903 Py_UNICODE_COPY(res, pbuf, len);
9904 res += len;
9905 rescnt -= len;
9906 while (--width >= len) {
9907 --rescnt;
9908 *res++ = ' ';
9909 }
9910 if (dict && (argidx < arglen) && c != '%') {
9911 PyErr_SetString(PyExc_TypeError,
9912 "not all arguments converted during string formatting");
Thomas Woutersa96affe2006-03-12 00:29:36 +00009913 Py_XDECREF(temp);
Benjamin Peterson29060642009-01-31 22:14:21 +00009914 goto onError;
9915 }
9916 Py_XDECREF(temp);
9917 } /* '%' */
Guido van Rossumd57fd912000-03-10 22:53:23 +00009918 } /* until end */
9919 if (argidx < arglen && !dict) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009920 PyErr_SetString(PyExc_TypeError,
9921 "not all arguments converted during string formatting");
9922 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009923 }
9924
Thomas Woutersa96affe2006-03-12 00:29:36 +00009925 if (_PyUnicode_Resize(&result, reslen - rescnt) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +00009926 goto onError;
Guido van Rossumd57fd912000-03-10 22:53:23 +00009927 if (args_owned) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009928 Py_DECREF(args);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009929 }
9930 Py_DECREF(uformat);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009931 return (PyObject *)result;
9932
Benjamin Peterson29060642009-01-31 22:14:21 +00009933 onError:
Guido van Rossumd57fd912000-03-10 22:53:23 +00009934 Py_XDECREF(result);
9935 Py_DECREF(uformat);
9936 if (args_owned) {
Benjamin Peterson29060642009-01-31 22:14:21 +00009937 Py_DECREF(args);
Guido van Rossumd57fd912000-03-10 22:53:23 +00009938 }
9939 return NULL;
9940}
9941
Jeremy Hylton938ace62002-07-17 16:30:39 +00009942static PyObject *
Guido van Rossume023fe02001-08-30 03:12:59 +00009943unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
9944
Tim Peters6d6c1a32001-08-02 04:15:00 +00009945static PyObject *
9946unicode_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
9947{
Benjamin Peterson29060642009-01-31 22:14:21 +00009948 PyObject *x = NULL;
Benjamin Peterson14339b62009-01-31 16:36:08 +00009949 static char *kwlist[] = {"object", "encoding", "errors", 0};
9950 char *encoding = NULL;
9951 char *errors = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00009952
Benjamin Peterson14339b62009-01-31 16:36:08 +00009953 if (type != &PyUnicode_Type)
9954 return unicode_subtype_new(type, args, kwds);
9955 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|Oss:str",
Benjamin Peterson29060642009-01-31 22:14:21 +00009956 kwlist, &x, &encoding, &errors))
Benjamin Peterson14339b62009-01-31 16:36:08 +00009957 return NULL;
9958 if (x == NULL)
9959 return (PyObject *)_PyUnicode_New(0);
9960 if (encoding == NULL && errors == NULL)
9961 return PyObject_Str(x);
9962 else
Benjamin Peterson29060642009-01-31 22:14:21 +00009963 return PyUnicode_FromEncodedObject(x, encoding, errors);
Tim Peters6d6c1a32001-08-02 04:15:00 +00009964}
9965
Guido van Rossume023fe02001-08-30 03:12:59 +00009966static PyObject *
9967unicode_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
9968{
Benjamin Peterson14339b62009-01-31 16:36:08 +00009969 PyUnicodeObject *tmp, *pnew;
9970 Py_ssize_t n;
Guido van Rossume023fe02001-08-30 03:12:59 +00009971
Benjamin Peterson14339b62009-01-31 16:36:08 +00009972 assert(PyType_IsSubtype(type, &PyUnicode_Type));
9973 tmp = (PyUnicodeObject *)unicode_new(&PyUnicode_Type, args, kwds);
9974 if (tmp == NULL)
9975 return NULL;
9976 assert(PyUnicode_Check(tmp));
9977 pnew = (PyUnicodeObject *) type->tp_alloc(type, n = tmp->length);
9978 if (pnew == NULL) {
9979 Py_DECREF(tmp);
9980 return NULL;
9981 }
9982 pnew->str = (Py_UNICODE*) PyObject_MALLOC(sizeof(Py_UNICODE) * (n+1));
9983 if (pnew->str == NULL) {
9984 _Py_ForgetReference((PyObject *)pnew);
9985 PyObject_Del(pnew);
9986 Py_DECREF(tmp);
9987 return PyErr_NoMemory();
9988 }
9989 Py_UNICODE_COPY(pnew->str, tmp->str, n+1);
9990 pnew->length = n;
9991 pnew->hash = tmp->hash;
9992 Py_DECREF(tmp);
9993 return (PyObject *)pnew;
Guido van Rossume023fe02001-08-30 03:12:59 +00009994}
9995
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009996PyDoc_STRVAR(unicode_doc,
Chris Jerdonek83fe2e12012-10-07 14:48:36 -07009997"str(object='') -> str\n\
9998str(bytes_or_buffer[, encoding[, errors]]) -> str\n\
Tim Peters6d6c1a32001-08-02 04:15:00 +00009999\n\
Nick Coghlan573b1fd2012-08-16 14:13:07 +100010000Create a new string object from the given object. If encoding or\n\
10001errors is specified, then the object must expose a data buffer\n\
10002that will be decoded using the given encoding and error handler.\n\
10003Otherwise, returns the result of object.__str__() (if defined)\n\
10004or repr(object).\n\
10005encoding defaults to sys.getdefaultencoding().\n\
10006errors defaults to 'strict'.");
Tim Peters6d6c1a32001-08-02 04:15:00 +000010007
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010008static PyObject *unicode_iter(PyObject *seq);
10009
Guido van Rossumd57fd912000-03-10 22:53:23 +000010010PyTypeObject PyUnicode_Type = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +000010011 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Benjamin Peterson14339b62009-01-31 16:36:08 +000010012 "str", /* tp_name */
10013 sizeof(PyUnicodeObject), /* tp_size */
10014 0, /* tp_itemsize */
Guido van Rossumd57fd912000-03-10 22:53:23 +000010015 /* Slots */
Benjamin Peterson14339b62009-01-31 16:36:08 +000010016 (destructor)unicode_dealloc, /* tp_dealloc */
10017 0, /* tp_print */
10018 0, /* tp_getattr */
10019 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +000010020 0, /* tp_reserved */
Benjamin Peterson14339b62009-01-31 16:36:08 +000010021 unicode_repr, /* tp_repr */
10022 &unicode_as_number, /* tp_as_number */
10023 &unicode_as_sequence, /* tp_as_sequence */
10024 &unicode_as_mapping, /* tp_as_mapping */
10025 (hashfunc) unicode_hash, /* tp_hash*/
10026 0, /* tp_call*/
10027 (reprfunc) unicode_str, /* tp_str */
10028 PyObject_GenericGetAttr, /* tp_getattro */
10029 0, /* tp_setattro */
10030 0, /* tp_as_buffer */
10031 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE |
Benjamin Peterson29060642009-01-31 22:14:21 +000010032 Py_TPFLAGS_UNICODE_SUBCLASS, /* tp_flags */
Benjamin Peterson14339b62009-01-31 16:36:08 +000010033 unicode_doc, /* tp_doc */
10034 0, /* tp_traverse */
10035 0, /* tp_clear */
10036 PyUnicode_RichCompare, /* tp_richcompare */
10037 0, /* tp_weaklistoffset */
10038 unicode_iter, /* tp_iter */
10039 0, /* tp_iternext */
10040 unicode_methods, /* tp_methods */
10041 0, /* tp_members */
10042 0, /* tp_getset */
10043 &PyBaseObject_Type, /* tp_base */
10044 0, /* tp_dict */
10045 0, /* tp_descr_get */
10046 0, /* tp_descr_set */
10047 0, /* tp_dictoffset */
10048 0, /* tp_init */
10049 0, /* tp_alloc */
10050 unicode_new, /* tp_new */
10051 PyObject_Del, /* tp_free */
Guido van Rossumd57fd912000-03-10 22:53:23 +000010052};
10053
10054/* Initialize the Unicode implementation */
10055
Thomas Wouters78890102000-07-22 19:25:51 +000010056void _PyUnicode_Init(void)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010057{
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010058 int i;
10059
Thomas Wouters477c8d52006-05-27 19:21:47 +000010060 /* XXX - move this array to unicodectype.c ? */
10061 Py_UNICODE linebreak[] = {
10062 0x000A, /* LINE FEED */
10063 0x000D, /* CARRIAGE RETURN */
10064 0x001C, /* FILE SEPARATOR */
10065 0x001D, /* GROUP SEPARATOR */
10066 0x001E, /* RECORD SEPARATOR */
10067 0x0085, /* NEXT LINE */
10068 0x2028, /* LINE SEPARATOR */
10069 0x2029, /* PARAGRAPH SEPARATOR */
10070 };
10071
Fred Drakee4315f52000-05-09 19:53:39 +000010072 /* Init the implementation */
Christian Heimes2202f872008-02-06 14:31:34 +000010073 free_list = NULL;
10074 numfree = 0;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010075 unicode_empty = _PyUnicode_New(0);
Thomas Wouters0e3f5912006-08-11 14:57:12 +000010076 if (!unicode_empty)
Benjamin Peterson29060642009-01-31 22:14:21 +000010077 return;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000010078
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010079 for (i = 0; i < 256; i++)
Benjamin Peterson29060642009-01-31 22:14:21 +000010080 unicode_latin1[i] = NULL;
Guido van Rossumcacfc072002-05-24 19:01:59 +000010081 if (PyType_Ready(&PyUnicode_Type) < 0)
Benjamin Peterson29060642009-01-31 22:14:21 +000010082 Py_FatalError("Can't initialize 'unicode'");
Thomas Wouters477c8d52006-05-27 19:21:47 +000010083
10084 /* initialize the linebreak bloom filter */
10085 bloom_linebreak = make_bloom_mask(
10086 linebreak, sizeof(linebreak) / sizeof(linebreak[0])
10087 );
Thomas Wouters0e3f5912006-08-11 14:57:12 +000010088
10089 PyType_Ready(&EncodingMapType);
Benjamin Petersonc4311282012-10-30 23:21:10 -040010090
10091 if (PyType_Ready(&PyFieldNameIter_Type) < 0)
10092 Py_FatalError("Can't initialize field name iterator type");
10093
10094 if (PyType_Ready(&PyFormatterIter_Type) < 0)
10095 Py_FatalError("Can't initialize formatter iter type");
Guido van Rossumd57fd912000-03-10 22:53:23 +000010096}
10097
10098/* Finalize the Unicode implementation */
10099
Christian Heimesa156e092008-02-16 07:38:31 +000010100int
10101PyUnicode_ClearFreeList(void)
10102{
10103 int freelist_size = numfree;
10104 PyUnicodeObject *u;
10105
10106 for (u = free_list; u != NULL;) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010107 PyUnicodeObject *v = u;
10108 u = *(PyUnicodeObject **)u;
10109 if (v->str)
10110 PyObject_DEL(v->str);
10111 Py_XDECREF(v->defenc);
10112 PyObject_Del(v);
10113 numfree--;
Christian Heimesa156e092008-02-16 07:38:31 +000010114 }
10115 free_list = NULL;
10116 assert(numfree == 0);
10117 return freelist_size;
10118}
10119
Guido van Rossumd57fd912000-03-10 22:53:23 +000010120void
Thomas Wouters78890102000-07-22 19:25:51 +000010121_PyUnicode_Fini(void)
Guido van Rossumd57fd912000-03-10 22:53:23 +000010122{
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010123 int i;
Guido van Rossumd57fd912000-03-10 22:53:23 +000010124
Guido van Rossum4ae8ef82000-10-03 18:09:04 +000010125 Py_XDECREF(unicode_empty);
10126 unicode_empty = NULL;
Barry Warsaw5b4c2282000-10-03 20:45:26 +000010127
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010128 for (i = 0; i < 256; i++) {
Benjamin Peterson29060642009-01-31 22:14:21 +000010129 if (unicode_latin1[i]) {
10130 Py_DECREF(unicode_latin1[i]);
10131 unicode_latin1[i] = NULL;
10132 }
Marc-André Lemburg8155e0e2001-04-23 14:44:21 +000010133 }
Christian Heimesa156e092008-02-16 07:38:31 +000010134 (void)PyUnicode_ClearFreeList();
Guido van Rossumd57fd912000-03-10 22:53:23 +000010135}
Martin v. Löwis9a3a9f72003-05-18 12:31:09 +000010136
Walter Dörwald16807132007-05-25 13:52:07 +000010137void
10138PyUnicode_InternInPlace(PyObject **p)
10139{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010140 register PyUnicodeObject *s = (PyUnicodeObject *)(*p);
10141 PyObject *t;
10142 if (s == NULL || !PyUnicode_Check(s))
10143 Py_FatalError(
10144 "PyUnicode_InternInPlace: unicode strings only please!");
10145 /* If it's a subclass, we don't really know what putting
10146 it in the interned dict might do. */
10147 if (!PyUnicode_CheckExact(s))
10148 return;
10149 if (PyUnicode_CHECK_INTERNED(s))
10150 return;
10151 if (interned == NULL) {
10152 interned = PyDict_New();
10153 if (interned == NULL) {
10154 PyErr_Clear(); /* Don't leave an exception */
10155 return;
10156 }
10157 }
10158 /* It might be that the GetItem call fails even
10159 though the key is present in the dictionary,
10160 namely when this happens during a stack overflow. */
10161 Py_ALLOW_RECURSION
Benjamin Peterson29060642009-01-31 22:14:21 +000010162 t = PyDict_GetItem(interned, (PyObject *)s);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010163 Py_END_ALLOW_RECURSION
Martin v. Löwis5b222132007-06-10 09:51:05 +000010164
Benjamin Peterson29060642009-01-31 22:14:21 +000010165 if (t) {
10166 Py_INCREF(t);
10167 Py_DECREF(*p);
10168 *p = t;
10169 return;
10170 }
Walter Dörwald16807132007-05-25 13:52:07 +000010171
Benjamin Peterson14339b62009-01-31 16:36:08 +000010172 PyThreadState_GET()->recursion_critical = 1;
10173 if (PyDict_SetItem(interned, (PyObject *)s, (PyObject *)s) < 0) {
10174 PyErr_Clear();
10175 PyThreadState_GET()->recursion_critical = 0;
10176 return;
10177 }
10178 PyThreadState_GET()->recursion_critical = 0;
10179 /* The two references in interned are not counted by refcnt.
10180 The deallocator will take care of this */
10181 Py_REFCNT(s) -= 2;
10182 PyUnicode_CHECK_INTERNED(s) = SSTATE_INTERNED_MORTAL;
Walter Dörwald16807132007-05-25 13:52:07 +000010183}
10184
10185void
10186PyUnicode_InternImmortal(PyObject **p)
10187{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010188 PyUnicode_InternInPlace(p);
10189 if (PyUnicode_CHECK_INTERNED(*p) != SSTATE_INTERNED_IMMORTAL) {
10190 PyUnicode_CHECK_INTERNED(*p) = SSTATE_INTERNED_IMMORTAL;
10191 Py_INCREF(*p);
10192 }
Walter Dörwald16807132007-05-25 13:52:07 +000010193}
10194
10195PyObject *
10196PyUnicode_InternFromString(const char *cp)
10197{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010198 PyObject *s = PyUnicode_FromString(cp);
10199 if (s == NULL)
10200 return NULL;
10201 PyUnicode_InternInPlace(&s);
10202 return s;
Walter Dörwald16807132007-05-25 13:52:07 +000010203}
10204
10205void _Py_ReleaseInternedUnicodeStrings(void)
10206{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010207 PyObject *keys;
10208 PyUnicodeObject *s;
10209 Py_ssize_t i, n;
10210 Py_ssize_t immortal_size = 0, mortal_size = 0;
Walter Dörwald16807132007-05-25 13:52:07 +000010211
Benjamin Peterson14339b62009-01-31 16:36:08 +000010212 if (interned == NULL || !PyDict_Check(interned))
10213 return;
10214 keys = PyDict_Keys(interned);
10215 if (keys == NULL || !PyList_Check(keys)) {
10216 PyErr_Clear();
10217 return;
10218 }
Walter Dörwald16807132007-05-25 13:52:07 +000010219
Benjamin Peterson14339b62009-01-31 16:36:08 +000010220 /* Since _Py_ReleaseInternedUnicodeStrings() is intended to help a leak
10221 detector, interned unicode strings are not forcibly deallocated;
10222 rather, we give them their stolen references back, and then clear
10223 and DECREF the interned dict. */
Walter Dörwald16807132007-05-25 13:52:07 +000010224
Benjamin Peterson14339b62009-01-31 16:36:08 +000010225 n = PyList_GET_SIZE(keys);
10226 fprintf(stderr, "releasing %" PY_FORMAT_SIZE_T "d interned strings\n",
Benjamin Peterson29060642009-01-31 22:14:21 +000010227 n);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010228 for (i = 0; i < n; i++) {
10229 s = (PyUnicodeObject *) PyList_GET_ITEM(keys, i);
10230 switch (s->state) {
10231 case SSTATE_NOT_INTERNED:
10232 /* XXX Shouldn't happen */
10233 break;
10234 case SSTATE_INTERNED_IMMORTAL:
10235 Py_REFCNT(s) += 1;
10236 immortal_size += s->length;
10237 break;
10238 case SSTATE_INTERNED_MORTAL:
10239 Py_REFCNT(s) += 2;
10240 mortal_size += s->length;
10241 break;
10242 default:
10243 Py_FatalError("Inconsistent interned string state.");
10244 }
10245 s->state = SSTATE_NOT_INTERNED;
10246 }
10247 fprintf(stderr, "total size of all interned strings: "
10248 "%" PY_FORMAT_SIZE_T "d/%" PY_FORMAT_SIZE_T "d "
10249 "mortal/immortal\n", mortal_size, immortal_size);
10250 Py_DECREF(keys);
10251 PyDict_Clear(interned);
10252 Py_DECREF(interned);
10253 interned = NULL;
Walter Dörwald16807132007-05-25 13:52:07 +000010254}
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010255
10256
10257/********************* Unicode Iterator **************************/
10258
10259typedef struct {
Benjamin Peterson14339b62009-01-31 16:36:08 +000010260 PyObject_HEAD
10261 Py_ssize_t it_index;
10262 PyUnicodeObject *it_seq; /* Set to NULL when iterator is exhausted */
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010263} unicodeiterobject;
10264
10265static void
10266unicodeiter_dealloc(unicodeiterobject *it)
10267{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010268 _PyObject_GC_UNTRACK(it);
10269 Py_XDECREF(it->it_seq);
10270 PyObject_GC_Del(it);
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010271}
10272
10273static int
10274unicodeiter_traverse(unicodeiterobject *it, visitproc visit, void *arg)
10275{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010276 Py_VISIT(it->it_seq);
10277 return 0;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010278}
10279
10280static PyObject *
10281unicodeiter_next(unicodeiterobject *it)
10282{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010283 PyUnicodeObject *seq;
10284 PyObject *item;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010285
Benjamin Peterson14339b62009-01-31 16:36:08 +000010286 assert(it != NULL);
10287 seq = it->it_seq;
10288 if (seq == NULL)
10289 return NULL;
10290 assert(PyUnicode_Check(seq));
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010291
Benjamin Peterson14339b62009-01-31 16:36:08 +000010292 if (it->it_index < PyUnicode_GET_SIZE(seq)) {
10293 item = PyUnicode_FromUnicode(
Benjamin Peterson29060642009-01-31 22:14:21 +000010294 PyUnicode_AS_UNICODE(seq)+it->it_index, 1);
Benjamin Peterson14339b62009-01-31 16:36:08 +000010295 if (item != NULL)
10296 ++it->it_index;
10297 return item;
10298 }
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010299
Benjamin Peterson14339b62009-01-31 16:36:08 +000010300 Py_DECREF(seq);
10301 it->it_seq = NULL;
10302 return NULL;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010303}
10304
10305static PyObject *
10306unicodeiter_len(unicodeiterobject *it)
10307{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010308 Py_ssize_t len = 0;
10309 if (it->it_seq)
10310 len = PyUnicode_GET_SIZE(it->it_seq) - it->it_index;
10311 return PyLong_FromSsize_t(len);
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010312}
10313
10314PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
10315
10316static PyMethodDef unicodeiter_methods[] = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000010317 {"__length_hint__", (PyCFunction)unicodeiter_len, METH_NOARGS,
Benjamin Peterson29060642009-01-31 22:14:21 +000010318 length_hint_doc},
Benjamin Peterson14339b62009-01-31 16:36:08 +000010319 {NULL, NULL} /* sentinel */
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010320};
10321
10322PyTypeObject PyUnicodeIter_Type = {
Benjamin Peterson14339b62009-01-31 16:36:08 +000010323 PyVarObject_HEAD_INIT(&PyType_Type, 0)
10324 "str_iterator", /* tp_name */
10325 sizeof(unicodeiterobject), /* tp_basicsize */
10326 0, /* tp_itemsize */
10327 /* methods */
10328 (destructor)unicodeiter_dealloc, /* tp_dealloc */
10329 0, /* tp_print */
10330 0, /* tp_getattr */
10331 0, /* tp_setattr */
Mark Dickinsone94c6792009-02-02 20:36:42 +000010332 0, /* tp_reserved */
Benjamin Peterson14339b62009-01-31 16:36:08 +000010333 0, /* tp_repr */
10334 0, /* tp_as_number */
10335 0, /* tp_as_sequence */
10336 0, /* tp_as_mapping */
10337 0, /* tp_hash */
10338 0, /* tp_call */
10339 0, /* tp_str */
10340 PyObject_GenericGetAttr, /* tp_getattro */
10341 0, /* tp_setattro */
10342 0, /* tp_as_buffer */
10343 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
10344 0, /* tp_doc */
10345 (traverseproc)unicodeiter_traverse, /* tp_traverse */
10346 0, /* tp_clear */
10347 0, /* tp_richcompare */
10348 0, /* tp_weaklistoffset */
10349 PyObject_SelfIter, /* tp_iter */
10350 (iternextfunc)unicodeiter_next, /* tp_iternext */
10351 unicodeiter_methods, /* tp_methods */
10352 0,
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010353};
10354
10355static PyObject *
10356unicode_iter(PyObject *seq)
10357{
Benjamin Peterson14339b62009-01-31 16:36:08 +000010358 unicodeiterobject *it;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010359
Benjamin Peterson14339b62009-01-31 16:36:08 +000010360 if (!PyUnicode_Check(seq)) {
10361 PyErr_BadInternalCall();
10362 return NULL;
10363 }
10364 it = PyObject_GC_New(unicodeiterobject, &PyUnicodeIter_Type);
10365 if (it == NULL)
10366 return NULL;
10367 it->it_index = 0;
10368 Py_INCREF(seq);
10369 it->it_seq = (PyUnicodeObject *)seq;
10370 _PyObject_GC_TRACK(it);
10371 return (PyObject *)it;
Guido van Rossum50e9fb92006-08-17 05:42:55 +000010372}
10373
Martin v. Löwis5b222132007-06-10 09:51:05 +000010374size_t
10375Py_UNICODE_strlen(const Py_UNICODE *u)
10376{
10377 int res = 0;
10378 while(*u++)
10379 res++;
10380 return res;
10381}
10382
10383Py_UNICODE*
10384Py_UNICODE_strcpy(Py_UNICODE *s1, const Py_UNICODE *s2)
10385{
10386 Py_UNICODE *u = s1;
10387 while ((*u++ = *s2++));
10388 return s1;
10389}
10390
10391Py_UNICODE*
10392Py_UNICODE_strncpy(Py_UNICODE *s1, const Py_UNICODE *s2, size_t n)
10393{
10394 Py_UNICODE *u = s1;
10395 while ((*u++ = *s2++))
10396 if (n-- == 0)
10397 break;
10398 return s1;
10399}
10400
Victor Stinnerc4eb7652010-09-01 23:43:50 +000010401Py_UNICODE*
10402Py_UNICODE_strcat(Py_UNICODE *s1, const Py_UNICODE *s2)
10403{
10404 Py_UNICODE *u1 = s1;
10405 u1 += Py_UNICODE_strlen(u1);
10406 Py_UNICODE_strcpy(u1, s2);
10407 return s1;
10408}
10409
Martin v. Löwis5b222132007-06-10 09:51:05 +000010410int
10411Py_UNICODE_strcmp(const Py_UNICODE *s1, const Py_UNICODE *s2)
10412{
10413 while (*s1 && *s2 && *s1 == *s2)
10414 s1++, s2++;
10415 if (*s1 && *s2)
10416 return (*s1 < *s2) ? -1 : +1;
10417 if (*s1)
10418 return 1;
10419 if (*s2)
10420 return -1;
10421 return 0;
10422}
10423
Victor Stinneref8d95c2010-08-16 22:03:11 +000010424int
10425Py_UNICODE_strncmp(const Py_UNICODE *s1, const Py_UNICODE *s2, size_t n)
10426{
10427 register Py_UNICODE u1, u2;
10428 for (; n != 0; n--) {
10429 u1 = *s1;
10430 u2 = *s2;
10431 if (u1 != u2)
10432 return (u1 < u2) ? -1 : +1;
10433 if (u1 == '\0')
10434 return 0;
10435 s1++;
10436 s2++;
10437 }
10438 return 0;
10439}
10440
Martin v. Löwis5b222132007-06-10 09:51:05 +000010441Py_UNICODE*
10442Py_UNICODE_strchr(const Py_UNICODE *s, Py_UNICODE c)
10443{
10444 const Py_UNICODE *p;
10445 for (p = s; *p; p++)
10446 if (*p == c)
10447 return (Py_UNICODE*)p;
10448 return NULL;
10449}
10450
Victor Stinner331ea922010-08-10 16:37:20 +000010451Py_UNICODE*
10452Py_UNICODE_strrchr(const Py_UNICODE *s, Py_UNICODE c)
10453{
10454 const Py_UNICODE *p;
10455 p = s + Py_UNICODE_strlen(s);
10456 while (p != s) {
10457 p--;
10458 if (*p == c)
10459 return (Py_UNICODE*)p;
10460 }
10461 return NULL;
10462}
10463
Victor Stinner71133ff2010-09-01 23:43:53 +000010464Py_UNICODE*
Victor Stinner46408602010-09-03 16:18:00 +000010465PyUnicode_AsUnicodeCopy(PyObject *object)
Victor Stinner71133ff2010-09-01 23:43:53 +000010466{
10467 PyUnicodeObject *unicode = (PyUnicodeObject *)object;
10468 Py_UNICODE *copy;
10469 Py_ssize_t size;
10470
10471 /* Ensure we won't overflow the size. */
10472 if (PyUnicode_GET_SIZE(unicode) > ((PY_SSIZE_T_MAX / sizeof(Py_UNICODE)) - 1)) {
10473 PyErr_NoMemory();
10474 return NULL;
10475 }
10476 size = PyUnicode_GET_SIZE(unicode) + 1; /* copy the nul character */
10477 size *= sizeof(Py_UNICODE);
10478 copy = PyMem_Malloc(size);
10479 if (copy == NULL) {
10480 PyErr_NoMemory();
10481 return NULL;
10482 }
10483 memcpy(copy, PyUnicode_AS_UNICODE(unicode), size);
10484 return copy;
10485}
Martin v. Löwis5b222132007-06-10 09:51:05 +000010486
Georg Brandl66c221e2010-10-14 07:04:07 +000010487/* A _string module, to export formatter_parser and formatter_field_name_split
10488 to the string.Formatter class implemented in Python. */
10489
10490static PyMethodDef _string_methods[] = {
10491 {"formatter_field_name_split", (PyCFunction) formatter_field_name_split,
10492 METH_O, PyDoc_STR("split the argument as a field name")},
10493 {"formatter_parser", (PyCFunction) formatter_parser,
10494 METH_O, PyDoc_STR("parse the argument as a format string")},
10495 {NULL, NULL}
10496};
10497
10498static struct PyModuleDef _string_module = {
10499 PyModuleDef_HEAD_INIT,
10500 "_string",
10501 PyDoc_STR("string helper module"),
10502 0,
10503 _string_methods,
10504 NULL,
10505 NULL,
10506 NULL,
10507 NULL
10508};
10509
10510PyMODINIT_FUNC
10511PyInit__string(void)
10512{
10513 return PyModule_Create(&_string_module);
10514}
10515
10516
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000010517#ifdef __cplusplus
10518}
10519#endif